@charset "UTF-8";
/*--------------------------------------------------------------------------
    Global Variables
---------------------------------------------------------------------------*/
.p-product--a {
  --color-main: #009644;
}

.p-product--a {
  --color-text-main: #009644;
}

.p-product--a {
  --color-bg-main: #009644;
}

.p-product--a {
  --color-bg-light: #e8f6ee;
}

.p-product--a {
  --color-bg-grayish: #66c08f;
}

.p-product--a {
  --color-bg-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.1450980392) 60%, rgba(0, 150, 67, 0.1450980392) 100%);
}

.p-product--a {
  --color-on-bg: #FFFFFF;
}

.p-product--a {
  --color-border: #009644;
}

.p-product--b {
  --color-main: #FDF121;
}

.p-product--b {
  --color-text-main: #00579d;
}

.p-product--b {
  --color-bg-main: #FDF121;
}

.p-product--b {
  --color-bg-light: #fef6d8;
}

.p-product--b {
  --color-bg-grayish: #669ac4;
}

.p-product--b {
  --color-bg-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.1450980392) 60%, rgba(250, 210, 60, 0.1450980392) 100%);
}

.p-product--b {
  --color-on-bg: #005787;
}

.p-product--b {
  --color-border: #FDF121;
}

.p-product--c {
  --color-main: #0057A3;
}

.p-product--c {
  --color-text-main: #0057A3;
}

.p-product--c {
  --color-bg-main: #0057A3;
}

.p-product--c {
  --color-bg-light: #e0ebf4;
}

.p-product--c {
  --color-bg-grayish: #669ac8;
}

.p-product--c {
  --color-bg-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.1450980392) 60%, rgba(0, 87, 163, 0.1450980392) 100%);
}

.p-product--c {
  --color-on-bg: #FFFFFF;
}

.p-product--c {
  --color-border: #0057A3;
}

.p-product--d {
  --color-main: #0092D4;
}

.p-product--d {
  --color-text-main: #0092D4;
}

.p-product--d {
  --color-bg-main: #0092D4;
}

.p-product--d {
  --color-bg-light: #e8f5fb;
}

.p-product--d {
  --color-bg-grayish: #66bee5;
}

.p-product--d {
  --color-bg-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.1450980392) 60%, rgba(0, 146, 212, 0.1450980392) 100%);
}

.p-product--d {
  --color-on-bg: #FFFFFF;
}

.p-product--d {
  --color-border: #0092D4;
}

