@charset "UTF-8";

.header, .hero, .footer {
	background: var(--blue);
	color: #FFF;
}
.header a, .hero a, .footer a {
	color: #FFF;
}
.inner {
	position: relative;
	padding: 0 7.5%;
}


/* HEADER */
.header {
	padding-bottom: 30px;
}
.header.-flex {
	align-items: start;
}
.header__logo.-flex {
	align-items: end;
}
.header__logo-img {
	padding: 15px;
	margin-right: 20px;
	background: #FFF;
	border-radius: 0 0 5px;
}
.header__logo-img img {
	height: 60px;
	width: auto;
	margin-top: 10px;
}
.header__logo h1 {
	margin-bottom: 15px;
}
.header__logo h1 svg {
	height: 60px;
	width: auto;
}
.header__nav {
	padding: 25px 25px 0;
}
.globalnav {
	font-size: clamp(13px, 1.3vw, 14px);
	font-weight: bold;
	line-height: 1;
}
.globalnav li {
	margin-bottom: 7px;
}
.globalnav li:last-child {
	margin-bottom: 0;
}
.globalnav li a {
	position: relative;
}
.globalnav li a::before {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #FFF;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.globalnav li a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.header__join {
	width: 100px;
	margin-left: 20px;
}
.header__join .lnkbtn {
	display: block;
	width: 100%;
	height: 45px;
	border-radius: 2px;
	font-size: clamp(13px, 1.2vw, 15px);
	font-weight: bold;
	letter-spacing: 0;
}
.header__join-reserve.lnkbtn {
	border-color: #FFF;
}
.header__join-line.lnkbtn {
	margin-top: 7px;
	border-color: var(--line);
	background: var(--line);
}
.header__join-reserve a {
	color: #FFF;
}
.header__join-line a {
	color: #FFF;
}
.header__join-reserve .icon {
	display: inline-block;
	margin-right: 5px;
}
.header__join-reserve .icon svg {
	height: 15px;
	width: auto;
}
.header__join-line.lnkbtn svg {
	height: 30px;
	width: auto;
}
.header__join-reserve a::before {
	background: #FFF;
}
.header__join-line a::before {
	background: #FFF;
}
.header__join-reserve a:hover {
	color: var(--blue);
}
.header__join-line a:hover {
	color: var(--line);
}


/* HEADER (fixed) */
.header--fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 500;
	background: var(--blue);
	color: #FFF;
	transform: translateY(-100%);
	transition: transform .5s cubic-bezier(.25,1,.5,1);
}
.header--fixed a {
	color: #FFF;
}
.header--fixed.is-visible {
	transform: translateY(0);
}
.header--fixed__inner {
	align-items: stretch;
}
.header--fixed__logo-img {
	background: #FFF;
	padding: 0 5%;
	height: 100%;
	display: flex;
	align-items: center;
}
.header--fixed__logo a {
	display: flex;
	align-items: center;
	height: 100%;
	line-height: 1;
}
.header--fixed__logo img {
	height: 36px;
	width: auto;
}
.header--fixed__nav-area {
	align-items: center;
	margin-right: 10px;
}
.header--fixed .header__join {
	display: flex;
	width: auto;
	margin-left: 0;
	gap: 5px;
}
.header--fixed .header__join-reserve.lnkbtn,
.header--fixed .header__join-line.lnkbtn {
	width: 40px;
	height: 40px;
	margin-top: 0;
}
.header--fixed .header__join-reserve .icon {
	margin-right: 0;
}
.header--fixed .header__join-line.lnkbtn svg {
	height: 22px;
}
.header--fixed__logo-txt {
	height: 100%;
	width: auto;
	padding: 10px;
	margin-left: 3px;
}
.header--fixed__logo-txt svg {
	height: 40px;
	width: auto;
}

