@charset "UTF-8";

html, :root {
  scroll-behavior: smooth;
  --sh-global-width: 100rem;
  --sh-header-height: 50px;
  --sh-header-height-pc: 84px;
  --sh-color-primary: #BE1A21;
  --sh-color-secondary: #9E222B;
  --sh-color-accent: #F4A47A;
  --sh-color-bg: #fff;
  --sh-color-text: #464646;
  --sh-color-textdarker: #000;
  --sh-color-textlight: #666;
  --sh-color-darkgray: #444;
  --sh-color-gray: #666;
  --sh-color-lightgray: #999;
  --sh-color-gradient-primary: #FF000B;
  --sh-gradient-primary: linear-gradient(90deg, rgba(255, 0, 11, 1) 0%, rgba(237, 167, 24, 1) 100%);
  --sh-color-gradient-secondary: #065AA1;
  --sh-gradient-secondary: linear-gradient(140deg,rgba(6, 90, 161, 1) 0%, rgba(22, 156, 126, 1) 100%);
  --sh-gradient-corporate: linear-gradient(115deg,rgba(190, 26, 33, 1) 0%, rgba(237, 167, 24, 1) 36%, rgba(22, 156, 126, 1) 66%, rgba(6, 90, 161, 1) 100%);
  --sh-fontfamily-sansserif: "Noto Sans JP", "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック","Helvetica Neue","Helvetica","Arial",sans-serif;
  --sh-fontfamily-serif: "Noto Serif JP", sans-serif;
  --sh-fontfamily-roboto: "Roboto", sans-serif;
  --sh-fontfamily-robotoc: "Roboto Condensed", sans-serif;
  --sh-fontfamily-titillium: "Titillium Web", sans-serif;
  --sh-fontfamily-bebasneue: "Bebas Neue", sans-serif;
  --sh-fontfamily-anton: "Anton", sans-serif;
  --sh-fontfamily-cabin: "Cabin", sans-serif;
  --sh-fontsize-xs: 1.2rem;
  --sh-fontsize-s: 1.4rem;
  --sh-fontsize-base: 1.6rem;
  --sh-fontsize-l: 1.8rem;
  --sh-fontsize-xl: 2.2rem;
  --sh-zindex-loading: 990;
  --sh-zindex-gnavbtn: 902;
  --sh-zindex-gnav: 901;
  --sh-zindex-overlay: 900;
  --sh-zindex-header: 810;
  --sh-zindex-float: 700;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  font-size: 10px;
}

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

ul[role=list], ol[role=list] {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.75;
  font-size: var(--sh-fontsize-base);
  color: var(--sh-color-text);
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

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

img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

body {
  overflow-x: clip;
  font-family: var(--sh-fontfamily-sansserif);
  color: var(--sh-color-text);
  background: var(--sh-color-bg);
}
@media not all and (min-width: 768px) {
  body {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
body::after {
  content: "";
  display: block;
  position: fixed;
  z-index: var(--sh-zindex-overlay);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--sh-global-width);
  width: calc(100% - 2rem);
}
@media (min-width: 768px) {
  .container {
    width: calc(100% - 4rem);
  }
}
@media (min-width: 1024px) {
  .container {
    width: calc(100% - 5.4rem);
  }
}

.main-sections {
  overflow-x: clip;
  overflow-y: visible;
}

.movie-canvas {
  position: relative;
  padding-top: 56.25%;
}
.movie-canvas > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.common-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--sh-zindex-header);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: var(--sh-header-height);
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .common-header {
    height: var(--sh-header-height-pc);
    padding: 0 37px;
  }
}
.common-header > .container {
  height: 43px;
}
@media (min-width: 768px) {
  .common-header > .container {
    height: 85px;
  }
}

