@charset "UTF-8";

/* ========== HEADER ========== */
header {
  width: 100%;
  padding: 40px 2vw;
  pointer-events: none;
}

header * {
  pointer-events: auto;
}

.header-wrap {
  align-items: center;
}
.header-logo h1 {
  line-height: 0;
  margin: 0;
}
.header-logo a {
  line-height: 0;
  margin: 0;
	transition: .3s linear;
	opacity: 1;
}
.header-logo a:hover {
	opacity: .3;
}
.header-logo img {
  height: 35px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.header-nav a {
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  color: #000;
  letter-spacing: 0.05em;
	font-size: clamp(12px, 1.2vw, 15px);
}

.header-nav a::after,
.side-menu-modal-wrap a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease;
}
.header-nav a::after {
	height: 1px;
}

.side-menu-modal-wrap a::after {
  background-color: #fff;
}

.header-nav a.is-hovered::after,
.side-menu-modal-wrap a.is-hovered::after,
.gmap a.is-hovered::after {
  clip-path: inset(0 0% 0 0);
}

.header-nav a.is-leaving::after,
.side-menu-modal-wrap a.is-leaving::after,
.gmap a.is-leaving::after {
  clip-path: inset(0 0% 0 100%);
}

/* ========== SIDEBAR ========== */
#sidebar {
  position: fixed;
  right: 15px;
  width: 60px;
  background-color: var(--primary);
  border-radius: 5px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#sidebar.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 20px 0 10px;
}

.sidebar-menu-burger {
	position: relative;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.sidebar-menu-burger span {
	position: absolute;
  display: block;
	top: 0;
	left: 14px;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
	transform: rotate(15deg);
  /* 登場アニメーション初期状態 */
  animation: burgerSpanIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes burgerSpanIn {
  from {
    opacity: 0;
    clip-path: inset(0% 0 100% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0% 0 0% 0);
  }
}

.sidebar-menu-burger span:nth-child(1) { animation-delay: 1s; }
.sidebar-menu-burger span:nth-child(2) { animation-delay: 1.5s; }
.sidebar-menu-burger span:nth-child(3) { animation-delay: 2s; }

.sidebar-menu-burger span:nth-child(1) { height: 30%; }
.sidebar-menu-burger span:nth-child(2) { height: 60%; left:20px; }
.sidebar-menu-burger span:nth-child(3) { left:26px; }

.sidebar-menu-burger.is-open span:nth-child(1) { height: 90%; left: 50%;  transform: translateX(-50%) rotate(45deg); }
.sidebar-menu-burger.is-open span:nth-child(2) { opacity: 0!important; }
.sidebar-menu-burger.is-open span:nth-child(3) { height: 90%; left: 50%; transform: translateX(-50%) rotate(-45deg); }

.sidebar-logo { 
	display: flex;
	justify-content: center;
	writing-mode: vertical-rl;
	height: 23.5%;
}

.sidebar-logo img {
  height: 100%;
  width: auto;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
	padding: 11px;
  border: 1px solid #FFF;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.sidebar-links a:hover { background-color: rgba(255,255,255,0.35); }

/* ========== SIDE MENU MODAL ========== */
.side-menu-modal {
	position: fixed;
	top: 15px;
	right: 15px;
	width: calc(100vw - 30px);
	height: calc(100vh - 30px);
	background-color: var(--primary);
	border-radius: 5px;
	z-index: 99;
	transform: translateX(calc(100% + 10px));
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
	pointer-events: none;
}
.side-menu-modal::after {
	content: '';
	position: absolute;
	top: 0;
	right: 60px;
	width: 1px;
	height: 100%;
	background: #FFF;
}

.side-menu-modal.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.side-menu-modal-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
	padding: 5vw 0;
}
.side-menu-modal-Nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	padding: 0 calc(10vw + 60px) 0 10vw;
}
.side-menu-modal-Nav a {
	display: block;
  text-decoration: none;
  color: #fff;
  position: relative;
  padding: 1vw 1.5vw;
	width: 45%;
  font-size: clamp(14px, 1.3vw, 24px);
	border-bottom: 1px solid #FFF;
}
.side-menu-modal-Nav a::before {
	content: '';
	position: absolute;
	right: 1vw;
	top: 50%;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 1px solid #FFF;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 8"><polygon fill="%23FFFFFF" points="6.37 .94 5.66 1.65 7.52 3.5 .57 3.5 .57 4.5 7.52 4.5 5.66 6.35 6.37 7.06 9.43 4 6.37 .94"/></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px auto;
	transform: translateY(-50%);
}
.side-menu-modal-Nav a:hover {
	background: rgba(255,255,255,.2);
}
.side-menu-modal-about {
	position: relative;
	margin-top: 6.5vw;
	margin-right: 60px;
	padding: 5vw 10vw 0 10vw;
	color: #FFF;
	border-top: 3px solid #FFF;
}
.side-menu-modal-about-logo {
	width: 15vw;
	margin-bottom: 3vw;
}
.side-address {
	position: absolute;
	bottom: 0;
	right: calc(10vw + 60px);
	font-size: 13px;
}
.side-open-close {
	margin-left: 2.5vw;
	font-size: 13px;
}
.side-open-close > div:first-child {
	margin-bottom: 1.5em;
}

/* ========== HERO ========== */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: url("../img/bg-wave.svg") center no-repeat;
	background-size: auto 100%;
	height: 400px;
	width: 100%;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0);
  transition: transform 1.2s ease-in-out;
  z-index: 10;
  pointer-events: none;
}
.hero.is-loaded::after {
  transform: translateX(101%);
}