.hamburger {
	position: relative;
	display: block;
	width: 120px;
	height: 40px;
	margin-right: 5px;
	padding: 0;
	border: 0;
	background: transparent;
	appearance: none;
	cursor: pointer;
	border: 1px #FFF solid;
	border-radius: 3px;
}
.hamburger span {
	position: absolute;
	left: 50%;
	width: 30%;
	height: 1px;
	background: #FFF;
	transition: transform .3s ease, opacity .3s ease, top .3s ease;
	transform: translate(-50%, -50%);
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 50%; transform: translate(-50%, -50%); }
.hamburger span:nth-child(3) { top: 26px; }
body.menuopen .hamburger span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
body.menuopen .hamburger span:nth-child(2) {
	opacity: 0;
}
body.menuopen .hamburger span:nth-child(3) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.header--fixed__nav {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	font-size: clamp(17px, 1.7vw, 30px);
	max-height: 0;
	overflow: hidden;
	background: var(--blue);
	text-align: center;
	transition: max-height .4s ease;
}
.header--fixed__nav ul {
	padding: 7.5vw;
}
.header--fixed__nav li {
	margin: 0;
	padding: 1em 0;
}
body.menuopen .header--fixed__nav {
	max-height: 400px;
}


/* HERO */
.hero {
	position: relative;
	padding: 10px 0 20vw;
}
.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20vw;
	background: url(../img/conditioning/gradient.svg);
	background-repeat: repeat-x;
	background-position: left top;
	background-size: auto 100%;
}
.heroimg-wrap {
	position: relative;
	width: 70%;
	aspect-ratio: 6.5 / 3.5;
	margin: 0 0 0 auto;
	overflow: hidden;
	border-radius: 5px 0 0 5px;
}
.heroimg-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.3);
	z-index: 2;
}
.hero__slide {
	overflow: hidden;
	height: 100%;
}
.hero__slide .swiper-wrapper {
	transition-timing-function: linear !important;
}
.hero .hero__slide-box {
	aspect-ratio: 2 / 3;
	width: auto;
	overflow: hidden;
}
.hero__slide-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__txt-main {
	position: absolute;
	top: 26.5vw;
	left: 0;
	margin-left: 5vw;
	font-size: clamp(30px, 5.5vw, 55px);
	font-weight: 900;
	z-index: 2;
}
.hero__txt-sub {
	position: relative;
	margin: -3vw 0 0 5vw;
	color: var(--blue);
	font-size: clamp(20px, 3.95vw, 40px);
	font-weight: 900;
	line-height: 1.7;
  text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0 -1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
	z-index: 2;
}
.hero__txt-sub span:not(.hero-char) {
	display: block;
}
.hero-char {
	display: inline-block;
	opacity: 0;
	transition: opacity .1s;
}
.hero__txt-main.is-typing .hero-char,
.hero__txt-sub.is-typing .hero-char {
	opacity: 1;
}
.hero__txt {
	margin-left: 5vw;
	margin-top: 6em;
}
.hero__txt dl {
	padding: 3em 0;
	border-top: 1px solid rgba(255,255,255,.3);
}
.hero__txt dt {
	position: relative;
	padding-left: 1.5em;
	padding-right: 5vw;
	font-size: clamp(16px, 2.8vw, 28px);
	font-weight: 900;
	line-height: 1.4;
}
.hero__txt dt span {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	font-size: clamp(15px, 1.8vw, 20px);
	color: var(--water);
	font-weight: 700;
	vertical-align: top;
}
.hero__txt dt strong {
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	background-image: linear-gradient(rgba(66,142,187,.65), rgba(66,142,187,.65));
	background-repeat: no-repeat;
	background-position: 0 88%;
	background-size: 0% 40%;
	transition: background-size 1s cubic-bezier(.65,0,.35,1);
}
.hero__txt dt.is-inview strong {
	background-size: 100% 40%;
}
.hero__txt dd {
	margin-top: .7em;
	padding-left: 2em;
	padding-right: 5vw;
	font-size: clamp(13px, 2vw, 20px);
	font-weight: 500;
	color: rgb(184, 206, 221);
	line-height: 1.6;
}
.hero__circles {
	position: absolute;
	top: 0vw;
	left: 8vw;
	width: 32vw;
	height: auto;
	transform-origin: 0% 100%;
	animation: hero-circles-flare 2s cubic-bezier(.25,.1,.25,1) both;
}
@keyframes hero-circles-flare {
	0% {
		filter: blur(25px);
		transform: scale(1.3) rotate(-15deg);
	}
	50% {
		transform: scale(1.05) rotate(-1deg);
	}
	100% {
		filter: blur(0);
		transform: scale(1) rotate(0deg);
	}
}
@media (prefers-reduced-motion: reduce) {
	.hero__circles {
		animation: none;
	}
}



