@charset "UTF-8";
/*=======================
基本設定
=======================*/
html {
  scrollbar-gutter: stable;
}
@media (width >= 768px) {
  html {
    /* 1rem = 10px設定*/
    font-size: 0.625vw;
  }
}
@media (width < 768px) {
  html {
    /* 1rem = 10px設定*/
    font-size: 1.3333333333vw;
  }
}

/*=======================
共通パーツ
=======================*/
body {
  color: #000e24;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  letter-spacing: normal;
}
body.is-fixed {
  overflow: clip;
}

.inner {
  margin: 0 auto;
  max-width: 640px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .inner {
    width: 95%;
  }
}
@media (width < 768px) {
  .inner {
    margin-inline: auto;
    max-width: initial;
    width: 67.5rem;
  }
}

.sec-title {
  font-size: 36px;
  font-weight: 900;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 0.14em;
  line-height: 1.3333333333;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
@media (width < 768px) {
  .sec-title {
    font-size: 5rem;
  }
}
.sec-title::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 140px;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 140px;
  z-index: -1;
}
@media (width < 768px) {
  .sec-title::before {
    height: 18rem;
    width: 18rem;
  }
}

.btn {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

br.is-pc {
  display: block;
}
@media (width < 768px) {
  br.is-pc {
    display: none;
  }
}
br.is-sp {
  display: none;
}
@media (width < 768px) {
  br.is-sp {
    display: inline;
  }
}

span.is-pc {
  display: inline;
}
@media (width < 768px) {
  span.is-pc {
    display: none;
  }
}
span.is-sp {
  display: none;
}
@media (width < 768px) {
  span.is-sp {
    display: inline;
  }
}

img {
  display: block;
  height: auto;
  width: 100%;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.page-wrapper.page-top {
  padding-top: 84px;
}
@media (width < 768px) {
  .page-wrapper.page-top {
    padding-top: 10rem;
  }
}
.page-wrapper.page-low {
  font-family: "Noto Sans JP";
  padding-bottom: 60px;
  padding-top: 64px;
}
@media (width < 768px) {
  .page-wrapper.page-low {
    padding-bottom: 8rem;
    padding-top: 10rem;
  }
}

/*=======================
ヘッダー
=======================*/
.header {
  align-items: center;
  background: #fff;
  border-bottom: 2px solid #fedd09;
  display: flex;
  height: 84px;
  padding-left: 19px;
  position: fixed;
  width: 100%;
  z-index: 5;
}
@media (width < 768px) {
  .header {
    border-width: 0.4rem;
    height: 10rem;
    padding-left: 1.9rem;
  }
}

.header-logo {
  display: flex;
  gap: 16px;
}
@media (width < 768px) {
  .header-logo {
    gap: 1.9rem;
  }
}
@media (width < 768px) {
  .header-logo .logo-main {
    height: 6rem;
    width: 8.9rem;
  }
}
@media (width < 768px) {
  .header-logo .logo-sub {
    height: 6rem;
    width: 18.1rem;
  }
}

/*=======================
トップページ
=======================*/
.mv {
  background: #fdf6cd;
}

.mv-slider .swiper-slider {
  width: 100%;
}
.mv-slider a.swiper-slide {
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .mv-slider a.swiper-slide:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mv-slider a.swiper-slide:hover {
    opacity: 0.5;
  }
}
.mv-slider .swiper-pagination-bullets {
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media (width < 768px) {
  .mv-slider .swiper-pagination-bullets {
    bottom: 1rem;
    gap: 4rem;
  }
}
.mv-slider .swiper-pagination-bullets .swiper-pagination-bullet {
  background: #1f2e93;
  height: 10px;
  margin: initial;
  width: 10px;
}
@media (width < 768px) {
  .mv-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    height: 1.4rem;
    width: 1.4rem;
  }
}

.thanks {
  background: url(../img/top/thanks_bg_pc.png) no-repeat center center/cover;
  min-height: 496px;
}
@media (width < 768px) {
  .thanks {
    background-image: url(../img/top/thanks_bg_sp.png);
    min-height: 78.6rem;
  }
}

.thanks-inner {
  max-width: 1000px;
  position: relative;
}
@media (width < 768px) {
  .thanks-inner {
    width: 100%;
  }
}

.thanks-box {
  display: flex;
  gap: 3px;
  left: 7px;
  position: absolute;
  top: 71px;
}
@media (width < 768px) {
  .thanks-box {
    gap: 0.3rem;
    left: 5.8rem;
    top: 6.4rem;
  }
}

.thanks-img {
  width: 220px;
}
@media (width < 768px) {
  .thanks-img {
    width: 26.2rem;
  }
}

@media (width < 768px) {
  .thanks-message {
    padding-left: 2rem;
  }
}

.thanks-title {
  color: #1f2e93;
  font-size: 55px;
  font-weight: 900;
  margin-left: 18px;
  margin-top: 9px;
}
@media (width < 768px) {
  .thanks-title {
    font-size: 6.5rem;
    margin-left: initial;
    margin-top: 0.4rem;
  }
}
.thanks-title .red {
  color: #e60012;
  display: flex;
  margin-left: -11px;
  margin-top: 28px;
}
@media (width < 768px) {
  .thanks-title .red {
    margin-left: -1.3rem;
    margin-top: 3rem;
  }
}
.thanks-title .large {
  font-size: 91px;
  letter-spacing: 0.02em;
  margin-top: -30px;
}
@media (width < 768px) {
  .thanks-title .large {
    font-size: 10.8rem;
    margin-top: -3.5rem;
  }
}

.thanks-text {
  color: #1f2e93;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-left: 24px;
  margin-top: 19px;
}
@media (width < 768px) {
  .thanks-text {
    font-size: 2.8rem;
    line-height: 1.5714285714;
    margin-left: 0.9rem;
    margin-top: 1.5rem;
  }
}

.history {
  background: #fdf6cd;
  padding: 60px 0;
}
@media (width < 768px) {
  .history {
    padding: 0;
  }
}

@media (width < 768px) {
  .history-inner {
    width: 100%;
  }
}

.history-content-head {
  align-items: center;
  background: #0090d1;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  min-height: 73px;
  padding: 10px 28px;
}
@media (width < 768px) {
  .history-content-head {
    border-radius: initial;
    min-height: 11.2rem;
    padding: 1rem 3.3rem 1rem 4.1rem;
  }
}

.history-content-title {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
@media (width < 768px) {
  .history-content-title {
    font-size: 4rem;
  }
}

.history-content-btn {
  height: 20px;
  position: relative;
  width: 20px;
}
@media (width < 768px) {
  .history-content-btn {
    height: 4rem;
    width: 4rem;
  }
}
.history-content-btn .btn-bar {
  background: #fff;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
  translate: -50% -50%;
  width: 17px;
}
@media (width < 768px) {
  .history-content-btn .btn-bar {
    height: 0.4rem;
    width: 2.6rem;
  }
}
.history-content-btn .btn-bar.bar01 {
  rotate: 90deg;
}
details[open] .history-content-btn .btn-bar.bar01 {
  rotate: 180deg;
}

.history-content-body {
  background: #fff;
  background: url(../img/top/history_bg.png) repeat center center/cover;
  border-radius: 0 0 10px 10px;
  padding: 0 26px 31px 34px;
}
@media (width < 768px) {
  .history-content-body {
    border-radius: initial;
    padding: 0 4rem 5.9rem 4rem;
  }
}

.history-content-body-container {
  position: relative;
}
.history-content-body-container::before, .history-content-body-container::after {
  background: #0090d1;
  content: "";
  position: absolute;
}
.history-content-body-container::before {
  border-radius: 0 0 9999px 9999px;
  height: 99.2%;
  width: 4px;
}
@media (width < 768px) {
  .history-content-body-container::before {
    width: 0.8rem;
  }
}
.history-content-body-container::after {
  border-radius: 50%;
  bottom: 0;
  height: 4px;
  width: 4px;
}
@media (width < 768px) {
  .history-content-body-container::after {
    height: 0.8rem;
    width: 0.8rem;
  }
}

.history-items {
  display: grid;
  gap: 19px;
  grid-template-columns: 1fr;
  padding-bottom: 28px;
  padding-top: 40px;
}
@media (width < 768px) {
  .history-items {
    gap: 3.8rem;
    padding-bottom: 5.8rem;
    padding-top: 8rem;
  }
}

.history-item-year {
  align-items: center;
  background: #0090d1;
  border-radius: 0 30px 30px 0;
  color: #fff;
  display: flex;
  font-size: 24px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 45px;
  min-width: 106px;
  padding-left: 5px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .history-item-year {
    border-radius: 0 3rem 3rem 0;
    font-size: 3.6rem;
    min-height: 6.3rem;
    min-width: 15.7rem;
    padding-bottom: 0.3rem;
    padding-left: initial;
  }
}
.history-item-year .small {
  font-size: 18px;
  margin-top: 2px;
}
@media (width < 768px) {
  .history-item-year .small {
    font-size: 2.8rem;
    margin-top: 0.7rem;
  }
}

.history-item-content {
  display: grid;
  gap: 17px;
  grid-template-columns: 1fr;
  margin-top: 21px;
  padding-left: 40px;
  width: 100%;
}
@media (width < 768px) {
  .history-item-content {
    align-items: center;
    gap: 3.1rem;
    margin-top: 4rem;
    padding-left: 4rem;
  }
}

.history-product,
.history-event {
  position: relative;
}
.history-product::before, .history-product::after,
.history-event::before,
.history-event::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.history-product::before,
.history-event::before {
  border-radius: 50%;
  height: 16px;
  left: -46px;
  position: absolute;
  width: 16px;
}
@media (width < 768px) {
  .history-product::before,
  .history-event::before {
    height: 2.8rem;
    left: -5rem;
    width: 2.8rem;
  }
}
.history-product::after,
.history-event::after {
  height: 4px;
}
@media (width < 768px) {
  .history-product::after,
  .history-event::after {
    height: 0.8rem;
  }
}

.history-product {
  align-items: center;
  display: grid;
  gap: 5px;
  grid-template-columns: 80px 1fr;
}
@media (width < 768px) {
  .history-product {
    gap: 0;
    grid-template-columns: 14rem 1fr;
  }
}
.history-product::before, .history-product::after {
  background: #1f2e93;
}
.history-product::after {
  transform: translateX(-100%);
  width: 43px;
}
@media (width < 768px) {
  .history-product::after {
    left: 0;
    width: 4.6rem;
  }
}

.history-event {
  padding-left: 90px;
}
@media (width < 768px) {
  .history-event {
    padding-left: 15.8rem;
  }
}
.history-event::before, .history-event::after {
  background: #0090d1;
}
.history-event::after {
  transform: translateX(calc(-100% - 1.8rem));
  width: 112px;
}
@media (width < 768px) {
  .history-event::after {
    width: 17.2rem;
  }
}
.history-event .history-item-text {
  color: #0090d1;
}

.history-item-img {
  background: #1f2e93;
  border-radius: 50%;
  display: grid;
  height: 80px;
  place-content: center;
  width: 80px;
}
@media (width < 768px) {
  .history-item-img {
    height: 14rem;
    width: 14rem;
  }
}
.history-item-img img {
  max-height: 50px;
  width: auto;
}
@media (width < 768px) {
  .history-item-img img {
    height: 9.4rem;
    max-height: initial;
  }
}

.history-item-text {
  color: #1f2e93;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.4444444444;
  padding-left: 1em;
  text-indent: -1em;
}
@media (width < 768px) {
  .history-item-text {
    font-size: 3.2rem;
    line-height: 1.375;
  }
}

.movie {
  background: #fedd09;
  padding: 69px 0 58px;
}
@media (width < 768px) {
  .movie {
    padding: 7.7rem 0;
  }
}

.movie-title-text {
  color: #1f2e93;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (width < 768px) {
  .movie-title-text {
    font-size: 3rem;
  }
}

.movie-title {
  color: #1f2e93;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 11px auto 0;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .movie-title {
    font-size: 6rem;
    margin-top: 1.3rem;
  }
}
.movie-title::before, .movie-title::after {
  background: url(../img/top/movie_deco.svg) no-repeat center center/contain;
  bottom: -5px;
  content: "";
  height: 25px;
  position: absolute;
  width: 17px;
}
@media (width < 768px) {
  .movie-title::before, .movie-title::after {
    bottom: -0.5rem;
    height: 3.2rem;
    width: 2.2rem;
  }
}
.movie-title::before {
  left: -27px;
}
@media (width < 768px) {
  .movie-title::before {
    left: -3.3rem;
  }
}
.movie-title::after {
  right: -27px;
  transform: scaleX(-1);
}
@media (width < 768px) {
  .movie-title::after {
    right: -3.3rem;
  }
}

.movie-content-wrapper {
  background: #fff;
  border-radius: 10px;
  margin-top: 25px;
  padding: 9px;
}
@media (width < 768px) {
  .movie-content-wrapper {
    border-radius: 1rem;
    margin-top: 3.9rem;
    padding: 0.9rem;
  }
}

.movie-content {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.6770186335%;
  position: relative;
  width: 100%;
}
.movie-content iframe {
  border: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.safe {
  background: url(../img/top/safe_bg.png) no-repeat center center/cover;
  overflow: hidden;
  padding: 60px 0 55px;
}
@media (width < 768px) {
  .safe {
    padding: 8.1rem 0 7.2rem;
  }
}

@media (width < 768px) {
  .safe-inner {
    width: 64rem;
  }
}

.safe-img {
  margin-left: 12px;
  position: relative;
  width: 489px;
}
@media (width < 768px) {
  .safe-img {
    margin-left: auto;
    width: 55rem;
  }
  .safe-img img {
    border-radius: 2rem;
  }
}
.safe-img::before {
  background: url(../img/top/safe_product.png) no-repeat center center/cover;
  content: "";
  height: 293px;
  left: -87px;
  position: absolute;
  top: 52px;
  width: 168px;
}
@media (width < 768px) {
  .safe-img::before {
    height: 32.9rem;
    left: -9.7rem;
    top: 5.9rem;
    width: 18.8rem;
  }
}

.safe-content {
  margin-top: -39px;
  position: relative;
}
@media (width < 768px) {
  .safe-content {
    margin-top: 4.9rem;
  }
}
.safe-content::before {
  background: url(../img/top/safe_fumazo.png) no-repeat center center/cover;
  content: "";
  height: 245px;
  position: absolute;
  right: -75px;
  top: -81px;
  width: 214px;
}
@media (width < 768px) {
  .safe-content::before {
    height: 27.5rem;
    right: -3.1rem;
    top: -9.1rem;
    width: 24rem;
  }
}

.safe-title {
  display: block;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.3260869565;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .safe-title {
    font-size: 5.2rem;
    letter-spacing: -0.03em;
    line-height: 1.3269230769;
    margin: initial;
  }
}
.safe-title span {
  background-color: #fff;
  border-radius: 5px;
  color: #1f2e93;
  display: block;
  margin-bottom: 7px;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .safe-title span {
    border-radius: 1rem;
    padding: 0.5rem 1rem;
  }
}
.safe-title span:last-child {
  margin-bottom: 0;
}

.safe-text {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  margin-top: 30px;
  text-align: center;
}
@media (width < 768px) {
  .safe-text {
    font-size: 3.2rem;
    line-height: 1.5;
    margin-top: 3.6rem;
  }
}

.feature {
  background: #fdf6cd;
  padding: 60px 0;
}
@media (width < 768px) {
  .feature {
    padding: 24.7rem 0 6rem;
  }
}

.feature-inner {
  max-width: 874px;
}

.feature-items {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (width < 768px) {
  .feature-items {
    gap: 24.7rem;
  }
}

.feature-item:nth-child(odd) .feature-item-info {
  left: 22px;
}
.feature-item:nth-child(odd) .feature-item-content {
  margin-left: auto;
}
.feature-item:nth-child(even) .feature-item-info {
  right: 23px;
}
@media (width < 768px) {
  .feature-item:nth-child(even) .feature-item-info {
    right: initial;
  }
}
.feature-item:nth-child(even) .feature-item-content {
  margin-right: auto;
}
.feature-item:nth-child(1) {
  padding-right: 33px;
}
@media (width < 768px) {
  .feature-item:nth-child(1) {
    padding-right: initial;
  }
}
.feature-item:nth-child(2) {
  padding-left: 53px;
}
@media (width < 768px) {
  .feature-item:nth-child(2) {
    padding-left: initial;
  }
}
.feature-item:nth-child(2) .feature-item-title {
  letter-spacing: 0.08em;
}
.feature-item:nth-child(2) .feature-item-title span {
  padding: 5px 15px;
}
@media (width < 768px) {
  .feature-item:nth-child(2) .feature-item-title span {
    padding: 0.5rem;
  }
}
.feature-item:nth-child(3) .feature-item-content {
  padding-top: 6.7rem;
}
@media (width < 768px) {
  .feature-item:nth-child(3) .feature-item-img {
    margin-inline: auto;
    width: 49.1em;
  }
}

.feature-item-container {
  display: flex;
  position: relative;
}

.feature-item-info {
  position: absolute;
  top: 0;
  z-index: 1;
}
@media (width < 768px) {
  .feature-item-info {
    display: flex;
    left: 50% !important;
    top: -20.6rem;
    translate: -50% 0;
  }
}

.feature-item-num {
  height: 200px;
  margin-inline: auto;
  width: 200px;
}
@media (width < 768px) {
  .feature-item-num {
    height: 23rem;
    margin-bottom: 2.9rem;
    width: 23rem;
  }
}

.feature-item-title {
  display: block;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.3571428571;
  margin-inline: auto;
  margin-top: -45px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .feature-item-title {
    font-size: 30px;
  }
}
@media (width < 768px) {
  .feature-item-title {
    display: flex;
    flex-direction: column;
    font-size: 4.8rem;
    justify-content: end;
    line-height: 1.3333333333;
    margin-left: -2rem;
    margin-top: initial;
  }
}
.feature-item-title span {
  background-color: #fedd09;
  border-radius: 5px;
  color: #1f2e93;
  display: block;
  margin-bottom: 7px;
  padding: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .feature-item-title span {
    border-radius: 1rem;
    margin-bottom: 0.7rem;
    padding: 0.5rem;
    width: -moz-max-content;
    width: max-content;
  }
}
.feature-item-title span:last-child {
  margin-bottom: 0;
}

.feature-item-content {
  background: #fff;
  border-radius: 10px;
  padding: 50px;
  width: 540px;
}
@media (width < 768px) {
  .feature-item-content {
    border-radius: 2rem;
    padding: 11.4rem 4.2rem 5rem;
    width: 100%;
  }
}

.feature-item-movie-items {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin: 11px auto 0;
  max-width: 300px;
}
@media (width < 768px) {
  .feature-item-movie-items {
    gap: 4rem;
    margin-top: 4.6rem;
    max-width: initial;
    width: 100%;
  }
}

.feature-item-movie {
  border-radius: 12px;
  height: 0;
  overflow: hidden;
  padding-bottom: 178.1970649895%;
  position: relative;
  width: 100%;
}
@media (width < 768px) {
  .feature-item-movie {
    border-radius: 1.2rem;
  }
}
.feature-item-movie iframe {
  border: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.feature-item-lead {
  color: #1f2e93;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
  text-align: center;
}
@media (width < 768px) {
  .feature-item-lead {
    font-size: 3.2rem;
    letter-spacing: 0.02em;
    line-height: 1.6875;
  }
}

.feature-item-img {
  margin-bottom: 20px;
  margin-top: 17px;
}
@media (width < 768px) {
  .feature-item-img {
    margin-bottom: 4.3rem;
    margin-top: 4.4rem;
  }
}

.feature-item-text {
  color: #1f2e93;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.75;
}
@media (width < 768px) {
  .feature-item-text {
    font-size: 2.8rem;
    line-height: 1.7142857143;
  }
}
.feature-item-text.mt {
  margin-top: 17px;
}
@media (width < 768px) {
  .feature-item-text.mt {
    margin-top: 3.6rem;
  }
}

.reason {
  background: url(../img/top/feature_reason_pc.png) no-repeat center center/cover;
  border-radius: 10px;
  height: 183px;
  margin: 46px auto 0;
  overflow: hidden;
  width: 640px;
}
@media (width < 768px) {
  .reason {
    background-image: url(../img/top/feature_reason_sp.png);
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    height: 60.4rem;
    margin-top: 6.3rem;
    width: 100%;
  }
}

.reason-items {
  background: #1f2e93;
  height: 100%;
  margin-left: auto;
  width: 329px;
}
@media (width < 768px) {
  .reason-items {
    height: 21.4rem;
    margin-left: initial;
    margin-top: auto;
    width: 100%;
  }
}

.reason-item {
  align-items: center;
  border-bottom: 2px dashed #fff;
  display: flex;
  height: 50%;
  padding: 0 20px;
}
@media (width < 768px) {
  .reason-item {
    padding: 0 4.1rem;
  }
}
.reason-item:last-of-type {
  border-bottom: none;
}

.reason-item-link {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 10px;
  letter-spacing: -0.07em;
  line-height: 1.75;
  padding: 10px 0;
  position: relative;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .reason-item-link:hover .reason-item-text::after {
    opacity: 1;
    visibility: visible;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .reason-item-link:hover .reason-item-text::after {
    opacity: 1;
    visibility: visible;
  }
}
@media (width < 768px) {
  .reason-item-link {
    font-size: 2.8rem;
    gap: 1.8rem;
    padding: 2rem 0;
  }
}
.reason-item-link::after {
  background: url(../img/common/arrow_01_right_white.png) no-repeat center center/contain;
  content: "";
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 8px;
}
@media (width < 768px) {
  .reason-item-link::after {
    height: 2.5rem;
    width: 1.5rem;
  }
}

.reason-item-icon {
  background: #d2edfa;
  border-radius: 6px;
  color: #1f2e93;
  display: grid;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: bold;
  height: 24px;
  margin-top: 2px;
  padding-bottom: 2px;
  place-content: center;
  width: 24px;
}
@media (width < 768px) {
  .reason-item-icon {
    border-radius: 1rem;
    font-size: 2.4rem;
    height: 4rem;
    margin-top: 0.2rem;
    padding-bottom: 0.4rem;
    width: 4rem;
  }
}

.reason-item-text {
  position: relative;
}
.reason-item-text::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
}

.faq {
  background: #1f2e93;
  padding: 60px 0;
}
@media (width < 768px) {
  .faq {
    padding: 9.9rem 0 6rem;
  }
}

.faq-head {
  display: flex;
}
@media (width < 768px) {
  .faq-head {
    align-items: center;
    flex-direction: column-reverse;
  }
}

.faq-img-items {
  display: flex;
  margin-left: 18px;
}
@media (width < 768px) {
  .faq-img-items {
    margin-left: 1.8rem;
    margin-top: 3.9rem;
  }
}

.faq-img-item:nth-child(1) {
  align-items: end;
  display: flex;
  padding-bottom: 23px;
  width: 123px;
}
@media (width < 768px) {
  .faq-img-item:nth-child(1) {
    padding-bottom: 4.3rem;
    width: 20rem;
  }
}
.faq-img-item:nth-child(2) {
  padding-bottom: 16px;
  width: 106px;
}
@media (width < 768px) {
  .faq-img-item:nth-child(2) {
    padding-bottom: 3.4rem;
    width: 18.3rem;
  }
}
.faq-img-item:nth-child(2) img {
  padding: 0 1px;
}
@media (width < 768px) {
  .faq-img-item:nth-child(2) img {
    padding: 0 1.7rem;
  }
}
.faq-img-item:nth-child(2) figcaption {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  margin-top: 5px;
  text-align: center;
}
@media (width < 768px) {
  .faq-img-item:nth-child(2) figcaption {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-top: 1.4rem;
  }
}
.faq-img-item:nth-child(3) {
  align-items: end;
  display: flex;
  margin-left: 20px;
  width: 129px;
}
@media (width < 768px) {
  .faq-img-item:nth-child(3) {
    margin-left: 3rem;
    width: 21rem;
  }
}

.faq-title {
  color: #fff;
  letter-spacing: 0.05em;
  margin-left: 7px;
  margin-top: 117px;
}
@media (width < 768px) {
  .faq-title {
    margin-left: initial;
    margin-top: initial;
  }
}
.faq-title::before {
  background-image: url(../img/top/faq_title_bg.svg);
  height: 180px;
  width: 180px;
}
@media (width < 768px) {
  .faq-title::before {
    height: 18rem;
    width: 18rem;
  }
}

.faq-items {
  display: grid;
  gap: 10px 0;
  grid-template-columns: 1fr;
}
@media (width < 768px) {
  .faq-items {
    gap: 1rem;
  }
}

.faq-item {
  border-radius: 5px;
  overflow: hidden;
}
@media (width < 768px) {
  .faq-item {
    border-radius: 2rem;
  }
}
.faq-item-question {
  align-items: center;
  background: #fff;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 40px;
  min-height: 74px;
  padding: 19px 13px 19px 25px;
}
@media (width < 768px) {
  .faq-item-question {
    min-height: 15.4rem;
    padding: 1.9rem 2.6rem 1.9rem 4.2rem;
  }
}
.faq-item-question::-webkit-details-marker {
  display: none;
}

.faq-item-title::before {
  color: #1f2e93;
  content: "Q";
}

.faq-item-answer-container::before {
  color: #cc0016;
  content: "A";
}

.faq-item-title,
.faq-item-answer-container {
  color: #1f2e93;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  padding-left: 53px;
  position: relative;
}
@media (width < 768px) {
  .faq-item-title,
  .faq-item-answer-container {
    font-size: 2.8rem;
    line-height: 1.7142857143;
    padding-left: 9.4rem;
  }
}
.faq-item-title::before,
.faq-item-answer-container::before {
  background: #fedd09;
  border-radius: 50px;
  display: grid;
  font-size: 18px;
  font-weight: 900;
  height: 38px;
  left: 0;
  place-content: center;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 38px;
}
@media (width < 768px) {
  .faq-item-title::before,
  .faq-item-answer-container::before {
    font-size: 3.2rem;
    height: 6.4rem;
    width: 6.4rem;
  }
}

.faq-item-btn {
  border-radius: 50%;
  height: 40px;
  position: relative;
  width: 40px;
}
@media (width < 768px) {
  .faq-item-btn {
    height: 4rem;
    width: 4rem;
  }
}
.faq-item-btn .btn-bar {
  background: #1f2e93;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
  translate: -50% -50%;
  width: 16px;
}
@media (width < 768px) {
  .faq-item-btn .btn-bar {
    height: 0.4rem;
    width: 2.6rem;
  }
}
.faq-item-btn .btn-bar.bar01 {
  rotate: 90deg;
}
details[open] .faq-item-btn .btn-bar.bar01 {
  rotate: 180deg;
}

.faq-item-answer {
  background: #fff;
  overflow: hidden;
  padding: 0 25px;
}
@media (width < 768px) {
  .faq-item-answer {
    padding: 0 4rem;
  }
}

.faq-item-answer-container {
  align-items: center;
  border-top: 2px solid #e6e6ec;
  display: flex;
  min-height: 74px;
  padding: 19px 0 19px 48px;
}
@media (width < 768px) {
  .faq-item-answer-container {
    border-width: 0.4rem;
    min-height: 15.4rem;
    padding: 1.9rem 0 1.9rem 9.1rem;
  }
}

.lineup {
  background: #fedd09;
  padding: 60px 0;
}
@media (width < 768px) {
  .lineup {
    padding: 6rem 0;
  }
}

.lineup-inner {
  max-width: 900px;
}

.lineup-title {
  color: #1f2e93;
  margin: 41px auto 0;
}
@media (width < 768px) {
  .lineup-title {
    margin-top: 2.5rem;
  }
}
.lineup-title::before {
  background-image: url(../img/top/lineup_title_bg.svg);
  height: 180px;
  width: 180px;
}
@media (width < 768px) {
  .lineup-title::before {
    height: 18rem;
    width: 18rem;
  }
}

.lineup-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 103px;
}
@media (width < 768px) {
  .lineup-items {
    flex-direction: column;
    gap: 1rem;
    margin-top: 8.8rem;
  }
}

.lineup-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: calc((100% - 60px) / 3);
}
@media (width < 768px) {
  .lineup-item {
    border-radius: 2rem;
    width: 100%;
  }
}
.lineup-item hgroup {
  display: flex;
  flex-direction: column;
}
@media (width < 768px) {
  .lineup-item hgroup {
    flex-grow: initial;
  }
}

.lineup-info {
  flex-grow: 1;
}

.lineup-item-tag,
.low-sec-product-item-tag {
  border: 1px solid #000;
  color: #000;
  display: grid;
  font-size: 10px;
  font-weight: bold;
  height: 19px;
  letter-spacing: 0.08em;
  margin-top: 10px;
  padding: 0 5px;
  place-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .lineup-item-tag,
  .low-sec-product-item-tag {
    border-width: 0.1rem;
    font-size: 2rem;
    font-weight: bold;
    height: 3.5rem;
    margin-top: 2rem;
    padding: 0 0.5rem;
  }
}

.lineup-item-link {
  color: #1f2e93;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 18px 28px;
  position: relative;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lineup-item-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .lineup-item-link:hover {
    opacity: 0.5;
  }
}
@media (width < 768px) {
  .lineup-item-link {
    align-items: center;
    display: grid;
    flex-direction: initial;
    grid-template-columns: 36.7rem 1fr;
    min-height: 34.2rem;
    padding: 3.4rem 6.3rem 3.5rem;
  }
}
.lineup-item-link::before, .lineup-item-link::after {
  bottom: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  content: "";
  position: absolute;
  right: 0;
}
.lineup-item-link::before {
  background: #fdf6cd;
  height: 170px;
  width: 170px;
}
@media (width < 768px) {
  .lineup-item-link::before {
    height: 28.7rem;
    width: 28.7rem;
  }
}
.lineup-item-link::after {
  background-color: #1f2e93;
  background-image: url(../img/common/arrow_02_right_white.png);
  background-position: right 11px bottom 11px;
  background-repeat: no-repeat;
  background-size: 18px 14px;
  height: 65px;
  width: 65px;
}
@media (width < 768px) {
  .lineup-item-link::after {
    background-position: right 2.2rem bottom 2.2rem;
    background-size: 2.8rem 2rem;
    height: 11rem;
    width: 11rem;
  }
}

.lineup-item-lead {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.5555555556;
}
@media (width < 768px) {
  .lineup-item-lead {
    font-size: 3.2rem;
    line-height: 1.5;
  }
}

.lineup-item-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  margin-top: 10px;
}
@media (width < 768px) {
  .lineup-item-title {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-top: 2.3rem;
  }
}

.lineup-item-img {
  height: 170px;
  margin: 27px auto 0;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .lineup-item-img {
    height: 23.3rem;
  }
}
.lineup-item-img img {
  height: 100%;
  width: auto;
}

.info {
  background: #fdf6cd;
  padding: 60px 0 101px;
}
@media (width < 768px) {
  .info {
    padding: 6rem 0 10.1rem;
  }
}

.info-title {
  color: #1f2e93;
  margin: 64px auto 0;
}
@media (width < 768px) {
  .info-title {
    margin-top: 5.9rem;
  }
}
.info-title::before {
  background-image: url(../img/top/info_title_bg.svg);
  height: 180px;
  width: 180px;
}
@media (width < 768px) {
  .info-title::before {
    height: 18rem;
    width: 18rem;
  }
}

.info-text {
  color: #1f2e93;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 90px;
  text-align: center;
}
@media (width < 768px) {
  .info-text {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-top: 9rem;
  }
}

.info-img {
  display: block;
  margin-top: 51px;
  position: relative;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .info-img:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .info-img:hover {
    opacity: 0.5;
  }
}
@media (width < 768px) {
  .info-img {
    margin-top: 5.3rem;
  }
}
.info-img figcaption {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  left: 38px;
  letter-spacing: 0.08em;
  line-height: 1.6875;
  position: absolute;
  top: 119px;
}
@media (width < 768px) {
  .info-img figcaption {
    font-size: 2.4rem;
    left: 3.8rem;
    line-height: 1.5;
    top: 11.9rem;
  }
}
@media (width < 768px) {
  .info-img img {
    border-radius: 2rem;
  }
}

.info-items {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}
@media (width < 768px) {
  .info-items {
    gap: 1rem;
    margin-top: 1rem;
  }
}

.info-item-link {
  background: #fff;
  border-radius: 21px;
  color: #1f2e93;
  display: grid;
  grid-template-columns: 130px 1fr;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .info-item-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .info-item-link:hover {
    opacity: 0.5;
  }
}
@media (width < 768px) {
  .info-item-link {
    border-radius: 3.5rem;
    grid-template-columns: 24rem 1fr;
  }
}

.info-item-body {
  align-items: center;
  display: flex;
  padding: 20px 29px;
  position: relative;
}
@media (width < 768px) {
  .info-item-body {
    padding: 2rem 3.9rem;
  }
}
.info-item-body::after {
  background-color: #fedd09;
  background-image: url(../img/common/arrow_02_right_blue.png);
  background-position: right 13px bottom 15px;
  background-repeat: no-repeat;
  background-size: 18px 14px;
  bottom: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  content: "";
  height: 70px;
  position: absolute;
  right: 0;
  width: 70px;
}
@media (width < 768px) {
  .info-item-body::after {
    background-position: right 2rem bottom 2.4rem;
    background-size: 2.8rem 2rem;
    height: 11rem;
    width: 11rem;
  }
}

.info-item-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.75;
}
@media (width < 768px) {
  .info-item-text {
    font-size: 2.8rem;
    line-height: 1.7142857143;
  }
}

.product {
  background: url(../img/top/product_bg.png) no-repeat center center/cover;
}

.product-inner {
  max-width: 517px;
  padding: 51px 0 61px;
  position: relative;
}
@media (width < 768px) {
  .product-inner {
    max-width: initial;
    padding: 5.8rem 0 7rem;
  }
}
.product-inner::before {
  background: url(../img/top/product_hana_tojima.png) no-repeat center center/cover;
  bottom: 0;
  content: "";
  height: 285px;
  position: absolute;
  right: 0;
  width: 199px;
}
@media (width < 768px) {
  .product-inner::before {
    height: 32.6rem;
    width: 22.7rem;
  }
}

.product-box {
  width: -moz-fit-content;
  width: fit-content;
}

.product-title {
  color: #1f2e93;
  margin-inline: auto;
}
@media (width < 768px) {
  .product-title {
    font-size: 4rem;
  }
}

.product-btn {
  align-items: center;
  background: #fff;
  border-radius: 5px;
  color: #1f2e93;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  height: 60px;
  letter-spacing: 0.08em;
  margin-top: 21px;
  padding: 0 22px;
  position: relative;
  width: 292px;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .product-btn:hover .product-btn-text::before {
    opacity: 1;
    visibility: visible;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .product-btn:hover .product-btn-text::before {
    opacity: 1;
    visibility: visible;
  }
}
@media (width < 768px) {
  .product-btn {
    border-radius: 1rem;
    font-size: 2.8rem;
    height: 8.5rem;
    letter-spacing: normal;
    padding: 0 2.7rem;
    width: 41.4rem;
  }
}
.product-btn::after {
  background: url(../img/common/arrow_02_right_blue.png) no-repeat center center/contain;
  content: "";
  height: 12px;
  position: absolute;
  right: 22px;
  top: 53%;
  translate: 0 -50%;
  width: 17px;
}
@media (width < 768px) {
  .product-btn::after {
    height: 2rem;
    right: 2.8rem;
    width: 2.8rem;
  }
}

.product-btn-text {
  position: relative;
}
.product-btn-text::before {
  background: currentColor;
  bottom: -4px;
  content: "";
  height: 1px;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
  width: 100%;
}

/*=======================
フッター
=======================*/
.footer {
  background: #1f2e93;
}

.footer-nav {
  align-items: center;
  border-bottom: 1px solid #fff;
  display: flex;
  height: 75px;
  justify-content: center;
}
@media (width < 768px) {
  .footer-nav {
    border: none;
    height: initial;
  }
}

.footer-nav-items {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-inline: auto;
  width: 640px;
}
@media (width < 768px) {
  .footer-nav-items {
    flex-wrap: wrap;
    gap: initial;
    width: 100%;
  }
}

.footer-nav-item {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .footer-nav-item {
    align-items: center;
    border-bottom: 2px solid #fff;
    display: flex;
    height: 10.2rem;
    justify-content: center;
    width: 50%;
  }
  .footer-nav-item:nth-child(odd) {
    border-right: 2px solid #fff;
  }
}

.footer-nav-item-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media (width < 768px) {
  .footer-nav-item-link {
    font-size: 2.4rem;
    padding: 1rem 0;
  }
}

.copyright {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  height: 70px;
  justify-content: center;
  letter-spacing: 0.08em;
}
@media (width < 768px) {
  .copyright {
    font-size: 2.4rem;
    height: 10.2rem;
  }
}

/*=======================
ハンバーガーメニュー
=======================*/
.drawer-icon {
  align-items: center;
  background: #fedd09;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
  margin-left: auto;
  width: 80px;
}
@media (width < 768px) {
  .drawer-icon {
    gap: 1rem;
    width: 9.8rem;
  }
}

.drawer-bars {
  height: 26px;
  position: relative;
  width: 40px;
}
@media (width < 768px) {
  .drawer-bars {
    height: 3rem;
    width: 4.6rem;
  }
}

.drawer-bar {
  background: #1f2e93;
  border-radius: 2px;
  height: 3px;
  position: absolute;
  transition: all 0.3s ease;
  width: 100%;
}
@media (width < 768px) {
  .drawer-bar {
    border-radius: 0.2rem;
    height: 0.4rem;
  }
}
.drawer-bar.bar01 {
  top: 0;
}
.drawer-bar.bar02 {
  top: 50%;
  transform: translateY(-50%);
}
.drawer-bar.bar03 {
  bottom: 0;
}
.drawer-bar.is-active.bar01 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.drawer-bar.is-active.bar02 {
  opacity: 0;
  visibility: hidden;
}
.drawer-bar.is-active.bar03 {
  bottom: initial;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.drawer-icon-text {
  color: #1f2e93;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
@media (width < 768px) {
  .drawer-icon-text {
    font-size: 1.8rem;
  }
}

.drawer {
  background: #fedd09;
  left: 0;
  max-height: calc(100vh - 84px);
  opacity: 0;
  overflow-y: auto;
  padding: 70px 0;
  position: fixed;
  top: 84px;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 20;
}
@media (width < 768px) {
  .drawer {
    max-height: calc(100vh - 10rem);
    padding: 11.2rem 0;
    top: 10rem;
  }
}
.drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.drawer-link-wrapper {
  display: grid;
  gap: 38px;
  grid-template-columns: 1fr;
  margin-bottom: 50px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .drawer-link-wrapper {
    gap: 4rem;
    margin-bottom: 10rem;
  }
}

.drawer-link {
  height: 110px;
  position: relative;
  transition: all 0.3s ease;
  width: 640px;
}
@media (hover: hover) and (pointer: fine) {
  .drawer-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .drawer-link:hover {
    opacity: 0.5;
  }
}
@media (width < 768px) {
  .drawer-link {
    height: 13.9rem;
    width: 67.2rem;
  }
}
.drawer-link::after {
  background: url(../img/common/arrow_01_right_blue.png) no-repeat center center/contain;
  content: "";
  height: 14px;
  position: absolute;
  right: 23px;
  top: 50%;
  translate: 0 -50%;
  width: 8px;
}
@media (width < 768px) {
  .drawer-link::after {
    height: 2.5rem;
    right: 4.4rem;
    width: 1.5rem;
  }
}

.drawer-reason-wrapper {
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.drawer-reason-wrapper::before, .drawer-reason-wrapper::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.drawer-reason-wrapper::before {
  background: url(../img/common/drawer_reason_text_pc.png) no-repeat center center/cover;
  height: 50px;
  left: 20px;
  top: 50%;
  translate: 0 -50%;
  width: 127px;
}
@media (width < 768px) {
  .drawer-reason-wrapper::before {
    background-image: url(../img/common/drawer_reason_text_sp.png);
    height: 3.3rem;
    left: 6rem;
    top: 3.3rem;
    translate: initial;
    width: 40.7rem;
  }
}
.drawer-reason-wrapper::after {
  background: url(../img/common/drawer_reason_male.png) no-repeat center center/cover;
  bottom: 4px;
  height: 167px;
  left: 145px;
  width: 155px;
}
@media (width < 768px) {
  .drawer-reason-wrapper::after {
    height: 15.8rem;
    left: initial;
    right: 5.2rem;
    top: -6.9rem;
    width: 14.6rem;
  }
}

.drawer-reason {
  background: #0090d1;
  border: 4px solid #1f2e93;
  border-radius: 10px;
  height: 159px;
  margin-top: initial;
  position: relative;
}
@media (width < 768px) {
  .drawer-reason {
    background-image: initial;
    border-radius: 2rem;
    border-width: 0.8rem;
    height: 31.7rem;
    width: 67.2rem;
  }
}

.drawer-reason-items {
  background: #fff;
  border-radius: 0 10px 10px 0;
}
@media (width < 768px) {
  .drawer-reason-items {
    border-radius: initial;
    height: 22.1rem;
  }
}

.drawer-reason-item {
  border-color: #1f2e93;
}

.drawer-reason-item-link {
  color: #1f2e93;
}
.drawer-reason-item-link::after {
  background-image: url(../img/common/arrow_01_right_blue.png);
}

.drawer-close {
  align-items: center;
  background: transparent;
  cursor: pointer;
  display: flex;
  gap: 8px;
  margin: 57px auto 0;
}
@media (width < 768px) {
  .drawer-close {
    gap: 1.5rem;
    margin-top: 5.7rem;
  }
}

.drawer-close-icon img {
  height: 18px;
  width: 18px;
}
@media (width < 768px) {
  .drawer-close-icon img {
    height: 3.3rem;
    width: 3.3rem;
  }
}

.drawer-close-text {
  color: #1f2e93;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}
@media (width < 768px) {
  .drawer-close-text {
    font-size: 3.2rem;
  }
}

.drawer-bg {
  background: rgba(31, 46, 147, 0);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 2;
}
.drawer-bg.is-active {
  background: rgba(31, 46, 147, 0.5);
  visibility: visible;
}

/*=======================
下層 / wake_1
=======================*/
.low-mv-img {
  width: 100%;
}

.low-title {
  background: #1f2e93;
  margin-bottom: 79px;
  margin-top: -6.3rem;
  padding: 26px 0;
  position: relative;
}
@media (width < 768px) {
  .low-title {
    margin-bottom: 7.6rem;
    margin-top: -3.7rem;
    padding: 2.6rem 0;
  }
}

.low-title-text {
  font-feature-settings: "palt";
}

.low-title-text,
.low-link-text {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5333333333;
}
@media (width < 768px) {
  .low-title-text,
  .low-link-text {
    font-size: 3.6rem;
    line-height: 1.4444444444;
  }
}
.low-title-text .small,
.low-link-text .small {
  display: block;
  font-size: 24px;
  font-weight: normal;
}
@media (width < 768px) {
  .low-title-text .small,
  .low-link-text .small {
    font-size: 3.2rem;
  }
}
.low-title-text .negative-mt,
.low-link-text .negative-mt {
  display: block;
  margin-top: -10px;
}
@media (width < 768px) {
  .low-title-text .negative-mt,
  .low-link-text .negative-mt {
    margin-top: -1rem;
  }
}

.low-title-content-wrapper {
  display: flex;
  gap: 19px;
  justify-content: center;
}
@media (width < 768px) {
  .low-title-content-wrapper {
    gap: 1.9rem;
  }
}

.low-title-img {
  position: relative;
  width: 120px;
}
@media (width < 768px) {
  .low-title-img {
    width: 14.3rem;
  }
}
.low-title-img img {
  height: auto;
  left: 50%;
  position: absolute;
  top: 36%;
  translate: -50% -50%;
  width: 100%;
}
@media (width < 768px) {
  .low-title-img img {
    top: 30%;
  }
}

.low-title-content,
.low-link-content {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: right;
  position: relative;
}
@media (width < 768px) {
  .low-title-content,
  .low-link-content {
    gap: 2.7rem;
  }
}

@media (width < 768px) {
  .low-title-box {
    margin-top: 0.2rem;
  }
}

@media (width < 768px) {
  .low-title-content {
    align-items: initial;
  }
}

.low-title-box,
.low-link-box {
  background: #d2edfa;
  border-radius: 10px;
  color: #1f2e93;
  display: grid;
  font-size: 38px;
  font-weight: bold;
  height: 64px;
  padding-bottom: 6px;
  place-content: center;
  width: 64px;
}
@media (width < 768px) {
  .low-title-box,
  .low-link-box {
    border-radius: 1rem;
    font-size: 4.8rem;
    height: 8rem;
    padding-bottom: 1.2rem;
    width: 8rem;
  }
}

@media (width < 768px) {
  .low-title-box {
    margin-top: 0.5rem;
  }
}

.low-sec {
  margin-bottom: 58px;
}
@media (width < 768px) {
  .low-sec {
    margin-bottom: 7.2rem;
  }
}
.low-sec:last-of-type {
  margin-bottom: 0;
}

@media (width < 768px) {
  .low-inner {
    width: 63rem;
  }
}

.low-sec-title {
  color: #0090d1;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
  padding-left: 34px;
  position: relative;
}
@media (width < 768px) {
  .low-sec-title {
    font-size: 4.9rem;
    margin-bottom: 4.6rem;
    padding-left: 4.8rem;
  }
}
.low-sec-title::before {
  background: #1f2e93;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  top: 54%;
  translate: 0 -50%;
  width: 17px;
}
@media (width < 768px) {
  .low-sec-title::before {
    height: 2.8rem;
    width: 2.8rem;
  }
}

.low-sec-text {
  font-feature-settings: "palt";
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-bottom: 10px;
}
@media (width < 768px) {
  .low-sec-text {
    font-size: 2.8rem;
    letter-spacing: normal;
    line-height: 1.8571428571;
    margin-bottom: 3.4rem;
  }
}
.low-sec-text:last-of-type {
  margin-bottom: 0;
}
.low-sec-text .bold {
  font-weight: bold;
}
.low-sec-text.mt {
  margin-top: 20px;
}
@media (width < 768px) {
  .low-sec-text.mt {
    margin-top: 4.7rem;
  }
}
.low-sec-text .attention {
  color: red;
  font-size: 10px;
}
@media (width < 768px) {
  .low-sec-text .attention {
    font-size: 1.6rem;
  }
}

.low-sec-attention {
  color: red;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.low-sec-attention:last-of-type {
  margin-bottom: 0;
}
@media (width < 768px) {
  .low-sec-attention {
    font-size: 2rem;
    line-height: 1.7;
  }
}

.low-sec-content {
  margin-top: 22px;
}
@media (width < 768px) {
  .low-sec-content {
    margin-top: 4.8rem;
  }
}

.low-sec-box {
  border-top: 1px solid #97a0a4;
  padding: 18px 0 20px;
}
@media (width < 768px) {
  .low-sec-box {
    padding: 3.7rem 0 4rem;
  }
}
.low-sec-box:last-of-type {
  border-bottom: 1px solid #97a0a4;
}
.low-sec-box.grid {
  align-items: center;
  display: grid;
  gap: 20px 21px;
  grid-template-columns: 87px 1fr;
}
@media (width < 768px) {
  .low-sec-box.grid {
    gap: 2.3rem 2.5rem;
    grid-template-columns: 10.1rem 1fr;
    padding: 2.8rem 0 4rem;
  }
}
.low-sec-box.grid .low-sec-img {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (width < 768px) {
  .low-sec-box.grid .low-sec-img {
    grid-row: 1/2;
  }
}
.low-sec-box.grid .low-sub-title {
  grid-column: 2/3;
  grid-row: 1/2;
}
.low-sec-box.grid .low-tag-items {
  grid-column: 2/3;
  grid-row: 2/3;
  margin-top: initial;
}
@media (width < 768px) {
  .low-sec-box.grid .low-tag-items {
    grid-column: 1/3;
  }
}
.low-sec-box.grid .low-sec-text {
  grid-column: 1/3;
  grid-row: 2/3;
}

.low-sub-title {
  font-size: 18px;
  font-weight: bold;
}
@media (width < 768px) {
  .low-sub-title {
    font-size: 2.8rem;
  }
}

.low-tag-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
@media (width < 768px) {
  .low-tag-items {
    gap: 1.5rem;
    margin-top: 3rem;
  }
}

.low-tag-item {
  background: #97a0a4;
  border-radius: 3px;
  color: #fff;
  display: grid;
  font-size: 14px;
  height: 24px;
  padding: 0 4px;
  place-content: center;
}
@media (width < 768px) {
  .low-tag-item {
    border-radius: 0.6rem;
    font-size: 2.8rem;
    height: 4.6rem;
    padding: 0 0.8rem;
  }
}

.low-sec-img {
  width: 87px;
}
@media (width < 768px) {
  .low-sec-img {
    margin-left: 0.4rem;
    width: 10.1rem;
  }
}

.low-link {
  background: #1f2e93;
  border-radius: 10px;
  color: #fff;
  display: block;
  margin: 60px auto 0;
  min-width: 580px;
  padding: 20px 40px 20px 15px;
  position: relative;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
@media (hover: hover) and (pointer: fine) {
  .low-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .low-link:hover {
    opacity: 0.5;
  }
}
@media (width < 768px) {
  .low-link {
    border-radius: 1rem;
    margin-top: 8rem;
    max-width: 63rem;
    min-width: initial;
    padding: 2.3rem 2rem 2.3rem 3rem;
    width: 100%;
  }
}
.low-link::after {
  background: url(../img/common/arrow_01_right_white.png) no-repeat center center/contain;
  content: "";
  height: 14px;
  position: absolute;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
  width: 10px;
}
@media (width < 768px) {
  .low-link::after {
    height: 2.5rem;
    right: 3.1rem;
    width: 1.5rem;
  }
}

.low-link-content {
  justify-content: left;
}
@media (width < 768px) {
  .low-link-content {
    gap: 2.2rem;
  }
}

@media (width < 768px) {
  .low-link-box {
    font-size: 4rem;
    height: 6.9rem;
    width: 6.9rem;
  }
}

@media (width < 768px) {
  .low-link-text {
    font-size: 3rem;
    letter-spacing: normal;
  }
}
.low-link-text .small {
  font-size: 2.8rem;
}
@media (width < 768px) {
  .low-link-text .negative-mt {
    margin-top: initial;
  }
}

/*=======================
下層 / wake_2
=======================*/
.low-lead {
  margin-bottom: 52px;
}
@media (width < 768px) {
  .low-lead {
    margin-bottom: 6.5rem;
  }
}

.low-sec-items {
  display: grid;
  gap: 58px;
  grid-template-columns: 1fr;
  margin-top: 52px;
}
@media (width < 768px) {
  .low-sec-items {
    gap: 8.1rem;
    margin-top: 6.1rem;
  }
}

.low-sec-item-title {
  align-items: center;
  background: #ffee33;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 10px 9px 10px 24px;
}
@media (width < 768px) {
  .low-sec-item-title {
    gap: 1rem;
    margin-bottom: 4.5rem;
    padding: 1rem 0.9rem 1rem 2.4rem;
  }
}
.low-sec-item-title.attention {
  position: relative;
}
.low-sec-item-title.attention::after {
  bottom: -20px;
  content: "※特許出願中";
  font-size: 14px;
  letter-spacing: 0.05em;
  position: absolute;
  right: 0;
}
@media (width < 768px) {
  .low-sec-item-title.attention::after {
    bottom: -2.9rem;
    font-size: 2.4rem;
  }
}

.low-sec-item-title-text {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
}
@media (width < 768px) {
  .low-sec-item-title-text {
    font-feature-settings: "palt";
    font-size: 3.6rem;
    line-height: 1.3333333333;
  }
}
.low-sec-item-title-text .small {
  font-size: 24px;
}
@media (width < 768px) {
  .low-sec-item-title-text .small {
    font-size: 3rem;
  }
}

.low-sec-item-tag {
  background: #0090d1;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.3333333333;
  padding: 6px 18px;
}
@media (width < 768px) {
  .low-sec-item-tag {
    border-radius: 1rem;
    font-size: 2.4rem;
    line-height: 1.4166666667;
    padding: 1.2rem;
  }
}

.low-sec-sub-items {
  display: grid;
  gap: 43px;
  grid-template-columns: 1fr;
  margin-top: 23px;
}
@media (width < 768px) {
  .low-sec-sub-items {
    gap: 6.8rem;
    margin-top: 3.4rem;
  }
}

.low-sec-sub-item:nth-of-type(2) .low-sec-sub-list li figure picture img {
  margin-top: 18px;
}
@media (width < 768px) {
  .low-sec-sub-item:nth-of-type(2) .low-sec-sub-list li figure picture img {
    margin-top: 2rem;
  }
}
.low-sec-sub-item:nth-of-type(2) .low-sec-sub-list li:nth-child(1) figure picture img {
  height: 81px;
}
@media (width < 768px) {
  .low-sec-sub-item:nth-of-type(2) .low-sec-sub-list li:nth-child(1) figure picture img {
    height: 13.5rem;
  }
}
.low-sec-sub-item:nth-of-type(2) .low-sec-sub-list li:nth-child(2) figure picture img {
  height: 110px;
}
@media (width < 768px) {
  .low-sec-sub-item:nth-of-type(2) .low-sec-sub-list li:nth-child(2) figure picture img {
    height: 18.3rem;
  }
}
.low-sec-sub-item:nth-of-type(2) .low-sec-sub-list li:nth-child(3) figure picture img {
  height: 100px;
}
@media (width < 768px) {
  .low-sec-sub-item:nth-of-type(2) .low-sec-sub-list li:nth-child(3) figure picture img {
    height: 16.7rem;
  }
}

@media (width < 768px) {
  .low-sec-item:nth-of-type(2) .low-sec-sub-item .low-sec-sub-list li figure picture img {
    margin: 2rem auto 0;
  }
}
.low-sec-item:nth-of-type(2) .low-sec-sub-item .low-sec-sub-list li:nth-child(1) figure picture img {
  height: 127px;
}
@media (width < 768px) {
  .low-sec-item:nth-of-type(2) .low-sec-sub-item .low-sec-sub-list li:nth-child(1) figure picture img {
    height: 21.1rem;
    margin: initial;
    margin-left: auto;
    margin-top: 2rem;
  }
}
.low-sec-item:nth-of-type(2) .low-sec-sub-item .low-sec-sub-list li:nth-child(2) figure picture img {
  height: 98px;
}
@media (width < 768px) {
  .low-sec-item:nth-of-type(2) .low-sec-sub-item .low-sec-sub-list li:nth-child(2) figure picture img {
    height: 16.3rem;
  }
}
.low-sec-item:nth-of-type(2) .low-sec-sub-item .low-sec-sub-list li:nth-child(3) figure picture img {
  height: 101px;
}
@media (width < 768px) {
  .low-sec-item:nth-of-type(2) .low-sec-sub-item .low-sec-sub-list li:nth-child(3) figure picture img {
    height: 16.8rem;
  }
}
.low-sec-item:nth-of-type(2) .low-sec-sub-item .low-sec-sub-list li:nth-child(4) figure picture img {
  height: 127px;
}
@media (width < 768px) {
  .low-sec-item:nth-of-type(2) .low-sec-sub-item .low-sec-sub-list li:nth-child(4) figure picture img {
    height: 21.2rem;
  }
}
@media (width < 768px) {
  .low-sec-item:nth-of-type(3) .low-sec-sub-item .low-sec-sub-list li figure picture img {
    margin: initial;
    margin-left: auto;
    margin-right: 1rem;
    margin-top: 3rem;
  }
}
.low-sec-item:nth-of-type(3) .low-sec-sub-item .low-sec-sub-list li:nth-child(1) figure picture img {
  height: 100px;
}
@media (width < 768px) {
  .low-sec-item:nth-of-type(3) .low-sec-sub-item .low-sec-sub-list li:nth-child(1) figure picture img {
    height: 16.6em;
  }
}
.low-sec-item:nth-of-type(3) .low-sec-sub-item .low-sec-sub-list li:nth-child(2) figure picture img {
  height: 107px;
}
@media (width < 768px) {
  .low-sec-item:nth-of-type(3) .low-sec-sub-item .low-sec-sub-list li:nth-child(2) figure picture img {
    height: 17.9rem;
  }
}
.low-sec-item:nth-of-type(3) .low-sec-sub-item .low-sec-sub-list li:nth-child(3) figure picture img {
  height: 107px;
}
@media (width < 768px) {
  .low-sec-item:nth-of-type(3) .low-sec-sub-item .low-sec-sub-list li:nth-child(3) figure picture img {
    height: 17.8rem;
  }
}

.low-sec-sub-item-title {
  color: #0090d1;
  font-feature-settings: "palt";
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2.1666666667;
  padding-left: 22px;
  position: relative;
}
@media (width < 768px) {
  .low-sec-sub-item-title {
    font-size: 2.8rem;
    line-height: 1.8571428571;
    padding-left: 2.2rem;
  }
}
.low-sec-sub-item-title::before {
  background: currentColor;
  content: "";
  height: 30px;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 10px;
}
@media (width < 768px) {
  .low-sec-sub-item-title::before {
    height: 75%;
    top: 52%;
    width: 1rem;
  }
}

.low-sec-sub-list {
  counter-reset: list-counter;
  display: grid;
  gap: 38px 18px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 29px;
}
@media (width < 768px) {
  .low-sec-sub-list {
    gap: 4.2rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    margin-top: 2.9rem;
  }
}
.low-sec-sub-list li {
  counter-increment: list-counter;
  position: relative;
}
@media (width < 768px) {
  .low-sec-sub-list li {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
}
.low-sec-sub-list li::before {
  border: 2px solid #0090d1;
  border-radius: 50%;
  color: #0090d1;
  content: counter(list-counter);
  font-size: 30px;
  font-weight: bold;
  height: 41px;
  left: 0;
  line-height: 1.3;
  position: absolute;
  text-align: center;
  top: 0;
  width: 41px;
}
@media (width < 768px) {
  .low-sec-sub-list li::before {
    border-width: 0.2rem;
    font-size: 3.6rem;
    height: 5.6rem;
    line-height: 1.4;
    width: 5.6rem;
  }
}
@media (width < 768px) {
  .low-sec-sub-list li figure {
    display: grid;
    gap: 0;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
}
.low-sec-sub-list li figure picture {
  align-items: center;
  display: flex;
  height: 155px;
}
@media (width < 768px) {
  .low-sec-sub-list li figure picture {
    height: initial;
  }
}
.low-sec-sub-list li figure picture img {
  height: 150px;
  margin-inline: auto;
  width: auto;
}
@media (width < 768px) {
  .low-sec-sub-list li figure picture img {
    height: 25.3rem;
  }
}
.low-sec-sub-list li figure figcaption {
  color: #666;
  font-feature-settings: "palt";
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  margin-top: 19px;
}
@media (width < 768px) {
  .low-sec-sub-list li figure figcaption {
    font-size: 2.6rem;
    letter-spacing: -0.04em;
    line-height: 1.5384615385;
    margin-top: 3.5rem;
  }
}

.low-sec-item-text {
  margin-top: 12px;
}
@media (width < 768px) {
  .low-sec-item-text {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin-top: 2.9rem;
    padding-left: 1em;
    text-indent: -1em;
  }
}

.low-sec-product {
  background: #d2edfa;
  border-radius: 10px;
  margin-top: 53px;
  padding: 16px 20px 20px;
}
@media (width < 768px) {
  .low-sec-product {
    border-radius: 1rem;
    margin-left: -3rem;
    margin-top: 5.9rem;
    padding: 1.3rem 3rem 3rem;
    width: calc(100% + 6rem);
  }
}

.low-sec-product-text {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2.1666666667;
  margin-left: 10px;
}
@media (width < 768px) {
  .low-sec-product-text {
    font-size: 2.8rem;
    margin-left: initial;
  }
}

.low-sec-product-items {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 16px;
}
@media (width < 768px) {
  .low-sec-product-items {
    display: grid;
    gap: 2.9rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.8rem;
  }
}
.low-sec-product-items.is-1fr > .low-sec-product-item:first-child {
  grid-column: 2;
}
@media (width < 768px) {
  .low-sec-product-items.is-1fr > .low-sec-product-item:first-child {
    grid-column: 1/-1;
    justify-self: center;
    width: calc((100% - 2.9rem) / 2);
  }
}

.low-sec-product-items:has(.low-sec-product-item-tag) .low-sec-product-item {
  grid-row: span 2;
}
.low-sec-product-items:has(.low-sec-product-item-tag) .low-sec-product-item-link {
  grid-row: span 2;
}

.low-sec-product-item {
  background: #fff;
  display: grid;
  grid-row: span 1;
  grid-template-rows: subgrid;
}

.low-sec-product-item-link {
  display: grid;
  grid-row: span 1;
  grid-template-rows: subgrid;
  padding-bottom: 13px;
  padding-top: 16px;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .low-sec-product-item-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .low-sec-product-item-link:hover {
    opacity: 0.5;
  }
}
@media (width < 768px) {
  .low-sec-product-item-link {
    padding-bottom: 2.6rem;
    padding-top: 3.1rem;
  }
}

.low-sec-product-item-img figcaption {
  color: #000;
  display: block;
  font-feature-settings: "palt";
  font-size: 16px;
  line-height: 1.875;
  margin-top: 20px;
  padding: 0 18px;
}
@media (width < 768px) {
  .low-sec-product-item-img figcaption {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-top: 2.3rem;
    padding: 0 1.8rem;
  }
}

.low-sec-product-item-tag {
  margin: 0 18px;
}
@media (width < 768px) {
  .low-sec-product-item-tag {
    margin: 0 1.8rem;
  }
}

.efficacy {
  margin-top: 60px;
}
@media (width < 768px) {
  .efficacy {
    margin-top: 7.9rem;
  }
}

.efficacy-title {
  border-bottom: 1px solid #97a0a4;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}
@media (width < 768px) {
  .efficacy-title {
    font-size: 2.8rem;
    padding-bottom: 2.4rem;
  }
}

.efficacy-img {
  margin-top: 40px;
}
@media (width < 768px) {
  .efficacy-img {
    margin-top: 4rem;
  }
}

.efficacy-text {
  font-size: 16px;
  letter-spacing: 0.025em;
  line-height: 2;
  margin-bottom: 10px;
  margin-top: 31px;
}
.efficacy-text .attention {
  color: red;
  font-size: 10px;
}
@media (width < 768px) {
  .efficacy-text .attention {
    font-size: 1.6rem;
  }
}
@media (width < 768px) {
  .efficacy-text {
    font-size: 2.8rem;
    line-height: 1.8571428571;
    margin-bottom: 3.4rem;
    margin-top: 7rem;
  }
}

.movie-making {
  padding-top: 50px;
}
.movie-making .movie-content-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 340px;
}
.movie-making .movie-content {
  border-radius: 8px;
  height: 0;
  overflow: hidden;
  padding-bottom: 178.1970649895%;
  position: relative;
  width: 100%;
}
@media (width < 768px) {
  .movie-making {
    padding-top: 5rem;
  }
  .movie-making .movie-content-wrapper {
    width: 84%;
  }
  .movie-making .movie-content {
    border-radius: 4px;
  }
}
/*# sourceMappingURL=style.css.map */