@charset "UTF-8";
:root {
  --color-orange: #ffa454;
  --color-blue: #307ef3;
  --bg-color: #fce3cf;
}

body {
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

body.active {
  overflow: hidden;
}

.p-header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 100;
  top: 0;
}

.p-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px;
}

@media screen and (max-width: 768px) {
  .p-header__wrapper {
    padding: 10px 20px;
  }
}

.p-header__logo-box {
  width: 15vw;
  max-width: 293px;
  min-width: 180px;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .p-header__logo-box {
    position: relative;
    z-index: 101;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  .p-header__nav-list {
    display: none;
  }
  .p-header__nav-list.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 100;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-header__nav-item {
  margin-left: clamp(1rem, calc(-0.071rem + 1.67vw), 2rem);
}

@media screen and (max-width: 1024px) {
  .p-header__nav-item {
    margin-bottom: 20px;
    margin-left: 0;
  }
}

.p-header__nav-item-cta {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__link {
  display: inline-block;
  font-size: clamp(0.688rem, calc(-0.183rem + 1.36vw), 1.5rem);
}

@media screen and (max-width: 768px) {
  .p-header__link {
    font-size: 15px;
  }
}

.p-header__link-btn {
  line-height: 2.25;
  padding: 0 clamp(10px, calc(-1.429px + 1.116vw), 20px);
  color: #fff;
  border-radius: clamp(6px, calc(1.429px + 0.446vw), 10px);
}

@media screen and (max-width: 1024px) {
  .p-header__link-btn {
    padding: 0 20px;
    border-radius: 10px;
  }
}

.p-header__link-btn--orange {
  background-color: var(--color-orange);
}

.p-header__link-btn--blue {
  background-color: #5e98f0;
}

.openbtn7 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  background: #949494;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: none;
}

@media screen and (max-width: 1024px) {
  .openbtn7 {
    display: block;
    z-index: 100;
  }
}

/*ボタン内側*/
.openbtn7 .openbtn-area {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.openbtn7 span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn7 span:nth-of-type(1) {
  top: 15px;
}

.openbtn7 span:nth-of-type(2) {
  top: 23px;
}

.openbtn7 span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/
.openbtn7.active .openbtn-area {
  -webkit-transform: rotateY(-360deg);
          transform: rotateY(-360deg);
}

.openbtn7.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.openbtn7.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn7.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(135deg);
          transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

.p-mv__wrapper {
  background-image: url("../img/mv.png");
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 120px;
  padding-bottom: 60px;
  margin-top: 83.38px;
}

@media screen and (max-width: 768px) {
  .p-mv__wrapper {
    height: calc(100vh - 70px);
    margin-top: 70px;
    padding-bottom: 0;
    padding-top: 0;
  }
}

@media screen and (min-width: 460px) and (max-height: 800px) {
  .p-mv__wrapper {
    height: auto;
  }
}

.p-mv__medal-container {
  position: absolute;
  top: 40px;
  right: 60px;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 1024px) {
  .p-mv__medal-container {
    top: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-mv__medal-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (max-width: 380px) {
  .p-mv__medal-container {
    gap: 10px;
  }
}

.p-mv__medal-box {
  max-width: 200px;
  width: 12.5vw;
  min-width: 120px;
}

@media screen and (max-width: 768px) {
  .p-mv__medal-box {
    max-width: 120px;
    width: 12.5vw;
    min-width: 80px;
  }
}

@media screen and (max-width: 768px) and (max-width: 380px) {
  .p-mv__medal-box {
    max-width: 80px;
    width: 12.5vw;
    min-width: 70px;
  }
}

.p-mv__bubble {
  max-width: 150px;
  width: 9.375vw;
  min-width: 120px;
}

@media screen and (max-width: 768px) {
  .p-mv__bubble {
    min-width: 80px;
  }
}

@media screen and (max-width: 380px) {
  .p-mv__bubble {
    min-width: 60px;
  }
}

.p-mv__bubble-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .p-mv__bubble-box {
    gap: 16px;
  }
}

@media screen and (max-width: 380px) {
  .p-mv__bubble-box {
    margin-top: 20px;
  }
}

.p-mv__heading-box {
  margin-bottom: 56px;
}

@media screen and (max-width: 768px) {
  .p-mv__heading-box {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 380px) {
  .p-mv__heading-box {
    margin-bottom: 20px;
  }
}

.p-mv__heading {
  color: #fff;
  font-size: clamp(22px, calc(2px + 2vw), 40px);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-mv__heading {
    font-size: 22px;
  }
}

.p-mv__logo-box {
  width: 38vw;
  max-width: 610px;
  margin-bottom: 42px;
}

@media screen and (max-width: 768px) {
  .p-mv__logo-box {
    width: 80vw;
    max-width: 400px;
    min-width: 300px;
    margin-bottom: 20px;
  }
}

.p-mv__ribbon-box {
  background-image: url("../img/ribbon.png");
  background-size: cover;
  background-position: center;
  margin-bottom: 58px;
  width: 450px;
  aspect-ratio: 560/74;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (max-width: 768px) {
  .p-mv__ribbon-box {
    margin-bottom: 40px;
    width: 80vw;
    max-width: 400px;
    min-width: 300px;
  }
}

@media screen and (max-width: 380px) {
  .p-mv__ribbon-box {
    margin-bottom: 20px;
  }
}

.p-mv__ribbon-text {
  width: 100%;
  color: #fff;
  font-size: clamp(20px, calc(13.333px + 0.667vw), 26px);
  line-height: 2.375;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-mv__button-text {
  text-align: center;
  color: #fff;
  font-size: clamp(20px, calc(13.333px + 0.667vw), 26px);
  margin-bottom: 10px;
}

.p-mv__button-wrapper,
.p-cta__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-mv__button-box,
.p-cta__button-box {
  border-radius: 20px;
  background-color: var(--color-orange);
  position: relative;
  width: 30vw;
  max-width: 500px;
  min-width: 440px;
}

@media screen and (max-width: 768px) {
  .p-mv__button-box,
  .p-cta__button-box {
    width: 80vw;
    max-width: 400px;
    min-width: 320px;
  }
}

.p-mv__button-box:before,
.p-cta__button-box:before {
  content: "▶︎";
  display: block;
  color: #fff;
  font-size: clamp(20px, calc(-0.282px + 1.69vw), 32px);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-mv__button,
.p-cta__button {
  font-size: clamp(26px, calc(8.222px + 1.778vw), 42px);
  display: inline-block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-mv__button,
  .p-cta__button {
    font-size: 20px;
  }
}

.p-mv__button span,
.p-cta__button span {
  font-size: 0.8em;
  width: 100%;
  text-align: center;
}

.p-mv__button--free,
.p-cta__button--free {
  padding: 0.5em 0;
}

.p-attention__heading-box,
.p-solution__heading-box,
.p-reason__heading-box,
.p-able__heading-box,
.p-voice__heading-box,
.p-graph__heading-box,
.p-price__heading-box,
.p-flow__heading-box,
.p-cta__heading-box,
.p-ask__heading-box,
.p-contact__heading-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-attention__heading,
.p-solution__heading,
.p-reason__heading,
.p-able__heading,
.p-voice__heading,
.p-graph__heading,
.p-price__heading,
.p-flow__heading,
.p-cta__heading,
.p-ask__heading,
.p-contact__heading {
  font-size: clamp(32px, calc(5.333px + 2.667vw), 56px);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-attention__heading,
  .p-solution__heading,
  .p-reason__heading,
  .p-able__heading,
  .p-voice__heading,
  .p-graph__heading,
  .p-price__heading,
  .p-flow__heading,
  .p-cta__heading,
  .p-ask__heading,
  .p-contact__heading {
    font-size: 24px;
  }
}

.p-attention {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .p-attention {
    padding-top: 50px;
  }
}

.p-attention__wrapper {
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-attention__wrapper {
    padding-bottom: 50px;
  }
}

.p-attention__heading-box {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-attention__heading-box {
    margin-bottom: 30px;
  }
}

.p-attention__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
}

@media screen and (max-width: 1024px) {
  .p-attention__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}

.p-attention__box {
  width: 32%;
}

@media screen and (max-width: 1024px) {
  .p-attention__box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-attention__title {
  font-size: clamp(20px, calc(-0.282px + 1.69vw), 32px);
  text-align: center;
  height: 160px;
}

@media screen and (max-width: 1024px) {
  .p-attention__title {
    height: auto;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .p-attention__title {
    font-size: 18px;
  }
}

.p-attention__title3 {
  margin-left: -50px;
}

@media screen and (max-width: 1500px) {
  .p-attention__title3 {
    margin-left: -20px;
  }
}

@media screen and (max-width: 1024px) {
  .p-attention__title3 {
    margin-left: 0;
  }
}

.p-attention__br {
  display: none;
}

@media screen and (max-width: 1500px) {
  .p-attention__br {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .p-attention__br {
    display: none;
  }
}

.p-attention__cloud {
  font-size: clamp(38px, calc(0.222px + 3.778vw), 72px);
  background-image: url("../img/cloud.png");
  background-size: contain;
  background-position: center;
  aspect-ratio: 285/189;
  line-height: 2.625;
  width: 285px;
  color: #fff;
  display: inline-block;
}

@media screen and (max-width: 1600px) {
  .p-attention__cloud {
    width: 235px;
  }
}

@media screen and (max-width: 1400px) {
  .p-attention__cloud {
    width: 185px;
  }
}

@media screen and (max-width: 1200px) {
  .p-attention__cloud {
    width: 160px;
  }
}

@media screen and (max-width: 768px) {
  .p-attention__cloud {
    font-size: 24px;
    width: 86px;
  }
}

.p-attention__cloud-s {
  background-image: url(../img/cloud-s.png);
  background-size: cover;
  background-position: center;
  aspect-ratio: 215/121;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1400px) {
  .p-attention__cloud-s {
    width: 185px;
  }
}

@media screen and (max-width: 1024px) {
  .p-attention__cloud-s {
    width: 150px;
  }
}

@media screen and (max-width: 768px) {
  .p-attention__cloud-s {
    width: 120px;
  }
}

.p-attention__cloud-m {
  background-image: url(../img/cloud-s.png);
  background-size: cover;
  background-position: center;
  aspect-ratio: 215/121;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 239px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1600px) {
  .p-attention__cloud-m {
    width: 200px;
  }
}

@media screen and (max-width: 1024px) {
  .p-attention__cloud-m {
    width: 150px;
  }
}

@media screen and (max-width: 768px) {
  .p-attention__cloud-m {
    width: 140px;
  }
}

.p-attention__list {
  margin: 35px 0 10px 35px;
}

@media screen and (max-width: 1500px) {
  .p-attention__list {
    margin: 25px 0 10px 20px;
  }
}

@media screen and (max-width: 1250px) {
  .p-attention__list {
    margin: 25px 0 10px 10px;
  }
}

.p-attention__item {
  font-size: clamp(16px, calc(7.111px + 0.889vw), 24px);
  vertical-align: middle;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p-attention__item {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.p-attention__item:before {
  content: "";
  display: inline-block;
  margin-right: 1em;
  width: 32px;
  height: 32px;
  background-image: url("../img/check.png");
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1250px) {
  .p-attention__item:before {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
}

@media screen and (max-width: 1024px) {
  .p-attention__item:before {
    margin-right: 1em;
  }
}

@media screen and (max-width: 768px) {
  .p-attention__item:before {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
}

.p-solution__heading-box,
.p-voice__heading-box,
.p-price__heading-box,
.p-cta__heading-box,
.p-contact__heading-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-solution__sub-heading,
.p-voice__sub-heading,
.p-price__sub-heading,
.p-cta__sub-heading,
.p-contact__sub-heading {
  font-size: clamp(22px, calc(6.444px + 1.556vw), 36px);
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-solution__sub-heading,
  .p-voice__sub-heading,
  .p-price__sub-heading,
  .p-cta__sub-heading,
  .p-contact__sub-heading {
    font-size: 16px;
    text-align: start;
  }
}

.p-solution {
  background-color: var(--bg-color);
}

.p-solution__wrapper {
  margin-left: 10%;
  margin-right: 10%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-solution__wrapper {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.p-solution__heading-box {
  margin-bottom: 80px;
}

.p-solution__img-box {
  margin-bottom: 50px;
}

.p-solution__caution {
  line-height: 1.618;
}

@media screen and (max-width: 768px) {
  .p-solution__caution {
    font-size: 14px;
  }
}

.p-reason__wrapper {
  margin-left: 5%;
  margin-right: 5%;
  padding-top: 80px;
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-reason__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-reason__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
}

@media screen and (max-width: 1024px) {
  .p-reason__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}

.p-reason__box {
  width: 32%;
}

@media screen and (max-width: 1024px) {
  .p-reason__box {
    width: 100%;
    max-width: 450px;
  }
}

.p-reason__img-box {
  margin-bottom: 10px;
}

.p-reason__text {
  margin-top: 16px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-reason__text {
    margin-top: 10px;
  }
}

.p-reason__heading-box {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-reason__heading-box {
    margin-bottom: 30px;
  }
}

.p-reason__number {
  font-size: clamp(44px, calc(-4.889px + 4.889vw), 88px);
  color: var(--color-orange);
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}

.p-reason__number:after {
  content: "";
  width: 51px;
  height: 44px;
  background-image: url("../img/point.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -30px;
  right: -30px;
}

@media screen and (max-width: 1024px) {
  .p-reason__number:after {
    width: 26px;
    height: 22px;
    top: -16px;
    right: -16px;
  }
}

.p-vendor__wrapper {
  margin-left: 5%;
  margin-right: 5%;
  padding-top: 80px;
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-vendor__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-vendor__heading {
  font-size: clamp(26px, calc(8.222px + 1.778vw), 42px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

.p-vendor__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ffa454;
}

.p-vendor__heading-box {
  margin-bottom: 50px;
}

.p-vendor__text {
  text-align: center;
  font-size: clamp(18px, calc(10.709px + 0.949vw), 24px);
}

.p-vendor__text-box {
  margin-bottom: 20px;
}

.p-vendor__button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #4ea2c8;
  color: #fff;
  padding: 1em 2em;
  font-size: clamp(38px, calc(0.222px + 3.778vw), 72px);
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .p-vendor__button {
    font-size: 24px;
  }
}

.p-able__wrapper {
  max-width: 1000px;
  padding-top: 60px;
  padding-bottom: 110px;
  padding-left: 5%;
  padding-right: 5%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-able__wrapper {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.p-able__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-able__box {
    max-width: 500px;
    margin: 0 auto;
  }
}

.p-able__heading-box {
  margin-bottom: 30px;
}

.p-able__number {
  font-size: clamp(32px, calc(5.333px + 2.667vw), 56px);
  background-color: var(--color-orange);
  color: #fff;
  width: 118px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .p-able__number {
    width: 70px;
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.p-able__title {
  font-size: clamp(22px, calc(6.444px + 1.556vw), 36px);
  margin-bottom: 80px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-able__title {
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
    font-size: 18px;
  }
}

.p-able__text {
  line-height: 1.618;
}

.p-able__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .p-able__text-box {
    margin-top: 20px;
  }
}

.p-able__text-short-box2 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media screen and (max-width: 768px) {
  .p-able__text-short-box2 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.p-able__text-short1 {
  width: 80%;
}

@media screen and (max-width: 768px) {
  .p-able__text-short1 {
    width: 100%;
  }
}

.p-able__text-short2 {
  width: 88%;
}

@media screen and (max-width: 768px) {
  .p-able__text-short2 {
    width: 100%;
  }
}

.p-able__flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  margin-bottom: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .p-able__flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-able__box:nth-child(odd) .p-able__flex-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .p-able__box:nth-child(odd) .p-able__flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-able__text-box {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .p-able__text-box {
    width: 100%;
  }
}

.p-able__img-box {
  width: 49%;
  -webkit-box-shadow: 15px 15px 0px 0px var(--color-orange);
          box-shadow: 15px 15px 0px 0px var(--color-orange);
}

@media screen and (max-width: 768px) {
  .p-able__img-box {
    width: 100%;
    -webkit-box-shadow: 10px 10px 0px 0px var(--color-orange);
            box-shadow: 10px 10px 0px 0px var(--color-orange);
  }
}

.p-able__img-box-even {
  -webkit-box-shadow: -15px 15px 0px 0px var(--color-orange);
          box-shadow: -15px 15px 0px 0px var(--color-orange);
}

@media screen and (max-width: 768px) {
  .p-able__img-box-even {
    -webkit-box-shadow: -10px 10px 0px 0px var(--color-orange);
            box-shadow: -10px 10px 0px 0px var(--color-orange);
  }
}

.p-graph {
  background-color: var(--bg-color);
}

.p-graph__wrapper {
  margin-left: 4%;
  margin-right: 4%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .p-graph__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-graph__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 10%;
}

.p-graph__box {
  width: 45%;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-graph__box {
    width: 100%;
    margin-bottom: 16px;
  }
}

.p-graph__heading-box {
  margin-bottom: 50px;
}

.p-graph2 {
  background-color: var(--bg-color);
}

.p-graph2__wrapper {
  margin-left: 4%;
  margin-right: 4%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .p-graph2__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-graph2__heading {
  font-size: clamp(26px, calc(8.222px + 1.778vw), 42px);
}

.p-graph2__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 10%;
}

.p-graph2__box {
  width: 45%;
  margin-bottom: 50px;
}

.p-graph2__box:first-child {
  margin: 0 5% 50px;
}

@media screen and (max-width: 768px) {
  .p-graph2__box:first-child {
    margin: 0 0 50px;
  }
}

@media screen and (max-width: 768px) {
  .p-graph2__box {
    width: 100%;
    margin-bottom: 16px;
  }
}

.p-graph2__box img {
  display: block;
  width: 20%;
  margin: 10px auto;
}

.p-graph2__heading-box {
  margin-bottom: 50px;
}

.p-graph2__text-box {
  margin-top: 50px;
}

.p-graph2__text {
  font-size: clamp(28px, calc(5.778px + 2.222vw), 48px);
}

@media screen and (max-width: 768px) {
  .p-graph2__text {
    font-size: 18px;
  }
}

.p-voice {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .p-voice {
    padding-top: 50px;
  }
}

.p-voice__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 3.125%;
  margin-right: 13.5%;
}

@media screen and (max-width: 768px) {
  .p-voice__wrapper {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.p-voice__red {
  color: #b52121;
}

.p-voice__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  gap: 2%;
}

@media screen and (max-width: 768px) {
  .p-voice__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-voice__heading-box {
  margin-bottom: 50px;
}

.p-voice__img-box {
  width: 14vw;
  max-width: 270px;
  min-width: 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-voice__text-box {
  background-color: var(--bg-color);
  border-radius: 30px;
  width: 100%;
  padding: 30px 20px;
}

.p-voice__text {
  font-size: clamp(20px, calc(2.222px + 1.778vw), 36px);
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-voice__text {
    font-size: 14px;
  }
}

.p-voice__name {
  text-align: center;
}

.p-price__wrapper {
  padding: 0 20px;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-price__wrapper {
    margin-bottom: 50px;
  }
}

.p-price__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.5%;
  width: 100%;
  padding-left: 15%;
  padding-right: 15%;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-price__list {
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-price__heading-box {
  margin-bottom: 50px;
}

.p-price__item {
  background-color: #83c8e8;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px;
  width: 31%;
  height: 240px;
}

@media screen and (max-width: 1024px) {
  .p-price__item {
    width: 100%;
    max-width: 270px;
    margin-bottom: 20px;
    height: 180px;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .p-price__item {
    max-width: 140px;
    height: 90px;
    padding: 6px;
  }
}

.p-price__item-text {
  border-radius: 12px;
  background-color: #fff;
  font-size: clamp(27px, calc(-0.778px + 2.778vw), 52px);
  font-weight: 600;
  font-family: "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", sans-serif;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-price__item-text {
    font-size: 16px;
  }
}

.p-price__text-l {
  font-size: clamp(27px, calc(6.111px + 2.089vw), 45.8px);
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p-price__text-l {
    font-size: 22px;
  }
}

.p-price__text {
  font-size: clamp(22px, calc(6.444px + 1.556vw), 36px);
  margin-bottom: 100px;
}

@media screen and (max-width: 1024px) {
  .p-price__text {
    margin-bottom: 50px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .p-price__text {
    font-size: 15px;
  }
}

.p-price__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-price__campaign-container {
  margin: 0 auto;
  width: 63%;
  min-width: 740px;
  max-width: 1200px;
  background-color: #4ea2c8;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  padding: 20px 20px 16px;
}

@media screen and (max-width: 768px) {
  .p-price__campaign-container {
    padding: 20px 10px 16px;
    width: 100%;
    min-width: 0;
  }
}

.p-price__campaign-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .p-price__campaign-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}

.p-price__campaign-title {
  font-size: clamp(26px, calc(8.222px + 1.778vw), 42px);
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-price__campaign-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.p-price__campaign-text-correction {
  font-size: clamp(32px, calc(5.333px + 2.667vw), 56px);
  text-decoration: line-through;
}

@media screen and (max-width: 768px) {
  .p-price__campaign-text-correction {
    font-size: 24px;
  }
}

.p-price__campaign-text-l {
  font-size: clamp(42px, calc(-0.222px + 4.222vw), 80px);
}

@media screen and (max-width: 768px) {
  .p-price__campaign-text-l {
    font-size: 30px;
  }
}

.p-price__caution {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-price__caution {
    font-size: 14px;
  }
}

.p-price__caution-br {
  display: none;
}

@media screen and (max-width: 1350px) {
  .p-price__caution-br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .p-price__arrow-box {
    width: 40px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.p-price__link {
  text-decoration: underline;
}

.p-flow__wrapper {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-flow__wrapper {
    padding-bottom: 40px;
  }
}

.p-flow__heading-box {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-flow__heading-box {
    margin-bottom: 30px;
  }
}

.p-flow__box {
  font-size: clamp(32px, calc(5.333px + 2.667vw), 56px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  line-height: 1;
  padding: 85px 0;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-flow__box {
    padding: 80px 0 30px;
    font-size: 18px;
  }
}

.p-flow__box:after {
  border-top: 60px solid #ffc300;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  margin-left: -120px;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .p-flow__box:after {
    border-top: 28px solid #ffc300;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    bottom: -28px;
    /* 三角形の高さ＋ボックスのボーダーをマイナスに */
    left: 50%;
    /* 中央寄せに使用 */
    margin-left: -70px;
    /* 中央寄せに使用 */
  }
}

@media screen and (max-width: 768px) {
  .p-flow__box:after {
    border-top: 18px solid #ffc300;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    bottom: -18px;
    left: 50%;
    margin-left: -40px;
  }
}

.p-flow__box1 {
  background-color: #fbe4d0;
}

.p-flow__box1:after {
  border-top-color: #fbe4d0;
}

.p-flow__box2 {
  background-color: #fdcfa7;
}

.p-flow__box2:after {
  border-top-color: #fdcfa7;
}

.p-flow__box3 {
  background-color: #feba7e;
}

.p-flow__box3:after {
  border-top-color: #feba7e;
}

.p-flow__flow-text {
  text-align: center;
}

.p-flow__step-box {
  position: absolute;
  left: 20%;
}

@media screen and (max-width: 1024px) {
  .p-flow__step-box {
    left: 10%;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__step-box {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 30%;
  }
}

.p-cta {
  background-color: var(--color-blue);
}

.p-cta__wrapper {
  color: #fff;
  padding: 50px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-cta__heading-box {
  margin-bottom: 50px;
}

.p-cta__sub-heading {
  text-align: center;
}

.p-cta__br {
  display: none;
}

@media screen and (max-width: 460px) {
  .p-cta__br {
    display: block;
  }
}

.p-ask__wrapper {
  margin-left: 10%;
  margin-right: 10%;
  padding-top: 100px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .p-ask__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.p-ask__answer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.p-ask__question-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.p-ask__icon {
  background-color: var(--color-orange);
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(26px, calc(8.222px + 1.778vw), 42px);
  color: #fff;
}

@media screen and (max-width: 1350px) {
  .p-ask__icon {
    width: 40px;
    height: 40px;
    font-size: clamp(22px, calc(6.444px + 1.556vw), 36px);
  }
}

@media screen and (max-width: 768px) {
  .p-ask__icon {
    width: 30px;
    height: 30px;
    font-size: clamp(18px, calc(10.709px + 0.949vw), 24px);
  }
}

.p-ask__icon-blue {
  background-color: var(--color-blue);
}

.p-ask__question-box {
  margin-bottom: 30px;
}

.p-ask__answer-box {
  margin-bottom: 50px;
}

.p-ask__question {
  font-size: clamp(18px, calc(10.709px + 0.949vw), 24px);
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .p-ask__question {
    padding: 5px 10px;
    font-size: 14px;
  }
}

.p-ask__answer {
  font-size: clamp(18px, calc(10.709px + 0.949vw), 24px);
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .p-ask__answer {
    padding: 5px 10px;
    font-size: 14px;
  }
}

.p-ask__heading-box {
  margin-bottom: 30px;
}

.p-contact__wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-contact__wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.p-contact__heading-box {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-contact__heading-box {
    margin-bottom: 30px;
  }
}

.p-contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 130px;
}

@media screen and (max-width: 768px) {
  .p-contact__container {
    gap: 30px;
  }
}

.p-contact__button {
  font-size: clamp(20px, calc(-0.282px + 1.69vw), 32px);
  background-color: var(--color-orange);
  color: #fff;
  border-radius: 50%;
  width: 222px;
  height: 222px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-contact__button-tel {
  background-color: var(--color-blue);
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p-contact__button {
    width: 150px;
    height: 150px;
  }
}

.p-contact__text {
  text-align: center;
  font-size: clamp(22px, calc(6.444px + 1.556vw), 36px);
}

@media screen and (max-width: 768px) {
  .p-contact__text {
    font-size: 18px;
  }
}

.p-contact__text-s {
  font-size: clamp(18px, calc(10.709px + 0.949vw), 24px);
}

@media screen and (max-width: 768px) {
  .p-contact__text-s {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .p-contact__button-icon-box {
    width: 80px;
  }
}

@media screen and (max-width: 768px) {
  .p-contact__button-icon-box-tel {
    width: 44px;
  }
}

.l-footer {
  background-color: #575656;
  color: #fff;
}

.l-footer__wrapper {
  margin-left: 10%;
  margin-right: 10%;
  padding: 50px 20px;
}

@media screen and (max-width: 768px) {
  .l-footer__wrapper {
    padding: 30px 20px;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.l-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

@media screen and (max-width: 1024px) {
  .l-footer__container {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__container {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer__item {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .l-footer__item {
    margin-bottom: 8px;
    width: 33%;
    font-size: 14px;
  }
}

@media screen and (max-width: 580px) {
  .l-footer__item {
    width: 50%;
  }
}

.l-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .l-footer__bottom {
    padding-bottom: 16px;
  }
}

.l-footer__text {
  margin-bottom: 20px;
  line-height: 2;
  max-width: 420px;
}

@media screen and (max-width: 768px) {
  .l-footer__text {
    font-size: clamp(12px, calc(7.64px + 1.09vw), 16px);
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.fade.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/*# sourceMappingURL=front.css.map */