/* INTRO */
.worries {
	align-items: center;
	justify-content: space-between;
	margin-top: 5vw;
	background: var(--lightblue);
	border-radius: 5px;
}
.worries__title {
	width: 37.5%;
	padding: 5vw 0 5vw 6.5vw;
	text-align: center;
}
.worries__title h2 {
	font-size: clamp(22px, 3vw, 35px);
	font-weight: 900;
	line-height: 1.6;
	color: var(--blue);
}
.worries__title .lnkbtn {
	margin-top: 1em;
	width: 100%;
	background: var(--blue);
}
.worries__title .lnkbtn a {
	padding: .7em 0 .8em;
	font-size: clamp(16px, 1.8vw, 20px);
	font-weight: 900;
	color: #FFF;
}
.worries__title .lnkbtn a:hover {
	color: var(--blue);
}
.worries__title .lnkbtn a::before {
	background: #FFF;
}
.worries__title .lnkbtn .icon {
	margin-right: .5em;
}
.worries__list {
	width: 55%;
	margin-top: 5vw;
	padding-right: 4.5vw;
}
.worries__list-bg {
	padding: 2vw 4.5vw 4.5vw;
	background: #FFF;
	border-radius: 10px 10px 0 0;
}
.worries__list-bar {
	position: relative;
	width: 20%;
	height: 1px;
	margin: auto auto 2.5vw;
	background: var(--blue);
}
.worries__list-bar::before,
.worries__list-bar::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 9999px;
	background: var(--blue);
	transform: translateY(-50%);
}
.worries__list-bar::after {
	left: auto;
	right: 0;
}
.worries__list ul li {
	position: relative;
	padding: 1em 0 1em 1.8em;
	font-size: clamp(14px, 1.4vw, 20px);
	font-weight: 700;
	border-bottom: 1px dotted #000;
	letter-spacing: 0;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s ease, transform .6s ease;
}
.worries__list.is-inview ul li {
	opacity: 1;
	transform: translateY(0);
}
.worries__list ul li:nth-child(1) { transition-delay: 0s; }
.worries__list ul li:nth-child(2) { transition-delay: .25s; }
.worries__list ul li:nth-child(3) { transition-delay: .5s; }
.worries__list ul li:nth-child(4) { transition-delay: .75s; }
.worries__list ul li:nth-child(5) { transition-delay: 1s; }
.worries__list ul li::before {
	content: '';
	position: absolute;
	top: 1.2em;
	left: 0;
	width: 1em;
	aspect-ratio: 1;
	background: var(--water);
	border-radius: 9999px;
}



