@charset "UTF-8";
:root {
    --color-Background-Primary: #FFFFFF;
    --color-Background-Secondary: #f7f7f7;
    --color-Text-Primary: #222222;
    --color-Text-White: #FFF;
    --color-Theme: #fbc50b;
    --color-Gray-Light: #EDEEEE;
    --color-Gray-Medium: #BFBFBF;
    --color-Gray-Dark: #666666;

    --header-height: 80px;
    --side-margin: 24px;
    --section-padding: 48px;
	--section-heading-margin : 32px;
	--flex-gap : 48px;
    @media (min-width: 960px) {
        --header-height: 80px;
        --side-margin: 48px;
        --section-padding: 80px;
		--section-heading-margin : 48px;
		--flex-gap : 64px;
		--flex-column : 2;
    }
    @media (min-width: 1200px) {
		--flex-gap : 96px;
		--flex-column : 2;
    }
}    
body {
	background: var(--color-Background-Primary); 
    color: var(--color-Text-Primary); 
    font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,serif;
    font-size: 16px;
}  
main {
	position: relative;
}
section {
    position: relative;
    padding: var(--section-padding) 0;
}
.container {
	width: calc(100% - var(--side-margin) * 2);
	max-width: 640px;
	margin: auto;
}  
@media (min-width: 960px) {
	.container {
		max-width: 1200px;
	}
}

.flex_wrap {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: var(--flex-gap);
}
.flex_wrap > * {
	width: 100%;
}
@media (min-width: 960px) {	
	.flex_wrap {
		align-items: center;
		gap: var(--flex-gap);
	}
	.flex_wrap > * {
		width: calc(100% / var(--flex-column) - calc(var(--flex-gap) / var(--flex-column)) )
	}
}
/*@media (min-width: 1200px) {	
	.prof_wrap {
		gap: 96px;
	}
	.prof_wrap > * {
		width: calc(100% / 2 - 48px)
	}
} */
a, button {
    transition: .3s;
}
p {
	line-height: 2.0;
	letter-spacing: .05em;
}
.font_bold {
	font-weight: bold;
}
img {
	vertical-align: bottom;
} 
img.center {
	display: block;
	margin-inline: auto;
}
h2.section_heading  {
	position: relative;
	margin-bottom: var(--section-heading-margin);
    font-size: clamp(24px, 3.5vw, 32px);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .05em;
	text-transform: uppercase;
	text-align: center;
}

/*-- header --*/
header {
	position: fixed;
	top: 0;
    left: 0;
	width: 100%;
	background-color: transparent;
	z-index: 999;
}
header .container {
	max-width: 1200px;
}
header.sticky {
	background-color: var(--color-Theme); 
	box-shadow: 0 -2px 15px rgba(0, 0, 0, .3);
} 
.header_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
}
.header_logo img {
	width: 56px;
}
.header_logo a:hover {
    opacity: .6;
}	 	
#gnav {
	display: flex;
	align-items: center; 
	height: 100%;
}
#gnav.visible {
	display: flex;
    justify-content: center;
	padding-top: 48px;
	animation-name: fadein;
	animation-duration: 1s;
	opacity: 1; 
}
@keyframes fadein {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}
#gnav ul {
    display: flex;
    flex-direction: column;
    gap: 48px;
    text-align: center;
}
#gnav ul li {
	color: var(--color-Text-Primary) ;
	font-size: 16px;
	font-weight: 700;
    letter-spacing: .1em;
}
#gnav ul li span {
	position: relative;
	display: inline-block; 
	padding-bottom: 4px;
}
#gnav ul li span:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background: var(--color-Text-Primary);
	visibility: visible;
	transform: scaleX(0);
	transition: all 0.3s; 
}
#gnav ul li:hover span:before, 
#gnav ul li:active span:before {
	visibility: visible;
	transform: scaleX(1); 
}	
#toggle {
	position: relative;
	padding: 12px 8px;
	background-color: var(--color-Theme);
	border-radius: 4px;
	cursor: pointer;
} 
#trigger {
	position: relative;
	width: 32px;
	height: 20px;
}
#trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1.5px;
	background-color: var(--color-Text-Primary);
	border-radius: 3px;
	transition: 0.6s;
}
#trigger span:nth-of-type(1) {
	top: 0;
}
#trigger span:nth-of-type(2) {
	top: 9px;
}
#trigger span:nth-of-type(3) {
	bottom: 0;
}
#trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(9px) rotate(45deg);
	transform: translateY(9px) rotate(45deg);
  }