.hero-wrap {
	position: relative;
  display: grid;
  grid-template-columns: 24.5% 1fr;
  grid-template-rows: 1fr auto;
  height: 95%;
	margin-left: 5%;
  box-sizing: border-box;
}
.hero-mess {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  z-index: 2;
	padding-top: 4vw;
	padding-left: 4vw;
	margin-bottom: 10vw;
}

.hero-mess strong {
  writing-mode: vertical-rl;
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 700;
  line-height: 2;
	letter-spacing: .2em;
}

.hero-mess strong span {
  display: block;
  margin-top: 1.25em;
}

.hero-img-wrap {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
	border-radius: 5px 0 0 5px;
}

.hero-img {
	position: relative;
  width: 100%;
  height: 100%;
}
.hero-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15,65,80,.2);
}

.hero-links {
	position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
 bottom: 2vw;
	left: 0;
  z-index: 2;
  font-size: clamp(15px, 1vw, 20px);
	font-weight: 700;
}

.hero-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
	border-radius: 5px;
	padding: 10px 1.5em 10px 2.75em;
	background: #FFF;
}
.hero-links a::after {
	content: "";
	position: absolute;
	left: 1em;
	width: 1em;
	aspect-ratio: 1;
	background: url("../img/icon-phone.svg") center no-repeat;
	background-size: contain;
}

.hero-links a:not(.en)::after {
	background: url('data:image/svg+xml,<svg fill="%23FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M15,16.99l15-8.62v-2.18c0-1.28-1.04-2.32-2.32-2.32H2.32c-1.28,0-2.32,1.04-2.32,2.32v2.18l15,8.62Z"/><path class="cls-1" d="M15,19.55L0,10.94v12.87c0,1.28,1.04,2.32,2.32,2.32h25.36c1.28,0,2.32-1.04,2.32-2.32v-12.87l-15,8.62h0Z"/></svg>') center no-repeat;
}

.hero-links a:not(.en) {
  color: #fff;
}

.hero-links a:not(.en)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  z-index: -2;
}

.hero-links a span {
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,.35);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease;
  z-index: -1;
}
.hero-links a.en span {
  background-color: rgba(70,110,75,.2);
}

.hero-links a.is-hovered span { clip-path: inset(0 0% 0 0); }
.hero-links a.is-leaving span { clip-path: inset(0 0% 0 100%); }

.hero-parallax {
  position: absolute;
  left: 11vw;
  top: 10%;
  bottom: 0;
  width: 28vw;
  z-index: 1;
  pointer-events: none;
	mix-blend-mode: multiply;
}
/* ========== hero-sub-text ========== */
.hero-sub-text {
	position: relative;
	overflow: visible !important;
	background: var(--bg-lg);
}
.hero-sub-text.content {
  	padding: 250px 75px 100px 0;
}
#rippleCanvas {
	position: absolute;
	left: 0;
	z-index: 1;
	pointer-events: none;
	height: 100%;
}
.hero-img-txt {
	text-align: center;
}
.hero-img-txt p {
	writing-mode: vertical-rl;
	display: inline-block;
	height: 26.5em;
	position: relative;
	padding: 0 1em;
	margin: 0 auto;
	text-align: left;
	box-sizing: border-box;
	font-size: clamp(14px, 1.5vw, 18px);
  color: var(--primary);
  line-height: 4;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}
.hero-img-txt p::before, .hero-img-txt p::after {
	content: '';
	position: absolute;
	width: 1;
	height: 40px;
	transform: skewX(-15deg);
	border: 1px solid var(--primary);
}
.hero-img-txt p::before {
	bottom: -50px;
	left: 0;
	border-right: none;
}
.hero-img-txt p::after {
	top: -50px;
	right: 0;
	border-left: none;
}
.hero-img-txt p span {
	text-combine-upright: all;
}


/* ========== NEWS ========== */
#NEWS {
	overflow: hidden;
	padding-top: 300px;
    padding-bottom: 100px;
}
#NEWS::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -25%;
  width: 150%;
  height: 300px;
  background-color: var(--bg-lg);
   border-radius: 0 0 50% 50%;
}
#NEWS .inner h2 {
	position: absolute;
}
#NEWS .inner h2::before {
	left: inherit;
	right: -7vw;
}
.news-content {
	width: calc(100% - 17.5em);
  display: flex;
  flex-direction: column;
	margin: 0 0 0 auto;
}
.page .news-content {
	width: 100%;
	padding-left: 60px;
	margin-top: 8vw;
}
.news-content dl {
  display: grid;
  grid-template-columns: 9em 1fr auto;
  align-items: center;
  padding: 2em 0;
  border-bottom: 1px solid #000;
}
.news-content dd a {
	position: relative;
	display: block;
	opacity: 1;
	padding-right: 3.5em;
}
.news-content dd a:hover {
	opacity: .3;
}
.news-content-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 4em;
}
.news-content-link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--primary);
  color: var(--primary);
	border-radius: 5px;
	padding: .75em 3.5em .75em 3em;
}

