@charset "UTF-8";
/*===================================================================

		固定値

===================================================================*/
:root {
  --color_main: #FF8257;
  --color_sub1: #3da200;
  --color_sub2: #e5a349;
  --color_log : red;
  --chr-color: #888;
  --color_main-btn: #FF8257;
  --color_main-btn-hover: #FF6936;
  --triangle-color: #F3F3F3;/*三角形の背景色*/
  --both-triangle-size: 66px;/*両三角形のサイズ*/
  
  --admin-bar-hight-pc: 32px;
  --admin-bar-hight-sp: 46px;
}

/*===================================================================

		色

===================================================================*/
.color_main{color: var(--color_main)!important;}
.color_sub1{color: var(--color_sub1)!important;}
.color_sub2{color: var(--color_sub2)!important;}
.color_log {color: var(--color_log)!important;}

/*===================================================================

		container幅

===================================================================*/
/* sm =========================*/
@media (min-width: 576px) {.container-sm, .container { max-width: 540px;}}

/* md =========================*/
@media (min-width: 768px) {.container-md, .container-sm, .container {max-width: 720px;}}

/* lg =========================*/
@media (min-width: 992px) {.container-lg, .container-md, .container-sm, .container {max-width: 960px;}}

/* xl =========================*/
@media (min-width: 1200px) {.container-xl, .container-lg, .container-md, .container-sm, .container {max-width: 1140px;}}

/* xxl =========================*/
@media (max-width: 1598px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {max-width: 1400px;}
}

@media (min-width: 1600px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {max-width: 1400px;}
}

/* max-width =========================*/
.max-width-1800{max-width: 1800px!important;margin: 0 auto}
.max-width-1600{max-width: 1600px!important;margin: 0 auto}
.max-width-1400{max-width: 1400px!important;margin: 0 auto}
.max-width-1200{max-width: 1200px!important;margin: 0 auto}
.max-width-1000{max-width: 1000px!important;margin: 0 auto}
.max-width-800 {max-width:  800px!important;margin: 0 auto}
.max-width-100 {max-width:   100%!important;margin: 0 auto;}

/* margin-top =========================*/
.mt-5rem {margin-top: 5rem !important;}
.mt-6rem {margin-top: 6rem !important;}
/*===================================================================

		共通

===================================================================*/
html {
	font-size: 18px;
  scroll-padding-top: var(--dynamic-scroll-offset, 112px);
	}

body{
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 2;
  color: var(--chr-color);
/*
  text-align: justify;
	text-align-last: left;
*/
  font-family: 'font_ZenMaruGothic-Medium', sans-serif!important;
  box-sizing: border-box;
	background-color: var(--color_body);
  }

@media screen and (max-width: 767.98px) {
  body{line-height: 1.6;}
  html {font-size: 16px;}
  }

header{
	min-height: 100px;
	padding-top: 0;
	}

a{
  color: var(--chr-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
  }

a:hover{
  opacity: 0.6;
  }
ol,ul, li{list-style: none; margin: 0;padding: 0;}

/*list-styleをオリジナルに*/
.list-default {
  margin: 1em 0;
  padding-left: 40px;
	}

ul.list-default li {
  display: list-item; 
  list-style-type: disc;
  list-style-position: outside;
	}

ol.list-default li {
  display: list-item;
  list-style-type: decimal;
  list-style-position: outside;
	}

img{
	max-width: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	}

.image-rendering_auto {
	image-rendering: auto;
	}

.image-rendering_pixelated {
	-ms-interpolation-mode: nearest-neighbor;
	image-rendering: pixelated;
	}

.image-rendering_crisp-edges {
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	}

.img_hover:hover{opacity: .6;}
.i_icon{margin-left: .5rem;}

/* 画像の周りに線と影 ------------------------------*/
img.frame {
  border: 1px solid #d2d2d2;
  -webkit-box-shadow: 0 6px 6px -6px #cccccc;
  -moz-box-shadow: 0 6px 6px -6px #cccccc;
  box-shadow: 0 6px 6px -6px #cccccc;
  }

.list-style-none {
  padding-left: 0;
  list-style: none;
  }

dl.dl-horizontal {
  display: grid;
  grid-template-columns: auto 1fr; /* 1列目をdt(自動幅)、2列目をdd(残り幅) */
  gap: 0.5em 1em; /* 行間のギャップ 列間のギャップ */
  align-items: baseline; /* ベースラインを揃える */
  }

dl.dl-horizontal dt ~ dd {
  grid-column: 2;
  }

dl.dl-horizontal dt {
  grid-column: 1; /* 明示的に1列目に */
  font-weight: bold;
  }

dl.dl-horizontal dd {
  grid-column: 2; /* 明示的に2列目に */
  margin-left: 0;
  }

dl.dl-horizontal dt,
dl.dl-horizontal dd {
  margin-bottom: 0;
  }

.dl-min-width-6 dt{min-width: 6rem!important;}

/* スマホ、PCのときの改行 ------------------------------*/
br.mobile_break { display:none; }
br.pc_break { display:block; }
.a_break { display: inline-block; }
@media screen and (max-width: 767.98px) {
  br.mobile_break { display:block; }
	br.pc_break { display:none; }
  .a_break { display:block; }
  .mobile_none { display:none !important; }
  }

.pc-only{display: block!important;}
.sp-only{display: none!important;}
@media screen and (max-width: 767.98px) {
  .pc-only{display: none!important;}
  .sp-only{display: block!important;}
	}

/*===================================================================

		フォント

font_RocknRollOne-Regular
font_ZenMaruGothic-Black
font_ZenMaruGothic-Bold
font_ZenMaruGothic-Medium
font_ZenMaruGothic-Regular
font_ZenMaruGothic-Light
font_Yomogi-Regular
font_mikachan

===================================================================*/
.font_RocknRollOne-Regular{}
.font_ZenMaruGothic-Black{}
.font_ZenMaruGothic-Bold{}
.font_ZenMaruGothic-Medium{}
.font_ZenMaruGothic-Regular{}
.font_ZenMaruGothic-Light{}
.font_Yomogi-Regular{letter-spacing: -0.15rem;}
.font_mikachan{}

.font_size_1rem{font-size: 1rem;}

h2{font-size: 2.6rem!important;}
@media screen and (max-width: 767.98px) {
	h2{
		font-size: 2.2rem!important;
    line-height: 1.4;
    }
  
	h3{
		line-height: 1.3!important;
    }
}

.section-margin{
	margin-top: 10vh;
	}
@media screen and (max-width: 767.98px) {
	.section-margin{
		margin-top: 5vh;
		}
}

/*===================================================================

		スライダー

===================================================================*/
.slider_explanation{
  color: var(--chr-color);
  display: block;
  text-align: center;
  font-size: 90%!important;
  line-height: 1.2;
  margin-top: 1.2rem;
  }

.pswp__custom-caption {
  background: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  color: #fff;
  width: calc(100% - 32px);
  max-width: 400px;
  padding: 2px 8px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  text-align: center;
  }

.pswp__custom-caption a {
  color: #fff;
  text-decoration: underline;
  }

.hidden-caption-content {
  display: none;
  }

#thumbnail-slider{
  width: 100%;
  margin: 0 auto;
  }


