@charset "utf-8";
/* CSS Document */


/*  ////////////
 header section
////////////  */


.header{
}
.navbar{
	background: rgba(70,110,120,0.75);
}
.brand-logo .custom-logo {
  vertical-align: text-bottom !important;
}

a img:hover{
	opacity:0.7;
	transform:scale(0.98);
	transition:0.3s;
}

#logo-container{
	height: 100%;
}
#index-banner{
	height: 90vh;
}
#index-banner h1{
text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
}

#index-banner .bannerImg{
	clip-path: polygon(20% 0, 100% 0%, 100% 100%, 20% 100%, 0% 50%);
}


#video-area{
	position: fixed;
	z-index: -2;/*最背面に設定*/
	top: 0;
	right:0;
	left:0;
	bottom:0;
	overflow: hidden;
}
#video-area:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(-60deg, rgba(255,255,255,0.7), rgba(255,255,255,0.7), rgba(255,255,255,0.3), rgba(255,255,255,0.3))fixed;
	content: "";
	width: 100%;
	height: 100%;
	z-index: -1;
}

#video {
	/*天地中央配置*/
	position: absolute;
	z-index: -2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*縦横幅指定*/
	width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
	height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
}
.slider-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.30);
	background: url("../assets/images/overlay-diamond.png");
	margin: auto;
	z-index: 0;
	
}
/*見出し設定*/
#index-banner .container{
	/*要素の配置*/
	position:absolute;
	/*要素を天地中央寄せ*/
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	/*見た目の調整*/
	color:#333;
	width: 1280px;
	height: 80%;
}
#index-banner .container h1{
	font-weight: bold;
}
#index-banner .container>.row,#index-banner .container>.row>div,#index-banner .bannerImg{
	height: 100%;
}
#index-banner img{
	width: 300px;
}

@media screen and (max-width:1280px){
	#index-banner .container{
		width: 100%;
	}
}


/* パンくずリスト */