.news-content-link a span {
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease;
  z-index: -1;
}
.news-content-link a::before, .news-content dd a::after {
  content: "";
	position: absolute;
	top: 50%;
	right: .75em;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 1px solid var(--primary);
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 8"><polygon fill="%23466e4b" points="6.37 .94 5.66 1.65 7.52 3.5 .57 3.5 .57 4.5 7.52 4.5 5.66 6.35 6.37 7.06 9.43 4 6.37 .94"/></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px auto;
	transform: translateY(-50%);
  transition: 0.3s ease;
}
.news-content dd a::after {
	border: none;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 8"><polygon fill="%23000000" points="6.37 .94 5.66 1.65 7.52 3.5 .57 3.5 .57 4.5 7.52 4.5 5.66 6.35 6.37 7.06 9.43 4 6.37 .94"/></svg>');
}
.news-content-link a:hover {
  color: #fff;
}
.news-content-link a:hover::before {
	border: 1px solid #FFF;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 8"><polygon fill="%23FFFFFF" points="6.37 .94 5.66 1.65 7.52 3.5 .57 3.5 .57 4.5 7.52 4.5 5.66 6.35 6.37 7.06 9.43 4 6.37 .94"/></svg>');
}

.news-content-link a.is-hovered span { clip-path: inset(0 0% 0 0); }

.news-content-link a.is-leaving span { clip-path: inset(0 0% 0 100%); }

/* ========== ABOUT ========== */
#ABOUT {
	background-image: url("../img/bg-silk.png"),
    linear-gradient(rgba(246, 248, 247, 1), rgba(246, 248, 247, 1));
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
#ABOUT::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  width: 150%;
  height: 300px;
  background-color: #FFF;
   border-radius: 0 0 50% 50%;
}
#ABOUT .outer {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	padding-right: 5%;
}
#ABOUT .content-photos {
	width: 100%;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
}
#ABOUT .inner {
	position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
	padding-top: 37.5%;
	width: 60%;
	margin: 0 0 0 auto;
}
#ABOUT .inner h2 {
	margin-left: 40%;
}
.about-txt-inner p {
	margin-top: 25px;
}

.content-photos {
  position: relative;
  z-index: 2;
}

.content-photo-top,
.content-photo-bottom {
	position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  overflow: hidden;
  will-change: transform;
	aspect-ratio: 16 / 10;
}
.content-photo-top {
	align-self: flex-end;
}
.content-photo-bottom {
  align-self: flex-start;
}
#ABOUT .content-photo-top {
    width: 77.5%;
    margin-left: 5%;
}
#ABOUT .content-photo-top p {
    -webkit-mask-image: url("../img/cutout.svg");
    -webkit-mask-size: 100% 100%;
    mask-image: url("../img/cutout.svg");
    mask-size: 100% 100%;
}
#ABOUT .content-photo-bottom {
	aspect-ratio: 10 / 16;
	width: 34%;
	margin-top: -50px;
}
.content-photo-top p,
.content-photo-bottom p {
	width: 100%;
	height: 100%;
}

/* ========== INFORMATION ========== */
#INFORMATION {
	background: var(--bg-lg);
	padding-bottom: 0;
}
#INFORMATION .outer {
  display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}
#INFORMATION .content-photos {
	width: 100%;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
}
#INFORMATION .content-photo-top {
	z-index: 2;
}
#INFORMATION .inner {
	position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
#INFORMATION .inner h2 {
	padding-left: 0;
	margin-bottom: 10%;
}
#INFORMATION .inner h2::before {
	left: 9em;
	height: 150%
}
.inner h2 .en, .page .content .inner h1 .en {
	position: absolute;
	top: 0;
	letter-spacing: .1em;
}
#INFORMATION .content-photo-top {
  width: 64%;
	margin: 0 0 0 auto;
}

#INFORMATION .content-photo-bottom {
  width: 49.5%;
}

.information-txt h3 {
	position: relative;
	display: inline-block;
	padding: 5.5% 3% 5.5% 10%;
	margin-bottom: 0;
	background: var(--bg-lg);
	border-radius: 5px 5px 0 5px;
	z-index: 2;
}
.information-txt h3::before {
	top: calc(5vw + .75em);
	left: 0;
	width: 6.5vw;
}
.information-txt-inner {
	position: relative;
	margin-left: 30%;
	padding: 5.5% 3% 5.5% 5.5%;
	background: var(--bg-lg);
	border-radius: 0 5px 0 5px;
	z-index: 2;
	line-height: 2.2;
}
.information-txt-inner strong {
	color: var(--primary);
	font-weight: bold;
}

