@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.3;
}

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);
  padding-top: var(--sh-header-height);
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  body {
    padding-top: var(--sh-header-height-pc);
    font-size: var(--sh-fontsize-base);
  }
}
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);
  }
}

.divider {
  border: none;
  height: 5px;
  background: #A3ECB1;
  border-radius: 3px;
  width: 150px;
  margin: 4rem auto;
}
@media (min-width: 768px) {
  .divider {
    margin: 7rem auto;
  }
}
.lower-introduction + .divider {
  background: #DBB6FD;
}
.about-exosome-approach + .divider {
  background: #A3ECB1;
  margin: 5rem auto;
}
@media (min-width: 768px) {
  .about-exosome-approach + .divider {
    margin: 10rem auto;
  }
}
.reservation-flow + .divider {
  margin-top: -2px;
}
.about-exosome-faq + .divider {
  background: #A3ECB1;
  margin: -2px auto 10rem;
}
.divider.-top {
  background: #A3ECB1;
  margin: -2px auto 10rem;
}

hr.lines {
  border-top: 10px solid #7FCF00;
  border-bottom: 10px solid #FF914D;
}

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

.bg-area {
  background: #FFFDF2;
  padding: 1px 0;
}

.breadcrumbs {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .breadcrumbs {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #777;
  }
}
.breadcrumbs > .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5em;
  list-style: none;
  margin: 0 auto !important;
  padding: 0;
  white-space: nowrap;
  min-width: 0;
}
@media not all and (min-width: 768px) {
  .breadcrumbs > .list {
    margin-right: 0 !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.1rem;
  }
}
.breadcrumbs > .list > .item + .item::before {
  content: ">";
  margin-right: 0.5em;
}
.breadcrumbs > .list > .item > .link, .breadcrumbs > .list > .item > .text {
  color: inherit;
  text-decoration: none;
}
.breadcrumbs > .list > .item > .link:hover {
  text-decoration: underline;
}

.map-canvas {
  position: relative;
}
.map-canvas > iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.music-player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 0.3em 1em;
  margin-top: 6rem;
  margin-bottom: 4rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .music-player {
    margin-top: 6rem;
    font-size: 1.5rem;
  }
}
@media not all and (min-width: 768px) {
  .music-player {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.breadcrumbs + .music-player {
  margin-top: 2rem;
}
.music-player > iframe {
  overflow: hidden;
  border-radius: 8px;
  background: #f2f2f2;
  max-width: 100%;
  width: 280px;
  height: 100px;
}
@media (min-width: 768px) {
  .music-player > iframe {
    width: 480px;
    height: 100px;
  }
}

.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;
  background: #fff;
  width: 100%;
  height: var(--sh-header-height);
  padding: 0 10px;
}
@media (min-width: 768px) {
  .common-header {
    padding: 0 37px;
    height: var(--sh-header-height-pc);
  }
}
.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: 274px;
    height: 56px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.mainvisual {
  height: 450px;
}
@media (min-width: 768px) {
  .mainvisual {
    height: 665px;
  }
}
.mainvisual.-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mainvisual.-home > .txt {
  width: 40px;
}
@media (min-width: 768px) {
  .mainvisual.-home > .txt {
    width: 127px;
  }
}
.mainvisual.-home > .txt > p {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: 0 auto;
  letter-spacing: 0.25em;
  font-weight: 500;
  font-size: 1.2rem;
  padding-top: 1em;
  color: #000;
}
@media (min-width: 768px) {
  .mainvisual.-home > .txt > p {
    font-size: 2rem;
  }
}
.mainvisual.-home > .img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 30px 0 0 30px;
}
@media (min-width: 768px) {
  .mainvisual.-home > .img {
    border-radius: 50px 0 0 50px;
  }
}
.mainvisual.-home > .img > .title {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 260px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 768px) {
  .mainvisual.-home > .img > .title {
    right: calc(50vw - 578px);
    width: 621px;
    height: 308px;
  }
}
.mainvisual.-home > .img > .title > .logo {
  -o-object-fit: contain;
  object-fit: contain;
}
.mainvisual.-home > .img > .title .site-title {
  position: relative;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding: 0.8rem 0.5em;
  text-align: center;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .mainvisual.-home > .img > .title .site-title {
    font-size: 2.2rem;
  }
}
.mainvisual.-home > .img > .title .site-title > span {
  position: relative;
  z-index: 1;
}
.mainvisual.-home > .img > .title .site-title::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FF914D;
  mix-blend-mode: multiply;
}
.mainvisual.-home > .img > .logo {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  width: 160px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) {
  .mainvisual.-home > .img > .logo {
    top: 34px;
    left: 56px;
    width: 304px;
    height: 157px;
  }
}
.mainvisual.-home > .img > .page-title {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 2rem;
  padding-bottom: 1rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .mainvisual.-home > .img > .page-title {
    bottom: 50px;
    padding-left: 56px;
    padding-bottom: 30px;
    padding-right: 56px;
  }
}
.mainvisual.-home > .img > .page-title::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .mainvisual.-home > .img > .page-title::before {
    height: 160px;
  }
}
.mainvisual.-home > .img > .page-title::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  left: 10px;
  bottom: 10px;
  width: 5px;
  height: 80px;
  background: #fff;
}
@media (min-width: 768px) {
  .mainvisual.-home > .img > .page-title::after {
    left: 56px;
    bottom: 30px;
    width: 10px;
    height: 160px;
    background: #fff;
  }
}
.mainvisual.-home > .img > .page-title > .jp {
  display: block;
  position: relative;
  z-index: 2;
  margin-left: 2.5rem;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  .mainvisual.-home > .img > .page-title > .jp {
    margin-left: 3rem;
    font-size: 5rem;
  }
}
.mainvisual.-home > .img > .page-title > .en {
  display: block;
  position: relative;
  z-index: 2;
  margin-left: 2.5rem;
  color: #A3ECB1;
  font-size: 1.4rem;
  font-family: var(--sh-fontfamily-serif);
  margin-top: 0.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .mainvisual.-home > .img > .page-title > .en {
    margin-left: 3rem;
    font-size: 4rem;
    margin-top: 1rem;
  }
}
.mainvisual.-home > .img > .swiper-wrapper {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mainvisual.-home > .img > .swiper-wrapper > .item {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.mainvisual.-home > .img > .swiper-wrapper > .item.swiper-slide-active {
  opacity: 1 !important;
}
.mainvisual.-home > .img > .swiper-wrapper > .item.slide1 {
  z-index: 3;
}
.mainvisual.-home > .img > .swiper-wrapper > .item.slide2 {
  z-index: 2;
}
.mainvisual.-home > .img > .swiper-wrapper > .item.slide2 > img {
  -o-object-position: 20% center;
  object-position: 20% center;
}
.mainvisual.-home > .img > .swiper-wrapper > .item.slide3 {
  z-index: 1;
}
.mainvisual.-home > .img > .swiper-wrapper > .item.slide3 > img {
  -o-object-position: 35% center;
  object-position: 35% center;
}
.mainvisual.-home > .img > .swiper-wrapper > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.mainvisual.-home .swiper-pagination-bullet {
  background: #fff;
  border: 1px solid #707070;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
}
@media (min-width: 768px) {
  .mainvisual.-home .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 8px !important;
  }
}
.mainvisual.-home .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
  border: 1px solid #000;
  opacity: 1;
}

