@charset "utf-8";

/* ===================================================
	Home CSS
====================================================== */

/* ---------------------------------------------------
	Loading
------------------------------------------------------ */
#load {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	padding-right: 100px;
	pointer-events: none;
	opacity: 0;
}
#load .logo {
	position: relative;
	width: 201px;
	height: auto;
}
#load .logo .logo_vertical,
#load .logo .logo_horizontal,
#load .logo .logo_txt {
	opacity: 0;
}

@keyframes logoAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.loading #load {
	z-index: 999;
	background: #fff;
	opacity: 1;
	transition: 1s opacity 1.5s ease-in-out;
}
.loading #load .logo .logo_vertical {
	transition: opacity 1.2s ease-in-out;
}
.loading #load .logo .logo_horizontal {
	transition: opacity 1.2s 1.5s ease-in-out;
}
.loading #load .logo .logo_txt {
	transition: opacity 1.2s 2.8s ease-in-out;
}
.loadStart #load .logo .logo_vertical,
.loadStart #load .logo .logo_horizontal,
.loadStart #load .logo .logo_txt {
	opacity: 1;
}
.loadEnd #load {
	opacity: 0;
}

@media screen and (max-width: 600px) {
	#load {
		height: 100dvh;
		padding-right: 0;
		transition: height 0.5s;
	}
	#load .logo {
		width: 30vw;
	}
}

/* ---------------------------------------------------
	Main_img
------------------------------------------------------ */
#main_img {
	padding: 0;
}
#main_img .ofi {
	width: 110%;
	max-width: none;
	transition: transform 8s linear;
}
#main_img .slick_main {
	z-index: 0;
	height: 100%;
}
#main_img .slick_main .active .ofi {
	transform: translateX(-5%);
}
#main_img #main_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	transform: translate(-50%, -50%);
}
#main_img #main_youtube {
	position: absolute;
	bottom: 45px;
	left: 40px;
	height: auto;
}
#main_img #main_youtube a {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 8px 15px;
	font-size: 14px;
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.5);
}
#main_img #main_youtube a .arrow {
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
	margin-right: 10px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
}
#main_img #main_youtube a .arrow::before {
	position: absolute;
	top: 50%;
	left: 50%;
	box-sizing: border-box;
	content: "";
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid #fff;
	transform: translate(-50%, -50%);
}
#movie_area {
	position: fixed;
	z-index: 10000;
	display: none;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-align: center;
	background: #000;
}
#movie {
	position: static;
	top: 0;
	left: 0;
	width: 100% !important;
	height: calc(100% - 140px);
	margin: 70px 0;
	overflow: hidden;
}
#movie_close {
	position: fixed;
	top: 20px;
	right: 20px;
}
#movie_close img {
	width: 50px;
}

@media screen and (max-width: 600px) {
	#main_img {
		height: 100svh;
		transition: height 0.5s;
	}
	#main_img .ofi {
		height: 100svh;
	}
	#main_img #main_logo {
		width: 30vw;
		height: auto;
	}
	#main_img #main_youtube {
		bottom: 30px;
		left: 50%;
		width: min(250px, 80%);
		transform: translateX(-50%);
	}
	#main_img #main_youtube a {
		justify-content: center;
		padding: 8px 12px;
		font-size: 12px;
	}
	#main_img #main_youtube a .arrow {
		width: 17px;
		height: 17px;
		margin-right: 7px;
	}
	#main_img #main_youtube a .arrow::before {
		border-top: 3px solid transparent;
		border-bottom: 3px solid transparent;
		border-left: 5px solid #fff;
	}
}

/* ---------------------------------------------------
	Sec_lead
------------------------------------------------------ */
#sec_lead {
	padding: 110px 0 70px;
	background: linear-gradient(to bottom, #fff 0%, var(--color-bg01) 100%);
}
#sec_lead .map_col {
	position: relative;
	z-index: 0;
	padding: 0 0 105px;
	overflow: hidden;
	color: var(--color-txt02);
}
#sec_lead .txt {
	width: min(590px, 45%);
	padding: 90px 0 0;
	margin: 0 0 0 max(calc(50vw - 600px), 4%);
	line-height: 2.2;
}
#sec_lead .txt h2 {
	margin: 0 0 40px;
	font-size: 32px;
	line-height: 1.8;
	color: var(--color-point);
}
#sec_lead .txt p {
	width: 65%;
}
#sec_lead .txt p + p {
	margin: 30px 0 0;
}
#sec_lead .map {
	position: absolute;
	top: 0;
	left: calc(50% - 180px);
	z-index: -1;
	width: min(1315px, 92%);
}
#sec_lead .img01 {
	margin: 0 clamp(3.125rem, -15.625rem + 25vw, 6.25rem) 120px 0;
}
#sec_lead .img01 img {
	width: 100%;
}
#sec_lead .img02 {
	display: flex;
	margin: 0 0 0 clamp(3.125rem, -15.625rem + 25vw, 6.25rem);
}
#sec_lead .img02 > div,
#sec_lead .img02 img {
	width: 100%;
}