/* ========== MENU ========== */
#MENU {
	padding-top: 300px;
	overflow: hidden;
}
#MENU::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2.5%;
  width: 105%;
  height: 150px;
  background-color: var(--bg-lg);
   border-radius: 0 0 50% 50%;
}
#MENU .inner { 
	width: 95%;
	margin: 0 auto 0 0;
}
.menu-head {
	position: absolute;
	right: 5%;
	background: var(--bg-lg);
	border-radius: 5px;
	padding: 3.5% 4.5% 0;
	height: 400px;
}
.menu-head-nav {
	position: absolute;
	right: 7%;
	top: 350px;
  gap: 7px;
  align-items: center;
	z-index: 5;
}
.menu-head-nav button,
.menu-content-dotnav a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
  text-decoration: none;
}
.menu-content-dotnav a img {
	width: 8px;
	height: auto;
}

.menu-head-nav button:hover,
.menu-content-dotnav a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.menu-content-wrap {
  position: relative;
  overflow: hidden;
  overflow-y: visible;
	padding-top: 100px;
}

.menu-num {
	position: absolute;
	left: 42.5%;
  color: #969696;
}
#currentSlide {
  font-size: 25px;
  font-weight: 700;
	color: #000;
}

.menu-content-slider {
  display: flex;
  transition: transform 0.5s ease, height 0.5s ease;
}

.menu-content {
	position: relative;
  min-width: 100%;
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-rows: auto auto;
  gap: 0 75px;
  align-items: start;
}
.menu-content-photo {
	position: relative;
  grid-column: 1;
  grid-row: 1 / 3;
	width: 100%;
	height: 55vw;
	min-height: 62.5%;
	max-height: calc(900px + 3vw);
  background-size: cover;
  background-position: center;
	overflow: hidden;
  border-radius: 5px;
	z-index: 2;
}
.menu-content-photo p {
	width: 100%;
	height: 100%;
}
.menu-content-txt {
  grid-column: 2;
  grid-row: 1;
	padding-top: 9vw;
}
.menu-content-txt h3 { 
	margin-bottom: 0;
  	font-size: clamp(20px, 2vw, 25px);
}
.menu-content-txt h3::before {
	top: 1em;
}
.menu-content-txt-inner {
	background: #FFF;
	border-radius: 5px;
	margin-right: 8.5vw;
	padding: 5.5% 8% 10% 0;
	min-height: 10em;
}
.menu-content-txt-info {
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 2vw 3vw;
	background: #FFF;
	min-height: 5vw;
}
.menu-content-txt-info.-blank {
	border: none;
}
.menu-content-txt-info h4 {
	position: relative;
	display: inline-block;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  color: var(--primary);
	padding-right: 100px;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
}
.menu-content-txt-info h4::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: -3vw;
	background: var(--primary);
}
.menu-content-txt-info-list {
	margin: 20px 0;
	border-bottom: 1px dashed var(--primary);
}
.menu-content-txt-info dl {
	display: flex;
	align-items: center;
	padding: 7px 0;
	border-top: 1px dashed var(--primary);
}
.menu-content-txt-info dl dt {
	position: relative;
	width: 7.5em;
	text-align: center;
  font-weight: bold;
  color: var(--primary);
}
.menu-content-txt-info dl dt::before {
	content: '';
	position: absolute;
	left: -3vw;
	top: 50%;
	width: 3vw;
	height: 1px;
	background: var(--primary);
	transform: translateY(-50%);
}
.menu-content-txt-info dl dt::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -4px;
	height: 100%;
	width: 1px;
	background: var(--primary);
	transform: skewX(-15deg) translateY(-50%);
}
.menu-content-txt-info dl dd {
	position: relative;
	width: calc(100% - 7.5em);
	padding-left: 1.5em;
}
.menu-content-txt-info dl dd::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	height: 100%;
	width: 1px;
	background: var(--primary);
	transform: skewX(-15deg) translateY(-50%);
}

.menu-content-flow {
  grid-column: 1 / 3;
  grid-row: 2;
	width: 95%;
	margin-left: 5%;
  border-radius: 5px;
  padding: 7.5vw 5% 5vw;
  background-color: var(--bg-lg);
	margin-top: 5vw;
}

.menu-content-flow-list-wrap h4.jpn {
	position: relative;
  writing-mode: vertical-rl;
  font-size: clamp(16px, 1.4vw, 20px);
	margin-right: 1.5em;
}
.menu-content-flow-list-wrap h4.jpn::before {
	position: absolute;
	content: '';
	left: 50%;
	top: -21.5vw;
	width: 1px;
	height: 20vw;
	background: #000;
	transform: translateX(-50%);
}
.menu-content-flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 1;
}

.flowbox {
  position: relative;
	flex-wrap: wrap;
	margin-left: 5px;
}
.flowbox::after {
  content: '';
  position: absolute;
	top: 14px;
	right: -17px;
	width: 30px;
	height: 10px;
	background: url("../img/icon-arrow.svg") center no-repeat;
	z-index: 3;
}
.flowbox:last-child::after { display: none; }