/*
  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;
}

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

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

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

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

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

a {
  text-decoration: none;
  color: currentColor;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}
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: 999;
  background-color: #fff;
  box-shadow: 0 7px 5px rgba(0, 0, 0, 0.15);
}
.l-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 20px 20px;
  }
}
.l-header__logo {
  font-size: 16px;
  width: min(17svw, 130px);
  transition: opacity 0.3s;
}
.l-header__logo:hover {
  opacity: 0.7;
}

.l-footer {
  position: sticky;
  top: 100%;
  margin-top: clamp(28px, 9.3333333333cqw, 70px);
  padding-bottom: clamp(12px, 4cqw, 30px);
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: clamp(28px, 6.3636363636cqw, 105px);
  }
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-bottom: clamp(12px, 2.7272727273cqw, 45px);
  }
}
.l-footer__inner {
  width: min(90vw, 1100px);
  margin-inline: auto;
}
.l-footer__logo {
  width: min(20svw, 150px);
  margin-inline: auto;
  transition: opacity 0.3s;
}
.l-footer__logo:hover {
  opacity: 0.7;
}

.l-footer-copyright {
  text-align: center;
  margin-top: clamp(12px, 4cqw, 30px);
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    margin-top: clamp(12px, 2.7272727273cqw, 45px);
  }
}
.l-footer-copyright__txt {
  font-size: clamp(8.8px, 2.9333333333cqw, 22px);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright__txt {
    font-size: clamp(8.8px, 2cqw, 33px);
  }
}

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

.l-container {
  container-type: inline-size;
  width: 100%;
  max-width: 750px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-container {
    width: min(90%, 1100px);
    max-width: unset;
  }
}
@media screen and (min-width: 768px) {
  .l-container--fv {
    width: 100%;
  }
}
.l-container__inner {
  padding-inline: clamp(12px, 4cqw, 30px);
}
@media screen and (min-width: 768px) {
  .l-container__inner {
    padding-inline: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .l-container__inner {
    padding-inline: clamp(0px, 0cqw, 0px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .l-container__inner {
    padding-inline: clamp(0px, 0cqw, 0px);
  }
}
.l-container__inner--intro {
  padding-top: 11vw;
}
@media screen and (min-width: 768px) {
  .l-container__inner--intro {
    padding-top: 11.5vw;
  }
}
.l-container__inner--faq {
  padding-block: clamp(28px, 9.3333333333cqw, 70px);
}
@media screen and (min-width: 768px) {
  .l-container__inner--faq {
    padding-block: clamp(28px, 6.3636363636cqw, 105px);
  }
}

/*--------------------------------------------------------------------------
.c-title-marks チョンチョンマーク付きタイトル
---------------------------------------------------------------------------*/
.c-title-marks {
  font-size: clamp(20px, 6.6666666667cqw, 50px);
  color: #005787;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: clamp(20px, 6.6666666667cqw, 50px);
  margin-bottom: clamp(24px, 8cqw, 60px);
}
@media screen and (min-width: 768px) {
  .c-title-marks {
    font-size: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .c-title-marks {
    column-gap: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .c-title-marks {
    margin-bottom: clamp(24px, 5.4545454545cqw, 90px);
  }
}
@media screen and (min-width: 768px) {
  .c-title-marks {
    margin-bottom: clamp(8px, 2.6666666667cqw, 20px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-title-marks {
    margin-bottom: clamp(8px, 1.8181818182cqw, 30px);
  }
}
.c-title-marks::before, .c-title-marks::after {
  content: "";
  display: block;
  width: clamp(12px, 4cqw, 30px);
  height: clamp(36px, 12cqw, 90px);
  background: url(../../assets/img/top/title-marks.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-title-marks::before, .c-title-marks::after {
    width: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .c-title-marks::before, .c-title-marks::after {
    height: clamp(36px, 8.1818181818cqw, 135px);
  }
}
.c-title-marks::before {
  transform: scaleX(-1);
}

/*--------------------------------------------------------------------------
.c-note 注釈
---------------------------------------------------------------------------*/
.c-note {
  font-weight: 500;
  font-size: clamp(9.6px, 3.2cqw, 24px);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-note {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .c-note {
    margin-top: 19px;
    font-size: clamp(6.4px, 2.1333333333cqw, 16px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-note {
    font-size: clamp(6.4px, 1.4545454545cqw, 24px);
  }
}

/*--------------------------------------------------------------------------
.p-fv
---------------------------------------------------------------------------*/
.p-fv {
  position: relative;
  z-index: 1;
}
.p-fv__text {
  position: absolute;
  top: clamp(52px, 17.3333333333cqw, 130px);
  left: clamp(24px, 8cqw, 60px);
}
@media screen and (min-width: 768px) {
  .p-fv__text {
    top: clamp(52px, 11.8181818182cqw, 195px);
  }
}
@media screen and (min-width: 768px) {
  .p-fv__text {
    left: clamp(24px, 5.4545454545cqw, 90px);
  }
}
@media screen and (min-width: 768px) {
  .p-fv__text {
    top: 16vw;
    left: 6vw;
  }
}
.p-fv__line {
  letter-spacing: 0.02em;
  font-size: clamp(24px, 8cqw, 60px);
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1;
  padding-block: 2px 4px;
  padding-inline: 2px;
  display: block;
  width: fit-content;
  rotate: -5deg;
  background-color: rgba(0, 145, 212, 0.8196078431);
  background-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .p-fv__line {
    font-size: clamp(24px, 5.4545454545cqw, 90px);
  }
}
@media screen and (min-width: 768px) {
  .p-fv__line {
    font-size: 6.5vw;
    letter-spacing: 0;
    padding-block: 4px 10px;
  }
}
.p-fv__line-1 {
  margin-bottom: clamp(6.4px, 2.1333333333cqw, 16px);
}
@media screen and (min-width: 768px) {
  .p-fv__line-1 {
    margin-bottom: clamp(6.4px, 1.4545454545cqw, 24px);
  }
}
.p-fv__line-2 {
  margin-bottom: clamp(3.2px, 1.0666666667cqw, 8px);
}
@media screen and (min-width: 768px) {
  .p-fv__line-2 {
    margin-bottom: clamp(3.2px, 0.7272727273cqw, 12px);
  }
}
@media screen and (min-width: 768px) {
  .p-fv__line-2 {
    margin-bottom: clamp(9.6px, 3.2cqw, 24px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-fv__line-2 {
    margin-bottom: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .p-fv__line-3-pc {
    margin-bottom: clamp(6.4px, 2.1333333333cqw, 16px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-fv__line-3-pc {
    margin-bottom: clamp(6.4px, 1.4545454545cqw, 24px);
  }
}

/*--------------------------------------------------------------------------
.p-intro
---------------------------------------------------------------------------*/
.p-intro {
  background-color: #ffe0d4;
  margin-top: -8vw;
  padding-bottom: clamp(52px, 17.3333333333cqw, 130px);
}
@media screen and (min-width: 768px) {
  .p-intro {
    padding-bottom: clamp(52px, 11.8181818182cqw, 195px);
  }
}
@media screen and (min-width: 768px) {
  .p-intro {
    padding-bottom: clamp(54.8px, 18.2666666667cqw, 137px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-intro {
    padding-bottom: clamp(54.8px, 12.4545454545cqw, 205.5px);
  }
}
.p-intro__title, .p-intro__description {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}
.p-intro__title {
  margin-bottom: clamp(8px, 2.6666666667cqw, 20px);
  font-size: clamp(20px, 6.6666666667cqw, 50px);
  line-height: 1.4;
  color: #005787;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-intro__title {
    margin-bottom: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-intro__title {
    font-size: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-intro__title {
    margin-bottom: clamp(4px, 1.3333333333cqw, 10px);
    font-size: clamp(14.4px, 4.8cqw, 36px);
    line-height: 1.3888888889;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-intro__title {
    margin-bottom: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-intro__title {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
.p-intro__description {
  font-size: clamp(12px, 4cqw, 30px);
  line-height: 1.5333333333;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-intro__description {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-intro__description {
    font-size: clamp(7.2px, 2.4cqw, 18px);
    line-height: 2;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-intro__description {
    font-size: clamp(7.2px, 1.6363636364cqw, 27px);
  }
}

/*--------------------------------------------------------------------------
.p-howto
---------------------------------------------------------------------------*/
.p-howto {
  background-color: #ffe0d4;
  padding-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .p-howto {
    padding-bottom: 6cqw;
  }
}
.p-howto__deco {
  position: absolute;
  display: block;
  background-color: #FFFFFF;
  height: 4px;
}
.p-howto__deco-1 {
  width: clamp(8px, 2.6666666667cqw, 20px);
  top: -2px;
  left: clamp(31.2px, 10.4cqw, 78px);
}
@media screen and (min-width: 768px) {
  .p-howto__deco-1 {
    width: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-howto__deco-1 {
    left: clamp(31.2px, 7.0909090909cqw, 117px);
  }
}
.p-howto__deco-2 {
  width: clamp(8px, 2.6666666667cqw, 20px);
  bottom: -2px;
  right: clamp(31.2px, 10.4cqw, 78px);
}
@media screen and (min-width: 768px) {
  .p-howto__deco-2 {
    width: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-howto__deco-2 {
    right: clamp(31.2px, 7.0909090909cqw, 117px);
  }
}
.p-howto__deco-3 {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-howto__deco-3 {
    display: block;
    width: 34%;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-howto__container {
  background-color: #FFFFFF;
  margin-inline: calc(50% - 50svw);
  padding-inline: clamp(12px, 4cqw, 30px);
  position: relative;
  padding-top: clamp(112px, 37.3333333333cqw, 280px);
  border-top: 2px solid #0057A3;
  border-bottom: 2px solid #0057A3;
}
@media screen and (min-width: 768px) {
  .p-howto__container {
    padding-inline: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-howto__container {
    padding-top: clamp(112px, 25.4545454545cqw, 420px);
  }
}
@media screen and (min-width: 768px) {
  .p-howto__container {
    padding-top: clamp(76px, 25.3333333333cqw, 190px);
    border: 2px solid #0057A3;
    border-radius: clamp(8px, 2.6666666667cqw, 20px);
    margin-inline: 0;
    padding-inline: 7%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-howto__container {
    padding-top: clamp(76px, 17.2727272727cqw, 285px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-howto__container {
    border-radius: clamp(8px, 1.8181818182cqw, 30px);
  }
}
.p-howto__title {
  position: absolute;
  top: -6.5cqw;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 93.3333333333cqw, 700px);
}
@media screen and (min-width: 768px) {
  .p-howto__title {
    width: clamp(280px, 63.6363636364cqw, 1050px);
  }
}
@media screen and (min-width: 768px) {
  .p-howto__title {
    width: 86%;
    top: -5cqw;
  }
}
.p-howto__guide {
  display: flex;
  column-gap: 4px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-block: clamp(4px, 1.3333333333cqw, 10px);
  padding-inline: clamp(6.4px, 2.1333333333cqw, 16px);
  margin-bottom: clamp(16px, 5.3333333333cqw, 40px);
  background-color: #e5eef5;
}
@media screen and (min-width: 768px) {
  .p-howto__guide {
    padding-block: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-howto__guide {
    padding-inline: clamp(6.4px, 1.4545454545cqw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .p-howto__guide {
    margin-bottom: clamp(16px, 3.6363636364cqw, 60px);
  }
}
.p-howto__guide-icon {
  width: clamp(22px, 7.3333333333cqw, 55px);
  height: clamp(22px, 7.3333333333cqw, 55px);
  border: 2px solid #FFFFFF;
  background-color: rgba(20, 130, 180, 0.5);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-howto__guide-icon {
    width: clamp(22px, 5cqw, 82.5px);
  }
}
@media screen and (min-width: 768px) {
  .p-howto__guide-icon {
    height: clamp(22px, 5cqw, 82.5px);
  }
}
.p-howto__guide-icon::before {
  content: "";
  display: block;
  width: clamp(14.4px, 4.8cqw, 36px);
  height: clamp(14.4px, 4.8cqw, 36px);
  background: url(../../assets/img/top/click-mark-attention.svg) no-repeat center/contain;
  position: absolute;
  top: -43%;
  left: -43%;
}
@media screen and (min-width: 768px) {
  .p-howto__guide-icon::before {
    width: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-howto__guide-icon::before {
    height: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
.p-howto__guide-text {
  font-weight: 700;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  line-height: 1;
  color: #005787;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .p-howto__guide-text {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}

@keyframes mapBgFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mapPanelFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.is-fixed-for-map {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  body.is-fixed-for-map {
    overflow: auto;
  }
}

/*--------------------------------------------------------------------------
.p-map
---------------------------------------------------------------------------*/
.p-map__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.p-map__overlay.is-shown {
  display: block;
  animation: mapBgFadeIn 0.2s ease forwards;
}
@media screen and (min-width: 768px) {
  .p-map__overlay.is-shown {
    display: none;
  }
}
.p-map__container {
  container-type: inline-size;
  max-width: 624px;
  margin-inline: auto;
  position: relative;
  margin-inline: clamp(11.2px, 3.7333333333cqw, 28px);
}
@media screen and (min-width: 768px) {
  .p-map__container {
    margin-inline: clamp(11.2px, 2.5454545455cqw, 42px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__container {
    max-width: 790px;
    margin-inline: auto;
  }
}
.p-map__button {
  width: 9cqw;
  height: 9cqw;
  border: 2px solid #FFFFFF;
  background-color: rgba(20, 130, 180, 0.4);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.p-map__button:hover {
  background-color: rgba(255, 255, 0, 0.7);
}
@media screen and (min-width: 768px) {
  .p-map__button {
    border: 3px solid #FFFFFF;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    width: 8cqw;
    height: 8cqw;
  }
}
.p-map__button--1 {
  top: 46cqw;
  left: 9cqw;
}
.p-map__button--2 {
  top: 41cqw;
  left: 52cqw;
}
@media screen and (min-width: 768px) {
  .p-map__button--2 {
    top: 43cqw;
    left: 54cqw;
  }
}
.p-map__button--3 {
  top: 38cqw;
  left: 64cqw;
}
@media screen and (min-width: 768px) {
  .p-map__button--3 {
    top: 38cqw;
    left: 66cqw;
  }
}
.p-map__button--4 {
  top: 40cqw;
  left: 76cqw;
}
@media screen and (min-width: 768px) {
  .p-map__button--4 {
    top: 41cqw;
    left: 77cqw;
  }
}
.p-map__button--5 {
  top: 35cqw;
  left: 86cqw;
}
@media screen and (min-width: 768px) {
  .p-map__button--5 {
    top: 38cqw;
    left: 88cqw;
  }
}
.p-map__button--6 {
  top: 78cqw;
  left: 7cqw;
}
.p-map__button--7 {
  top: 75cqw;
  left: 25cqw;
}
.p-map__panel {
  max-width: 100%;
  width: clamp(144px, 48cqw, 360px);
  display: none;
  line-height: 1;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .p-map__panel {
    width: clamp(144px, 32.7272727273cqw, 540px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel {
    width: 38cqw;
  }
}
.p-map__panel.is-shown {
  display: block;
  animation: mapPanelFadeIn 0.2s ease forwards;
}
.p-map__panel::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: clamp(4px, 1.3333333333cqw, 10px);
}
@media screen and (min-width: 768px) {
  .p-map__panel::after {
    border-radius: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel--1 {
    top: 32cqw;
    left: 13cqw;
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel--2 {
    top: 30cqw;
    left: 58cqw;
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel--3 {
    top: 25cqw;
    left: 70cqw;
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel--4 {
    top: 28cqw;
    left: 81cqw;
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel--5 {
    top: 13cqw;
    left: 92cqw;
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel--6 {
    top: 66cqw;
    left: 11cqw;
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel--7 {
    top: 46cqw;
    left: 29cqw;
  }
}
.p-map__panel-content {
  background-color: #FFFFFF;
  padding: clamp(5.6px, 1.8666666667cqw, 14px);
  border: 2px solid #8b8b9e;
  border-top: none;
  border-bottom-left-radius: clamp(4px, 1.3333333333cqw, 10px);
  border-bottom-right-radius: clamp(4px, 1.3333333333cqw, 10px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-map__panel-content {
    padding: clamp(5.6px, 1.2727272727cqw, 21px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-content {
    border-bottom-left-radius: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-content {
    border-bottom-right-radius: clamp(4px, 0.9090909091cqw, 15px);
  }
}
.p-map__panel-content::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-map__panel-content::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8b8b9e;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  }
}
.p-map__panel-close {
  position: absolute;
  top: -9cqw;
  right: 2%;
  width: clamp(22.4px, 7.4666666667cqw, 56px);
  height: clamp(22.4px, 7.4666666667cqw, 56px);
  background-color: #FFFFFF;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #8b8b9e;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-map__panel-close {
    width: clamp(22.4px, 5.0909090909cqw, 84px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-close {
    height: clamp(22.4px, 5.0909090909cqw, 84px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-close {
    top: -8cqw;
  }
}
.p-map__panel-close::before, .p-map__panel-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(16px, 5.3333333333cqw, 40px);
  height: clamp(1.6px, 0.5333333333cqw, 4px);
  background-color: #8b8b9e;
  transform-origin: center;
}
@media screen and (min-width: 768px) {
  .p-map__panel-close::before, .p-map__panel-close::after {
    width: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-close::before, .p-map__panel-close::after {
    height: clamp(1.6px, 0.3636363636cqw, 6px);
  }
}
.p-map__panel-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-map__panel-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-map__panel-category:not(:first-of-type) {
  margin-top: clamp(12px, 4cqw, 30px);
}
@media screen and (min-width: 768px) {
  .p-map__panel-category:not(:first-of-type) {
    margin-top: clamp(12px, 2.7272727273cqw, 45px);
  }
}
.p-map__panel-title {
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  font-size: clamp(12px, 4cqw, 30px);
  padding: clamp(4px, 1.3333333333cqw, 10px);
  background-color: #8b8b9e;
  border-top-left-radius: clamp(4px, 1.3333333333cqw, 10px);
  border-top-right-radius: clamp(4px, 1.3333333333cqw, 10px);
}
@media screen and (min-width: 768px) {
  .p-map__panel-title {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-title {
    padding: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-title {
    border-top-left-radius: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-title {
    border-top-right-radius: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-title {
    font-size: 4.3cqw;
  }
}
.p-map__link {
  display: flex;
  border-radius: clamp(2px, 0.6666666667cqw, 5px);
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-map__link {
    border-radius: clamp(2px, 0.4545454545cqw, 7.5px);
  }
}
.p-map__link:hover {
  opacity: 0.8;
}
.p-map__link-text {
  text-align: center;
  display: block;
  font-weight: 700;
  font-size: clamp(9.6px, 3.2cqw, 24px);
  line-height: 1.25;
  background-color: var(--color-bg-main);
  color: var(--color-on-bg);
  flex-grow: 1;
  padding-block: 2px 4px;
}
@media screen and (min-width: 768px) {
  .p-map__link-text {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__link-text {
    font-size: 2.6cqw;
  }
}
.p-map__link-arrow {
  background-color: var(--color-bg-light);
  position: relative;
  display: block;
  width: clamp(16px, 5.3333333333cqw, 40px);
}
@media screen and (min-width: 768px) {
  .p-map__link-arrow {
    width: clamp(16px, 3.6363636364cqw, 60px);
  }
}
.p-map__link-arrow::after {
  content: "";
  display: block;
  width: clamp(5.6px, 1.8666666667cqw, 14px);
  height: clamp(5.2px, 1.7333333333cqw, 13px);
  background-color: var(--color-main);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-map__link-arrow::after {
    width: clamp(5.6px, 1.2727272727cqw, 21px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__link-arrow::after {
    height: clamp(5.2px, 1.1818181818cqw, 19.5px);
  }
}
.p-map .p-product--b .p-map__link-arrow {
  background-color: #fad23c;
}
.p-map .p-product--b .p-map__link-arrow::after {
  background-color: var(--color-on-bg);
}
.p-map .p-product--c .p-map__link-arrow {
  background-color: #b2cde3;
}
.p-map .p-product--d .p-map__link-arrow {
  background-color: #b2def2;
}
.p-map__panel-list {
  display: grid;
  row-gap: 2px;
  margin-top: 2px;
}
.p-map__panel-item {
  font-weight: 500;
  font-size: clamp(8.8px, 2.9333333333cqw, 22px);
  line-height: 1.6363636364;
}
@media screen and (min-width: 768px) {
  .p-map__panel-item {
    font-size: clamp(8.8px, 2cqw, 33px);
  }
}
@media screen and (min-width: 768px) {
  .p-map__panel-item {
    font-size: 3.1cqw;
  }
}
.p-map__panel-item .dot {
  color: #8b8b9e;
}

/*--------------------------------------------------------------------------
.p-matrix
---------------------------------------------------------------------------*/
.p-matrix {
  padding-top: clamp(32px, 10.6666666667cqw, 80px);
  padding-bottom: clamp(32px, 10.6666666667cqw, 80px);
}
@media screen and (min-width: 768px) {
  .p-matrix {
    padding-top: clamp(32px, 7.2727272727cqw, 120px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix {
    padding-bottom: clamp(32px, 7.2727272727cqw, 120px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix {
    padding-bottom: clamp(24px, 8cqw, 60px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-matrix {
    padding-bottom: clamp(24px, 5.4545454545cqw, 90px);
  }
}
.p-matrix__title {
  margin-bottom: clamp(20px, 6.6666666667cqw, 50px);
  padding-right: clamp(3.2px, 1.0666666667cqw, 8px);
  padding-bottom: clamp(3.2px, 1.0666666667cqw, 8px);
  border-right: 2px solid #005787;
  border-bottom: 2px solid #005787;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-matrix__title {
    margin-bottom: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix__title {
    padding-right: clamp(3.2px, 0.7272727273cqw, 12px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix__title {
    padding-bottom: clamp(3.2px, 0.7272727273cqw, 12px);
  }
}
.p-matrix__title::after {
  content: "";
  display: block;
  width: clamp(16px, 5.3333333333cqw, 40px);
  height: clamp(8px, 2.6666666667cqw, 20px);
  background-color: #005787;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-matrix__title::after {
    width: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix__title::after {
    height: clamp(8px, 1.8181818182cqw, 30px);
  }
}
.p-matrix__title-text {
  display: block;
  color: #005787;
  font-weight: 700;
  font-size: clamp(20px, 6.6666666667cqw, 50px);
  line-height: 1;
  text-align: center;
  position: relative;
  background-color: #aee0eb;
  padding: clamp(5.6px, 1.8666666667cqw, 14px);
}
@media screen and (min-width: 768px) {
  .p-matrix__title-text {
    font-size: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix__title-text {
    padding: clamp(5.6px, 1.2727272727cqw, 21px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix__title-text {
    font-size: clamp(14.4px, 4.8cqw, 36px);
    padding-block: clamp(8px, 2.6666666667cqw, 20px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-matrix__title-text {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-matrix__title-text {
    padding-block: clamp(8px, 1.8181818182cqw, 30px);
  }
}
.p-matrix__table {
  width: 100%;
  border-collapse: collapse;
}
.p-matrix th, .p-matrix td {
  border: 2px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
}
.p-matrix thead th {
  height: clamp(32px, 10.6666666667cqw, 80px);
  padding: 0;
  border-top-left-radius: clamp(8px, 2.6666666667cqw, 20px);
  border-top-right-radius: clamp(8px, 2.6666666667cqw, 20px);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-matrix thead th {
    height: clamp(32px, 7.2727272727cqw, 120px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix thead th {
    border-top-left-radius: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix thead th {
    border-top-right-radius: clamp(8px, 1.8181818182cqw, 30px);
  }
}
.p-matrix thead span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-main);
  color: var(--color-on-bg);
  font-weight: 700;
  font-size: clamp(9.6px, 3.2cqw, 24px);
  line-height: 1.25;
  height: 100%;
  padding: clamp(3.2px, 1.0666666667cqw, 8px);
}
@media screen and (min-width: 768px) {
  .p-matrix thead span {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix thead span {
    padding: clamp(3.2px, 0.7272727273cqw, 12px);
  }
}
.p-matrix tbody th {
  background-color: #838396;
  color: #FFFFFF;
  font-weight: 700;
  font-size: clamp(8.8px, 2.9333333333cqw, 22px);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-matrix tbody th {
    font-size: clamp(8.8px, 2cqw, 33px);
  }
}
.p-matrix tbody td {
  line-height: clamp(16.8px, 5.6cqw, 42px);
  text-align: center;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-matrix tbody td {
    line-height: clamp(16.8px, 3.8181818182cqw, 63px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix tbody td {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-matrix tbody td {
    line-height: clamp(18.4px, 6.1333333333cqw, 46px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-matrix tbody td {
    line-height: clamp(18.4px, 4.1818181818cqw, 69px);
  }
}
.p-matrix tbody td.data-text {
  font-size: clamp(8.8px, 2.9333333333cqw, 22px);
}
@media screen and (min-width: 768px) {
  .p-matrix tbody td.data-text {
    font-size: clamp(8.8px, 2cqw, 33px);
  }
}
.p-matrix tbody tr:nth-child(even) .a {
  background-color: #e0f2e9;
}
.p-matrix tbody tr:nth-child(even) .b {
  background-color: #fef6d8;
}
.p-matrix tbody tr:nth-child(even) .c {
  background-color: #e0ebf4;
}
.p-matrix tbody tr:nth-child(even) .d {
  background-color: #e0f2fa;
}

/*--------------------------------------------------------------------------
.p-anchor
---------------------------------------------------------------------------*/
.p-anchor {
  margin-top: clamp(24px, 8cqw, 60px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 5.3333333333cqw, 40px);
}
@media screen and (min-width: 768px) {
  .p-anchor {
    margin-top: clamp(24px, 5.4545454545cqw, 90px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor {
    gap: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 5.3333333333cqw, 40px);
    max-width: 960px;
    margin-inline: auto;
    margin-top: clamp(33.6px, 11.2cqw, 84px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-anchor {
    gap: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-anchor {
    margin-top: clamp(33.6px, 7.6363636364cqw, 126px);
  }
}
.p-anchor__item {
  position: relative;
  transition: opacity 0.3s ease;
}
.p-anchor__item:hover {
  opacity: 0.7;
}
.p-anchor__item::after {
  content: "";
  display: block;
  width: calc(100% - 3px);
  height: 100%;
  font-size: clamp(20px, 6.6666666667cqw, 50px);
  line-height: 1.4;
  border-radius: clamp(24px, 8cqw, 60px);
  background-color: var(--color-bg-main);
  position: absolute;
  top: 4%;
  left: 3px;
}
@media screen and (min-width: 768px) {
  .p-anchor__item::after {
    font-size: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor__item::after {
    border-radius: clamp(24px, 5.4545454545cqw, 90px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor__item::after {
    top: 5px;
    left: 6px;
    border-radius: clamp(36px, 12cqw, 90px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-anchor__item::after {
    border-radius: clamp(36px, 8.1818181818cqw, 135px);
  }
}
.p-anchor__link {
  display: block;
  border-radius: clamp(24px, 8cqw, 60px);
  padding: clamp(13.6px, 4.5333333333cqw, 34px);
  padding-top: clamp(8.8px, 2.9333333333cqw, 22px);
  font-weight: 700;
  font-size: clamp(20px, 6.6666666667cqw, 50px);
  line-height: 1.4;
  color: var(--color-on-bg);
  text-align: center;
  position: relative;
  z-index: 1;
  background: url(../../assets/img/top/btn-frame.svg) no-repeat center;
  background-size: contain;
  aspect-ratio: 685/120;
}
@media screen and (min-width: 768px) {
  .p-anchor__link {
    border-radius: clamp(24px, 5.4545454545cqw, 90px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor__link {
    padding: clamp(13.6px, 3.0909090909cqw, 51px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor__link {
    padding-top: clamp(8.8px, 2cqw, 33px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor__link {
    font-size: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor__link {
    background: url(../../assets/img/top/btn-frame-pc.svg) no-repeat center;
    font-size: clamp(14.4px, 4.8cqw, 36px);
    line-height: 1.3888888889;
    padding: clamp(18.4px, 6.1333333333cqw, 46px);
    padding-top: clamp(11.2px, 3.7333333333cqw, 28px);
    aspect-ratio: 460/120;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-anchor__link {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-anchor__link {
    padding: clamp(18.4px, 4.1818181818cqw, 69px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-anchor__link {
    padding-top: clamp(11.2px, 2.5454545455cqw, 42px);
  }
}
.p-anchor__link::after {
  content: "";
  display: block;
  width: clamp(12px, 4cqw, 30px);
  height: clamp(4.8px, 1.6cqw, 12px);
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: clamp(5.6px, 1.8666666667cqw, 14px);
  left: 50%;
  translate: -50%;
}
@media screen and (min-width: 768px) {
  .p-anchor__link::after {
    width: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor__link::after {
    height: clamp(4.8px, 1.0909090909cqw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor__link::after {
    bottom: clamp(5.6px, 1.2727272727cqw, 21px);
  }
}
@media screen and (min-width: 768px) {
  .p-anchor__link::after {
    bottom: clamp(9.6px, 3.2cqw, 24px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-anchor__link::after {
    bottom: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}

/*--------------------------------------------------------------------------
.p-product
---------------------------------------------------------------------------*/
.p-product {
  background-color: var(--color-bg-light);
}
.p-product.p-product--a {
  margin-top: clamp(8px, 2.6666666667cqw, 20px);
}
@media screen and (min-width: 768px) {
  .p-product.p-product--a {
    margin-top: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 1024px) {
  .p-product.p-product--a {
    margin-top: clamp(4px, 1.3333333333cqw, 10px);
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .p-product.p-product--a {
    margin-top: clamp(4px, 0.9090909091cqw, 15px);
  }
}
.p-product:not(.p-product--a) {
  margin-top: -13svw;
  padding-top: clamp(96px, 32cqw, 240px);
  clip-path: polygon(0 13svw, 100% 0, 100% 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .p-product:not(.p-product--a) {
    padding-top: clamp(96px, 21.8181818182cqw, 360px);
  }
}
@media screen and (min-width: 1024px) {
  .p-product:not(.p-product--a) {
    margin-top: -8svw;
    padding-top: clamp(80px, 26.6666666667cqw, 200px);
    clip-path: polygon(0 8cqw, 100% 0, 100% 100%, 0 100%);
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .p-product:not(.p-product--a) {
    padding-top: clamp(80px, 18.1818181818cqw, 300px);
  }
}
.p-product__title {
  position: relative;
  margin-bottom: clamp(10.4px, 3.4666666667cqw, 26px);
}
@media screen and (min-width: 768px) {
  .p-product__title {
    margin-bottom: clamp(10.4px, 2.3636363636cqw, 39px);
  }
}
@media screen and (min-width: 768px) {
  .p-product__title {
    margin-bottom: clamp(28.8px, 9.6cqw, 72px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-product__title {
    margin-bottom: clamp(28.8px, 6.5454545455cqw, 108px);
  }
}
.p-product__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: clamp(1.2px, 0.4cqw, 3px);
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  .p-product__title::after {
    height: clamp(1.2px, 0.2727272727cqw, 4.5px);
  }
}
.p-product__title-text {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-weight: 700;
  text-align: center;
  color: var(--color-on-bg);
  background-color: var(--color-main);
  font-size: clamp(13.6px, 4.5333333333cqw, 34px);
  line-height: 1.4705882353;
  border-top-left-radius: clamp(8px, 2.6666666667cqw, 20px);
  border-top-right-radius: clamp(8px, 2.6666666667cqw, 20px);
  padding-block: clamp(6.4px, 2.1333333333cqw, 16px);
  padding-inline: clamp(4px, 1.3333333333cqw, 10px);
  min-width: clamp(220px, 73.3333333333cqw, 550px);
}
@media screen and (min-width: 768px) {
  .p-product__title-text {
    font-size: clamp(13.6px, 3.0909090909cqw, 51px);
  }
}
@media screen and (min-width: 768px) {
  .p-product__title-text {
    border-top-left-radius: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-product__title-text {
    border-top-right-radius: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-product__title-text {
    padding-block: clamp(6.4px, 1.4545454545cqw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .p-product__title-text {
    padding-inline: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-product__title-text {
    min-width: clamp(220px, 50cqw, 825px);
  }
}
@media screen and (min-width: 768px) {
  .p-product__title-text {
    width: 87%;
  }
}

/*--------------------------------------------------------------------------
.p-about
---------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-about {
    display: grid;
    grid-template-columns: 36fr 55fr;
    column-gap: clamp(32px, 10.6666666667cqw, 80px);
    align-items: center;
    padding-inline: 4cqw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-about {
    column-gap: clamp(32px, 7.2727272727cqw, 120px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .p-about {
    align-items: initial;
  }
}
.p-about__img {
  margin-inline: auto;
  width: clamp(144px, 48cqw, 360px);
  margin-bottom: clamp(4.8px, 1.6cqw, 12px);
}
@media screen and (min-width: 768px) {
  .p-about__img {
    width: clamp(144px, 32.7272727273cqw, 540px);
  }
}
@media screen and (min-width: 768px) {
  .p-about__img {
    margin-bottom: clamp(4.8px, 1.0909090909cqw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .p-about__img {
    width: fit-content;
    margin-bottom: 0;
  }
}
.p-about__catch {
  color: var(--color-text-main);
  text-align: center;
  font-weight: 700;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  line-height: 1.3888888889;
  margin-bottom: clamp(8px, 2.6666666667cqw, 20px);
}
@media screen and (min-width: 768px) {
  .p-about__catch {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-about__catch {
    margin-bottom: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-about__catch {
    text-align: left;
    margin-bottom: clamp(8px, 2.6666666667cqw, 20px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-about__catch {
    margin-bottom: clamp(8px, 1.8181818182cqw, 30px);
  }
}

/*--------------------------------------------------------------------------
.p-feature
---------------------------------------------------------------------------*/
.p-feature__title {
  color: #FFFFFF;
  background-color: var(--color-bg-grayish);
  text-align: center;
  font-weight: 700;
  font-size: clamp(12px, 4cqw, 30px);
  line-height: 1.5333333333;
  margin-bottom: clamp(8px, 2.6666666667cqw, 20px);
  padding: clamp(2.4px, 0.8cqw, 6px);
  padding-block: clamp(4.8px, 1.6cqw, 12px);
  position: relative;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-feature__title {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__title {
    margin-bottom: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__title {
    padding: clamp(2.4px, 0.5454545455cqw, 9px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__title {
    padding-block: clamp(4.8px, 1.0909090909cqw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__title {
    font-size: clamp(9.6px, 3.2cqw, 24px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-feature__title {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
.p-feature__title::after {
  content: "";
  display: block;
  margin-inline: auto;
  width: clamp(144px, 48cqw, 360px);
  height: clamp(14px, 4.6666666667cqw, 35px);
  background: url(../../assets/img/top/feature-deco.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}
@media screen and (min-width: 768px) {
  .p-feature__title::after {
    width: clamp(144px, 32.7272727273cqw, 540px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__title::after {
    height: clamp(14px, 3.1818181818cqw, 52.5px);
  }
}
.p-feature__content {
  background-color: #FFFFFF;
  padding-inline: clamp(12.8px, 4.2666666667cqw, 32px);
  padding-block: clamp(8px, 2.6666666667cqw, 20px);
}
@media screen and (min-width: 768px) {
  .p-feature__content {
    padding-inline: clamp(12.8px, 2.9090909091cqw, 48px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__content {
    padding-block: clamp(8px, 1.8181818182cqw, 30px);
  }
}
.p-feature__description {
  font-weight: 500;
  font-size: clamp(12px, 4cqw, 30px);
  line-height: 1.5333333333;
  margin-bottom: clamp(12px, 4cqw, 30px);
}
@media screen and (min-width: 768px) {
  .p-feature__description {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__description {
    margin-bottom: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__description {
    font-size: clamp(7.2px, 2.4cqw, 18px);
    line-height: 1.6666666667;
    margin-bottom: clamp(12px, 4cqw, 30px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-feature__description {
    font-size: clamp(7.2px, 1.6363636364cqw, 27px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-feature__description {
    margin-bottom: clamp(12px, 2.7272727273cqw, 45px);
  }
}
.p-feature__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 2.6666666667cqw, 20px);
}
@media screen and (min-width: 768px) {
  .p-feature__list {
    gap: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__list {
    gap: clamp(4px, 1.3333333333cqw, 10px);
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-feature__list {
    gap: clamp(4px, 0.9090909091cqw, 15px);
  }
}
.p-feature__item {
  font-weight: 700;
  font-size: clamp(10px, 3.3333333333cqw, 25px);
  line-height: 1;
  padding-inline: clamp(6.4px, 2.1333333333cqw, 16px);
  padding-block: clamp(4px, 1.3333333333cqw, 10px);
  border-radius: clamp(8.8px, 2.9333333333cqw, 22px);
  width: clamp(72.8px, 24.2666666667cqw, 182px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-feature__item {
    font-size: clamp(10px, 2.2727272727cqw, 37.5px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__item {
    padding-inline: clamp(6.4px, 1.4545454545cqw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__item {
    padding-block: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__item {
    border-radius: clamp(8.8px, 2cqw, 33px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__item {
    width: clamp(72.8px, 16.5454545455cqw, 273px);
  }
}
@media screen and (min-width: 768px) {
  .p-feature__item {
    font-size: clamp(7.2px, 2.4cqw, 18px);
    letter-spacing: 0.04em;
    width: clamp(52px, 17.3333333333cqw, 130px);
    padding-block: clamp(3.2px, 1.0666666667cqw, 8px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-feature__item {
    font-size: clamp(7.2px, 1.6363636364cqw, 27px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-feature__item {
    width: clamp(52px, 11.8181818182cqw, 195px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-feature__item {
    padding-block: clamp(3.2px, 0.7272727273cqw, 12px);
  }
}
.p-feature__item:not(.p-feature__item--none) .p-feature__name {
  margin-left: clamp(3.2px, 1.0666666667cqw, 8px);
}
@media screen and (min-width: 768px) {
  .p-feature__item:not(.p-feature__item--none) .p-feature__name {
    margin-left: clamp(3.2px, 0.7272727273cqw, 12px);
  }
}
.p-feature__item--excellent {
  background-color: #d03250;
}
.p-feature__item--good {
  background-color: #ff4632;
}
.p-feature__item--okey {
  background-color: #ff736e;
}
.p-feature__item--none {
  background-color: #ff8a8a;
  padding-inline: 2px;
  letter-spacing: -0.04em;
}
.p-feature__name {
  flex-grow: 1;
  text-align: center;
}

/*--------------------------------------------------------------------------
.p-cta
---------------------------------------------------------------------------*/
.p-cta {
  margin-top: clamp(32px, 10.6666666667cqw, 80px);
}
@media screen and (min-width: 768px) {
  .p-cta {
    margin-top: clamp(32px, 7.2727272727cqw, 120px);
  }
}
@media screen and (min-width: 768px) {
  .p-cta {
    margin-top: 3cqw;
    max-width: 960px;
    margin-inline: auto;
  }
}
.p-cta__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 6.6666666667cqw, 50px);
}
@media screen and (min-width: 768px) {
  .p-cta__list {
    gap: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-cta__item {
  position: relative;
  transition: opacity 0.3s ease;
  border-radius: clamp(16px, 5.3333333333cqw, 40px);
  box-shadow: 0 8px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .p-cta__item {
    border-radius: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__item {
    box-shadow: 0 13px 7px rgba(0, 0, 0, 0.3);
  }
}
.p-cta__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: clamp(3.2px, 1.0666666667cqw, 8px);
}
@media screen and (min-width: 768px) {
  .p-cta__item::after {
    top: clamp(3.2px, 0.7272727273cqw, 12px);
  }
}
.p-cta__item--ec::after {
  background-color: #5a8082;
}
.p-cta__item--ec .p-cta__btn {
  background-color: #78bed2;
}
.p-cta__item--amazon::after {
  background-color: #8b6b35;
}
.p-cta__item--amazon .p-cta__btn {
  background-color: #c28046;
}
.p-cta__item--rakuten::after {
  background-color: #802222;
}
.p-cta__item--rakuten .p-cta__btn {
  background-color: #912d2d;
}
.p-cta__item--yahoo::after {
  background-color: #860226;
}
.p-cta__item--yahoo .p-cta__btn {
  background-color: #bc0233;
}
.p-cta__item:hover {
  opacity: 0.7;
}
.p-cta__btn {
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  line-height: 1.3888888889;
  padding-block: clamp(6px, 2cqw, 15px);
  padding-inline: clamp(8px, 2.6666666667cqw, 20px);
  border-radius: inherit;
  display: block;
  position: relative;
  z-index: 1;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-cta__btn {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__btn {
    padding-block: clamp(6px, 1.3636363636cqw, 22.5px);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__btn {
    padding-inline: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__btn {
    font-size: clamp(9.6px, 3.2cqw, 24px);
    padding-block: clamp(9.2px, 3.0666666667cqw, 23px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__btn {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__btn {
    padding-block: clamp(9.2px, 2.0909090909cqw, 34.5px);
  }
}
.p-cta__note {
  font-weight: 500;
  font-size: clamp(9.6px, 3.2cqw, 24px);
  line-height: 1.5;
  margin-top: clamp(16px, 5.3333333333cqw, 40px);
}
@media screen and (min-width: 768px) {
  .p-cta__note {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__note {
    margin-top: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__note {
    font-size: clamp(6px, 2cqw, 15px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__note {
    font-size: clamp(6px, 1.3636363636cqw, 22.5px);
  }
}

/*--------------------------------------------------------------------------
.p-usage
---------------------------------------------------------------------------*/
.p-usage {
  padding-top: clamp(30px, 10cqw, 75px);
}
@media screen and (min-width: 768px) {
  .p-usage {
    padding-top: clamp(30px, 6.8181818182cqw, 112.5px);
  }
}
.p-usage__title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(20px, 6.6666666667cqw, 50px);
  line-height: 1;
  padding-block: clamp(10px, 3.3333333333cqw, 25px);
  border: 3px solid var(--color-text-main);
  border-left: none;
  border-right: none;
  border-width: clamp(1.2px, 0.4cqw, 3px);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-usage__title {
    font-size: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__title {
    padding-block: clamp(10px, 2.2727272727cqw, 37.5px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__title {
    border-width: clamp(1.2px, 0.2727272727cqw, 4.5px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__title {
    font-size: clamp(14.4px, 4.8cqw, 36px);
    padding-block: clamp(9.6px, 3.2cqw, 24px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__title {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__title {
    padding-block: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
.p-usage__list {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-usage__list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(12px, 4cqw, 30px);
    margin-inline: -40px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__list {
    margin-top: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__list--pc-column2 {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: 0;
  }
}
.p-usage__item {
  display: grid;
  grid-template-columns: 2.15fr 4fr;
  column-gap: clamp(22px, 7.3333333333cqw, 55px);
  padding-block: clamp(10.4px, 3.4666666667cqw, 26px);
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-usage__item {
    column-gap: clamp(22px, 5cqw, 82.5px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__item {
    padding-block: clamp(10.4px, 2.3636363636cqw, 39px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__item {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: clamp(0px, 0cqw, 0px);
    padding-inline: 40px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__item {
    padding-block: clamp(0px, 0cqw, 0px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__item:not(.p-usage__item--pc-flex) {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    align-items: flex-start;
    gap: 16px;
  }
}
.p-usage__item:not(.p-usage__item--pc-flex):not(:last-child) {
  border-bottom: 0.5vw dotted #000000;
}
@media screen and (min-width: 768px) {
  .p-usage__item:not(.p-usage__item--pc-flex):not(:last-child) {
    border: none;
    border-right: 3px dotted #000000;
  }
}
@media screen and (min-width: 768px) {
  .p-usage__item:last-child {
    border-right: 3px dotted transparent;
  }
}
.p-usage__item--pc-flex {
  border-bottom: 0.5vw dotted #000000;
}
@media screen and (min-width: 768px) {
  .p-usage__item--pc-flex {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    border: none;
    border-bottom: 3px dotted #000000;
    position: relative;
    padding-top: clamp(12px, 4cqw, 30px);
    padding-bottom: clamp(16px, 5.3333333333cqw, 40px);
    column-gap: 2%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__item--pc-flex {
    padding-top: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__item--pc-flex {
    padding-bottom: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__item--pc-flex:nth-child(2n-1) {
    padding-left: 0;
  }
  .p-usage__item--pc-flex:nth-child(2n-1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0%;
    height: 80%;
    width: 3px;
    border-right: 3px dotted #000000;
  }
  .p-usage__item--pc-flex:nth-child(2n) {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-usage__icon {
    width: 78%;
    margin-inline: auto;
    aspect-ratio: 240/160;
  }
}
@media screen and (min-width: 768px) {
  .p-usage__icon img {
    height: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
.p-usage__name {
  color: var(--color-text-main);
  font-weight: 700;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  line-height: 1;
  margin-bottom: clamp(6.4px, 2.1333333333cqw, 16px);
}
@media screen and (min-width: 768px) {
  .p-usage__name {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__name {
    margin-bottom: clamp(6.4px, 1.4545454545cqw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__name {
    margin-top: clamp(4px, 1.3333333333cqw, 10px);
    margin-bottom: clamp(8px, 2.6666666667cqw, 20px);
    font-size: clamp(9.6px, 3.2cqw, 24px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__name {
    margin-top: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__name {
    margin-bottom: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__name {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
.p-usage__description {
  font-weight: 500;
  font-size: clamp(12px, 4cqw, 30px);
  line-height: 1.5333333333;
}
@media screen and (min-width: 768px) {
  .p-usage__description {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage__description {
    font-size: clamp(7.2px, 2.4cqw, 18px);
    line-height: 1.6666666667;
    letter-spacing: 0.04em;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-usage__description {
    font-size: clamp(7.2px, 1.6363636364cqw, 27px);
  }
}
@media screen and (min-width: 768px) {
  .p-usage .p-usage__item--pc-flex .p-usage__name {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .p-usage .p-usage__item--pc-flex .p-usage__textarea {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .p-usage .p-usage__item--pc-flex .p-usage__icon {
    width: 28%;
  }
}

@media screen and (min-width: 768px) {
  .p-product--b .p-usage__icon {
    width: 54%;
    margin-inline: auto;
  }
}

/*--------------------------------------------------------------------------
.p-point
---------------------------------------------------------------------------*/
.p-point {
  padding-top: clamp(52px, 17.3333333333cqw, 130px);
}
@media screen and (min-width: 768px) {
  .p-point {
    padding-top: clamp(52px, 11.8181818182cqw, 195px);
  }
}
@media screen and (min-width: 768px) {
  .p-point {
    padding-top: clamp(46.8px, 15.6cqw, 117px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point {
    padding-top: clamp(46.8px, 10.6363636364cqw, 175.5px);
  }
}
.p-point__title-block {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-point__title-block {
    width: 88%;
    margin-inline: auto;
  }
}
.p-point__title-block::after {
  content: "";
  display: block;
  width: calc(100% - 3px);
  height: 100%;
  background-color: #FFFFFF;
  position: absolute;
  top: 4%;
  left: 3px;
  border-radius: clamp(24px, 8cqw, 60px);
}
@media screen and (min-width: 768px) {
  .p-point__title-block::after {
    border-radius: clamp(24px, 5.4545454545cqw, 90px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__title-block::after {
    top: 6px;
    left: 6px;
  }
}
.p-point__subtitle {
  position: absolute;
  color: var(--color-on-bg);
  background-color: var(--color-main);
  text-align: center;
  font-weight: 700;
  font-size: clamp(12px, 4cqw, 30px);
  line-height: 1;
  letter-spacing: 0.06em;
  border-radius: clamp(4px, 1.3333333333cqw, 10px);
  padding-block: clamp(4px, 1.3333333333cqw, 10px);
  padding-inline: clamp(18.4px, 6.1333333333cqw, 46px);
  top: -29%;
  left: 6%;
  transform: rotate(-6deg);
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-point__subtitle {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__subtitle {
    border-radius: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__subtitle {
    padding-block: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__subtitle {
    padding-inline: clamp(18.4px, 4.1818181818cqw, 69px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__subtitle {
    top: -19%;
    left: 2%;
    letter-spacing: 0.06em;
  }
}
.p-point__subtitle-pointer {
  width: clamp(18.4px, 6.1333333333cqw, 46px);
  height: clamp(16px, 5.3333333333cqw, 40px);
  clip-path: polygon(80% 0, 0 0, 100% 64%);
  background-color: var(--color-main);
  position: absolute;
  top: -1%;
  left: 39%;
  transform: translateX(-50%) rotate(-6deg);
  z-index: 2;
  rotate: -5deg;
}
@media screen and (min-width: 768px) {
  .p-point__subtitle-pointer {
    width: clamp(18.4px, 4.1818181818cqw, 69px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__subtitle-pointer {
    height: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__subtitle-pointer {
    clip-path: polygon(70% 0, 0 0, 100% 67%);
    top: 19%;
    left: 25%;
  }
}
.p-point__title {
  color: var(--color-text-main);
  display: block;
  border-radius: clamp(24px, 8cqw, 60px);
  padding: clamp(13.6px, 4.5333333333cqw, 34px);
  font-weight: 700;
  font-size: clamp(20px, 6.6666666667cqw, 50px);
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 2px solid var(--color-text-main);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-point__title {
    border-radius: clamp(24px, 5.4545454545cqw, 90px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__title {
    padding: clamp(13.6px, 3.0909090909cqw, 51px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__title {
    font-size: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__title {
    font-size: clamp(14.4px, 4.8cqw, 36px);
    padding: clamp(10px, 3.3333333333cqw, 25px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__title {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__title {
    padding: clamp(10px, 2.2727272727cqw, 37.5px);
  }
}
.p-point__title::after {
  content: "";
  display: block;
  width: 10px;
  height: 4px;
  background-color: #FFFFFF;
  position: absolute;
  top: 98%;
  right: 8%;
}
@media screen and (min-width: 768px) {
  .p-point__title::after {
    right: 4%;
  }
}
.p-point__list {
  margin-inline: calc(50% - 50vw);
  background-color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 9.3333333333cqw, 70px);
  padding-inline: clamp(12px, 4cqw, 30px);
  padding-top: clamp(40px, 13.3333333333cqw, 100px);
  padding-bottom: clamp(32px, 10.6666666667cqw, 80px);
  margin-top: -8svw;
}
@media screen and (min-width: 768px) {
  .p-point__list {
    gap: clamp(28px, 6.3636363636cqw, 105px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__list {
    padding-inline: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__list {
    padding-top: clamp(40px, 9.0909090909cqw, 150px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__list {
    padding-bottom: clamp(32px, 7.2727272727cqw, 120px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 5.3333333333cqw, 40px);
    margin-inline: 0;
    margin-top: max(-4svw, -60px);
    padding-inline: clamp(28px, 9.3333333333cqw, 70px);
    border-radius: clamp(8px, 2.6666666667cqw, 20px);
    padding-top: clamp(48px, 16cqw, 120px);
    padding-bottom: clamp(28px, 9.3333333333cqw, 70px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__list {
    gap: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__list {
    padding-inline: clamp(28px, 6.3636363636cqw, 105px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__list {
    border-radius: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__list {
    padding-top: clamp(48px, 10.9090909091cqw, 180px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__list {
    padding-bottom: clamp(28px, 6.3636363636cqw, 105px);
  }
}
.p-point__item-title-block {
  display: flex;
  column-gap: clamp(8px, 2.6666666667cqw, 20px);
}
@media screen and (min-width: 768px) {
  .p-point__item-title-block {
    column-gap: clamp(8px, 1.8181818182cqw, 30px);
  }
}
.p-point__item-label {
  width: clamp(40px, 13.3333333333cqw, 100px);
  height: clamp(60px, 20cqw, 150px);
  aspect-ratio: 100/150;
  background: url(../../assets/img/top/point-ribbon-a.svg) no-repeat center/contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: clamp(12px, 4cqw, 30px);
  font-family: "Source Sans 3", sans-serif;
  text-align: center;
  font-weight: 500;
  color: var(--color-on-bg);
}
@media screen and (min-width: 768px) {
  .p-point__item-label {
    width: clamp(40px, 9.0909090909cqw, 150px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-label {
    height: clamp(60px, 13.6363636364cqw, 225px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-label {
    padding-bottom: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-label {
    padding-bottom: clamp(9.6px, 3.2cqw, 24px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__item-label {
    padding-bottom: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
.p-point__item-label-en {
  font-size: clamp(9.6px, 3.2cqw, 24px);
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-point__item-label-en {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
.p-point__item-label-num {
  font-size: clamp(21.6px, 7.2cqw, 54px);
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-point__item-label-num {
    font-size: clamp(21.6px, 4.9090909091cqw, 81px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-label-num {
    line-height: 1;
  }
}
.p-point__item-title {
  flex-grow: 1;
}
.p-point__item-catch {
  color: var(--color-text-main);
  font-weight: 700;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  line-height: 1.3888888889;
  letter-spacing: 0.1em;
  padding-bottom: clamp(2.4px, 0.8cqw, 6px);
  border-bottom: 2px dotted var(--color-text-main);
  margin-bottom: clamp(2.4px, 0.8cqw, 6px);
}
@media screen and (min-width: 768px) {
  .p-point__item-catch {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-catch {
    padding-bottom: clamp(2.4px, 0.5454545455cqw, 9px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-catch {
    margin-bottom: clamp(2.4px, 0.5454545455cqw, 9px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-catch {
    font-size: clamp(12px, 4cqw, 30px);
    border-bottom: 4px dotted var(--color-text-main);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__item-catch {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
.p-point__item-description {
  font-weight: 700;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  line-height: 1.3888888889;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-point__item-description {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-description {
    font-size: clamp(12px, 4cqw, 30px);
    line-height: 1.4666666667;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__item-description {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
.p-point__item-img {
  margin-top: clamp(16px, 5.3333333333cqw, 40px);
  margin-bottom: clamp(8px, 2.6666666667cqw, 20px);
}
@media screen and (min-width: 768px) {
  .p-point__item-img {
    margin-top: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-img {
    margin-bottom: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-img {
    margin-top: clamp(8px, 2.6666666667cqw, 20px);
    margin-bottom: clamp(5.6px, 1.8666666667cqw, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__item-img {
    margin-top: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__item-img {
    margin-bottom: clamp(5.6px, 1.2727272727cqw, 21px);
  }
}
.p-point__item-note {
  font-weight: 500;
  font-size: clamp(12px, 4cqw, 30px);
  line-height: 1.5333333333;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .p-point__item-note {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-point__item-note {
    font-size: clamp(7.2px, 2.4cqw, 18px);
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-point__item-note {
    font-size: clamp(7.2px, 1.6363636364cqw, 27px);
  }
}

.p-product--b .p-point__item-label {
  background: url(../../assets/img/top/point-ribbon-b.svg) no-repeat center/contain;
}

.p-product--c .p-point__item-label {
  background: url(../../assets/img/top/point-ribbon-c.svg) no-repeat center/contain;
}

.p-product--d .p-point__item-label {
  background: url(../../assets/img/top/point-ribbon-d.svg) no-repeat center/contain;
}

/*--------------------------------------------------------------------------
.p-lineup
---------------------------------------------------------------------------*/
.p-lineup {
  margin-inline: calc(50% - 50svw);
  padding-inline: clamp(12px, 4cqw, 30px);
  padding-top: clamp(8px, 2.6666666667cqw, 20px);
  padding-bottom: clamp(88px, 29.3333333333cqw, 220px);
  background-image: var(--color-bg-gradient);
  overflow: hidden;
  /*----------------------------------------------------------------------
  スライダー
  -----------------------------------------------------------------------*/
  /* スライダーなし商品リスト */
}
@media screen and (min-width: 768px) {
  .p-lineup {
    padding-inline: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup {
    padding-top: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup {
    padding-bottom: clamp(88px, 20cqw, 330px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup {
    padding-top: clamp(52px, 17.3333333333cqw, 130px);
    padding-inline: 5%;
    padding-bottom: 29cqw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup {
    padding-top: clamp(52px, 11.8181818182cqw, 195px);
  }
}
.p-lineup--d {
  padding-bottom: clamp(30.4px, 10.1333333333cqw, 76px);
}
@media screen and (min-width: 768px) {
  .p-lineup--d {
    padding-bottom: clamp(30.4px, 6.9090909091cqw, 114px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup--d {
    padding-bottom: clamp(48px, 16cqw, 120px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup--d {
    padding-bottom: clamp(48px, 10.9090909091cqw, 180px);
  }
}
.p-lineup__title {
  color: var(--color-text-main);
  text-align: center;
  font-weight: 700;
  font-size: clamp(20px, 6.6666666667cqw, 50px);
  line-height: 1.4;
  padding-bottom: clamp(8px, 2.6666666667cqw, 20px);
  margin-bottom: clamp(16px, 5.3333333333cqw, 40px);
  border-bottom: 2px solid var(--color-text-main);
}
@media screen and (min-width: 768px) {
  .p-lineup__title {
    font-size: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__title {
    padding-bottom: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__title {
    margin-bottom: clamp(16px, 3.6363636364cqw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__title {
    font-size: clamp(14.4px, 4.8cqw, 36px);
    line-height: 1;
    padding-bottom: clamp(16px, 5.3333333333cqw, 40px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup__title {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup__title {
    padding-bottom: clamp(16px, 3.6363636364cqw, 60px);
  }
}
.p-lineup__pickup {
  display: grid;
  grid-template-columns: 2.2fr 4fr;
  column-gap: clamp(14.4px, 4.8cqw, 36px);
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup {
    column-gap: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup {
    grid-template-columns: 2.4fr 3.6fr;
    width: clamp(256px, 85.3333333333cqw, 640px);
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup__pickup {
    width: clamp(256px, 58.1818181818cqw, 960px);
  }
}
.p-lineup__pickup-img a {
  display: block;
  transition: opacity 0.3s ease;
}
.p-lineup__pickup-img a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-content {
    padding-bottom: 5cqw;
  }
}
.p-lineup__pickup-title {
  background-color: #FFFFFF;
  color: var(--color-text-main);
  font-weight: 700;
  font-size: clamp(11.6px, 3.8666666667cqw, 29px);
  line-height: 1.724137931;
  letter-spacing: -0.06em;
  padding-block: clamp(4px, 1.3333333333cqw, 10px);
  padding-inline: clamp(1.6px, 0.5333333333cqw, 4px);
  margin-bottom: clamp(4px, 1.3333333333cqw, 10px);
  border-bottom: 2px solid var(--color-text-main);
  position: relative;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-title {
    font-size: clamp(11.6px, 2.6363636364cqw, 43.5px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-title {
    padding-block: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-title {
    padding-inline: clamp(1.6px, 0.3636363636cqw, 6px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-title {
    margin-bottom: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-title {
    padding-block: clamp(4px, 1.3333333333cqw, 10px);
    font-size: clamp(9.6px, 3.2cqw, 24px);
    margin-bottom: clamp(10px, 3.3333333333cqw, 25px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup__pickup-title {
    padding-block: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup__pickup-title {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup__pickup-title {
    margin-bottom: clamp(10px, 2.2727272727cqw, 37.5px);
  }
}
.p-lineup__pickup-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(4.8px, 1.6cqw, 12px);
  height: clamp(4.8px, 1.6cqw, 12px);
  background-color: #FFFFFF;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-title::after {
    width: clamp(4.8px, 1.0909090909cqw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-title::after {
    height: clamp(4.8px, 1.0909090909cqw, 18px);
  }
}
.p-lineup__pickup-title::before {
  content: "";
  width: 2px;
  height: clamp(5.6px, 1.8666666667cqw, 14px);
  background-color: var(--color-text-main);
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-41%);
  rotate: 45deg;
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-title::before {
    height: clamp(5.6px, 1.2727272727cqw, 21px);
  }
}
.p-lineup__pickup-description {
  display: block;
  font-weight: 500;
  font-size: clamp(12px, 4cqw, 30px);
  line-height: 1.5333333333;
  letter-spacing: -0.04em;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-description {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__pickup-description {
    font-size: clamp(8.8px, 2.9333333333cqw, 22px);
    line-height: 1.6363636364;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup__pickup-description {
    font-size: clamp(8.8px, 2cqw, 33px);
  }
}
.p-lineup a.p-lineup__pickup-description:hover {
  opacity: 0.7;
}
.p-lineup__slider {
  margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-lineup__slider-item.slide-hide-for-pc {
    display: none;
  }
}
.p-lineup__slider-item a, .p-lineup__list-item a {
  display: block;
  transition: opacity 0.3s ease;
}
.p-lineup__slider-item a:hover, .p-lineup__list-item a:hover {
  opacity: 0.7;
}
.p-lineup__list-img {
  aspect-ratio: 1/1;
}
.p-lineup__list-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-lineup__list-name {
  font-weight: 500;
  font-size: clamp(12px, 4cqw, 30px);
  line-height: 1.5333333333;
  margin-top: clamp(8px, 2.6666666667cqw, 20px);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lineup__list-name {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__list-name {
    margin-top: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__list-name {
    font-size: clamp(8.8px, 2.9333333333cqw, 22px);
    line-height: 1.6363636364;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup__list-name {
    font-size: clamp(8.8px, 2cqw, 33px);
  }
}
.p-lineup .swiper-button-next, .p-lineup .swiper-button-prev {
  background: #FFFFFF;
  border-radius: 50%;
  width: clamp(40px, 13.3333333333cqw, 100px);
  height: clamp(40px, 13.3333333333cqw, 100px);
  padding: clamp(8px, 2.6666666667cqw, 20px);
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-lineup .swiper-button-next, .p-lineup .swiper-button-prev {
    width: clamp(40px, 9.0909090909cqw, 150px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup .swiper-button-next, .p-lineup .swiper-button-prev {
    height: clamp(40px, 9.0909090909cqw, 150px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup .swiper-button-next, .p-lineup .swiper-button-prev {
    padding: clamp(8px, 1.8181818182cqw, 30px);
  }
}
.p-lineup .swiper-button-next:hover, .p-lineup .swiper-button-prev:hover {
  opacity: 0.7;
}
.p-lineup .swiper-button-next svg, .p-lineup .swiper-button-prev svg {
  fill: var(--color-main);
  width: 80%;
  height: 80%;
  margin-left: 8%;
  background: url(../../assets/img/top/slider-arrow-a.svg) no-repeat center/contain;
}
.p-lineup .swiper-button-next svg path, .p-lineup .swiper-button-prev svg path {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lineup :is(.p-lineup__slider--b, .p-lineup__slider--c) .p-lineup__slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 980px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup :is(.p-lineup__slider--b, .p-lineup__slider--c) .swiper-button-next, .p-lineup :is(.p-lineup__slider--b, .p-lineup__slider--c) .swiper-button-prev {
    display: none;
  }
}
.p-lineup :is(.p-lineup__slider--b, .p-lineup__slider--c) .swiper-button-next svg, .p-lineup :is(.p-lineup__slider--b, .p-lineup__slider--c) .swiper-button-prev svg {
  background: url(../../assets/img/top/slider-arrow-b.svg) no-repeat center/contain;
}
.p-lineup :is(.p-lineup__slider--d) .swiper-button-next svg, .p-lineup :is(.p-lineup__slider--d) .swiper-button-prev svg {
  background: url(../../assets/img/top/slider-arrow-d.svg) no-repeat center/contain;
}
.p-lineup .swiper-button-prev {
  left: clamp(12px, 4cqw, 30px);
}
@media screen and (min-width: 768px) {
  .p-lineup .swiper-button-prev {
    left: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup .swiper-button-prev {
    left: clamp(26px, 8.6666666667cqw, 65px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup .swiper-button-prev {
    left: clamp(26px, 5.9090909091cqw, 97.5px);
  }
}
.p-lineup .swiper-button-prev svg {
  margin-left: -8%;
}
.p-lineup .swiper-button-next {
  right: clamp(12px, 4cqw, 30px);
}
@media screen and (min-width: 768px) {
  .p-lineup .swiper-button-next {
    right: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup .swiper-button-next {
    right: clamp(26px, 8.6666666667cqw, 65px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup .swiper-button-next {
    right: clamp(26px, 5.9090909091cqw, 97.5px);
  }
}
.p-lineup__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(12px, 4cqw, 30px);
}
@media screen and (min-width: 768px) {
  .p-lineup__list {
    margin-top: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__list {
    width: clamp(268px, 89.3333333333cqw, 670px);
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-lineup__list {
    width: clamp(268px, 60.9090909091cqw, 1005px);
  }
}

/*--------------------------------------------------------------------------
.p-faq
---------------------------------------------------------------------------*/
.p-faq {
  background-color: #ffe0d4;
}
.p-faq__category:not(:first-child) {
  margin-top: clamp(24px, 8cqw, 60px);
}
@media screen and (min-width: 768px) {
  .p-faq__category:not(:first-child) {
    margin-top: clamp(24px, 5.4545454545cqw, 90px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq__category:not(:first-child) {
    margin-top: clamp(28px, 9.3333333333cqw, 70px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__category:not(:first-child) {
    margin-top: clamp(28px, 6.3636363636cqw, 105px);
  }
}

.p-faq-subtitle {
  position: relative;
  margin-bottom: clamp(9.6px, 3.2cqw, 24px);
}
@media screen and (min-width: 768px) {
  .p-faq-subtitle {
    margin-bottom: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
.p-faq-subtitle::after {
  content: "";
  display: block;
  width: 100%;
  height: clamp(0.8px, 0.2666666667cqw, 2px);
  background-color: #005787;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-faq-subtitle::after {
    height: clamp(0.8px, 0.1818181818cqw, 3px);
  }
}
.p-faq-subtitle span {
  position: relative;
  z-index: 1;
  background-color: #ffe0d4;
  color: #005787;
  font-weight: 700;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 8px;
}
@media screen and (min-width: 768px) {
  .p-faq-subtitle span {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.p-faq-item {
  background-color: #FFFFFF;
}
.p-faq-item__btn {
  width: 100%;
  text-align: left;
  color: #005787;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  padding-block: clamp(8px, 2.6666666667cqw, 20px);
  padding-inline: clamp(12px, 4cqw, 30px);
  column-gap: clamp(8px, 2.6666666667cqw, 20px);
  transition: color 0.2s, background 0.2s;
}
@media screen and (min-width: 768px) {
  .p-faq-item__btn {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__btn {
    padding-block: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__btn {
    padding-inline: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__btn {
    column-gap: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__btn {
    font-size: clamp(8.8px, 2.9333333333cqw, 22px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq-item__btn {
    font-size: clamp(8.8px, 2cqw, 33px);
  }
}
.p-faq-item__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: clamp(20px, 6.6666666667cqw, 50px);
  height: clamp(20px, 6.6666666667cqw, 50px);
  font-size: clamp(14.4px, 4.8cqw, 36px);
  background-color: #005787;
  color: #FFFFFF;
  border-radius: 50%;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.3888888889;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-faq-item__label {
    width: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__label {
    height: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__label {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
.p-faq-item__question {
  flex-grow: 1;
}
.p-faq-item__icon {
  position: relative;
  flex-shrink: 0;
}
.p-faq-item__icon::before, .p-faq-item__icon::after {
  content: "";
  display: block;
  background-color: #005787;
  width: clamp(12px, 4cqw, 30px);
  height: 2px;
  transition: rotate 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-faq-item__icon::before, .p-faq-item__icon::after {
    width: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__icon::before, .p-faq-item__icon::after {
    height: 4px;
  }
}
.p-faq-item__icon::after {
  margin-top: -2px;
  rotate: 90deg;
}
@media screen and (min-width: 768px) {
  .p-faq-item__icon::after {
    margin-top: -4px;
  }
}
.p-faq-item .p-faq-item__btn:hover {
  background: #005787;
  color: #FFFFFF;
  opacity: 1;
}
.p-faq-item .p-faq-item__btn:hover .p-faq-item__icon::before, .p-faq-item .p-faq-item__btn:hover .p-faq-item__icon::after {
  background-color: #FFFFFF;
}
.p-faq-item .p-faq-item__btn:hover .p-faq-item__label {
  color: #005787;
  background-color: #FFFFFF;
}
.p-faq-item .p-faq-item__btn.is-open {
  background: #005787;
  color: #FFFFFF;
}
.p-faq-item .p-faq-item__btn.is-open .p-faq-item__icon::before {
  rotate: 180deg;
  background-color: #FFFFFF;
}
.p-faq-item .p-faq-item__btn.is-open .p-faq-item__icon::after {
  rotate: 180deg;
  background-color: #FFFFFF;
}
.p-faq-item .p-faq-item__btn.is-open .p-faq-item__label {
  color: #005787;
  background-color: #FFFFFF;
}
.p-faq-item__content {
  color: #000000;
  font-weight: 500;
  font-size: clamp(12px, 4cqw, 30px);
  padding-block: clamp(8px, 2.6666666667cqw, 20px);
  padding-inline: clamp(40px, 13.3333333333cqw, 100px);
  line-height: 1.5333333333;
}
@media screen and (min-width: 768px) {
  .p-faq-item__content {
    font-size: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__content {
    padding-block: clamp(8px, 1.8181818182cqw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__content {
    padding-inline: clamp(40px, 9.0909090909cqw, 150px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__content {
    font-size: clamp(7.2px, 2.4cqw, 18px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq-item__content {
    font-size: clamp(7.2px, 1.6363636364cqw, 27px);
  }
}
.p-faq-item__note {
  font-size: clamp(9.6px, 3.2cqw, 24px);
}
@media screen and (min-width: 768px) {
  .p-faq-item__note {
    font-size: clamp(9.6px, 2.1818181818cqw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .p-faq-item__note {
    font-size: clamp(6px, 2cqw, 15px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq-item__note {
    font-size: clamp(6px, 1.3636363636cqw, 22.5px);
  }
}

/*--------------------------------------------------------------------------
.p-recommend
---------------------------------------------------------------------------*/
.p-recommend {
  background-color: #e8f6ee;
  position: relative;
  padding-top: clamp(76px, 25.3333333333cqw, 190px);
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .p-recommend {
    padding-top: clamp(76px, 17.2727272727cqw, 285px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend {
    padding-top: clamp(88px, 29.3333333333cqw, 220px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-recommend {
    padding-top: clamp(88px, 20cqw, 330px);
  }
}
.p-recommend::before {
  content: "";
  display: block;
  position: absolute;
  width: 100svw;
  height: clamp(48px, 16cqw, 120px);
  top: 0;
  left: 0;
  background: url(../../assets/img/top/howto-section-line.svg) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-recommend::before {
    height: clamp(48px, 10.9090909091cqw, 180px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend::before {
    height: 13cqw;
    background: url(../../assets/img/top/howto-section-line-pc.svg) no-repeat center/cover;
  }
}
.p-recommend__title-marks {
  margin-bottom: clamp(6.4px, 2.1333333333cqw, 16px);
}
@media screen and (min-width: 768px) {
  .p-recommend__title-marks {
    margin-bottom: clamp(6.4px, 1.4545454545cqw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend__title-marks {
    margin-bottom: clamp(8px, 2.6666666667cqw, 20px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-recommend__title-marks {
    margin-bottom: clamp(8px, 1.8181818182cqw, 30px);
  }
}
.p-recommend__subtitle {
  font-weight: 700;
  font-size: clamp(14.4px, 4.8cqw, 36px);
  text-align: center;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .p-recommend__subtitle {
    font-size: clamp(14.4px, 3.2727272727cqw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend__subtitle {
    margin-bottom: 10px;
  }
}
.p-recommend__title {
  width: fit-content;
  margin: 0 auto;
  font-weight: 700;
  text-align: center;
  color: #FFFFFF;
  background-color: #005787;
  font-size: clamp(20px, 6.6666666667cqw, 50px);
  line-height: 1.4;
  position: relative;
  padding: clamp(5.2px, 1.7333333333cqw, 13px);
  margin-bottom: clamp(26.4px, 8.8cqw, 66px);
  width: clamp(192px, 64cqw, 480px);
}
@media screen and (min-width: 768px) {
  .p-recommend__title {
    font-size: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend__title {
    padding: clamp(5.2px, 1.1818181818cqw, 19.5px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend__title {
    margin-bottom: clamp(26.4px, 6cqw, 99px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend__title {
    width: clamp(192px, 43.6363636364cqw, 720px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend__title {
    padding-inline: clamp(4px, 1.3333333333cqw, 10px);
    padding-block: clamp(12px, 4cqw, 30px);
    margin-bottom: clamp(60px, 20cqw, 150px);
    width: 69%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-recommend__title {
    padding-inline: clamp(4px, 0.9090909091cqw, 15px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-recommend__title {
    padding-block: clamp(12px, 2.7272727273cqw, 45px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-recommend__title {
    margin-bottom: clamp(60px, 13.6363636364cqw, 225px);
  }
}
.p-recommend__title::before, .p-recommend__title::after {
  content: "";
  display: block;
  width: clamp(36px, 12cqw, 90px);
  height: 100%;
  background: url(../../assets/img/top/title-ribbon.svg) no-repeat center/contain;
  position: absolute;
  top: clamp(20px, 6.6666666667cqw, 50px);
}
@media screen and (min-width: 768px) {
  .p-recommend__title::before, .p-recommend__title::after {
    width: clamp(36px, 8.1818181818cqw, 135px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend__title::before, .p-recommend__title::after {
    top: clamp(20px, 4.5454545455cqw, 75px);
  }
}
@media screen and (min-width: 768px) {
  .p-recommend__title::before, .p-recommend__title::after {
    background: url(../../assets/img/top/title-ribbon-pc.svg) no-repeat center/contain;
    width: clamp(46px, 15.3333333333cqw, 115px);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-recommend__title::before, .p-recommend__title::after {
    width: clamp(46px, 10.4545454545cqw, 172.5px);
  }
}
.p-recommend__title::before {
  left: -21%;
  transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
  .p-recommend__title::before {
    left: -17%;
  }
}
.p-recommend__title::after {
  right: -21%;
}
@media screen and (min-width: 768px) {
  .p-recommend__title::after {
    right: -17%;
  }
}
.p-recommend__title-line {
  position: absolute;
  width: 100%;
  bottom: -8%;
  left: 0;
  height: clamp(1.2px, 0.4cqw, 3px);
  background-color: #005787;
}
@media screen and (min-width: 768px) {
  .p-recommend__title-line {
    height: clamp(1.2px, 0.2727272727cqw, 4.5px);
  }
}

/*--------------------------------------------------------------------------
  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;
}

/* Letter Spacing */
.letter-minus05 {
  letter-spacing: -0.05em !important;
}

.letter-minus04 {
  letter-spacing: -0.04em !important;
}

.letter-minus02 {
  letter-spacing: -0.02em !important;
}

.letter-0 {
  letter-spacing: 0em !important;
}

.letter-04 {
  letter-spacing: 0.04em !important;
}

.letter-05 {
  letter-spacing: 0.05em !important;
}

.letter-10 {
  letter-spacing: 0.1em !important;
}

.letter-20 {
  letter-spacing: 0.2em !important;
}/*# sourceMappingURL=style.css.map */