.cta-price {
  position: relative;
  overflow: hidden;
  background: url(../img/price-bg.jpg) no-repeat center center/cover;
  border: 3px solid #7FCF00;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .cta-price {
    border-radius: 20px;
  }
}
.cta-price::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FFFDF2), color-stop(50%, #FFFDF2), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #FFFDF2 0%, #FFFDF2 50%, rgba(255, 255, 255, 0) 100%);
}
.cta-price > .inner {
  position: relative;
  z-index: 2;
  padding: 1rem 1rem 1.8rem;
}
@media (min-width: 768px) {
  .cta-price > .inner {
    min-height: 500px;
    padding: 4rem 6.5rem;
  }
}
.cta-price > .inner > .price {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cta-price > .inner > .price {
    font-size: 4.6rem;
  }
}
.cta-price > .inner > .price > small {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .cta-price > .inner > .price > small {
    font-size: 2.9rem;
  }
}
.cta-price > .inner > .strong {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .cta-price > .inner > .strong {
    font-size: 2rem;
  }
}
.cta-price > .inner > .note {
  font-size: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .cta-price > .inner > .note {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}
.cta-price > .inner > .description {
  margin-top: 1rem;
  max-width: 600px;
}
@media not all and (min-width: 768px) {
  .cta-price > .inner > .description {
    font-size: 1.4rem;
  }
}
.cta-price > .inner > .btn-sausage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3rem auto;
}

.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);
}

.float-button {
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: var(--sh-zindex-float);
}
@media (min-width: 768px) {
  .float-button {
    right: 4rem;
    bottom: 4rem;
  }
}
.float-button > .button {
  display: block;
  width: 120px;
  height: auto;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.float-button > .button:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
@media (min-width: 768px) {
  .float-button > .button {
    width: 176px;
  }
}

.common-footer {
  background: #DDFCF5;
  border-bottom: 10px solid #FF914D;
}
@media not all and (min-width: 768px) {
  .common-footer {
    padding-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .footer-nav {
    padding: 40px 0 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2em;
  }
}

.footer-nav > .link-home, #gnav .container > .link-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.5rem;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer-nav > .link-home, #gnav .container > .link-home {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.8rem;
    gap: 2rem;
  }
}
.footer-nav > .link-home > .link, #gnav .container > .link-home > .link {
  position: relative;
  text-decoration: none;
  color: inherit;
}
@media not all and (min-width: 768px) {
  .footer-nav > .link-home > .link, #gnav .container > .link-home > .link {
    margin-bottom: 1.5rem;
  }
}
.footer-nav > .link-home > .link:hover, #gnav .container > .link-home > .link:hover {
  text-decoration: underline;
}
@media not all and (min-width: 768px) {
  .footer-nav > .link-home > .link br, #gnav .container > .link-home > .link br {
    display: none;
  }
}
@media not all and (min-width: 768px) {
  .footer-nav > .link-home .logo, #gnav .container > .link-home .logo {
    width: 150px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  #gnav .container > .link-home {
    font-size: 2rem;
    padding-top: 0.25em;
  }
}
@media not all and (min-width: 768px) {
  #gnav .container > .link-home > .link::after {
    border-color: rgba(255, 255, 255, 0.5);
  }
}
#gnav .container > .link-home .logo {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#gnav .container .list-nav > .item > .link, #gnav .container .list-subnav > .item > .link {
  color: #fff;
}

.company-info {
  padding: 1em 0;
  text-align: center;
  background: #147138;
  border-bottom: 10px solid #7FCF00;
  color: #fff;
}
.company-info > .address {
  font-style: normal;
}
@media not all and (min-width: 768px) {
  .company-info > .address {
    font-size: 1.3rem;
  }
}

.copyright {
  padding: 1em 0 0;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .copyright {
    font-size: 1.4rem;
  }
}

._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-sausage {
  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;
  padding-right: 0.5em;
  width: 260px;
  height: 36px;
  border-radius: 1.8rem;
  background: #FF914D;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .btn-sausage {
    width: 308px;
    height: 45px;
    border-radius: 2.3rem;
    font-size: 1.6rem;
  }
}
.btn-sausage.-movie {
  background: #2A6ECC;
}
.btn-sausage:hover {
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
}
.btn-sausage::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.4rem);
  right: 1em;
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid #fff;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .btn-sausage::after {
    top: calc(50% - 0.5rem);
    right: 1em;
    width: 1rem;
    height: 1rem;
  }
}

