@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

/*--------------------------------------------------------------------------
    Global Variables
---------------------------------------------------------------------------*/
/*＊-------------------------------------------------------
サイト全体の基本設定
------------------------------------------------------- **/
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100dvh;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  position: relative;
  font-size: 1.6rem;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: initial;
}

p {
  text-wrap: initial;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: initial;
}

ul, ol {
  list-style: none;
  padding: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
a:hover {
  opacity: 0.7;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
button:hover {
  opacity: 0.7;
}

input[type=text] {
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
}

textarea {
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 9999;
}

/*
.l-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 10px 16px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    height: 89px;
    padding: 10px 40px;
  }
}
*/
/*--------------------------------------------------------------------------
  1. ヘッダー自体の高さを変更 20260303
---------------------------------------------------------------------------*/
.l-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px; /* 【変更】42pxから60pxへ */
  padding: 10px 16px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    height: 120px; /* 【変更】89pxから120pxへ */
    padding: 10px 40px;
  }
}
/*--------------------------------------------------------------------------
  /1. ヘッダー自体の高さを変更 20260303
---------------------------------------------------------------------------*/

.l-header__logo {
  font-size: 16px;
  width: 78px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 160px;
    padding-inline-start: 16px;
  }
}

.l-footer {
  position: sticky;
  top: 100%;
}
.l-footer__inner {
  width: min(90vw, 1100px);
  margin-inline: auto;
}

.l-footer-copyright {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    padding: 24px;
  }
}
.l-footer-copyright__txt {
  font-size: 12px;
  color: #888;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright__txt {
    font-size: 13px;
  }
}

/*
.l-main {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 89px;
  }
}
*/
/*--------------------------------------------------------------------------
  2. メインコンテンツがヘッダーに潜り込まないように調整 20260303
---------------------------------------------------------------------------*/
.l-main {
  margin-top: 60px; /* 【変更】.l-header__innerと同じ高さにする */
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 120px; /* 【変更】.l-header__innerと同じ高さにする */
  }
}
/*--------------------------------------------------------------------------
  /2. メインコンテンツがヘッダーに潜り込まないように調整 20260303
---------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
.l-sec
---------------------------------------------------------------------------*/
.l-sec__inner {
  width: min(90svw, 1100px);
  margin-inline: auto;
  container-type: inline-size;
}

.l-accordion-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-accordion-list {
    row-gap: 24px;
  }
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------
Component: PC Nav 
-------------------------------------------------------------------------- */
.c-nav {
  display: flex;
  gap: 16px;
}
.c-nav__item a {
  display: inline-block;
  padding-block: 8px 5px;
  line-height: 1.5;
}
.c-nav--footer this__item a {
  font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
 Component: Drawer (SP Nav) 
 -------------------------------------------------------------------------- */
.c-drawer {
  width: 100vw;
  transition: all 0.3s;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 60px; /*42px; 20260303*/
  background-color: rgba(0, 12, 27, 0.8);
  transform: translateY(-100%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-drawer {
    width: 354px;
    padding-top: 120px; /*89px; 20260303 */
  }
}
.c-drawer.is-open {
  transform: translateY(0);
  pointer-events: auto;
}
.c-drawer__list {
  width: 100%;
  margin: 0 auto;
}
.c-drawer__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5647058824);
}
.c-drawer__item a {
  padding: min(18px, 4vw) 0;
  display: block;
  font-weight: 500;
  color: #fff;
  padding-inline: clamp(16.8px, 5.6svw, 42px);
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}
@media (min-width: 768px) {
  .c-drawer__item a {
    font-size: clamp(8.8px, 2cqw, 22px);
  }
}
.c-drawer__item a:hover {
  color: #000;
  background-color: #fff;
}

/* --------------------------------------------------------------------------
Component: Hamburger Button 
-------------------------------------------------------------------------- */
.c-hamburger {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10px; /*2px; 20260303*/
  left: 6px;
  z-index: 10000; /*999; 20260303*/
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    top: 40px; /*24px; 20260303*/
    left: 58px;
    row-gap: 8px;
  }
}
.c-hamburger span {
  display: block;
  height: 4px;
  width: 29px;
  transition: all 0.3s;
  background: #0f386e;
}
@media screen and (min-width: 768px) {
  .c-hamburger span {
    width: 41px;
  }
}
.c-hamburger.is-open {
  row-gap: 0px;
}
.c-hamburger.is-open span:nth-child(1) {
  margin-bottom: -8px;
  rotate: 45deg;
}
.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-open span:nth-child(3) {
  rotate: -45deg;
}