.breadcrumb{
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

/* パンくずリストend */


.section{
	margin: 0 auto;
}
.section .container{
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.page .section{
	padding: 0;
}

.sec01{
	background-size: 100%;
}

.Ttl01 aside{
	border-left: 3px solid #777777;
	margin-left: 1rem;
	padding-left: 1rem;
}


.bgUD .mask{
  position:relative;/*テキストの基点となる位置を定義*/
	height: 180px;
}
.bgUD img{
  height: 100%;
	object-fit: cover;
}


.bgUD span.mask{
  position:relative;/*背景色の基点となる位置を定義*/
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

.bgUD span.mask::before{
  content:"";
  position: absolute;
  z-index: 2;
  left:0;
  bottom:0;
  opacity:1;
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  transform: translateY(70%);
  background:rgba(0,0,0,0.50);/*背景色*/
  width: 100%;
  height: 100%; 
}

.bgUD:hover span.mask::before{/*hoverした時の変化*/
  opacity:1;
  transform: translateY(0%);
}

.bgUD span.cap{
  position: absolute;
	height: 100%;
  opacity:1;
  transition: .35s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  z-index:3;/*テキストを前面に出す*/
	vertical-align: top;
	top: -1.7rem;
	left: 0;
	margin-top: 0;
	transform: translateY(83%);
  color: #fff;/*テキストの色を変えたい場合はここを修正*/
}

.bgUD:hover span.cap{/*hoverした時の変化*/
  opacity:1;
  transform: translateY(0%);
	margin-top: 2rem;
}


.sec02 img,.sec03 img{
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}
.sec02 figure,.sec03 figure{
	margin: .25rem;
	position: relative;
}
.sec02 figure a,.sec03 figure a{
  display: flex;
  position: relative;
}
.sec02 figure a span,.sec03 figure a span{
  display: flex;
  height: 100%;
	width: 100%;
  z-index: 2;
	height: 170px;
}
.sec02 figure a::before,.sec03 figure a::before{
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(-45deg, #777, #777 2px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 4px);
  z-index: 1;
	border-radius: 10px;
}
.sec02 figcaption,.sec03 figcaption{
	position: absolute;
	right: 0;
	top: 20%;
  z-index: 3;
	font-weight: 600;
}
.sec02 figure img,.sec03 figure img{
  -ms-filter: grayscale(30%);
  filter: grayscale(30%);
	height: 100%;
	object-fit: cover;
}
.sec03 figure a,.sec03 figure span,.sec03 figure span img{
	height: 100%;
}
.sec03 figure span img{
	object-fit: cover;
}


.sec04>div{
	display: flex;
}
.sec04 .sec04L {
	 order: 1;
	
}
.sec04 .sec04R {
	 order: 2;
}
@media screen and (max-width: 680px) {
.sec04>div{
	display: inline-block;
}
}

.sec04L .card {
	background: rgba(255,255,255,0.30)
	
}

/*  ////////////
	 Main section
////////////  */


main .columns{
	height: 100%;
}
main .mainImg img{
	max-width: 85%;
}
main .mainTxt{
	padding: 2rem 0;
	letter-spacing: 3px;
	text-align: center;
	text-shadow:1px 1px 0 #000, -1px -1px 0 #000,
							-1px 1px 0 #000, 1px -1px 0 #000,
							0px 1px 0 #000,  0-1px 0 #000,
							-1px 0 0 #000, 1px 0 0 #000,
							2px 2px 3px #000;
	line-height: 4rem;
}

@media screen and (min-width:1024px){
	.mainTxt{
		max-width: 1024px;
		margin: 0 auto;
	}
	.mainTxt hr{
		width: 80%;
		margin: 0 auto;
	}

}
@media screen and (max-width:768px){
	main .mainCts{
		position: relative;
	}
	main .mainBg img{
		object-fit: cover;
		height: 100%;
		margin: auto;
		max-width: 100%;
	}
	main .mainTxt{
		background: rgba(255,255,255,0.5);
		padding: 1rem 0;
		letter-spacing: 1px;
		margin-top: 1rem;
		font-size: 1.3rem;
	}
	main .mainTxt span{
		font-size: 120%;
		display: inline-block;
	}
	main .mainIco{
		width: 100%;
	}
}

@media screen and (max-height:768px){
	main .mainCts .mainImgSp {
    top: 4.5rem;
		height: 12rem;
	}
	main .mainCts .mainImgSp img {
		max-height: 100%;
		width: 100%;
		object-fit: cover;
	}
	main .mainTxt{
		line-height: 1.65rem;
	}
	main .mainCts>div:last-child {
			bottom: -2rem;
	}
}

/*  ////////////
		sidebar
////////////  */

#sidebar{
	order:2;
	margin: 0 auto;
	margin-right: 0;
	background: #f7f7f7;
}

#sidebar .sMenu{
	width: 100%;
}

/*アコーディオン全体*/
.accordion-area{
	list-style: none;
	margin:0 auto;
}

.sMenuTtl{
	position: relative;/*+マークの位置基準とするためrelative指定*/
	cursor: pointer;
	font-size:1rem;
	font-weight: normal;
	padding: 3% 3% 3% 50px;
	transition: all .5s ease;
}
.sMenuTtl::before,
.sMenuTtl::after{
	position: absolute;
	content:'';
	width: 13px;
	height: 3px;
	background-color: #777;
}
.sMenuTtl::before{
	top:50%;
	left: 15px;
	transform: rotate(0deg);   
}
.sMenuTtl::after{    
	top:50%;
	left: 15px;
	transform: rotate(90deg);

}
.sMenuTtl.close::before{
  transform: rotate(45deg);
}

.sMenuTtl.close::after{
  transform: rotate(-45deg);
}

.sMenuBox {
	display: none;
	background: #FFF;
	margin:2%;
	padding: 3%;
}

	
#sidebar dl{
	margin: 0 0 0 auto;
}

#content{
	order:1;
}
#content img{
	width:100%;
}


/*  ////////////
		sub section
////////////  */

@media screen and (min-width:1216px){
	.subSec1>div{
		max-width: 1216px;
		margin: 0 auto;
	}
}

.subSec1,.subSec3{
	background: #f1ecdc;
}


/*tabの形状*/
.tab{
  display: flex;
  flex-wrap: wrap;
}
.tab li a{
  display: block;
  background:rgba(200,200,200,0.7);
  margin:0 2px;
  padding:10px 20px;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
  background:rgba(255,255,255,0.7);
}


/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.area h2{
  font-size:1.3rem;
  margin:0 0 20px 10px;
}

.area li{
  padding: 10px; 
}



/*  ////////////
	 column
////////////  */

.column-L figure{
	margin: 0 auto;
}



/*  ////////////
	 CTA
////////////  */

@media screen and (min-width:1408px){
	.footCta>div{
		max-width: 1408px;
		margin: 0 auto;
	}
}


/*  ////////////
	 footer area
////////////  */

.News dl{
	display: block;
	font-size: 1rem;
	border-bottom: #fff solid 1px;
	margin-bottom: 2rem;
}
.News dl dt,.News dl dd{
	display: inline-block;
}
.News dl dt{
	border-bottom:#E8CC37 2px solid;
	padding-bottom: .5rem;
	margin-bottom: 0;
	width: 20%;
}
.News dl dd{
	margin-left: 2rem;
}

/*  ////////////
	 footer area
////////////  */

.footerArea{
	background: #eee;
}