#trigger.active span:nth-of-type(2) {
	opacity: 0;
  }
#trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(-45deg);
	transform: translateY(-9px) rotate(-45deg);
  }    
@media (min-width: 960px) {
	#gnav {
		padding-top: 0;
        width: auto;
        position: relative;
        align-items: center;
	}
    #gnav ul {
        flex-direction: row;
        gap: 32px;
    }
    #toggle {
	    display: none;
    }
} 
@media (max-width: 959px) {
    #gnav {
        display: none;
        width: 100%;
        height: 100%;
        position: fixed;
        top: var(--header-height);
        left: 0;
        align-items: flex-start;
        background-color: var(--color-Theme);
    }
} 
/*-- footer --*/
footer {
	padding: 16px 0px;
	background-color: var(--color-Theme);
}
footer .social_icon {
	margin-top: 12px;
}
footer .social_icon a {
	width: 100%;
	height: 100%;
}
footer .social_icon a:hover {
	opacity: .6;
}
footer .social_icon a img {
	display: block;
	width: 24px;
	margin-inline: auto;
}
footer .copyright p {
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}
/*-- Pagetop --*/
.pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px; 
	z-index: 999;
}
.pagetop a {
    display: block;
	width: 48px;
	height: 48px;
    background-color: var(--color-Background-Primary);
    border-radius: 8px;
    box-shadow: 0 0 6px 0 rgba(181,181,181,.5);
	opacity: 0.6;
} 
.pagetop a:hover,
.pagetop a:active {
	opacity: 1;
} 
.pagetop a::before {
    position: absolute;
    content: '';
    top: 20px;
    left: 16px;
    width: 15px;
    height: 16px;
    border-top: solid 2px var(--color-Gray-Dark);
    border-right: solid 2px var(--color-Gray-Dark);
    transform: rotate(-45deg);
} 
/*-- mainvisual --*/
.owl-carousel {
	position: relative;
}
.owl-carousel .owl-item {
	opacity: .4; 
}
.owl-carousel .owl-item.active {
    opacity: 1;
}
.owl-carousel .owl-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	width: 100%;
	text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
    position: relative;
	width: 12px;
	height: 12px;
	margin: 8px;
	border-radius: 50%;
	background: var(--color-Theme); 
}
.owl-carousel .owl-dots .owl-dot.active {
	background: #fff; 
}     
.owl-carousel .owl-dots .owl-dot:after {
	position: absolute;
	top: -2px;
	left: -2px;
	right: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
}
.owl-carousel .owl-dots .owl-dot:hover,
.owl-carousel .owl-dots .owl-dot:focus {
	outline: none;
}
.owl-carousel .slider-item {
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-position: left bottom; 
}
@media (max-width: 560px) {
	.owl-carousel .slider-item.owl-images-02 {
		background-position: left 13% top;
	}
}
.mainv_wrap {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
.owl-images-02 .mainv_wrap {
	align-items: flex-start;
	padding-top: 96px;
}
.mainv_wrap > * {
	width: 100%;
}
.mainv_wrap hgroup {
	margin-bottom: 32px;
	text-align: center;
}
.subheading {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: .5em;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
}
.subheading::before,
.subheading::after {
	content: "";
	height: 1px; 
	width: 32px; 
  	background-color: var(--color-Text-Primary);
}
.subheading::before {
  	margin-right: 1em;
}
.subheading::after {
  	margin-left: 1em;
}
h1 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(48px, 6.0vw, 72px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .15em;
}
@media (min-width: 960px) {
	.owl-images-02 .mainv_wrap {
		align-items: center;
		padding-top: 0;
	}
	.owl-images-02 hgroup {
		margin-left: 50%;
	}
}
/*-- section Prof --*/
#prof_sec {
	background-color: var(--color-Background-Secondary);
}
.prof_text_content > * + * {
	margin-top: 32px;
}
.prof_note {
	list-style: none ;
}
.prof_note li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	letter-spacing: .05em;
}
.prof_note li + li {
	margin-top: 12px;
}
.prof_account {
	padding: 12px 20px;
	background-color: var(--color-Background-Primary);
	border: 2px dotted var(--color-Gray-Medium);
	font-size: 0.9em;
	line-height: 1.8;
}
.prof_account p + p {
	margin-top: 12px;
}
@media (min-width: 960px) {	
	#prof_sec h2 {
		text-align: left;
	}
	.prof_text {
		order: 2;
	}
	.prof_account {
		display: inline-block ;
		padding: 20px 24px;
	}	
}
@media (min-width: 1200px) {	
	.prof_wrap {
		gap: 96px;
	}
	.prof_wrap > * {
		width: calc(100% / 2 - 48px)
	}
}
/*-- section Price --*/
#price_sec {
    background-color: var(--color-Background-Secondary);
} 
.pricetable  {
	width: 100% ;
	border-collapse: collapse;
	border-spacing: 0;
} 
.pricetable *  {
	letter-spacing: .05em;
} 
.pricetable th {
    padding: 8px 12px;
	font-weight: 400;
}
.pricetable td {
    padding: 8px 12px;
    text-align: right;
}
.price_note {
	margin-top: 24px;
    padding-left: 12px;
	list-style: none ;
}
.price_note li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	letter-spacing: .05em;
}
.price_note li + li {
	margin-top: 12px;
}
@media (min-width: 960px) {	
	#price_sec h2 {
		text-align: left;
	}
}
/*-- section Access --*/
#access_sec {
	background-color: var(--color-Background-Secondary);
}
@media (min-width: 960px) {
	#access_sec h2 {
		text-align: left;
	}
	.flex_wrap > .map {
		width: 60%;
	}
	.flex_wrap > .access_text {
		flex: 1;
	}
}
/*-- section Gallery --*/
#gallery_sec {
    background-color: var(--color-Background-Secondary);
	padding-bottom: 0;
}
#gallery_sec h2 {
	margin-bottom: calc(var(--section-heading-margin) - 16px) ;
}
.gallery_wrap {
	overflow: hidden;
}
.gallery_wrap .swiper {
	overflow: visible;
	padding: 0 24px;
}
.gallery_wrap .inner {
    position: relative;
    margin: 0 auto;
    padding: 16px 40px var(--section-padding);
    max-width: 1200px;
    box-sizing: content-box;
}
.gallery_wrap .slide {
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 8px 8px 12px rgba(0, 0, 0, .05), -8px -8px 12px #fff;
	transition: .8s cubic-bezier(.2, 1, .2, 1), opacity 1s;
}
.gallery_wrap .swiper-slide:not(.swiper-slide-visible) {
	pointer-events: none;
	opacity: 0.3;
}
.gallery_wrap .slide_media {
	position: relative;
	overflow: hidden;
}
.gallery_wrap .slide_media img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1.5 / 1;
}
.gallery_wrap .slide_content {
	padding: 32px;
}
.gallery_wrap .slide_date {
	display: block;
	color: var(--color-Gray-Dark);
	font-size: 14px;
	line-height: 1;
}
.gallery_wrap .slide_title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 3.2em;
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.6;
}
.gallery_wrap .swiper-button-prev,
.gallery_wrap .swiper-button-next {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
}
.gallery_wrap .swiper-button-prev,
.gallery_wrap .swiper-button-next {
	display: grid;
	place-content: center;
	width: 48px;
	height: 48px;
	cursor: pointer;
	transition: .8s cubic-bezier(.2, 1, .2, 1), opacity 1s;
}
.gallery_wrap .swiper-button-prev {
	right: calc(100% - 48px);
}
.gallery_wrap .swiper-button-next {
	left: calc(100% - 48px);
}
.gallery_wrap .swiper-button-prev::before,
.gallery_wrap .swiper-button-next::before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .3);
	box-shadow: 8px 8px 12px rgba(0, 0, 0, .1), -8px -8px 12px rgba(#fff,.2);
}
.gallery_wrap .swiper-button-prev::after,
.gallery_wrap .swiper-button-next::after {
	content: "";
	width: 12px;
	height: 12px;
	border: solid var(--color-Background-Primary);
	border-width: 3px 3px 0 0;
}
.gallery_wrap .swiper-button-prev::after {
	margin-left: 4px;
	transform: rotate(-135deg);
}
.gallery_wrap .swiper-button-next::after {
	margin-right: 4px;
	transform: rotate(45deg);
}
.gallery_wrap .swiper-button-disabled {
	pointer-events: none;
	opacity: 0;
}
@media (min-width: 960px) {
	.gallery_wrap .inner {
		padding-right: 100px;
		padding-left: 100px;
	}
	.gallery_wrap .swiper {
		padding-right: 0;
		padding-left: 0;
	}
	.gallery_wrap .swiper-button-prev,
	.gallery_wrap .swiper-button-next {
		width: 64px;
		height: 64px;
	}
	.gallery_wrap .swiper-button-prev {
		right: calc(100% - 16px);
	}
	.gallery_wrap .swiper-button-next {
		left: calc(100% - 16px);
	}
	.gallery_wrap .swiper-button-prev::before,
	.gallery_wrap .swiper-button-next::before {
		transition: .8s cubic-bezier(.2, 1, .2, 1), opacity 1s;
	}
	.gallery_wrap .swiper-button-prev:hover::before,
	.gallery_wrap .swiper-button-next:hover::before {
		transform: scale(1.2);
	} 
	.gallery_wrap .slide:hover {
		transform: translateY(-16px);
		box-shadow: 10px 10px 15px rgba(0,0,0, .08), -10px -10px 15px #fff;
	}
}
[class*=swiper]:focus {
	outline: none;
} 
/*-- section Message --*/
#message_sec {
	padding-top: 32px;
	background-color: var(--color-Background-Secondary);
}
.message_wrap {
	margin-inline: auto;
	padding: 24px 32px;
	background-color: var(--color-Background-Primary); 
	/*border: 1px solid var(--color-Gray-Light); */
	box-shadow: 8px 8px 12px rgba(0, 0, 0, .05);
	max-width: 800px;
}
.message_wrap h2 {
	position: relative;
	margin-bottom: 24px;
	padding: 0 .5em .5em 2em;
	border-bottom: 1px solid var(--color-Theme);
	font-family: "Sawarabi Mincho", serif; 
	font-size: 18px;
	text-align: left;
}
.message_wrap h2::before,
.message_wrap h2:after {
	position: absolute;
	content: '';
	border-radius: 100%
}
.message_wrap h2:before {
	top: -0.5em;
	left: 0em;
	width: 24px;
	height: 24px;
	background-color: rgba(251,197,11,.8);
	z-index: 2;
}
.message_wrap h2:after {
	top: .2em;
	left: .8em;
	width: 16px;
	height: 16px;
	background-color: rgba(251,197,11,.4);
}
.message_wrap > figure {
	margin-top: 32px;
}
.message_text {
  background-image:
    linear-gradient(
      90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 50%,
      #ffff 50%,
      #ffff 50%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 97%,
      #ccc 97%,
      #ccc 100%
    );
  background-size:
    8px 100%,
    100% 2em;
  line-height: 2;
}
.message_text p {
	font-family: "Sawarabi Mincho", serif; 
}	
.message_text p + p {
	margin-top: 2em;
}
@media (min-width: 576px) {
	.message_wrap {
		padding: 40px 48px;
	}
}