@media screen and (max-width: 600px) {
	#sec_lead {
		padding: 60px 0;
	}
	#sec_lead .map_col {
		padding-bottom: 80px;
		background: #fff;
	}
	#sec_lead .txt {
		display: block;
		width: 86%;
		padding: 0;
		margin: 0 auto 30px;
		line-height: 2;
	}
	#sec_lead .txt h2 {
		margin: 0 0 15px;
		font-size: 24px;
		line-height: 1.6;
	}
	#sec_lead .txt p {
		width: auto;
	}
	#sec_lead .txt p + p {
		margin: 15px 0 0;
	}
	#sec_lead .map {
		position: static;
		width: 100%;
	}
	#sec_lead .img01 {
		margin: 0 0 30px;
	}
	#sec_lead .img02 {
		margin-left: 0;
	}
}

/* ---------------------------------------------------
	Common Parts
------------------------------------------------------ */
.cmn_sec {
	padding: 0 0 105px;
}
.cmn_sec .cmn_tit01::before {
	height: 120px;
}
.cmn_sec .cmn_tit01 .main {
	font-size: 45px;
}
.cmn_sec .cmn_tit01 .sub {
	font-size: 16px;
	opacity: 0.8;
}

@media screen and (max-width: 600px) {
	.cmn_sec {
		padding-bottom: 60px;
	}
	.cmn_sec .cmn_tit01::before {
		height: 70px;
	}
	.cmn_sec .cmn_tit01 .main {
		font-size: 28px;
	}
	.cmn_sec .cmn_tit01 .sub {
		font-size: 14px;
	}
}

/* ---------------------------------------------------
	温泉
------------------------------------------------------ */
#sec01 > .img {
	margin: 0 0 60px;
}
#sec01 .txt_col {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
#sec01 .txt_col .txt {
	width: 485px;
	margin: 0 0 0 30px;
}
#sec01 .txt_col .txt p + p {
	margin: 20px 0 0;
}
#sec01 .txt_col .img {
	margin: 0;
}

@media screen and (max-width: 600px) {
	#sec01 > .img {
		margin-bottom: 25px;
	}
	#sec01 .txt_col {
		display: block;
	}
	#sec01 .txt_col .txt {
		width: auto;
		margin: 0 0 25px;
	}
	#sec01 .txt_col .txt p + p {
		margin: 20px 0 0;
	}
	#sec01 .txt_col .img img {
		width: 100%;
	}
}

/* ---------------------------------------------------
	料理
------------------------------------------------------ */
#sec02 .sub_sec {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 100px;
}
#sec02 .sub_sec h3 {
	width: 100%;
	margin: 0 0 35px;
	font-size: 34px;
	line-height: 1.3;
}
#sec02 .sub_sec .img {
	width: 650px;
	max-width: 55%;
	margin: 0;
}
#sec02 .sub_sec .img .slick-dots {
	justify-content: flex-start;
}
#sec02 .sub_sec .txt {
	width: 485px;
	max-width: 40%;
}
#sec02 .sub_sec .txt .cmn_dl_table {
	margin: 60px 0 0;
}
#sec02 .sub_sec .txt .cmn_dl_table > div > :is(dt, dd) {
	padding: 20px;
}
#sec02 .sub_sec .txt .cmn_dl_table > div > dt {
	width: 165px;
	font-weight: normal;
}