/*===================================================================

		ヘッダー部

===================================================================*/
.site-header{
  position: relative;
  margin-top: 0;
  }

@media screen and (max-width: 767.98px) {
  .site-header{
    margin-top: -1rem;
		}
}

/* PC ------------------------------*/
.static_pages_logo{
  display: inline-block;
	z-index: 9999;
	}

.static_pages_logo h1{
	margin-left: 2rem;
	margin-top: 1rem;
	z-index: 99999;
	}

.static_pages_logo .company_name_legal{
	display: block;
	font-size: 1.35rem;
	}

.static_pages_logo .company_name{
	display: block;
	font-size: 2.2rem;
	}

.header_image{
	/*padding-top: 6rem;*/
  text-align: center;
  }

.page-title-area{
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 3rem;
  }

/* SP ------------------------------*/
@media screen and (max-width: 767.98px) {
	.static_pages_logo{
		position: static;
		z-index: 9999;
		text-align: left;
		margin-top: 1rem;
		margin-left: .6rem;
		padding-top: 0;
		min-height: 4rem;
		}

	.static_pages_logo h1{
		margin-left: 0;
		}

	/* 法人名 ------------------------------*/
	.static_pages_logo .company_name_legal{
		display: block;
		font-size: 1rem;
		margin-right: .6rem;
		}

	.static_pages_logo .company_name{
		display: block;
		font-size: 1.2rem;
		}

	.page-title-area{
		margin-top: 1rem;
		margin-bottom: 1rem;
		}
}

/*----------------------------------------------------------------------
  グローバルメニュー
----------------------------------------------------------------------*/
/* ハンバーガーメニューボタン */
.menu-toggle {
  display: flex;
  position: fixed;
  top:1rem;
  right: 0px;
  height: 80px;
  width: 80px;
  margin-right: .2rem;
  padding: 10px 20px 0px 20px;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  z-index: 10001;
  background-color: #FFF;
  border: var(--color_global_menu) solid 1px;
  border-radius: 3px;
  color:  var(--color_global_menu);
  }

body.admin-bar .menu-toggle { 
  top: var(--admin-bar-hight-pc)!important; 
  }

@media screen and (max-width: 767.98px) {
  body.admin-bar .menu-toggle {
    top: var(--admin-bar-hight-sp)!important;
    }
  }

.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%; 
  background-color: var(--color_global_menu);
  border-radius: 2px;  /* 少し角を丸める */
  transition: transform 0.3s ease, opacity 0.3s ease;
  }

.menu-toggle:hover{
  color: #FFF;
  background-color: var(--color_global_menu);
  border: #FFF solid 1px;
  }  

.menu-toggle:hover span {background-color: #FFF;}

/* メニューが開いているときのハンバーガーボタンのアニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(320deg) translate(var(--menu-offset-m), var(--menu-offset-p));  /* 位置を微調整 */
  background-color: var(--color_global_menu);
  }

.menu-toggle.active span:nth-child(2) {
  opacity: 0;  /* 中央の線を透明に */
  transition: transform 0.5s ease, opacity 0.5s ease;
  }

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-320deg) translate(var(--menu-offset-m), var(--menu-offset-m));  /* 位置を微調整 */
  background-color: var(--color_global_menu);
  }

.menu-toggle.active:hover span {background-color: #FFF;}
  
  /* ハンバーガーメニューのテキスト */
.menu-toggle .menu-text {
  margin-top: 0px; /* ハンバーガーアイコンとの間にスペースを追加 */
  text-align: center;
  font-size: 16px;
  }

@media screen and (max-width: 767.98px) {
  .menu-toggle {
    position: fixed;
    display: flex;
    top: 10px;
    right: 5px;
    width: 50px;
    height: 50px;
    padding: 8px 8px 0px 8px;
    flex-direction: column;
    justify-content: space-around;  /* スペースを均等に配置 */
    cursor: pointer;
    z-index: 10001;
    background-color: #FFF;
    border: var(--color_global_menu) solid 1px;
    border-radius: 3px;
    color:  var(--color_global_menu);
    }
  
  /* ハンバーガーメニューのテキスト */
  .menu-toggle .menu-text {
    margin-top: 0px; /* ハンバーガーアイコンとの間にスペースを追加 */
    text-align: center;
    font-size: 10px;
    }

  .menu-toggle span {
    display: block;
    height: 2px;
    width: 100%; 
    background-color: var(--color_global_menu);
    border-radius: 1px;  /* 少し角を丸める */
    transition: transform 0.3s ease, opacity 0.3s ease;
    }
  
  .menu-toggle:hover{
    color: #FFF;
    background-color: var(--color_global_menu);
    border: #FFF solid 1px;
    }  
  
  .menu-toggle:hover span {background-color: #FFF;}

  /* メニューが開いているときのハンバーガーボタンのアニメーション */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(320deg) translate(-5px, 5px);  /* 位置を微調整 */
    background-color: var(--color_global_menu);
    }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;  /* 中央の線を透明に */
    transition: transform 0.5s ease, opacity 0.5s ease;
    }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-320deg) translate(-5px, -5px);  /* 位置を微調整 */
    background-color: var(--color_global_menu);
    }

  .menu-toggle.active:hover span {background-color: #FFF;}
}

/* メニュー全体 */
.global-nav {
  position: fixed;
  top: 00px;
  right: 0;
  height: 100%;
  width: 100%;
  padding-top: 100px;
  padding-left: 2rem;
  padding-bottom: 100px;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 10000;
  overflow-y: auto; /* スクロールを有効にする */
  /*background-color: var(--color_global_menu);*/
  background-color: #FFF;
  }

@media screen and (max-width: 767.98px) {
  .global-nav{
    width: 100%;
    top: 0px;
    padding-top: 50px;
    padding-left: .5rem;
    }
  }

.global-nav.open {transform: translateX(0);}

.global-nav .global-menu li {
  position: relative;
  border-bottom: 1px dotted var(--color_main);
  }

.global-nav .global-menu li > a::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  color: var(--color_global_menu);
  margin-right: 8px;
  }

.global-nav .sub-menu li {list-style: none;}
.global-nav .sub-menu li:last-child {border-bottom: none;}