/* --------------------------------------------------------------------------
Component: Accordion 
-------------------------------------------------------------------------- */
.c-accordion {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.c-accordion__btn {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: #eee;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-accordion__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.c-accordion .c-accordion__btn.is-open .c-accordion__icon {
  transform: rotate(-135deg);
}
.c-accordion__content {
  padding: 16px;
}

/* MV
**********************************************/
.p-mv {
  background-image: linear-gradient(to right, #0f386e, #0f386e 28%, #1f539e 50%, #0f386e 72%, #0f386e, #0f386e);
  padding-bottom: 50svw;
}
.p-mv__inner {
  width: 100%;
  padding-top: clamp(32px, 10.6666666667svw, 80px);
}
@media (min-width: 768px) {
  .p-mv__inner {
    padding-top: clamp(57.2px, 13cqw, 143px);
  }
}
.p-mv__img {
  width: clamp(292px, 97.3333333333svw, 730px);
}
.p-mv__img img {
  border-top-right-radius: clamp(20.8px, 6.9333333333svw, 52px);
  border-bottom-right-radius: clamp(20.8px, 6.9333333333svw, 52px);
}
@media (min-width: 768px) {
  .p-mv__img img {
    border-top-right-radius: 3.4vw;
    border-bottom-right-radius: 3.4vw;
  }
}
@media (min-width: 768px) {
  .p-mv__img {
    width: 94cqw;
  }
}
.p-mv__text {
  margin-top: clamp(40px, 13.3333333333svw, 100px);
  padding-bottom: clamp(36px, 12svw, 90px);
  width: clamp(276px, 92svw, 690px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-mv__text {
    width: 80.4666666667cqw;
    margin-top: clamp(30.4px, 6.9090909091cqw, 76px);
    padding-bottom: clamp(32.8px, 7.4545454545cqw, 82px);
  }
}

/* ABOUT
**********************************************/
.p-about {
  background: #fff;
  margin-top: -50svw;
  border-top-right-radius: clamp(120px, 40svw, 300px);
  padding-bottom: clamp(16px, 5.3333333333svw, 40px);
}
@media (min-width: 768px) {
  .p-about {
    border-top-right-radius: 50vw;
  }
}
.p-about__title {
  width: clamp(193.6px, 64.5333333333svw, 484px);
  margin-inline: auto;
  margin-top: clamp(36px, 12svw, 90px);
  margin-bottom: clamp(20px, 6.6666666667svw, 50px);
}
@media (min-width: 768px) {
  .p-about__title {
    margin-top: clamp(32px, 7.2727272727cqw, 80px);
    margin-bottom: clamp(16px, 3.6363636364cqw, 40px);
    width: 88%;
  }
}
@media (min-width: 768px) {
  .p-about__summary {
    display: flex;
    gap: clamp(26px, 5.9090909091cqw, 65px);
  }
}
@media (min-width: 768px) {
  .p-about__summary-textblock {
    width: 50.5454545455%;
  }
}
.p-about__summary-bold {
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: 500;
  color: #1f648e;
  letter-spacing: 0.025em;
  border-top: 1px solid #1f648e;
  border-bottom: 1px solid #1f648e;
  padding-top: clamp(5.6px, 1.8666666667svw, 14px);
  padding-bottom: clamp(6.4px, 2.1333333333svw, 16px);
}
@media (min-width: 768px) {
  .p-about__summary-bold {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
@media (min-width: 768px) {
  .p-about__summary-bold {
    padding-block: clamp(8px, 1.8181818182cqw, 20px);
  }
}
.p-about__summary-text {
  font-size: clamp(16.8px, 5.6svw, 42px);
  line-height: 1.5238095238;
  margin-block: clamp(16px, 5.3333333333svw, 40px);
}
@media (min-width: 768px) {
  .p-about__summary-text {
    font-size: clamp(8.4px, 1.9090909091cqw, 21px);
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .p-about__summary-text {
    margin-bottom: 0;
    margin-top: clamp(11.2px, 3.7333333333svw, 28px);
  }
}
.p-about__summary-img {
  width: clamp(200px, 66.6666666667svw, 500px);
  margin-inline: auto;
  aspect-ratio: 10/13;
}
@media (min-width: 768px) {
  .p-about__summary-img {
    width: 45.2727272727%;
    margin-top: -10px;
  }
}
.p-about__deco-arrow {
  width: clamp(196px, 65.3333333333svw, 490px);
  margin-inline: auto;
  margin-top: clamp(18px, 6svw, 45px);
  margin-bottom: clamp(12px, 4svw, 30px);
}
@media (min-width: 768px) {
  .p-about__deco-arrow {
    width: clamp(245.2px, 55.7272727273cqw, 613px);
  }
}
.p-about__timing-heading {
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: 500;
  color: #1f648e;
  letter-spacing: 0.025em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-about__timing-heading {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
.p-about__timing-img {
  margin-inline: auto;
  margin-top: clamp(24px, 8svw, 60px);
  margin-bottom: clamp(32px, 10.6666666667svw, 80px);
  aspect-ratio: 96/121;
}
@media (min-width: 768px) {
  .p-about__timing-img {
    aspect-ratio: 2297/868;
    margin-top: clamp(16px, 3.6363636364cqw, 40px);
    margin-bottom: clamp(22.4px, 5.0909090909cqw, 56px);
  }
}
@media (min-width: 768px) {
  .p-about__btn {
    width: clamp(321.2px, 73cqw, 803px);
    margin-inline: auto;
  }
}
.p-about__btn-text {
  width: clamp(256px, 85.3333333333svw, 640px);
  margin-inline: auto;
  margin-bottom: clamp(6.4px, 2.1333333333svw, 16px);
}
@media (min-width: 768px) {
  .p-about__btn-text {
    width: clamp(276px, 62.7272727273cqw, 690px);
    margin-bottom: clamp(4.8px, 1.6svw, 12px);
  }
}
.p-about__btn-note-list {
  margin-top: clamp(6.4px, 2.1333333333svw, 16px);
  list-style-type: "※";
  padding-left: clamp(11.2px, 3.7333333333svw, 28px);
}
@media (min-width: 768px) {
  .p-about__btn-note-list {
    width: fit-content;
    margin-left: auto;
    margin-top: clamp(4.8px, 1.0909090909cqw, 12px);
  }
}
.p-about__btn-note {
  font-size: clamp(11.2px, 3.7333333333svw, 28px);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-about__btn-note {
    font-size: clamp(6px, 1.3636363636cqw, 15px);
    line-height: 2.3333333333;
  }
}

/* PRODUCT
**********************************************/
.p-product {
  position: relative;
  background-image: linear-gradient(to top, #d1f1f3, #e8f8f9);
  padding-top: clamp(120px, 40svw, 300px);
  padding-bottom: clamp(112px, 37.3333333333svw, 280px);
  clip-path: polygon(0 18svw, 100% 0, 100% 100%, 0 100%);
}
@media (min-width: 768px) {
  .p-product {
    padding-top: clamp(86.4px, 19.6363636364cqw, 216px);
    padding-bottom: clamp(78.4px, 17.8181818182cqw, 196px);
    clip-path: polygon(0 10svw, 100% 0, 100% 100%, 0 100%);
  }
}
.p-product::before {
  content: "";
  display: block;
  width: 100%;
  height: clamp(100px, 33.3333333333svw, 250px);
  position: absolute;
  top: -13svw;
  left: 0;
  background: url(../img/top/about-frame-top.svg) no-repeat center/cover;
}
@media (min-width: 768px) {
  .p-product::before {
    background: url(../img/top/about-frame-top-pc.svg) no-repeat center/cover;
    height: 44vw;
    top: -34svw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-product__title {
    width: min(803px, 80%);
    margin-inline: auto;
  }
}
.p-product__summary-img {
  margin-top: clamp(18px, 6svw, 45px);
  aspect-ratio: 144/275;
}
@media (min-width: 768px) {
  .p-product__summary-img {
    aspect-ratio: 1100/604;
    margin-top: clamp(6.4px, 1.4545454545cqw, 16px);
  }
}
.p-product__summary-heading {
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: 500;
  color: #1f648e;
  letter-spacing: 0.025em;
  margin-top: -7svw;
  z-index: 1;
  position: relative;
}
@media (min-width: 768px) {
  .p-product__summary-heading {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
@media (min-width: 768px) {
  .p-product__summary-heading {
    font-size: clamp(20.4px, 4.6363636364cqw, 51px);
    margin-top: -35px;
  }
}
.p-product__summary-line {
  display: block;
  width: fit-content;
  background: #fff;
  padding-left: 11px;
  line-height: 1.4;
}
.p-product__summary-line:not(:last-child) {
  margin-bottom: clamp(2.4px, 0.8svw, 6px);
}
@media (min-width: 768px) {
  .p-product__summary-line:not(:last-child) {
    margin-bottom: clamp(4px, 0.9090909091cqw, 10px);
  }
}
@media (min-width: 768px) {
  .p-product__summary-line {
    padding-inline: clamp(9.6px, 2.1818181818cqw, 24px);
    padding-block: 2px;
  }
}
.p-product__details {
  margin-top: clamp(33.6px, 11.2svw, 84px);
  padding-bottom: clamp(33.6px, 11.2svw, 84px);
}
@media (min-width: 768px) {
  .p-product__details {
    display: grid;
    gap: clamp(28.8px, 6.5454545455cqw, 72px);
    grid-template-columns: repeat(2, 1fr);
    margin-top: clamp(28px, 6.3636363636cqw, 70px);
    padding-bottom: clamp(30.4px, 6.9090909091cqw, 76px);
  }
}
.p-product__details-item:not(:last-child) {
  margin-bottom: clamp(32px, 10.6666666667svw, 80px);
}
@media (min-width: 768px) {
  .p-product__details-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.p-product__details-img {
  position: relative;
  aspect-ratio: 323/217;
}
.p-product__details-img img {
  position: relative;
}
.p-product__details-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 3px;
  background-color: #b3b3b3;
}
.p-product__details-title {
  margin-top: clamp(20px, 6.6666666667svw, 50px);
  margin-bottom: clamp(16px, 5.3333333333svw, 40px);
}
@media (min-width: 768px) {
  .p-product__details-title {
    margin-top: clamp(7.2px, 1.6363636364cqw, 18px);
    margin-bottom: clamp(4.8px, 1.0909090909cqw, 12px);
  }
}
.p-product__details-text {
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-product__details-text {
    font-size: clamp(7.2px, 1.6363636364cqw, 18px);
    line-height: 1.6666666667;
  }
}

/* FUNCTIOINS
**********************************************/
.p-functions__title {
  width: clamp(236px, 78.6666666667svw, 590px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-functions__title {
    width: clamp(192px, 43.6363636364cqw, 480px);
  }
}
.p-functions__list {
  background-color: #fff;
  margin-inline: -5svw;
  padding-inline: 5svw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 2.6666666667svw, 20px);
  grid-template-rows: 62svw 62svw;
  padding-top: clamp(34px, 11.3333333333svw, 85px);
  padding-bottom: clamp(18px, 6svw, 45px);
  margin-top: -6svw;
}
@media (min-width: 768px) {
  .p-functions__list {
    margin-inline: 0;
    grid-template-columns: repeat(3, 1fr);
    padding-inline: clamp(24px, 5.4545454545cqw, 60px);
    padding-top: clamp(28.8px, 6.5454545455cqw, 72px);
    padding-bottom: clamp(18.4px, 4.1818181818cqw, 46px);
    column-gap: clamp(14.4px, 3.2727272727cqw, 36px);
    row-gap: clamp(21.6px, 4.9090909091cqw, 54px);
    grid-template-rows: 26cqw 26cqw;
    margin-top: -26px;
    clip-path: polygon(45px 0, 100% 0, 100% calc(100% - 45px), calc(100% - 45px) 100%, 0 100%, 0 45px);
  }
}
.p-functions__item {
  background-color: #e9eff4;
  border-radius: clamp(14px, 4.6666666667svw, 35px);
  text-align: center;
  padding-inline: 3%;
  padding-block: 8% 10%;
}
@media (min-width: 768px) {
  .p-functions__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 4% 1%;
  }
}
.p-functions__item-heading-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(30px, 10svw, 75px);
  margin-bottom: clamp(8px, 2.6666666667svw, 20px);
}
@media (min-width: 768px) {
  .p-functions__item-heading-block {
    min-height: unset;
    margin-bottom: clamp(4px, 0.9090909091cqw, 10px);
  }
}
.p-functions__item-heading {
  color: #1f648e;
  font-weight: 500;
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.5;
  letter-spacing: 0.025em;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-functions__item-heading {
    font-size: clamp(7.2px, 1.6363636364cqw, 18px);
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .p-functions__item-heading {
    font-size: clamp(9.2px, 2.0909090909cqw, 23px);
    line-height: 1.2173913043;
  }
}
.p-functions__item-icon {
  width: 68%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-functions__item-icon {
    width: 80%;
  }
}
.p-functions__item-textblock {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(72px, 24svw, 180px);
  margin-top: clamp(6.4px, 2.1333333333svw, 16px);
}
@media (min-width: 768px) {
  .p-functions__item-textblock {
    min-height: unset;
    margin-top: clamp(4px, 0.9090909091cqw, 10px);
  }
}
.p-functions__item-desc {
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .p-functions__item-desc {
    font-size: clamp(7.2px, 1.6363636364cqw, 18px);
    line-height: 1.6666666667;
  }
}

/* DESIGN
**********************************************/
.p-design {
  position: relative;
  background-color: #fff;
  padding-top: clamp(120px, 40svw, 300px);
  margin-top: -20svw;
  clip-path: polygon(0 18svw, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .p-design {
    padding-top: clamp(86.4px, 19.6363636364cqw, 216px);
    margin-top: -10svw;
    padding-bottom: 45px;
    clip-path: polygon(0 10svw, 100% 0, 100% 100%, 0 100%);
  }
}
.p-design::before {
  content: "";
  display: block;
  width: 100%;
  height: clamp(100px, 33.3333333333svw, 250px);
  position: absolute;
  top: -13svw;
  left: 0;
  background: url(../img/top/about-frame-bottom.svg) no-repeat center/cover;
}
@media (min-width: 768px) {
  .p-design::before {
    height: 15vw;
    top: -5.6svw;
    background: url(../img/top/about-frame-bottom-pc.svg) no-repeat center/cover;
  }
}
@media (min-width: 768px) {
  .p-design__title {
    margin-bottom: clamp(24px, 5.4545454545cqw, 60px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-design__title {
    width: min(803px, 80%);
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .p-design__award {
    display: flex;
    gap: clamp(18.4px, 4.1818181818cqw, 46px);
  }
}
@media (min-width: 768px) {
  .p-design__award-textblock {
    width: 51.8181818182%;
  }
}
.p-design__award-heading {
  background-color: #1f648e;
  text-align: center;
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.025em;
  margin-top: clamp(16px, 5.3333333333svw, 40px);
  margin-bottom: clamp(6px, 2svw, 15px);
}
@media (min-width: 768px) {
  .p-design__award-heading {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
@media (min-width: 768px) {
  .p-design__award-heading {
    margin-top: 1svw;
    padding-block: 6px;
  }
}
.p-design__award-bold {
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: 500;
  color: #1f648e;
  letter-spacing: 0.025em;
  padding-bottom: clamp(6.4px, 2.1333333333svw, 16px);
  border-bottom: 2px dotted #1f648e;
}
@media (min-width: 768px) {
  .p-design__award-bold {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
@media (min-width: 768px) {
  .p-design__award-bold {
    padding-bottom: clamp(4px, 0.9090909091cqw, 10px);
    border-bottom: 4px dotted #1f648e;
  }
}
@media (min-width: 768px) {
  .p-design__award-bold {
    font-size: clamp(16.8px, 3.8181818182cqw, 42px);
    line-height: 1.4047619048;
    letter-spacing: 0;
  }
}
.p-design__award-desc {
  font-size: clamp(16.8px, 5.6svw, 42px);
  line-height: 1.5238095238;
  letter-spacing: 0.04em;
  margin-top: clamp(16px, 5.3333333333svw, 40px);
  margin-bottom: clamp(12px, 4svw, 30px);
}
@media (min-width: 768px) {
  .p-design__award-desc {
    font-size: clamp(8.4px, 1.9090909091cqw, 21px);
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .p-design__award-desc {
    margin-bottom: 0;
    margin-top: 20px;
  }
}
.p-design__award-img {
  width: clamp(200px, 66.6666666667svw, 500px);
  margin-inline: auto;
  margin-bottom: clamp(36px, 12svw, 90px);
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .p-design__award-img {
    width: 45.4545454545%;
    margin-bottom: 0;
  }
}
.p-design__details {
  background-color: #dde5f0;
  margin-inline: -5svw;
  padding-inline: 5svw;
  padding-top: clamp(24px, 8svw, 60px);
}
@media (min-width: 768px) {
  .p-design__details {
    margin-inline: 0;
    margin-inline: -60px;
    padding-inline: clamp(28px, 6.3636363636cqw, 70px);
    padding-top: clamp(16.8px, 3.8181818182cqw, 42px);
    padding-bottom: clamp(23.2px, 5.2727272727cqw, 58px);
    margin-top: clamp(25.6px, 5.8181818182cqw, 64px);
    border-radius: 20px;
    position: relative;
  }
}
@media (min-width: 768px) {
  .p-design__details-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(28.8px, 6.5454545455cqw, 72px);
    row-gap: clamp(22.4px, 5.0909090909cqw, 56px);
  }
}
.p-design__details-item:not(:last-child) {
  margin-bottom: clamp(27.2px, 9.0666666667svw, 68px);
}
@media (min-width: 768px) {
  .p-design__details-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.p-design__details-heading {
  margin-top: clamp(18.4px, 6.1333333333svw, 46px);
  margin-bottom: clamp(12px, 4svw, 30px);
}
@media (min-width: 768px) {
  .p-design__details-heading {
    margin-top: clamp(6.4px, 1.4545454545cqw, 16px);
    margin-bottom: clamp(4px, 0.9090909091cqw, 10px);
  }
}
.p-design__details-desc {
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-design__details-desc {
    font-size: clamp(7.2px, 1.6363636364cqw, 18px);
    line-height: 1.6666666667;
  }
}
.p-design__details-img {
  margin-left: -6px;
  aspect-ratio: 349/243;
}
@media (min-width: 768px) {
  .p-design__details-img {
    margin-left: -10px;
    aspect-ratio: 517/370;
  }
}

/* METHOD
**********************************************/
.p-method {
  position: relative;
  background-color: #0f386e;
  padding-top: clamp(92px, 30.6666666667svw, 230px);
  padding-bottom: clamp(80px, 26.6666666667svw, 200px);
}
@media (min-width: 768px) {
  .p-method {
    padding-top: clamp(44px, 10cqw, 110px);
    padding-bottom: clamp(64px, 14.5454545455cqw, 160px);
  }
}
.p-method::after {
  content: "";
  display: block;
  width: 100%;
  height: 101%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #0f386e 70%, #fff);
}
@media (min-width: 768px) {
  .p-method::after {
    background-image: linear-gradient(to bottom, #0f386e 50%, #fff);
  }
}
.p-method::before {
  content: "";
  display: block;
  width: 100%;
  height: 23cqw;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
  background: url(../img/top/design-details-frame.svg) no-repeat center/cover;
}
@media (min-width: 768px) {
  .p-method::before {
    background: url(../img/top/design-details-frame-pc.svg) no-repeat center/cover;
    height: 118px;
    background-size: 100% auto;
    background-position: bottom;
    width: 1220px;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    top: -52px;
  }
}
.p-method__inner {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-method__upper {
    width: clamp(321.2px, 73cqw, 803px);
    margin-inline: auto;
  }
}
.p-method__title {
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.025em;
  letter-spacing: 0.075em;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-block: clamp(5.6px, 1.8666666667svw, 14px);
}
@media (min-width: 768px) {
  .p-method__title {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
.p-method__sub-title {
  margin-top: clamp(8px, 2.6666666667svw, 20px);
  margin-bottom: clamp(8px, 2.6666666667svw, 20px);
  font-size: clamp(16.8px, 5.6svw, 42px);
  line-height: 1.5238095238;
  color: #fff;
  text-align: center;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-method__sub-title {
    font-size: clamp(8.4px, 1.9090909091cqw, 21px);
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .p-method__sub-title {
    font-size: clamp(14.8px, 3.3636363636cqw, 37px);
    line-height: 1.4864864865;
    margin-bottom: clamp(5.2px, 1.1818181818cqw, 13px);
  }
}
@media (min-width: 768px) {
  .p-method__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 5.4545454545cqw, 60px);
    margin-inline: 16px;
  }
}
.p-method__item {
  background-color: #e6e6e6;
  border-radius: clamp(11.2px, 3.7333333333svw, 28px);
  display: grid;
  grid-template-columns: 4.9fr 0.9fr;
  padding: 2% 4%;
  align-items: center;
}
@media (min-width: 768px) {
  .p-method__item {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    aspect-ratio: 1/1;
  }
}
.p-method__item:not(:last-child) {
  margin-bottom: clamp(12.8px, 4.2666666667svw, 32px);
}
@media (min-width: 768px) {
  .p-method__item:not(:last-child) {
    margin-bottom: 0;
  }
}
.p-method__item-text {
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #1f648e;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-method__item-text {
    font-size: clamp(8px, 1.8181818182cqw, 20px);
    line-height: 1.25;
    text-align: center;
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .p-method__item-icon {
    width: 32%;
    margin-inline: auto;
  }
}
.p-method__sleeping-person {
  margin-inline: -5svw;
  aspect-ratio: 311/120;
  margin-top: -6svw;
}
@media (min-width: 768px) {
  .p-method__sleeping-person {
    width: min(90%, 1000px);
    margin-inline: auto;
    margin-top: -88px;
  }
}

/* SETTING
**********************************************/
.p-setting {
  background: #fff;
  padding-top: clamp(32px, 10.6666666667svw, 80px);
  padding-bottom: clamp(36px, 12svw, 90px);
  margin-inline: -5svw;
  padding-inline: 5svw;
}
@media (min-width: 768px) {
  .p-setting {
    border-radius: 35px;
    margin-inline: -4svw;
    padding-inline: clamp(28.8px, 6.5454545455cqw, 72px);
    padding-block: clamp(24.8px, 5.6363636364cqw, 62px);
  }
}
.p-setting__heading {
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: 500;
  color: #1f648e;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: clamp(12px, 4svw, 30px);
  padding-bottom: clamp(6.4px, 2.1333333333svw, 16px);
  border-bottom: 2px dotted #1f648e;
}
@media (min-width: 768px) {
  .p-setting__heading {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
@media (min-width: 768px) {
  .p-setting__heading {
    padding-bottom: clamp(4px, 0.9090909091cqw, 10px);
    border-bottom: 4px dotted #1f648e;
  }
}
@media (min-width: 768px) {
  .p-setting__heading {
    max-width: 708px;
    margin-inline: auto;
    margin-bottom: 12px;
  }
}
.p-setting__desc {
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.5;
  margin-bottom: clamp(35.6px, 11.8666666667svw, 89px);
}
@media (min-width: 768px) {
  .p-setting__desc {
    font-size: clamp(7.2px, 1.6363636364cqw, 18px);
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .p-setting__desc {
    max-width: 708px;
    margin-inline: auto;
    margin-bottom: clamp(25.6px, 8.5333333333svw, 64px);
  }
}
@media (min-width: 768px) {
  .p-setting__item {
    display: grid;
    grid-template-columns: 18% 1fr;
    column-gap: clamp(18.4px, 4.1818181818cqw, 46px);
  }
}
.p-setting__item:not(:last-child) {
  margin-bottom: clamp(32px, 10.6666666667svw, 80px);
}
@media (min-width: 768px) {
  .p-setting__item:not(:last-child) {
    margin-bottom: clamp(16.8px, 3.8181818182cqw, 42px);
  }
}
.p-setting__item-heading {
  font-size: clamp(15.6px, 5.2svw, 39px);
  line-height: 1;
  color: #1f648e;
  background-color: #dde8ee;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 50% 100%, 0 74%);
  height: clamp(40px, 13.3333333333svw, 100px);
  display: flex;
  padding-top: clamp(10px, 3.3333333333svw, 25px);
  justify-content: center;
  margin-bottom: clamp(12px, 4svw, 30px);
}
@media (min-width: 768px) {
  .p-setting__item-heading {
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    margin-bottom: 0;
    padding-top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: clamp(12px, 2.7272727273cqw, 30px);
    line-height: 1.4333333333;
    text-align: center;
    padding-right: 7%;
  }
}
.p-setting__item-bold {
  font-size: clamp(16.8px, 5.6svw, 42px);
  line-height: 1.5238095238;
  letter-spacing: 0.025em;
  margin-bottom: clamp(4px, 1.3333333333svw, 10px);
  color: #1f648e;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-setting__item-bold {
    font-size: clamp(8.4px, 1.9090909091cqw, 21px);
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .p-setting__item-bold {
    font-size: clamp(12.8px, 2.9090909091cqw, 32px);
    line-height: 1.3939393939;
    letter-spacing: -0.015em;
  }
}
.p-setting__item-desc {
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.5;
  margin-bottom: clamp(4px, 1.3333333333svw, 10px);
  margin-bottom: clamp(12px, 4svw, 30px);
}
@media (min-width: 768px) {
  .p-setting__item-desc {
    font-size: clamp(7.2px, 1.6363636364cqw, 18px);
    line-height: 1.6666666667;
  }
}
.p-setting__note {
  margin-top: clamp(18px, 6svw, 45px);
  font-size: clamp(11.2px, 3.7333333333svw, 28px);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-setting__note {
    font-size: 15px;
    margin-top: clamp(10px, 3.3333333333svw, 25px);
  }
}

/* APP
**********************************************/
.p-app {
  margin-top: -12svw;
  position: relative;
}
@media (min-width: 768px) {
  .p-app {
    margin-top: -3svw;
  }
}
.p-app__title {
  margin-bottom: clamp(12px, 4svw, 30px);
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-app__title {
    width: min(803px, 80%);
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .p-app__summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .p-app__summary-textblock {
    width: 45.7272727273%;
  }
}
.p-app__summary-heading {
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: 500;
  color: #1f648e;
  letter-spacing: 0.025em;
  margin-top: clamp(8px, 2.6666666667svw, 20px);
  margin-bottom: clamp(16px, 5.3333333333svw, 40px);
  padding-bottom: clamp(6.4px, 2.1333333333svw, 16px);
  border-bottom: 2px dotted #1f648e;
}
@media (min-width: 768px) {
  .p-app__summary-heading {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
@media (min-width: 768px) {
  .p-app__summary-heading {
    padding-bottom: clamp(4px, 0.9090909091cqw, 10px);
    border-bottom: 4px dotted #1f648e;
  }
}
@media (min-width: 768px) {
  .p-app__summary-heading {
    width: 100%;
  }
}
.p-app__summary-desc {
  font-size: clamp(16.8px, 5.6svw, 42px);
  line-height: 1.5238095238;
  margin-bottom: clamp(8px, 2.6666666667svw, 20px);
}
@media (min-width: 768px) {
  .p-app__summary-desc {
    font-size: clamp(8.4px, 1.9090909091cqw, 21px);
    line-height: 1.6666666667;
  }
}
.p-app__summary-img {
  width: clamp(230px, 76.6666666667svw, 575px);
  margin-inline: auto;
  aspect-ratio: 361/235;
}
@media (min-width: 768px) {
  .p-app__summary-img {
    width: 52.2727272727%;
  }
}
.p-app__details {
  background-color: #f2f5f9;
  position: relative;
  padding-inline: 5svw;
  margin-inline: -5svw;
  padding-block: clamp(28px, 9.3333333333svw, 70px);
  margin-top: clamp(28px, 9.3333333333svw, 70px);
}
@media (min-width: 768px) {
  .p-app__details {
    margin-inline: 0;
    padding: clamp(16px, 3.6363636364cqw, 40px);
    margin-top: clamp(16px, 3.6363636364cqw, 40px);
    border-radius: 20px;
  }
}
.p-app__details::before {
  content: "";
  display: block;
  width: clamp(39.6px, 13.2svw, 99px);
  height: clamp(22.4px, 7.4666666667svw, 56px);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #f2f5f9;
  position: absolute;
  bottom: 100%;
  left: clamp(172px, 57.3333333333svw, 430px);
}
@media (min-width: 768px) {
  .p-app__details::before {
    left: clamp(226.4px, 51.4545454545cqw, 566px);
    width: clamp(39.6px, 9cqw, 99px);
    height: clamp(22.4px, 5.0909090909cqw, 56px);
    bottom: 98%;
  }
}
.p-app__details-heading {
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: 500;
  color: #1f648e;
  letter-spacing: 0.025em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-app__details-heading {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
@media (min-width: 768px) {
  .p-app__details-heading {
    font-size: clamp(14px, 3.1818181818cqw, 35px);
    line-height: 1.3142857143;
  }
}
.p-app__details-img {
  margin-top: clamp(9.6px, 3.2svw, 24px);
  margin-bottom: clamp(35.2px, 11.7333333333svw, 88px);
  aspect-ratio: 288/539;
}
@media (min-width: 768px) {
  .p-app__details-img {
    aspect-ratio: 2023/1024;
    margin-top: clamp(14.8px, 3.3636363636cqw, 37px);
    margin-bottom: clamp(17.6px, 4cqw, 44px);
  }
}
.p-app__details-desc {
  font-size: clamp(16.8px, 5.6svw, 42px);
  line-height: 1.5238095238;
}
@media (min-width: 768px) {
  .p-app__details-desc {
    font-size: clamp(8.4px, 1.9090909091cqw, 21px);
    line-height: 1.6666666667;
  }
}
.p-app__btn-block {
  padding-block: clamp(35.2px, 11.7333333333svw, 88px);
}
@media (min-width: 768px) {
  .p-app__btn-block {
    padding-block: clamp(30.8px, 10.2666666667svw, 77px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-app__btn-block {
    width: min(803px, 80%);
    margin-inline: auto;
  }
}

/* HOWTO
**********************************************/
.p-howto {
  background-color: #d9f3f5;
  padding-top: clamp(27.2px, 9.0666666667svw, 68px);
  padding-bottom: clamp(35.2px, 11.7333333333svw, 88px);
}
.p-howto .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 5.3333333333svw, 40px);
  margin-top: clamp(36px, 12svw, 90px);
}
@media (min-width: 768px) {
  .p-howto .swiper-pagination {
    gap: 30px;
    margin-top: clamp(12.8px, 4.2666666667svw, 32px);
  }
}
.p-howto .swiper-pagination-bullet {
  width: clamp(8px, 2.6666666667svw, 20px);
  height: clamp(8px, 2.6666666667svw, 20px);
  margin-inline: clamp(9.6px, 3.2svw, 24px);
  background-color: #b3b3b3;
}
@media (min-width: 768px) {
  .p-howto .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.p-howto .swiper-pagination-bullet-active {
  background-color: #666666;
}
@media (min-width: 768px) {
  .p-howto__slider {
    position: relative;
  }
}
.p-howto__slider::before, .p-howto__slider::after {
  content: "";
  display: none;
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  background: linear-gradient(to right, #d9f3f5, rgba(217, 243, 245, 0));
}
@media (min-width: 768px) {
  .p-howto__slider::before, .p-howto__slider::after {
    display: block;
  }
}
.p-howto__slider::before {
  left: 0;
}
.p-howto__slider::after {
  right: 0;
  transform: rotate(180deg);
}
.p-howto__slider-item {
  padding-inline: 5svw;
}
@media (min-width: 768px) {
  .p-howto__slider-item {
    padding-inline: 5vw;
  }
}
.p-howto__slider-text {
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: clamp(4px, 1.3333333333svw, 10px);
}
@media (min-width: 768px) {
  .p-howto__slider-text {
    font-size: clamp(7.2px, 1.6363636364cqw, 18px);
    line-height: 1.6666666667;
  }
}
.p-howto .swiper-button-prev,
.p-howto .swiper-button-next {
  display: none;
}
@media (min-width: 768px) {
  .p-howto .swiper-button-prev,
  .p-howto .swiper-button-next {
    position: absolute;
    z-index: 3;
    display: block;
    width: 50px;
    height: 50px;
    top: 40%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    rotate: 45deg;
    margin-right: 40px;
  }
}
.p-howto .swiper-button-prev svg,
.p-howto .swiper-button-next svg {
  opacity: 0;
}
@media (min-width: 768px) {
  .p-howto .swiper-button-prev {
    margin-right: 0;
    transform: rotate(-180deg);
    margin-left: 40px;
  }
}

/* POINT
**********************************************/
.p-point {
  padding-top: clamp(36px, 12svw, 90px);
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-point {
    padding-top: clamp(28px, 6.3636363636cqw, 70px);
  }
}
@media (min-width: 768px) {
  .p-point__content {
    display: flex;
    justify-content: space-between;
    gap: clamp(24px, 5.4545454545cqw, 60px);
  }
}
@media (min-width: 768px) {
  .p-point__img-block {
    width: 29.7272727273%;
  }
}
.p-point__img {
  width: clamp(130.8px, 43.6svw, 327px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-point__img {
    width: 100%;
  }
}
.p-point__img-text {
  text-align: center;
  margin-top: -1svw;
  color: #1f648e;
  font-weight: bold;
  font-size: clamp(16.8px, 5.6svw, 42px);
  line-height: 1.5238095238;
  line-height: 1.1428571429;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .p-point__img-text {
    font-size: clamp(8.4px, 1.9090909091cqw, 21px);
    line-height: 1.6666666667;
  }
}
.p-point__img-text--sm {
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-point__img-text--sm {
    font-size: clamp(7.2px, 1.6363636364cqw, 18px);
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .p-point__textblock {
    width: 67%;
  }
}
.p-point__title {
  font-size: clamp(21.6px, 7.2svw, 54px);
  line-height: 1.4814814815;
  font-weight: 500;
  color: #1f648e;
  letter-spacing: 0.025em;
  padding-bottom: clamp(6.4px, 2.1333333333svw, 16px);
  border-bottom: 2px dotted #1f648e;
  margin-top: clamp(31.2px, 10.4svw, 78px);
  margin-bottom: clamp(8px, 2.6666666667svw, 20px);
}
@media (min-width: 768px) {
  .p-point__title {
    font-size: clamp(18px, 4.0909090909cqw, 45px);
    line-height: 1.3777777778;
  }
}
@media (min-width: 768px) {
  .p-point__title {
    padding-bottom: clamp(4px, 0.9090909091cqw, 10px);
    border-bottom: 4px dotted #1f648e;
  }
}
@media (min-width: 768px) {
  .p-point__title {
    margin-top: 20px;
    margin-bottom: clamp(4px, 0.9090909091cqw, 10px);
    font-size: clamp(20px, 4.5454545455cqw, 50px);
  }
}
.p-point__list {
  list-style-type: "・";
  font-size: clamp(16.8px, 5.6svw, 42px);
  line-height: 1.5238095238;
  padding-left: clamp(16.8px, 5.6svw, 42px);
}
@media (min-width: 768px) {
  .p-point__list {
    font-size: clamp(8.4px, 1.9090909091cqw, 21px);
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .p-point__list {
    padding-left: clamp(8.4px, 1.9090909091cqw, 21px);
  }
}
.p-point__btn-list {
  display: flex;
  flex-direction: column;
  margin-top: clamp(18px, 6svw, 45px);
  row-gap: clamp(18px, 6svw, 45px);
}
@media (min-width: 768px) {
  .p-point__btn-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(20px, 4.5454545455cqw, 50px);
    margin-top: clamp(24px, 5.4545454545cqw, 60px);
    row-gap: clamp(0px, 0cqw, 0px);
  }
}

/* MOVIE
**********************************************/
.p-movie {
  padding-block: clamp(36px, 12svw, 90px);
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-movie {
    padding-block: clamp(40px, 9.0909090909cqw, 100px);
  }
}
.p-movie__title {
  margin-bottom: clamp(18px, 6svw, 45px);
}
@media (min-width: 768px) {
  .p-movie__title {
    margin-bottom: clamp(29.6px, 6.7272727273cqw, 74px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-movie__title {
    width: min(803px, 80%);
    margin-inline: auto;
  }
}
.p-movie__movie {
  border-radius: clamp(12px, 4svw, 30px);
  overflow: hidden;
}

/* SPEC
**********************************************/
.p-spec {
  background-color: #e6e6e6;
  padding-block: clamp(35.2px, 11.7333333333svw, 88px);
}
@media (min-width: 768px) {
  .p-spec {
    padding-block: clamp(40px, 9.0909090909cqw, 100px);
  }
}
.p-spec__title {
  margin-bottom: clamp(18px, 6svw, 45px);
}
@media (min-width: 768px) {
  .p-spec__title {
    margin-bottom: clamp(32px, 7.2727272727cqw, 80px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-spec__title {
    width: min(803px, 80%);
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .p-spec__table {
    max-width: 920px;
    margin-inline: auto;
  }
}
.p-spec__table th, .p-spec__table td {
  border-bottom: 1px solid #fff;
  font-size: clamp(12.8px, 4.2666666667svw, 32px);
  line-height: 1.5;
  text-align: left;
  padding-block: clamp(3.2px, 1.0666666667svw, 8px);
}
@media (min-width: 768px) {
  .p-spec__table th, .p-spec__table td {
    font-size: clamp(7.2px, 1.6363636364cqw, 18px);
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .p-spec__table th, .p-spec__table td {
    font-size: 16px;
    padding-block: 7px;
  }
}
.p-spec__table th {
  width: clamp(82px, 27.3333333333svw, 205px);
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-spec__table th {
    width: 145px;
  }
}

/* COMPANY 追加
**********************************************/
.p-company {
  padding-top: clamp(35.2px, 11.7333333333svw, 88px);
}

/*--------------------------------------------------------------------------
  Animation Utilities
---------------------------------------------------------------------------*/
.u-fade-up {
  opacity: 0;
}

.u-fade-up.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------------------
  Color Utilities
---------------------------------------------------------------------------*/
.text-white {
  color: #fff !important;
}

.text-black {
  color: #000000 !important;
}

/*--------------------------------------------------------------------------
  Display Utilities
--------------------------------------------------------------------------*/
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.grid {
  display: grid !important;
}

.inline-grid {
  display: inline-grid !important;
}

.hidden {
  display: none !important;
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.no-link {
  pointer-events: none;
  text-decoration: none !important;
  cursor: initial;
}

/*--------------------------------------------------------------------------
 Size Utilities
---------------------------------------------------------------------------*/
.mlr-auto {
  margin-inline: auto !important;
}

/* 8pxごと */
/* マージン関連クラス */
.m-0 {
  margin: "0px" !important;
}

.mt-0 {
  margin-top: "0px" !important;
}

.mb-0 {
  margin-bottom: "0px" !important;
}

.mtb-0 {
  margin-block: "0px" !important;
}

.ml-0 {
  margin-left: "0px" !important;
}

.mr-0 {
  margin-right: "0px" !important;
}

.mlr-0 {
  margin-inline: "0px" !important;
}

@media screen and (min-width: 768px) {
  .m-0-pc {
    margin: "0px" !important;
  }
  .mt-0-pc {
    margin-top: "0px" !important;
  }
  .mb-0-pc {
    margin-bottom: "0px" !important;
  }
  .mtb-0-pc {
    margin-block: "0px" !important;
  }
  .ml-0-pc {
    margin-left: "0px" !important;
  }
  .mr-0-pc {
    margin-right: "0px" !important;
  }
  .mlr-0-pc {
    margin-inline: "0px" !important;
  }
}
/* パディング関連クラス */
.p-0 {
  padding: "0px" !important;
}

.pt-0 {
  padding-top: "0px" !important;
}

.pb-0 {
  padding-bottom: "0px" !important;
}

.ptb-0 {
  padding-block: "0px" !important;
}

.pl-0 {
  padding-left: "0px" !important;
}

.pr-0 {
  padding-right: "0px" !important;
}

.plr-0 {
  padding-inline: "0px" !important;
}

@media screen and (min-width: 768px) {
  .p-0-pc {
    padding: "0px" !important;
  }
  .pt-0-pc {
    padding-top: "0px" !important;
  }
  .pb-0-pc {
    padding-bottom: "0px" !important;
  }
  .ptb-0-pc {
    padding-block: "0px" !important;
  }
  .pl-0-pc {
    padding-left: "0px" !important;
  }
  .pr-0-pc {
    padding-right: "0px" !important;
  }
  .plr-0-pc {
    padding-inline: "0px" !important;
  }
}
.fs-0 {
  font-size: "0px" !important;
}

@media screen and (min-width: 768px) {
  .fs-0-pc {
    font-size: "0px" !important;
  }
}
/* マージン関連クラス */
.m-8 {
  margin: "8px" !important;
}

.mt-8 {
  margin-top: "8px" !important;
}

.mb-8 {
  margin-bottom: "8px" !important;
}

.mtb-8 {
  margin-block: "8px" !important;
}

.ml-8 {
  margin-left: "8px" !important;
}

.mr-8 {
  margin-right: "8px" !important;
}

.mlr-8 {
  margin-inline: "8px" !important;
}

@media screen and (min-width: 768px) {
  .m-8-pc {
    margin: "8px" !important;
  }
  .mt-8-pc {
    margin-top: "8px" !important;
  }
  .mb-8-pc {
    margin-bottom: "8px" !important;
  }
  .mtb-8-pc {
    margin-block: "8px" !important;
  }
  .ml-8-pc {
    margin-left: "8px" !important;
  }
  .mr-8-pc {
    margin-right: "8px" !important;
  }
  .mlr-8-pc {
    margin-inline: "8px" !important;
  }
}
/* パディング関連クラス */
.p-8 {
  padding: "8px" !important;
}

.pt-8 {
  padding-top: "8px" !important;
}

.pb-8 {
  padding-bottom: "8px" !important;
}

.ptb-8 {
  padding-block: "8px" !important;
}

.pl-8 {
  padding-left: "8px" !important;
}

.pr-8 {
  padding-right: "8px" !important;
}

.plr-8 {
  padding-inline: "8px" !important;
}

@media screen and (min-width: 768px) {
  .p-8-pc {
    padding: "8px" !important;
  }
  .pt-8-pc {
    padding-top: "8px" !important;
  }
  .pb-8-pc {
    padding-bottom: "8px" !important;
  }
  .ptb-8-pc {
    padding-block: "8px" !important;
  }
  .pl-8-pc {
    padding-left: "8px" !important;
  }
  .pr-8-pc {
    padding-right: "8px" !important;
  }
  .plr-8-pc {
    padding-inline: "8px" !important;
  }
}
.fs-8 {
  font-size: "8px" !important;
}

@media screen and (min-width: 768px) {
  .fs-8-pc {
    font-size: "8px" !important;
  }
}
/* マージン関連クラス */
.m-16 {
  margin: "16px" !important;
}

.mt-16 {
  margin-top: "16px" !important;
}

.mb-16 {
  margin-bottom: "16px" !important;
}

.mtb-16 {
  margin-block: "16px" !important;
}

.ml-16 {
  margin-left: "16px" !important;
}

.mr-16 {
  margin-right: "16px" !important;
}

.mlr-16 {
  margin-inline: "16px" !important;
}

@media screen and (min-width: 768px) {
  .m-16-pc {
    margin: "16px" !important;
  }
  .mt-16-pc {
    margin-top: "16px" !important;
  }
  .mb-16-pc {
    margin-bottom: "16px" !important;
  }
  .mtb-16-pc {
    margin-block: "16px" !important;
  }
  .ml-16-pc {
    margin-left: "16px" !important;
  }
  .mr-16-pc {
    margin-right: "16px" !important;
  }
  .mlr-16-pc {
    margin-inline: "16px" !important;
  }
}
/* パディング関連クラス */
.p-16 {
  padding: "16px" !important;
}

.pt-16 {
  padding-top: "16px" !important;
}

.pb-16 {
  padding-bottom: "16px" !important;
}

.ptb-16 {
  padding-block: "16px" !important;
}

.pl-16 {
  padding-left: "16px" !important;
}

.pr-16 {
  padding-right: "16px" !important;
}

.plr-16 {
  padding-inline: "16px" !important;
}

@media screen and (min-width: 768px) {
  .p-16-pc {
    padding: "16px" !important;
  }
  .pt-16-pc {
    padding-top: "16px" !important;
  }
  .pb-16-pc {
    padding-bottom: "16px" !important;
  }
  .ptb-16-pc {
    padding-block: "16px" !important;
  }
  .pl-16-pc {
    padding-left: "16px" !important;
  }
  .pr-16-pc {
    padding-right: "16px" !important;
  }
  .plr-16-pc {
    padding-inline: "16px" !important;
  }
}
.fs-16 {
  font-size: "16px" !important;
}

@media screen and (min-width: 768px) {
  .fs-16-pc {
    font-size: "16px" !important;
  }
}
/* マージン関連クラス */
.m-24 {
  margin: "24px" !important;
}

.mt-24 {
  margin-top: "24px" !important;
}

.mb-24 {
  margin-bottom: "24px" !important;
}

.mtb-24 {
  margin-block: "24px" !important;
}

.ml-24 {
  margin-left: "24px" !important;
}

.mr-24 {
  margin-right: "24px" !important;
}

.mlr-24 {
  margin-inline: "24px" !important;
}

@media screen and (min-width: 768px) {
  .m-24-pc {
    margin: "24px" !important;
  }
  .mt-24-pc {
    margin-top: "24px" !important;
  }
  .mb-24-pc {
    margin-bottom: "24px" !important;
  }
  .mtb-24-pc {
    margin-block: "24px" !important;
  }
  .ml-24-pc {
    margin-left: "24px" !important;
  }
  .mr-24-pc {
    margin-right: "24px" !important;
  }
  .mlr-24-pc {
    margin-inline: "24px" !important;
  }
}
/* パディング関連クラス */
.p-24 {
  padding: "24px" !important;
}

.pt-24 {
  padding-top: "24px" !important;
}

.pb-24 {
  padding-bottom: "24px" !important;
}

.ptb-24 {
  padding-block: "24px" !important;
}

.pl-24 {
  padding-left: "24px" !important;
}

.pr-24 {
  padding-right: "24px" !important;
}

.plr-24 {
  padding-inline: "24px" !important;
}

@media screen and (min-width: 768px) {
  .p-24-pc {
    padding: "24px" !important;
  }
  .pt-24-pc {
    padding-top: "24px" !important;
  }
  .pb-24-pc {
    padding-bottom: "24px" !important;
  }
  .ptb-24-pc {
    padding-block: "24px" !important;
  }
  .pl-24-pc {
    padding-left: "24px" !important;
  }
  .pr-24-pc {
    padding-right: "24px" !important;
  }
  .plr-24-pc {
    padding-inline: "24px" !important;
  }
}
.fs-24 {
  font-size: "24px" !important;
}

@media screen and (min-width: 768px) {
  .fs-24-pc {
    font-size: "24px" !important;
  }
}
/* マージン関連クラス */
.m-32 {
  margin: "32px" !important;
}

.mt-32 {
  margin-top: "32px" !important;
}

.mb-32 {
  margin-bottom: "32px" !important;
}

.mtb-32 {
  margin-block: "32px" !important;
}

.ml-32 {
  margin-left: "32px" !important;
}

.mr-32 {
  margin-right: "32px" !important;
}

.mlr-32 {
  margin-inline: "32px" !important;
}

@media screen and (min-width: 768px) {
  .m-32-pc {
    margin: "32px" !important;
  }
  .mt-32-pc {
    margin-top: "32px" !important;
  }
  .mb-32-pc {
    margin-bottom: "32px" !important;
  }
  .mtb-32-pc {
    margin-block: "32px" !important;
  }
  .ml-32-pc {
    margin-left: "32px" !important;
  }
  .mr-32-pc {
    margin-right: "32px" !important;
  }
  .mlr-32-pc {
    margin-inline: "32px" !important;
  }
}
/* パディング関連クラス */
.p-32 {
  padding: "32px" !important;
}

.pt-32 {
  padding-top: "32px" !important;
}

.pb-32 {
  padding-bottom: "32px" !important;
}

.ptb-32 {
  padding-block: "32px" !important;
}

.pl-32 {
  padding-left: "32px" !important;
}

.pr-32 {
  padding-right: "32px" !important;
}

.plr-32 {
  padding-inline: "32px" !important;
}

@media screen and (min-width: 768px) {
  .p-32-pc {
    padding: "32px" !important;
  }
  .pt-32-pc {
    padding-top: "32px" !important;
  }
  .pb-32-pc {
    padding-bottom: "32px" !important;
  }
  .ptb-32-pc {
    padding-block: "32px" !important;
  }
  .pl-32-pc {
    padding-left: "32px" !important;
  }
  .pr-32-pc {
    padding-right: "32px" !important;
  }
  .plr-32-pc {
    padding-inline: "32px" !important;
  }
}
.fs-32 {
  font-size: "32px" !important;
}

@media screen and (min-width: 768px) {
  .fs-32-pc {
    font-size: "32px" !important;
  }
}
/* マージン関連クラス */
.m-40 {
  margin: "40px" !important;
}

.mt-40 {
  margin-top: "40px" !important;
}

.mb-40 {
  margin-bottom: "40px" !important;
}

.mtb-40 {
  margin-block: "40px" !important;
}

.ml-40 {
  margin-left: "40px" !important;
}

.mr-40 {
  margin-right: "40px" !important;
}

.mlr-40 {
  margin-inline: "40px" !important;
}

@media screen and (min-width: 768px) {
  .m-40-pc {
    margin: "40px" !important;
  }
  .mt-40-pc {
    margin-top: "40px" !important;
  }
  .mb-40-pc {
    margin-bottom: "40px" !important;
  }
  .mtb-40-pc {
    margin-block: "40px" !important;
  }
  .ml-40-pc {
    margin-left: "40px" !important;
  }
  .mr-40-pc {
    margin-right: "40px" !important;
  }
  .mlr-40-pc {
    margin-inline: "40px" !important;
  }
}
/* パディング関連クラス */
.p-40 {
  padding: "40px" !important;
}

.pt-40 {
  padding-top: "40px" !important;
}

.pb-40 {
  padding-bottom: "40px" !important;
}

.ptb-40 {
  padding-block: "40px" !important;
}

.pl-40 {
  padding-left: "40px" !important;
}

.pr-40 {
  padding-right: "40px" !important;
}

.plr-40 {
  padding-inline: "40px" !important;
}

@media screen and (min-width: 768px) {
  .p-40-pc {
    padding: "40px" !important;
  }
  .pt-40-pc {
    padding-top: "40px" !important;
  }
  .pb-40-pc {
    padding-bottom: "40px" !important;
  }
  .ptb-40-pc {
    padding-block: "40px" !important;
  }
  .pl-40-pc {
    padding-left: "40px" !important;
  }
  .pr-40-pc {
    padding-right: "40px" !important;
  }
  .plr-40-pc {
    padding-inline: "40px" !important;
  }
}
.fs-40 {
  font-size: "40px" !important;
}

@media screen and (min-width: 768px) {
  .fs-40-pc {
    font-size: "40px" !important;
  }
}
/* マージン関連クラス */
.m-48 {
  margin: "48px" !important;
}

.mt-48 {
  margin-top: "48px" !important;
}

.mb-48 {
  margin-bottom: "48px" !important;
}

.mtb-48 {
  margin-block: "48px" !important;
}

.ml-48 {
  margin-left: "48px" !important;
}

.mr-48 {
  margin-right: "48px" !important;
}

.mlr-48 {
  margin-inline: "48px" !important;
}

@media screen and (min-width: 768px) {
  .m-48-pc {
    margin: "48px" !important;
  }
  .mt-48-pc {
    margin-top: "48px" !important;
  }
  .mb-48-pc {
    margin-bottom: "48px" !important;
  }
  .mtb-48-pc {
    margin-block: "48px" !important;
  }
  .ml-48-pc {
    margin-left: "48px" !important;
  }
  .mr-48-pc {
    margin-right: "48px" !important;
  }
  .mlr-48-pc {
    margin-inline: "48px" !important;
  }
}
/* パディング関連クラス */
.p-48 {
  padding: "48px" !important;
}

.pt-48 {
  padding-top: "48px" !important;
}

.pb-48 {
  padding-bottom: "48px" !important;
}

.ptb-48 {
  padding-block: "48px" !important;
}

.pl-48 {
  padding-left: "48px" !important;
}

.pr-48 {
  padding-right: "48px" !important;
}

.plr-48 {
  padding-inline: "48px" !important;
}

@media screen and (min-width: 768px) {
  .p-48-pc {
    padding: "48px" !important;
  }
  .pt-48-pc {
    padding-top: "48px" !important;
  }
  .pb-48-pc {
    padding-bottom: "48px" !important;
  }
  .ptb-48-pc {
    padding-block: "48px" !important;
  }
  .pl-48-pc {
    padding-left: "48px" !important;
  }
  .pr-48-pc {
    padding-right: "48px" !important;
  }
  .plr-48-pc {
    padding-inline: "48px" !important;
  }
}
.fs-48 {
  font-size: "48px" !important;
}

@media screen and (min-width: 768px) {
  .fs-48-pc {
    font-size: "48px" !important;
  }
}
/* マージン関連クラス */
.m-56 {
  margin: "56px" !important;
}

.mt-56 {
  margin-top: "56px" !important;
}

.mb-56 {
  margin-bottom: "56px" !important;
}

.mtb-56 {
  margin-block: "56px" !important;
}

.ml-56 {
  margin-left: "56px" !important;
}

.mr-56 {
  margin-right: "56px" !important;
}

.mlr-56 {
  margin-inline: "56px" !important;
}

@media screen and (min-width: 768px) {
  .m-56-pc {
    margin: "56px" !important;
  }
  .mt-56-pc {
    margin-top: "56px" !important;
  }
  .mb-56-pc {
    margin-bottom: "56px" !important;
  }
  .mtb-56-pc {
    margin-block: "56px" !important;
  }
  .ml-56-pc {
    margin-left: "56px" !important;
  }
  .mr-56-pc {
    margin-right: "56px" !important;
  }
  .mlr-56-pc {
    margin-inline: "56px" !important;
  }
}
/* パディング関連クラス */
.p-56 {
  padding: "56px" !important;
}

.pt-56 {
  padding-top: "56px" !important;
}

.pb-56 {
  padding-bottom: "56px" !important;
}

.ptb-56 {
  padding-block: "56px" !important;
}

.pl-56 {
  padding-left: "56px" !important;
}

.pr-56 {
  padding-right: "56px" !important;
}

.plr-56 {
  padding-inline: "56px" !important;
}

@media screen and (min-width: 768px) {
  .p-56-pc {
    padding: "56px" !important;
  }
  .pt-56-pc {
    padding-top: "56px" !important;
  }
  .pb-56-pc {
    padding-bottom: "56px" !important;
  }
  .ptb-56-pc {
    padding-block: "56px" !important;
  }
  .pl-56-pc {
    padding-left: "56px" !important;
  }
  .pr-56-pc {
    padding-right: "56px" !important;
  }
  .plr-56-pc {
    padding-inline: "56px" !important;
  }
}
.fs-56 {
  font-size: "56px" !important;
}

@media screen and (min-width: 768px) {
  .fs-56-pc {
    font-size: "56px" !important;
  }
}
/* マージン関連クラス */
.m-64 {
  margin: "64px" !important;
}

.mt-64 {
  margin-top: "64px" !important;
}

.mb-64 {
  margin-bottom: "64px" !important;
}

.mtb-64 {
  margin-block: "64px" !important;
}

.ml-64 {
  margin-left: "64px" !important;
}

.mr-64 {
  margin-right: "64px" !important;
}

.mlr-64 {
  margin-inline: "64px" !important;
}

@media screen and (min-width: 768px) {
  .m-64-pc {
    margin: "64px" !important;
  }
  .mt-64-pc {
    margin-top: "64px" !important;
  }
  .mb-64-pc {
    margin-bottom: "64px" !important;
  }
  .mtb-64-pc {
    margin-block: "64px" !important;
  }
  .ml-64-pc {
    margin-left: "64px" !important;
  }
  .mr-64-pc {
    margin-right: "64px" !important;
  }
  .mlr-64-pc {
    margin-inline: "64px" !important;
  }
}
/* パディング関連クラス */
.p-64 {
  padding: "64px" !important;
}

.pt-64 {
  padding-top: "64px" !important;
}

.pb-64 {
  padding-bottom: "64px" !important;
}

.ptb-64 {
  padding-block: "64px" !important;
}

.pl-64 {
  padding-left: "64px" !important;
}

.pr-64 {
  padding-right: "64px" !important;
}

.plr-64 {
  padding-inline: "64px" !important;
}

@media screen and (min-width: 768px) {
  .p-64-pc {
    padding: "64px" !important;
  }
  .pt-64-pc {
    padding-top: "64px" !important;
  }
  .pb-64-pc {
    padding-bottom: "64px" !important;
  }
  .ptb-64-pc {
    padding-block: "64px" !important;
  }
  .pl-64-pc {
    padding-left: "64px" !important;
  }
  .pr-64-pc {
    padding-right: "64px" !important;
  }
  .plr-64-pc {
    padding-inline: "64px" !important;
  }
}
.fs-64 {
  font-size: "64px" !important;
}

@media screen and (min-width: 768px) {
  .fs-64-pc {
    font-size: "64px" !important;
  }
}
/* マージン関連クラス */
.m-72 {
  margin: "72px" !important;
}

.mt-72 {
  margin-top: "72px" !important;
}

.mb-72 {
  margin-bottom: "72px" !important;
}

.mtb-72 {
  margin-block: "72px" !important;
}

.ml-72 {
  margin-left: "72px" !important;
}

.mr-72 {
  margin-right: "72px" !important;
}

.mlr-72 {
  margin-inline: "72px" !important;
}

@media screen and (min-width: 768px) {
  .m-72-pc {
    margin: "72px" !important;
  }
  .mt-72-pc {
    margin-top: "72px" !important;
  }
  .mb-72-pc {
    margin-bottom: "72px" !important;
  }
  .mtb-72-pc {
    margin-block: "72px" !important;
  }
  .ml-72-pc {
    margin-left: "72px" !important;
  }
  .mr-72-pc {
    margin-right: "72px" !important;
  }
  .mlr-72-pc {
    margin-inline: "72px" !important;
  }
}
/* パディング関連クラス */
.p-72 {
  padding: "72px" !important;
}

.pt-72 {
  padding-top: "72px" !important;
}

.pb-72 {
  padding-bottom: "72px" !important;
}

.ptb-72 {
  padding-block: "72px" !important;
}

.pl-72 {
  padding-left: "72px" !important;
}

.pr-72 {
  padding-right: "72px" !important;
}

.plr-72 {
  padding-inline: "72px" !important;
}

@media screen and (min-width: 768px) {
  .p-72-pc {
    padding: "72px" !important;
  }
  .pt-72-pc {
    padding-top: "72px" !important;
  }
  .pb-72-pc {
    padding-bottom: "72px" !important;
  }
  .ptb-72-pc {
    padding-block: "72px" !important;
  }
  .pl-72-pc {
    padding-left: "72px" !important;
  }
  .pr-72-pc {
    padding-right: "72px" !important;
  }
  .plr-72-pc {
    padding-inline: "72px" !important;
  }
}
.fs-72 {
  font-size: "72px" !important;
}

@media screen and (min-width: 768px) {
  .fs-72-pc {
    font-size: "72px" !important;
  }
}
/* マージン関連クラス */
.m-80 {
  margin: "80px" !important;
}

.mt-80 {
  margin-top: "80px" !important;
}

.mb-80 {
  margin-bottom: "80px" !important;
}

.mtb-80 {
  margin-block: "80px" !important;
}

.ml-80 {
  margin-left: "80px" !important;
}

.mr-80 {
  margin-right: "80px" !important;
}

.mlr-80 {
  margin-inline: "80px" !important;
}

@media screen and (min-width: 768px) {
  .m-80-pc {
    margin: "80px" !important;
  }
  .mt-80-pc {
    margin-top: "80px" !important;
  }
  .mb-80-pc {
    margin-bottom: "80px" !important;
  }
  .mtb-80-pc {
    margin-block: "80px" !important;
  }
  .ml-80-pc {
    margin-left: "80px" !important;
  }
  .mr-80-pc {
    margin-right: "80px" !important;
  }
  .mlr-80-pc {
    margin-inline: "80px" !important;
  }
}
/* パディング関連クラス */
.p-80 {
  padding: "80px" !important;
}

.pt-80 {
  padding-top: "80px" !important;
}

.pb-80 {
  padding-bottom: "80px" !important;
}

.ptb-80 {
  padding-block: "80px" !important;
}

.pl-80 {
  padding-left: "80px" !important;
}

.pr-80 {
  padding-right: "80px" !important;
}

.plr-80 {
  padding-inline: "80px" !important;
}

@media screen and (min-width: 768px) {
  .p-80-pc {
    padding: "80px" !important;
  }
  .pt-80-pc {
    padding-top: "80px" !important;
  }
  .pb-80-pc {
    padding-bottom: "80px" !important;
  }
  .ptb-80-pc {
    padding-block: "80px" !important;
  }
  .pl-80-pc {
    padding-left: "80px" !important;
  }
  .pr-80-pc {
    padding-right: "80px" !important;
  }
  .plr-80-pc {
    padding-inline: "80px" !important;
  }
}
.fs-80 {
  font-size: "80px" !important;
}

@media screen and (min-width: 768px) {
  .fs-80-pc {
    font-size: "80px" !important;
  }
}
/* マージン関連クラス */
.m-88 {
  margin: "88px" !important;
}

.mt-88 {
  margin-top: "88px" !important;
}

.mb-88 {
  margin-bottom: "88px" !important;
}

.mtb-88 {
  margin-block: "88px" !important;
}

.ml-88 {
  margin-left: "88px" !important;
}

.mr-88 {
  margin-right: "88px" !important;
}

.mlr-88 {
  margin-inline: "88px" !important;
}

@media screen and (min-width: 768px) {
  .m-88-pc {
    margin: "88px" !important;
  }
  .mt-88-pc {
    margin-top: "88px" !important;
  }
  .mb-88-pc {
    margin-bottom: "88px" !important;
  }
  .mtb-88-pc {
    margin-block: "88px" !important;
  }
  .ml-88-pc {
    margin-left: "88px" !important;
  }
  .mr-88-pc {
    margin-right: "88px" !important;
  }
  .mlr-88-pc {
    margin-inline: "88px" !important;
  }
}
/* パディング関連クラス */
.p-88 {
  padding: "88px" !important;
}

.pt-88 {
  padding-top: "88px" !important;
}

.pb-88 {
  padding-bottom: "88px" !important;
}

.ptb-88 {
  padding-block: "88px" !important;
}

.pl-88 {
  padding-left: "88px" !important;
}

.pr-88 {
  padding-right: "88px" !important;
}

.plr-88 {
  padding-inline: "88px" !important;
}

@media screen and (min-width: 768px) {
  .p-88-pc {
    padding: "88px" !important;
  }
  .pt-88-pc {
    padding-top: "88px" !important;
  }
  .pb-88-pc {
    padding-bottom: "88px" !important;
  }
  .ptb-88-pc {
    padding-block: "88px" !important;
  }
  .pl-88-pc {
    padding-left: "88px" !important;
  }
  .pr-88-pc {
    padding-right: "88px" !important;
  }
  .plr-88-pc {
    padding-inline: "88px" !important;
  }
}
.fs-88 {
  font-size: "88px" !important;
}

@media screen and (min-width: 768px) {
  .fs-88-pc {
    font-size: "88px" !important;
  }
}
/* マージン関連クラス */
.m-96 {
  margin: "96px" !important;
}

.mt-96 {
  margin-top: "96px" !important;
}

.mb-96 {
  margin-bottom: "96px" !important;
}

.mtb-96 {
  margin-block: "96px" !important;
}

.ml-96 {
  margin-left: "96px" !important;
}

.mr-96 {
  margin-right: "96px" !important;
}

.mlr-96 {
  margin-inline: "96px" !important;
}

@media screen and (min-width: 768px) {
  .m-96-pc {
    margin: "96px" !important;
  }
  .mt-96-pc {
    margin-top: "96px" !important;
  }
  .mb-96-pc {
    margin-bottom: "96px" !important;
  }
  .mtb-96-pc {
    margin-block: "96px" !important;
  }
  .ml-96-pc {
    margin-left: "96px" !important;
  }
  .mr-96-pc {
    margin-right: "96px" !important;
  }
  .mlr-96-pc {
    margin-inline: "96px" !important;
  }
}
/* パディング関連クラス */
.p-96 {
  padding: "96px" !important;
}

.pt-96 {
  padding-top: "96px" !important;
}

.pb-96 {
  padding-bottom: "96px" !important;
}

.ptb-96 {
  padding-block: "96px" !important;
}

.pl-96 {
  padding-left: "96px" !important;
}

.pr-96 {
  padding-right: "96px" !important;
}

.plr-96 {
  padding-inline: "96px" !important;
}

@media screen and (min-width: 768px) {
  .p-96-pc {
    padding: "96px" !important;
  }
  .pt-96-pc {
    padding-top: "96px" !important;
  }
  .pb-96-pc {
    padding-bottom: "96px" !important;
  }
  .ptb-96-pc {
    padding-block: "96px" !important;
  }
  .pl-96-pc {
    padding-left: "96px" !important;
  }
  .pr-96-pc {
    padding-right: "96px" !important;
  }
  .plr-96-pc {
    padding-inline: "96px" !important;
  }
}
.fs-96 {
  font-size: "96px" !important;
}

@media screen and (min-width: 768px) {
  .fs-96-pc {
    font-size: "96px" !important;
  }
}
/* width */
.w-fit {
  width: fit-content !important;
}

.w-100 {
  width: 100% !important;
}

/* Max Width */
.max-w-content {
  max-width: 1100px !important;
}

.max-w-100 {
  max-width: 100% !important;
}

/*--------------------------------------------------------------------------
  Text Utilities
---------------------------------------------------------------------------*/
/* Text Alignment */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/* Font Weight */
.font-300 {
  font-weight: 300 !important;
}

.font-400 {
  font-weight: 400 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

.font-700 {
  font-weight: 700 !important;
}

.font-800 {
  font-weight: 800 !important;
}

.font-900 {
  font-weight: 900 !important;
}

/* Line Height */
.lh-10 {
  line-height: 1 !important;
}

.lh-11 {
  line-height: 1.1 !important;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-13 {
  line-height: 1.3 !important;
}

.lh-14 {
  line-height: 1.4 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

.lh-16 {
  line-height: 1.6 !important;
}

.lh-18 {
  line-height: 1.8 !important;
}

.lh-20 {
  line-height: 2 !important;
}

/* Text Decoration */
.underline {
  text-decoration: underline;
}

/* Text Transform */
.uppercase {
  text-transform: uppercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

/*--------------------------------------------------------------------------
  List Utilities
---------------------------------------------------------------------------*/
.u-list-indent {
  list-style: inside;
  padding-left: 0;
  margin-inline: 0;
  list-style: none;
}/*# sourceMappingURL=style.css.map */