.footerArea .newsArea dl{
	display: block;
	font-size: 1rem;
	border-bottom: #fff solid 1px;
	margin-bottom: 2rem;
}
.footerArea .newsArea dl dt,.footerArea dl dd{
	display: inline-block;
}
.footerArea .newsArea dl dt{
	border-bottom:#E8CC37 2px solid;
	padding-bottom: .5rem;
	margin-bottom: 0;
	width: 20%;
}
.footerArea .newsArea dl dd{
	margin-left: 2rem;
}

.footerArea .snsLinks img{
	width:100%;
	max-height: 100%;
}

@media screen and (min-width:1408px){
	.footerArea>div{
		max-width: 1408px;
		margin: 0 auto;
	}
}

footer{
	position:relative;
	background: #777;
	z-index: 1;
	color: #FFF;
}
.footer{
	padding: 5rem 1.5rem;
}
footer a{
	color: #FFF;
}
footer h3{
	font-weight: 600;
	margin-bottom: 1rem;
}

footer .maparea{
	height: 300px;
}

.current {
  border-bottom:#C5E0F7 2px solid;
	padding-bottom: 2px;
}



/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
	z-index: 9999;
}
.spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
/* KEYFRAMES */

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to{
    transform: rotate(359deg);
  }
}

@keyframes spin3D {
  from {
    transform: rotate3d(.5,.5,.5, 360deg);
  }
  to{
    transform: rotate3d(0deg);
  }
}

@keyframes configure-clockwise {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes configure-xclockwise {
  0% {
    transform: rotate(45deg);
  }
  25% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(-135deg);
  }
  75% {
    transform: rotate(-225deg);
  }
  100% {
    transform: rotate(-315deg);
  }
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: .25;
    transform: scale(.75);
  }
}

/* GRID STYLING */

* {
  box-sizing: border-box;
}


/* X-ROTATING BOXES */

.configure-border-1 {
  width: 100px;
  height: 100px;
  padding: 3px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(251,91,83,.5);
  animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
}

.configure-border-2 {
  width: 100px;
  height: 100px;
  padding: 3px;
  left: -115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(63,249,220,.4);
  transform: rotate(45deg);
  animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
}

.configure-core {
  width: 100%;
  height: 100%;
} 
/* コンテンツ部分の装飾 */
.gallery {
  display: grid;
  gap: .5rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
img {
  object-fit: cover;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}



.data-archive-item-link {
	text-decoration: none; /* Remove underline from links if card is a link */
}
.card .card-image .card-title-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px; /* Adjust padding as needed */
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Example background for readability */
	/* Inherit custom classes from your reference */
}
.card .card-image .card-title-overlay .entry-title {
	display: block; /* Ensure title takes full width if needed */
	line-height: 1.2; /* Adjust line height */
	font-size: 1.1rem; /* Adjust font size of title */
}
/* Your custom classes from reference (if not globally defined) */
.LS04 { letter-spacing: 0.04em; /* Example interpretation */ }
.font14rem { font-size: 1.4rem !important; } /* Be careful with !important */
.TxtWhite { color: white !important; }
.font08rem { font-size: 0.8rem !important; }
.DSPIb { display: inline-block !important; }
.BgBK-L { background-color: rgba(0,0,0,0.7); /* Example: Black with Light transparency */ }
.Px05 { padding-left: 0.5em; padding-right: 0.5em; }
.Mx05 { margin-left: 0.5em; margin-right: 0.5em; }
.MarkYellow { background-color: yellow; color: black; /* Example for yellow mark */ }
.My10 { margin-top: 10px; margin-bottom: 10px; } /* Example for My10 */

/* Materialize Pagination Styling Adjustments */
.pagination-wrapper .pagination {
	display: inline-block; /* Center the ul.pagination itself */
}
.pagination-wrapper .pagination li {
	display: inline-block; /* Make li elements inline */
	vertical-align: middle;
}
.pagination-wrapper .pagination li a,
.pagination-wrapper .pagination li span.page-numbers { /* span for current page */
	color: #444;
	display: inline-block;
	font-size: 1.2rem;
	padding: 0 10px;
	line-height: 30px;
}
.pagination-wrapper .pagination li.active a,
.pagination-wrapper .pagination li.active span.page-numbers {
	color: #fff;
}
.pagination-wrapper .pagination li.disabled a {
	cursor: default;
	color: #999;
}
.pagination-wrapper .pagination li i.material-icons {
	line-height: 30px; /* Align icons */
}
.pagination-wrapper .pagination .page-numbers.current { /* Style for WordPress current item */
    font-weight: bold;
	/* background-color: #ee6e73; /* Materialize accent color example */
    /* color: white; */ 
}
/* If using paginate_links with 'type' => 'list' or the_posts_pagination(), 
   WordPress adds 'current' class to the active page number. 
   Materialize uses 'active' on the <li>.
   The custom pagination loop above tries to handle this.
*/