.global-nav .sub-menu li > a::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  color: vvar(--color_global_menu);
  margin-right: 8px;
  }

.global-nav .global-menu li a {
  display: block;
  color: var(--color_global_menu);
  text-decoration: none;
  padding: 15px 0 15px 15px;
  transition: background-color 0.3s ease;
  }

.global-nav .global-menu li a:hover {
  color: var(--color_global_menu);
	}

/* ▼アイコンのスタイル */
.global-nav .global-menu li:has(.sub-menu) > a::after {
  display: inline-block;
  font-size: 120%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f13a";
  color: var(--color_global_menu);
  margin-left: 12px;
  transition: transform 0.5s ease;
  }

/* サブメニューが開いているときのアニメーション */
.global-nav .global-menu li.open > a::after {
  transform: rotate(180deg); /* サブメニューが開いているときにアイコンを回転 */
  }

/* 親メニューにマウスを乗せた時にサブメニューを表示 */
.global-nav .global-menu li:hover > .sub-menu {
  display: block; /* 表示 */
  opacity: 1; /* フェードイン */
  transition: opacity 0.3s ease; /* フェードイン効果 */
  }

/* サブメニューの表示 */
.global-nav .sub-menu {
  display: none; /* 初期状態で非表示 */
  padding-left: 30px;
  opacity: 0; /* 初期状態で透明 */
  transition: opacity 0.3s ease; /* フェードイン効果 */
  }
.global-nav .sub-menu li{background-color: #FFF;}

/* サブメニューが開いているとき */
.global-nav .global-menu li.open > .sub-menu {
  display: block; /* 表示時はブロックに */
  opacity: 1; /* フェードイン */
  }
  
/*不要な改行削除*/
.global-nav .global-menu-item-has-children a br{display: none;}

	:root {
		--menue_gap: 10px;
	}
/*グローバルナビ保育園一覧*/
.global-nav-facilities li{
	margin-bottom: 1.4rem;
	}

.global-nav-facilities li span{
	display: block;
	text-align: center;
	}

.global-nav-inside {
	display: flex;
	flex-wrap: wrap;
	gap: var(--menue_gap); 
	}

/* --- 左側の列 --- */
.global-nav-inside > .global-menu.global-nav-contents {
	padding: 0px;
	border-radius: 8px;
	flex: 0 0 calc(20% - (var(--menue_gap) / 2));
	}

/* --- 右側の列 --- */
.global-nav-inside > div.global-nav-contents {
	padding: 0px;
	border-radius: 8px;
	flex: 0 0 calc(80% - (var(--menue_gap) / 2));
	}

@media screen and (max-width: 767.98px) {
	.global-nav-inside > .global-menu.global-nav-contents,
	.global-nav-inside > div.global-nav-contents {
		flex: 1 1 100%; 
		overflow: hidden;
		}
	.global-nav-contents .global-nav-facilities li a{
		font-size: 80%;
		}
}

.global-nav-facilities li a.global-nav-facilities-frame::after {
  content: '';
  position: absolute;
  top: .4rem;
  left: .4rem;
  right: .4rem;
  bottom: .4rem;
  border: 1px solid white;
	z-index: 3;
  }

/* リンク要素（aタグ）のスタイル */
.global-nav-facilities li a {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: box-shadow 0.3s ease; /* ホバー時のアニメーション用に追記 */
	}

.global-nav-facilities li a.global-nav-facilities-frame::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
	transition: background-color 0.3s ease;
	}

.global-nav-facilities li span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
	width: 100%;
	text-shadow: 0 0 5px rgba(0,0,0,0.9);
	line-height: 1.5;
	font-weight: bold;
	z-index: 2;
	pointer-events: none;
	}

.global-nav-facilities li img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease; /* ホバー時のアニメーション */
	}

/* ホバー時の効果 */
.global-nav-facilities li a:hover img {
	transform: scale(1.05); /* ホバーで画像を少し拡大 */
	}

.global-nav-facilities li a:hover::before {
	background-color: rgba(0, 0, 0, 0.4); /* ホバーで少し濃くする */
	}

/* ★ホバー時に枠線の色を濃くする（任意）★ */
.global-nav-facilities li a:hover {
	box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 1); /* ホバーで完全に白に */
	}

/*SNS*/

.global-nav-facilities .facilities_sns{
	text-align: right;
	margin-top: .8rem;
	}

.global-nav-facilities .facilities_sns li{
	margin-right: .4rem;
	}

.global-nav-facilities .facilities_sns li img{
	max-width: 1.6rem;
	height: auto;
	}

/*----------------------------------------------------------------------
  左上SNS
----------------------------------------------------------------------*/
.facilities_sns_header{
	position: fixed;
	padding: .6rem .8rem .6rem .4rem;
	top: 1.2rem;
	right: 6rem;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 3px;
	}

.frontpage_sns_header{
	/*position: fixed;*/
	position: absolute;
	padding: .6rem .8rem .6rem .4rem;
	top: 1.2rem;
	right: 6rem;
	z-index: 9999;
}

.frontpage_sns_header .facilities_sns,
.facilities_sns_header .facilities_sns{
	position: relative!important;
	margin-top: 0;
	margin-left: .6rem;
	}
.frontpage_sns_header .facilities_sns li:last-child,
.facilities_sns_header .facilities_sns li:last-child{
	margin-right: 0;
	}

.frontpage_sns_header .facilities_sns li:first-child,
.facilities_sns_header .facilities_sns li:first-child{
	margin-left: 0;
	}

@media screen and (max-width: 767.98px) {
	.facilities_sns_header{
		/*position: fixed;*/
		position: absolute;
		padding: .6rem .8rem .6rem .4rem;
		top: 1.4rem;
		right: 4rem;
		z-index: 9999;
		background: rgba(255, 255, 255, 0);
		border-radius: 3px;
		}

	.frontpage_sns_header{
		/*position: fixed;*/
		position: absolute;
		padding: .6rem .8rem .6rem .4rem;
		top: 1.4rem;
		right: 4rem;
		z-index: 9999;
		}
}

/*----------------------------------------------------------------------
  サイドメニュー
----------------------------------------------------------------------*/
.side_nav_btns{
  position: fixed;
  top:150px;
  right: 0px;
	z-index: 1000;
  }
  
.side_nav_btns li  {
	margin-top: 0;
  margin-bottom: .8rem;
  margin-right: -10px;
  }

.side_nav_btns li a {
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  gap: 0px; 
  padding: 10px;
  color: white;
  border: #FFF solid 1px;
  cursor: pointer;
  font-size: 16px;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; 
  transition: background-color 0.1s ease-in-out,
              width 0.2s ease-in-out,
              transform 0.2s ease-in-out;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  }