.btn-square {
  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;
  padding-right: 0.5em;
  max-width: 95%;
  width: 320px;
  height: 56px;
  background: #FF914D;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  font-size: 1.5rem;
  border: 1px solid #fff;
}
@media (min-width: 768px) {
  .btn-square {
    width: 430px;
    height: 70px;
    border-radius: 8px;
    font-size: 1.9rem;
  }
}
.btn-square.-movieinfo {
  font-size: 1.9rem;
}
@media (min-width: 768px) {
  .btn-square.-movieinfo {
    font-size: 2.3rem;
  }
}
.btn-square:hover {
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
}
.btn-square::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 1em;
  width: 1rem;
  height: 1rem;
  border: 1px solid #fff;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-more {
  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;
  text-align: center;
  width: 200px;
  height: 38px;
  background: #fff;
  color: inherit;
  border: 1px solid #707070;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-more:hover {
  background: #707070;
  color: #fff;
}

.btn-wrap.-reservation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 84rem;
}
@media (min-width: 768px) {
  .btn-wrap.-reservation {
    margin-top: 7.5rem;
    margin-bottom: 4.5rem;
  }
}

.btn-wrap.-back-home {
  margin: 5rem auto;
}
@media (min-width: 768px) {
  .btn-wrap.-back-home {
    margin: 10rem auto;
  }
}

.btn-back-home {
  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;
  text-align: center;
  margin: 0 auto;
  width: 240px;
  height: 40px;
  border-radius: 22px;
  background: #fff;
  color: inherit;
  border: 1px solid #707070;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  color: #707070;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-back-home {
    width: 320px;
    height: 56px;
    border-radius: 30px;
    font-size: 1.8rem;
  }
}
.btn-back-home:hover {
  background: #707070;
  color: #fff;
}
.btn-back-home::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.5rem);
  left: 1.2em;
  width: 1rem;
  height: 1rem;
  border: 1px solid #707070;
  border-width: 1px 0 0 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-back-home:hover::after {
  border-color: #fff;
}