.flowbox-num {
	position: relative;
	background: #FFF;
	border-radius: 5px 5px 0 0;
	padding: 6px 0;
	width: 75px;
	text-align: center;
	z-index: 2;
}
.flowbox h5 {
	position: relative;
	padding: 3px 0 6px 1em;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--primary);
	border-radius: 0 0 0 5px;
	background: var(--bg-lg);
	width: calc(100% - 75px);
	z-index: 2;
}
.flowbox p {
	width: 100%;
	min-height: 9.5em;
	margin-top: -5px;
	padding: 1.3em 1em;
	border-radius: 5px;
	font-size: 13px;
	letter-spacing: 0;
	background: #FFF;
}
.menu-content-flow-comment {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid var(--primary);
}
.menu-content-flow-comment p { 
	font-size: 13px;
	margin-top: 20px;
}
.menu-content-dotnav {
  display: flex;
  align-items: center;
  justify-content: center;
	  gap: 50px;
	  margin-top: 10%;
}
.menu-content-dotnav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-content-dotnav ul li a {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  cursor: pointer;
	border: none;
  transition: background-color 0.3s, border-color 0.3s;
	background: var(--bg-lg);
}

.menu-content-dotnav ul li.is-active a {
  background-color: var(--primary);
  border-color: var(--primary);
}
.menu-content-dotnav {
	display: none!important;
}

/* ========== DOCTOR ========== */
#DOCTOR {
  position: relative;
	padding: 0;
	margin: 50px 0;
}
#DOCTOR .outer {
  position: relative;
  padding: 10% 75px 10% 0;
	margin: 0 0 0 15px;
	border-radius: 5px 0 0 5px;
	background: url("../img/bg-doctor.jpg") center no-repeat;
	background-size: cover;
}
#DOCTOR .outer::before {
  content: "";
  position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  background: rgba(255,255,255,0.7);
}

#DOCTOR .inner {
  position: relative;
}
#DOCTOR .inner h2 {
	position: absolute;
}
#DOCTOR .inner h2::before {
	left: inherit;
	right: -7vw;
}
.doctor-content {
  position: relative;
  z-index: 1;
	width: calc(100% - 17.5em);
	margin-left: 17.5em;
}
.doctor-card {
	position: relative;
	width: 40%;
	margin-left: 10px;
}
.doctor-card-photo {
	position: relative;
	padding: 4.5vw 4.5vw 2.5vw;
	background: #FFF;
	border-radius: 5px;
	cursor: pointer;
}
.doctor-card-photo span {
	position: absolute;
	right: 25px;
	bottom: 25px;
	width: 10px;
	height: 10px;
	transition: .3s linear;
}
.doctor-card-photo span::before,
.doctor-card-photo span::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 2px;
	background: var(--primary);
	transform: translate(-50%, -50%);
}
.doctor-card-photo span::after {
	transform: translate(-50%, -50%) rotate(90deg);
}
.doctor-card-photo:hover span {
	right: 20px;
	bottom: 20px;
	width: 20px;
	height: 20px;
}
.doctor-card-photo p, .doctor-card-profile-photo p {
	border-radius: 5px;
	overflow: hidden;
}
.doctor-card-photo p img {
	transition: .3s linear;
}
.doctor-card-photo:hover p img {
	transform: scale(1.1);
}
.doctor-card-name, .doctor-card-profile-name {
	margin-top: 1.2em;
	text-align: center;
}
.doctor-card-name strong, .doctor-card-profile-name strong {
	display: block;
	font-weight: bold;
	font-size: clamp(16px, 1.5vw, 22px);
}
.doctor-card-profile {
  position: fixed;
  flex-wrap: wrap;
  align-items: flex-start;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  z-index: 101;
  background: #fff;
  padding: 5vw;
  height: 90vh;
  width: 90vw;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  border-radius: 5px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.doctor-modal-container .doctor-card-profile {
  overflow: auto;
}
.doctor-card-profile.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.doctor-card-profile {
	justify-content: space-between;
}

.doctor-card-profile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background: none;
 border: none;
	border-radius: 5px;
  padding: 0;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
  z-index: 10;
}
.doctor-card-profile-close:hover {
  background-color: var(--primary);
}
.doctor-card-profile-close::before,
.doctor-card-profile-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 1px;
  background: var(--primary);
  transition: background-color 0.3s ease;
}
.doctor-card-profile-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.doctor-card-profile-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.doctor-card-profile-close:hover::before,
.doctor-card-profile-close:hover::after {
  background: #fff;
}
.doctor-card-profile-photo {
	width: 25%;
}
.doctor-card-profile-block {
  width: calc(75% - 5vw);
  font-size: 13px;
  letter-spacing: 0;
  max-height: calc(90vh - 10vw);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.doctor-card-profile-block h3 {
	color: var(--primary);
	margin-bottom: 5px;
}
.doctor-card-profile-block dl {
	display: flex;
	flex-wrap: wrap;
}
.doctor-card-profile-block dl dt {
	width: 6.5em;
}
.doctor-card-profile-block dl dd {
	width: calc(100% - 6.5em);
}
.doctor-card-profile-block ul {
	display: flex;
	flex-wrap: wrap;
}
.doctor-card-profile-block ul li {
	position: relative;
	padding-left: .5em;
	margin-left: .5em;
}
.doctor-card-profile-block ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 75%;
	background: #000;
	transform: translateY(-50%) skewX(-15deg);
}
.doctor-card-profile-block ul li:first-child {
	padding-left: 0;
	margin-left: 0;
}
.doctor-card-profile-block ul li:first-child::before {
	display: none;
}
.doctor-card-txt-profile, .doctor-card-txt-history {
	margin-bottom: 30px;
}