.side_nav_btns li a:hover {
  /*width: 110px;*/
  opacity: 1;
  transform: translateX(-9px);
  }

/* アイコンのエリア */
.side_nav_btns li a .side-icon-wrapper {
  height: calc(70px * (2 / 3)); 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  }

.side_nav_btns li a .side-icon-wrapper .dashicons{
  font-size: 30px;
  line-height: 1;
	}

/* テキストのエリア */
.side_nav_btns li a .side-text-wrapper {
  height: calc(70px * (1 / 3));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  }

.side_nav_btns li a .side-text-wrapper span {
  font-size: 14px; 
  line-height: 1;
  display: block;
  }

/*----------------------------------------------------------------------
  ローディング画面・キャッチ
----------------------------------------------------------------------*/
.page_title_catchphrase span{
	display: block;
	margin-top: 1rem;
	font-size: 1.4rem;
	line-height: 1.6!important;
	}

.page_title_catchphrase{
	text-align: center;
	line-height: 1.6!important;
	}

/*===================================================================

		メイン部

===================================================================*/

main{
}


/*===================================================================

		フッター部

===================================================================*/
footer{
	z-index: 1;
  margin-top: 5.5rem;
  padding-top: 2rem;
  background-color: var(--color_footer);
	border-top: solid 3px var(--color_sub2);
  }

.footer_nav_area{
  /*margin-top: 3rem;*/
	padding-left: 15px;
	padding-right: 15px;
  }

footer .copy_right{
  padding: .1rem;
	margin-top: 3rem;
  text-align: center;
  color: #FFF;
  font-size: .8rem;
  background-color: var(--color_main);
  }

/* ナビ（固定ページ・園一覧） ------------------------------*/
.footer_nav ul{
  padding-left: 0;
  margin-left: 0;
  list-style: none;
  }

.footer_nav ul li{
	font-size: 90%;
  }

.footer_nav ul li a{
  text-decoration: none;
  }

.footer_nav ul li a:hover{
  color: #888;
  text-decoration: none;
  border-bottom: 1px dotted #888;
  padding-bottom: 1px;
  }

.footer_nav1 li{
  margin-right: 1rem;
	}

.footer-nav-facilities li i,
.footer_nav1 li i{
	font-size: 60%;
	margin-right: .1rem;
	vertical-align: middle;
	opacity: .6;
	}

/* ナビ（円） ------------------------------*/
.footer_nav2 li span{
	width: 60%;
	}

.footer_nav2_item {
  position: relative;
  text-align: center;
	margin-bottom: 1.5rem;
	overflow: hidden;
	}

.footer_nav2_item span {
  position: absolute; /* SVGの上に重ねて配置 */
  top: 50%;           /* 親要素の上から50%の位置 */
  left: 50%;          /* 親要素の左から50%の位置 */
  transform: translate(-50%, -50%); /* 要素自身の半分だけずらして完全に中央に配置 */
  z-index: 1;         /* SVGより手前に表示されるようにする（オプション） */
	font-size: 80%;
	line-height: 1.4;
	width: 100%;
	}
		
li.footer_nav2_item a svg {
  /* ホバーしていない時のtransform (デフォルトの状態) */
  transform: rotate(0deg) scale(1); /* 初期状態を明示的に指定 */
  transition: transform .8s ease-in-out; /* ホバー時と同じトランジションを設定しておくことで、戻る時もアニメーションする */
	}

li.footer_nav2_item a:hover svg {
  transform: rotate(180deg); /* ホバーした時のtransform */
	}

/*【固定ページ】フッター 法人格名 ------------------------------*/
.static_pages .footer_facilities_name .company_name_legal{
  display: block;
  font-size: 1.4rem;
  }

/*【固定ページ】フッター 法人名 ------------------------------*/
.static_pages .footer_facilities_name .company_name{
  display: block;
	margin-top: .6rem;
  font-size: 2rem;
  }

/* SNS------------------------------*/
.facilities_sns{
  margin: 1.4rem 0 0 0;
  padding:0;
  }

.facilities_sns li{
  max-width: 2.4rem;
	display: inline-block;
  margin-right: 1.5rem;
  }

.facilities_sns li img{
  transition: transform 0.3s ease;
  }

.facilities_sns li img:hover{
  transform: scale(1.1);
  }

.exterior_image_none{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #EEE;
	}

:root {
  /* 雲に関する設定 */
  --footer-speed1-height: auto;
  --cloud-animation-duration: 360s;
  --cloud-offset-top: 0px;

  /* 飛行機に関する設定 */
  --footer-speed2-height: auto;
  --plane-animation-duration: 120s;
  --plane-offset-top: 0px;

  /* 鳥に関する設定 */
  --footer-speed3-width: 100%;
  --footer-speed3-height: auto;
  --bird-animation-duration: 10s; 
  --bird-initial-pos-top: 0%; 
  --bird-initial-pos-left: 00%;
}

.footer_animation_wrapper_pc {
  position: relative;
  width: 100%;
  overflow: hidden;
  }

/* 1. ベース画像のスタイル */
.footer-base-image {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  }

/* 2. 雲のアニメーション関連スタイル  */
.cloud-animation-wrapper { 
  position: absolute; top: var(--cloud-offset-top); left: 0; width: 100%; height: var(--footer-speed1-height, auto); overflow: hidden; z-index: 2;
  }

.cloud-marquee { 
  display: flex; width: 200%; height: 100%; animation: cloud_marquee_animation var(--cloud-animation-duration) linear infinite;
  }

.cloud-marquee img.footer-speed1 { 
  width: 50%; height: var(--footer-speed1-height); flex-shrink: 0; display: block;
	}

@keyframes cloud_marquee_animation { 
  0% { transform: translateX(0); } 100% { transform: translateX(-50%); }
  }

/* 3. 飛行機のアニメーション関連スタイル */
.plane-animation-wrapper { 
  position: absolute; top: var(--plane-offset-top); left: 0; width: 100%; height: var(--footer-speed2-height, auto); overflow: hidden; z-index: 3;
  }

.plane-marquee { 
  display: flex; width: 200%; height: 100%; animation: plane_marquee_animation var(--plane-animation-duration) linear infinite;
  }

.plane-marquee img.footer-speed2 { 
  width: 50%; height: var(--footer-speed2-height); flex-shrink: 0; display: block;
  }

@keyframes plane_marquee_animation { 
  0% { transform: translateX(0); } 100% { transform: translateX(-50%); }
  }