.btn-reserve {
  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;
  text-align: center;
  border: 1px solid #FF914D;
  border-radius: 5px;
  width: 352px;
  height: 64px;
  background: #FF914D;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-reserve {
    width: 352px;
    height: 82px;
    border-width: 2px;
    border-radius: 10px;
    font-size: 2.2rem;
  }
}
.btn-reserve:hover {
  border-color: #51A195;
  background: #FCFFF2;
  color: #656565;
}
.btn-reserve:hover::before {
  border-color: #51A195;
}
.btn-reserve::before {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid #fff;
  border-width: 2px 2px 0 0;
  top: calc(50% - 0.7rem);
  right: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.heading-en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-size: 3.6rem;
  font-weight: 400;
  font-family: var(--sh-fontfamily-cabin);
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
  color: #707070;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(1rem, 50vw - 50rem);
}
@media (min-width: 768px) {
  .heading-en {
    gap: 2rem;
    font-size: 7.6rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: max(1rem, 50vw - 50rem);
    margin-bottom: 5rem;
  }
}
.heading-en.-jp {
  letter-spacing: 0.05em;
}
.heading-en > .text {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.heading-en > small {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 2rem;
}
.heading-en::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  background: -webkit-gradient(linear, left top, right top, from(#8FF5B7), to(#EEFCDD));
  background: linear-gradient(90deg, #8FF5B7 0%, #EEFCDD 100%);
  height: 2.4rem;
  border-radius: 1.2rem 0 0 1.2rem;
}
@media (min-width: 768px) {
  .heading-en::after {
    height: 4rem;
    border-radius: 2rem 0 0 2rem;
  }
}
.heading-en.-price::after {
  background: -webkit-gradient(linear, left top, right top, from(#FAC378), to(#FCFBDD));
  background: linear-gradient(90deg, #FAC378 0%, #FCFBDD 100%);
}

.list-nav > .item > .link, .list-subnav > .item > .link {
  display: block;
  position: relative;
  padding: 0.3em 0;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media not all and (min-width: 768px) {
  .list-nav > .item > .link, .list-subnav > .item > .link {
    font-size: 1.4rem;
    padding: 0.7em 1em;
    border-top: 1px solid #ddd;
    color: #666;
  }
  .list-nav > .item > .link::after, .list-subnav > .item > .link::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 1.2rem;
    margin-top: -0.3rem;
    width: 0.6rem;
    height: 0.6rem;
    border-style: solid;
    border-width: 1px 1px 0 0;
    border-color: #999;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #gnav .list-nav > .item > .link::after, #gnav .list-subnav > .item > .link::after {
    border-color: rgba(255, 255, 255, 0.5);
  }
}
@media (min-width: 1024px) {
  #gnav .list-nav > .item > .link, #gnav .list-subnav > .item > .link {
    font-size: 2rem;
    padding: 0.5em 0;
  }
}
@media not all and (min-width: 768px) {
  #gnav .list-nav > .item > .link, #gnav .list-subnav > .item > .link {
    border-color: rgba(255, 255, 255, 0.2);
  }
}
.list-nav > .item > .link:hover, .list-subnav > .item > .link:hover {
  text-decoration: underline;
}

.list-subnav > .item > .link::before {
  content: "・";
}

.list-service > .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .list-service > .item {
    -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;
  }
}
.list-service > .item + .item {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .list-service > .item + .item {
    margin-top: 12rem;
  }
}
@media (min-width: 768px) {
  .list-service > .item.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .list-service > .item > .img, .list-service > .item > .txt {
    width: 46.5%;
  }
}
.list-service > .item > .img {
  overflow: hidden;
  border-radius: 20px 0 20px 0;
}
@media not all and (min-width: 768px) {
  .list-service > .item > .img {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .list-service > .item > .img {
    border-radius: 30px 0 30px 0;
  }
}
.list-service > .item > .txt {
  position: relative;
}
.list-service > .item > .txt > .title > .link {
  display: block;
  padding: 0 0 1rem 1rem;
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.list-service > .item > .txt > .title > .link:hover {
  color: #519BA1;
}
.list-service > .item > .txt > .title > .link > small {
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .list-service > .item > .txt > .title > .link > small {
    font-size: 1.8rem;
  }
}
.list-service > .item > .txt > .title > .link > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 2.4rem;
  margin-top: 0.5rem;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 768px) {
  .list-service > .item > .txt > .title > .link > span {
    font-size: 3.4rem;
  }
}
.list-service > .item > .txt > .title > .link > span::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  position: relative;
  z-index: 1;
  margin-top: 4px;
  margin-left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #464646;
  -webkit-transition: margin 0.3s ease, background 0.3s ease;
  transition: margin 0.3s ease, background 0.3s ease;
}
.list-service > .item > .txt > .title > .link > span::after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  z-index: 1;
  margin-top: 4px;
  margin-left: -30px;
  width: 7px;
  height: 7px;
  background: transparent;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.list-service > .item > .txt > .title > .link:hover > span::before {
  background-color: #519BA1;
  margin-left: 4px;
}
.list-service > .item > .txt > .title > .link:hover > span::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.list-service > .item > .txt > p {
  line-height: 2;
  padding: 0.5em 0 1em;
}
@media not all and (min-width: 768px) {
  .list-service > .item > .txt > p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.list-service > .item > .txt::before {
  content: "";
  display: block;
  position: absolute;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, #fad467 0%, rgba(255, 232, 157, 0.91) 21%, rgba(255, 248, 227, 0.76) 42%, rgba(253, 248, 218, 0.5) 52.5%, rgba(253, 253, 253, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.list-service > .item:nth-child(1) > .txt::before {
  top: 220%;
  right: -15rem;
}
@media not all and (min-width: 768px) {
  .list-service > .item:nth-child(1) > .txt::before {
    top: -24rem;
  }
}
.list-service > .item:nth-child(2) > .txt::before {
  top: -23rem;
  right: -8rem;
}
.list-service > .item:nth-child(3) > .txt::before {
  top: -18rem;
  left: -7.6rem;
}
.list-service > .item:nth-child(4) > .txt::before {
  top: -16rem;
  right: -15rem;
}

.list-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.6rem;
}
@media (min-width: 768px) {
  .list-tags {
    grid-template-columns: repeat(3, 1fr);
  }
}
.list-tags > .item > .btn {
  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: 3.8rem;
  border: 1px solid #707070;
}
@media not all and (min-width: 768px) {
  .list-tags > .item > .btn {
    height: 3.6rem;
    font-size: 1.5rem;
  }
}

.list-news {
  border-top: 1px solid #707070;
  max-height: 300px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .list-news {
    max-height: 500px;
  }
}
.list-news > .wrap {
  border-bottom: 1px solid #707070;
  padding: 1rem 0;
}
@media not all and (min-width: 768px) {
  .list-news > .wrap {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .list-news > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .list-news > .wrap > .date {
    width: 200px;
    text-align: center;
  }
}
.list-news > .wrap > dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media not all and (min-width: 768px) {
  .list-news > .wrap > dd {
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}

.list-faq {
  background: #fff;
  max-width: 940px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border-radius: 34px;
}
@media (min-width: 768px) {
  .list-faq {
    padding: 6rem 1rem;
  }
}
.list-faq > .wrap {
  max-width: 705px;
  margin: 0 auto;
}
.list-faq > .wrap > .question {
  border: 1px solid #707070;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (min-width: 768px) {
  .list-faq > .wrap > .question {
    font-size: 1.8rem;
    padding: 2rem;
    gap: 3rem;
    line-height: 1.7;
  }
}
.list-faq > .wrap > .question:hover {
  background: #F7F7F7;
}
.list-faq > .wrap > .question::before {
  content: "Q";
  font-size: 50px;
  font-weight: 400;
  font-family: var(--sh-fontfamily-bebasneue);
  color: #548EA7;
  line-height: 50px;
  height: 50px;
}
@media (min-width: 768px) {
  .list-faq > .wrap > .question::before {
    font-size: 80px;
    line-height: 80px;
    height: 80px;
  }
}
.list-faq > .wrap > .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1rem 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  background: #F7F7F7;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .list-faq > .wrap > .answer {
    gap: 2rem;
    font-size: 1.8rem;
    line-height: 1.8;
    padding: 2rem 1rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
}
.list-faq > .wrap > .answer > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.list-faq > .wrap > .answer::before {
  content: "A";
  font-size: 42px;
  font-weight: 400;
  font-family: var(--sh-fontfamily-bebasneue);
  color: #DE9191;
  line-height: 42px;
  height: 42px;
}
@media (min-width: 768px) {
  .list-faq > .wrap > .answer::before {
    font-size: 71px;
    line-height: 71px;
    height: 71px;
  }
}
.list-faq > .wrap.is-closed > .answer {
  height: 0;
  opacity: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.list-aboutexosome-faq > .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .question {
    gap: 6rem;
    margin-top: 8rem;
  }
}
.list-aboutexosome-faq > .question > .photo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .question > .photo {
    width: 150px;
    height: 150px;
  }
}
.list-aboutexosome-faq > .question > .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.list-aboutexosome-faq > .question > .balloon {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border: 2px solid #FF914D;
  border-radius: 10px;
  background: #fff;
  min-height: 60px;
  padding: 1rem 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .question > .balloon {
    border-width: 3px;
    border-radius: 20px;
    padding: 2rem 4rem;
    font-size: 2rem;
    min-height: 100px;
  }
}
.list-aboutexosome-faq > .question > .balloon > .q {
  display: block;
  font-size: 50px;
  font-weight: 400;
  font-family: var(--sh-fontfamily-bebasneue);
  color: #707070;
  line-height: 50px;
  height: 50px;
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .question > .balloon > .q {
    font-size: 70px;
    line-height: 70px;
    height: 70px;
    margin-right: 2rem;
  }
}
.list-aboutexosome-faq > .question > .balloon::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -18px;
  margin-top: -7px;
  border-style: solid;
  border-width: 7px 18px 7px 0;
  border-color: transparent #FF914D transparent transparent;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .question > .balloon::before {
    left: -36px;
    margin-top: -14px;
    border-width: 14px 36px 14px 0;
  }
}
.list-aboutexosome-faq > .question > .balloon::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -14px;
  margin-top: -5.5px;
  border-style: solid;
  border-width: 5.5px 15px 5.5px 0;
  border-color: transparent #fff transparent transparent;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .question > .balloon::after {
    left: -30px;
    margin-top: -11px;
    border-width: 11px 30px 11px 0;
  }
}
.list-aboutexosome-faq > .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .answer {
    gap: 6rem;
    margin-top: 4rem;
  }
}
.list-aboutexosome-faq > .answer > .photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .answer > .photo {
    width: 150px;
    height: 150px;
  }
}
.list-aboutexosome-faq > .answer > .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.list-aboutexosome-faq > .answer > .balloon {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border: 2px solid #7FCF00;
  border-radius: 10px;
  background: #fff;
  min-height: 60px;
  padding: 1rem;
  line-height: 1.4;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .answer > .balloon {
    border-width: 3px;
    border-radius: 20px;
    padding: 2rem 4rem;
    font-size: 2rem;
    min-height: 100px;
  }
}
.list-aboutexosome-faq > .answer > .balloon::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -18px;
  margin-top: -7px;
  border-style: solid;
  border-width: 7px 0 7px 18px;
  border-color: transparent transparent transparent #7FCF00;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .answer > .balloon::before {
    right: -36px;
    margin-top: -14px;
    border-width: 14px 0 14px 36px;
  }
}
.list-aboutexosome-faq > .answer > .balloon::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -14px;
  margin-top: -5.5px;
  border-style: solid;
  border-width: 5.5px 0 5.5px 15px;
  border-color: transparent transparent transparent #fff;
}
@media (min-width: 768px) {
  .list-aboutexosome-faq > .answer > .balloon::after {
    right: -30px;
    margin-top: -11px;
    border-width: 11px 0 11px 30px;
  }
}