/* ABOUT */
.sec {
	position: relative;
	margin-top: 10vw;
}
#ABOUT h2 {
	position: relative;
	margin-bottom: 5.5vw;
	font-size: clamp(50px,5.5vw,120px);
	font-weight: 800;
	color: var(--blue);
	line-height: 1;
}
#ABOUT h2::before {
	content: '';
	position: absolute;
	top: 50%;
	left: calc(50% - 50vw);
	width: 100vw;
	height: 1px;
	background: var(--blue);
	transform: translateY(-50%);
}
#ABOUT h2 span {
	position: relative;
	display: inline-block;
	padding-right: 0.5em;
	background: #FFF;
}
#ABOUT h2 span::before {
	content: '';
	position: absolute;
	left: -.3em;
	top: 0;
	width: .3em;
	height: 100%;
	background: #FFF;
}
h3 {
	position: relative;
	margin-bottom: 1em;
	font-size: clamp(18px, 2vw, 35px);
	font-weight: 900;
}
.content-important {
	position: relative;
	margin-top: 10vw;
	padding: 10vw 0;
}
.content-important.bg-brown::before {
	content: '';
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
	width: 100vw;
	height: 100%;
	background: var(--brown);
}
.important {
	position: relative;
}
.important.-flex {
	justify-content: space-between;
}
.important__box {
	position: relative;
	margin-top: 3.5vw;
	padding: 3.5vw;
	width: calc((100% / 3) - 1vw);
	background: #FFF;
	border-radius: 5px;
	transform-origin: 50% calc(-2.5vw - 3px);
	--swing-angle: 6deg;
	--swing-duration: 2.2s;
	--swing-delay: 0s;
}
.important__box.is-inview {
	animation: important-box-swing var(--swing-duration) var(--swing-delay) ease-out both;
}
@keyframes important-box-swing {
	0% { transform: rotate(0deg); }
	15% { transform: rotate(var(--swing-angle)); }
	35% { transform: rotate(calc(var(--swing-angle) * -0.55)); }
	55% { transform: rotate(calc(var(--swing-angle) * 0.3)); }
	75% { transform: rotate(calc(var(--swing-angle) * -0.12)); }
	100% { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
	.important__box.is-inview {
		animation: none;
	}
}
.important__box-pin {
	position: absolute;
	top: -2.5vw;
	left: 50%;
	width: 1px;
	height: 5vw;
	background: var(--blue);
	transform: translateX(-50%);
}
.important__box-pin::before,
.important__box-pin::after {
	content: '';
	position: absolute;
	left: 50%;
	width: 7px;
	height: 7px;
	border-radius: 9999px;
	background: var(--blue);
	transform: translateX(-50%);
}
.important__box-pin::before {
	top: -3px;
}
.important__box-pin::after {
	bottom: -3px;
}
.important__box h4 {
	position: relative;
	padding: 0 .45vw;
	margin: .75em 0 1.5em;
	font-size: clamp(16px, 1.6vw, 20px);
	color: #FFF;
	font-weight: 900;
}
.important__box h4 span {
	display: block;
	padding: .3em 0;
	background: var(--blue);
	text-align: center;
}
.important__box h4::before,
.important__box h4::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 1.2vw;
	height: 120%;
	transform: translateY(-50%);
}
.important__box h4::before {
	left: 0;
	border-top: 1px solid var(--blue);
	border-left: 1px solid var(--blue);
}
.important__box h4::after {
	right: 0;
	border-bottom: 1px solid var(--blue);
	border-right: 1px solid var(--blue);
}
.important__box p {
	line-height: 1.8;
}



/* SERVICE */
#SERVICE.sec {
	margin-top: 0;
	padding: 10vw 0;
	background: var(--blue);
}
#SERVICE h2, #FLOW h2 {
	position: relative;
	margin-bottom: 5.5vw;
	color: #FFF;
	line-height: 1;
}
#SERVICE h2 span.en, #FLOW h2 span.en {
	font-size: clamp(50px,5.5vw,120px);
	font-weight: 800;
}
#SERVICE h2 span.jpn, #FLOW h2 span.jpn {
	position: relative;
	padding-left: 1em;
	margin-left: 1.5em;
	font-size: clamp(18px,1.8vw,25px);
	font-weight: 900;
}
#SERVICE h2 span.jpn::before, #FLOW h2 span.jpn::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;;
	width: 2px;
	height: 90%;
	background: #FFF;
	transform: rotate(45deg);
}
.service-content.-flex {
	justify-content: space-between;
}
.service-content__box {
	width: calc(50% - 1vw);
	border-radius: 10px;
	background: #FFF;
	overflow: hidden;
}
.service-content__box .image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.service-content__box  .texts {
	padding: 4vw 0 8vw 5.5vw;
}
.service-content__box .texts--title {
	position: relative;
	border-bottom: 1px solid var(--water);
	padding-bottom: 1.5em;
	margin-bottom: 1.2em;
	font-size: clamp(18px, 1.8vw, 25px);
	color: var(--blue);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
}
.service-content__box .texts--title::before {
	content: '';
	position: absolute;
	top: 0.05em;
	left: -2.5vw;
	height: .9em;
	aspect-ratio: 1;
	border-radius: 999px;
	background: var(--water);
}
.service-content__box p {
	margin-right: 2rem;
	font-size: clamp(15px, 1.5vw, 20px);
	line-height: 1.7;
	letter-spacing: 0;
}
.service-content__box ul {
	margin-top: 2vw;
}
.service-content__box li {
	display: inline-block;
	padding: .5em 1.2em;
	margin: .5em .5em 0 0;
	font-size: clamp(12px, 1.3vw, 18px);
	background: #F0F0F0;
	border-radius: 9999px;
	letter-spacing: 0;
	line-height: 1;
}
#SERVICE .lnkbtn {
	display: block;
	width: 25em;
	border: 1px solid #FFF;
	margin: 5vw auto 0;
	animation: lnkbtn-frame 2s ease-out infinite;
}
#SERVICE .lnkbtn a {
	padding: 1em 0;
  color: #FFF;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 900;
}
#SERVICE .lnkbtn a::before {
	background: #FFF;
}
#SERVICE .lnkbtn a:hover {
	color: var(--blue);
}
#SERVICE .lnkbtn .icon {
	margin-right: 1em;
}
@keyframes lnkbtn-frame {
	0% {
		box-shadow: 0 0 0 0 rgba(180, 220, 225, 0.6);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(180, 220, 225, 0);
	}
}
@media (prefers-reduced-motion: reduce) {
	#SERVICE .lnkbtn {
		animation: none;
	}
}



