@charset "UTF-8";

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;

	/* color */
	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--gra: 128, 128, 128;
	--yel: 221, 213, 131;
	--red: 245, 80, 70;
	--about: 142, 139, 80;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 70px;
}

@media screen and (max-width: 768px) {
	html {
		scroll-padding-top: 40px;
	}
}

/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

p {
	word-wrap: break-word;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
b,
caption,
cite,
code,
dfn,
em,
i,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

caption,
th {
	text-align: left;
}

a {
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*
	表示設定
------------------------------ */
body {
	padding-top: 70px;
	line-height: 1.8;
}

.container {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1000px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	body {
		padding-top: 40px;
	}

	.container {
		padding: 0 6vw;
	}
}

/*
	font
------------------------------ */
body {
	color: var(--blk);
	font-family: var(--mincho);
	font-feature-settings: "palt"1;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 1000px) {
	body {
		font-size: 1.6vw;
	}
}

@media screen and (max-width: 768px) {
	body {
		font-size: 3.46667vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	padding-left: 1.25em;
	text-indent: 0;
	position: relative;
}

ul.list li::before {
	margin-right: 0.25em;
	position: absolute;
	left: 0;
}

/* type1 */
ul.type1 li::before {
	content: "●";
}

/* note */
ul.note li {
	font-family: var(--gothic);
	font-size: 14px;
}

ul.note li::before {
	content: "※";
}

@media screen and (max-width: 1000px) {
	ul.note li {
		font-size: 1.4vw;
	}
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 2.93333vw;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a:hover {
	opacity: 1;
}

.linkBtn a svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

/*
	tel
------------------------------ */
.tel {
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.tel {
		pointer-events: all;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(0, 0, 0, 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1em;
	bottom: 1em;
	z-index: 100;
}

.pageTop a:hover {
	opacity: 1;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

@media screen and (max-width: 768px) {
	.pageTop a {
		bottom: 3.5em;
	}
}

/* ----------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background: rgb(var(--blk));
	padding-left: 3em;
	width: 100%;
	height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.gnav__list {
	height: 100%;
	display: flex;
	align-items: center;
}

.gnav__item {
	margin-right: 3em;
	font-size: 22px;
}

.gnav__item a {
	line-height: 1.5;
	color: rgb(var(--gra));
	text-decoration: none;
	display: block;
}

@media screen and (max-width: 1100px) {
	.gnav__item {
		font-size: 2vw;
	}
}

@media screen and (max-width: 768px) {
	.gnav {
		padding: 0;
		height: 40px;
	}

	.gnav__list {
		background: rgb(var(--blk));
		padding: 60px 1em 0;
		width: 50%;
		height: 100vh;
		height: 100dvh;
		display: block;
		transform: translateX(-100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__item {
		margin-right: 0;
		font-size: 3.73333vw;
	}

	.gnav__item a {
		padding: 1em 0 1em 0.5em;
		border-top: solid 1px rgb(var(--wht));
		border-bottom: solid 1px rgb(var(--wht));
		transition: opacity 0.6s ease;
	}

	/* is-open */
	.is-open {
		overflow: hidden;
	}

	.is-open .gnav__list {
		z-index: 1000;
		transform: translateX(0);
	}
}

/*
	lang
------------------------------ */
.lang {
	height: 70px;
	line-height: 1;
	font-family: var(--gothic);
	position: fixed;
	top: 0;
	right: 1rem;
	z-index: 1001;
}

.lang__list {
	height: 100%;
	font-size: 18px;
	font-weight: bold;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.lang__item span,
.lang__item a {
	text-decoration: none;
}

.lang__item span {
	color: rgb(var(--wht));
}

.lang__item a {
	color: rgb(var(--gra));
}

.lang__item:not(:last-of-type)::after,
.lang__item:not(:last-of-type)::after {
	margin-right: 0.25em;
	color: rgb(var(--wht));
	content: "/";
}

@media screen and (max-width: 1100px) {
	.lang__list {
		font-size: 1.63636vw;
	}
}

@media screen and (max-width: 768px) {
	.lang {
		height: 40px;
	}

	.lang__list {
		font-size: 16px;
	}
}

/*
	toggle
------------------------------ */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		display: block;
		position: fixed;
		top: 0;
		left: 1rem;
		z-index: 1001;
	}

	.toggle__inner {
		width: 32px;
		height: 40px;
		position: relative;
		cursor: pointer;
	}

	.toggle__inner span {
		background: rgb(var(--gra));
		width: 100%;
		height: 5px;
		display: block;
		position: absolute;
		left: 0;
		transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
	}

	.toggle__inner span:nth-child(1) {
		top: 8px;
	}

	.toggle__inner span:nth-child(2) {
		top: 50%;
		transform: translatey(-50%);
	}

	.toggle__inner span:nth-child(3) {
		bottom: 8px;
	}

	/* is-open */
	.is-open .toggle__inner span {
		background: rgb(var(--wht));
		width: 45px;
		height: 1px;
		top: 70%;
	}

	.is-open .toggle__inner span:nth-child(1) {
		transform: rotate(30deg);
	}

	.is-open .toggle__inner span:nth-child(2) {
		width: 0;
	}

	.is-open .toggle__inner span:nth-child(3) {
		transform: rotate(-30deg);
	}

	.is-open .filter.overlay {
		background: rgba(0, 0, 0, 0.8);
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--wht));
	position: relative;
	z-index: 1;
}

.footer .container {
	max-width: 1000px;
}

/*
	official
------------------------------ */
.official {
	background: rgb(var(--blk));
	padding: 88px 0;
	color: rgb(var(--wht));
}

.official .official__title {
	margin-bottom: 1em;
	text-align: center;
}

.official .official__title img {
	max-width: 340px;
}

.official .official__title figcaption {
	margin-top: 2em;
	font-family: var(--gothic);
	font-size: 14px;
	font-weight: normal;
}

.official .official__link {
	margin-bottom: 0;
	font-size: 18px;
	text-align: center;
}

.official .official__link a {
	color: rgb(var(--wht));
}

.official .official__link a::after {
	content: ">";
}

@media screen and (max-width: 1000px) {
	.official {
		padding: 8.8vw 0;
	}

	.official .official__title figcaption {
		font-size: 1.4vw;
	}

	.official .official__link {
		font-size: 1.8vw;
	}
}

@media screen and (max-width: 768px) {
	.official {
		padding: 14.66667vw;
	}

	.official .official__title figcaption {
		font-size: 3.2vw;
	}

	.official .official__link {
		font-size: 4.26667vw;
	}
}

/*
	aboutIkepri
------------------------------ */
.aboutIkepri {
	margin-bottom: 100px;
	padding-top: 70px;
}

.aboutIkepri__title {
	margin-bottom: 35px;
}

@media screen and (max-width: 1000px) {
	.aboutIkepri {
		margin-bottom: 10vw;
		padding-top: 7vw;
	}

	.aboutIkepri__title {
		margin-bottom: 3.5vw;
	}
}

@media screen and (max-width: 768px) {
	.aboutIkepri {
		margin-bottom: 8.66667vw;
		padding-top: 17.86667vw;
	}

	.aboutIkepri__title {
		margin-bottom: 6.4vw;
	}
}

.aboutIkepri__ikepri25 {
	margin: 0 auto 45px;
	max-width: 840px;
	display: flex;
	align-items: center;
}

.aboutIkepri__ikepri25 .aboutIkepri__ikepri25--title {
	max-width: 111px;
}

.aboutIkepri__ikepri25 .aboutIkepri__ikepri25--content {
	margin-left: 1em;
	font-size: 20px;
}

@media screen and (max-width: 1000px) {
	.aboutIkepri__ikepri25 {
		margin: 0 auto 4.5vw;
	}

	.aboutIkepri__ikepri25 .aboutIkepri__ikepri25--title {
		max-width: 11.1vw;
	}

	.aboutIkepri__ikepri25 .aboutIkepri__ikepri25--content {
		font-size: 2vw;
	}
}

@media screen and (max-width: 768px) {
	.aboutIkepri__ikepri25 {
		margin-bottom: 6.4vw;
		margin-left: 0;
		display: flex;
		align-items: center;
	}

	.aboutIkepri__ikepri25 .aboutIkepri__ikepri25--title {
		max-width: 26%;
	}

	.aboutIkepri__ikepri25 .aboutIkepri__ikepri25--content {
		margin-left: 2em;
		width: calc(100% - 26% - 2em);
		font-size: 4.26667vw;
	}
}

.aboutIkepri__detail {
	margin: 0 auto 55px;
	max-width: 840px;
	position: relative;
}

.aboutIkepri__detail .greeting .greeting__content {
	margin-bottom: 1em;
	max-width: 482px;
	width: 53.5%;
	border: solid 1px rgb(var(--about));
	position: relative;
}

.aboutIkepri__detail .greeting .greeting__content::before,
.aboutIkepri__detail .greeting .greeting__content::after {
	position: absolute;
	content: "";
}

.aboutIkepri__detail .greeting .greeting__content::before {
	background: rgb(var(--wht));
	width: 1px;
	height: 30px;
	right: -1px;
	bottom: 10%;
}

.aboutIkepri__detail .greeting .greeting__content::after {
	background: rgb(var(--about));
	width: 1px;
	height: 30px;
	right: -1px;
	bottom: 10%;
	transform: rotate(-135deg);
	transform-origin: top left;
}

.aboutIkepri__detail .greeting .greeting__title {
	color: rgb(var(--about));
	font-size: 18px;
	display: inline-block;
	position: relative;
	top: -1em;
	left: -1px;
	z-index: 2;
}

.aboutIkepri__detail .greeting .greeting__title span {
	background: rgb(var(--wht));
	padding-right: 1em;
	display: inline-block;
}

.aboutIkepri__detail .greeting .greeting__title span.name {
	padding-bottom: 0.5em;
}

.aboutIkepri__detail .greeting .greeting__title small {
	background: rgb(var(--wht));
	font-size: 14px;
}

.aboutIkepri__detail .greeting .greeting__text {
	padding: 0 1.5em 1.5em;
}

@media screen and (max-width: 1000px) {
	.aboutIkepri__detail {
		margin: 0 auto 5.5vw;
	}

	.aboutIkepri__detail .greeting .greeting__content::before {
		height: 3vw;
	}

	.aboutIkepri__detail .greeting .greeting__content::after {
		height: 3vw;
	}

	.aboutIkepri__detail .greeting .greeting__title {
		font-size: 1.8vw;
	}

	.aboutIkepri__detail .greeting .greeting__title small {
		font-size: 1.4vw;
	}
}

@media screen and (max-width: 768px) {
	.aboutIkepri__detail {
		margin-bottom: 14.66667vw;
		margin-left: 0;
	}

	.aboutIkepri__detail .greeting .greeting__content {
		margin-bottom: 0;
		max-width: 100%;
		width: 100%;
	}

	.aboutIkepri__detail .greeting .greeting__content::before {
		width: 30px;
		height: 1px;
		right: auto;
		bottom: -1px;
		left: 40%;
	}

	.aboutIkepri__detail .greeting .greeting__content::after {
		right: auto;
		bottom: -1px;
		left: 40%;
		transform: rotate(135deg);
		transform-origin: bottom left;
	}

	.aboutIkepri__detail .greeting .greeting__title span {
		font-size: 4.26667vw;
	}

	.aboutIkepri__detail .greeting .greeting__title span.name {
		font-size: 4.8vw;
		display: block;
	}

	.aboutIkepri__detail .greeting .greeting__title small {
		font-size: 3.73333vw;
	}

	.aboutIkepri__detail .greeting .greeting__text {
		font-size: 4.26667vw;
	}
}

/* image */
.aboutIkepri__detail .greeting .greeting__image {
	width: 53%;
	position: absolute;
	right: -7%;
	bottom: 0;
}

@media screen and (max-width: 768px) {
	.aboutIkepri__detail .greeting .greeting__image {
		margin-left: auto;
		width: 60%;
		position: relative;
		top: -15vw;
		right: 0;
	}
}

/* twitter */
.aboutIkepri__detail .greeting .twitter {
	max-width: 482px;
	width: 53.5%;
}

@media screen and (max-width: 768px) {
	.aboutIkepri__detail .greeting .twitter {
		max-width: 100%;
		width: 100%;
		position: relative;
		top: -10vw;
		z-index: 1;
	}
}

/* accordion */
.aboutIkepri__accordion {
	margin: 0 3% 45px;
}

.aboutIkepri__accordion .switch {
	display: none;
}

.aboutIkepri__accordion .switch_name {
	background: #4982b0;
	padding: 0 1.5em;
	height: 62px;
	color: rgb(var(--wht));
	font-size: 18px;
	border-bottom: solid 5px #103770;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.aboutIkepri__accordion .switch_name::before {
	width: 8px;
	height: 8px;
	border-top: solid 2px rgb(var(--wht));
	border-right: solid 2px rgb(var(--wht));
	position: absolute;
	top: 50%;
	right: 26px;
	transform: translateY(-50%) rotate(135deg);
	z-index: 2;
	content: "";
}

.aboutIkepri__accordion .switch_name::after {
	background: #37538a;
	width: 62px;
	height: 57px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	content: "";
}

.aboutIkepri__accordion .switch_name,
.content {
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}

.aboutIkepri__accordion .content {
	padding: 0;
	height: 0;
	border-right: solid 1px #808080;
	border-left: solid 1px #808080;
	opacity: 0;
	overflow: hidden;
}

.aboutIkepri__accordion .content:last-of-type {
	border-bottom: solid 1px #808080;
}

.aboutIkepri__accordion .content ul {
	margin: 0;
	padding: 1.5em;
}

.aboutIkepri__accordion .switch:checked+.switch_name+.content {
	height: auto;
	opacity: 1;
}

.aboutIkepri__accordion .switch:checked+.switch_name::before {
	transform: rotate(-45deg) !important;
}

@media screen and (max-width: 1000px) {
	.aboutIkepri__accordion {
		margin: 0 3% 4.5vw;
	}

	.aboutIkepri__accordion .switch_name {
		height: 6.2vw;
	}

	.aboutIkepri__accordion .switch_name::before {
		width: 0.8vw;
		height: 0.8vw;
		border-top: solid 0.2vw rgb(var(--wht));
		border-right: solid 0.2vw rgb(var(--wht));
		right: 2.6vw;
	}

	.aboutIkepri__accordion .switch_name::after {
		width: 6.2vw;
		height: 5.7vw;
	}
}

@media screen and (max-width: 768px) {
	.aboutIkepri__accordion {
		margin: 0;
		position: relative;
		top: -10vw;
	}

	.aboutIkepri__accordion .switch_name {
		padding: 0 1em;
		line-height: 1.25;
		height: 14.66667vw;
		font-size: 4vw;
	}

	.aboutIkepri__accordion .switch_name::before {
		width: 2.13333vw;
		height: 2.13333vw;
		right: 6vw;
	}

	.aboutIkepri__accordion .switch_name::after {
		width: 14.66667vw;
		height: calc(14.66667vw - 5px);
	}

	.aboutIkepri__accordion .content {
		font-size: 3.46667vw;
	}
}

/*
	sns
------------------------------ */
.sns {
	background: #f2f2f2;
	padding: 60px 0;
}

.sns .sns__title {
	margin: 0 auto 40px;
	line-height: 1.5;
	font-size: 37px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.05em;
}

.sns .sns__title small,
.sns .sns__title .ja {
	line-height: 1;
	display: block;
}

.sns .sns__title small {
	font-size: 19px;
}

.sns .sns__title .ja {
	font-size: 25px;
}

.sns .sns__nav {
	margin: 0 auto;
	max-width: 360px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sns .sns__nav li {
	width: 59px;
}

.sns .sns__nav li.twitter {
	width: 52px;
}

.sns .sns__nav li a {
	display: block;
}

@media screen and (max-width: 1000px) {
	.sns {
		padding: 6vw 0;
	}

	.sns .sns__title small {
		font-size: 1.9vw;
	}

	.sns .sns__title .ja {
		font-size: 2.5vw;
	}

	.sns .sns__nav li {
		width: 5.9vw;
	}

	.sns .sns__nav li.twitter {
		width: 5.2vw;
	}
}

@media screen and (max-width: 768px) {
	.sns {
		padding: 10.66667vw 5.33333vw;
	}

	.sns .sns__title {
		margin: 0 auto 8vw;
		font-size: 8.53333vw;
	}

	.sns .sns__title small {
		font-size: 3.73333vw;
	}

	.sns .sns__title .ja {
		font-size: 5.33333vw;
	}

	.sns .sns__nav {
		justify-content: center;
	}

	.sns .sns__nav li {
		margin: 0 1em;
		width: 14.4vw;
	}

	.sns .sns__nav li.twitter {
		width: 12.53333vw;
	}
}

/*
	message
------------------------------ */
.message {
	padding: 50px 0;
	font-family: var(--gothic);
	text-align: center;
}

.message dt {
	font-size: 20px;
}

.message dt::before {
	content: "〈";
}

.message dt::after {
	content: "〉";
}

.message dt span {
	padding: 0 0.1em;
}

.message dd a {
	color: rgb(var(--blk));
}

@media screen and (max-width: 1000px) {
	.message {
		padding: 5vw 0;
	}

	.message dt {
		font-size: 2vw;
	}
}

@media screen and (max-width: 768px) {
	.message {
		padding: 10.66667vw 0;
	}

	.message dt {
		font-size: 4.26667vw;
	}

	.message dd {
		font-size: 3.73333vw;
	}
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	padding: 55px 0;
	line-height: 1;
	color: rgb(var(--blk));
	font-family: var(--gothic);
	display: flex;
	justify-content: center;
}

.footer__hotelNav::before {
	content: "｜";
}

.footer__hotelNav li {
	margin: 0;
	margin: 0;
	text-indent: 0;
	white-space: nowrap;
}

.footer__hotelNav li::before {
	content: "";
}

.footer__hotelNav li::after {
	content: "｜";
}

.footer__hotelNav li a {
	padding: 0 1em;
	color: rgb(var(--blk));
	text-decoration: none;
	display: inline-block;
}

@media screen and (max-width: 1000px) {
	.footer__hotelNav {
		padding: 5.5vw 0;
	}
}

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		padding: 7.46667vw 0 12.8vw;
		line-height: 3;
		font-size: 4.26667vw;
		text-align: center;
		display: block;
	}

	.footer__hotelNav::before {
		content: "";
	}

	.footer__hotelNav li::before {
		content: "｜";
	}

	.footer__hotelNav li a {
		padding: 0 0.5em;
	}
}

/*
	copy
------------------------------ */
.copy {
	background: url(../img/footer/bg_copy.webp) center top repeat-x;
	padding: 25px 0;
	color: rgba(var(--blk), 0.75);
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 1000px) {
	.copy {
		padding: 2.5vw 0;
		font-size: 1.2vw;
	}
}

@media screen and (max-width: 768px) {
	.copy {
		padding: 4.8vw 0;
		font-size: 2.66667vw;
		letter-spacing: -0.005em;
	}
}