/* 4. 鳥の揺れるアニメーション関連スタイル */
.bird-animation-wrapper {
  position: absolute;
  top: var(--bird-initial-pos-top);
  left: var(--bird-initial-pos-left);
  width: var(--footer-speed3-width);
  height: var(--footer-speed3-height, auto);
  z-index: 4; 
  }

.bird-animation-wrapper .footer-speed3 {
  width: 100%; 
  height: 100%;
  display: block;
  animation: bird_sway_animation var(--bird-animation-duration) ease-in-out infinite alternate;
  }

@keyframes bird_sway_animation {
  0% {transform: translate(-1rem, -0.1rem);}
  100% {transform: translate(1rem, 0.1rem);}
	}  

:root {
  --footer-illust-duration: 60s; 
}

.footer_animation_wrapper_sp {
  width: 100%;
  overflow: hidden; /* はみ出した部分を隠してループを成立させる */
  position: relative; /* アニメーション要素の配置基準として (必須ではない場合もあり) */
  box-sizing: border-box; /* paddingやborderを含めた幅計算にする場合 */
	}

.footer_illust_marquee {
  display: flex; /* 中の画像を横並びにする */
  width: 200%;
  animation: vegetal_marquee var(--footer-illust-duration) linear infinite;
	}

.footer_illust_marquee img {
  width: 200%;
  height: auto; /* 画像の縦横比を維持 */
  flex-shrink: 0; /* flexコンテナ内で画像が縮まないようにする */
  display: block; /* 画像下の余白を防ぐため（場合による） */
	}

/* 横スクロールアニメーションの定義 */
@keyframes vegetal_marquee {
  0% {transform: translateX(0);}
  100% {transform: translateX(-50%);}
	}

.this_facility_address{
	margin-top: 1rem;
	}

.this_facility_address{
	line-height: 1.4;
	}

.this_facility_phone{
	font-size: 2.4rem;
	color: #666;
	}

.this_facility_phone span{
	display: inline-block;
	font-weight: bold;
	margin-left: 1rem;
	}

.this_facility_phone a{
	text-decoration: none;
	color: #666;
	}

/*===================================================================

		ローディング画面

===================================================================*/
.loading-container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	}

.loading-circular-text-svg {
	display: block;
	margin: auto;
	}

/* ★ 回転させるテキストのグループにアニメーションを適用 */
.loading-circular-text-svg .rotating-text-group {
	animation: rotateTextOnly 10s linear infinite;
	transform-origin: 100px 100px;
	}
/* 回転アニメーションのキーフレーム (名前は任意) */
@keyframes rotateTextOnly {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
	}  

/* ローディングオーバーレイのスタイル */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;

  /* ↓↓ フェードアウトのための設定 ↓↓ */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
	}

/* オーバーレイを非表示にするためのクラス */
#loading-overlay.is-hidden {
  opacity: 0;
  visibility: hidden; /* 表示は消すが、transitionは有効 */
  pointer-events: none; /* クリックイベントを無効化 */
	}

/* ローディング画面関連のスタイル ------------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60vh;
  background-color: #ffffff; /* ローディング画面の背景色 */
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s; /* フェードアウト時の設定 */
  padding: 0;
  margin: 0;
  }

body.loading #loading {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0s; /* フェードイン時の設定 */
  }

#loading img {
  width: 160px;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

#loading p {
  margin-top: 15px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 1rem;
  text-align: center;
  }

#loading p span{
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
  }

#loading .company_name_legal{
	display: block;
  text-align: center;
  font-size: 1.2rem;
	margin-top: 2rem;
  }

#loading .facilities_name{
	display: block;
	text-align: center;
  font-size: 1.8rem;
	margin-top: .4rem;
  }

.loading-container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	}

.loading-circular-text-svg {
	/* SVG要素自体は回転させない */
	display: block;
	margin: auto;
	}

/* ★ 回転させるテキストのグループにアニメーションを適用 */
.loading-circular-text-svg .rotating-text-group {
	animation: rotateTextOnly 10s linear infinite;
	transform-origin: 100px 100px; /* viewBoxの中心 (200x200の場合) */
	}

/* 回転アニメーションのキーフレーム (名前は任意) */
@keyframes rotateTextOnly {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
	}  

/* SCROLL文字 ------------------------------*/
.scroll_wrap {
  text-align: center;
  position: fixed;
  /*top: 0;*/
  bottom: 1rem;
  left: 3vw;
  z-index: 5;
  /*margin: auto;*/
  width: 15px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }

.scroll_txt {
  position: relative;
  font-size: 0.8rem;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-bottom: 0;
  }

.scroll_line {
  width: 12px;
  height: 40px;
  overflow: hidden;
  margin-top: 10px;
  }

.scroll_line_in {
  width: 1px;
  height: 100%;
  background-color: var(--chr-color);
  margin: 0 auto;
  position: relative;
  }

.scroll_line_in:before {
  content: "";
  border-radius: 50%;
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color_main);
  position: absolute;
  top: 0%;
  left: -5px;
  z-index: 2;
  }

.scroll_line_in.is_animate::before {
  -webkit-animation-name: ScrollBar;
  animation-name: ScrollBar;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(.645, .045, .355, 1);
  animation-timing-function: cubic-bezier(.645, .045, .355, 1);
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  }

@-webkit-keyframes ScrollBar {
  0%    {top: 0%;}
  100%  {top: 100%;}
  }

@keyframes ScrollBar {
  0%    {top: 0%;}
  100%  {top: 100%;}
  }

.scroll_wrap.is-hidden {
  display: none;
  }

/* scroll-top-button */
.scroll-top-button {
	position: fixed; /* 画面に固定 */
	bottom: 30px; /* 画面下からの位置 */
	right: 100px; /* 画面右からの位置 */
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px; /* ボタンの幅 */
	height: 50px; /* ボタンの高さ */
	background-color: var(--color_main); /* ボタンの背景色（例: メインカラー） */
	color: white; /* アイコンの色 */
	border-radius: 50%; /* 円形にする */
	text-decoration: none; /* 下線をなくす */
	font-size: 1.8rem; /* アイコンのサイズ */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 影 */
	cursor: pointer; /* カーソルをポインターに */
	z-index: 999; /* 他の要素の上に表示 */

	/* 初期状態は非表示（透明で、クリックもできないようにする） */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	}

/* ホバー時のスタイル */
.scroll-top-button:hover {
	background-color: #FFF; /* ホバー時の色（例: メインカラーの濃い色） */
	color: var(--color_main);
	transform: translateY(-3px); /* 少し上に移動するアニメーション */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* 影を濃くする */
	transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	}

/* ボタンが表示されるときのクラス */
.scroll-top-button.show {
	opacity: 1;
	visibility: visible;
	}

/* スマホ対応（任意） */
@media (max-width: 767.98px) {
  .scroll-top-button {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    bottom: 20px;
    right: 20px;
    }
}