.site-logo {
  width: auto;
  height: 40px;
}
@media (min-width: 768px) {
  .site-logo {
    width: 213px;
    height: 45px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.mainvisual {
  padding: 5rem 1rem;
  height: auto;
  background: url(../img/mv-bg.jpg) no-repeat center center;
  background-size: 110% 100%;
}
@media (min-width: 768px) {
  .mainvisual {
    padding: 8.4rem 3rem;
    background-size: 1484px 100%;
  }
}
.mainvisual > img {
  border-radius: 2vw;
  width: 1309px;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) {
  .mainvisual > img {
    border-radius: 30px;
  }
}

.btn-menu {
  position: fixed;
  z-index: var(--sh-zindex-gnavbtn);
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (min-width: 768px) {
  .btn-menu {
    top: 0;
    width: 84px;
    height: 84px;
  }
}
@media not all and (min-width: 768px) {
  .is-menuopen .btn-menu {
    position: fixed;
    top: 0;
  }
}
.btn-menu::before, .btn-menu::after,
.btn-menu > span {
  display: block;
  width: 24px;
  height: 3px;
  background: #707070;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-menu::before, .btn-menu::after,
.btn-menu > span {
    width: 40px;
    height: 3px;
  }
}
.btn-menu::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .btn-menu::before {
    top: 25px;
  }
}
.btn-menu > span {
  position: relative;
}
.btn-menu::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .btn-menu::after {
    bottom: 25px;
  }
}
.btn-menu:hover {
  background: rgba(0, 0, 0, 0.3);
}
.is-menuopen .btn-menu::before {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.is-menuopen .btn-menu > span {
  opacity: 0;
}
.is-menuopen .btn-menu::after {
  bottom: auto;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.footer-banner {
  margin-top: 6rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-banner {
    margin-top: 13rem;
    margin-bottom: 9rem;
  }
}
.footer-banner > .link {
  display: block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: url(../img/banner-stemhealer_hover.jpg) no-repeat center center/contain;
}
.footer-banner > .link > .img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-banner > .link:hover > .img {
  opacity: 0;
}

.common-footer {
  background: #3E2714;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
  color: #fff;
}

.copyright {
  margin: 0 auto;
  width: 320px;
  border-top: 1px solid #fff;
  padding-top: 0.5em;
  text-align: center;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .copyright {
    width: 386px;
    font-size: inherit;
  }
}

._tdu {
  text-decoration: underline;
}

._tac {
  text-align: center;
}

._tar {
  text-align: right;
}

._img-left {
  margin-left: 0;
}

._img-right {
  margin-right: 0;
}

._clear {
  clear: both;
}

._clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

._ro {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
._ro:hover {
  opacity: 0.5;
}

._full-w {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media (min-width: 640px) {
  ._for-sp {
    display: none !important;
  }
}
@media not all and (min-width: 640px) {
  ._for-pc {
    display: none !important;
  }
}
.fadein-up {
  opacity: 0;
  -webkit-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.fadein-up.is-animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fade-in span {
  opacity: 0;
}
.fade-in.is-animate span {
  -webkit-animation: fadeIn 0.3s forwards;
  animation: fadeIn 0.3s forwards;
}
.fade-in.is-animate span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.fade-in.is-animate span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.fade-in.is-animate span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.fade-in.is-animate span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.fade-in.is-animate span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.fade-in.is-animate span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.fade-in.is-animate span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.fade-in.is-animate span:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.fade-in.is-animate span:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.fade-in.is-animate span:nth-child(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.fade-in.is-animate span:nth-child(11) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.fade-in.is-animate span:nth-child(12) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.fade-in.is-animate span:nth-child(13) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.fade-in.is-animate span:nth-child(14) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.fade-in.is-animate span:nth-child(15) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.fade-in.is-animate span:nth-child(16) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.fadein {
  opacity: 0;
  -webkit-transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fadein.is-animate {
  opacity: 1;
}

.fadein-left {
  opacity: 0;
  -webkit-transform: translateX(3rem);
  transform: translateX(3rem);
  -webkit-transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 768px) {
  .fadein-left {
    -webkit-transform: translateX(6rem);
    transform: translateX(6rem);
  }
}
.fadein-left.is-animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadein-right {
  opacity: 0;
  -webkit-transform: translateX(-3rem);
  transform: translateX(-3rem);
  -webkit-transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 768px) {
  .fadein-right {
    -webkit-transform: translateX(-6rem);
    transform: translateX(-6rem);
  }
}
.fadein-right.is-animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadein-scale {
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.fadein-scale.is-animate {
  opacity: 1;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.image-slide-in img {
  width: 0;
  margin-left: auto;
}
.image-slide-in.is-animate img {
  -webkit-animation: imgSlideIn 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation: imgSlideIn 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.image-slide-in.is-animate .item:nth-child(1) img {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.image-slide-in.is-animate .item:nth-child(2) img {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.image-slide-in.is-animate .item:nth-child(3) img {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.image-slide-in.is-animate .item:nth-child(4) img {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.text-slide-in span {
  opacity: 0;
}
.text-slide-in.is-animate span {
  display: inline-block;
  -webkit-animation: slideIn 0.3s forwards;
  animation: slideIn 0.3s forwards;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
}
.text-slide-in.is-animate span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.text-slide-in.is-animate span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.text-slide-in.is-animate span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.text-slide-in.is-animate span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.text-slide-in.is-animate span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.text-slide-in.is-animate span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.text-slide-in.is-animate span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.text-slide-in.is-animate span:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.text-slide-in.is-animate span:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.text-slide-in.is-animate span:nth-child(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.text-slide-in.is-animate span:nth-child(11) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.text-slide-in.is-animate span:nth-child(12) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.text-slide-in.is-animate span:nth-child(13) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.text-slide-in.is-animate span:nth-child(14) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.text-slide-in.is-animate span:nth-child(15) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.text-slide-in.is-animate span:nth-child(16) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.text-slide-in.is-animate span:nth-child(17) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.text-slide-in.is-animate span:nth-child(18) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.text-slide-in.is-animate span:nth-child(19) {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.text-slide-in.is-animate span:nth-child(20) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.text-slide-in.is-animate span:nth-child(21) {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
.text-slide-in.is-animate span:nth-child(22) {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}
.text-slide-in.is-animate span:nth-child(23) {
  -webkit-animation-delay: 2.3s;
  animation-delay: 2.3s;
}
.text-slide-in.is-animate span:nth-child(24) {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}
.text-slide-in.is-animate span:nth-child(25) {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes imgSlideIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes imgSlideIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: scale(1.025, 0.975);
    transform: scale(1.025, 0.975);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: scale(1.025, 0.975);
    transform: scale(1.025, 0.975);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@-webkit-keyframes sway {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@keyframes sway {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@-webkit-keyframes turn {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  90% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  95% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes turn {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  90% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  95% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes lightning {
  0% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  1% {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
  2% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  98% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  99% {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
  100% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
}
@keyframes lightning {
  0% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  1% {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
  2% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  98% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  99% {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
  100% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
}
@-webkit-keyframes changeTochi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes changeTochi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes changeKodate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes changeKodate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes changeMansion {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes changeMansion {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes changeJigyo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes changeJigyo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes progressAnimation {
  0% {
    background: conic-gradient(#4CAF50 0%, transparent 0%);
  }
  1% {
    background: conic-gradient(#4CAF50 1%, transparent 0%);
  }
  2% {
    background: conic-gradient(#4CAF50 2%, transparent 0%);
  }
  3% {
    background: conic-gradient(#4CAF50 3%, transparent 0%);
  }
  4% {
    background: conic-gradient(#4CAF50 4%, transparent 0%);
  }
  5% {
    background: conic-gradient(#4CAF50 5%, transparent 0%);
  }
  6% {
    background: conic-gradient(#4CAF50 6%, transparent 0%);
  }
  7% {
    background: conic-gradient(#4CAF50 7%, transparent 0%);
  }
  8% {
    background: conic-gradient(#4CAF50 8%, transparent 0%);
  }
  9% {
    background: conic-gradient(#4CAF50 9%, transparent 0%);
  }
  10% {
    background: conic-gradient(#4CAF50 10%, transparent 0%);
  }
  11% {
    background: conic-gradient(#4CAF50 11%, transparent 0%);
  }
  12% {
    background: conic-gradient(#4CAF50 12%, transparent 0%);
  }
  13% {
    background: conic-gradient(#4CAF50 13%, transparent 0%);
  }
  14% {
    background: conic-gradient(#4CAF50 14%, transparent 0%);
  }
  15% {
    background: conic-gradient(#4CAF50 15%, transparent 0%);
  }
  16% {
    background: conic-gradient(#4CAF50 16%, transparent 0%);
  }
  17% {
    background: conic-gradient(#4CAF50 17%, transparent 0%);
  }
  18% {
    background: conic-gradient(#4CAF50 18%, transparent 0%);
  }
  19% {
    background: conic-gradient(#4CAF50 19%, transparent 0%);
  }
  20% {
    background: conic-gradient(#4CAF50 20%, transparent 0%);
  }
  21% {
    background: conic-gradient(#4CAF50 21%, transparent 0%);
  }
  22% {
    background: conic-gradient(#4CAF50 22%, transparent 0%);
  }
  23% {
    background: conic-gradient(#4CAF50 23%, transparent 0%);
  }
  24% {
    background: conic-gradient(#4CAF50 24%, transparent 0%);
  }
  25% {
    background: conic-gradient(#4CAF50 25%, transparent 0%);
  }
  26% {
    background: conic-gradient(#4CAF50 26%, transparent 0%);
  }
  27% {
    background: conic-gradient(#4CAF50 27%, transparent 0%);
  }
  28% {
    background: conic-gradient(#4CAF50 28%, transparent 0%);
  }
  29% {
    background: conic-gradient(#4CAF50 29%, transparent 0%);
  }
  30% {
    background: conic-gradient(#4CAF50 30%, transparent 0%);
  }
  31% {
    background: conic-gradient(#4CAF50 31%, transparent 0%);
  }
  32% {
    background: conic-gradient(#4CAF50 32%, transparent 0%);
  }
  33% {
    background: conic-gradient(#4CAF50 33%, transparent 0%);
  }
  34% {
    background: conic-gradient(#4CAF50 34%, transparent 0%);
  }
  35% {
    background: conic-gradient(#4CAF50 35%, transparent 0%);
  }
  36% {
    background: conic-gradient(#4CAF50 36%, transparent 0%);
  }
  37% {
    background: conic-gradient(#4CAF50 37%, transparent 0%);
  }
  38% {
    background: conic-gradient(#4CAF50 38%, transparent 0%);
  }
  39% {
    background: conic-gradient(#4CAF50 39%, transparent 0%);
  }
  40% {
    background: conic-gradient(#4CAF50 40%, transparent 0%);
  }
  41% {
    background: conic-gradient(#4CAF50 41%, transparent 0%);
  }
  42% {
    background: conic-gradient(#4CAF50 42%, transparent 0%);
  }
  43% {
    background: conic-gradient(#4CAF50 43%, transparent 0%);
  }
  44% {
    background: conic-gradient(#4CAF50 44%, transparent 0%);
  }
  45% {
    background: conic-gradient(#4CAF50 45%, transparent 0%);
  }
  46% {
    background: conic-gradient(#4CAF50 46%, transparent 0%);
  }
  47% {
    background: conic-gradient(#4CAF50 47%, transparent 0%);
  }
  48% {
    background: conic-gradient(#4CAF50 48%, transparent 0%);
  }
  49% {
    background: conic-gradient(#4CAF50 49%, transparent 0%);
  }
  50% {
    background: conic-gradient(#4CAF50 50%, transparent 0%);
  }
  51% {
    background: conic-gradient(#4CAF50 51%, transparent 0%);
  }
  52% {
    background: conic-gradient(#4CAF50 52%, transparent 0%);
  }
  53% {
    background: conic-gradient(#4CAF50 53%, transparent 0%);
  }
  54% {
    background: conic-gradient(#4CAF50 54%, transparent 0%);
  }
  55% {
    background: conic-gradient(#4CAF50 55%, transparent 0%);
  }
  56% {
    background: conic-gradient(#4CAF50 56%, transparent 0%);
  }
  57% {
    background: conic-gradient(#4CAF50 57%, transparent 0%);
  }
  58% {
    background: conic-gradient(#4CAF50 58%, transparent 0%);
  }
  59% {
    background: conic-gradient(#4CAF50 59%, transparent 0%);
  }
  60% {
    background: conic-gradient(#4CAF50 60%, transparent 0%);
  }
  61% {
    background: conic-gradient(#4CAF50 61%, transparent 0%);
  }
  62% {
    background: conic-gradient(#4CAF50 62%, transparent 0%);
  }
  63% {
    background: conic-gradient(#4CAF50 63%, transparent 0%);
  }
  64% {
    background: conic-gradient(#4CAF50 64%, transparent 0%);
  }
  65% {
    background: conic-gradient(#4CAF50 65%, transparent 0%);
  }
  66% {
    background: conic-gradient(#4CAF50 66%, transparent 0%);
  }
  67% {
    background: conic-gradient(#4CAF50 67%, transparent 0%);
  }
  68% {
    background: conic-gradient(#4CAF50 68%, transparent 0%);
  }
  69% {
    background: conic-gradient(#4CAF50 69%, transparent 0%);
  }
  70% {
    background: conic-gradient(#4CAF50 70%, transparent 0%);
  }
  71% {
    background: conic-gradient(#4CAF50 71%, transparent 0%);
  }
  72% {
    background: conic-gradient(#4CAF50 72%, transparent 0%);
  }
  73% {
    background: conic-gradient(#4CAF50 73%, transparent 0%);
  }
  74% {
    background: conic-gradient(#4CAF50 74%, transparent 0%);
  }
  75% {
    background: conic-gradient(#4CAF50 75%, transparent 0%);
  }
  76% {
    background: conic-gradient(#4CAF50 76%, transparent 0%);
  }
  77% {
    background: conic-gradient(#4CAF50 77%, transparent 0%);
  }
  78% {
    background: conic-gradient(#4CAF50 78%, transparent 0%);
  }
  79% {
    background: conic-gradient(#4CAF50 79%, transparent 0%);
  }
  80% {
    background: conic-gradient(#4CAF50 80%, transparent 0%);
  }
  81% {
    background: conic-gradient(#4CAF50 81%, transparent 0%);
  }
  82% {
    background: conic-gradient(#4CAF50 82%, transparent 0%);
  }
  83% {
    background: conic-gradient(#4CAF50 83%, transparent 0%);
  }
  84% {
    background: conic-gradient(#4CAF50 84%, transparent 0%);
  }
  85% {
    background: conic-gradient(#4CAF50 85%, transparent 0%);
  }
  86% {
    background: conic-gradient(#4CAF50 86%, transparent 0%);
  }
  87% {
    background: conic-gradient(#4CAF50 87%, transparent 0%);
  }
  88% {
    background: conic-gradient(#4CAF50 88%, transparent 0%);
  }
  89% {
    background: conic-gradient(#4CAF50 89%, transparent 0%);
  }
  90% {
    background: conic-gradient(#4CAF50 90%, transparent 0%);
  }
  91% {
    background: conic-gradient(#4CAF50 91%, transparent 0%);
  }
  92% {
    background: conic-gradient(#4CAF50 92%, transparent 0%);
  }
  93% {
    background: conic-gradient(#4CAF50 93%, transparent 0%);
  }
  94% {
    background: conic-gradient(#4CAF50 94%, transparent 0%);
  }
  95% {
    background: conic-gradient(#4CAF50 95%, transparent 0%);
  }
  96% {
    background: conic-gradient(#4CAF50 96%, transparent 0%);
  }
  97% {
    background: conic-gradient(#4CAF50 97%, transparent 0%);
  }
  98% {
    background: conic-gradient(#4CAF50 98%, transparent 0%);
  }
  99% {
    background: conic-gradient(#4CAF50 99%, transparent 0%);
  }
  100% {
    background: conic-gradient(#4CAF50 100%, transparent 0%);
  }
}
@keyframes progressAnimation {
  0% {
    background: conic-gradient(#4CAF50 0%, transparent 0%);
  }
  1% {
    background: conic-gradient(#4CAF50 1%, transparent 0%);
  }
  2% {
    background: conic-gradient(#4CAF50 2%, transparent 0%);
  }
  3% {
    background: conic-gradient(#4CAF50 3%, transparent 0%);
  }
  4% {
    background: conic-gradient(#4CAF50 4%, transparent 0%);
  }
  5% {
    background: conic-gradient(#4CAF50 5%, transparent 0%);
  }
  6% {
    background: conic-gradient(#4CAF50 6%, transparent 0%);
  }
  7% {
    background: conic-gradient(#4CAF50 7%, transparent 0%);
  }
  8% {
    background: conic-gradient(#4CAF50 8%, transparent 0%);
  }
  9% {
    background: conic-gradient(#4CAF50 9%, transparent 0%);
  }
  10% {
    background: conic-gradient(#4CAF50 10%, transparent 0%);
  }
  11% {
    background: conic-gradient(#4CAF50 11%, transparent 0%);
  }
  12% {
    background: conic-gradient(#4CAF50 12%, transparent 0%);
  }
  13% {
    background: conic-gradient(#4CAF50 13%, transparent 0%);
  }
  14% {
    background: conic-gradient(#4CAF50 14%, transparent 0%);
  }
  15% {
    background: conic-gradient(#4CAF50 15%, transparent 0%);
  }
  16% {
    background: conic-gradient(#4CAF50 16%, transparent 0%);
  }
  17% {
    background: conic-gradient(#4CAF50 17%, transparent 0%);
  }
  18% {
    background: conic-gradient(#4CAF50 18%, transparent 0%);
  }
  19% {
    background: conic-gradient(#4CAF50 19%, transparent 0%);
  }
  20% {
    background: conic-gradient(#4CAF50 20%, transparent 0%);
  }
  21% {
    background: conic-gradient(#4CAF50 21%, transparent 0%);
  }
  22% {
    background: conic-gradient(#4CAF50 22%, transparent 0%);
  }
  23% {
    background: conic-gradient(#4CAF50 23%, transparent 0%);
  }
  24% {
    background: conic-gradient(#4CAF50 24%, transparent 0%);
  }
  25% {
    background: conic-gradient(#4CAF50 25%, transparent 0%);
  }
  26% {
    background: conic-gradient(#4CAF50 26%, transparent 0%);
  }
  27% {
    background: conic-gradient(#4CAF50 27%, transparent 0%);
  }
  28% {
    background: conic-gradient(#4CAF50 28%, transparent 0%);
  }
  29% {
    background: conic-gradient(#4CAF50 29%, transparent 0%);
  }
  30% {
    background: conic-gradient(#4CAF50 30%, transparent 0%);
  }
  31% {
    background: conic-gradient(#4CAF50 31%, transparent 0%);
  }
  32% {
    background: conic-gradient(#4CAF50 32%, transparent 0%);
  }
  33% {
    background: conic-gradient(#4CAF50 33%, transparent 0%);
  }
  34% {
    background: conic-gradient(#4CAF50 34%, transparent 0%);
  }
  35% {
    background: conic-gradient(#4CAF50 35%, transparent 0%);
  }
  36% {
    background: conic-gradient(#4CAF50 36%, transparent 0%);
  }
  37% {
    background: conic-gradient(#4CAF50 37%, transparent 0%);
  }
  38% {
    background: conic-gradient(#4CAF50 38%, transparent 0%);
  }
  39% {
    background: conic-gradient(#4CAF50 39%, transparent 0%);
  }
  40% {
    background: conic-gradient(#4CAF50 40%, transparent 0%);
  }
  41% {
    background: conic-gradient(#4CAF50 41%, transparent 0%);
  }
  42% {
    background: conic-gradient(#4CAF50 42%, transparent 0%);
  }
  43% {
    background: conic-gradient(#4CAF50 43%, transparent 0%);
  }
  44% {
    background: conic-gradient(#4CAF50 44%, transparent 0%);
  }
  45% {
    background: conic-gradient(#4CAF50 45%, transparent 0%);
  }
  46% {
    background: conic-gradient(#4CAF50 46%, transparent 0%);
  }
  47% {
    background: conic-gradient(#4CAF50 47%, transparent 0%);
  }
  48% {
    background: conic-gradient(#4CAF50 48%, transparent 0%);
  }
  49% {
    background: conic-gradient(#4CAF50 49%, transparent 0%);
  }
  50% {
    background: conic-gradient(#4CAF50 50%, transparent 0%);
  }
  51% {
    background: conic-gradient(#4CAF50 51%, transparent 0%);
  }
  52% {
    background: conic-gradient(#4CAF50 52%, transparent 0%);
  }
  53% {
    background: conic-gradient(#4CAF50 53%, transparent 0%);
  }
  54% {
    background: conic-gradient(#4CAF50 54%, transparent 0%);
  }
  55% {
    background: conic-gradient(#4CAF50 55%, transparent 0%);
  }
  56% {
    background: conic-gradient(#4CAF50 56%, transparent 0%);
  }
  57% {
    background: conic-gradient(#4CAF50 57%, transparent 0%);
  }
  58% {
    background: conic-gradient(#4CAF50 58%, transparent 0%);
  }
  59% {
    background: conic-gradient(#4CAF50 59%, transparent 0%);
  }
  60% {
    background: conic-gradient(#4CAF50 60%, transparent 0%);
  }
  61% {
    background: conic-gradient(#4CAF50 61%, transparent 0%);
  }
  62% {
    background: conic-gradient(#4CAF50 62%, transparent 0%);
  }
  63% {
    background: conic-gradient(#4CAF50 63%, transparent 0%);
  }
  64% {
    background: conic-gradient(#4CAF50 64%, transparent 0%);
  }
  65% {
    background: conic-gradient(#4CAF50 65%, transparent 0%);
  }
  66% {
    background: conic-gradient(#4CAF50 66%, transparent 0%);
  }
  67% {
    background: conic-gradient(#4CAF50 67%, transparent 0%);
  }
  68% {
    background: conic-gradient(#4CAF50 68%, transparent 0%);
  }
  69% {
    background: conic-gradient(#4CAF50 69%, transparent 0%);
  }
  70% {
    background: conic-gradient(#4CAF50 70%, transparent 0%);
  }
  71% {
    background: conic-gradient(#4CAF50 71%, transparent 0%);
  }
  72% {
    background: conic-gradient(#4CAF50 72%, transparent 0%);
  }
  73% {
    background: conic-gradient(#4CAF50 73%, transparent 0%);
  }
  74% {
    background: conic-gradient(#4CAF50 74%, transparent 0%);
  }
  75% {
    background: conic-gradient(#4CAF50 75%, transparent 0%);
  }
  76% {
    background: conic-gradient(#4CAF50 76%, transparent 0%);
  }
  77% {
    background: conic-gradient(#4CAF50 77%, transparent 0%);
  }
  78% {
    background: conic-gradient(#4CAF50 78%, transparent 0%);
  }
  79% {
    background: conic-gradient(#4CAF50 79%, transparent 0%);
  }
  80% {
    background: conic-gradient(#4CAF50 80%, transparent 0%);
  }
  81% {
    background: conic-gradient(#4CAF50 81%, transparent 0%);
  }
  82% {
    background: conic-gradient(#4CAF50 82%, transparent 0%);
  }
  83% {
    background: conic-gradient(#4CAF50 83%, transparent 0%);
  }
  84% {
    background: conic-gradient(#4CAF50 84%, transparent 0%);
  }
  85% {
    background: conic-gradient(#4CAF50 85%, transparent 0%);
  }
  86% {
    background: conic-gradient(#4CAF50 86%, transparent 0%);
  }
  87% {
    background: conic-gradient(#4CAF50 87%, transparent 0%);
  }
  88% {
    background: conic-gradient(#4CAF50 88%, transparent 0%);
  }
  89% {
    background: conic-gradient(#4CAF50 89%, transparent 0%);
  }
  90% {
    background: conic-gradient(#4CAF50 90%, transparent 0%);
  }
  91% {
    background: conic-gradient(#4CAF50 91%, transparent 0%);
  }
  92% {
    background: conic-gradient(#4CAF50 92%, transparent 0%);
  }
  93% {
    background: conic-gradient(#4CAF50 93%, transparent 0%);
  }
  94% {
    background: conic-gradient(#4CAF50 94%, transparent 0%);
  }
  95% {
    background: conic-gradient(#4CAF50 95%, transparent 0%);
  }
  96% {
    background: conic-gradient(#4CAF50 96%, transparent 0%);
  }
  97% {
    background: conic-gradient(#4CAF50 97%, transparent 0%);
  }
  98% {
    background: conic-gradient(#4CAF50 98%, transparent 0%);
  }
  99% {
    background: conic-gradient(#4CAF50 99%, transparent 0%);
  }
  100% {
    background: conic-gradient(#4CAF50 100%, transparent 0%);
  }
}
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
  }
}
@-webkit-keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.btn-wrap.-totop {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .btn-wrap.-totop {
    margin-bottom: 7rem;
  }
}

.btn-totop {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media not all and (min-width: 768px) {
  .btn-totop {
    font-size: 1.3rem;
  }
}
.btn-totop:hover > .icon {
  background: #FF914D;
}
.btn-totop > .icon {
  width: 60px;
  height: 60px;
  background: #3E2714;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-totop > .icon {
    width: 72px;
    height: 72px;
  }
}
.btn-totop > .txt {
  color: #3E2714;
  font-weight: 500;
}

.section-streaming {
  background: url(../img/streaming-bg.jpg) no-repeat center center/cover;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .section-streaming {
    padding: 10rem 0;
  }
}
.section-streaming > .container > .heading {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  font-family: var(--sh-fontfamily-serif);
}
@media (min-width: 768px) {
  .section-streaming > .container > .heading {
    margin-bottom: 4rem;
    font-size: 2.8rem;
    line-height: 4.8rem;
  }
}
@media not all and (min-width: 768px) {
  .section-streaming > .container > .heading br {
    display: none;
  }
}

.list-streaming {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1rem;
}
@media (min-width: 768px) {
  .list-streaming {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 4rem;
  }
}
@media (min-width: 1024px) {
  .list-streaming {
    gap: 3rem 5rem;
  }
}
.list-streaming > .item > .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}
.list-streaming > .item > .link {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 4rem;
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 1.3rem;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .list-streaming > .item > .link {
    font-size: 1.6rem;
    height: 5rem;
  }
}
.list-streaming > .item > .link:hover {
  background: #5CA9AF;
  border-color: #273131;
  color: #fff;
}
.list-streaming > .item > .link::after {
  content: "→";
  margin-left: 0.2rem;
}
.list-streaming > .item > .link.-coming-soon::before {
  content: "Coming Soon";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #999;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1.6rem;
  letter-spacing: 1px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list-streaming > .item > .link.-coming-soon:hover::before {
  opacity: 1;
}

.heading-primary {
  position: relative;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .heading-primary {
    margin-bottom: 9rem;
  }
}
.heading-primary > .en {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  font-family: var(--sh-fontfamily-anton);
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 768px) {
  .heading-primary > .en {
    font-size: 7.6rem;
  }
}
.heading-primary > .en > b {
  font-size: 5rem;
}
@media (min-width: 768px) {
  .heading-primary > .en > b {
    font-size: 10rem;
  }
}
.heading-primary > .ja {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .heading-primary > .ja {
    font-size: 2rem;
  }
}
.heading-primary::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: -0.5rem;
  left: 7%;
  width: calc(43% + 50vw);
  height: 30px;
  background: #E4E6EA;
}
@media (min-width: 768px) {
  .heading-primary::before {
    height: 45px;
  }
}

.section-special-thanks > .contents {
  position: relative;
  z-index: 3;
}
@media not all and (min-width: 768px) {
  .section-special-thanks > .contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem 4%;
  }
}

.list-special-thanks {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3.5%;
  padding-top: 3.5rem !important;
  padding-bottom: 3rem !important;
}
.list-special-thanks:nth-child(1) {
  padding-top: 0 !important;
  border-left: 2px solid #FF914D;
  border-bottom: 2px solid #FF914D;
}
.list-special-thanks:nth-child(3) {
  padding-bottom: 0 !important;
  border-right: 2px solid #FF914D;
  border-top: 2px solid #FF914D;
}
@media not all and (min-width: 768px) {
  .list-special-thanks {
    display: contents;
  }
}
.list-special-thanks > .item {
  width: 48%;
}
@media (min-width: 768px) {
  .list-special-thanks > .item {
    width: 31%;
  }
}
.list-special-thanks > .item > .photo {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
.list-special-thanks > .item > .photo > .en {
  position: absolute;
  bottom: 0.8rem;
  left: 1.2rem;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  font-family: var(--sh-fontfamily-anton);
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .list-special-thanks > .item > .photo > .en {
    bottom: 1rem;
    left: 1.5rem;
    font-size: 3rem;
  }
}
.list-special-thanks > .item > .name {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
}
@media (min-width: 768px) {
  .list-special-thanks > .item > .name {
    font-size: 2rem;
    margin: 3rem 0 2rem;
  }
}
@media (min-width: 768px) {
  .list-special-thanks > .item > p {
    line-height: 2;
  }
}
@media not all and (min-width: 768px) {
  .list-special-thanks > .item > p {
    font-size: 1.4rem;
  }
}

.list-staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4%;
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .list-staff {
    gap: 8rem;
  }
}
.list-staff > .item {
  width: 400px;
  max-width: 48%;
}
.list-staff > .item > .photo {
  overflow: hidden;
  border-radius: 16px;
}
.list-staff > .item > .position {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-family: var(--sh-fontfamily-serif);
  font-weight: 400;
  color: #939393;
  letter-spacing: 0.1rem;
}
@media (min-width: 768px) {
  .list-staff > .item > .position {
    margin-top: 3.5rem;
    font-size: 4rem;
    letter-spacing: 0.1em;
  }
}
.list-staff > .item > .name {
  margin: 1rem 0 0.5rem;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .list-staff > .item > .name {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .list-staff > .item > p {
    line-height: 2;
  }
}
@media not all and (min-width: 768px) {
  .list-staff > .item > p {
    font-size: 1.4rem;
  }
}

.credits {
  position: relative;
  z-index: 3;
  background: #FDF2CB;
  border: 2px solid #FF914D;
  border-radius: 20px;
  gap: 4.5%;
  line-height: 2;
  margin-top: 3rem;
  padding: 2rem 1rem;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .credits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-width: 3px;
    border-radius: 50px;
    margin-top: 9rem;
    padding: 4rem 1rem;
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .credits {
    padding: 5.5rem 0;
  }
}
.credits::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: -99px;
  left: -20px;
  width: 140px;
  height: 292px;
  background: url(../img/story-bg.svg) no-repeat right top/contain;
}
@media (min-width: 768px) {
  .credits::before {
    top: -198px;
    left: -57px;
    width: 279px;
    height: 585px;
  }
}
.credits > .left, .credits > .right {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .credits > .left {
    width: 40%;
  }
}
@media (min-width: 768px) {
  .credits > .right {
    width: 25%;
  }
}
.credits > .divider {
  width: 1px;
  background: #707070;
}

#gnav {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: var(--sh-zindex-gnav);
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: grid;
  place-items: center;
}
#gnav > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.is-menuopen #gnav {
  opacity: 1;
  pointer-events: initial;
}

.list-nav > .item {
  margin: 1em 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.is-menuopen .list-nav > .item {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.is-menuopen .list-nav > .item:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.is-menuopen .list-nav > .item:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.is-menuopen .list-nav > .item:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.is-menuopen .list-nav > .item:nth-child(4) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.is-menuopen .list-nav > .item:nth-child(5) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.list-nav > .item > .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 5rem;
  font-size: 2rem;
  color: inherit;
  text-decoration: none;
  padding: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .list-nav > .item > .link {
    font-size: 2.4rem;
  }
}
.list-nav > .item > .link:hover {
  color: #FF914D;
}
.list-nav > .item > .link:hover > span {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.list-nav > .item > .link > span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list-nav > .item > .link::before {
  display: block;
  border-style: solid;
  border-width: 0.6em 0.4em 0 0.4em;
  border-color: #FF914D transparent transparent transparent;
  margin-right: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form-section {
  margin-top: 6rem;
  margin-bottom: 10rem;
}

.contact-form-lead {
  margin-bottom: 4rem;
  line-height: 2;
  color: #656565;
}

.contact-form {
  max-width: 84rem;
  margin: 0 auto;
  background: #fff;
  padding: 4rem 3rem;
  border-radius: 30px;
  border: 4px solid #FF914D;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 5rem 7rem;
  }
}

.form-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.form-item {
  margin-bottom: 3rem;
}
.form-item:last-of-type {
  margin-bottom: 0;
}

.form-label {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #464646;
}
.form-label label {
  cursor: pointer;
}

.required {
  color: #BE1A21;
  font-size: 1.2rem;
  margin-left: 0.3em;
}

.form-input {
  margin: 0;
}
.form-input input,
.form-input textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.6rem;
  font-family: inherit;
  border: 1px solid #707070;
  border-radius: 10px;
  background: #fff;
  color: #464646;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.form-input input::-webkit-input-placeholder, .form-input textarea::-webkit-input-placeholder {
  color: #999;
}
.form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: #999;
}
.form-input input:-ms-input-placeholder, .form-input textarea:-ms-input-placeholder {
  color: #999;
}
.form-input input::-ms-input-placeholder, .form-input textarea::-ms-input-placeholder {
  color: #999;
}
.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #999;
}
.form-input input:focus,
.form-input textarea:focus {
  outline: none;
  border-color: #FF914D;
}
.form-input textarea {
  resize: vertical;
  min-height: 200px;
}

.form-submit {
  margin-top: 4rem;
  text-align: center;
}

.btn-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 352px;
  max-width: 100%;
  height: 82px;
  border: 2px solid #51A195;
  border-radius: 10px;
  background: #FCFFF2;
  color: #656565;
  font-size: 2.2rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: #FF914D;
  color: #fff;
  border-color: #FF914D;
}
.btn-submit::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid #656565;
  border-width: 1px 1px 0 0;
  top: calc(50% - 0.7rem);
  right: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-submit:hover::after {
  border-color: #fff;
}

/**
 * ** Swiper 3.3.1
 * ** Most modern mobile touch slider and framework with hardware accelerated transitions
 * **
 * ** http://www.idangero.us/swiper/
 * **
 * ** Copyright 2016, Vladimir Kharlampidi
 * ** The iDangero.us
 * ** http://www.idangero.us/
 * **
 * ** Licensed under MIT
 * **
 * ** Released on: February 7, 2016
 * **/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100%;
  position: relative;
}

.swiper-container-autoheight {
  height: auto;
}
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px;
}

.swiper-container-cube, .swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-flip .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-next {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.section-introduction {
  background: url(../img/introduction-bg.jpg) no-repeat center bottom/100% auto;
}

.intro-box {
  background: #7BCECB;
  padding: 2rem 1rem;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .intro-box {
    padding: 5rem 6.5rem;
    border-radius: 20px;
  }
}
.intro-box > .heading {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  font-family: var(--sh-fontfamily-serif);
}
@media (min-width: 768px) {
  .intro-box > .heading {
    font-size: 2.8rem;
    line-height: 4.8rem;
  }
}
@media not all and (min-width: 768px) {
  .intro-box > .heading br {
    display: none;
  }
}
.intro-box > p {
  line-height: 1.8;
  margin-top: 0.5em;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .intro-box > p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-top: 1.5em;
  }
}

.movie-wrap {
  max-width: 755px;
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .movie-wrap {
    padding: 10rem 0;
  }
}

.section-story, .section-special-thanks, .section-staff {
  position: relative;
}
.section-story::before, .section-special-thanks::before, .section-staff::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: -5px;
  right: -20px;
  width: 140px;
  height: 292px;
  background: url(../img/story-bg.svg) no-repeat right top/contain;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .section-story::before, .section-special-thanks::before, .section-staff::before {
    top: -10px;
    right: -106px;
    width: 279px;
    height: 585px;
  }
}

.section-story {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-story {
    margin-top: 5rem;
    margin-bottom: 9rem;
  }
}
.section-story > .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .section-story > .contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 5%;
  }
}
@media (min-width: 768px) {
  .section-story > .contents > .text {
    width: 50%;
    line-height: 2;
  }
}
.section-story > .contents > .photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .section-story > .contents > .photos {
    width: 45%;
  }
}
.section-story > .contents > .photos > .photo {
  overflow: hidden;
  border-radius: 30px 0 30px 0;
}

.section-special-thanks {
  margin-top: 4rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-special-thanks {
    margin-top: 14rem;
    margin-bottom: 10rem;
  }
}

.section-special-thanks {
  position: relative;
}
.section-special-thanks::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 45px;
  left: -20px;
  width: 140px;
  height: 292px;
  background: url(../img/story-bg.svg) no-repeat right top/contain;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .section-special-thanks::after {
    bottom: 45px;
    left: -70px;
    width: 279px;
    height: 585px;
  }
}

.section-staff {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .section-staff {
    margin-top: 15rem;
  }
}

.lower-introduction {
  background: #FFFFFF;
  border: 4px solid #FF914D;
  padding: 3.5rem 6.3rem;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .lower-introduction {
    margin-top: 6rem;
  }
}
.lower-introduction > .title {
  font-size: 2.8rem;
  line-height: 4.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--sh-fontfamily-serif);
}
.lower-introduction > p {
  line-height: 2;
}

.photo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 11rem;
}
@media (min-width: 768px) {
  .photo-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.photo-text > .photo {
  overflow: hidden;
  width: 44.8%;
  border-radius: 30px 0 30px 0;
}
.photo-text > .text {
  width: 50%;
}
.photo-text > .text > .heading {
  background: #FCFFF2;
  border: 1px solid #51A199;
  border-radius: 10px;
  padding: 1rem 1.9rem;
  font-family: var(--sh-fontfamily-serif);
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.photo-text > .text > .paragraph {
  line-height: 2;
}

.includes {
  position: relative;
  padding: 18.5rem 0;
  background: #F6FFF3;
}
.includes::before, .includes::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  background: #A3ECB1;
  width: 357px;
  height: 12px;
}
.includes::before {
  top: 0;
  right: 0;
  border-radius: 6px 0 0 6px;
}
.includes::after {
  bottom: 0;
  left: 0;
  border-radius: 0 6px 6px 0;
}
.includes > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.includes > .container > .text {
  position: relative;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
  padding: 2.8rem 0 2.8rem 1em;
}
.includes > .container > .text > span, .includes > .container > .text > small {
  position: relative;
  z-index: 1;
}
.includes > .container > .text > small {
  display: block;
  font-size: 2.2rem;
  text-align: right;
}
.includes > .container > .text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 50vw);
  height: 100%;
  z-index: 0;
  background: #ACACAC;
  mix-blend-mode: multiply;
}
.includes.-about-exosome {
  background: url("/stemhealer/img/about-exosome/about-exosome-include.jpg") no-repeat center center/cover;
}
.includes.-pediatric-care {
  background: url("/stemhealer/img/pediatric-care/include.jpg") no-repeat center center/cover;
}
.includes.-anti-aging {
  background: url("/stemhealer/img/anti-aging/include.jpg") no-repeat center center/cover;
}
.includes.-adult-care {
  background: url("/stemhealer/img/adult-care/include.jpg") no-repeat center center/cover;
}
.includes.-adult-care::before, .includes.-adult-care::after {
  background: #DBB6FD;
}
.includes.-health-maintenance {
  background: url("/stemhealer/img/health-maintenance/include.jpg") no-repeat center center/cover;
}
.includes.-health-maintenance::before, .includes.-health-maintenance::after {
  background: #A4FF98;
}

.about-exosome-contents {
  position: relative;
}
.about-exosome-contents::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: calc(50% - 50vw);
  width: 1365px;
  height: 2311px;
  background: url("/stemhealer/img/about-bg.jpg") no-repeat right bottom/auto;
}

.about-exosome-approach {
  position: relative;
  margin-top: 3rem;
  padding: 0 0 18.5rem;
  background: #FFF4E8;
}
.about-exosome-approach::before {
  content: "";
  display: block;
  margin-top: -1px;
  margin-bottom: 3rem;
  width: 100%;
  height: 8.3821376281vw;
  background: url("/stemhealer/img/about-exosome/wave.png") no-repeat center top/100% 100%;
}
.about-exosome-approach > .container > .title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #464646;
  margin: 0 auto 3rem;
  padding-bottom: 0.5em;
  font-family: var(--sh-fontfamily-serif);
  font-size: 2.8rem;
  font-weight: 600;
}
.about-exosome-approach > .container > .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 3.6rem;
  padding: 0 1rem;
  margin-bottom: 5rem;
}
.about-exosome-approach > .container > .description::before, .about-exosome-approach > .container > .description::after {
  content: "";
  display: block;
  width: 35px;
  border: 1px solid #51A199;
}
.about-exosome-approach > .container > .description::before {
  border-width: 1px 0 1px 1px;
}
.about-exosome-approach > .container > .description::after {
  border-width: 1px 1px 1px 0;
}
.about-exosome-approach > .container > .description > p {
  padding: 0.5em 1em;
  text-align: center;
}
.about-exosome-approach::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: -90px;
  left: -22px;
  width: 1345px;
  height: 1312px;
  background: url("/stemhealer/img/about-exosome/approach-bg.svg") no-repeat left bottom/contain;
}

.list-approach {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7.5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .list-approach {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.list-approach::before {
  content: "";
  z-index: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 2px solid #FDC863;
  border-right: 2px solid #FDC863;
}
.list-approach::after {
  content: "";
  z-index: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: #FDC863;
}
.list-approach > .item {
  position: relative;
  z-index: 2;
  padding: 40px 5% 0;
}
@media (min-width: 768px) {
  .list-approach > .item {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.list-approach > .item > .photo {
  position: relative;
}
.list-approach > .item > .photo > .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: -40px;
  left: -18px;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  background: #5C96AF;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.2rem;
}
.list-approach > .item > .heading {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3.2rem;
}
.list-approach > .item > p {
  line-height: 2;
  margin-bottom: 2rem;
}
.list-approach > .item > .btn-more {
  justify-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-top: auto;
}

.quality-control {
  padding: 10rem 0;
  background: url("/stemhealer/img/about-exosome/quality-control-bg.jpg") no-repeat center center/100% 100%;
}
@media (min-width: 768px) {
  .quality-control > .container {
    padding-right: 3rem;
  }
}
@media (min-width: 1024px) {
  .quality-control > .container {
    padding-right: 6rem;
  }
}
.quality-control > .container > .photo-text {
  margin-bottom: 0;
}
.quality-control > .container > .photo-text > .text > .title {
  font-family: var(--sh-fontfamily-serif);
  font-size: 2.3rem;
  line-height: 4rem;
  font-weight: 600;
}
.quality-control > .container > .photo-text > .text > .description {
  line-height: 2;
  margin-top: 2rem;
}

.about-exosome-faq {
  margin-top: 10rem;
  padding: 9rem 0;
  background: #FFFDF2;
}
.about-exosome-attention {
  padding: 2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDCB), to(#FDDFEF));
  background: linear-gradient(180deg, #FFEDCB 0%, #FDDFEF 100%);
  border-bottom: 36px solid #FFEDCB;
  border-radius: 30px 0 30px 0;
  margin-bottom: 13rem;
}
@media (min-width: 768px) {
  .about-exosome-attention {
    padding: 6rem 10rem 2rem;
  }
}
.about-exosome-attention > .heading {
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.64);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 1.6rem 1em;
}

.profile-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
  border: 5px dotted #51A195;
  border-radius: 20px;
  padding: 5rem 3rem;
  background: #fff;
}
.cta-price + .profile-box {
  margin-top: 7.5rem;
}
.profile-box > .photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}
.profile-box > .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.profile-box > .text > .name {
  font-size: 1.8rem;
}
.profile-box > .text > p {
  margin-top: 1rem;
  line-height: 3.4rem;
}

.reservation-introduction {
  background: #EFEDE4;
  padding: 6rem 0 3.5rem;
}
.reservation-introduction > .container > .title {
  text-align: center;
  font-family: var(--sh-fontfamily-serif);
  font-size: 2.8rem;
  font-weight: 700;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #707070;
  margin-bottom: 2rem;
}

.reservation-schedule {
  margin-top: 12rem;
}

.schedule-box {
  background: #fff;
  padding: 4rem 7rem;
  border-radius: 30px;
  border: 4px solid #FF914D;
}
.schedule-box > .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.schedule-box > p {
  margin-bottom: 4rem;
  line-height: 2;
}

.reservation-flow {
  background: #F7F7EF;
  margin-top: 6.5rem;
  padding-bottom: 12rem;
}
.reservation-flow::before {
  content: "";
  display: block;
  margin-top: -1px;
  margin-bottom: 3rem;
  width: 100%;
  height: 8.3821376281vw;
  background: url("/stemhealer/img/about-exosome/wave.png") no-repeat center top/100% 100%;
}
.reservation-flow > .container > .title {
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  border-bottom: 1px solid #707070;
  border-left: 1px solid #707070;
  padding: 0.5em 1em;
  width: 540px;
}
.reservation-flow > .container > .title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  width: 50vw;
  height: 0;
  border-top: 1px solid #707070;
}
.reservation-flow > .container > .note {
  margin-top: 5rem;
  font-size: 2rem;
  text-align: center;
}

.about-profile > .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem 0;
}
@media (min-width: 768px) {
  .about-profile > .contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 4rem;
  }
}
.about-profile > .contents > .item {
  background: #A4ADAF;
  border-radius: 30px;
  padding: 3rem 4rem;
  color: #fff;
  line-height: 2;
}
.about-profile > .contents > .item > .heading {
  color: #FDC863;
  font-family: var(--sh-fontfamily-serif);
  font-size: 4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about-greeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-greeting > .photo {
  position: relative;
  z-index: 1;
  left: 6%;
  width: 41.6%;
}
.about-greeting > .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 2;
  width: 58%;
}
.about-greeting > .text > .heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: var(--sh-fontfamily-serif);
}
.about-greeting > .text > p {
  margin-top: 2em;
  line-height: 2;
}

.about-environment {
  background: #FFF4E8;
  padding-bottom: 6rem;
}
.about-environment::before {
  content: "";
  display: block;
  margin-top: -1px;
  margin-bottom: 3rem;
  width: 100%;
  height: 8.3821376281vw;
  background: url("/stemhealer/img/about-exosome/wave.png") no-repeat center top/100% 100%;
}
.about-environment > .container > .heading {
  background: #FDC863;
  border-radius: 30px;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  padding: 3.6rem 1em;
  margin-top: 9rem;
  margin-bottom: 9rem;
}
.about-environment > .container .heading-environment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 5rem;
  padding-left: 3.4rem;
  margin-bottom: 2rem;
}
.about-environment > .container .heading-environment > span {
  position: relative;
  z-index: 1;
}
.about-environment > .container .heading-environment::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#8FF5B7), to(#EEFCDD));
  background: linear-gradient(90deg, #8FF5B7 0%, #EEFCDD 100%);
  border-radius: 25px 0 0 25px;
}

.about-hours {
  margin: 10rem auto;
}
.about-hours > .inner {
  max-width: 840px;
  margin: 0 auto;
  color: #656565;
}
.about-hours > .inner > p {
  margin-top: 3rem;
}
.about-hours > .inner > .strong {
  font-size: 2rem;
  font-weight: 700;
}

.about-map > .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem 0;
}
@media (min-width: 768px) {
  .about-map > .contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .about-map > .contents {
    gap: 8rem;
  }
}
.about-map > .contents > p {
  line-height: 2;
}
.about-map > .map-wrapper {
  margin-top: 4rem;
  background: #F7F7EF;
  padding: 10rem 0;
}
.about-map > .map-wrapper > .map-canvas {
  height: 55rem;
}
/*# sourceMappingURL=style.css.map */