/* FLOW */
#FLOW {
	padding: 10vw 0;
}
#FLOW h2 {
	color: var(--blue);
}
#FLOW h2 span.jpn::before {
	background: var(--blue)
}
.flow-content {
	justify-content: space-between;
}
.flow-box {
	position: relative;
	width: calc(25% - 3vw);
	padding: 1.2vw;
	text-align: center;
	background: var(--blue);
	color: #FFF;
	border-radius: 5px;
	line-height: 1;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .5s ease, transform .5s ease;
}
.flow-content.is-inview .flow-box {
	opacity: 1;
	transform: translateY(0);
}
.flow-content .flow-box:nth-child(1) { transition-delay: 0s; }
.flow-content .flow-box:nth-child(3) { transition-delay: .3s; }
.flow-content .flow-box:nth-child(5) { transition-delay: .6s; }
.flow-content .flow-box:nth-child(7) { transition-delay: .9s; }
.flow-arrow {
	position: relative;
	width: 2.5vw;
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity .4s ease, transform .4s ease;
}
.flow-content.is-inview .flow-arrow {
	opacity: 1;
	transform: translateX(0);
}
.flow-content .flow-arrow:nth-child(2) { transition-delay: .15s; }
.flow-content .flow-arrow:nth-child(4) { transition-delay: .45s; }
.flow-content .flow-arrow:nth-child(6) { transition-delay: .75s; }
.flow-arrow::before,
.flow-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.flow-arrow::before {
	width: 1.8vw;
	height: 1.8vw;
	border-top: 10px solid var(--blue);
	border-right: 10px solid var(--blue);
	transform: translateY(-50%) rotate(45deg);
}
.flow-arrow::after {
	width: 100%;
	height: 10px;
	background: var(--blue);
}
.flow-box .num {
	display: block;
	padding: .3em 0 .5em;
	font-size: clamp(30px, 4vw, 80px);
	font-weight: 700;
}
.flow-box p {
	font-size: clamp(15px, 1.5vw, 23px);
	font-weight: 900;
	color: var(--blue);
	background: #FFF;
	border-radius: 3px;
	padding: 3vw 0;
	letter-spacing: 0;
}