@media screen and (max-width: 600px) {
	#sec02 .sub_sec {
		display: block;
		margin-top: 50px;
	}
	#sec02 .sub_sec h3 {
		margin-bottom: 15px;
		font-size: 22px;
		line-height: 1.2;
	}
	#sec02 .sub_sec .img {
		width: 100%;
		max-width: none;
		margin: 0 0 20px;
	}
	#sec02 .sub_sec .txt {
		width: 100% !important;
		max-width: none;
	}
	#sec02 .sub_sec .txt .cmn_dl_table {
		margin-top: 20px;
	}
	#sec02 .sub_sec .txt .cmn_dl_table > div > dt,
	#sec02 .sub_sec .txt .cmn_dl_table > div > dd {
		padding: 10px;
	}
}

/* ---------------------------------------------------
	客室
------------------------------------------------------ */
#sec03 .room_list {
	display: flex;
	flex-wrap: wrap;
	gap: 100px 0;
	justify-content: space-between;
	margin-top: 100px;
}
#sec03 .room_list li {
	width: 570px;
	max-width: calc((100% - 40px) / 2);
}
#sec03 .room_list .img {
	margin: 0 0 10px;
}
#sec03 .room_list h3 {
	margin: 0 0 5px;
	font-size: 18px;
}
#sec03 .room_list p {
	font-size: 13px;
	opacity: 0.7;
}

@media screen and (max-width: 600px) {
	#sec03 .room_list {
		display: block;
		margin-top: 40px;
	}
	#sec03 .room_list li {
		width: auto;
		max-width: none;
	}
	#sec03 .room_list li + li {
		margin: 30px 0 0;
	}
	#sec03 .room_list .img {
		width: 100%;
	}
	#sec03 .room_list h3 {
		font-size: 16px;
	}
}

/* ---------------------------------------------------
	館内施設、周辺観光
------------------------------------------------------ */
:is(#sec04, #sec05) .slick-slide > div > div {
	position: relative;
	z-index: 0;
}
:is(#sec04, #sec05) .slick-slide > div > div::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 150px;
	max-height: 100%;
	content: "";
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
:is(#sec04, #sec05) .slick-slide .ofi {
	position: relative;
	z-index: 0;
}
:is(#sec04, #sec05) .slick-slide .note {
	position: absolute;
	right: 15px;
	bottom: 5px;
	z-index: 10;
	padding: 0 0 0 15px;
	font-size: 14px;
	line-height: 1.6;
	color: #fff;
	text-align: left;
	text-shadow: 0 0 5px #000;
}

@media screen and (max-width: 600px) {
	#sec05 .txt .link {
		text-align: left;
	}
}

/* ---------------------------------------------------
	アクセス
------------------------------------------------------ */
#sec06 {
	padding: 110px 0 130px;
}
#sec06 .con iframe {
	width: 100%;
	margin: 0 0 50px;
	filter: grayscale(100%);
}
#sec06 .con h3 {
	margin: 120px 0 50px;
	font-size: 34px;
}
#sec06 .sec_route {
	font-size: 14px;
}
#sec06 .sec_route .route_img {
	margin: 0 0 45px;
}
#sec06 .sec_route .cmn_list_note_01 {
	margin: 0 0 25px;
}
#sec06 .sec_route .txt_links {
	display: flex;
	align-items: center;
	line-height: 1;
}
#sec06 .sec_route .txt_links dt {
	flex-shrink: 0;
	padding: 0 20px 0 0;
	border-right: 1px solid var(--color-txt01);
}
#sec06 .sec_route .txt_links dd {
	padding: 0 0 0 25px;
}
#sec06 .sec_route .txt_links dd ul {
	display: flex;
	flex-wrap: wrap;
}
#sec06 .sec_route .txt_links dd li:not(:last-child) {
	margin-right: 30px;
}
#sec06 .sec_route .txt_links dd a {
	display: flex;
	align-items: center;
}
#sec06 .sec_route .txt_links dd a::after {
	width: 15px;
	height: 15px;
	margin: 0 0 0 5px;
	content: "";
	background: url(../../common/img/icon_site_02.svg) no-repeat center center;
	background-size: 100% auto;
}