@media not all and (min-width: 768px) {
  .list-attention {
    padding-left: 1.5em !important;
    font-size: 1.4rem;
  }
}
.list-attention > .item {
  padding-bottom: 0.8em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .list-attention > .item {
    padding-bottom: 0.9em;
    line-height: 1.8;
  }
}

.list-flow > .item {
  position: relative;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .list-flow > .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.5rem;
    margin-top: 8rem;
  }
}
.list-flow > .item > .num {
  height: 5rem;
  font-size: 5rem;
  font-weight: 400;
  color: #8CC9C4;
  line-height: 1;
}
@media not all and (min-width: 768px) {
  .list-flow > .item > .num {
    position: absolute;
    z-index: 3;
    top: -3rem;
    left: 0;
  }
}
@media (min-width: 768px) {
  .list-flow > .item > .num {
    height: 8rem;
    font-size: 8rem;
  }
}
.list-flow > .item > .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 1.5em 1rem;
  background: #BBF7C6;
  border-radius: 16px 0 16px 0;
  font-size: 1.5rem;
}
@media not all and (min-width: 768px) {
  .list-flow > .item > .content {
    margin-left: 2rem;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .list-flow > .item > .content {
    padding: 1em 3rem;
    border-radius: 30px 0 30px 0;
    font-size: 1.8rem;
  }
}
.list-flow > .item > .content::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  right: 50%;
  margin-top: 1.2rem;
  border-style: solid;
  border-width: 20px 12px 0 12px;
  border-color: #BBF7C6 transparent transparent transparent;
}
@media (min-width: 768px) {
  .list-flow > .item > .content::after {
    margin-top: 2.5rem;
    border-width: 30px 18px 0 18px;
  }
}
.list-flow > .item:last-child > .content::after {
  display: none;
  content: none;
}

.list-service-short {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.6rem;
}
@media (min-width: 768px) {
  .list-service-short {
    grid-template-columns: repeat(4, 1fr);
  }
}
.list-service-short > .item > .link {
  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;
  padding: 1rem 0;
  gap: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  border: 1px solid #707070;
  background: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .list-service-short > .item > .link {
    font-size: 1.8rem;
  }
}
.list-service-short > .item > .link:hover {
  background: #999;
  color: #fff;
}
.list-service-short > .item > .link.-current {
  background: #FDC863;
  color: #fff;
  cursor: default;
}

#gnav {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: var(--sh-zindex-gnav);
  width: 100%;
  height: 100%;
  background: #FF914D;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  display: grid;
  place-items: center;
}
#gnav > .container {
  width: 100%;
}
@media not all and (min-width: 768px) {
  #gnav > .container {
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  #gnav > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.is-menuopen #gnav {
  opacity: 1;
  pointer-events: initial;
}

.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: 240px;
  max-width: 100%;
  height: 60px;
  border: 2px solid #51A195;
  border-radius: 10px;
  background: #FCFFF2;
  color: #656565;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-submit {
    width: 352px;
    max-width: 100%;
    height: 82px;
    font-size: 2.2rem;
  }
}
.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);
  }
}
.home-introduction {
  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;
  padding: 2rem 0 3rem;
  gap: 2rem 0;
}
@media (min-width: 768px) {
  .home-introduction {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 6rem 0;
  }
}
.home-introduction > .photo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .home-introduction > .photo {
    width: 200px;
    height: 200px;
  }
}
.home-introduction > .txt {
  color: #000;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .home-introduction > .txt {
    width: calc(100% - 274px);
    font-size: 1.8rem;
    line-height: 4.6rem;
  }
}
.home-introduction > .txt > h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--sh-fontfamily-serif);
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .home-introduction > .txt > h2 {
    font-size: 2.4rem;
  }
}

.includes.-home {
  padding: 0;
}
.includes.-home::before, .includes.-home::after {
  display: none;
  content: none;
}
.includes > img {
  width: 100%;
  height: auto;
}

