/* -----------------------------------------------
 * テキストアニメーション & 縦線設定 (中央配置修正版)
 * ----------------------------------------------- */
.cover .ttl,
.pagettl .ttl,
.story .ttl,
.about_kikutei .ttl,
.cafe_intro .ttl,
.intro .ttl {
    position: relative !important;
    display: block !important;
    overflow: visible !important;
    /* 上下のテキストの間隔：上が30px、下が30px、線が100px = 合計160px */
    margin-bottom: 160px !important; 
}

/* 縦線の設定：上下の中間に配置 */
.story .ttl::after ,
.cover .ttl::after ,
.pagettl .ttl::after ,
.about_kikutei.ttl::after ,
.cafe_intro .ttl::after ,
.intro .ttl::after{
    content: "" !important;
    position: absolute !important;
    top: calc(100% + 30px) !important; /* テキストの30px下から開始 */
    left: 50% !important;
    width: 1px !important;
    height: 100px !important; /* 長さ100px */
    background-color: #47527c !important;
    transform: translateX(-50%) !important;
}


/* 一文字ずつのスタイル */
.story .ttl .char,
.cover .ttl .char,
.pagettl .ttl .char,
.about_kikutei .ttl .char,
.cafe_intro .ttl .char,
.intro .ttl .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(5px) rotate(-0.5deg);
    will-change: transform, opacity;
}

/* 表示時のアニメーション実行 */
 .pagettl .ttl.is-visible .char,
 .cover .ttl.is-visible .char,
 .about_kikutei .ttl.is-visible .char,
 .cafe_intro .ttl.is-visible .char,
 .intro .ttl.is-visible .char {
    animation: minimalSlowWobble 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* 極小のゆらぎアニメーション */
@keyframes minimalSlowWobble {
    0% {
        opacity: 0;
        transform: translateY(5px) translateX(-1px) rotate(-0.5deg);
    }
    40% {
        opacity: 1;
        transform: translateY(-1px) translateX(1px) rotate(0.3deg);
    }
    75% {
        transform: translateY(0.5px) translateX(-0.5px) rotate(-0.1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) rotate(0);
    }
}


/* 新規追加：STORY部分のアニメーション用CSS */
	.custom-split-text .char {
		display: inline-block;
		opacity: 0;
		transform: translateY(15px);
	}
	.custom-split-text.is-visible .char {
		animation: customSplitFadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	@keyframes customSplitFadeIn {
		0% { opacity: 0; transform: translateY(15px); }
		100% { opacity: 1; transform: translateY(0); }
	}


/* アニメーション前の初期状態：透明にして待機 */
.logo-delayed-fade {
  opacity: 0;
  position: relative;
}

/* JSによって is-ready が付与されたら、そこから「5秒待って(5s)」アニメーション開始 */
body.is-ready .logo-delayed-fade {
  animation: 
    logoFadeUp 2s ease-out 5s forwards,
    logoSway 2s ease-in-out 5s forwards;
}

/* Y軸：ゆっくり減速しながら上昇しフェードイン */
@keyframes logoFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* X軸：左→右→左と複数回滑らかに方向を変えて揺れる */
@keyframes logoSway {
  0%   { left: 0px; }
  25%  { left: 0px; } /* X軸は少し数値を入れて揺れるように調整しています */
  50%  { left: 0px; }
  75%  { left: 0px; }
  100% { left: 0px; }
}
/*======================================================================================
TOP PAGE
======================================================================================*/
/* 両側の水玉模様 */
.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    opacity: 0.9;
    will-change: transform, opacity, background-color;
    transition: background-color 1s ease, opacity 1s ease;
}
.cover#top {
	position: relative;
}
@media screen and (min-width:700px){
/* video */
.video-box_sp {
display:none;
}
.video-box {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}
.video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
}