@media screen and (max-width: 600px) {
	#sec06 {
		padding: 30px 0 60px;
	}
	#sec06 .con iframe {
		height: 60vw;
		margin-bottom: 25px;
	}
	#sec06 .con h3 {
		margin: 40px 0 20px;
		font-size: 20px;
	}
	#sec06 .sec_route .route_col {
		margin: 0 0 30px;
	}
	#sec06 .sec_route .route_col dl {
		line-height: 1.6;
	}
	#sec06 .sec_route .route_col dl + dl {
		margin: 20px 0 0;
	}
	#sec06 .sec_route .route_col li {
		list-style-type: none;
	}
	#sec06 .sec_route .route_col .point {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-height: 55px;
		padding: 10px;
		text-align: center;
		background: #fff;
	}
	#sec06 .sec_route .route_col .point span {
		font-size: 12px;
	}
	#sec06 .sec_route .route_col .goal {
		color: #fff;
		background: var(--color-bg02);
	}
	#sec06 .sec_route .route_col dt.point {
		position: relative;
		z-index: 0;
		padding: 10px 30px;
	}
	#sec06 .sec_route .route_col dt.point::after {
		position: absolute;
		top: 50%;
		right: 15px;
		width: 12px;
		height: 12px;
		content: "";
		background: url(../img/arrow.svg) no-repeat center center;
		background-size: 100% auto;
		transition: transform 0.5s;
		transform: translateY(-50%);
	}
	#sec06 .sec_route .route_col dt.point.active::after {
		transform: rotate(180deg) translateY(50%);
	}
	#sec06 .sec_route .route_col .way {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	#sec06 .sec_route .route_col .way::before,
	#sec06 .sec_route .route_col .way::after {
		width: 1px;
		height: 20px;
		content: "";
		background: rgba(var(--color-border02-rgb), 0.5);
	}
	#sec06 .sec_route .route_col .way > span {
		margin: 10px 0;
	}
	#sec06 .sec_route .route_col h4 {
		margin: 0 0 10px;
		font-weight: bold;
	}
	#sec06 .sec_route .route_col h4:not(:first-child) {
		margin-top: 30px;
	}
	#sec06 .sec_route .txt_links {
		display: block;
		line-height: 1.6;
	}
	#sec06 .sec_route .txt_links dt {
		padding: 0 0 5px;
		font-weight: bold;
		border-right: none;
	}
	#sec06 .sec_route .txt_links dd {
		padding: 0;
	}
	#sec06 .sec_route .txt_links dd li {
		margin: 5px 0;
	}
	#sec06 .sec_route .txt_links dd li:not(:last-child) {
		margin-right: 20px;
	}
}

/* ---------------------------------------------------
	ブログ
------------------------------------------------------ */
#sec07 {
	padding: 110px 0 140px;
	border-image-source: linear-gradient(#fff, #fff); /* 色 */
	border-image-slice: 0 fill; /* 変更しない */
	border-image-outset: 0 100vw; /* どれだけはみ出すか上下左右 */
}
#sec07 .cmn_dl_table {
	border-top: none;
}
#sec07 .cmn_dl_table > div > :is(dt, dd) {
	padding: 20px;
}
#sec07 .cmn_dl_table > div > dt {
	width: 245px;
	font-weight: normal;
}
#sec07 .cmn_dl_table > div > dd p + p {
	margin: 15px 0 0;
}

@media screen and (max-width: 600px) {
	#sec07 {
		padding: 60px 0;
	}
	#sec07 .cmn_dl_table > div > dt {
		padding: 10px 15px 5px;
		font-weight: bold;
	}
	#sec07 .cmn_dl_table > div > dd {
		padding: 0 15px 10px;
	}
	#sec07 .cmn_dl_table > div > dd p + p {
		margin-top: 10px;
	}
}

/* ---------------------------------------------------
	Ticker
------------------------------------------------------ */
@keyframes loop {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}
@keyframes loop2 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-200%);
	}
}
#ft_ticker,
#ft_ticker ul {
	display: flex;
}
#ft_ticker {
	position: relative;
	z-index: 0;
	width: 100%;
	overflow: hidden;
}
#ft_ticker ul {
	backface-visibility: hidden;
	will-change: transform;
}
#ft_ticker ul:first-child {
	animation: loop 200s -100s linear infinite;
}
#ft_ticker ul:last-child {
	animation: loop2 200s linear infinite;
}
#ft_ticker li {
	position: relative;
	z-index: 0;
	min-width: 50vw;
}
#ft_ticker li img {
	width: 100%;
}

@media screen and (max-width: 600px) {
	#ft_ticker ul:first-child {
		animation: loop 150s -75s linear infinite;
	}
	#ft_ticker ul:last-child {
		animation: loop2 150s linear infinite;
	}
}
