body {
	font-family: "Noto Serif JP", serif;
}

body {
	font-weight: 500;
}

body {
	color: #3F3831;
}

.u-desktop {
	display: none;
}

.u-tablet {
	display: none;
}

.header {
	height: 54px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.header.active .header__inner {
	background-color: rgba(255, 255, 255, 0.8980392157);
}

.header__inner {
	height: 100%;
	background-color: #fff;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
	padding: clamp(3px, 0.2604166667vw, 5px) clamp(10px, 1.0416666667vw, 20px);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__inner__logo img {
	width: clamp(120px, 14.5833333333vw, 280px);
}

.header__inner nav {
	height: 100%;
	display: none;
}

.header__inner nav ul {
	display: flex;
	gap: clamp(10px, 1.875vw, 36px);
}

.header__inner nav ul li.drawer-item {
	position: relative;
}

.header__inner nav ul li a {
	font-size: clamp(13px, 0.9375vw, 18px);
	color: #3F3831;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 0.4166666667vw;
}

.header__inner nav ul li a .icon {
	position: relative;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	width: 1.0416666667vw;
	height: 1.0416666667vw;
}

.header__inner nav ul li a .icon span:first-of-type {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 1.0416666667vw;
	height: 0.15625vw;
	background-color: #43AA81;
}

.header__inner nav ul li a .icon span:last-of-type {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	left: 0;
	width: 1.0416666667vw;
	height: 0.15625vw;
	background-color: #43AA81;
	transition: transform 0.3s;
}

.header__inner nav ul li a#drawer-open {
	cursor: pointer;
	position: relative;
}

.header__inner nav ul li a#drawer-open.active .icon span:last-of-type {
	transform: translateY(-50%) rotate(0);
}

.header__inner nav .drawer {
	display: none;
	position: absolute;
	bottom: -4.25rem;
	left: 0;
	width: 41.0625rem;
	border-radius: 10px;
	z-index: 100;
	transform: translateY(100%);
}

.header__inner nav .drawer__close {
	position: absolute;
	top: 0.9375rem;
	right: 0.9375rem;
	cursor: pointer;
	width: 0.875rem;
	height: 0.875rem;
}

.header__inner nav .drawer__close img {
	width: 100%;
	height: 100%;
}