/*
.cover#top iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: none;
}
*/
section.intro{
	position: relative;
	width: 100%;
}
section.intro h2 {
	line-height: 2.3;
}
section.intro p {
	line-height: 2.7;
	margin-top: 50px;
}
.intro_img02,
.intro_img04 {
	z-index: 1;
}
@media screen and (max-width:699px){
	.video-box {
		display:none;
	}
.video-box_sp {
		height: 65vh;
	}
.video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
	.cover#top h1 {
		width: 100px;
		padding: 0;
		position: absolute;
		z-index: 1;
		top: calc(50% - 50px);
		left: calc(50% - 47.165px);
	}
	.intro_inner {
		width: 90%;
		margin: 0 5%;
	}
	section.intro h2 {
		margin-top: 12vw;
	}
	.intro_img_pc {
		display: none;
	}
	.intro_img_sp {
		display: flex;
		justify-content: space-between;
		margin: 40px 0 70px;
	}
	.intro_img_spl,
	.intro_img_spr {
		width: 48%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.intro_img_spl {
		height: 156vw;
	}
	.intro_img_spr {
		height: 171.5vw;
	}
	.intro_img03 {
		margin-top: 15vw;
	}
	/*
	.intro_img01,
	.intro_img02,
	.intro_img03,
	.intro_img04,
	.intro_img05 {
		position: relative;
	}
	.intro_img01 {
		width: 35%;
		top: 20vw;
		left: -24px;
	}
	.intro_img02 {
		width: 50%;
		top: 16vw;
		left: -26px;
	}
	.intro_img03 {
		width: 55%;
		top: -77vw;
		right: -52%;
	}
	.intro_img04 {
		width: 55%;
		top: -80vw;
		right: -65%;
	}
	.intro_img05 {
		width: 50%;
		top: -85vw;
		right: -53%;
	}
	*/
}
@media screen and (min-width:700px){
	.cover#top h1 {
		width: 135px;
		padding: 0;
		position: absolute;
		z-index: 1;
		top: calc(50% - 63.5px);
		left: calc(50% - 67.5px);
	}
	.intro_inner {
		max-width: 1100px;
		width: 45%;
		margin: 0 auto;
		text-align: center;
	}
	section.intro h2 {
		padding-top: 10vw;
	}
	.intro_img_sp {
		display: none;
	}
	.intro_img01,
	.intro_img02,
	.intro_img03,
	.intro_img04,
	.intro_img05 {
		position: absolute;
	}
	.intro_img01 {
		width: 19.4%;
		top: 4vw;
		left: -1.6%;
	}
	.intro_img02 {
		width: 22.9%;
		top: 30vw;
		left: -1.8%;
	}
	.intro_img03 {
		width: 25%;
		top: 2vw;
		right: -1.4%;
	}
	.intro_img04 {
		width: 25%;
		top: 18vw;
		right: -7.5%;
	}
	.intro_img05 {
		width: 25%;
		top: 33vw;
		right: -3.1%;
	}
}
@media screen and (max-width:699px){
	section.story {
		margin-top: 50px;
	}
}
@media screen and (min-width:700px) and (max-width:1299px){
	section.story {
		margin-top: 17vw;
	}
}
@media screen and (min-width:1300px){
	section.story {
		margin-top: 25vw;
	}
}
.story-center {
	width: 100%;
	position: relative;
	background-image: url("images/bg_story.png");
	background-repeat: repeat;
	background-position: left top;
}
.story-center::before {
	content: "";
	position: absolute;
	background-image: url("images/bg_story_top.png");
	background-repeat: repeat-x;
	background-position: left bottom;
	width: 100%;
	height: 18px;
	top: -18px;
	left: 0;
}
.story-center::after {
	content: "";
	position: absolute;
	background-image: url("images/bg_story_bottom.png");
	background-repeat: repeat-x;
	background-position: left top;
	width: 100%;
	height: 19px;
	bottom: -19px;
	left: 0;
}
section.story h2{
	letter-spacing: .5em;
	line-height: 2.5;
}
section.story p {
	line-height: 2.7;
}
@media screen and (max-width:699px){
	section.story .contents1250 {
		margin: 0 auto;
		padding: 70px 0;
	}
	section.story p {
		margin-top: 30px;
	}
	section.story .btn {
		margin: 40px auto 0;
	}
	section.story .img {
		margin-top: 40px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.story .contents1250 {
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		width: 100%;
		padding: 100px 20px;
		margin: 0 auto;
		clear: both;
		overflow: hidden;
	}
	section.story .txtbox {
		width: 35%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	section.story p {
		margin-top: 30px;
	}
	section.story .btn {
		margin-top: 5vw;
	}
	section.story .img {
		width: 58%;
	}
}
@media screen and (min-width:1280px){
	section.story .contents1250 {
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		padding: 120px 20px;
	}
	section.story .txtbox {
		width: 35%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	section.story p {
		margin-top: 30px;
	}
	section.story .btn {
		margin-top: 85px;
	}
	section.story .img {
		width: 58%;
	}
}
section.top_facilities h2 {
	letter-spacing: .5em;
}
.facilities_box picture img {
	width:90%;
}
.facilities_box:last-child picture img {
	margin-left: 10%;
}
.facilities_box:last-child h2 {
	text-align: right;
	margin-top: 50px;
}
.facilities_box p {
	letter-spacing: .5em;
	line-height: 2.3;
	margin-top: 45px;
}
.facilities_box .btn_wrap {
	margin: 55px auto 0;
}
@media screen and (max-width:699px){
	.facilities_box h2 {
		padding: 100px 5.2% 50px;
	}
	.facilities_box h2 span {
		font-size: 12px;
		display: block;
		margin-top: 15px;
	}
	.facilities_box p{
		font-size: 12px;
	}
	.facilities_box .btn_wrap,
	.facilities_box .btn_wrap .btn{
		max-width: 350px;
		width: 100%;
	}
	.facilities_box:first-child .btn_wrap .btn:last-child {
		margin-top: 20px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	.facilities_box h2 {
		padding: 115px 5.2% 65px;
	}
	.facilities_box:last-child h2 {
		display: flex;
		flex-direction: row-reverse;
	}
	.facilities_box h2 span {
		font-size: 12px;
	}
	.facilities_box:first-child h2 span {
		margin-left: 2.6%;
	}
	.facilities_box:last-child h2 span {
		margin-right: 2.6%;
	}
	.facilities_box p{
		text-align: center;
		font-size: 12px;
	}
	.facilities_box:first-child .btn_wrap {
		max-width: 740px;
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	.facilities_box:last-child .btn_wrap {
		width: 350px;
	}
	.facilities_box:first-child .btn_wrap .btn {
		max-width: 350px;
		width: 48%;
	}
}
@media screen and (min-width:1280px){
	.facilities_box h2 {
		padding: 120px 80px 70px;
	}
	.facilities_box:last-child h2 {
		display: flex;
		flex-direction: row-reverse;
	}
	.facilities_box h2 span {
		font-size: 12px;
	}
	.facilities_box:first-child h2 span {
		margin-left: 45px;
	}
	.facilities_box:last-child h2 span {
		margin-right: 45px;
	}
	.facilities_box p{
		text-align: center;
		font-size: 12px;
	}
	.facilities_box:first-child .btn_wrap {
		width: 740px;
		display: flex;
		justify-content: space-between;
	}
	.facilities_box:last-child .btn_wrap {
		width: 440px;
	}
}

section.slider1 {
	width: 100%;
	background-image: url("images/bg_about.png");
	background-repeat: repeat-y;
	background-position: center top;
	position: relative;
	padding: 20px 0 35px;
	margin: 150px 0 60px;
}
section.slider1::before{
	content: "";
	position: absolute;
	background-image: url("images/bg_about_top.png");
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	height: 37px;
	top: -37px;
	left: 0;
}
section.slider1::after{
	content: "";
	position: absolute;
	background-image: url("images/bg_about_bottom.png");
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	height: 42px;
	bottom: -42px;
	left: 0;
}
.shiso {
	position: relative;
	width: 100%;
}
.shiso h2 span.jp {
	display: block;
	position: relative;
	margin-top: 45px;
}
.shiso h2 span::before {
	content: "";
	position: absolute;
	top: -36px;
	left: calc(50% + 8px);
	width: 1px;
	height: 32px;
	background: #000;
	transform: rotate(30deg);
	transform-origin: top;
}
.shiso p {
	margin-top: 70px;
	line-height: 2.5;
}
@media screen and (max-width:699px){
	.shiso .txtbox {
		margin-top: 30px;
	}
	.shiso h2 span.jp {
		font-size: 14px;
	}
	.shiso .img {
		max-width: 600px;
		width: 90%;
		margin: 50px auto 0;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	.shiso {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.shiso .txtbox {
		width: 53%;
	}
	.shiso h2 span.jp {
		font-size: 15px;
	}
	.shiso .img {
		width: 42.5%;
	}
}
@media screen and (min-width:1280px){
	.shiso {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.shiso .txtbox {
		width: 50%;
	}
	.shiso h2 span.jp {
		font-size: 16px;
	}
	.shiso .img {
		width: 42%;
	}
}
.slide1 {
	flex-wrap: nowrap !important;
	margin-top: 55px;
}
.slide1 li {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center;
	aspect-ratio: 25 / 49;
	position: relative;
}
.slide1 li:nth-of-type(odd) {
	flex-direction: column;
}
.slide1 li:nth-of-type(even) {
	flex-direction: column-reverse;
}
.slide1_ttl{
	writing-mode: vertical-rl;
	letter-spacing: .5em;
}
.slide1 img {
	transition: opacity 0.6s ease;
	max-width: 100%;
	aspect-ratio: 11 / 16 !important;
}
.slide1 .slide1_text {
	max-width: 100%;
	width: 80%;
	writing-mode: vertical-rl;
	letter-spacing: .2em;
	line-height: 2.5;
	display: flex;
	align-items: center;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}
/*
.slide1 .slick-center {
	animation: fadeInOut 0.6s ease;
}
@keyframes fadeInOut {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
*/
.slide1 .slick-center{
	justify-content: space-between !important;
}
.slide1 .slick-center img {
	opacity: 0;
}
.slide1 .slick-center .slide1_text {
	opacity: 1;
	aspect-ratio: 11 / 16 !important;
}
.slide1 .slick-center:nth-of-type(odd) .slide1_text {
	top: 30%;
}
.slide1 .slick-center:nth-of-type(even) .slide1_text {
	top: 60%;
}
@media screen and (max-width:895px){
	.slide1 li{
		margin: 0 20px;
	}
	.slide1_ttl {
		font-size: 23px;
	}
	.slide1 img{
		border-radius: 20px;
	}
	/*
	.slide1 li:nth-of-type(odd) .slide1_ttl{
		margin-top: 20px;
	}
	.slide1 li:nth-of-type(even) img {
		margin-top: 5px;
	}
	*/
	.slide1 .slide1_text {
		font-size: 12px;
	}
}
@media screen and (min-width:896px) and (max-width:1099px){
	.slide1 li{
		margin: 0 20px;
	}
	.slide1_ttl {
		font-size: 23px;
	}
	.slide1 img{
		border-radius: 30px;
	}
	.slide1 li:nth-of-type(odd) .slide1_ttl{
		margin-top: 30px;
	}
	.slide1 li:nth-of-type(even) img {
		margin-top: 10px;
	}
	.slide1 .slide1_text {
		font-size: 12px;
	}
	.slide1 .slick-center:nth-of-type(odd) .slide1_ttl {
		
	}
	.slide1 .slick-center:nth-of-type(even) .slide1_ttl{
		
	}
}
@media screen and (min-width:1100px){
	.slide1 li{
		margin: 0 35px;
	}
	.slide1_ttl {
		font-size: 27px;
	}
	.slide1 img{
		border-radius: 40px;
	}
	.slide1 li:nth-of-type(odd) .slide1_ttl{
		margin-top: 30px;
	}
	.slide1 li:nth-of-type(even) img {
		margin-top: 10px;
	}
	.slide1 .slide1_text {
		font-size: 12px;
	}
	.slide1 .slick-center:nth-of-type(odd) .slide1_ttl {
		
	}
	.slide1 .slick-center:nth-of-type(even) .slide1_ttl{
		
	}
}
section.slider1 .news_list {
	display: flex;
	margin-top: 100px;
}
section.news {
	margin-top: 100px;
}
section.news .news_list {
	display: flex;
}
section.news .story-center {
	padding: 65px 0;
	margin-bottom: 25px;
}
section.slider1 .news_list h2,
section.news .news_list h2 {
	text-align-last: left;
	line-height: 1.2;
}
section.slider1 .news_list h2 span,
section.news .news_list h2 span {
	letter-spacing: .15em;
	display: block;
	margin-top: 15px;
}
section.slider1 .news_link,
section.news .news_link {
	margin-top: 40px;
}
section.slider1 .news_link a,
section.news .news_link a {
	position: relative;
}
section.slider1 .news_list li:first-of-type,
section.news .news_list li:first-of-type {
	display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width:699px){
	section.news .news_list {
		flex-wrap: wrap;
	}
	section.slider1 .news_list h2,
	section.news .news_list h2 {
		font-size: 14px;
	}
	section.slider1 .news_list h2 span,
	section.news .news_list h2 span {
		font-size: 12px;
	}
	section.slider1 .news_link a,
	section.news .news_link a {
		font-size: 12px;
	}
	section.slider1 .news_list li:first-of-type,
	section.news .news_list li:first-of-type{
		align-items: center;
		justify-content: flex-start;
		padding-top: 5vw;
	}
	section.slider1 .news_list li:nth-of-type(3),
	section.slider1 .news_list li:nth-of-type(4),
	section.news .news_list li:nth-of-type(3),
	section.news .news_list li:nth-of-type(4) {
		margin-top: 40px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.slider1 .news_list h2,
	section.news .news_list h2 {
		font-size: 17px;
	}
	section.slider1 .news_list h2 span,
	section.news .news_list h2 span {
		font-size: 12px;
	}
	section.slider1 .news_link a,
	section.news .news_link a {
		font-size: 12px;
	}
}
@media screen and (min-width:1280px){
	section.slider1 .news_list h2,
	section.news .news_list h2 {
		font-size: 19px;
	}
	section.slider1 .news_list h2 span,
	section.news .news_list h2 span {
		font-size: 12px;
	}
	section.slider1 .news_link a,
	section.news .news_link a {
		font-size: 12px;
	}
}




/*======================================================================================
ABOUT KIKUTEI PAGR
======================================================================================*/
section.about_kikutei {
	padding: 75px 0;
	letter-spacing: .5em;
	text-align: center;
}
section.about_kikutei h2 {
	font-size: 22px;
	line-height: 1.2;
}
section.about_kikutei .logo {
	width: 160px;
	margin: 40px auto;
}
section.about_kikutei p {
	line-height: 2.7;
}
section.about_story .slides-wrapper {
	padding: 18px 0 19px;
}
section.about_story .story-center {
	display: flex;
	align-items: center;
	height: calc(100vh - 37px);
}
/*
section.about_story .story-border-top,
section.about_story .story-border-bottom {
	background-repeat: repeat-x;
	background-position: left;
}
*/
.slides-wrapper {
	will-change: transform;
	width: max-content;
}
.slide {
	flex-shrink: 0;
	width: auto;
	height: 100vh;
}
section.about_story h2 {
	display: inline-block;
}
section.about_story h2::after {
	content: "";
	background-color: #8F8E8E;
	width: 95px;
	height: 1px;
	margin-left: 40px;
	display: inline-block;
	vertical-align: middle;
}
section.about_story ul {
	display: flex;
}
section.about_story ul li p {
	line-height: 2;
	line-height: 2.5;
	margin-top: 30px;
}
@media screen and (max-width:699px){
	section.about_story h2 {
		margin: -300px 50px 0 70px;
	}
	section.about_kikutei .logo {
		width: 125px;
	}
	section.about_story ul li {
		width: 300px;
		margin-right: 50px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.about_story h2 {
		margin: -230px 100px 0 110px;
	}
	section.about_story ul li {
		width: 600px;
		margin-right: 130px;
	}
}
@media screen and (min-width:1280px){
	section.about_story h2 {
		margin: -210px 150px 0 110px;
	}
	section.about_story ul li {
		width: 720px;
		margin-right: 180px;
	}
}
section.kamosu {
	padding: 100px 0;
}
section.kamosu p {
	line-height: 2.7;
	text-align: center;
}
section.kamosu .concept_txt {
	text-align: center;
}
section.kamosu .concept_txt .ttl {
	margin-bottom: 35px;
}
section.kamosu .concept_txt .ttl::after{
	display: none;
}
.concept {
	position: relative;
	display: block;
	clear: both;
}
.concept_img01,
.concept_img02,
.concept_img03 {
	position: absolute;
}
@media screen and (max-width:1279px){
	section.kamosu .contents1200 {
		padding-bottom: 150px;
	}
	section.kamosu .mitorizu {
		margin-bottom: 100px;
	}
	.concept{
		max-width: 1240px;
		width: 100%;
		padding: 0 20px;
		margin: 0 auto;
	}
	.concept_txt {
		margin-top: 60px;
	}
	.concept_imgbox {
		width: 74.5%;
		height: 83vw;
		position: relative;
		margin: 0 auto;
	}
	.concept_img01 {
		width: 45%;
		top: 0;
		left: 0;
		z-index: 1;
	}
	.concept_img02 {
		width: 77.5%;
		top: 15.5vw;
		right: 0;
	}
	.concept_img03 {
		width: 64%;
		bottom: 0;
		left: 13.7%;
	}
}
@media screen and (min-width:1280px){
	section.kamosu .contents1200 {
		padding-bottom: 200px;
	}
	section.kamosu .mitorizu {
		margin-bottom: 150px;
	}
	.concept{
		max-width: 1400px;
		width: 100%;
		height: 63vw;
		margin: 0 auto;
	}
	.concept_txt {
		position: absolute;
		right: 3%;
		bottom: 7.5vw;
	}
	.concept_imgbox {
		width: 64.5%;
		height: 100%;
		position: relative;
	}
	.concept_img01 {
		width: 35%;
		top: 0;
		left: 3%;
		z-index: 1;
	}
	.concept_img02 {
		width: 67.5%;
		top: 11vw;
		right: 3%;
	}
	.concept_img03 {
		width: 54%;
		top: 39vw;
		left: 13.7%;
	}
}
section.style {
	position: relative;
}
section.style .contents1250 {
	position: absolute;
	left: 0;
	right: 0;
}
.style_number {
	letter-spacing: .5em;
}
.style_inner {
	background-color:rgba(255,255,255,.8);
}
.style_ttl {
	text-align: center;
	line-height: 1.8;
	display: flex;
	align-items: center;
	justify-content: center;
}
section.style ul li p {
	line-height: 2.3;
	letter-spacing: .5em;
}
@media screen and (max-width:999px){
	section.style .story-center {
		height: 1800px;
		margin-bottom: 50vw;
	}
	section.style .contents1250 {
		top: 0;
	}
	section.style ul li {
		margin-top: 70px;
	}
	.style_number {
		font-size: 14px;
	}
	.style_inner {
		padding: 40px 8.33%;
		margin-top: 15px;
	}
	.style_ttl {
		font-size: 14px;
	}
	section.style ul li p {
		margin: 25px 0;
	}
	section.style ul li img {
		object-fit: cover;
		object-position: center center;
		height: 35vw;
	}
	section.style ul li .btn {
		max-width: 100%;
		margin-top: 30px;
	}
}
@media screen and (min-width:1000px) and (max-width:1279px){
	section.style .story-center {
		height: 50vw;
		margin-bottom: 450px;
	}
	section.style .contents1250 {
		top: 120px;
	}
	section.style ul {
		display: flex;
		justify-content: space-between;
	}
	section.style ul li {
		width: 31%;
		/*width: calc((100% - 80px * 2) / 3);*/
	}
	.style_number {
		font-size: 17px;
	}
	.style_inner {
		padding: 40px 8.33%;
		margin-top: 20px;
	}
	.style_ttl {
		font-size: 17px;
		height: 75px;
	}
	section.style ul li p {
		margin: 30px 0;
	}
	section.style ul li .btn {
		margin-top: 30px;
	}
}
@media screen and (min-width:1280px){
	section.style .story-center {
		height: 800px;
		margin-bottom: 250px;
	}
	section.style .contents1250 {
		top: 150px;
	}
	section.style ul {
		display: flex;
		justify-content: space-between;
	}
	section.style ul li {
		max-width: 840px;
		width: 31%;
		/*width: calc((100% - 80px * 2) / 3)*/
	}
	.style_number {
		font-size: 19px;
	}
	.style_inner {
		padding: 45px 8.33%;
		margin-top: 20px;
	}
	.style_ttl {
		font-size: 19px;
		height: 85px;
	}
	section.style ul li p {
		margin: 35px 0;
	}
	section.style ul li .btn {
		margin-top: 30px;
	}
}


/*======================================================================================
ROOM LIST PAGR
======================================================================================*/
.pagettl{
	background-color: #FFF;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
	position: relative;
}
.pagettl p {
	text-align: center;
	line-height: 2.5;
}
@media screen and (max-width:699px){
	section#room + .pagettl {
		width: 200px;
		padding: 35px 3% .1px;
		margin-top: -150px;
	}
}
@media screen and (min-width:700px){
	section#room + .pagettl {
		width: 300px;
		padding: 40px 30px .1px;
		margin-top: -175px;
	}
}
section.roomlist ul li:first-child {
	margin-top: 0;
}
section.roomlist .room_number,
section.roomlist .room_name,
section.roomlist p {
	letter-spacing: .45em;
}
section.roomlist .room_name {
	line-height: 1.5em;
}
section.roomlist p {
	line-height: 2;
}
.pagettl + .contents1200 p {
	text-align: center;
	letter-spacing: .5em;
}
@media screen and (max-width:699px){
	section.roomlist {
		margin-top: 130px;
		margin-bottom: 100px;
	}
	section.roomlist ul li {
		margin-top: 70px;
	}
	section.roomlist ul li .txtbox {
		margin-top: 30px;
	}
	section.roomlist .room_number {
		font-size: 12px;
	}
	section.roomlist .room_name {
		font-size: 15px;
		margin: 20px 0 25px;
	}
	section.roomlist p + p {
		margin-top: 25px;
	}
	section.roomlist ul li .btn_wrap {
		margin-top: 40px;
	}
	section.roomlist ul li .btn_wrap {
		display: flex;
		justify-content: center;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.roomlist {
		margin-top: 170px;
		margin-bottom: 120px;
	}
	section.roomlist ul li {
		display: flex;
		justify-content: space-between;
		margin-top: 100px;
	}
	section.roomlist ul li:nth-child(odd) {
		flex-direction: row-reverse;
	}
	section.roomlist ul li .txtbox {
		width: 51.25%;
	}
	section.roomlist ul li .img {
		width: 42.18%;
	}
	section.roomlist .room_number {
		font-size: 14px;
	}
	section.roomlist .room_name {
		font-size: 17px;
		margin: 25px 0 30px;
	}
	section.roomlist p + p {
		margin-top: 30px;
	}
	section.roomlist ul li .btn_wrap {
		margin-top: 50px;
	}
	section.roomlist ul li:nth-child(even) .btn_wrap {
		display: flex;
		justify-content: flex-end;
	}
}
@media screen and (min-width:1280px){
	section.roomlist {
		margin-top: 190px;
		margin-bottom: 180px;
	}
	section.roomlist ul li {
		display: flex;
		justify-content: space-between;
		margin-top: 130px;
	}
	section.roomlist ul li:nth-child(even) {
		flex-direction: row-reverse;
	}
	section.roomlist ul li .txtbox {
		width: 51.25%;
	}
	section.roomlist ul li .img {
		width: 42.18%;
	}
	section.roomlist .room_number {
		font-size: 16px;
	}
	section.roomlist .room_name {
		font-size: 19px;
		margin: 30px 0 35px;
	}
	section.roomlist p + p {
		margin-top: 35px;
	}
	section.roomlist ul li .btn_wrap {
		margin-top: 60px;
	}
	section.roomlist ul li:nth-child(odd) .btn_wrap {
		display: flex;
		justify-content: flex-end;
	}
}

/*======================================================================================
ROOM DETAIL PAGR
======================================================================================*/
h2.roomname {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	color: #FFF;
	letter-spacing: .5em;
}
section.room_detail_intro,
section.cafe_intro {
	text-align: center;
}
section.room_detail_intro p,
section.cafe_intro p{
	letter-spacing: .5em;
	line-height: 2.3;
}
@media screen and (max-width:699px){
	h2.roomname {
		font-size: 18px;
		line-height: 1.8;
	}
	section.room_detail_intro,
	section.cafe_intro {
		padding: 100px 0 110px;
	}
}
@media screen and (min-width:700px){
	h2.roomname {
		font-size: 25px;
	}
	section.room_detail_intro,
	section.cafe_intro {
		padding: 130px 0 140px;
	}
}
section.slide2 {
	width: 100%;
	overflow: hidden;
}
section.slide2 .splide__slide {
	width: auto;
	height: 532px;
}
section.slide2 .splide__slide img {
	height: 100%;
	height: auto;
	display: block;
}
@media screen and (max-width:699px){
	section.slide2 .splide__slide,
	section.slide2 .splide__slide img {
		height: 250px;
	}
}
@media screen and (min-width:700px){
	section.slide2 .splide__slide {
		height: 425px;
	}
}
section.mitorizu {
	letter-spacing: .5em;
}
section.mitorizu h2.ttl {
	margin-bottom: 0;
}
section.mitorizu h2.ttl::after {
	display: none;
}
section.mitorizu .img {
	max-width: 1156px;
	width: 100%;
	margin: 60px auto 0;
}
.info_wrap dl {
	display: flex;
	flex-wrap: wrap;
	line-height: 2;
	margin-top: 45px;
}
.info_wrap dl dt,
.info_wrap dl dd {
	border-bottom: 1px #8F8E8E solid;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.info_wrap dl dd {
	margin-left: 15px;
}
section.mitorizu .style p {
	margin-top: 45px;
	line-height: 2.5;
}
section.mitorizu .style p + p {
	margin-top: 30px;
}
section.mitorizu .style p span {
	display: block;
}
section.mitorizu .btn {
	text-align: center;
	margin: 60px auto 0;
}
section.mitorizu .btn p {
	margin-bottom: 10px;
}
@media screen and (max-width:699px){
	section.mitorizu {
		width: 90%;
		margin: 0 5%;
		/*padding: 100px 0 70px;*/
		padding-bottom: 70px;
		display: block;
		clear: both;
		overflow: hidden;
		font-size: 12px;
	}
	section.mitorizu .info_wrap {
		margin-top: 120px;
	}
	.info_wrap dl dt {
		width: 150px;
	}
	.info_wrap dl dd {
		width: calc(100% - 165px);
	}
	section.mitorizu .style {
		margin-top: 70px;
	}
	section.mitorizu .style p span {
		font-size: 12px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.mitorizu {
		width: 96%;
		margin: 0 2%;
		/*padding: 120px 0 80px;*/
		padding-bottom: 80px;
		display: block;
		clear: both;
		overflow: hidden;
		font-size: 12px;
	}
	section.mitorizu .info_wrap {
		display: flex;
		justify-content: space-between;
		margin-top: 120px;
	}
	.info_wrap .info {
		width: 47.6%;
	}
	.info_wrap .style {
		width: 45%;
	}
	.info_wrap dl dt {
		width: 150px;
	}
	.info_wrap dl dd {
		width: calc(100% - 165px);
	}
	section.mitorizu .style p span {
		font-size: 14px;
	}
}
@media screen and (min-width:1280px){
	section.mitorizu {
		max-width: 1290px;
		width: 100%;
		/*padding: 170px 20px 130px;*/
		padding: 0 20px 130px;
		margin: 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
		font-size: 12px;
	}
	section.mitorizu .info_wrap {
		display: flex;
		justify-content: space-between;
		margin-top: 160px;
	}
	.info_wrap .info {
		width: 47.6%;
	}
	.info_wrap .style {
		width: 45%;
	}
	.info_wrap dl dt {
		width: 200px;
	}
	.info_wrap dl dd {
		width: calc(100% - 215px);
	}
	section.mitorizu .style p span {
		font-size: 16px;
	}
}
section.other_room .story-center {
	padding: 65px 0 80px;
	margin-bottom: 25px;
}
section.other_room ul {
	display: flex;
	justify-content: space-between;
}
section.other_room ul li {
	background-repeat: no-repeat;
	background-position: center top;
	aspect-ratio: 25 / 17;
}
section.other_room ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #FFF;
	line-height: 2.2;
}
section.other_room ul li:nth-child(1) {
	background-image: url("images/room_other01.jpg")
}
section.other_room ul li:nth-child(2) {
	background-image: url("images/room_other03.jpg")
}
section.other_room ul li:nth-child(3) {
	background-image: url("images/room_other02.jpg")
}
section.other_room ul li:nth-child(4) {
	background-image: url("images/room_other04.jpg")
}
@media screen and (max-width:699px){
	section.other_room ul {
		flex-wrap: wrap;
	}
	section.other_room ul li {
		width: 48%;
		font-size: 11px;
	}
	section.other_room ul li:nth-child(3),
	section.other_room ul li:nth-child(4) {
		margin-top: 50px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.other_room ul li {
		width: 22.5%;
		font-size: 12px;
	}
}
@media screen and (min-width:1280px){
	section.other_room ul li {
		width: 22.5%;
		font-size: 12px;
	}
}

/*======================================================================================
CAFE PAGR
======================================================================================*/
section.cafetop {
	position: relative;
}
@media screen and (max-width:699px){
	#cafe .menu-trigger {
		color: #323F6E;
	}
	section.cafetop {
		height: 152vw;
	}
	section.cafetop h1,
	section.cafetop .cafetop_img {
		display: none;
	}
	.cafetop_video01,
	.cafetop_video02 {
		position: absolute;
		overflow: hidden;
		z-index: 2;
	}
	.cafetop_video01 {
		width: 82%;
		aspect-ratio: 578 / 470;
		top: 0;
		left: 0;
	}
	.cafetop_video02 {
		width: 54.5%;
		aspect-ratio: 382 / 264;
		top: 114vw;
		left: 0;
	}
	.cafetop_img01 {
		position: absolute;
		width: 76%;
		top: 48vw;
		left: 9.4%;
	}
	.cafetop_img02 {
		position: absolute;
		width: 52.7%;
		top: 75vw;
		right: 0;
		z-index: 1;
	}
}
@media screen and (min-width:700px){
	section.cafetop .cafetop_img_sp {
		display: none;
	}
	section.cafetop .cafetop_img {
		width: 100%;
		aspect-ratio: 640 / 323;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		position: relative;
		margin-top: -108px;
	}
	section.cafetop h1 {
		position: relative;
		z-index: 1;
	}
	.cafetop_video01,
	.cafetop_video02 {
		position: relative;
		overflow: hidden;
	}
	.cafetop_video02 {
		width: 100%;
		aspect-ratio: 23 / 15;
	}
	section.cafetop .cafetop_img_l {
		width: 35.625%;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	section.cafetop .cafetop_img_l img:first-child {
		width: 75.1%;
		margin-bottom: 3.6vw;
	}
	section.cafetop .cafetop_img_c {
		width: 32.2%;
	}
	section.cafetop .cafetop_img_r {
		width: 24.63%;
		aspect-ratio: 473 / 969;
	}
}
section.cafe_time {
	position: relative;
}
section.cafe_time.cafe::before {
	position: absolute;
	content: "";
	background-color: #E7E3D8;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}
section.cafe_time.bar::before {
	position: absolute;
	content: "";
	background-color: #999BAB;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}
section.cafe_time P {
	line-height: 2.3;
	letter-spacing: .5em;
}
section.cafe_time .ttl {
	margin-top: 10px;
}
section.cafe_time .ttl + p {
	margin-top: 30px;
}
section.cafe_time .cafe_menu img {
	margin: 10px 0;
}
section.cafe_time .cafe_menu p + p {
	text-align: right;
	margin-top: 30px;
}
@media screen and (max-width:699px){
	section.cafe_time .cafe_menu {
		margin-top: 70px;
	}
	section.cafe_time.bar {
		margin-top: 80px;
	}
	section.cafe_time.cafe::before,
	section.cafe_time.bar::before {
		width: 10px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.cafe_time .cafe_menu {
		margin-top: 120px;
	}
	section.cafe_time.bar {
		margin-top: 120px;
	}
	section.cafe_time.cafe::before,
	section.cafe_time.bar::before {
		width: 20px;
	}
}
@media screen and (min-width:1280px){
	section.cafe_time .cafe_menu {
		margin-top: 150px;
	}
	section.cafe_time.bar {
		margin-top: 180px;
	}
	section.cafe_time.cafe::before,
	section.cafe_time.bar::before {
		width: 20px;
	}
}

/*======================================================================================
NEWS PAGE
======================================================================================*/
/* LIST PAGE */
ul.news_navi {
	display: flex;
	justify-content: space-between;
}
ul.news_navi li {
	width: 258px;
}
ul.news_navi li a {
	width: 100%;
	display: block;
	text-align: center;
	font-size: 12px;
	letter-spacing: .5em;
	border-bottom: 1px #A07A4B solid;
	padding-bottom: 15px;
}
ul.news_navi li a.active{
	border-bottom: 1px #999BAB solid;
}

.news_date {
	text-align: center;
	margin-top: 20px;
}
.news_date span {
	font-size: 11px;
	color: #FFF;
	background-color: #A07A4B;
	padding: 3px 10px;
	border-radius: 50px;
}
.news_ttl{
	font-size: 12px;
	text-align: center;
	margin-top: 10px;
	padding-bottom: 20px;
	position: relative;
}
.news_ttl::before{
	content: "";
	background-image: url("images/arrow_under.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	width: 9px;
	height: 7px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
section.news_list_wrap .news_list {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width:699px){
	section.news_list_wrap {
		padding: 50px 0 100px;
	}
	ul.news_navi {
		flex-wrap: wrap;
		margin-bottom: 100px;
	}
	ul.news_navi li {
		width: 48%;
		margin-top: 50px;
	}
	ul.news_list {
		justify-content: space-between;
		flex-wrap: wrap;
	}
	ul.news_list li {
		width: 48%;
		margin-top: 50px;
	}
	ul.news_list li:nth-child(1),
	ul.news_list li:nth-child(2) {
		margin-top: 0;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.news_list_wrap {
		padding: 200px 0 150px;
	}
	ul.news_navi {
		align-items: flex-end;
		margin-bottom: 60px;
	}
	ul.news_navi li {
		width: 23.5%;
	}
	ul.news_list li {
		width: 23.5%;
		margin-right: 2%;
		margin-top: 60px;
	}
	ul.news_list li:nth-child(1),
	ul.news_list li:nth-child(2),
	ul.news_list li:nth-child(3),
	ul.news_list li:nth-child(4) {
		margin-top: 0;
	}
	ul.news_list li:nth-child(4n) {
		margin-right: 0;
	}
}
@media screen and (min-width:1280px){
	section.news_list_wrap {
		padding: 250px 0 150px;
	}
	ul.news_navi {
		align-items: flex-end;
		margin-bottom: 65px;
	}
	ul.news_navi li {
		width: 258px;
	}
	ul.news_list li {
		width: 258px;
		margin-right: 56px;
		margin-top: 65px;
	}
	ul.news_list li:nth-child(1),
	ul.news_list li:nth-child(2),
	ul.news_list li:nth-child(3),
	ul.news_list li:nth-child(4) {
		margin-top: 0;
	}
	ul.news_list li:nth-child(4n) {
		margin-right: 0;
	}
}

/* DETAIL PAGE */
section.news_detail .detail_ttl {
	margin-bottom: 60px;
}
section.news_detail .news_date {
	margin-top: 0;
}
section.news_detail h3 {
	line-height: 1.8;
}
section.news_detail p {
	line-height: 2.7;
	margin-top: 30px;
}
section.news_detail img {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
section.news_detail ul.news_navi {
	margin-top: 65px;
}
.prev_next{
	margin: 120px 0;
	display: block;
	clear: both;
	overflow: hidden;
}
.prev a,
.next a {
	position: relative;
}
.prev a {
	padding-left: 20px;
}
.next a {
	padding-right: 20px;
}
.prev a::before,
.next a::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 13px;
	background-repeat: no-repeat;
	background-size: cover;
	top: 23%;
}
.prev a::before {
	background-image: url("images/detail_arrow_left.png");
	left: 0;
}
.next a::before {
	background-image: url("images/detail_arrow_right.png");
	right: 0;
}
@media screen and (max-width:699px){
	section.news_detail {
		padding: 100px 0;
	}
	section.news_detail .news_date {
		text-align: left;
	}
	section.news_detail h3{
		font-size: 12px;
		margin-top: 15px;
	}
	section.news_detail p{
		font-size: 12px;
	}
	.prev_next{
		text-align: center;
	}
	.next{
		margin-top: 30px;
	}
	.prev a,
	.next a {
		font-size: 14px;
	}
}
@media screen and (min-width:700px){
	section.news_detail {
		padding: 120px 0;
	}
	section.news_detail .detail_ttl {
		display: flex;
		align-items: flex-start;
	}
	section.news_detail .news_date {
		width: 156px;
	}
	section.news_detail .news_date span {
		max-width: 156px;
		width: 100%;
		text-align: center;
		display: block;
		padding: 0;
	}
	section.news_detail h3{
		font-size: 12px;
		margin-left: 20px;
		width: calc(100% - 173px);
	}
	section.news_detail p {
		font-size: 12px;
	}
	.prev {
		float: left;
	}
	.next{
		float: right;
	}
	.prev a,
	.next a {
		font-size: 15px;
	}
}

/*======================================================================================
FACILITIES PAGE
======================================================================================*/
section.facilities ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
section.facilities h3 {
	letter-spacing: .5em;
}
section.facilities ul li img {
	margin-top: 25px;
}
section.facilities ul li p {
	letter-spacing: .5em;
	margin-top: 30px;
}
section.facilities ul li:nth-child(1),
section.facilities ul li:nth-child(2){
	margin-top: 0;
}
section.facilities ul li .btn a {
	max-width: 440px;
	width: 100%;
}
@media screen and (max-width:699px){
	section.facilities {
		padding: 110px 0;
	}
	section.facilities h3 {
		font-size: 14px;
	}
	section.facilities ul li {
		width: 47%;
		margin-top: 80px;
	}
	section.facilities ul li .btn {
		margin: 40px auto 0;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.facilities {
		padding: 130px 0;
	}
	section.facilities h3 {
		font-size: 17px;
	}
	section.facilities ul li {
		width: 28%;
		margin-top: 100px;
	}
	section.facilities ul li:nth-child(1),
	section.facilities ul li:nth-child(2){
		width: 43.75%;
	}
	section.facilities ul li .btn {
		margin: 60px auto 0;
	}
}
@media screen and (min-width:1280px){
	section.facilities {
		padding: 150px 0;
	}
	section.facilities h3 {
		font-size: 19px;
	}
	section.facilities ul li {
		width: 28%;
		margin-top: 140px;
	}
	section.facilities ul li:nth-child(1),
	section.facilities ul li:nth-child(2){
		width: 43.75%;
	}
	section.facilities ul li .btn {
		margin: 70px auto 0;
	}
}


/*======================================================================================
SHISO PAGE
======================================================================================*/
section#shiso {
	position: relative;
}
section#shiso h1 {
	position: absolute;
	left: 0;
	top: 0;
}
.shiso_sp img,
.shiso_pc img {
	transition: 4s 1s ease-out;
	object-fit: cover;
	object-position: center;
}
.shiso_sp img {
	height: 500px;
}
.shiso_pc img {
	height: 100vh;
}
.shiso_sp .splide__slide[class*=-active] img,
.shiso_pc .splide__slide[class*=-active] img {
	transition-delay: 0s;
	transform: scale(1.05);
}
@keyframes shiso_sp-fadeIn {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}
@keyframes shiso_pc-fadeIn {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}
section#shiso + .pagettl {
	line-height: 1.5;
}
section#shiso + .pagettl + .contents1200 p{
	text-align: center;
	line-height: 2.5;
}
@media screen and (max-width:699px){
	.shiso_pc {
		display: none;
	}
	section#shiso + .pagettl {
		width: 200px;
		padding: 35px 3% .1px;
		margin-top: -110px;
	}
	.pagettl h2.ttl_l {
		font-size: 15px;
	}
}
@media screen and (min-width:700px){
	.shiso_sp {
		display: none;
	}
	section#shiso + .pagettl{
		width: 300px;
		padding: 40px 30px .1px;
		margin-top: -135px;
	}
	.pagettl h2.ttl_l {
		font-size: 16px;
	}
}
section.shiso_s1 ul li:first-child {
	margin-top: 0;
}
section.shiso_s1 ul li .ttl,
section.shiso_s1 ul li .subttl {
	letter-spacing: .5em;
	line-height: 1.2;
}
section.shiso_s1 ul li .subttl {
	margin-top: 15px;
}
section.shiso_s1 ul li p {
	margin-top: 35px;
	letter-spacing: .5em;
}
section.shiso_s1 .contents1200 p {
	text-align: center;
	letter-spacing: .5em;
	line-height: 2.3;
}
@media screen and (max-width:699px){
	section.shiso_s1 {
		padding: 100px 0 120px;
	}
	section.shiso_s1 ul li {
		margin-top: 80px;
	}
	section.shiso_s1 ul li .ttl {
		font-size: 27px;
		margin-top: 20px;
	}
	section.shiso_s1 ul li .subttl {
		font-size: 15px;
	}
	section.shiso_s1 ul li p {
		line-height: 2;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.shiso_s1 {
		padding: 100px 0 150px;
	}
	section.shiso_s1 ul li {
		display: flex;
		justify-content: space-between;
		margin-top: 130px;
	}
	section.shiso_s1 ul li:nth-child(even) {
		flex-direction: row-reverse;
	}
	section.shiso_s1 ul li .img {
		width: 43.75%;
	}
	section.shiso_s1 ul li .txtbox {
		width: 45.7%;
	}
	section.shiso_s1 ul li .ttl {
		font-size: 23px;
	}
	section.shiso_s1 ul li .subttl {
		font-size: 17px;
	}
	section.shiso_s1 ul li p {
		line-height: 2.5;
	}
}
@media screen and (min-width:1280px){
	section.shiso_s1 {
		padding: 100px 0 200px;
	}
	section.shiso_s1 ul li {
		display: flex;
		justify-content: space-between;
		margin-top: 180px;
	}
	section.shiso_s1 ul li:nth-child(even) {
		flex-direction: row-reverse;
	}
	section.shiso_s1 ul li .img {
		width: 43.75%;
	}
	section.shiso_s1 ul li .txtbox {
		width: 45.7%;
	}
	section.shiso_s1 ul li .ttl {
		font-size: 25px;
	}
	section.shiso_s1 ul li .subttl {
		font-size: 19px;
	}
	section.shiso_s1 ul li p {
		line-height: 2.5;
	}
}
section.shiso_s2 .contents1200 p {
	text-align: center;
	line-height: 2.5;
	margin-bottom: 40px;
}
section.shiso_s2 .story-center {
	margin-bottom: 19px;
}
.slide3 img {
	width: 100%;
	/*aspect-ratio: 1;*/
	border-radius: 50%;
	object-fit: cover;
	object-position: center center;
}
.slide3 .access {
	text-align: center;
	margin-top: 20px;
}
.slide3 .access span {
	background-color: #A07A4B;
	color: #FFF;
	text-align: center;
	padding: 3px 30px;
	border-radius: 50px;
}
.slide3 .ttl {
	text-align: center;
	letter-spacing: .5em;
	line-height: 1.2;
	margin-top: 10px;
}
.slide3 p {
	letter-spacing: .2em;
	line-height: 2;
	margin-top: 20px;
}
@media screen and (max-width:699px){
	section.shiso_s2 .story-center {
		padding: 80px 0;
	}
	.slide3 .splide__slide {
		margin-right: 8%;
	}
	.slide3 .splide__slide:nth-child(odd) {
		margin-top: 80px;
	}
	.slide3 .access {
		font-size: 11px;
	}
	.slide3 .ttl {
		font-size: 14px;
	}
	.slide3 p {
		font-size: 12px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.shiso_s2 .story-center {
		padding: 100px 0;
	}
	.slide3 .splide__slide {
		margin-right: 50px;
	}
	.slide3 .splide__slide:nth-child(odd) {
		margin-top: 100px;
	}
	.slide3 .access {
		font-size: 12px;
	}
	.slide3 .ttl {
		font-size: 17px;
	}
	.slide3 p {
		font-size: 12px;
	}
}
@media screen and (min-width:1280px){
	section.shiso_s2 .story-center {
		padding: 100px 0;
	}
	.slide3 .splide__slide {
		margin-right: 100px;
	}
	.slide3 .splide__slide:nth-child(odd) {
		margin-top: 140px;
	}
	.slide3 .access {
		font-size: 12px;
	}
	.slide3 .ttl {
		font-size: 19px;
	}
	.slide3 p {
		font-size: 12px;
	}
}
section.shiki .ttlbox h2.ttl::after{
	display: none;
}
.slide4 .month {
	text-align: center;
	margin-top: 20px;
}
.slide4 .month span {
	background-color: #A07A4B;
	color: #FFF;
	text-align: center;
	padding: 3px 30px;
	border-radius: 50px;
}
.slide4 .ttl {
	text-align: center;
	letter-spacing: .5em;
	line-height: 1.2;
	margin-top: 10px;
}
.slide4 p {
	letter-spacing: .1em;
	line-height: 1.8;
	margin-top: 20px;
}
.slide4 li img {
	width: 100%;
	aspect-ratio: 8 / 11;
	object-fit: cover;
	object-position: center center;
}
@media screen and (max-width:899px){
	section.shiki {
		padding: 100px 0 0;
	}
	section.shiki .ttlbox h2.ttl {
		margin-bottom: 70px;
	}
	section.shiki .slidebox {
		margin-top: 50px;
	}
	.slide4 .slick-list {
		padding: 0 15% 0 0 !important;
	}
	.slide4 .slick-slide {
		margin-right: .7%;
	}
	.slide4 .month {
		font-size: 11px;
	}
	.slide4 .ttl {
		font-size: 15px;
		padding: 0 3%;
	}
	.slide4 p {
		font-size: 11px;
		padding: 0 3%;
	}
}
@media screen and (min-width:900px) and (max-width:1279px){
	section.shiki {
		padding: 140px 0 70px;
		display: flex;
	}
	section.shiki .ttlbox {
		width: 30%;
		padding: 0 1%;
	}
	section.shiki .ttlbox h2.ttl {
		margin-top: 13vw;
		margin-bottom: 0;
	}
	section.shiki .slidebox {
		width: 70%;
	}
	.slide4 .slick-list {
		padding: 0 10% 0 0 !important;
	}
	.slide4 .slick-slide {
		margin-right: .7%;
	}
	.slide4 .month {
		font-size: 12px;
	}
	.slide4 .ttl {
		font-size: 17px;
	}
	.slide4 p {
		font-size: 12px;
	}
}
@media screen and (min-width:1280px){
	section.shiki {
		padding: 170px 0 70px;
		display: flex;
	}
	section.shiki .ttlbox {
		width: 30%;
	}
	section.shiki .ttlbox h2.ttl {
		margin-top: 13vw;
		margin-bottom: 0;
	}
	section.shiki .slidebox {
		width: 70%;
	}
	.slide4 .slick-list {
		padding: 0 10% 0 0 !important;
	}
	.slide4 .slick-slide {
		margin-right: 16px;
	}
	.slide4 .month {
		font-size: 12px;
	}
	.slide4 .ttl {
		font-size: 19px;
	}
	.slide4 p {
		font-size: 12px;
	}
}

/*======================================================================================
FAQ PAGE
======================================================================================*/
section.faq .category {
	position: relative;
	letter-spacing: .5em;
	padding-left: 30px;
}
section.faq .category::before {
	content: "";
	position: absolute;
	background-color: #999BAB;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	left: 0;
	top: 3px;
}
section.faq dl {
	letter-spacing: .3em;
	line-height: 2.5;
}
section.faq dl > dt > dl.q {
	display: flex;
	padding-left: 0;
}
section.faq dl > dt > dl.q > dt {
	line-height: 1.5;
}
section.faq dl > dt > dl.q > dd {
	padding-left: 0;
	margin-top: 0;
	line-height: 1.5;
}
section.faq dl > dd {
	line-height: 2.3;
}
@media screen and (max-width:699px){
	section.faq {
		padding: 70px 0 90px;
	}
	section.faq .category {
		font-size: 15px;
		margin-top: 70px;
	}
	section.faq dl {
		padding-left: 30px;
	}
	section.faq dl > dt > dl.q {
		font-size: 15px;
		margin-top: 35px;
	}
	section.faq dl > dt > dl.q > dt {
		width: 35px;
		margin-right: 25px;
	}
	section.faq dl > dt > dl.q > dd {
		width: calc(100% - 60px);
		font-size: 15px;
	}
	section.faq dl > dd {
		margin-top: 20px;
		padding-left: 60px;
		font-size: 12px;
	}
}
@media screen and (min-width:700px){
	section.faq {
		padding: 70px 0 130px;
	}
	section.faq .category {
		font-size: 19px;
		margin-top: 100px;
	}
	section.faq .category::before {
		width: 15px;
		height: 15px;
		top: 3px;
	}
	section.faq dl {
		padding-left: 40px;
	}
	section.faq dl > dt > dl.q {
		font-size: 19px;
		margin-top: 45px;
	}
	section.faq dl > dt > dl.q > dt {
		width: 40px;
		margin-right: 30px;
	}
	section.faq dl > dt > dl.q > dd {
		width: calc(100% - 70px);
	}
	section.faq dl > dd {
		margin-top: 30px;
		padding-left: 70px;
	}
}

/*======================================================================================
ACCESS PAGR
======================================================================================*/
section.map{
	width: 100%;
	position: relative;
	margin-top: 40px;
}
section.map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
@media screen and (max-width:699px){
	section.map{
		height: 400px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.map{
		height: 700px;
	}
}
@media screen and (min-width:1280px){
	section.map{
		height: 870px;
	}
}

@media screen and (max-width:699px){
	section.access {
		width: 90%;
		margin: 0 5%;
		padding: 70px 0 100px;
		display: block;
		clear: both;
		overflow: hidden;
		font-size: 12px;
	}
	section.access .info_wrap .info + .info {
		margin-top: 70px;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	section.access {
		width: 96%;
		margin: 0 2%;
		padding: 70px 0 100px;
		display: block;
		clear: both;
		overflow: hidden;
		font-size: 12px;
	}
	section.access .info_wrap {
		display: flex;
		justify-content: space-between;
	}
}
@media screen and (min-width:1280px){
	section.access {
		max-width: 1290px;
		width: 100%;
		padding: 70px 20px 100px;
		margin: 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
		font-size: 12px;
	}
	section.access .info_wrap {
		display: flex;
		justify-content: space-between;
	}
}

/*======================================================================================
PRIVACY POLICY PAGR
======================================================================================*/
h2.ttl#privacy {
	margin: 270px 0 120px;
}
h2.ttl#privacy::after {
	position: absolute;
	content: "";
	background-color: #8F8E8E;
	width: 1px;
	height: 90px;
	bottom: -120px;
	left: 50%;
}
section.privacy .category + p {
	letter-spacing: .5em;
	line-height: 2.5;
	margin-top: 30px;
}
section.privacy dl dt {
	position: relative;
	letter-spacing: .5em;
}
section.privacy dl dt::before {
	content: "";
	position: absolute;
	background-color: #999BAB;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	left: 0;
}
section.privacy dl {
	letter-spacing: .5em;
	line-height: 2.5;
}
section.privacy dl dt {
	line-height: 1.5;
	padding-left: 30px;
}
section.privacy dl dd {
	line-height: 2;
}
section.privacy ul li {
	text-indent: -1.5em;
	padding-left: 1.5em;
}
section.privacy ul li::before {
	content: "・";
}
@media screen and (max-width:699px){
	section.privacy {
		padding-bottom: 90px;
	}
	section.privacy .category {
		font-size: 15px;
		margin-top: 70px;
	}
	section.faq dl {
		margin-top: 35px;
	}
	section.privacy dl dt {
		font-size: 13px;
		margin-top: 35px;
	}
	section.privacy dl dt::before {
		top: 4px;
	}
	section.privacy dl dd {
		margin-top: 20px;
		padding-left: 60px;
		font-size: 12px;
	}
}
@media screen and (min-width:700px){
	section.privacy {
		padding-bottom: 130px;
	}
	section.privacy .category {
		font-size: 19px;
		margin-top: 100px;
	}
	section.privacy dl {
		margin-top: 40px;
	}
	section.privacy dl dt {
		font-size: 19px;
		margin-top: 45px;
	}
	section.privacy dl dt::before {
		top: 7px;
	}
	section.privacy dl dd {
		margin-top: 30px;
		padding-left: 100px;
	}
}




