/* STAFF & MESSAGE */
.staff-mess {
	position: relative;
	background: var(--brown);
	padding: 10vw 0 0;
}
.staff-mess::after {
	content: '';
	position: absolute;
	left: 2.5vw;
	bottom: 0;
	width: 1px;
	height: calc(100% - 22em);
	background: var(--blue);
}
#STAFF {
	position: relative;
	padding-bottom: 7.5vw;
}
#STAFF h2 {
	position: absolute;
	width: 100vw;
	top: 0;
	left: calc(50vw - 50%);
	line-height: 1;
}
#STAFF h2 span.en {
	position: absolute;
    display: inline-block;
    top: -1em;
    left: -.15em;
	padding: 0 5vw 0 0;
	font-size: clamp(50px,5.5vw,120px);
	font-weight: 800;
	background: var(--brown);
	z-index: 2;
	color: var(--blue);
	transform: rotate(90deg);
	transform-origin: left bottom;
}
.staff-content {
	flex-wrap: wrap;
	justify-content: space-between;
}
.staff-content__photo {
	order: 3;
	width: 40%;
}
.staff-content__photo p {
	position: relative;
	height: 100%;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.staff-content__photo p::before {
	content: '';
	position: absolute;
	left: -1px;
	bottom: 11em;
  	display: inline-block;
	width: 40px;
	height: 30px;
	background: var(--brown);
  	clip-path: polygon(0 0, 0 100%, 100% 50%);
}
h3.name {
	padding-bottom: 10px;
	margin-bottom: 2vw;
	color: var(--blue);
	line-height: 1;
	border-bottom: 3px solid var(--blue);
}
h3.name span.en {
	position: relative;
	display: inline-block;
	padding-left: .8em;
	margin-left: 1em;
	font-weight: 600;
    font-size: clamp(16px, 1.8vw, 20px);
}
h3.name span.en::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background: var(--blue);
	transform: rotate(45deg);
}
.staff-content__txt {
	width: 50%;
	margin-left: 2vw;
	font-size: clamp(12px, 1.4vw, 14px);
	letter-spacing: 0;
}
.staff-content__txt-history ul {
	margin-left: 2vw;
	color: #7780a7;
}
.staff-content__txt-history ul li {
	border-bottom: 1px dotted #000;
}
.staff-content__txt-history ul li:last-child {
	border-bottom: none;
}
.staff-content__txt-comment {
	padding: 2vw 0;
	margin-top: 2vw;
	margin-left: 2vw;
	border-top: 1px solid var(--blue);
	border-bottom: 1px solid var(--blue);
	line-height: 1.6;
}
.staff-content__txt-comment p {
	margin-bottom: 1.5em;
}
.staff-content__txt-comment p:last-child {
	margin-bottom: 0;
}


#MESSAGE {
	position: relative;
}
#MESSAGE::after {
	content: '';
	position: absolute;
	left: calc(50vw - 50%);
	bottom: 0;
	width: 100vw;
	height: 4vw;
	background: var(--blue);
}
.message-balloon {
	position: relative;
	align-items: center;
	padding: 6vw 5vw;
	border: 2px solid var(--blue);
	background: #FFF;
	border-radius: 5px;
	z-index: 2;
	opacity: 0;
	transform: translateY(60px);
	transform-origin: 50% 100%;
	--shake-angle: 4deg;
	--shake-duration: .8s;
}
.message-balloon.is-inview {
	animation: message-balloon-pop-in var(--shake-duration) cubic-bezier(.22, 1, .36, 1) forwards;
}
@keyframes message-balloon-pop-in {
	0%   { opacity: 0; transform: translateY(60px) rotate(0deg); }
	45%  { opacity: 1; transform: translateY(0) rotate(0deg); }
	60%  { transform: translateY(0) rotate(var(--shake-angle)); }
	72%  { transform: translateY(0) rotate(calc(var(--shake-angle) * -0.7)); }
	84%  { transform: translateY(0) rotate(calc(var(--shake-angle) * 0.35)); }
	94%  { transform: translateY(0) rotate(calc(var(--shake-angle) * -0.12)); }
	100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
	.message-balloon {
		opacity: 1;
		transform: none;
	}
	.message-balloon.is-inview {
		animation: none;
	}
}
#MESSAGE h2 {
	line-height: 1;
	color: var(--blue);
	text-align: center;
}
#MESSAGE h2 span.en {
    display: block;
	font-size: clamp(50px,5.5vw,120px);
	font-weight: 800;
}
#MESSAGE h2 span.jpn {
    display: block;
	margin-top: .5em;
	font-size: clamp(18px,1.8vw,25px);
	font-weight: 900;
}
.message-balloon .content {
	margin-left: 4vw;
	padding-left: 4vw;
	border-left: 2px solid var(--blue);
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.6;
}
.message-balloon .content p {
	margin-bottom: 1.5em;
}
.message-balloon .content p:last-child {
	margin-bottom: 0;
}
.message-balloon .content p strong {
	color: #FFF;
	background: var(--blue);
}
.message-balloon__brt {
	position: absolute;
	left: 50%;
	bottom: -8vw;
	width: auto;
	height: 8vw;
	transform: translateX(-50%);
}
.message-balloon__brt img {
	height: 100%;
	width: auto;
}