/* ========== CONTACT ========== */
#CONTACT {
	background: url("../img/bg-contact01.png") top left no-repeat;
	background-size: 37.5% auto;
	padding-bottom: 50px;
}
#CONTACT::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 15%;
	height: 100%;
	background: url("../img/bg-contact02.png") bottom right no-repeat;
	background-size: 100% auto;
}
#CONTACT .outer {
  position: relative;
}

#CONTACT .inner {
  display: block;
	width: 60%;
  margin: 0 auto;
}

#CONTACT h2 {
	margin-bottom: 100px;
}
.contact-content-txt {
  margin-bottom: 100px;
	line-height: 2.2;
}

.contanct-content-form dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  margin-bottom: 50px;
}

.contanct-content-form dt {
  padding: 25px 0;
}
.contanct-content-form .mw_wp_form_confirm dt {
	font-weight: bold;
}

.contanct-content-form dt span {
  color: #c00;
  margin-right: 4px;
}

.contanct-content-form dd {
  padding: 15px 0;
}
.contanct-content-form .mw_wp_form_confirm dd {
	padding: 1.5em 0;
}
.contanct-content-form input,
.contanct-content-form textarea {
  width: 100%;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 12px 16px;
  color: #555;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
  box-sizing: border-box;
}

.contanct-content-form input:focus,
.contanct-content-form textarea:focus { border-color: var(--primary); }

.contanct-content-form textarea { resize: vertical; }

.privacypolicy {
  background-color: var(--bg-lg);
  border-radius: 5px;
  padding: 5%;
  margin-bottom: 75px;
}

.privacypolicy strong {
  display: block;
  margin-bottom: 25px;
}

.privacypolicy p {
  line-height: 2;
	font-size: 13px;
}

.contanct-content-form button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
	font-size: 18px;
  margin: 0 auto;
  padding: 12px 100px;
	letter-spacing: .15em;
	font-weight: bold;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contanct-content-form button[type="submit"]::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 1px solid #FFF;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 8"><polygon fill="%23ffffff" points="6.37 .94 5.66 1.65 7.52 3.5 .57 3.5 .57 4.5 7.52 4.5 5.66 6.35 6.37 7.06 9.43 4 6.37 .94"/></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px auto;
	transform: translateY(-50%);
}

.contanct-content-form button[type="submit"] span {
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,.35);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease;
  z-index: -1;
}

.contanct-content-form button[type="submit"].is-hovered span { clip-path: inset(0 0% 0 0); }
.contanct-content-form button[type="submit"].is-leaving span { clip-path: inset(0 0% 0 100%); }


.contact-parallax {
  position: absolute;
	width: 100%;
	height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.contact-parallax-circle {
  position: absolute;
}
.contact-parallax-circle img {
}

.contact-parallax-circle:nth-child(1) { width: 5vw; aspect-ratio: 1; left: 10vw; top: 10%; }
.contact-parallax-circle:nth-child(2) { width: 6vw; aspect-ratio: 1; right: 6vw; top: 45%; }
.contact-parallax-circle:nth-child(3) { width: 5vw; aspect-ratio: 1; right: 15vw; bottom: 5%; }

.mwform-zip-field {
	display: block;
}
.mw_wp_form_complete {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 30.5em;
	font-size: clamp(16px, 1.5vw, 25px);
	line-height: 2.2;
	text-align: center;
	font-weight: bold;
	background: var(--bg-lg);
	border-radius: 5px;
}
.mw_wp_form_error input[type="text"],
.mw_wp_form_error input[type="email"],
.mw_wp_form_error textarea {
    background-color: #fff0f0 !important;
    border: 1px solid #ffcccc !important;
}
#CONTACT .mw_wp_form .mw_wp_form_error .error { display: none; }

.confirmandsend.-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.btn-wrapper {
	position: relative;
	width: 47.5%;
} 
.btn-wrapper::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 1px solid #FFF;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 8"><polygon fill="%23ffffff" points="6.37 .94 5.66 1.65 7.52 3.5 .57 3.5 .57 4.5 7.52 4.5 5.66 6.35 6.37 7.06 9.43 4 6.37 .94"/></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px auto;
	transform: translateY(-50%);
} 
.btn-wrapper.-back::after {
	left: 15px;
	right: auto;
	transform: translateY(-50%) scaleX(-1);
}
.confirmandsend input[type="submit"] {
	  display: flex;
	  align-items: center;
	  justify-content: center;
		font-size: 18px;
	  margin: 0 auto;
	  padding: 12px 0;
		letter-spacing: .15em;
		font-weight: bold;
	  background-color: var(--primary);
	  color: #fff;
	  border: none;
	  border-radius: 5px;
	  cursor: pointer;
	  overflow: hidden;
	transition: .3s linear;
}
.confirmandsend input[type="submit"] {
    background-color: var(--primary);
}
.confirmandsend .-back input[type="submit"] {
    background-color: #999;
}
.confirmandsend input[type="submit"]:hover {
    opacity: 0.8;
}



