@charset 'utf-8';

:root{
  /* color */
  --main-color: #222222;
  --red-color: #C8000C;
  --light-orange: #CAB194;
  --yellow-color: #CEA248;
  --light-brown: #F7ECE1;
  --gray-color: #cccccc;
  --gold-color: #ECE1C8;
  --dark-gold-color:#A97E3F;

  /* font family */
  --ff-main: "Noto Sans JP", sans-serif;
  --ff-noto-serif: "Noto Serif JP", serif;
  --ff-lato: "Lato", sans-serif;

  /* font size */  
	--fz-10: 1em;
	--fz-14: 1.4em;
	--fz-16: 1.6em;
	--trs-3: all .3s ease;
    --ease-level1: cubic-bezier(0.215, 0.61, 0.355, 1);
	--transition-hover-fast: 440ms var(--ease-level1);
	--animation-circle: 1000ms var(--ease-level1) forwards;
}

/* reset
------------------------------------------------ */
body,div,pre,p,a,img,form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,table,th,td,embed,object,
figure,figcaption {
	margin: 0;
	padding: 0;
}

html { height: 100%; font-size: 62.5%; }
body {
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-text-size-adjust: 100%;
	font-family: var(--ff-main);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--main-color);
}

*,
*:before,
*:after { -webkit-box-sizing: border-box; box-sizing: border-box; }
ul,ol { list-style: none; }
img { width: auto; height: auto; max-width: 100%; border: none; vertical-align: top; }
a{ text-decoration: none; }
a:hover { text-decoration: none; }
.fz-16{ font-size: 1.6em; line-height: calc(27/16); }
.ff-noto-sans{  font-family: var(--ff-main); }
.ff-noto-serif{  font-family: var(--ff-noto-serif); }
.ff-lato{  font-family: var(--ff-lato); }
.f-w-700{ font-weight: 700; }
.f-w-900{ font-weight: 700; }
.c-ts1{ transition: .1s ease; -webkit-transition: .1s ease; -moz-transition: .1s ease; -ms-transition: .1s ease; -o-transition: .1s ease; }
.l-txt{ font-size: 1.6rem; font-weight: 400; line-height: calc(27.2/16); }
.l-one-line-txt{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.l-two-line-txt{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.color-red{ color: var(--red-color); }
.pr-0{ padding-right: 0; }
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.l-hover:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    transition: 0.4s all ease;
    background: var(--main-color);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .8s;
    transition-duration: .8s;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translate3d(0, 0, 0) scale(0, 1);
    transform: translate3d(0, 0, 0) scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    will-change: transform;
}

.l-hover:hover:after {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: translate3d(0, 0, 0) scale(1, 1);
    transform: translate3d(0, 0, 0) scale(1, 1);
}

/* contact list */
.l-contact-btn{ position: relative; transition: var(--trs-3); padding: 1em 3.4em; min-height: 10em; display: flex; flex-wrap: wrap; align-items: center; background-color: #fff; box-shadow: 1em 1em 2.5em rgba(34, 34, 34, 0.2); border-radius: .5em; -webkit-border-radius: .5em; -moz-border-radius: .5em; -ms-border-radius: .5em; -o-border-radius: .5em; }
.l-contact-btn span{ transition: var(--trs-3); }
.l-contact-btn svg path{ transition: var(--trs-3); }
.l-contact--txt{ font-size: 2em; font-weight: 700; color:var(--main-color); line-height: calc(20/26); }
.l-contact--number-txt{ display: block; text-align: left; font-size: 2.8em; font-weight: bold; font-family: var(--ff-lato); line-height: calc(37/28); letter-spacing: 0.025em; color:var(--main-color); }
.l-contact--icon{ margin-right: 1em; line-height: 1; }
.l-contact-time{ position: absolute; right: 0; top: 50%; font-size: 1.2em; font-weight: 400; line-height: calc(18/12); color: var(--main-color); transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -moz-transition: translate(-50%, -50%); -ms-transition: translate(-50%, -50%); -o-transition: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); }

@media only screen and (min-width: 769px) {
	.l-contact-list{ width: calc(854/1320 * 100%); display: inline-flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
	.l-contact-list > li{ width: calc(407/854 * 100%); }
	.l-contact-btn:not(.no-hover):hover{ background-color: var(--red-color); }
	.l-contact-btn:not(.no-hover):hover svg path{ fill: #fff; }
	.l-contact-btn:not(.no-hover):hover .l-contact--txt,
	.l-contact-btn:not(.no-hover):hover .l-contact--number-txt,
	.l-contact-btn:not(.no-hover):hover .l-contact-time{ color:#fff; }
	.l-contact--icon .svg-email{ width: 3.333em; height: 2.619em; }
	.l-contact--icon .svg-tel{ margin-top: .5em; width: 3.3em; height: 3.8em; }
}
@media only screen and (max-width: 768px) {
	.l-contact-list{ margin-top: 2.4em; }
	.l-contact-list li:not(:nth-child(-n+1)){ margin-top: 2em; }
	.l-contact-list li:last-child .l-contact-btn{ padding: 1em 1.8em; }
	.l-contact-list li:last-child .l-contact--icon{ margin-right: 0.8em; }
	.l-contact--icon .svg-email{ width: 2.7em; height: 2.1em; }
	.l-contact--icon .svg-tel{ width: 2.6em; height: 3em; }
	.l-contact--txt{ font-size: 1.5em; line-height: calc(20/15); }
	.l-contact--txt.tel-text{ font-size: 1.8em; }
	.l-contact--number-txt{ font-size: 2.5em; }
	.l-contact--note{ font-size: 1em; }
	.l-contact-time{ right: -1.0909em; font-size: 1.1em; text-align: left; line-height: calc(14/11); }
	.l-contact-btn{ min-height: 7em; }
}

/*
l-pagination
--------------------------*/
.l-pagination{ margin: 8em 0 0; }
.l-pagination-lists{ display: flex; align-items: center; justify-content: center; }
.l-pagination-lists li{ width: 5em; height: 5em; margin: 0 .5em; }
.l-pagination-lists li a,
.l-pagination-lists li span{ position: relative; width: 100%; height: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; font-size: 1.6em; line-height: calc(27.2/16); font-family: var(--ff-lato); color: #CCCCCC; border: 1px solid #E8E8E8; border-radius: 50%; transition: .2s ease; }
.l-pagination-lists li span:before{ content: '…'; position: absolute; left: 50%; top: .7em; transform: translateX(-50%); line-height: 1; }
.l-pagination-lists li.active a{ color:#fff; border-color: var(--main-color); background-color: var(--main-color); }
.l-pagination-lists li.prev a{ transform: rotate(180deg); }
.l-pagination-lists li.prev a:hover,
.l-pagination-lists li.next a:hover svg line{ stroke:#fff; }
.l-pagination-lists li.next a:hover svg path{ fill:#fff; }

@media only screen and (min-width: 769px) {
	.l-pagination-lists li:hover a{ color:#fff; border-color: var(--main-color); background-color: var(--main-color); }
}



@media only screen and (max-width: 768px) {
	.l-pagination{ margin-top: 5em; }
	.l-pagination-lists{ width: calc(100% + .8em); margin-left: -.4em; }
	.l-pagination-lists li{ width: 4em; height: 4em; margin: 0 .4em; }
	.l-pagination-lists li a, .l-pagination-lists li span{ font-size: 1.3em; }
	.l-pagination-lists li a svg{ width: 1.1538em; height: .3846em; }
}

/*
l-slide
---------------------------------- */
.l-slide{ padding-bottom: 3.1em; }
.l-slide-img{ border-radius: .5em; overflow: hidden; }
.l-slide-pagination{ bottom: -2px !important; }
.l-slide-pagination .swiper-pagination-bullet{ margin: 0 .5em !important; width: 5em !important; height: .6em !important; border-radius: .5em !important; background-color: var(--light-brown) !important; opacity: 1 !important; }
.l-slide-pagination .swiper-pagination-bullet-active{ background-color: var(--yellow-color) !important; }

@media only screen and (max-width: 768px) {
	.l-slide{ padding-bottom: 2.4em; }
	.l-slide-pagination .swiper-pagination-bullet{ height: .3em !important; }
}

/*
l-history
---------------------------------- */
.l-history{ padding: 7em 0; min-height: 23.6em; background-color: #EBE8E1; }
.l-history-title{ font-size: 3.2em; font-family: var(--ff-noto-serif); line-height: calc(48/32); }
.l-history-lists li{ padding-left: .75em; position: relative; }
.l-history-lists li:before{ content: ''; position: absolute; width: .375em; height: .375em; left: 0; top: .6875em; background-color: var(--yellow-color); border-radius: 50%; }
@media only screen and (min-width: 769px){
	.l-history-columns{ display: flex; flex-wrap: wrap;  }
	.l-history-col1{ width: calc(176/1160 * 100%); }
	.l-history-col2{ width: calc(492/1160 * 100%); padding-left: 3em; padding-right: 1em; }
	.l-history-col3{ width: calc(492/1160 * 100%); padding-left: 5em; border-left: 1px solid #D0AA5D; }
}

@media only screen and (max-width: 768px) {
	.l-history{ padding: 6em 0; }
	.l-history-title{ font-size: 2.1em; }
	.l-history-col2{ margin-top: 1em; }
	.l-history-col3{ margin-top: 3.5em; padding-top: 4em; border-top: 1px solid var(--yellow-color); }
}
/* container
------------------------------------------------ */
#container { position: relative; width: 100%; overflow: clip; font-size: 1rem; }
.link-skipcontent { position: absolute; margin: -1px; width: 1px; height: 1px; overflow: hidden; }
@media only screen and (min-width: 769px) and ( max-width: 1600px ) {
	#container { font-size: 0.625vw; }
}
/* @media only screen and (max-width: 1920px) and (min-width: 769px) {
	#container{ font-size: .5208vw; }
} */
@media only screen and (max-width: 350px) {
	#container { font-size: 2.66vw; }
}

.wrap { position: relative; margin: 0 auto; max-width: 116em; }
.wrap-800{ margin:0 auto; max-width:80em; }
.wrap-1160{ margin:0 auto; max-width:116em; }
.wrap-1240{ margin:0 auto; max-width:124em; }
.wrap-1320{ margin:0 auto; max-width:132em; }
@media only screen and (min-width: 769px) {
	.sp { display: none !important; }
}
@media only screen and (max-width: 768px) {
  	.wrap,
	.wrap-800,
	.wrap-1160,
	.wrap-1240,
	.wrap-1320{ padding: 0 2.5em; }
	.pc { display: none !important; }
	.sp-mt-20{ margin-top: 2em !important; }
	.sp-ta-center{ display: block; text-align: center; }
	.sp-pd-0{ padding: 0 !important; }
}

/* header
------------------------------------------------ */
#header{ transition: var(--trs-3); position: fixed; left: 0; top: 0; width: 100%; z-index: 999; background-color: #fff; -webkit-transition: var(--trs-3); -moz-transition: var(--trs-3); -ms-transition: var(--trs-3); -o-transition: var(--trs-3); box-shadow: 0px 3px 10px rgba(204, 204, 204, 0.16); }
#header:before{ position: relative; z-index: 1; content: ''; display: block; width: 100%; height: 8px; background: linear-gradient(90deg, #ae915b 4%, #c8b28e 11%, #c1a77c 15%, #b28b50 21%, #ae8545 23%, #bf9e63 33%, #e3d1b1 44%, #b89443 80%, #c6ad74 100%); transition: height .2s ease; }
.header-row{ display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; margin: 0 auto; }
.header-logo{ transition: all .3s ease; }
.header-logo h1{ font-size: inherit; line-height: 1; }
.header-logo a{ display: block; }

/*
nav
------------------------------------------------ */
.nav-list-item-link{ display: block; cursor: pointer; font-weight: bold; color: var(--main-color); }
.nav-list-item-link:hover > svg path{ transition: var(--trs-3); -webkit-transition: var(--trs-3); -moz-transition: var(--trs-3); -ms-transition: var(--trs-3); -o-transition: var(--trs-3); }
.menu-item-type-post_type.current_page_item .nav-list-item-link{ color: var(--red-color); }
.nav-sub-txt{ font-weight: bold; color:var(--main-color); }

@media only screen and (min-width: 769px) {
	.header-row{ max-width: calc(1820/1920 * 100%); }
	.header-logo{ width: calc(280/1820 * 100%); }
	.header-nav{ width: calc(1490/1820 * 100%); display: inline-flex; justify-content: flex-end; }
	.nav-list{ display: flex; flex-wrap: wrap; }
	.nav-list-item{ padding: 0 3em; display: inline-flex; align-items: center; height: 12.2em; position: relative; }
	.nav-list-item-contact{ padding: 0; }
	.nav-list-item-contact .nav-list-item-link{ padding:.8888em  1.6666em; background-color: var(--main-color); border-radius: 5px; transition: .2s ease; color: var(--yellow-color); }
	.nav-list-item-contact .nav-list-item-link:hover,
	.nav-list-item-contact.current_page_item .nav-list-item-link{ color: #fff; background-color: var(--red-color); }
	.nav-list-item-has-sub:hover .nav-sub-list{ display: block; opacity: 1; top:100%; }
	.nav-list-item-link{ font-size: 1.8em; transition: .2s ease; }
	.nav-list-item-link:hover{ color: var(--red-color); }
	.nav-sub-list{ padding: 3em 2.5em; display: none; position: absolute; left: -4.25em; top: 0; text-align: center; border-radius: 0px 0px 5px 5px; background-color: #fff; opacity: 0; transition: top .5s ease; box-shadow: 0px 3px 10px rgba(204, 204, 204, 0.16); }
	.nav-sub-item:not(:nth-child(-n+1)){ margin-top: 2em; }
	.nav-sub-item a{ display: block; padding-left:2.25em; font-size: 1.6em; font-weight: bold; line-height: calc(27.2/16); white-space: nowrap; transition: .2s ease; color: var(--main-color); background: url(../img/icon/icon_link_red.png) no-repeat 0 center / 1.625em auto; }
	.nav-sub-item a:hover{ color: var(--red-color); background: url(../img/icon/icon_link_black.png) no-repeat 0 center / 1.625em auto; }
	#header.header-fixed:before{ height: 5px; }
	.header-fixed .header-logo{ width: calc(227/1820 * 100%); }
	.header-fixed .nav-list-item{ height: 9.5em; }
	.header-fixed .nav-list-item-contact .nav-list-item-link{ border-radius: 3.2em; }
	.mobile-nav-contact,
	.mobile-nav-socail{ display: none; }
	.menu-bar{ display: none; }
}

@media only screen and (max-width: 768px) {
	#header:before{ height: 3px; }
	.header-row{ align-items: center; background-color: #fff; }
	.header-logo{ padding: .5em 0; width: 16.8em; margin-left: 1.2em; }
	.header-nav{ width: 100%; overflow-y: auto; padding: 10.8em 0 2em; position: absolute; left: 0; top: 0; height: 100lvh; visibility: hidden; opacity: 0; z-index: -1; visibility: hidden; transition: opacity .4s ease; background:  linear-gradient(90deg, #e5ce87 0%, #fef5d5 48.26%, #e5ce87 100%, #f3e18b 100%); }
	.header-nav:before{ content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: url(../img/share/nav_bg.png) no-repeat center top / 100% auto; }
	.header-nav.active{ visibility: inherit; opacity: 1; }

	.menu-bar {
		position: absolute;
		right: 0;
		top: 0;
		padding: 10px;
		width: 6em;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.hamburger-icon {
		position: relative;
		width: 2.5em;
		height: 1.2em;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.hamburger-icon span {
		position: absolute;
		height: 2px;
		width: 100%;
		background-color: #333;
		border-radius: 2px;
		transition: 0.3s ease;
	}
	.hamburger-icon span:first-child {top: 0;}  
	.hamburger-icon span:last-child {bottom: 0;}
	/* Active state transforms hamburger to X */
	/* .menu-bar.active { background-color: #d4d4d4; } */
	.menu-bar.active .hamburger-icon span:first-child {transform: rotate(45deg);top: 50%;}
	.menu-bar.active .hamburger-icon span:last-child {transform: rotate(-45deg); bottom: calc(50% - .2em);}	  

	.nav-list{ position: relative; z-index: 1; }
	.nav-list-item{ text-align: center; }
	.nav-list-item:not(:nth-child(-n+1)){ margin-top: 3em; }
	.nav-list-item-link{ display: inline-block; font-size: 1.6em; line-height: calc(24/16); }

	.mobile-nav-contact{ margin-top: 3em; padding: 3em 2.6em; border-top: 1px solid #fff; }
	.mobile-nav-contact .l-contact-list{ margin-top: 1.2em; }
	.mobile-nav-contact .l-contact-btn{ min-height: 6em; background-color: var(--main-color); }
	.mobile-nav-contact .l-contact--txt,
	.mobile-nav-contact .l-contact--number-txt,
	.mobile-nav-contact .l-contact-time{ color:#fff; }
	.mobile-nav-contact-txt{ font-size: 1.6rem; font-weight: bold; text-align: center; }
	.mobile-nav-socail{ display: flex; flex-wrap: wrap; justify-content: center; padding-top: 3em; padding-bottom: 1em; border-top: 1px solid #fff; }
	.mobile-nav-socail-link{ width: 2.8em; }

	.nav-sub-list{ display: none; padding-left: 2em; margin-top: 0.8em; }
	.nav-sub-btn{ display: block; position: relative; }
	.nav-sub-icon{ position: absolute; left: 0; top: 50%; transform: translateY(-50%); display: inline-flex; width: 0.5em; height: 0.5em; background-color: var(--main-color); border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; }
	.nav-sub-icon svg{ display: none; }
	.nav-sub-item{ display: table; }
	.nav-sub-item:not(:nth-child(-n+1)){ margin-top: 0.8em; }
	.nav-contact-list{ padding: 0 2.6em; }
}

/* main
------------------------------------------------ */
#main { padding-top: 12.9em; display: block; position: relative; width: 100%; }

/* title
------------------------------------------------ */
.title1{ font-size: 6.5em; font-family: var(--ff-noto-serif); line-height: calc(84.5/65); text-align: center; }
.title1-red-color{ color: var(--red-color); }
.title2{ padding-top: 0.8em; font-size: 4em; font-family: var(--ff-noto-serif); text-align: center; line-height: calc(52/40); background: url(../../_assets/img/icon/red_line.png) no-repeat center 0 / 2.875em auto; }
.title3{ margin-bottom: 1em; font-size: 2em; padding-left: 14px; position: relative; }
.title3:before{ position: absolute; left: 0; top: .7em; content: ''; width: 8px; height: 8px; border-radius: 50%; background-color: var(--red-color); }
.title4{ font-size: 3.2em; font-family: var(--ff-noto-serif); text-align: center; line-height: calc(48/32); }

@media only screen and (min-width: 769px) {
	.main-padding-bottom{ padding-bottom: 20em; }
}
@media only screen and (max-width: 768px) {
	.main-padding-bottom{ padding-bottom: 10em; }
	.mobile-main-padding-none{ padding-bottom: 0 !important; }
	.title1{ font-size: 3em; }
	.title2{ padding-top: .6666em; font-size: 3em; line-height: calc(45/30); background-size: 2.0666em auto; }
	.title3{ font-size: 1.8rem; margin-bottom: .8333em; }
	.title3:before{ top:.65em; }
	.title4{ font-size: 2.1em; line-height: calc(31.5/21); }
}
/*
lists
------------------------------------------------- */
.lists1-item-info{ padding: 0 .3846em; margin-top: 1.230em; display: flex; flex-wrap: wrap; align-items: center; font-size: 1.3em; }
.lists1-item-cat{ padding: 0 .6153em; font-weight: bold; line-height: calc(20/13); color:#fff; border-radius: .7692em; background-color: #AD6001; }
.lists1-item-date{ margin-left: 1.230em; font-weight: 400; }
.lists1-item-link{ display: block; height: 100%; color:var(--main-color); border-radius: .5em; overflow: hidden; background-color: var(--light-brown); }
.lists1-item-title{ width: calc(100% - .625em); margin: 0 auto; position: relative; margin-top: .75em; font-size: 1.6em; font-weight: 400; }
.lists1-item-title:after{
	content: "";
    position: absolute;
    right: 0;
    width: 0;
    bottom: 0;
    background: var(--main-color);
    height: 1px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.lists1-item-img{ position: relative; padding: .5em; width: 100%; height: 19.9em; overflow: hidden; }
.lists1-item-img:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../img/share/frame_1.png) no-repeat 0 0 / 3.2em 3.2em,
				url(../img/share/frame_2.png) no-repeat right 0 / 3.2em 3.2em,
				url(../img/share/frame_4.png) no-repeat right bottom / 3.2em 3.2em,
				url(../img/share/frame_3.png) no-repeat 0 bottom / 3.2em 3.2em;
}
.lists1-item-img img{ object-fit: cover; object-position: center; height: 100%; width: 100%; transition: .2s ease; }

@media only screen and (min-width: 769px) {
	.lists1{ display: flex; flex-wrap: wrap; }
	.lists1-item{ width: calc(360/1160 * 100%); }
	.lists1-item:not(:nth-child(3n+1)){ margin-left: calc(40/1160 * 100%); }
	.lists1-item:not(:nth-child(-n+3)){ margin-top: 6em; }
	.lists1-item-link{ padding: 2.7em; }
	.lists1-item-title{ padding-bottom: .32em; }
	.lists1-item-link:hover .lists1-item-title:after{
        left: 0;
        right: auto;
        width: 100%;
    }
	.lists1-item-img::after{
		z-index: 2;
	}
	.lists1-item-img::before{
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: transparent;
		border:.5em solid var(--light-brown);
		z-index: 1;
	}
	.lists1-item-link:hover .lists1-item-img img{ transform: scale(1.1); }
}

@media only screen and (max-width: 768px) {
	.lists1-item+.lists1-item{ margin-top: 4em; }
	.lists1-item-info{ margin-top: 1.25em; font-size: 1.2rem; padding: 0 .4166em; }
	.lists1-item-cat{ line-height: calc(20/12); }
	.lists1-item-date{ margin-left: 1.3333em; }
	.lists1-item-link{ padding: 2.2em 2.5em 3em; }
	.lists1-item-title{ padding-bottom: 0; }
	.lists1-item-img:after{
		background: url(../img/share/frame_1.png) no-repeat 0 0 /2.9em 2.9em,
					url(../img/share/frame_2.png) no-repeat right 0 / 2.9em 2.9em,
					url(../img/share/frame_4.png) no-repeat right bottom / 2.9em 2.9em,
					url(../img/share/frame_3.png) no-repeat 0 bottom / 2.9em 2.9em;
	}
	.lists1-item-img{ height: 18.1em; }
}

/*
lists2
------------------------------------------------- */
.lists2{ margin-top: 6em; border-top: 1px solid #E8E8E8; }
.lists2-item-cat{ font-size: 1.3em; padding: 0; min-width: 4.9em; font-weight: bold; text-align: center; line-height: calc(20/13); color:#fff; border-radius: .7692em; background-color: #AD6001; }
.lists2-item-date{ font-size: 1.3em; font-weight: 400; }
.lists2-item-link{ padding: 2.15em 0; display: flex; flex-wrap: wrap; align-items: flex-start; color: var(--main-color); border-bottom: 1px solid #E8E8E8; transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }

@media only screen and (min-width: 769px) {
	.lists2-item-link:hover{ padding-left: 1.5em; border-bottom-color: #AD6001; }
	.lists2-item-date{ margin-top: .3846em; width: calc(135/800 * 100%); padding-left: 1.2307em; }
	.lists2-item-cat{ margin-top: .3846em; }
	.lists2-item-txt{ max-width: calc(596/800 * 100%); }
}
@media only screen and (max-width: 768px) {
	.lists2{ margin-top: 1.5em; }
	.lists2-item-cat{ margin-top: 0; }
	.lists2-item-date{ margin-top: 0; margin-left: 1.2307em; }
	.lists2-item-txt{ margin-top: 0.5em; width: 100%; }
	.lists2-item-link{ padding: 2.3em 0; }
}
.lists3{ font-size: 1.2em; line-height: calc(18/12); }
.lists3 li{ padding-left: 1em; text-indent: -1.2em; }
.lists3 li::before{ content:'※'; padding-right: .25em; }
.lists3 li+li{ margin-top: 0.5em; }

/*
i-circle-spinner
------------------------------------------------- */
.i-circle-spinner {
	font-size: inherit;
	width: 24px;
	height: 24px;
	position: relative;
}
.i-circle-spinner span {
	width: 3px;
	height: 3px;
	background-color: var(--main-color);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: center;
	opacity: 0;
}
.js-show .i-circle-spinner span{ animation: circle var(--animation-circle); }

/* 12 Dots spaced 30 degrees apart in a circle */
.i-circle-spinner span:nth-child(1)  { animation-delay:calc(200ms + 60ms); }
.i-circle-spinner span:nth-child(2)  { animation-delay:calc(200ms + 120ms); }
.i-circle-spinner span:nth-child(3)  { animation-delay:calc(200ms + 18ms); }
.i-circle-spinner span:nth-child(4)  { animation-delay:calc(200ms + 240ms); }
.i-circle-spinner span:nth-child(5)  { animation-delay:calc(200ms + 300ms); }
.i-circle-spinner span:nth-child(6)  { animation-delay:calc(200ms + 360ms); }
.i-circle-spinner span:nth-child(7)  { animation-delay:calc(200ms + 420ms); }
.i-circle-spinner span:nth-child(8)  { animation-delay:calc(200ms + 480ms); }
.i-circle-spinner span:nth-child(9)  { animation-delay:calc(200ms + 540ms); }
.i-circle-spinner span:nth-child(10) { animation-delay:calc(200ms + 600ms); }
.i-circle-spinner span:nth-child(11) { animation-delay:calc(200ms + 720ms); }
.i-circle-spinner span:nth-child(12) { animation-delay:calc(200ms + 780ms);}

@media only screen and (min-width: 769px) {
	.i-circle-spinner span:nth-child(1)  { transform: rotate(0deg)   translate(10px) rotate(0deg); }
	.i-circle-spinner span:nth-child(2)  { transform: rotate(30deg)  translate(10px) rotate(-30deg); }
	.i-circle-spinner span:nth-child(3)  { transform: rotate(60deg)  translate(10px) rotate(-60deg); }
	.i-circle-spinner span:nth-child(4)  { transform: rotate(90deg)  translate(10px) rotate(-90deg); }
	.i-circle-spinner span:nth-child(5)  { transform: rotate(120deg) translate(10px) rotate(-120deg); }
	.i-circle-spinner span:nth-child(6)  { transform: rotate(150deg) translate(10px) rotate(-150deg); }
	.i-circle-spinner span:nth-child(7)  { transform: rotate(180deg) translate(10px) rotate(-180deg); }
	.i-circle-spinner span:nth-child(8)  { transform: rotate(210deg) translate(10px) rotate(-210deg); }
	.i-circle-spinner span:nth-child(9)  { transform: rotate(240deg) translate(10px) rotate(-240deg); }
	.i-circle-spinner span:nth-child(10) { transform: rotate(270deg) translate(10px) rotate(-270deg); }
	.i-circle-spinner span:nth-child(11) { transform: rotate(300deg) translate(10px) rotate(-300deg); }
	.i-circle-spinner span:nth-child(12) { transform: rotate(330deg) translate(10px) rotate(-330deg); }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
	.i-circle-spinner{ transform: scale(.6); }
}

@media only screen and (max-width: 768px) {
	.i-circle-spinner{ width: 18px; height: 18px; }
	.i-circle-spinner span {
		width: 2px;
		height: 2px;
	}

	/* 12 dots spaced evenly in a circle, radius 7px */
	.i-circle-spinner span:nth-child(1)  { transform: rotate(0deg)   translate(7px) rotate(0deg); }
	.i-circle-spinner span:nth-child(2)  { transform: rotate(30deg)  translate(7px) rotate(-30deg); }
	.i-circle-spinner span:nth-child(3)  { transform: rotate(60deg)  translate(7px) rotate(-60deg); }
	.i-circle-spinner span:nth-child(4)  { transform: rotate(90deg)  translate(7px) rotate(-90deg); }
	.i-circle-spinner span:nth-child(5)  { transform: rotate(120deg) translate(7px) rotate(-120deg); }
	.i-circle-spinner span:nth-child(6)  { transform: rotate(150deg) translate(7px) rotate(-150deg); }
	.i-circle-spinner span:nth-child(7)  { transform: rotate(180deg) translate(7px) rotate(-180deg); }
	.i-circle-spinner span:nth-child(8)  { transform: rotate(210deg) translate(7px) rotate(-210deg); }
	.i-circle-spinner span:nth-child(9)  { transform: rotate(240deg) translate(7px) rotate(-240deg); }
	.i-circle-spinner span:nth-child(10) { transform: rotate(270deg) translate(7px) rotate(-270deg); }
	.i-circle-spinner span:nth-child(11) { transform: rotate(300deg) translate(7px) rotate(-300deg); }
	.i-circle-spinner span:nth-child(12) { transform: rotate(330deg) translate(7px) rotate(-330deg); }
}

/*
table
------------------------------------------------- */
.table1{ width: 100%; border-spacing: 2px; table-layout: fixed; }
.table1 th,
.table1 td{ height: 4.125em; font-size: 1.6em; line-height: calc(27.2/16); text-align: center; vertical-align: middle; }
.table1 th{ color:#fff; }
.table1.table1-color2 th{ color:var(--main-color); background-color: var(--light-brown); }
.table1.table1-color2 td{ color:var(--main-color); background-color: #fff; }
/* .table1.table1-2-column-1-row th{ border-radius: .5em 0 0 .5em !important; }
.table1.table1-2-column-1-row td{ border-radius: 0 .5em .5em 0 !important; } */

.table1.table1-2-column-1-row tr:first-child th{ border-top-left-radius: .5em !important; }
.table1.table1-2-column-1-row tr:first-child td{ border-top-right-radius: .5em !important; }
.table1.table1-2-column-1-row tr:last-child th{ border-bottom-left-radius: .5em !important; }
.table1.table1-2-column-1-row tr:last-child td{ border-bottom-right-radius:.5em !important; }

@media only screen and (min-width: 769px) {
	.table1 th{ background-color: var(--yellow-color); }
	.table1 td{ background-color: #fff; }
	.table1:not(.table1-2-column-1-row) thead th:first-child{ border-radius: .5em 0 0 0; }
	.table1:not(.table1-2-column-1-row) thead th:last-child{ border-radius: 0 .5em 0 0; }
	.table1:not(.table1-2-column-1-row) tbody td:first-child{ border-radius: 0 0 0 .5em; }
	.table1:not(.table1-2-column-1-row) tbody td:last-child{ border-radius: 0 0 .5em 0; }
}



@media only screen and (max-width: 768px) {
  .table1 th, .table1 td{ height: 3.5em; }
  .table1.table1-mobile-2-col {
    display: block;
    width: 100%;
  }
  .table1.table1-mobile-2-col thead {
    display: none;
  }
  .table1.table1-mobile-2-col tbody {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .table1.table1-mobile-2-col tr {
    display: block;
    width: 100%;
  }
  .table1.table1-mobile-2-col td {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background: transparent !important;
  }
  .table1.table1-mobile-2-col td+td{ margin-top: 2px; }
  .table1.table1-mobile-2-col td span{
	background-color: #fff;
  }
  .table1.table1-mobile-2-col td::before {
    content: attr(data-label);
	font-weight: bold;
	color: #fff;
	background-color: var(--yellow-color);
  }
  .table1.table1-color2.table1-mobile-2-col td::before {
	color:var(--main-color);
	background-color: var(--light-brown);
  }
  .table1.table1-mobile-2-col td span,
  .table1.table1-mobile-2-col td::before{
	width: calc(50% - 1px);
	height: 100%;
	display:inline-flex;
	align-items: center;
	justify-content: center;
  }
  .table1.table1-mobile-2-col td:first-child{ border-radius: 5px 5px 0 0; overflow: hidden; }
  .table1.table1-mobile-2-col td:last-child{ border-radius: 0 0 5px 5px; overflow: hidden; }
}

/* filter
------------------------------------------------- */
.l-filter { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 10em; }
.l-filter--box { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; overflow: hidden; position: relative; padding: 0 2em; max-width: 28em; width: 100%; height: 5em; margin: 0 1.25em; background: var(--main-color); border-bottom: .2em solid var(--red-color); box-sizing: border-box; border-top-left-radius: .5em; border-top-right-radius: .5em; }
.l-filter--select { opacity: 0; position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 2; }
.l-filter--label { font-size: 1.3em; font-weight: bold; display: inline-block; color: var(--yellow-color); }
.l-filter--span {  font-size: 1.6em; font-weight: bold; display: inline-block; color:#fff; }
.l-filter--span:after { content: ''; display: inline-block; vertical-align: -.3em; margin-left: .8125em; width: 1.25em; height: 1.25em;  background: url(../img/icon/icon_link_dot.svg) no-repeat; background-size: 100% 100%; }

@media only screen and (max-width: 768px) {
	.l-filter { margin: 6em -1em 4em; justify-content: space-between; }
	.l-filter--box { padding: 0 1em; max-width: inherit; width: calc( 50% - .75em ); margin: 0; }
	.l-filter--label { font-size: 1em; }
	.l-filter--span { font-size: 1.4em; }
	.l-filter--span:after{ margin-left: .357em; }
}





/* btn
------------------------------------------------- */
.btn-1{ display: flex; flex-wrap: wrap; align-items: center; justify-content: center; min-height: 8em; padding: 0; position: relative; overflow: hidden; border-radius: .5em; transition: var(--transition-hover-fast); background-color: var(--main-color); }
.btn-1-white{ min-height: 5em; background-color: #fff; border:1px solid #CCCCCC; }
.btn-1-title{ display: block; font-size: 1.6em; font-weight: bold; color:#fff; }
.btn-1-white .btn-1-title{ color:var(--main-color); transition: var(--transition-hover-fast); }
.btn-1-icon{ position: relative; width: 2.6em; height: 2.6em; margin-right: 2em; border-radius: 50%; overflow: hidden;background-color: var(--red-color); transition: background-color var(--transition-hover-fast); }
.btn-1-icon svg {
    width: 1.24em;
    height: 1.24em;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: calc(1.24em * -.5);
    margin-left: calc(1.24em * -.5);
    transition: transform var(--transition-hover-fast);
}
.btn-1-icon svg:nth-of-type(2) {
	-webkit-transform: translate3d(calc(1.24em * -3), 0, 0);
	transform: translate3d(calc(1.24em * -3), 0, 0);
}
.btn-2{ min-height: 8em; display:flex; flex-wrap: wrap; justify-content: center; align-items: center; position:relative; color:var(--main-color); border-radius: .5em; background-color: var(--red-color); transition: background-color var(--transition-hover-fast); }
.btn-2 span{ min-width: 8.3125em; font-size: 1.6em; font-weight: bold; text-align: center; color:#fff; line-height: calc(27/16); transition: color var(--transition-hover-fast); }
.btn-2-icon{ position: relative; width: 2.6em; height: 2.6em; margin-right: 2em; border-radius: 50%; overflow: hidden; background-color: #fff; transition: background-color var(--transition-hover-fast); }
.btn-2-icon svg {
    width: 1.6em;
    height: 1.6em;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: calc(1.6em * -.5);
    margin-left: calc(1.6em * -.5);
    transition: transform var(--transition-hover-fast);
}
.btn-2-icon svg:nth-of-type(2) {
	-webkit-transform: translate3d(calc(2.6em * -3), calc(2.6em * 3), 0);
	transform: translate3d(calc(2.6em * -3), calc(2.6em * 3), 0);
}

@media only screen and (min-width: 769px) {

	a.btn-1:hover{ background-color: var(--red-color); }

	a:hover .btn-1-icon{ background-color: #fff; }

	a:hover .btn-1-icon svg:nth-of-type(1){

		-webkit-transform: translate3d(calc(2.6em * 3), 0, 0);

		transform: translate3d(calc(2.6em * 3), 0, 0);

	}

	a:hover .btn-1-icon svg:nth-of-type(2) {

		-webkit-transform: translate3d(0, 0, 0);

		transform: translate3d(0, 0, 0);

	}



	.btn-2:hover{ color:#fff; background-color: var(--main-color); }

	a:hover .btn-2-icon{ background-color: var(--red-color); }

	a:hover .btn-2-icon svg:nth-of-type(1){

		-webkit-transform: translate3d(calc(2.6em * 3), calc(2.6em * -3), 0);

		transform: translate3d(calc(2.6em * 3), calc(2.6em * -3), 0);

	}

	a:hover .btn-2-icon svg:nth-of-type(2) {

		-webkit-transform: translate3d(0, 0, 0);

		transform: translate3d(0, 0, 0);

	}



	a.btn-1-white:hover{ background-color: var(--main-color); border-color: var(--main-color); }

	a.btn-1-white:hover .btn-1-title{ color:#fff; }

	a.btn-1-white:hover .btn-1-icon{ background-color: var(--red-color); }

	a.btn-1-white:hover .btn-1-icon path{ fill: #fff; }

}



@media only screen and (max-width: 768px) {

	#main { padding-top: 6em; }

	.btn-1{

		min-height: 5em;

		border-radius: .5em;

		-webkit-border-radius: .5em;

		-moz-border-radius: .5em;

		-ms-border-radius: .5em;

		-o-border-radius: .5em;

	}

	.btn-1-white{ min-height: 4em; }

	.btn-1-title{ font-size: 1.6em; line-height: calc(27.2/16); }

	.btn-1-icon{ width: 2em; height: 2em; margin-right: 1.6em; }

	.btn-1-icon svg{ width: .77em; height: .77em; margin-top: calc(.8em * -.5); margin-left: calc(.77em * -.5); }



	.btn-2{ min-height: 5em; }

	.btn-2-icon{ width: 2em; height: 2em; }

	.btn-2 span{ min-width: 6.875em; text-align: right; }

	.btn-2-icon svg{ width: 1em; height: 1em; margin-top: calc(1em * -.5); margin-left: calc(1em * -.5); }



	/* scrollbar */

	.scrollx::-webkit-scrollbar {

	height: 3px;

	}

	

	/* Track */

	.scrollx::-webkit-scrollbar-track {

	background-color: #443B29;

	border-radius: 2px;

	}

	.scrollx.white-bar::-webkit-scrollbar-track {

	background-color: rgba(255, 255, 255, .13);

	}

	

	.scrollx.gold-bar::-webkit-scrollbar-track {

	background-color: #ECE1C8;

	}

	.scrollx.gray-bar::-webkit-scrollbar-track {

	background-color: #E8E8E8;

	}

	

	/* Handle */

	.scrollx::-webkit-scrollbar-thumb {

	background: #C8000C; 

	border-radius: 2px;

	}

}





.logo-container.active .logo-path{

	font-weight: 900;

	fill:#333;

}

.logo-container.active .logo-path {

	stroke:#333;

}



.logo-path {

	transition: stroke 0.3s ease;

}





/* footer
------------------------------------------------ */
#footer{ padding-bottom: 12px; background-color: #F2F2F2; }
.f-inner{ margin: 0 auto; max-width: 132em; width: 100%; }
.f-contact{ background-color:var(--main-color); }
.f-contact-title{ padding-top: 3em; color:var(--yellow-color); line-height: 1; background: url(../img/icon/red_line.png) no-repeat center top / 11.5em auto; }
.f-contact-title h2{ font-size: inherit; }
.f-contact-title-ja{ display: block; font-size: 4.5em; font-family: var(--ff-noto-serif); line-height: calc(64.5/45); }
.f-contact-title-en{ display: block; margin-top: .35em; font-size: 2em; font-weight: bold; font-family: var(--ff-noto-serif); text-transform: capitalize; line-height: calc(21.3/20); text-align: center; }

@media only screen and (min-width: 769px) {
	.f-nav-list-item-link:hover > svg path,
	.f-nav-list-item-link.active > svg path{ fill:transparent; stroke: var(--main-color); }
	.f-contact-row{ padding: 4em 0; display: flex; flex-wrap: wrap; justify-content: space-between; }
}



@media only screen and (max-width: 768px) {
	#footer{ margin-top: 0; padding-bottom: 1.5em; }
	.f-inner{ max-width: calc(100% - 5em); }
	.f-contact-row{ padding: 4em 0 5em; }
	.f-contact-title{ padding-top: 1.7em; background-size: 6.2em auto; }
	.f-contact-title-ja{ font-size: 2em; text-align: center; }
	.f-contact-title-en{ margin-top: .5714em; font-size: 1.4em; }
}

.f-logo{ margin: 0 auto; width: 28em; }
.f-logo > a{ display: block; line-height: 1; }
.f-pannel{ padding-top: 8em; }
.f-nav-item a{ display: block; font-size: 1.8rem; font-weight: bold; color:var(--main-color); line-height: calc(27/18); transition: .2s ease; }
.l-copyright{ margin-top: 6.5em; font-size: 1em; font-weight: 400; text-align: center; line-height: calc(15/10); }

@media only screen and (min-width: 769px) {
	.f-head{ display: inline-flex; flex-wrap: wrap; align-items: flex-start; width: calc(274/1320 * 100%); }
	.f-content{ width: calc(1046/1320 * 100%); }
	.f-nav{ margin-top: 4.5em; }
	.f-nav-list{ display: flex; flex-wrap: wrap; justify-content: center; }
	.f-nav-item{ padding: 0 3.5em; }
	.f-nav-item a:hover{ color:var(--red-color); }
	.f-socail{ display: none; }
}

@media only screen and (max-width: 768px) {
	.f-logo{ width: 20.1em; }
	.f-pannel{ padding-top: 4em; }
	.f-nav{ margin-top: 3.6em; }
	.f-nav-item:not(:nth-child(-n+1)){ margin-top: 2.5em; }
	.f-nav-item a{ text-align: center; font-size: 1.6em; }
	.f-socail{ margin-top: 5.8em; display: flex; flex-wrap: wrap; justify-content: center; }
	.f-socail-link{ width: 2.8em; }
	.l-copyright{ margin-top: 6em; }
}

/*
keyframes
----------------------------------------*/

@keyframes fade {

	0%, 100% { opacity: 0; }

	50% { opacity: 1; }

}

/* ------------------------------------------------------------
 circle
------------------------------------------------------------ */
@keyframes circle{
	0%{
		opacity: 0;
	}
	30%{
		opacity: 1;
	}
	60%,70%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}