/* FOOTER */
.footer {
	padding: 6.5vw 3.5vw 0;
}
.footer__inner {
	justify-content: space-between;
	padding-top: 6.5vw;
	border-top: 1px solid #FFF;
}
.footer__access-content {
	justify-content: space-between;
}
.footer__navs {
	width: 15%;
	min-width: 120px;
}
.footer__navs-logo,
.footer__navs-logo svg {
	width: 100%;
	height: auto;
}
.footer__navs-logo {
	margin-bottom: 1.8em;
}
.footer__access {
	font-size: clamp(10px, 1vw, 13px);
	line-height: 1.5;
}
.accessbox {
	padding-left: 3vw;
	margin-left: 3vw;
	border-left: 7px solid #FFF;
	min-width: 22.5em;
	width: 25%;
}
.accessbox--title {
	font-size: clamp(15px, 1.5vw, 17px);
	font-weight: 900;
	margin-bottom: .5em;
}
.accessbox--time {
	padding: 1vw 0;
	margin: 1vw 0;
	border-top: 1px solid rgba(255,255,255,.3);
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.accessbox strong {
	position: relative;
	display: inline-block;
	padding: 0 .75em;
	margin-bottom: 3px;
	font-size: clamp(13px, 1.2vw, 15px);
}
.accessbox strong::before,
.accessbox strong::after {
	content: '';
	position: absolute;
	top: 0;
	width: 3px;
	height: 100%;
	border: 1px solid #FFF;
}
.accessbox strong::before {
	left: 0;
	border-right: 0;
}
.accessbox strong::after {
	right: 0;
	border-left: 0;
}
.accessbox dl {
	display: flex;
	flex-wrap: wrap;
}
.accessbox dl dt {
	width: 10em;
}
.accessbox dl dd {
	width: calc(100% - 10em);
}
.accessmap {
	width: 30%;
}
.googlemap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: /*56.25*/80%; 
	overflow: hidden;
	border-radius: 3px;
}
.googlemap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.accessway {
	width: 30%;
}
.accessway strong {
	display: block;
	font-size: clamp(13px, 1.2vw, 15px);
	margin-bottom: 5px;
}
.accessway strong span {
	display: inline-block;
	margin-right: 5px;
}
.accessway .subs {
	font-size: clamp(12px, 1.1vw, 14px);
	margin-bottom: 5px;
}
.accessway--box {
	word-break: break-all;
}
.accessway--box:last-child {
	margin-top: 1em;
	padding-top: 1em;
	border-top: 1px solid rgba(255,255,255,.3);
}
.footer__join {
	margin-top: 30px;
}
.footer__join .lnkbtn {
	display: block;
	width: 100%;
	font-size: clamp(13px, 1.2vw, 15px);
	font-weight: bold;
	letter-spacing: 0;
}
.footer__join .header__join-reserve.lnkbtn p {
	padding: 5px 0;
}
.footer__join .header__join-line.lnkbtn {
	margin-top: 5px;
}
.footer__join .header__join-line.lnkbtn p {
	padding: 2px 0;
}
.footer__join .header__join-line.lnkbtn svg {
	height: 22px;
}


.copyright {
	padding: 50px 0 10px;
	text-align: left;
	font-size: 10px;
}