﻿html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Shippori Mincho', serif;
	font-weight: 300;
	font-style: normal;
	line-height: 1.6;
	margin: 0;
	color: #000;
	font-size: 16px;
	background: #efeae4;
}
li {
	list-style: none;
}
ul,
figure {
	margin: 0;
	padding: 0;
}
h2,
h3 {
	font-weight: normal;
}
a {
	text-decoration: none;
	transition: 0.5s ease-out;
	color: #000;
}
a:hover {
	opacity: 0.6;
}
img {
	max-width: 100%;
	vertical-align: top;
}
.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.sp {
		display: block;
	}
}
.pc {
	display: block;
}
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	body {
		overflow-x: hidden;
	}
}
body > header {
	width: 100%;
	height: 100px;
	margin-inline: auto;
	display: flex;
	position: fixed;
	top: 0;
	padding: 0 3.125vw;
	justify-content: space-between;
	z-index: 10000;
	box-sizing: border-box;
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
	body > header {
		height: 19.53125vw;
		padding-left: 8.0729166667vw;
		padding-right: 0;
	}
	body > header.header.active {
		height: 100dvh;
		overflow: hidden;
		margin: 0;
		padding: 0;
	}
}
body > header .logo {
	max-width: 300px;
}
@media screen and (max-width: 768px) {
	body > header .logo {
		max-width: 60vw;
		z-index: 1000;
	}
}
body > header ul {
	display: flex;
	font-size: 15px;
	margin: 0;
	padding: 0;
	gap: 3em;
	align-items: center;
}
body > header ul .mf_btn01 {
	border: solid 1px #fff;
	padding: 0.5em 1em;
}
@media screen and (max-width: 768px) {
	body > header ul {
		flex-direction: column;
		gap: 3em;
		width: 100%;
		background-color: rgba(0, 0, 0, 0.9);
		position: fixed;
		top: 0;
		right: -100%;
		height: 100dvh;
		justify-content: center;
		align-items: center;
		transition: right 0.4s ease-in-out;
		font-size: 1.2rem;
	}
	body > header ul.menu-active {
		right: 0;
	}
}
body > header a {
	color: #fff;
	text-decoration: none;
}
body > header #hamburger-btn {
	display: none;
}
@media screen and (max-width: 768px) {
	body > header #hamburger-btn {
		display: block;
		position: absolute;
		right: 2.6041666667vw;
		width: 40px;
		height: 15px;
		cursor: pointer;
		z-index: 10001;
		background: none;
		border: none;
	}
	body > header #hamburger-btn span {
		display: block;
		width: 100%;
		height: 0.6510416667vw;
		background-color: #fff;
		border-radius: 2px;
		transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
		position: absolute;
		left: 0;
	}
	body > header #hamburger-btn span:nth-child(1) {
		top: 0;
	}
	body > header #hamburger-btn span:nth-child(2) {
		bottom: 0;
	}
	body > header #hamburger-btn.active span:nth-child(1) {
		transform: rotate(45deg) translateY(10px);
		background-color: #fff;
	}
	body > header #hamburger-btn.active span:nth-child(2) {
		transform: rotate(-45deg) translateY(-10px);
		background-color: #fff;
	}
}
.home .bl_mv {
	width: 100%;
	max-height: 100vh;
	background-size: cover;
	color: #fff;
	margin-top: 0;
}
@media screen and (max-width: 768px) {
	.home .bl_mv {
		height: 70vh;
	}
}
.home .bl_mv h1 {
	position: absolute;
	font-size: 30px;
	width: min(80vw, 1800px);
	display: none;
}
@media screen and (max-width: 768px) {
	.home .bl_mv h1 {
		font-size: 20px;
		display: block;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		bottom: 50%;
		z-index: 1000;
		text-align: center;
		text-shadow: 1px 1px 5px #000, 1px 1px 5px #000, 1px 1px 5px #000;
	}
}
.home .bl_mv h1 img {
	height: auto;
	display: block;
	width: 100%;
	margin-top: 1em;
}
section {
	padding-block: 8.125vw;
	padding-inline: 5.625vw;
}
.bl_news {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.bl_news {
		flex-direction: column;
	}
}
.bl_news h2 {
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 46px;
	text-transform: uppercase;
	width: 6em;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.bl_news h2 {
		font-size: 30px;
		width: auto;
		margin-bottom: 0;
	}
}
.bl_news h2 .news_h2_subtxt {
	display: block;
	margin-bottom: 35px;
	font-size: 35px;
}
@media screen and (max-width: 768px) {
	.bl_news h2 .news_h2_subtxt {
		font-size: 25px;
		line-height: 1.3;
	}
	.bl_news h2 .news_h2_subtxt br:first-child {
		display: none;
	}
}
.bl_news h2 .news_h2_txt {
	display: block;
	font-size: 28px;
}
@media screen and (max-width: 768px) {
	.bl_news h2 .news_h2_txt {
		font-size: 20px;
		line-height: 1.3;
	}
	.bl_news h2 .news_h2_txt br:first-child {
		display: none;
	}
}
.bl_news ul {
	display: flex;
	gap: 2.5vw;
}
@media screen and (max-width: 768px) {
	.bl_news ul {
		margin-top: 2em;
		flex-direction: column;
		margin: auto;
	}
}
.bl_news ul li {
	max-width: 310px;
	border-bottom: solid 1px #000;
	padding-bottom: 0.5em;
	width: 33%;
	display: flex;
}
@media screen and (max-width: 768px) {
	.bl_news ul li {
		margin-top: 2em;
		width: 100%;
	}
}
.bl_news ul li a {
	display: flex;
	flex-direction: column;
	position: relative;
}
.bl_news ul li a:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: url(/assets/images/img_btn-arrow.png) no-repeat;
	position: absolute;
	right: 0;
	bottom: 0.25em;
	transition: 0.3s;
}
.bl_news ul li a:hover:after {
	right: -1em;
}
.bl_news ul li figure {
	order: 1;
	aspect-ratio: 1/1;
}
.bl_news ul li figure img {
	object-fit: cover;
	height: min(31vw, 310px);
	width: min(31vw, 310px);
}
@media screen and (max-width: 768px) {
	.bl_news ul li figure img {
		object-fit: cover;
		height: 100%;
		width: 100%;
	}
}
.bl_news ul li p {
	order: 2;
	font-size: 15px;
	flex: 1;
}
.bl_news ul li span {
	order: 3;
	font-size: 13px;
	font-family: 'Inter', serif;
}
.bl_news ul li span time {
	margin-left: 1em;
	border-left: solid 1px #000;
	padding-left: 1em;
}
.bl_btn01 {
	font-family: 'Inter', serif;
	font-size: 15px;
	border-bottom: solid 1px #000;
	max-width: 200px;
	padding-bottom: 1em;
	position: relative;
}
.bl_btn01 a {
	display: block;
	position: relative;
}
.bl_btn01 a:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: url(/assets/images/img_btn-arrow.png) no-repeat;
	position: absolute;
	right: 0;
	top: 0.5em;
	transition: 0.3s;
}
.bl_btn01 a:hover:after {
	right: -1em;
}
.bl_concept {
	height: 100vh;
	background: url(/assets/images/img_index-concept-mv.webp) no-repeat;
	background-size: contain;
	background-position: 50% 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.bl_concept {
		height: auto;
		background-size: contain;
	}
}
.bl_concept span {
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	transform: rotate(90deg);
	display: block;
	position: absolute;
	right: -4em;
	top: 0;
	text-align: left;
	color: #a0aeb8;
}
.bl_concept .bl_wrap {
	position: relative;
	text-align: center;
}
.bl_concept h2 {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 40px;
	font-weight: normal;
	margin: auto;
}
@media screen and (max-width: 768px) {
	.bl_concept h2 {
		font-size: 4vw;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		width: 100%;
		height: 43vw;
		display: flex;
		justify-content: center;
		align-items: center;
		text-shadow: 1px 1px 5px #000, 1px 1px 5px #000, 1px 1px 5px #000;
		font-weight: bold;
	}
}
.bl_concept p {
	line-height: 2.5;
}
.bl_experience {
	padding-inline: 0;
	background: #fff;
	padding-bottom: 0;
}
.bl_experience h2 {
	margin-left: 12.5vw;
	font-size: 46px;
}
@media screen and (max-width: 768px) {
	.bl_experience h2 {
		font-size: 30px;
		margin-bottom: 2em;
		margin-left: 0;
		padding-block: 8.125vw 0;
		padding-inline: 5.625vw;
		margin-bottom: 0;
	}
}
.bl_experience h2 span {
	font-size: 16px;
	display: block;
}
.bl_experience li {
	margin: 0;
	display: flex;
	flex-direction: row-reverse;
	position: relative;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 7.5vw;
}
@media screen and (max-width: 768px) {
	.bl_experience li {
		margin-bottom: 5em;
	}
}
.bl_experience li figure {
	width: 46.5625vw;
	height: 34.375vw;
}
@media screen and (max-width: 768px) {
	.bl_experience li figure {
		width: 90%;
		height: auto;
		margin: 2em auto 0;
	}
}
.bl_experience li figure img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.bl_experience li .bl_txt {
	display: flex;
	flex-direction: row-reverse;
	padding-bottom: 2.5vw;
	background: url(/assets/images/bcg_txt-area.png) no-repeat;
	background-position: bottom right;
	margin-bottom: 2.5vw;
}
@media screen and (max-width: 768px) {
	.bl_experience li .bl_txt {
		flex-direction: column;
		background: none;
	}
}
.bl_experience li .bl_txt-area {
	width: 33.75vw;
	background-size: 70%;
	margin-right: 8.75vw;
	position: relative;
}
@media screen and (max-width: 768px) {
	.bl_experience li .bl_txt-area {
		width: 90%;
		margin: auto;
	}
}
.bl_experience li .bl_txt-area:before {
	content: '';
	display: block;
	width: 130px;
	height: 110px;
	background: url(/assets/images/img_index-concept-01n.png) no-repeat;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(-50%);
}
.bl_experience li .bl_txt-area img {
	width: 33.75vw;
	height: 21.875vw;
}
@media screen and (max-width: 768px) {
	.bl_experience li .bl_txt-area img {
		width: 100%;
		height: auto;
	}
}
.bl_experience li h3 {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: min(2vw, 40px);
	z-index: 100;
	margin-right: 2em;
}
@media screen and (max-width: 768px) {
	.bl_experience li h3 {
		font-size: 20px;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		margin-right: 0;
	}
}
.bl_experience li:nth-of-type(1) {
	padding-bottom: 51.25vw;
	background: url(/assets/images/img_index-concept-0103.webp) no-repeat;
	background-position: bottom center;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	.bl_experience li:nth-of-type(1) {
		padding-bottom: 52.0833333333vw;
		background-size: 120%;
	}
}
.bl_experience li p {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 15px;
	line-height: 2.5;
	height: 300px;
	margin-top: 80px;
}
@media screen and (max-width: 768px) {
	.bl_experience li p {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		margin-top: 2em;
		height: auto;
	}
}
.bl_experience li:nth-of-type(2) {
	padding-bottom: 51.25vw;
	background: url(/assets/images/img_index-concept-0203.png) no-repeat;
	background-position: bottom center;
	background-size: contain;
	flex-direction: row;
}
@media screen and (max-width: 768px) {
	.bl_experience li:nth-of-type(2) {
		padding-bottom: 52.0833333333vw;
		background-size: 120%;
	}
}
.bl_experience li:nth-of-type(2) .bl_txt-area {
	margin-right: 0;
	margin-left: 8.75vw;
}
@media screen and (max-width: 768px) {
	.bl_experience li:nth-of-type(2) .bl_txt-area {
		margin-inline: auto;
	}
}
.bl_experience li:nth-of-type(2) :before {
	background: url(/assets/images/img_index-concept-02n.png) no-repeat;
}
.bl_experience li:nth-of-type(3) {
	padding-bottom: 0vw;
	padding-bottom: 12.5vw;
	background: url(/assets/images/bcg_txt-area3.png) no-repeat;
	background-position: bottom center;
	background-size: 100vw;
	margin-bottom: 0;
}
.bl_experience li:nth-of-type(3) .bl_txt {
	background: none;
}
.bl_experience li:nth-of-type(3) :before {
	background: url(/assets/images/img_index-concept-03n.png) no-repeat;
}
.bl_resort {
	padding-inline: 0;
}
.bl_resort h2 {
	margin-left: 12.5vw;
	font-size: 46px;
}
@media screen and (max-width: 768px) {
	.bl_resort h2 {
		font-size: 30px;
		margin-bottom: 0;
		margin-left: 0;
		padding-block: 8.125vw;
		padding-inline: 5.625vw;
	}
}
.bl_resort h2 span {
	font-size: 16px;
	display: block;
}
.bl_resort article {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-right: 9.375vw;
	align-items: center;
	margin-bottom: 3.125vw;
}
@media screen and (max-width: 768px) {
	.bl_resort article {
		flex-direction: column;
		padding-block: 8.125vw;
		padding-inline: 5.625vw;
		margin: auto;
	}
}
.bl_resort article .bl_txt-area {
	width: 28.125vw;
}
@media screen and (max-width: 768px) {
	.bl_resort article .bl_txt-area {
		width: auto;
		font-size: 15px;
	}
}
.bl_resort article .bl_txt-area h3 {
	font-size: 40px;
	line-height: 1.2;
}
@media screen and (max-width: 768px) {
	.bl_resort article .bl_txt-area h3 {
		font-size: 30px;
	}
}
.bl_resort article .bl_txt-area img {
	display: block;
	margin-bottom: 1.5em;
}
.bl_resort article .bl_txt-area span {
	font-size: 22px;
	display: block;
	margin-bottom: 1em;
}
.bl_resort article .swiper {
	width: 53.75vw;
	margin: 0;
	height: 100%;
}
.bl_resort article .swiper img {
	width: min(70.8333333333vw, 850px);
	height: min(74.1666666667vw, 890px);
	object-fit: cover;
}
@media screen and (max-width: 768px) {
	.bl_resort article .swiper {
		margin-top: 2em;
		width: 100%;
	}
}
.bl_resort article .swiper-slide {
	width: 100%;
	height: 100%;
}
.bl_resort article p {
	font-size: 16px;
	margin-bottom: 4em;
}
@media screen and (max-width: 768px) {
	.bl_resort article p {
		width: auto;
		font-size: 15px;
		margin-bottom: 2em;
	}
}
.bl_resort article .resort_upper_txt {
	font-size: 20px;
	margin-bottom: 0;
}
.bl_resort .swiper-horizontal > .swiper-pagination-bullets,
.bl_resort .swiper-pagination-bullets.swiper-pagination-horizontal,
.bl_resort .swiper-pagination-custom,
.bl_resort .swiper-pagination-fraction {
	top: 1em;
	left: 1em;
	text-align: left;
	width: 8px;
	line-height: 1;
}
.bl_resort .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.bl_resort .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0;
}
.bl_resort .swiper-pagination-bullet {
	background: #fff;
	opacity: 1;
}
.bl_resort .swiper-pagination-bullet-active {
	background: #000;
}
.bl_insta {
	background: url(/assets/images/img_bc01.png) no-repeat;
	background-size: contain;
	padding-top: 59.375vw;
}
.bl_insta h2 {
	font-size: 46px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.bl_insta h2 {
		font-size: 30px;
	}
}
.bl_insta h2 span {
	font-size: 16px;
	display: block;
	margin-top: 2em;
}
@media screen and (max-width: 768px) {
	.bl_insta h2 span {
		margin-top: 0;
	}
}
.bl_insta ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625vw;
	max-width: 1000px;
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
	.bl_insta ul li {
		width: 48%;
	}
}
.bl_insta .bl_btn02 {
	max-width: 1000px;
	margin-inline: auto;
	text-align: right;
	margin-top: 2em;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 2em;
	font-family: 'Inter', serif;
}
footer {
	background: #000;
}
footer .bl_contact {
	background: url(/assets/images/bcg_contact.png) no-repeat;
	background-size: cover;
	background-position: bottom;
	position: relative;
	width: 100%;
	height: 43.75vw;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	footer .bl_contact {
		height: 91.1458333333vw;
	}
}
footer a {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 100;
	text-align: center;
	color: #fff;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
}
footer a {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 100;
	text-align: center;
	color: #fff;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
}
footer a span {
	font-size: 50px;
	padding-top: 11.25vw;
	display: block;
}
footer .bl_wrap {
	padding: 8.75vw;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .bl_wrap span {
	color: #fff;
	display: block;
	font-size: 26px;
	margin-top: 1em;
}
@media screen and (max-width: 768px) {
	footer .bl_wrap span {
		font-size: 20px;
	}
}
footer nav {
	width: fit-content;
}
@media screen and (max-width: 768px) {
	footer nav {
		margin-top: 3em;
	}
}
footer ul {
	display: flex;
	width: 20em;
	flex-wrap: wrap;
}
footer ul li {
	width: 10em;
	text-align: left;
}
@media screen and (max-width: 768px) {
	footer ul li {
		margin-top: 1em;
	}
}
footer ul li a {
	display: block;
	width: fit-content;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
}
footer small {
	width: 100%;
	color: #fff;
	font-size: 12px;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	margin-top: 5em;
}
footer .scroll-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 150px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
footer .scroll-content {
	display: flex;
	white-space: nowrap;
	animation: scroll-loop 50s linear infinite;
}
footer .scroll-text {
	display: inline-block;
	padding: 0 50px;
	font-size: 150px;
	font-weight: bold;
	color: #fff;
}
footer .bl_contact::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 0.3s ease;
	z-index: 1;
}
footer .bl_contact:hover::before {
	background: rgba(0, 0, 0, 0.4);
}
footer a {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #fff;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
}
@media screen and (max-width: 768px) {
	footer .scroll-text {
		font-size: 80px;
	}
}
@keyframes scroll-loop {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
.bl_pagetop a {
	color: #999;
	font-size: 12px;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	margin-top: 5em;
	position: fixed;
	bottom: 2em;
	right: 2em;
	display: flex;
	align-items: center;
	z-index: 1000;
	gap: 1em;
}
@media screen and (max-width: 768px) {
	.bl_pagetop a {
		bottom: 8em;
		right: 1em;
	}
}
.bl_pagetop a:after {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	background: url(/assets/images/btn_gototop.png) no-repeat;
}
.bl_yoyaku {
	position: fixed;
	bottom: 50%;
	right: 0;
	background: #000;
	border-radius: 10px 0 0 10px;
	z-index: 1000;
}
.bl_yoyaku a {
	color: #fff;
	font-size: 16px;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	padding: 2em 1em;
	line-height: 1;
	display: block;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
	.bl_yoyaku a {
		font-size: 14px;
		padding: 2em 0.5em;
		width: 2em;
		box-sizing: border-box;
	}
}
.post-type-archive-resort .bl_mv {
	width: 100%;
	height: 100vh;
	background: url(/assets/images/bcg_mv.png) no-repeat;
	background-size: cover;
	color: #fff;
	margin-top: 0;
}
.post-type-archive-resort .bl_mv h1 {
	position: absolute;
	bottom: 2em;
	font-size: 60px;
	left: 8.4375vw;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
}
@media screen and (max-width: 768px) {
	.post-type-archive-resort .bl_mv h1 {
		font-size: 40px;
	}
}
.post-type-archive-resort .bl_mv h1 span {
	font-size: 18px;
	display: block;
	font-family: 'Shippori Mincho', serif;
}
.post-type-archive-resort .bl_note {
	display: flex;
	margin-left: 15.625vw;
	justify-content: space-between;
	align-items: center;
	gap: 2em;
}
@media screen and (max-width: 768px) {
	.post-type-archive-resort .bl_note {
		flex-direction: column;
		padding-block: 8.125vw;
		padding-inline: 5.625vw;
		margin-left: auto;
	}
}
.post-type-archive-resort .bl_note h3 {
	font-size: 30px;
	font-weight: normal;
	line-height: 1.2;
	margin-block: 2em;
}
.post-type-archive-resort .bl_note p {
	max-width: 330px;
	font-size: 14px;
}
.post-type-archive-resort .bl_note dl {
	border-left: solid 1px #000;
	padding: 0;
	padding-left: 1em;
	margin: 0;
	font-size: 14px;
}
.post-type-archive-resort .bl_note dd,
.post-type-archive-resort .bl_note dt {
	margin: 0;
	padding: 0;
}
.post-type-archive-resort .bl_note address {
	font-style: normal;
}
.post-type-archive-resort .bl_note figure {
	width: 55.625vw;
	height: 40vw;
}
@media screen and (max-width: 768px) {
	.post-type-archive-resort .bl_note figure {
		width: auto;
		height: auto;
		margin-top: 2em;
	}
}
.post-type-archive-resort .bl_note figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post-type-archive-resort section {
	padding-inline: 0;
}
.post-type-archive-resort article {
	padding-block: 8.75vw;
}
.post-type-archive-resort article:nth-of-type(even) {
	background: #fff;
}
.post-type-archive-resort article:nth-of-type(even) .bl_note {
	flex-direction: row-reverse;
	margin-left: 0;
	margin-right: 15.625vw;
	gap: 2em;
}
@media screen and (max-width: 768px) {
	.post-type-archive-resort article:nth-of-type(even) .bl_note {
		flex-direction: column;
		margin-right: 0;
	}
}
.bl_tokucho {
	margin-inline: 15.625vw;
	display: flex;
	gap: 3.125vw;
	margin-block: 4em;
}
@media screen and (max-width: 768px) {
	.bl_tokucho {
		flex-direction: column;
		margin-inline: auto;
		padding-inline: 5.625vw;
		margin-block: 0 1em;
	}
}
.bl_tokucho h3 {
	width: 320px;
	display: flex;
	border-top: solid 1px #000;
	padding-top: 2em;
}
@media screen and (max-width: 768px) {
	.bl_tokucho h3 {
		width: auto;
		margin-bottom: 0;
	}
}
.bl_tokucho h3:before {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	background: url(/assets/images/icon_tokucho.png) no-repeat;
}
.bl_tokucho p {
	flex: 1;
	padding-top: 2em;
	font-size: 15px;
	line-height: 1.8;
	max-width: 770px;
}
@media screen and (max-width: 768px) {
	.bl_tokucho p {
		padding-top: 0;
	}
}
.bl_swiper {
	max-width: 1100px;
	margin-inline: auto;
	position: relative;
}
@media screen and (max-width: 768px) {
	.bl_swiper {
		width: 90%;
	}
}
.bl_swiper .swiper-button-next {
	content: '';
	width: 40px;
	height: 40px;
	background: url(/assets/images/btn_arrow-r01.png) no-repeat;
	color: hsla(0, 0%, 100%, 0) !important;
	background-position: center center;
	position: absolute;
	top: 50%;
	z-index: 100;
	right: 0;
	transform: translateY(-50%);
}
.bl_swiper .swiper-button-prev {
	content: '';
	width: 40px;
	height: 40px;
	background: url(/assets/images/btn_arrow-l01.png) no-repeat;
	color: hsla(0, 0%, 100%, 0) !important;
	background-position: center center;
	position: absolute;
	top: 50%;
	z-index: 100;
	left: 0;
	transform: translateY(-50%);
}
.bl_btn03 {
	font-family: 'Inter', serif;
	font-size: 14px;
	width: 250px;
	position: relative;
	margin-top: 2em;
}
.bl_btn03 a {
	display: block;
	position: relative;
	background: #000;
	color: #fff;
	line-height: 55px;
	padding: 0 1.5em;
	border-radius: 8px;
}
.bl_btn03 a:after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background: url(/assets/images/icon_link.png) no-repeat;
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
}
.contact .bl_mv {
	width: 100%;
	height: 100vh;
	background: url(/assets/images/img_contact-mv.png) no-repeat;
	background-size: cover;
	color: #fff;
	margin-top: 0;
}
.contact .bl_mv h1 {
	position: absolute;
	bottom: 2em;
	font-size: 60px;
	left: 8.4375vw;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
}
@media screen and (max-width: 768px) {
	.contact .bl_mv h1 {
		font-size: 40px;
	}
}
.contact .bl_mv h1 span {
	font-size: 18px;
	display: block;
	font-family: 'Shippori Mincho', serif;
}
.contact .bl_flex {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
@media screen and (max-width: 768px) {
	.contact .bl_flex {
		flex-direction: column;
		gap: 0;
	}
}
.contact .bl_contact {
	position: relative;
	padding-inline: 0;
}
.contact .bl_contact .bl_wrap {
	padding-inline: 15vw;
	z-index: 100;
	position: relative;
}
@media screen and (max-width: 768px) {
	.contact .bl_contact .bl_wrap {
		padding-inline: 5vw;
	}
}
.contact .bl_contact h2 {
	font-size: 40px;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	margin-bottom: 5vw;
}
@media screen and (max-width: 768px) {
	.contact .bl_contact h2 {
		font-size: 30px;
	}
}
.contact .bl_contact h2 span {
	font-size: 18px;
	display: block;
	font-family: 'Shippori Mincho', serif;
}
.contact .bl_contact p {
	max-width: 280px;
}
.contact .bl_contact ul {
	background: #fff;
	max-width: 800px;
	width: 100%;
}
.contact .bl_contact ul li {
	padding: 2em;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.contact .bl_contact ul li {
		flex-direction: column;
	}
}
.contact .bl_contact ul li + li {
	border-top: solid 1px #999;
}
.contact .bl_contact ul h3 {
	order: 2;
	flex: 1;
	margin-left: 2em;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.contact .bl_contact ul h3 {
		text-align: center;
		margin-inline: auto;
	}
}
.contact .bl_contact ul h3 img {
	display: block;
	max-width: 180px;
	margin-bottom: 1em;
}
.contact .bl_contact ul figure {
	order: 1;
	aspect-ratio: 140/170;
	max-width: 140px;
}
.contact .bl_contact ul figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 768px) {
	.contact .bl_contact ul figure {
		text-align: center;
		margin-inline: auto;
	}
}
.contact .bl_contact ul .bl_btn03 {
	order: 3;
	margin-top: auto;
}
@media screen and (max-width: 768px) {
	.contact .bl_contact ul .bl_btn03 {
		margin-inline: auto;
	}
}
.contact .scroll-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 150px;
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 3em;
}
.contact .scroll-content {
	display: flex;
	white-space: nowrap;
	animation: scroll-loop 50s linear infinite;
}
.contact .scroll-text {
	display: inline-block;
	padding: 0 50px;
	font-size: 150px;
	font-weight: bold;
	color: #e4e1dc;
}
.bl_form {
	background: #fff;
	padding-inline: 0;
}
.bl_form .bl_wrap {
	padding-inline: 15vw;
	z-index: 100;
	position: relative;
}
@media screen and (max-width: 768px) {
	.bl_form .bl_wrap {
		padding-inline: 5vw;
	}
}
.bl_form h2 {
	font-size: 40px;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	margin-bottom: 5vw;
}
@media screen and (max-width: 768px) {
	.bl_form h2 {
		font-size: 30px;
	}
}
.bl_form h2 span {
	font-size: 18px;
	display: block;
	font-family: 'Shippori Mincho', serif;
}
.bl_form .bl_txt-area p {
	max-width: 280px;
}
@media screen and (max-width: 768px) {
	.bl_form .bl_txt-area p {
		max-width: 100%;
		font-size: 15px;
	}
}
.wpcf7 {
	max-width: 800px;
	width: 100%;
}
.wpcf7 input[type='text'],
.wpcf7 input[type='tel'],
.wpcf7 input[type='email'],
.wpcf7 textarea {
	background: #f2f0ed;
	width: 100%;
	border: none;
	padding: 1em;
	margin-bottom: 2.5vw;
}
@media screen and (max-width: 768px) {
	.wpcf7 input[type='text'],
	.wpcf7 input[type='tel'],
	.wpcf7 input[type='email'],
	.wpcf7 textarea {
		width: auto;
	}
}
.wpcf7 .hisu {
	color: #ef2a2a;
}
.wpcf7 .item_name {
	font-family: 15px;
}
.wpcf7 input[type='submit'] {
	font-family: 'Inter', serif;
	font-size: 14px;
	width: 250px;
	margin-top: 2em;
	background: #000 url(/assets/images/img_arrow-contact.png);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	display: block;
	position: relative;
	color: #fff;
	line-height: 55px;
	padding: 0 1.5em;
	border-radius: 8px;
	cursor: pointer;
}
.wpcf7 input[type='submit'][value='送信内容を確認する'] {
	margin-left: auto;
	transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
	.wpcf7 input[type='submit'][value='送信内容を確認する'] {
		transform: translateY(0);
		margin-inline: auto;
	}
}
.wpcf7 .flex_wrap {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-top: 5vw;
}
@media screen and (max-width: 768px) {
	.wpcf7 .flex_wrap {
		flex-direction: column;
	}
}
.wpcf7 input[type='button'] {
	cursor: pointer;
}
.wpcf7 input[type='button'].wpcf7-previous {
	font-family: 'Inter', serif;
	font-size: 14px;
	width: 250px;
	margin-top: 2em;
	background: #000 url(/assets/images/img_arrow-contact-reverse.png);
	background-repeat: no-repeat;
	background-position: 5% 50%;
	display: block;
	position: relative;
	color: #fff;
	line-height: 55px;
	padding: 0 1.5em;
	border-radius: 8px;
}
.wpcf7 a {
	text-decoration: underline;
}
.news-list .bl_mv {
	width: 100%;
	height: 100vh;
	background: url(/assets/images/img_news-mv.png) no-repeat;
	background-size: cover;
	color: #fff;
	margin-top: 0;
}
@media screen and (max-width: 768px) {
	.news-list .bl_mv {
		height: auto;
		aspect-ratio: 4/3;
	}
}
.news-list .bl_mv h1 {
	position: absolute;
	bottom: 2em;
	font-size: 60px;
	left: 8.4375vw;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	text-transform: uppercase;
}
@media screen and (max-width: 768px) {
	.news-list .bl_mv h1 {
		font-size: 30px;
		top: 3em;
	}
}
.news-list .bl_mv h1 span {
	font-size: 18px;
	display: block;
	font-family: 'Shippori Mincho', serif;
	margin-top: 2em;
}
.news-list ul.news-list {
	max-width: 1200px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2em;
}
@media screen and (max-width: 768px) {
	.news-list ul.news-list {
		grid-template-columns: repeat(1, 1fr);
	}
}
.news-list ul.news-list li {
	max-width: 380px;
	width: 100%;
	border-bottom: solid 1px #000;
	padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
	.news-list ul.news-list li {
		width: auto;
		max-width: unset;
	}
}
.news-list ul.news-list li a {
	display: flex;
	flex-direction: column;
	position: relative;
	justify-content: space-between;
	height: 100%;
}
.news-list ul.news-list li a:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: url(/assets/images/img_btn-arrow.png) no-repeat;
	position: absolute;
	right: 0;
	bottom: 0.25em;
	transition: 0.3s;
}
.news-list ul.news-list li a:hover:after {
	right: -1em;
}
.news-list ul.news-list li figure {
	order: 1;
}
.news-list ul.news-list li figure img {
	width: 100%;
	height: auto;
	aspect-ratio: 5/4;
	object-fit: contain;
}
.news-list ul.news-list li a > div {
	order: 2;
	flex: 1;
	margin-bottom: 2em;
}
.news-list ul.news-list li a > div h3 {
	font-size: 15px;
	margin-bottom: 0;
}
.news-list ul.news-list li p {
	font-size: 15px;
}
.news-list ul.news-list li span {
	order: 3;
	font-size: 13px;
	font-family: 'Inter', serif;
}
.news-list ul.news-list li span time {
	margin-left: 1em;
	border-left: solid 1px #000;
	padding-left: 1em;
}
.pagination {
	margin-top: 4em;
}
.pagination ul {
	display: flex;
	justify-content: center;
	gap: 1em;
}
.pagination ul li {
	width: 45px;
	line-height: 45px;
	text-align: center;
}
.pagination ul .current,
.pagination ul .prev,
.pagination ul .next {
	background: #000;
	color: #fff;
	border-radius: 25px;
	display: block;
	width: 100%;
	line-height: 45px;
	text-align: center;
}
.page-main {
	padding-block: 8.125vw;
	padding-inline: 15vw;
	margin-top: 100px;
}
@media screen and (max-width: 768px) {
	.page-main {
		padding-inline: 5vw;
		margin-top: 19.53125vw;
	}
}
.page-main h1 {
	font-size: 40px;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	margin-bottom: 5vw;
}
.page-main h1 span {
	font-size: 18px;
	display: block;
	font-family: 'Shippori Mincho', serif;
}
.page-main h2 {
	margin-top: 60px;
}
.page-main .wp-block-button__link {
	display: block;
	position: relative;
	background: #000;
	color: #fff;
	line-height: 55px;
	padding: 0 calc(15px + 2em);
	border-radius: 8px;
}
.page-main .wp-block-button__link::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background: #000 url(/assets/images/img_arrow-contact.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
}
.page-main .wp-block-list {
	padding-left: 30px;
}
.page-main .wp-block-list li {
	list-style: disc;
}
.contact-confirm,
.contact-thanks {
	padding-block: 8.125vw;
	padding-inline: 15vw;
	margin-top: 100px;
	background: #fff;
}
@media screen and (max-width: 768px) {
	.contact-confirm,
	.contact-thanks {
		padding-inline: 5vw;
		margin-top: 19.53125vw;
	}
}
.contact-confirm h1,
.contact-thanks h1 {
	font-size: 40px;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	margin-bottom: 5vw;
}
.contact-confirm h1 span,
.contact-thanks h1 span {
	font-size: 18px;
	display: block;
	font-family: 'Shippori Mincho', serif;
}
.contact-confirm .wpcf7,
.contact-thanks .wpcf7 {
	margin-left: auto;
}
.contact-confirm .wpcf7 .form-item,
.contact-thanks .wpcf7 .form-item {
	margin-left: 1em;
}
.contact-thanks .thanks-text {
	text-align: center;
}
.contact-thanks .btn.backtotop {
	font-family: 'Inter', serif;
	font-size: 14px;
	width: 250px;
	position: relative;
	margin-top: 2.5vw;
	margin-inline: auto;
	cursor: pointer;
}
.contact-thanks .btn.backtotop a {
	display: block;
	position: relative;
	background: #000;
	color: #fff;
	line-height: 55px;
	padding: 0 1.5em;
	border-radius: 8px;
}
.video-background {
	position: relative;
	width: 100%;
	max-height: 100vh;
	overflow: hidden;
	text-align: center;
	background: #000 url(/assets/images/bcg_mv-mono.webp);
}
@media screen and (max-width: 768px) {
	.video-background {
		height: 100%;
	}
}
.video-background video {
	aspect-ratio: 16/9;
	object-fit: cover;
	max-height: 100vh;
	width: auto;
	max-width: 100%;
	margin-inline: auto;
	text-align: center;
	vertical-align: top;
	height: 100vw;
}
@media screen and (max-width: 768px) {
	.video-background video {
		display: none;
	}
}
.bl_mv .swiper-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.bl_mv .swiper-sp {
		display: block;
		height: 100%;
	}
	.bl_mv .swiper-sp img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