/* ========== ACCESS ========== */
#ACCESS {
	padding-top: 300px;
	padding-right: 0;
	background-image: repeating-linear-gradient(60deg, rgba(70,110,75,.65), rgba(70,110,75,.65) 1px, transparent 1px, transparent 16px);
	overflow: hidden;
}
#ACCESS::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2.5%;
    width: 105%;
    height: 150px;
    background-color: #FFF;
    border-radius: 0 0 50% 50%;
}
#ACCESS .inner { display: block; }
#ACCESS h2 { margin-bottom: 100px; }

.access-content-googlemap {
  width: 100%;
  height: 550px;
	border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.access-content-googlemap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.access-content-txt {
	position: relative;
  display: flex;
	align-items: flex-end;
  justify-content: space-between;
  padding: 5vw 8vw;
  width: 100%;
	background: #FFF;
	border-radius: 0 0 5px 5px;
}
.access-content-txt::before {
	content: '';
	position: absolute;
	left: 50%;
	top: calc(5vw + 1px);
	width: calc(100% - 16vw);
	height: 1px;
	background: #c8c8c8;
	transform: translateX(-50%);
}
.address {
	position: relative;
	border-top: 3px solid var(--primary);
	padding-top: 5vw;
	z-index: 3;
}
.address strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2em;
	line-height: 1;
}
.address p {
  line-height: 2;
}
.train {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}
.train::after {
  content: "";
  position: absolute;
  right: 15em;
  bottom: 0;
  width: 2px;
	height: 200%;
  background: var(--primary);
  transform: skewX(-15deg);
}
.gmap {
	position: relative;
	margin-top: 10px;
	padding-left: 20px;
	background: url("../img/icon-map.svg") left .5em no-repeat;
	background-size: 13px auto;
}
.gmap a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  padding-bottom: 7px;
}
.gmap a:hover {
	color: var(--primary); 
}
.gmap a::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #000;
	transition: .3s linear;
}
.gmap a:hover::after {
	bottom: 3px;
	background: var(--primary);
}
.gmap a .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	margin-left: 20px;
	border-radius: 50%;
	border: 1px solid #c8c8c8;
	transition: .3s linear;
}
.gmap a .icon img {
	width: 8px;
	height: auto;
}
.gmap a:hover .icon {
	border-color: var(--primary); 
}

/* ========== FOOTER ========== */
footer {
  position: relative;
	margin: 15px;
	overflow: hidden;
	border-radius: 5px;
}

/* クロスフェードスライダー */
.footer-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer-slide ul {
  position: relative;
  width: 100%;
  height: 100%;
}
.footer-slide ul li {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 3s ease;
}
.footer-slide ul li.is-active {
  opacity: 1;
}
.footer-slide ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-wrap {
	position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 32em 1fr auto;
  grid-template-rows: auto auto auto auto;
  padding: 0 5% 20px;
  color: #fff;
	background: rgba(0,0,0,.3);
}
.footer-logo {
  grid-column: 1;
  grid-row: 1;
	height: 45px;
	margin-top: 60px;
  margin-bottom: 100px;
}
.footer-logo img {
	width: auto;
	height: 100%;
}
.footer-nav-block {
  grid-column: 3;
  grid-row: 1 / 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.footer-nav a {
	position: relative;
	display: block;
	writing-mode: vertical-rl;
	color: #FFF;
	margin: 0 0 0 30px;
	padding-top: 60px;
	transition: color 0.3s;
	line-height: 1;
}
.footer-nav a:hover { 
	color: var(--primary);
}
.footer-nav a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 12px;
	height: 40px;
	width: 1px;
	background: #FFF;
	transform: skewX(-15deg);
	transition: .3s linear;
}
.footer-nav a:hover::before {
	background: var(--primary);
}

.open-close {
  grid-column: 1;
  grid-row: 2;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	line-height: 1;
	margin-left: 40px;
}
.open-close > div {
	padding: 2.5em 0;
}
.open-close > div:first-child {
	border-bottom: 1px solid #FFF;
}
.open-close strong {
  display: block;
	margin-bottom: 1.5em;
}
.open-close dl, .open-close p {
	font-size: 13px;
}
.open-close dt, .side-open-close dt {
	position: relative;
	padding-left: 1em;
	margin: 0 .5em 0 1em;
}
.open-close dt:first-child, .side-open-close dt:first-child {
	padding-left: 0;
	margin-left: 0;
}
.open-close dt::before, .side-open-close dt::before {
	content: '';
	top: 0;
	left: 0;
	position: absolute;
	width: 1px;
	height: 100%;
	background: #FFF;
	transform: skewX(-15deg);
}
.open-close dt:first-child::before, .side-open-close dt:first-child::before {
	display: none;
}

.footer-links {
  grid-column: 2 / 4;
  grid-row: 2;
	margin-left: 5vw;
	margin-top: 25px;
}

.footer-links .-flex {
	flex-wrap: wrap;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,1);
  border-radius: 5px;
  overflow: hidden;
}