.home-movie {
  position: relative;
  background: url(../img/home/movie-bg.jpg) no-repeat center center/cover;
  padding-top: 5.8156547184vw;
  padding-bottom: 6.5rem;
  margin-top: 8rem;
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .home-movie {
    margin-bottom: 200px;
    padding-bottom: 7.5rem;
  }
}
.home-movie::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 5.8156547184vw;
  background: url(../img/home/movie-top.png) no-repeat center top/cover;
}
.home-movie::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FDF6DA), color-stop(70%, transparent));
  background: linear-gradient(to bottom, #FDF6DA 0%, transparent 70%);
}
@media (min-width: 768px) {
  .home-movie::after {
    height: 200px;
  }
}
.home-movie > .copy {
  text-align: center;
  font-family: var(--sh-fontfamily-serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .home-movie > .copy {
    font-size: 2.4rem;
    margin-top: 1rem;
  }
}
.home-movie .content {
  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;
  gap: 1.2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .home-movie .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.home-movie .content > .logo {
  max-width: 430px;
  width: 88%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .home-movie .content > .logo {
    width: 430px;
    height: 91px;
    margin-bottom: 0;
  }
}
.home-movie > .movie {
  width: 755px;
  max-width: calc(100% - 2rem);
  margin: 20px auto 30px;
}
@media (min-width: 768px) {
  .home-movie > .movie {
    margin: 55px auto 30px;
  }
}
.home-movie .copyright {
  font-size: 11px;
  text-align: center;
}
@media (min-width: 768px) {
  .home-movie .copyright {
    font-size: 13px;
    text-align: left;
  }
}

.home-movieinfo {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 768px) {
  .home-movieinfo {
    padding-bottom: 11.5rem;
  }
}
.home-movieinfo::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FDF6DA), to(transparent));
  background: linear-gradient(to bottom, #FDF6DA 0%, transparent 100%);
}
.home-movieinfo > .content > .btn-wrap {
  border-top: 1px solid #707070;
  padding-top: 5rem;
}

.home-medical {
  padding: 3rem 0 2rem;
  background: url(../img/home/medical-bg.jpg) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .home-medical {
    padding: 7.6rem 0 7rem;
  }
}
.home-medical > .inner > .copy {
  position: relative;
  font-size: 1.8rem;
  font-family: var(--sh-fontfamily-serif);
  padding: 0.4em 0.5em;
  color: #fff;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .home-medical > .inner > .copy {
    font-size: 2.6rem;
    padding: 0.1em 0.5em;
  }
}
.home-medical > .inner > .copy > span {
  position: relative;
  z-index: 1;
}
.home-medical > .inner > .copy::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.home-medical > .inner > .contents {
  margin-top: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .home-medical > .inner > .contents {
    -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;
  }
}
.home-medical > .inner > .contents > .title {
  width: 80%;
  max-width: 420px;
}
@media (min-width: 768px) {
  .home-medical > .inner > .contents > .title {
    width: 42%;
  }
}
.home-medical > .inner > .contents > .paragraph {
  position: relative;
  color: #fff;
  padding: 1.2em 0 1.2em 2em;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .home-medical > .inner > .contents > .paragraph {
    margin-top: 0;
    padding: 1em 0 1em 7rem;
    width: 54%;
    font-size: 1.8rem;
    line-height: 4.2rem;
  }
}
.home-medical > .inner > .contents > .paragraph::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #8cc9c4;
  mix-blend-mode: multiply;
  border-radius: 20px 0 0 20px;
}
@media (min-width: 768px) {
  .home-medical > .inner > .contents > .paragraph::before {
    border-radius: 30px 0 0 30px;
  }
}
.home-medical > .inner > .contents > .paragraph > p {
  position: relative;
  z-index: 1;
}
.home-medical > .inner > .btn-wrap {
  margin-top: 4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .home-medical > .inner > .btn-wrap {
    margin-top: 9rem;
    text-align: right;
  }
}
.home-medical::after {
  content: "";
  display: block;
  margin-top: 2rem;
  width: 100%;
  height: 0;
  border-top: 10px solid #7FCF00;
  border-bottom: 10px solid #FF914D;
}
@media (min-width: 768px) {
  .home-medical::after {
    margin-top: 3.5rem;
  }
}

.home-service {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .home-service {
    padding: 11.5rem 0 15rem;
  }
}