/*===================================================================

		お知らせ

===================================================================*/
.dl-news-wrapper{
	border: dotted 1px var(--color_main);
	border-radius: 10px;
	padding: 2rem 2rem;
	}

#ajax-news-list{
  margin-top: 3rem;
	}

.news-title{
	text-align: center;
	max-width: 20rem;
	margin: 0 auto; 
	}

dl.dl-news {
  margin-bottom: 0;
  padding-top: .7rem;
  padding-bottom: .5rem;
  }

dl.dl-news dt {
  font-weight: normal;
  }

dl.dl-news dt span{
	margin-left: .3rem;
	}

dl.dl-news dt i{
	font-size: 70%;
	margin-right: 0;
	vertical-align: middle;
	opacity: .6;
	}

dl.dl-news dd {
  overflow: hidden;
	width: 100%;
	margin-left: 8px;
  }

#ajax-news-list dl.dl-news.news-line,
#ajax-news-list dl.dl-news.news-line-fast{
	border-bottom: 1px dotted var(--color_main);
	}

@media screen and (max-width: 767.98px) {
	.dl-news-wrapper{
		border: none;
		padding: 0;
		}
	
  #ajax-news-list{
    padding: 0;
    }
  
  dl.dl-news {
    grid-template-columns: 1fr; /* または minmax(0, 1fr) */
    gap: 0.3rem 0;
    }

  dl.dl-news dt {
    width: auto;
    grid-column: 1 / -1;
    padding: 0 .4rem;
    overflow: hidden;
    }

  dl.dl-news dd {
    grid-column: 1 / -1;
    padding: 0 .4rem;
    overflow: hidden;
    }
}

.new_mark{
  display: inline-block;
  margin-left: 1rem;
  color: red;
  }

.news_important,
.news_facilities_mark{
  font-size: 70%;
  display: inline-block;
  margin-right: .5rem;
  color: #FFF;
  padding: 0 .5rem;
  border-radius: 5px;
  }

.single_news_important .news_important,
.single_news_important .news_facilities_mark{
	font-size: 80%;
  display: inline-block;
  margin-right: .5rem;
  color: #FFF;
  padding: 0 .5rem;
  border-radius: 5px;
  }

/*----------------------------------------------------------------------
  ポップアップ
	※帯の色、背景色は管理画面で設定
----------------------------------------------------------------------*/
/* ポップアップ本体のスタイル */
.popup {
  position: fixed;
  bottom: 0px;
  left: -300px;
  opacity: 0; /* 初期は完全に透明 */
  visibility: hidden; /* 初期はクリックなども受け付けない */
  z-index: 1000; /* 他の要素の上に表示 */
  padding: 1rem 1rem 1.5rem 1rem;
  font-size: 80%;
  line-height: 1.6;
  border-top: solid 15px #ff5c35; /* 上部に強調線 */
  background-color: #fef4ea;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  overflow-y: auto;
  box-sizing: border-box;
  transition: opacity 0.5s ease-in-out, left 0.5s ease-in-out, visibility 0s linear 0.5s;
  }

/* 画面幅1000px以下でのポップアップのスタイル調整 */
@media screen and (max-width: 1000px) {
  .popup {
    left: -1000px; /* 1000px以下では初期位置をより左に */
    max-width: 100%; /* 画面幅いっぱいに広げる */
    /* min-height: 200px; */ /* こちらもコメントアウト推奨 */
    font-size: 80%; /* フォントサイズを小さくする */
    }
}

/* ポップアップが表示されるときのスタイル (JavaScriptで付与されるクラス) */
.popup.is-visible {
  left: 100px; /* 最終的な表示位置（画面左から100px） */
  opacity: 1; /* 不透明にして表示 */
  visibility: visible; /* クリック可能にする */
  /* 表示時はvisibilityの遅延をなくす（すぐに表示されるように） */
  transition: opacity 0.5s ease-in-out, left 0.5s ease-in-out, visibility 0s linear 0s;
  }

/* 画面幅1000px以下でポップアップが表示されるときのスタイル調整 */
@media screen and (max-width: 1000px) {
  .popup.is-visible {
    left: 0px; /* 画面幅1000px以下では左端に表示 */
    }
}

/* 閉じるボタンのスタイル */
.popup-close {
  position: absolute; /* ポップアップ内での絶対配置 */
  top: 8px; /* 上からの位置 */
  right: 10px; /* 右からの位置 */
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 1.4rem; /* アイコンやテキストのサイズ */
  line-height: 1; /* 行の高さを設定し、余白をなくす */
  color: #333;
  cursor: pointer; /* マウスカーソルをポインターに */
  z-index: 1001; /* ポップアップ本体より前面に */
  opacity: 0.7; /* デフォルトは少し透明に */
  transition: opacity 0.2s ease; /* ホバー時のアニメーション */
  }

/* 閉じるボタンのホバー時のスタイル */
.popup-close:hover {
  opacity: 1; /* ホバーで不透明に */
  }

/* 「詳しくはこちら」リンクのコンテナスタイル */
.popup_learn_more {
  display: block; /* ブロック要素として配置 */
  text-align: right; /* 右寄せ */
  margin-top: 1rem; /* 上部に少し余白を追加 */
  }

/* 「詳しくはこちら」リンクのスタイル */
.popup_learn_more a {
  font-size: 1rem;
  color: #FFF;
  padding: .2rem 2rem; /* 上下0.2rem、左右2remのパディング */
  background-color: #ff5c35;
  border-radius: 2rem; /* 角丸を大きくする */
  text-decoration: none; /* リンクの下線を除去 */
  display: inline-block; /* パディングが有効になるように */
  }

/* 「詳しくはこちら」リンクのホバー時のスタイル */
.popup_learn_more a:hover {
  background-color: #e04a25; /* ホバー時に色を少し濃く */
  }

.popup_surplus {
  height: 0; /* 初期は高さ0（表示されない） */
  transition: height 0.5s ease-in-out; /* JavaScriptで高さが変わる際にスムーズにアニメーション */
  }

.popup p {
  margin-top: 0; /* 段落のデフォルト上マージンをリセット */
  margin-bottom: 1rem; /* 段落の下マージンを設定 */
  }

.popup p:last-of-type {
  margin-bottom: 0.5rem; /* 最後の段落の下マージンを少し小さくする */
  }

body.single-news .popup-close{
	display: none!important;
	}

/*--------------------------------------------------
  WordPress ページネーションの装飾
--------------------------------------------------*/
.pagination-wrapper {
  display: block;
  max-width: 80%; 
  width: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  }

ul.page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
  }