.footer-links-phone,
.footer-links-contact { 
	position: relative;
	width: 52.5%;
	height: 6.5em;
}
.footer-links-contact {
	width: 47.5%;
}

.footer-links-phone::after { 
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 50%;
	background: #FFF;
	transform: translateY(-50%) skewX(-15deg);
}

.footer-links-phone a,
.footer-links-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
	height: 100%;
  text-decoration: none;
  color: #fff;
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
.footer-links-contact a {
  font-size: clamp(15px, 1.5vw, 22px);
}
.footer-links-phone a::before,
.footer-links-contact a::before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 1vw;
	background-size: contain;
}
.footer-links-phone a::before { 
	background: url('data:image/svg+xml,<svg fill="%23FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M3.54.96c1.28-1.28,3.35-1.28,4.63,0,.09.1.18.2.27.3l3.37,4.32c.62.79.83,1.83.59,2.8l-1.03,4.11c-.11.43.02.89.33,1.21l4.61,4.61c.32.31.77.44,1.21.33l4.1-1.03c.97-.24,2.01-.02,2.8.59l4.32,3.36c1.55,1.21,1.7,3.51.31,4.9l-1.94,1.94c-1.39,1.39-3.46,2-5.39,1.32-4.95-1.74-9.44-4.57-13.14-8.29C4.85,17.73,2.02,13.24.28,8.29c-.68-1.93-.07-4.01,1.32-5.39l1.94-1.94Z"/></svg>') center no-repeat;
}
.footer-links-contact a::before { 
	background: url('data:image/svg+xml,<svg fill="%23FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M15,16.99l15-8.62v-2.18c0-1.28-1.04-2.32-2.32-2.32H2.32c-1.28,0-2.32,1.04-2.32,2.32v2.18l15,8.62Z"/><path class="cls-1" d="M15,19.55L0,10.94v12.87c0,1.28,1.04,2.32,2.32,2.32h25.36c1.28,0,2.32-1.04,2.32-2.32v-12.87l-15,8.62h0Z"/></svg>') center no-repeat;
}

.footer-links-phone a span,
.footer-links-contact a span {
  position: absolute;
	display: block;
	height: 100%;
  inset: 0;
  background-color: rgba(255,255,255,0.15);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease;
  z-index: -1;
}

.footer-links-phone a::after,
.footer-links-contact a::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
	margin-left: 1vw;
  border: 1px solid rgba(255,255,255,1);
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 8"><polygon fill="%23ffffff" points="6.37 .94 5.66 1.65 7.52 3.5 .57 3.5 .57 4.5 7.52 4.5 5.66 6.35 6.37 7.06 9.43 4 6.37 .94"/></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.footer-links-phone a.is-hovered span,
.footer-links-contact a.is-hovered span { clip-path: inset(0 0% 0 0); }

.footer-links-phone a.is-leaving span,
.footer-links-contact a.is-leaving span { clip-path: inset(0 0% 0 100%); }

.footer-address {
  grid-column: 3;
  grid-row: 3;
  text-align: right;
  font-size: 13px;
  line-height: 2;
}

.copyright {
  grid-column: 1 / 4;
  grid-row: 4;
  text-align: right;
  font-size: 10px;
  padding-top: 5em;
}

header {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
header * {
  pointer-events: auto;
}
header.is-loaded {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-img {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-img.is-loaded {
  clip-path: inset(0 0% 0 0);
}
.hero-mess .h2-line {
  display: block;
  overflow: hidden;
}
.hero-mess .h2-line-inner {
  display: block;
  transform: translateY(-110%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-mess.is-loaded .h2-line-inner {
  transform: translateY(0);
}
.hero-mess .h2-line:nth-child(2) .h2-line-inner { transition-delay: 0.1s; }
.hero-mess .h2-line:nth-child(3) .h2-line-inner { transition-delay: 0.2s; }
.hero-links {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-links.is-loaded {
  opacity: 1;
}
.hero-parallax {
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-parallax.is-loaded {
  opacity: 1;
}
.content-photo-top p,
.content-photo-bottom p,
.menu-content-photo p,
.doctor-card-photo p,
.news-content-photo p {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.content-photo-top.is-revealed p,
.content-photo-bottom.is-revealed p,
.menu-content-photo.is-revealed p,
.doctor-card-photo.is-revealed p,
.news-content-photo.is-revealed p {
  clip-path: inset(0 0% 0 0);
}
.inner h2 .h2-line {
  display: block;
  overflow: hidden;
}
.inner h2 .h2-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.inner h2.is-revealed .h2-line-inner {
  transform: translateY(0);
}
.inner h2 .h2-line:nth-child(2) .h2-line-inner { transition-delay: 0.08s; }
.inner h2 .h2-line:nth-child(3) .h2-line-inner { transition-delay: 0.16s; }

#NEWS .inner h2 .h2-line-inner,
#MENU .inner h2 .h2-line-inner,
#DOCTOR .inner h2 .h2-line-inner {
  transform: translateX(110%);
}
#NEWS .inner h2.is-revealed .h2-line-inner,
#MENU .inner h2.is-revealed .h2-line-inner,
#DOCTOR .inner h2.is-revealed .h2-line-inner {
  transform: translateX(0);
}