.home-price {
  max-width: 100vw;
  width: 100vw;
  margin: 0 -1rem 3rem;
  background: url(../img/home/price-sec-bg.jpg) no-repeat center center/cover;
  padding: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .home-price {
    margin: 0 auto 13rem;
    max-width: calc(100% - 2rem);
    width: 1156px;
    padding: 8rem 0;
    border-radius: 80px;
  }
}
@media (min-width: 1176px) {
  .home-price {
    margin-left: -78px;
    margin-right: -78px;
    max-width: 1156px;
  }
}
.home-price > .inner > .contents {
  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: 3rem;
}
@media (min-width: 768px) {
  .home-price > .inner > .contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 9rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4rem;
  }
}
.home-price > .inner > .contents > .img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 219px;
  height: 219px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media not all and (min-width: 768px) {
  .home-price > .inner > .contents > .img {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
  }
}
.home-price > .inner > .contents > .text > .title {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--sh-fontfamily-serif);
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .home-price > .inner > .contents > .text > .title {
    font-size: 2.6rem;
  }
}
.home-price > .inner > .contents > .text > p {
  margin-top: 1rem;
  line-height: 1.8;
}
@media not all and (min-width: 768px) {
  .home-price > .inner > .contents > .text > p {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .home-price > .inner > .contents > .text > p {
    margin-top: 2em;
    line-height: 2;
  }
}

.home-news {
  margin: 4rem auto;
}
@media (min-width: 768px) {
  .home-news {
    margin: 16rem auto;
  }
}

.home-faq {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .home-faq {
    margin-bottom: 17rem;
  }
}

.lower-introduction {
  background: #FFFFFF;
  border: 3px solid #FF914D;
  padding: 2rem 1rem;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .lower-introduction {
    margin-top: 6rem;
    padding: 3.5rem 6.3rem;
    border-width: 4px;
  }
}
.lower-introduction > .title {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--sh-fontfamily-serif);
}
@media (min-width: 768px) {
  .lower-introduction > .title {
    font-size: 2.8rem;
    line-height: 4.8rem;
  }
}
@media (min-width: 768px) {
  .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: 5rem;
}
@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;
    margin-bottom: 11rem;
  }
}
.photo-text > .photo {
  overflow: hidden;
  border-radius: 16px 0 16px 0;
}
@media (min-width: 768px) {
  .photo-text > .photo {
    width: 44.8%;
    border-radius: 30px 0 30px 0;
  }
}
@media (min-width: 768px) {
  .photo-text > .text {
    width: 50%;
  }
}
.photo-text > .text > .heading {
  background: #FCFFF2;
  border: 1px solid #51A199;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-family: var(--sh-fontfamily-serif);
  font-size: 1.7rem;
  line-height: 1.5;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .photo-text > .text > .heading {
    border-radius: 10px;
    padding: 1rem 1.9rem;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .photo-text > .text > .paragraph {
    line-height: 2;
  }
}

.includes {
  position: relative;
  padding: 5rem 0;
  background: #F6FFF3;
}
@media (min-width: 768px) {
  .includes {
    padding: 18.5rem 0;
  }
}
.includes::before, .includes::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  background: #A3ECB1;
  width: 200px;
  height: 8px;
}
@media (min-width: 768px) {
  .includes::before, .includes::after {
    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: 2rem;
  color: #fff;
  font-weight: 700;
  padding: 1rem 0 1rem 0.5em;
}
@media not all and (min-width: 768px) {
  .includes > .container > .text {
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .includes > .container > .text {
    font-size: 3.2rem;
    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: 1.4rem;
  text-align: right;
}
@media (min-width: 768px) {
  .includes > .container > .text > small {
    font-size: 2.2rem;
  }
}
.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("../img/about-exosome/about-exosome-include.jpg") no-repeat center center/cover;
}
.includes.-pediatric-care {
  background: url("../img/pediatric-care/include.jpg") no-repeat center center/cover;
}
.includes.-anti-aging {
  background: url("../img/anti-aging/include.jpg") no-repeat center center/cover;
}
.includes.-adult-care {
  background: url("../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("../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: -5rem;
  right: calc(50% - 50vw);
  width: 1365px;
  height: calc(100% + 15rem);
  background: url("../img/about-bg.jpg") no-repeat right bottom/100% 100%;
}
@media (min-width: 768px) {
  .about-exosome-contents::before {
    bottom: -11rem;
    height: calc(100% + 33rem);
  }
}

.about-exosome-approach {
  position: relative;
  margin-top: 2rem;
  padding: 0 0 5rem;
  background: #FFF4E8;
}
@media (min-width: 768px) {
  .about-exosome-approach {
    margin-top: 3rem;
    padding: 0 0 18.5rem;
  }
}
.about-exosome-approach::before {
  content: "";
  display: block;
  margin-top: -1px;
  margin-bottom: 3rem;
  width: 100%;
  height: 8.3821376281vw;
  background: url("../img/about-exosome/wave.png") no-repeat center top/100% 100%;
}
.about-exosome-approach > .container {
  position: relative;
  z-index: 2;
}
.about-exosome-approach > .container > .title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #464646;
  margin: 0 auto 2rem;
  padding-bottom: 0.5em;
  font-family: var(--sh-fontfamily-serif);
  font-size: 2rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .about-exosome-approach > .container > .title {
    font-size: 2.8rem;
    margin: 0 auto 3rem;
    padding-bottom: 0.5em;
  }
}
.about-exosome-approach > .container > .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 1rem;
  margin-bottom: 3rem;
}
@media not all and (min-width: 768px) {
  .about-exosome-approach > .container > .description {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .about-exosome-approach > .container > .description {
    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: 20px;
  border: 1px solid #51A199;
}
@media (min-width: 768px) {
  .about-exosome-approach > .container > .description::before, .about-exosome-approach > .container > .description::after {
    width: 35px;
  }
}
.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 0.5em;
  text-align: center;
}
@media (min-width: 768px) {
  .about-exosome-approach > .container > .description > p {
    padding: 0.5em 1em;
  }
}
.about-exosome-approach::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: -90px;
  left: -22px;
  width: 1345px;
  height: 1312px;
  background: url("../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: 4rem 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;
    gap: 7.5rem 0;
  }
}
.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;
}
@media (min-width: 768px) {
  .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: 66px;
  height: 66px;
  border-radius: 50%;
  background: #5C96AF;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .list-approach > .item > .photo > .cat {
    width: 77px;
    height: 77px;
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.list-approach > .item > .heading {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .list-approach > .item > .heading {
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}
.list-approach > .item > p {
  line-height: 2;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .list-approach > .item > p {
    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: 3rem 0;
  background: url("../img/about-exosome/quality-control-bg.jpg") no-repeat center center/100% 100%;
}
@media (min-width: 768px) {
  .quality-control {
    padding: 10rem 0;
  }
}
@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: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
}
@media not all and (min-width: 768px) {
  .quality-control > .container > .photo-text > .text > .title {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .quality-control > .container > .photo-text > .text > .title {
    font-size: 2.3rem;
    line-height: 4rem;
  }
}
@media (min-width: 768px) {
  .quality-control > .container > .photo-text > .text > .description {
    line-height: 2;
    margin-top: 2rem;
  }
}

.about-exosome-faq {
  margin-top: 4rem;
  padding: 3rem 0;
  background: #FFFDF2;
}
@media (min-width: 768px) {
  .about-exosome-faq {
    margin-top: 10rem;
    padding: 9rem 0;
  }
}
.about-exosome-attention {
  padding: 2rem 2rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDCB), to(#FDDFEF));
  background: linear-gradient(180deg, #FFEDCB 0%, #FDDFEF 100%);
  border-bottom: 18px solid #FFEDCB;
  border-radius: 16px 0 16px 0;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .about-exosome-attention {
    padding: 6rem 10rem 2rem;
    border-radius: 30px 0 30px 0;
    margin-bottom: 13rem;
    border-bottom-width: 36px;
  }
}
.about-exosome-attention > .heading {
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.64);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 0.5em;
}
@media (min-width: 768px) {
  .about-exosome-attention > .heading {
    font-size: 2rem;
    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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  border: 3px dotted #51A195;
  border-radius: 10px;
  padding: 1rem;
  background: #fff;
}
@media (min-width: 768px) {
  .profile-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 4rem;
    border-width: 5px;
    border-radius: 20px;
    padding: 5rem 3rem;
  }
}
.cta-price + .profile-box {
  margin-top: 7.5rem;
}
.profile-box > .photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .profile-box > .photo {
    width: 180px;
    height: 180px;
  }
}
.profile-box > .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.profile-box > .text > .name {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .profile-box > .text > .name {
    font-size: 1.8rem;
  }
}
@media not all and (min-width: 768px) {
  .profile-box > .text > p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .profile-box > .text > p {
    margin-top: 1rem;
    line-height: 3.4rem;
  }
}

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

.reservation-schedule {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .reservation-schedule {
    margin-top: 12rem;
  }
}

.schedule-box {
  background: #fff;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 3px solid #FF914D;
}
@media (min-width: 768px) {
  .schedule-box {
    padding: 4rem 7rem;
    border-radius: 30px;
    border-width: 4px;
  }
}
.schedule-box > .title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .schedule-box > .title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.schedule-box > p {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .schedule-box > p {
    margin-bottom: 4rem;
    line-height: 2;
  }
}

.reservation-flow {
  background: #F7F7EF;
  margin-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .reservation-flow {
    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("../img/about-exosome/wave.png") no-repeat center top/100% 100%;
}
.reservation-flow > .container > .title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid #707070;
  border-left: 1px solid #707070;
  padding: 0 1em 0.5em;
  width: 240px;
}
@media (min-width: 768px) {
  .reservation-flow > .container > .title {
    font-size: 3rem;
    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: 2rem;
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .reservation-flow > .container > .note {
    margin-top: 5rem;
    font-size: 1.7rem;
    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: 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;
}
@media not all and (min-width: 768px) {
  .about-profile > .contents > .item {
    border-radius: 16px;
    margin-top: 2rem;
    padding: 2rem;
    line-height: 1.8;
    font-size: 1.5rem;
  }
}
.about-profile > .contents > .item > .heading {
  color: #FDC863;
  font-family: var(--sh-fontfamily-serif);
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-profile > .contents > .item > .heading {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .about-greeting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.about-greeting > .photo {
  position: relative;
  z-index: 1;
  left: 6%;
  width: 41.6%;
}
@media not all and (min-width: 768px) {
  .about-greeting > .photo {
    float: left;
    left: 2rem;
    width: 14rem;
    margin-right: -1rem;
  }
}
.about-greeting > .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .about-greeting > .text {
    width: 58%;
  }
}
.about-greeting > .text > .heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--sh-fontfamily-serif);
}
@media (min-width: 768px) {
  .about-greeting > .text > .heading {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
}
.about-greeting > .text > p {
  margin-top: 1em;
  line-height: 1.8;
}
@media not all and (min-width: 768px) {
  .about-greeting > .text > p {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .about-greeting > .text > p {
    margin-top: 2em;
    line-height: 2;
  }
}

.about-environment {
  background: #FFF4E8;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-environment {
    padding-bottom: 6rem;
  }
}
.about-environment::before {
  content: "";
  display: block;
  margin-top: -1px;
  margin-bottom: 3rem;
  width: 100%;
  height: 8.3821376281vw;
  background: url("../img/about-exosome/wave.png") no-repeat center top/100% 100%;
}
@media not all and (min-width: 768px) {
  .about-environment > .container {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.about-environment > .container > .heading {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 1.6rem 1em;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .about-environment > .container > .heading {
    font-size: 2.8rem;
    font-weight: 500;
    text-align: center;
    padding: 3.6rem 1em;
    margin-top: 9rem;
    margin-bottom: 9rem;
  }
}
.about-environment > .container > .heading > span {
  position: relative;
  z-index: 1;
}
.about-environment > .container > .heading::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: calc(50% + 50vw);
  height: 100%;
  background: #FDC863;
  border-radius: 51px 0 0 51px;
}
.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: 4rem;
  padding-left: 3.4rem;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-environment > .container .heading-environment {
    height: 5rem;
    padding-left: 3.4rem;
    margin-top: 0;
    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: calc(100% + 10px);
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#8FF5B7), to(#EEFCDD));
  background: linear-gradient(90deg, #8FF5B7 0%, #EEFCDD 100%);
  border-radius: 20px 0 0 20px;
}
@media (min-width: 768px) {
  .about-environment > .container .heading-environment::before {
    width: 50vw;
    border-radius: 25px 0 0 25px;
  }
}

.about-hours {
  margin: 4rem auto;
}
@media (min-width: 768px) {
  .about-hours {
    margin: 10rem auto;
  }
}
.about-hours > .inner {
  max-width: 840px;
  margin: 0 auto;
  color: #656565;
}
.about-hours > .inner > p {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .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: 2rem;
  background: #F7F7EF;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .about-map > .map-wrapper {
    margin-top: 4rem;
    padding: 10rem 0;
  }
}
.about-map > .map-wrapper > .map-canvas {
  height: 35rem;
}
@media (min-width: 768px) {
  .about-map > .map-wrapper > .map-canvas {
    height: 55rem;
  }
}

.contents-privacypolicy {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .contents-privacypolicy {
    margin-top: 6rem;
    border: 2px solid #FDC863;
    border-width: 0 2px;
  }
}
.contents-privacypolicy h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contents-privacypolicy h3 {
    margin-top: 6rem;
    font-size: 1.8rem;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contents-privacypolicy h3:first-child {
  margin-top: 0;
}
.contents-privacypolicy p {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .contents-privacypolicy p {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contents-privacypolicy ul {
  counter-reset: count;
  list-style: none;
  padding-left: 2em;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .contents-privacypolicy ul {
    font-size: 1.6rem;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contents-privacypolicy ul > li {
  counter-increment: count;
  position: relative;
}
.contents-privacypolicy ul > li::before {
  content: counter(count) ".";
  position: absolute;
  left: -1.5em;
  top: 0;
  width: 1em;
  height: 1em;
}
.contents-privacypolicy ul ul {
  list-style: none;
  padding-left: 1.5em;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .contents-privacypolicy ul ul {
    font-size: 1.6rem;
  }
}
.contents-privacypolicy ul ul > li::before {
  content: "・";
}
/*# sourceMappingURL=style.css.map */