.page-numbers a,
.page-numbers span {
  display: flex; /* 中のテキストを中央揃えにしやすくするため */
  align-items: center;
  justify-content: center;
  padding: 0.6em 1em; /* 内側の余白 */
  min-width: 2.8em;   /* 各ボタンの最小幅を確保して見た目を揃える */
  height: 2.8em;      /* 各ボタンの高さを揃える */
  box-sizing: border-box; /* paddingとborderをwidth/heightに含める */
  border: 1px solid #ddd;
  border-radius: 4px; /* 角丸 */
  background-color: #fff;
  color: #555; /* 通常時の文字色 */
  text-decoration: none;
  font-size: 0.9rem; /* 文字サイズ */
  line-height: 1; /* 高さを揃えるために行の高さを1に */
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  }

/* ページ番号リンク(a) のホバー時のスタイル */
.page-numbers a:hover {
  background-color: var(--color_main); /* ホバー時の背景色 (例: 青) */
  color: #fff;              /* ホバー時の文字色 (例: 白) */
  border-color: var(--color_main);   /* ホバー時の枠線色 */
  }

/* 現在のページ番号 (span.current) のスタイル */
.page-numbers span.current {
  background-color: var(--color_main); /* 現在のページの背景色 */
  color: #fff;              /* 現在のページの文字色 */
  border-color: var(--color_main);   /* 現在のページの枠線色 */
  font-weight: bold;
  cursor: default;         /* クリックできないことを示すカーソル */
  }
/* 現在のページはホバーしてもスタイルが変わらないようにする */
.page-numbers span.current:hover {
  background-color: var(--color_main);
  color: #fff;
  border-color: var(--color_main);
  }

/* 「前へ (prev)」 「次へ (next)」 リンクのスタイル */
.page-numbers a.prev,
.page-numbers a.next {
  /* 特に個別のスタイルが不要な場合は、共通の a スタイルが適用されます */
  /* font-weight: bold; */ /* 太字にしたい場合など */
  }

/* 省略記号 (...) (span.dots) のスタイル */
.page-numbers span.dots {
  border: none; /* 枠線なし */
  background-color: transparent; /* 背景透明 */
  color: #555; /* 文字色を他のリンクと合わせる */
  cursor: default;
  padding-left: 0.3em; /* 他の要素とのバランス調整 */
  padding-right: 0.3em;
  }
/* 省略記号はホバーしてもスタイルが変わらないようにする */
.page-numbers span.dots:hover {
  background-color: transparent;
  color: #555;
  }

/* レスポンシブ対応の例 (画面幅が480px以下の場合) */
@media screen and (max-width: 767.98px) {
	.page-numbers a,
  .page-numbers span {
    padding: 0.5em 0.7em;
    min-width: 2.4em;
    height: 2.4em;
    font-size: 0.85rem;
    }
  
  ul.page-numbers {
    gap: 0.3em; /* スマホではアイテム間の隙間を少し狭く */
    }
}  

/*
	YouTube表示
-------------------------------*/
.youtube-section {
	position: relative;
	overflow: hidden;
	color: white;
	background-color: #000;

	/* 常に16:9の比率になるよう、高さをビューポートの幅(vw)に基づいて設定 */
	width: 100%;
	height: 56.25vw; /* 9 (height) / 16 (width) = 0.5625 */

	/* 画面が非常に縦長の場合（スマホなど）に、動画が画面からはみ出さないように最大高さを設定 */
	max-height: 100vh;
	max-height: calc(var(--get_vh, 1vh) * 100);
}

.youtube-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease;
	}

.youtube-background.video-loaded {
	opacity: 1;
	}

.youtube-background iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); 
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	display: block;
	vertical-align: bottom;
	}

/*
	YouTube表示
-------------------------------*/
.df-page.df-page-front{
	width: 100%;
	border: solid 1px #CCC;
	}

/*
	法人案内パンフレット
-------------------------------*/
.brochure_link{
	margin-top: 1rem;
	text-align: center;
	background-color: var(--color_sub2);
	transition: transform 0.2s ease-in-out;
	}

.brochure_link:hover{
	transform: translate(5px, 5px);
	}

.your-target-selector {
  white-space: pre-wrap; /* 改行とスペースを維持し、必要に応じて折り返す */
	}

/*
	ファイルサイズ
-------------------------------*/
@media screen and (max-width: 767.98px) {
	.filesize{
		font-size: 100%!important;
		display: block;
		opacity: .8;
		}
}

/*===================================================================

		沿革

===================================================================*/

.history_list strong{
  font-family: 'font_ZenMaruGothic-Medium', 'font_ZenMaruGothic-Regular', sans-serif!important;
  }

dl.history_lists:first-child {
  border-top: 1px dotted #aaa;
  }

dl.history_lists {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
  border-bottom: 1px dotted #aaa;
  margin-bottom: 0;
  padding-top: .6rem;
  padding-bottom: .3rem;
  }

dl.history_lists dt {
	font-size: 90%;
  font-weight: normal;
  width: 10rem;
  grid-column: 1;
  padding-left: .4rem;
  }

dl.history_lists dd {
	font-size: 90%;
  margin-left: 0;
  grid-column: 2;
  overflow: hidden;
  }

@media screen and (max-width: 767.98px) {
  dl.history_lists {
    grid-template-columns: 1fr; /* または minmax(0, 1fr) */
    gap: 0.3rem 0; 
    }

  dl.history_lists dt {
    width: auto;
    grid-column: 1 / -1;
    padding: 0 1rem;
    overflow: hidden;
    }

  dl.history_lists dd {
    grid-column: 1 / -1;
    padding: 0 1rem;
    overflow: hidden;
    }
}














/*===================================================================

		お問い合わせ

===================================================================*/
.wpforms-field-label{
	font-size: 100%!important;
	color: #777!important;
	font-weight: normal!important;
	}

.inquiry-address li {
	margin-bottom: .4rem;
	}
	
.inquiry-address li:hover {
	background-color: #F5F5F5;
	}

.inquiry-address li i {
	font-size: 60%;
	margin-right: .1rem;
	vertical-align: middle;
	opacity: .6;
	}

@media screen and (min-width: 768px) {
.inquiry-zoom .inquiry-zoom-content {
	display: inline-block;
	transition: transform 0.4s ease-in-out;
	}

.inquiry-zoom:hover .inquiry-zoom-content {
	transform: scale(1.25);
	color: var(--color_main)
	}
}

@media screen and (max-width: 767.98px) {
	.inquiry-address li{
		border-bottom: dotted 1px var(--color_main);
		margin-bottom: .4rem;
		padding-bottom: .2rem;
		}
	.inquiry-address li i {
		display: none;
		}
}

/*===================================================================

		お問い合わせ

===================================================================*/