.header__inner nav .drawer__title {
	font-size: 1.375rem;
	font-weight: 700;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	padding: 3rem 1.6875rem;
	background: linear-gradient(116.7deg, #57B7A9 39.38%, #B6DA9C 130.41%);
	border-radius: 10px 0 0 10px;
	flex: 1;
}

.header__inner nav .drawer__area {
	flex: 1;
	background-color: #fff;
	padding: 2.3125rem 0;
}

.header__inner nav .drawer__area ul {
	flex-direction: column;
	gap: 0;
}

.header__inner nav .drawer__area ul li {
	font-size: 0.9375rem;
	font-weight: 500;
	color: #56B6A8;
	font-family: "Noto Sans JP", sans-serif;
	padding: 0.9375rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	cursor: pointer;
}

.header__inner nav .drawer__area ul li .arrow {
	width: 0.375rem;
	height: 0.5625rem;
	position: relative;
	right: 1.875rem;
}

.header__inner nav .drawer__area ul li .arrow img {
	width: 100%;
	height: 100%;
}

.header__inner nav .drawer__area ul li.active {
	background-color: #EEFFF6;
}

.header__inner nav .drawer__pref {
	flex: 1;
	background-color: #EEFFF6;
	border-radius: 0 10px 10px 0;
}

.header__inner nav .drawer__pref ul {
	display: none;
	padding: 2.75rem 1.875rem 2.3125rem;
}

.header__inner nav .drawer__pref ul.active {
	display: block;
}

.header__inner nav .drawer__pref ul li a {
	font-size: 0.875rem;
	font-weight: 500;
	color: #3F3831;
	font-family: "Noto Sans JP", sans-serif;
	padding: 0.5rem 0;
	display: block;
}

.header__inner nav .drawer.active {
	display: flex;
}

.header__inner__humberger {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5208333333vw;
	cursor: pointer;
}

.header__inner__humberger__line {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	height: clamp(16px, 2.7297543221vw, 30px);
	width: clamp(32px, 4.5495905369vw, 50px);
}

.header__inner__humberger__line span {
	width: clamp(28px, 4.5495905369vw, 50px);
	height: 3px;
	display: block;
	border-radius: 3px;
	background-color: #43AA81;
	transition: transform 0.3s;
}

.header__inner__humberger p {
	font-size: clamp(10px, 1.4558689718vw, 16px);
	color: #43AA81;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
}

.header__inner__humberger.active .header__inner__humberger__line span {
	position: absolute;
}

.header__inner__humberger.active .header__inner__humberger__line span:first-of-type {
	transform: translateY(-50%) rotate(-45deg);
}

.header__inner__humberger.active .header__inner__humberger__line span:last-of-type {
	transform: translateY(-50%) rotate(45deg);
}

.header__inner__humberger.active p {
	display: none;
}

.header__nav__btns {
	display: flex;
	gap: 1.0416666667vw;
}

.worries__top {
	position: relative;
	z-index: 1;
}

.worries__top__contact {
	padding: 18px 9px 24px;
	background-color: #F4F2DF;
	border-radius: 15px 15px 0 0;
	margin: clamp(-150px, -29.3333333333vw, -80px) auto 0;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
	z-index: 2;
}

.worries__top__contact__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.worries__top__contact__inner h3 {
	font-size: clamp(15px, 4.5333333333vw, 26px);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #3F3831;
	margin-bottom: clamp(12px, 4.2666666667vw, 20px);
	text-align: center;
}

.worries__top__contact__inner p {
	font-size: clamp(10px, 3.2vw, 16px);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.05em;
	margin-bottom: clamp(10px, 6.6666666667vw, 30px);
}

.worries__top__contact__btns {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
	max-width: unset;
	width: 100%;
}

.worries__top__contact__btns a {
	width: calc(50% - 8px);
	padding: clamp(10px, 3.7333333333vw, 16px) clamp(10px, 4vw, 18px);
	border-radius: 100px;
	font-size: clamp(16px, 4.8vw, 24px);
	gap: 5px;
}

.worries__top__contact__btns a > span {
	display: flex;
}

.worries__top__contact__btns a span {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
}

.worries__top__contact__btns a img {
	width: clamp(16px, 4.8vw, 24px);
}

.worries__top__contact__tel {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background: #fff;
	padding: 13px 14px 16px;
	border-radius: 10px;
	gap: clamp(10px, 3.2vw, 20px);
	width: 100%;
}

.worries__top__contact__tel p {
	font-size: clamp(10px, 3.2vw, 16px);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #3F3831;
	margin-bottom: 0;
}

.worries__top__contact__tel a {
	font-size: clamp(18px, 6.5333333333vw, 32px);
	gap: 4px;
	line-height: 1;
	color: #3F3831;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}

.worries__top__contact__tel a img {
	width: clamp(32px, 11.2vw, 50px);
}

.worries__top__contact__tel a:hover {
	opacity: 0.8;
}

.worries__top__contact__tel span {
	font-size: clamp(10px, 3.2vw, 16px);
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #3F3831;
}

.worries__top__contact.mtnone {
	margin-top: 0;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

.footer {
	position: relative;
}

.footer__inner {
	max-width: 1456px;
	margin: 0 auto;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(10px, 3.4375vw, 66px);
	width: 100%;
}

.footer__inner__left {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
}

.footer__inner__left__nav ul {
	display: flex;
	flex-direction: column;
}

.footer__inner__left__nav ul li.btnone a {
	padding-top: 0;
}

.footer__inner__left__nav ul li.area__item {
	margin-bottom: 1.5rem;
}

.footer__inner__left__nav ul li.area__item .area__item__inner {
	font-size: clamp(10px, 1.0625rem, 18px);
	font-weight: 600;
	color: #57B7A9;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
	background-color: #DCF4EA;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: clamp(10px, 1.125rem, 24px) clamp(10px, 0.875rem, 20px);
}

.footer__inner__left__nav ul li.area__item .area__item__inner .icon {
	position: relative;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	width: 5.1282051282vw;
	height: 5.1282051282vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__inner__left__nav ul li.area__item .area__item__inner .icon span:first-of-type {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: clamp(10px, 3.3333333333vw, 20px);
	height: clamp(3px, 0.7692307692vw, 5px);
	background-color: #216C5A;
}

.footer__inner__left__nav ul li.area__item .area__item__inner .icon span:last-of-type {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	left: 0;
	width: clamp(10px, 3.3333333333vw, 20px);
	height: clamp(3px, 0.7692307692vw, 5px);
	background-color: #216C5A;
	transition: transform 0.3s;
}

.footer__inner__left__nav ul li.area__item .area__item__list {
	max-height: 0;
	overflow-y: hidden;
	width: 100%;
	transition: max-height 0.5s;
}

.footer__inner__left__nav ul li.area__item .area__item__list__item {
	background-color: #fff;
	padding: clamp(10px, 1.125rem, 24px) clamp(10px, 1.375rem, 30px);
	color: #56B6A8;
	font-size: clamp(12px, 3.8461538462vw, 16px);
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
	border-bottom: 1px solid #DCF4EA;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__inner__left__nav ul li.area__item .area__item__list__item .arrow {
	width: 1.7948717949vw;
	height: 3.0769230769vw;
	position: relative;
	right: 0;
	display: block;
	transform: rotate(90deg);
	transition: transform 0.3s;
}

.footer__inner__left__nav ul li.area__item .area__item__list__item .arrow img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer__inner__left__nav ul li.area__item .area__list__sp {
	padding: 0 clamp(10px, 0.625rem, 20px);
	background-color: #fff;
	max-height: 0;
	transition: max-height 0.5s;
	overflow-x: hidden;
}

.footer__inner__left__nav ul li.area__item .area__list__sp li a {
	background-color: #C8E9DB;
	padding: clamp(10px, 1.125rem, 24px) clamp(10px, 0.9375rem, 20px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #3F3831;
	font-size: clamp(12px, 3.5897435897vw, 16px);
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	border-bottom: 1px solid #fff;
	transition: background-color 0.3s;
}

.footer__inner__left__nav ul li.area__item .area__list__sp li a .arrow {
	transform: unset;
}

.footer__inner__left__nav ul li.area__item .area__list__sp.active {
	max-height: 1000px;
}

.footer__inner__left__nav ul li.area__item.active .area__item__list {
	max-height: 1000px;
}

.footer__inner__left__nav ul li.area__item.active .icon span:last-of-type {
	transform: translateY(-50%) rotate(0deg);
}

.footer__inner__left__nav ul li.area__item .area__item__list__item.active .arrow {
	transform: rotate(-90deg);
}

.footer__inner__left__nav ul li a {
	display: block;
	padding: 1.1875rem 0;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-size: clamp(10px, 4.358974359vw, 17px);
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
}

.footer__inner__left__nav__top {
	display: flex;
	gap: clamp(10px, 3.8461538462vw, 15px);
	justify-content: space-between;
	width: 100%;
	margin-bottom: 1.5rem;
}

.footer__inner__left__nav__top li a.w139,
.footer__inner__left__nav__top li a.w183 {
	font-size: clamp(10px, 1.0625rem, 18px);
	font-weight: 600;
	color: #57B7A9;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
	background-color: #DCF4EA;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.125rem 0.875rem;
}

.footer__inner__left__nav__top li a.w139 {
	width: 35.641025641vw;
}

.footer__inner__left__nav__top li a.w183 {
	width: 46.9230769231vw;
}

.footer__inner__left__nav__top li a img {
	width: 1.7948717949vw;
}

.footer__inner__left__logo a {
	display: block;
	width: fit-content;
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
}

.footer__inner__left__logo img {
	width: 40vw;
}

.footer__inner__left__content {
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 1.5625vw, 30px);
	font-family: "Noto Sans JP", sans-serif;
}

.footer__inner__left__content .address {
	font-size: 3.8461538462vw;
	color: #fff;
	display: block;
}

.footer__inner__left__content .reservation {
	font-size: 3.8461538462vw;
	font-weight: 500;
	color: #fff;
	display: block;
	line-height: 1.5;
}

.footer__inner__left .footer__btn {
	margin-top: 2.5rem;
	width: 20.1875rem;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border: 1px solid #fff;
	font-size: 1.0416666667vw;
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
	padding: 0.75rem 1.25rem;
	border-radius: 50px;
	text-decoration: none;
	text-align: center;
	display: none;
	transition: all 0.3s;
}

.footer__inner__right {
	display: none;
}

.footer__inner__right__nav {
	width: clamp(130px, 13.5416666667vw, 260px);
}

.footer__inner__right__nav ul {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.footer__inner__right__nav ul li {
	width: 100%;
}

.footer__inner__right__nav ul li a {
	font-size: clamp(10px, 0.9895833333vw, 19px);
	font-weight: 600;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
	padding: 1.375rem 0;
	border-bottom: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.footer__inner__right__nav ul li a .arrow {
	width: clamp(10px, 0.9895833333vw, 19px);
	height: clamp(10px, 0.9895833333vw, 19px);
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__inner__right__nav ul li a .arrow img {
	width: clamp(10px, 0.2083333333vw, 4px);
	height: clamp(10px, 0.3645833333vw, 7px);
	object-fit: cover;
}

.footer__inner__right__nav ul li:first-of-type a {
	border-top: 1px solid #fff;
}

.footer__inner__right__area {
	display: none;
}

.footer__inner__right__area__title {
	font-size: clamp(10px, 1.0416666667vw, 20px);
	font-weight: 600;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	margin-bottom: 1.25rem;
	line-height: 1;
	margin-bottom: 1.875rem;
}

.footer__inner__right__area .area {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(10px, 1.5625vw, 30px);
	margin-bottom: clamp(10px, 1.1458333333vw, 22px);
}

.footer__inner__right__area .area:last-of-type {
	margin-bottom: 0;
}

.footer__inner__right__area .area span {
	font-size: clamp(10px, 0.7291666667vw, 14px);
	font-weight: 600;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1;
	background-color: #43A092;
	padding: 0.25rem;
	display: block;
	width: clamp(100px, 6.09375vw, 117px);
	text-align: center;
}

.footer__inner__right__area .area ul {
	display: flex;
	gap: clamp(10px, 1.25vw, 24px);
}

.footer__inner__right__area .area ul li a {
	font-size: clamp(10px, 0.78125vw, 15px);
	font-weight: 500;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
}

.footer__top {
	background: linear-gradient(97.06deg, #56B6A8 -2.5%, #78C4B8 66.18%, #FBF4D2 161.28%);
	padding: 2rem 0;
}

.footer__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	background: linear-gradient(97.06deg, #56B6A8 -2.5%, #78C4B8 66.18%, #FBF4D2 161.28%);
}

.footer__bottom__flex {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.footer__bottom__flex__item {
	font-size: 3.3333333333vw;
	font-weight: 500;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
	display: none;
}

.footer__bottom__flex__item.copyright {
	font-size: 3.0769230769vw;
	display: block;
	padding-bottom: 0.625rem;
}

html {
	overflow-x: hidden;
}

.btn {
	display: flex;
	gap: clamp(3px, 0.3125vw, 6px);
	align-items: center;
	justify-content: center;
	border-radius: 35px;
	padding: clamp(8px, 0.8333333333vw, 16px) clamp(10px, 1.0416666667vw, 20px);
	font-size: clamp(14px, 1.0416666667vw, 20px);
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	transition: all 0.3s;
}

.btn.orange {
	background: #FF9A26;
	border: 1px solid #FF9A26;
}

.btn.orange .icon__mail {
	background-image: url(../../assets/images/common/mail_icon.svg);
	width: clamp(16px, 1.1979166667vw, 23px);
	height: clamp(16px, 1.1979166667vw, 23px);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all 0.3s;
}

.btn.orange .icon__mail.big {
	width: clamp(24px, 1.71875vw, 33px);
	height: clamp(24px, 1.71875vw, 33px);
}

.btn.line {
	background: #06C755;
	border: 1px solid #06C755;
}

.btn.line .icon__line {
	background-image: url(../../assets/images/common/line_logo.svg);
	width: clamp(16px, 1.1979166667vw, 23px);
	height: clamp(16px, 1.1979166667vw, 23px);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all 0.3s;
}

.btn.line .icon__line.big {
	width: clamp(24px, 1.71875vw, 33px);
	height: clamp(24px, 1.71875vw, 33px);
}

.btn.tel {
	background-color: #F4F2DF;
	color: #3F3F3F;
}

.btn.tel .icon__tel {
	background-image: url(../../assets/images/common/tel_icon.svg);
	width: clamp(16px, 1.1979166667vw, 23px);
	height: clamp(16px, 1.1979166667vw, 23px);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.btn.tel .icon__tel.big {
	width: clamp(24px, 1.71875vw, 33px);
	height: clamp(24px, 1.71875vw, 33px);
}

.btn_transparent {
	background: transparent;
	border: 1px solid #216C5A;
	color: #216C5A;
	font-size: clamp(14px, 4.358974359vw, 18px);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	padding: clamp(8px, 4.1025641026vw, 16px);
	border-radius: 50px;
	width: clamp(180px, 61.5384615385vw, 240px);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(20px, 1.25rem, 30px);
	transition: all 0.3s;
}

.btn_transparent .btn__arrow {
	display: block;
	width: clamp(9px, 0.5625rem, 12px);
	height: clamp(15px, 0.9375rem, 18px);
	background-image: url(../../assets/images/common/button_arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.sec__title {
	position: relative;
	width: fit-content;
	margin: 0 auto clamp(16px, 1.25rem, 32px);
}

.sec__title .en {
	font-size: clamp(20px, 1.875rem, 50px);
	font-family: "Allura", cursive;
	font-weight: 400;
	transform: rotate(-10deg) translate(-40%, -85%);
	background: linear-gradient(273.06deg, #43AA81 39.27%, #B6DA9C 125.5%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: fit-content;
	position: absolute;
	line-height: 1;
	top: 0;
}

.sec__title .ja {
	font-size: clamp(18px, 1.5625rem, 40px);
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	color: #3F3831;
	text-align: center;
}

.header__inner__drawer__sp {
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 5;
	background: linear-gradient(275.71deg, #56B6A8 -0.36%, #78C4B8 64.11%, #FBF4D2 153.37%);
	overflow-y: scroll;
	height: 100vh;
	width: 100%;
	transition: right 0.3s;
}

.header__inner__drawer__sp.active {
	right: 0;
}

.header__inner__drawer__sp__inner {
	width: 100%;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
	padding: clamp(3px, 0.2604166667vw, 5px) clamp(10px, 1.0416666667vw, 20px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0 auto;
	padding-top: calc(54px + 2.0625rem);
	height: 100%;
}

.header__inner__drawer__sp__inner__top {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 1.5rem;
}

.header__inner__drawer__sp__inner__top ul {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.header__inner__drawer__sp__inner__top ul li {
	width: 100%;
}

.header__inner__drawer__sp__inner__top ul li.btnone a {
	padding-top: 0;
}

.header__inner__drawer__sp__inner__top ul li a {
	display: block;
	padding: clamp(10px, 1.1875rem, 24px) 0;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-size: clamp(12px, 4.358974359vw, 18px);
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
}

.header__inner__drawer__sp__inner__top ul li:last-of-type a {
	border-bottom: none;
}

.header__inner__drawer__sp__inner__top ul li.area__item {
	margin-bottom: 1.5rem;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__inner {
	font-size: clamp(10px, 1.0625rem, 18px);
	font-weight: 600;
	color: #57B7A9;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
	background-color: #DCF4EA;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: clamp(10px, 1.125rem, 24px) clamp(10px, 0.875rem, 20px);
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__inner .icon {
	position: relative;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	width: 5.1282051282vw;
	height: 5.1282051282vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__inner .icon span:first-of-type {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: clamp(10px, 3.3333333333vw, 20px);
	height: clamp(3px, 0.7692307692vw, 5px);
	background-color: #216C5A;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__inner .icon span:last-of-type {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	left: 0;
	width: clamp(10px, 3.3333333333vw, 20px);
	height: clamp(3px, 0.7692307692vw, 5px);
	background-color: #216C5A;
	transition: transform 0.3s;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__list {
	max-height: 0;
	overflow-y: hidden;
	width: 100%;
	transition: max-height 0.5s;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__list__item {
	background-color: #fff;
	padding: clamp(10px, 1.125rem, 24px) clamp(10px, 1.375rem, 30px);
	color: #56B6A8;
	font-size: clamp(12px, 3.8461538462vw, 16px);
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
	border-bottom: 1px solid #DCF4EA;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__list__item .arrow {
	width: 1.7948717949vw;
	height: 3.0769230769vw;
	position: relative;
	right: 0;
	display: block;
	transform: rotate(90deg);
	transition: transform 0.3s;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__list__item .arrow img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__list__sp {
	padding: 0 clamp(10px, 0.625rem, 20px);
	background-color: #fff;
	max-height: 0;
	transition: max-height 0.5s;
	overflow-x: hidden;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__list__sp li a {
	background-color: #C8E9DB;
	padding: clamp(10px, 1.125rem, 24px) clamp(10px, 0.9375rem, 20px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #3F3831;
	font-size: clamp(12px, 3.5897435897vw, 16px);
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	border-bottom: 1px solid #fff;
	transition: background-color 0.3s;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__list__sp li a .arrow {
	transform: unset;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__list__sp.active {
	max-height: 1000px;
}

.header__inner__drawer__sp__inner__top ul li.area__item.active .area__item__list {
	max-height: 1000px;
}

.header__inner__drawer__sp__inner__top ul li.area__item.active .icon span:last-of-type {
	transform: translateY(-50%) rotate(0deg);
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__list__item.active .arrow {
	transform: rotate(-90deg);
}

.header__inner__drawer__sp__inner__top .top {
	display: flex;
	gap: 3.8461538462vw;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 1.125rem;
}

.header__inner__drawer__sp__inner__top .top li a.w139,
.header__inner__drawer__sp__inner__top .top li a.w183 {
	font-size: clamp(10px, 1.0625rem, 18px);
	font-weight: 600;
	color: #57B7A9;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
	background-color: #DCF4EA;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: clamp(10px, 1.125rem, 24px) clamp(10px, 0.875rem, 20px);
}

.header__inner__drawer__sp__inner__top .top li a.w139 {
	width: 37.1794871795vw;
}

.header__inner__drawer__sp__inner__top .top li a.w183 {
	width: 47.4358974359vw;
}

.header__inner__drawer__sp__inner__top .top li a img {
	width: 1.7948717949vw;
}

.fixed__banner {
	background-color: #fff;
	padding: 0.9375rem;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s;
}

.fixed__banner.active {
	opacity: 1;
	pointer-events: auto;
}

.fixed__banner__title {
	font-size: 1.1875rem;
	font-weight: 600;
	line-height: 1;
	color: #216C5A;
	font-family: "Noto Serif JP", serif;
	margin-bottom: 0.4375rem;
	text-align: center;
}

.fixed__banner__title__accent {
	color: #FF9A26;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-size: inherit;
}

.fixed__banner__btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
}

.fixed__banner__btns .btn {
	width: calc((100% - 1.25rem) / 3);
	border-radius: 10px;
	padding: 0.5625rem 0.3125rem;
	flex-direction: column;
	font-size: clamp(14px, 4.5333333333vw, 17px);
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	max-width: 100%;
	display: block;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

@media (hover: hover) {

.btn.orange:hover {
	background: #fff;
	color: #FF9A26;
}

.btn.orange:hover .icon__mail {
	background-image: url(../../assets/images/common/mail_orange.svg);
}

.btn.line:hover {
	background: #fff;
	color: #06C755;
}

.btn.line:hover .icon__line {
	background-image: url(../../assets/images/common/line_icon_hover.svg);
}

.btn_transparent:hover {
	background: #216C5A;
	color: #fff;
}

.btn_transparent:hover .btn__arrow {
	background-image: url(../../assets/images/common/arrow_white.svg);
}

}

@media screen and (min-width: 768px) {

.u-mobile {
	display: none;
}

.u-tablet {
	display: block;
}

.header {
	height: 70px;
}

.worries__top__contact {
	padding: 32px 36px 40px;
	margin: clamp(-150px, -5.7291666667vw, -80px) auto 0;
}

.footer__inner__left {
	width: auto;
}

.footer__inner__left__nav {
	display: none;
}

.footer__inner__left__nav ul li.area__item .area__item__inner .icon {
	width: clamp(20px, 2.6041666667vw, 20px);
	height: clamp(20px, 2.6041666667vw, 20px);
}

.footer__inner__left__nav ul li.area__item .area__item__list__item .arrow {
	width: clamp(7px, 0.9114583333vw, 12px);
	height: clamp(12px, 1.5625vw, 12px);
}

.footer__inner__left__logo a {
	margin-bottom: clamp(20px, 3.125vw, 36px);
}

.footer__inner__left__logo img {
	width: 31.25vw;
}

.footer__inner__left__content .address {
	font-size: clamp(10px, 2.0833333333vw, 18px);
	margin-bottom: clamp(10px, 1.953125vw, 30px);
	font-weight: 600;
}

.footer__inner__left__content .reservation {
	font-size: clamp(10px, 1.8229166667vw, 16px);
}

.footer__inner__left .footer__btn {
	margin-top: clamp(20px, 3.90625vw, 40px);
	width: 33.8541666667vw;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border: 1px solid #fff;
	font-size: 2.34375vw;
	padding: 1.5625vw 2.6041666667vw;
	display: block;
}

.footer__inner__right {
	display: flex;
	gap: 3.125rem;
}

.footer__inner__right__nav {
	width: clamp(130px, 33.8541666667vw, 300px);
}

.footer__inner__right__nav ul li a {
	font-size: clamp(10px, 2.34375vw, 20px);
	padding: clamp(10px, 2.8645833333vw, 22px) 0;
}

.footer__inner__right__nav ul li a .arrow {
	width: clamp(10px, 3.125vw, 24px);
	height: clamp(10px, 3.125vw, 24px);
}

.footer__inner__right__nav ul li a .arrow img {
	width: clamp(10px, 0.5208333333vw, 6px);
	height: clamp(10px, 0.9114583333vw, 10px);
	object-fit: contain;
}

.footer__top {
	padding: clamp(100px, 9.1145833333vw, 70px) 0 clamp(100px, 7.8125vw, 60px);
}

.footer__bottom::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #D0F2ED;
	mix-blend-mode: multiply;
	z-index: -1;
}

.footer__bottom {
	padding: clamp(10px, 2.6041666667vw, 26px);
}

.footer__bottom__flex {
	justify-content: space-between;
}

.footer__bottom__flex__item {
	font-size: clamp(10px, 1.6927083333vw, 13px);
	display: block;
}

.footer__bottom__flex__item.copyright {
	font-size: clamp(10px, 1.5625vw, 12px);
	padding-bottom: 0;
}

.btn_transparent {
	background: transparent;
	border: 1px solid #216C5A;
	color: #216C5A;
	font-size: clamp(14px, 2.34375vw, 22px);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	padding: clamp(8px, 2.0833333333vw, 16px) clamp(10px, 2.6041666667vw, 20px);
	border-radius: 50px;
	width: clamp(180px, 38.5416666667vw, 296px);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
}

.btn_transparent .btn__arrow {
	width: clamp(12px, 1.5625vw, 12px);
	height: clamp(18px, 2.34375vw, 18px);
}

.sec__title {
	margin: 0 auto 3.125rem;
}

.sec__title .en {
	transform: rotate(-10deg) translate(-40%, -85%);
	font-size: clamp(32px, 2.5rem, 50px);
}

.sec__title .ja {
	font-size: clamp(32px, 3.125rem, 48px);
}

.header__inner__drawer__sp__inner {
	padding: clamp(3px, 0.2604166667vw, 5px) clamp(10px, 2.6041666667vw, 20px);
	padding-top: calc(70px + 2.0625rem);
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__inner .icon {
	width: clamp(20px, 2.6041666667vw, 20px);
	height: clamp(20px, 2.6041666667vw, 20px);
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__list__item .arrow {
	width: clamp(7px, 0.9114583333vw, 12px);
	height: clamp(12px, 1.5625vw, 12px);
}

.header__inner__drawer__sp__inner__top .top li a img {
	width: clamp(10px, 0.9114583333vw, 12px);
}

.fixed__banner {
	display: none;
}

html {
	font-size: 1.1428571429vw;
}

}

@media screen and (min-width: 1100px) {

.u-desktop {
	display: block;
}

.u-tablet {
	display: none;
}

.header {
	top: clamp(16px, 2.8645833333vw, 55px);
	right: clamp(16px, 3.6979166667vw, 71px);
	z-index: 100;
	height: 5.2083333333vw;
	width: fit-content;
	position: absolute;
	margin-left: auto;
}

.header__inner {
	width: clamp(835px, 65.1041666667vw, 1250px);
	border-radius: 100px;
	margin-left: auto;
	justify-content: center;
}

.header__inner__logo {
	display: none;
}

.header__inner nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(20px, 2.0833333333vw, 40px);
}

.header__inner__humberger {
	display: none;
}

.worries__top__contact {
	width: 79.875rem;
	padding: 4rem 6.25rem;
	background-color: #fff;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
	border-radius: 20px;
	position: absolute;
	top: clamp(-165px, -5.7291666667vw, -110px);
	left: 50%;
	transform: translateX(-50%);
}

.worries__top__contact__inner h3 {
	font-size: 2.125rem;
	margin-bottom: 1rem;
	line-height: 1;
	text-align: left;
}

.worries__top__contact__inner p {
	font-size: 1.125rem;
	margin-bottom: 2.25rem;
}

.worries__top__contact__btns {
	gap: 1rem;
	margin-bottom: 1.5625rem;
}

.worries__top__contact__btns a {
	width: calc(50% - 0.5rem);
	padding: 1.125rem 1.5rem;
	border-radius: 100px;
	font-size: 1.875rem;
	gap: 1rem;
}

.worries__top__contact__btns a img {
	width: 2.1875rem;
}

.worries__top__contact__tel {
	padding: 1.125rem 1.5rem;
	border-radius: 10px;
	gap: 2.5rem;
	background: #F9F8F0;
}

.worries__top__contact__tel p {
	line-height: 1;
	font-size: 1.125rem;
	margin-bottom: 0;
}

.worries__top__contact__tel a {
	font-size: 3rem;
	gap: 0.9375rem;
}

.worries__top__contact__tel a img {
	width: 4.5625rem;
}

.worries__top__contact__tel span {
	font-size: 1rem;
}

.footer__inner__left__nav ul {
	gap: 0.625rem;
}

.footer__inner__left__nav ul li.area__item .area__item__inner .icon {
	width: 1.0416666667vw;
	height: 1.0416666667vw;
}

.footer__inner__left__nav ul li.area__item .area__item__list__item .arrow {
	width: 0.3645833333vw;
	height: 0.625vw;
}

.footer__inner__left__logo a {
	margin-bottom: 2rem;
	margin-top: 0;
}

.footer__inner__left__logo img {
	width: clamp(100px, 15.9375vw, 306px);
}

.footer__inner__left__content .address {
	font-size: clamp(10px, 0.9375vw, 18px);
	margin-bottom: 1.875rem;
}

.footer__inner__left__content .reservation {
	font-size: clamp(10px, 0.8333333333vw, 16px);
}

.footer__inner__left .footer__btn {
	margin-top: 2.5rem;
	width: 20.1875rem;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border: 1px solid #fff;
	font-size: clamp(10px, 1.0416666667vw, 20px);
	padding: 0.75rem 1.25rem;
}

.footer__inner__right__nav {
	width: 13.5416666667vw;
}

.footer__inner__right__nav ul li a {
	font-size: clamp(10px, 0.9895833333vw, 19px);
	padding: 1.375rem 0;
}

.footer__inner__right__nav ul li a .arrow {
	width: clamp(10px, 0.9895833333vw, 19px);
	height: clamp(10px, 0.9895833333vw, 19px);
}

.footer__inner__right__nav ul li a .arrow img {
	width: clamp(10px, 0.2083333333vw, 4px);
	height: clamp(10px, 0.3645833333vw, 7px);
}

.footer__inner__right__area {
	display: block;
	padding: 1.75rem 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.footer__inner__right__area {
	padding: 1.75rem 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.footer__top {
	padding: 8.75rem 0 7.5rem;
}

.footer__bottom {
	padding: 1.625rem;
}

.footer__bottom__flex__item {
	font-size: 0.6770833333vw;
}

.footer__bottom__flex__item.copyright {
	font-size: 0.625vw;
}

.btn_transparent {
	background: transparent;
	border: 1px solid #216C5A;
	color: #216C5A;
	font-size: clamp(16px, 1.1458333333vw, 24px);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	padding: clamp(8px, 0.8333333333vw, 16px) clamp(10px, 1.0416666667vw, 20px);
	border-radius: 50px;
	width: calc(18.5rem - clamp(10px, 1.0416666667vw, 20px));
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
}

.btn_transparent .btn__arrow {
	width: 0.5625rem;
	height: 0.9375rem;
}

.sec__title {
	margin: 0 auto 3.125rem;
}

.sec__title .en {
	transform: rotate(-10deg) translate(-40%, -85%);
	font-size: clamp(40px, 5rem, 80px);
}

.sec__title .ja {
	font-size: clamp(32px, 3.625rem, 58px);
}

.header__inner__drawer__sp__inner {
	padding-top: calc(55px + 2.0625rem);
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__inner .icon {
	width: 1.0416666667vw;
	height: 1.0416666667vw;
}

.header__inner__drawer__sp__inner__top ul li.area__item .area__item__list__item .arrow {
	width: 0.3645833333vw;
	height: 0.625vw;
}

.header__inner__drawer__sp__inner__top .top li a img {
	width: 0.5208333333vw;
}

}

@media screen and (min-width: 1100px) and (hover: hover) {

.footer__inner__left .footer__btn:hover {
	background: #fff;
	color: #57B7A9;
}

}

@media (min-width: 1400px) {

html {
	font-size: 16px;
}

}

@media (max-width: 1000px) {

html {
	font-size: 4.2666666667vw;
}

}


/*# sourceMappingURL=common.css.map */