.mf_fw-b {
	font-weight: bold;
}
.mf_w1200 {
	display: block;
	max-width: 1200px;
	margin-inline: auto;
	margin-bottom: 3rem;
}
.js-filter-options {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(5px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	background: rgba(0, 0, 0, 0);
	border: none;
	z-index: 10;
}
.js-filter-options li a {
	display: block;
	padding: 0.5em 0;
	font-size: 14px;
	color: #000;
	text-decoration: none;
	background: #efeae4;
}
.bl_btn01.js-filter:hover .js-filter-options,
.bl_btn01:focus-within .js-filter-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.news-single {
	padding-inline: 8.4375vw;
	padding-block: 8.125vw;
	margin-top: 100px;
}
@media (max-width: 768px) {
	.news-single {
		padding-inline: 5.625vw;
		margin-top: 19.53125vw;
	}
}
.news-hero {
	max-width: 1200px;
	margin-inline: auto;
}
.news-headline {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Inter', serif;
	font-size: 14px;
	border-bottom: 1px solid #999;
	margin-bottom: 3em;
}
.news-headline__date {
	color: #000;
}
.news-headline__cat {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.2em 0.8em;
}
.news-title {
	font: 400 24px/1.4 'Cardo', serif;
	margin: 0 0 2em;
}
@media (max-width: 768px) {
	.news-title {
		font-size: 30px;
	}
}
.news-visual {
	margin: 0 0 1.5em;
}
.news-visual .mv-img {
	width: 100%;
	height: auto;
	aspect-ratio: 5/3;
	object-fit: cover;
	display: block;
	background: #fff;
}
.news-lead {
	font-size: 15px;
	margin-bottom: 3em;
}
.news-body {
	max-width: 900px;
	width: 90%;
	margin: 0 auto;
}
.news-body .entry-content {
	font-size: 16px;
	line-height: 1.9;
}
.news-body .entry-content h2,
.news-body .entry-content h3 {
	font-weight: 400;
	line-height: 1.4;
	margin: 2.5em 0 0.75em;
}
.news-body .entry-content h2 {
	font-size: 28px;
}
.news-body .entry-content h3 {
	font-size: 20px;
}
.news-body .entry-content p {
	margin: 1.2em 0;
}
.news-body .entry-content ul {
	margin: 1.2em 0;
	padding-left: 1.2em;
}
.news-body .entry-content ul li {
	list-style: disc;
}
.news-body .entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2em 0;
	background: #fff;
}
.news-body .entry-content table th,
.news-body .entry-content table td {
	border: 1px solid #ccc;
	padding: 0.8em 1em;
	text-align: left;
}
.news-body h2 {
	border-block: 1px solid #999;
	font-size: 18px;
	padding-block: 0.5em;
}
.news-body h3 {
	background: #e0d9d1;
	font-size: 18px;
	border-bottom: 1px solid #999;
	padding: 0.5em;
}
.mf-table01 table tr td:first-child {
	background: #e0d9d1;
	width: fit-content;
}
.news-related {
	margin-top: 3em;
}
.news-related__title {
	font-size: 18px;
	margin: 0 0 0.5em;
}
.news-related__link a {
	text-decoration: underline;
	word-break: break-all;
}
.news-cta {
	margin-top: 2.5em;
}
.news-cta .btn {
	display: inline-block;
	font: 14px/55px 'Inter', serif;
	padding: 0 2.5em;
	border-radius: 8px;
	position: relative;
}
.news-cta .btn--accent {
	background: #e0d9d1;
	color: #000;
}
.news-cta .btn--black {
	background: #000;
	color: #fff;
}
.news-cta .btn--line {
	background: rgba(0, 0, 0, 0);
	color: #000;
	border: 1px solid #000;
}
.news-latest {
	margin-top: 48px;
	max-width: 1200px;
	margin-inline: auto;
}
.news-latest .sec-title {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font: 400 16px 'Cardo', serif;
	letter-spacing: 0.08em;
	margin: 0 0 16px;
}
.news-latest .sec-title::after {
	content: '';
	flex: 1 1 auto;
	height: 1px;
	background: #d1ccc4;
	display: block;
}
.news-latest .cards {
	max-width: 1200px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 20px;
}
@media (max-width: 768px) {
	.news-latest .cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
.news-latest .card {
	border: none;
	padding: 0;
}
.news-latest .card a {
	display: block;
	text-decoration: none;
	color: inherit;
}
.news-latest .card__thumb img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
	display: block;
	background: #fff;
}
.news-latest .card__title {
	font-size: 15px;
	line-height: 1.5;
	margin: 10px 0 0;
	flex: 1;
}
.news-latest .card__meta {
	font-size: 13px;
	font-family: 'Inter', serif;
	margin-top: 4px;
}
.news-latest .card__date {
	margin-left: 1em;
	padding-left: 1em;
	border-left: 1px solid #000;
}
.news-latest .view-all {
	text-align: right;
	margin-top: 2em;
}
.breadcrumb {
	max-width: 1200px;
	margin: 3em auto 0;
}
.breadcrumb .breadcrumbs {
	font: 12px 'Cardo', serif;
	color: #000;
}
.breadcrumb .breadcrumbs a {
	text-decoration: underline;
}
.js-filter-options {
	background: rgba(0, 0, 0, 0);
	border: none;
}
.js-filter-options li a {
	background: rgba(0, 0, 0, 0);
}
.news-latest .card {
	border-bottom: 1px solid #000;
	padding-bottom: 0.5em;
	position: relative;
}
.news-latest .card a {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	text-decoration: none;
	color: inherit;
}
.news-latest .card a::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: url(/assets/images/img_btn-arrow.png) no-repeat center/contain;
	position: absolute;
	right: 0;
	bottom: 0.25em;
	transition: 0.3s;
}
.news-latest .card a:hover::after {
	right: -1em;
}
.card__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	gap: 1em;
}
.news-latest .view-all {
	text-align: right;
	margin-top: 2em;
}
.news-latest .view-all a {
	display: inline-flex;
	align-items: center;
	font-family: 'Inter', serif;
	font-size: 14px;
	color: #000;
	text-decoration: none;
	gap: 0.75em;
	position: relative;
}
.news-latest .view-all a::after {
	content: '›';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	background: #000;
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	transition: 0.3s;
}
.news-latest .view-all a:hover::after {
	transform: translateX(4px);
}
.news-body .wp-block-button.btn-t-01 .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	color: #000;
	background: rgba(0, 0, 0, 0);
	border: none;
	border-bottom: 1px solid #000;
	font-size: 14px;
	padding: 0.4em 0;
	min-width: 180px;
	border-radius: 0;
	margin-block: 3em;
}
.news-body .wp-block-button.btn-t-01 .wp-block-button__link::after {
	content: '›';
	font-size: 14px;
	margin-left: auto;
	transition: transform 0.3s;
}
.news-body .wp-block-button.btn-t-01 .wp-block-button__link:hover::after {
	transform: translateX(4px);
}
.news-body .wp-block-button.btn-t-02 .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #000;
	color: #fff;
	border-radius: 12px;
	padding: 10px 50px 10px 16px;
	font-size: 14px;
	margin-block: 3em;
	min-width: 180px;
	position: relative;
}
.news-body .wp-block-button.btn-t-02 .wp-block-button__link::after {
	content: '';
	width: 15px;
	height: 15px;
	background: url(/assets/images/icon_link.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s;
}
.news-body .wp-block-button.btn-t-02 .wp-block-button__link:hover::after {
	transform: translateY(-50%) translateX(3px);
}
.news-body strong {
	font-weight: bold;
}
html {
	scroll-behavior: smooth;
}
.toc {
	margin: 1.5rem 0 2rem;
}
.toc__box {
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	padding: 0.75rem 1rem;
}
.toc__title {
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}
.toc__title::-webkit-details-marker {
	display: none;
}
.toc__list {
	margin: 0.5rem 0 0;
	padding-left: 1.2rem;
	list-style: none;
}
.toc__list li {
	margin: 0.35rem 0;
	position: relative;
}
.toc__list li::before {
	content: '•';
	position: absolute;
	left: -1rem;
	top: 0;
}
.toc__list li.toc--h3 {
	margin-left: 1rem;
	opacity: 0.85;
}
.toc__list a {
	color: #000;
	text-decoration: none;
	border-bottom: 1px dotted #bbb;
}
.toc__list a:hover {
	border-bottom-color: #000;
}
.news-body h2,
.news-body h3 {
	scroll-margin-top: 100px;
}
.bl_filter-nav {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin: 2rem 0;
	padding: 0;
	list-style: none;
}
.bl_filter-nav li {
	position: relative;
}
.bl_filter-nav li a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding-bottom: 4px;
	display: inline-block;
}
.bl_filter-nav li.is-active a {
	border-bottom: 2px solid #000;
}
@media screen and (max-width: 768px) {
	.news-list .bl_mv,
	.contact .bl_mv,
	.post-type-archive-resort .bl_mv {
		height: auto;
		aspect-ratio: 4/3;
		position: relative;
	}
}
@media screen and (max-width: 768px) {
	.news-list .bl_mv h1,
	.contact .bl_mv h1,
	.post-type-archive-resort .bl_mv h1 {
		font-size: 30px;
	}
}
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 333/249;
}

/* ====== 2026-04-09 追加 ====== */

/* NEWS: MVなし時の余白調整 */
.bl_news--no-mv {
	padding-top: 120px;
}

/* TOP: Contactバナー非表示 */
.home footer .bl_contact {
	display: none;
}

/* ====== 2026-04-13 追加 ====== */

/* 下層ページ: Contactバナー非表示（news/resort） */
.post-type-archive-news footer .bl_contact,
.post-type-archive-resort footer .bl_contact {
	display: none;
}

/* フッターロゴサイズ統一（ヘッダーと同サイズ） */
footer .footer-logo img {
	max-width: 300px;
	height: auto;
	object-fit: contain;
}

/* CONTACTページ: Contactバナー・宿泊予約ボタン非表示 */
.page-id-8 footer .bl_contact,
.page-id-8 .bl_yoyaku {
	display: none;
}