/*
	Contact Form 7
==================================================*/

/*入力欄*/
.wpcf7-finput-field{
	margin-top: 3rem;
	}

/*横幅*/
.wpcf7 form .wpcf7-full-width{
  width: 100%!important;
  box-sizing: border-box!important;
	}

/*text、*/
.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form textarea {
  padding: .4rem .8rem;
  border: #aaa solid 1px;
	}

/*プレスホルダー*/
.wpcf7 form input::placeholder,
.wpcf7 form textarea::placeholder{
  color: #CCC;
  font-size: 90%;
	}

/*checkbox*/
.wpcf7 form input[type="checkbox"]{
  transform: scale(1.5);
  margin: 5px 5px 5px 0; 
	}

/*radio*/
.wpcf7 form input[type="radio"]{
  transform: scale(1.5);
  margin: 5px 5px 5px 0; 
	cursor: pointer;
	}

/*radio*/
.wpcf7 label{
	cursor: pointer;
	}

/*送信ボタン*/
.wpcf7 form .wpcf7-submit{
	margin-top: 1rem;
	background-color: var(--color_main);
	color: #FFF;
	border-color: var(--color_main);
	border: none!important;
	padding: .2rem .8rem;
	}

.wpcf7 form .wpcf7-submit:hover{
	opacity: .6;
	}

/*必須*/
.wpcf7 form .required-label{
	color: red;
	font-size: 86%;
	}

/*入力時*/
.wpcf7 form input:focus,
.wpcf7 form textarea:focus,
.wpcf7 form select:focus,
.wpcf7 form email:focus{
	border: solid 1px var(--color_main);;
	outline: none;
	background-color: #FFF2E4;
	}

/*エラー*/
.wpcf7 form .wpcf7-not-valid {
	padding: .4rem;
	border: solid 1px #ff3333 !important;  /* エラー枠線色 */
	background-color: #fff5f5;          /* 薄い赤背景（任意） */
	width: 100%;
	}

/*個人情報*/
.wpcf7 form .privacy-check{
	padding: 1rem;
	border: solid 1px #AAA;
	font-size: 90%!important;
	}

/*プライバシーポリシー*/
.wpcf7 form .check-privacy-policy{
	text-decoration: underline;
	padding: 0 .6rem;
	}


/*===================================================================

		動画一覧ページ

===================================================================*/
#youtube-video-wrapper{
  margin-top: 0;
  width: 100%;
  background-color: #000;
  }

/* メイン動画プレイヤー */
.youtube-video{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
  overflow: hidden;
  }

.youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: #000;
  }

ul.thumbnail-list{
  list-style: none;
  margin: 0;
  padding: 0;
  }
  
/* サムネイルコンテナ */
ul.thumbnail-list li,
ul.thumbnail-list li .youtube_thumbnail{
  position: relative;
	display: inline;
	height: 100%;
  }

/* サムネイル画像 */
ul.thumbnail-list li img {
  width: 100%;
  height: auto;
  cursor: pointer!important;
  transition: transform 0.3s ease-in-out;
  pointer-events: auto!important;
  -webkit-touch-callout: auto!important;
  -webkit-user-select: auto!important;
  -moz-touch-callout: auto!important;
  -moz-user-select: auto!important;
  user-select: auto!important;
  border-radius: 10px; /* 角丸 */
  }

/* activeクラスが付いたサムネイルのスタイル */
ul.thumbnail-list li.active img {
  border: 2px solid #000; /* 枠線の色 */
  transform: scale(1.05); /* クリックされたサムネイルを少し拡大 */
  filter: brightness(50%); /* サムネイルを暗くする */
  }

/* 「再生中」のテキスト */
ul.thumbnail-list .play-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* 文字の影で視認性を向上 */
  display: none; /* 初期状態では非表示 */
  }
  
/* activeクラスが付いた場合に再生中の文字を表示 */
ul.thumbnail-list li.active .play-text {
  display: block; /* クリックしたサムネイルに「再生中」を表示 */
	z-index: 2;
  }

ul.thumbnail-list .youtube-title{
  text-align: center;
  margin-bottom: .4rem;
  }

@media screen and (max-width: 767.98px) {
  ul.thumbnail-list .youtube-title{
    text-align: left!important;
    margin-bottom: 0!important;
    }
}

.youtube-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  }

.youtube-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  }

.youtube-play-button svg circle {
  stroke-width: 0.5;
  }

.active .youtube-play-button{
  display: none;
  }

.playback-message{
	border: solid 1px #AAA;
	
	margin-top: 1rem;
	padding: .8rem;
	font-size: 80%;
	}

#mp4-video-wrapper video{
	max-width: 100%;
	overflow: hidden;
	}

.mp4-thumbnail{
	position: relative;
	}

.mp4-thumbnail video{
	max-width: 100%;
	height: auto;
	overflow: hidden;
  pointer-events: none;/* 動画自体のクリックイベントを無効にする */
	}

ul.thumbnail-list .mp4-thumbnail.active .play-text {
  display: block; /* クリックしたサムネイルに「再生中」を表示 */
	z-index: 2;
  }

.mp4-thumbnail.active .mp-4overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 半透明の黒 */
  z-index: 1;
	}

#Watch_YouTube{
	margin-top: 1rem;
	text-align: right;
	}

.youtube_facility_name{
	color: #FFF!important;
	text-align: center;
	font-size: 70%;
	font-weight: normal;
	margin-right: 1rem;
	padding: 0 1rem;
	border-radius: 100px;
	}

@media screen and (max-width: 767.98px) {
	.youtube_facility_name {
		display: table;
		margin: 0 auto .6rem auto;
		}
}

.youtube_explanation{
	margin-top: 1rem;
	font-size: 80%;
	line-height: 1.6;
	}

#main-video-explanation{
	margin-top: .6rem;
	font-size: 90%;
	line-height: 1.6;
	}

/* ページネーションのアクセシビリティ用テキストを非表示にする */
.youtube-pagination .screen-reader-text {
	display: none;
	}

.youtube-pagination .navigation{
	display: block;
	}

.video-counts{
	background-color: var(--color_main_rgba_01);
	}


/*===================================================================

		動画シングルページ

===================================================================*/
/* メイン動画プレイヤー */
.youtube-video-single{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
  overflow: hidden;
  }

.youtube-video-single iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: #000;
  }

.single-video-f_name{
  display: table; /* ← ポイント: ブロック要素の性質を持ちつつ、幅をコンテンツに合わせる */
  margin: 0 auto 1rem auto; /* ← これが機能し、中央寄せされる */
  padding: 0 1rem;
  text-align: center;
  color: #FFF;
  border-radius: .3rem;
  }
