@charset "UTF-8";
/*==========================================
color
===========================================*/
.c-bg--key {
  background-color: #242a39;
}

.c-bg--accent {
  background-color: #32cc32;
}

.c-bg--white {
  background-color: white;
}

.c-bg--gray {
  background-color: #f5f8ff;
}

.c-bg--darkgray {
  background-color: #5a5f70;
}

.c-bg--gradient {
  background: rgb(253, 209, 32);
  background: linear-gradient(90deg, rgb(253, 209, 32) 0%, rgb(254, 155, 14) 100%);
}

/*==========================================
global
===========================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  /*overflow-x: hidden;*/
  overflow-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

video {
  max-width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #eee;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #eee;
}

/*==========================================
setting
===========================================*/
/*==========================================
btn
===========================================*/
.c-btn {
  width: 100%;
  height: auto;
  color: white;
  letter-spacing: 0.04em;
  border-radius: 10px;
  background: #32cc32;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-btn {
    height: auto;
  }
}
.c-btn:not(:disabled) {
  cursor: pointer;
}
@media (hover: hover) {
  .c-btn:where(:any-link, :enabled, summary):hover {
    outline: none;
    transform: translateY(5px);
    box-shadow: none;
  }
}
.c-btn::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.c-btn {
  padding-block: 6.6666666667vw;
  padding-inline: 2.6666666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5.6vw;
  font-weight: 700;
  line-height: 1.0714285714;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*display: grid;
  grid-template-columns: 1fr auto;*/
  column-gap: 0;
  align-items: center;
  background: #09b609;
  box-shadow: 0px 8px 0px 0px rgba(1, 15, 72, 0.2);
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.0666666667;
    padding-block: 3rem;
    padding-inline: 3rem;
  }
}
@media (hover: hover) {
  .c-btn:where(:any-link, :enabled, summary):hover {
    outline: none;
    transform: translateY(5px);
    background-color: #00e12b;
    box-shadow: none;
  }
}

.c-btn-party {
  background: #e7316e;
  color: white;
}
@media (hover: hover) {
  .c-btn-party:where(:any-link, :enabled, summary):hover {
    outline: none;
    transform: translateY(10px);
    background-color: #ff52a9;
    box-shadow: none;
  }
}

.c-btn--anchor {
  background: #32cc32;
  /*  &:after {
      content: " ";
      display: block;
      background: url(../images/btn_arrow.png) no-repeat;
      background-size: contain;
      aspect-ratio: 19/22;
      width: vw(19);
      height: auto;
      aspect-ratio: 1/1;
      justify-content: flex-end;
      margin-inline-start: 5px;

      @include media(m) {
        width: 14px;
      }
    }  */
}
@media screen and (min-width: 768px) {
  .c-btn--anchor {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.25;
    padding-block: 3rem;
    padding-inline: 3rem;
  }
}
@media (hover: hover) {
  .c-btn--anchor:where(:any-link, :enabled, summary):hover {
    outline: none;
    transform: translateY(5px);
    background-color: #00e12b;
    box-shadow: none;
  }
}

/*==========================================
title
===========================================*/
.c-heading {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.75;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 10;
  margin-block-end: 6.6666666667vw;
  font-family: "M PLUS 1p", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    margin-block-end: 2rem;
    letter-spacing: 0.2rem;
  }
}
.c-heading .no {
  margin-block-end: 4vw;
  font-size: 4.6666666667vw;
  font-weight: 700;
  line-height: 1.1428571429;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-heading .no {
    margin-block-end: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
}
.c-heading .large {
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-heading .large {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.4;
  }
}
.c-heading .small {
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .c-heading .small {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}

.c-title-linePop,
.c-title-linePop--white {
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 0 4vw;
  align-items: center;
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.8;
  position: relative;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .c-title-linePop,
  .c-title-linePop--white {
    font-family: "M PLUS 1p", sans-serif;
    grid-gap: 2rem;
    font-size: 3rem;
    font-weight: 500;
    line-height: 2;
  }
}
.c-title-linePop:before, .c-title-linePop:after,
.c-title-linePop--white:before,
.c-title-linePop--white:after {
  content: "";
  display: block;
  position: relative;
  background: #09b609;
  width: 3px;
  height: 80%;
}
@media screen and (min-width: 768px) {
  .c-title-linePop:before, .c-title-linePop:after,
  .c-title-linePop--white:before,
  .c-title-linePop--white:after {
    width: 4px;
    height: 100%;
    bottom: -5px;
  }
}
.c-title-linePop:before,
.c-title-linePop--white:before {
  transform: rotate(-35deg);
  left: -10px;
}
.c-title-linePop:after,
.c-title-linePop--white:after {
  transform: rotate(35deg);
  right: 0;
}

.c-title-linePop--white {
  color: white;
}
.c-title-linePop--white:before, .c-title-linePop--white:after {
  background: white;
}

/*********** line pop img ***********/
.c-title-linePopImg-double {
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 4% auto 4%;
  column-gap: 2.6666666667vw;
  align-items: center;
  text-align: center;
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg-double {
    grid-template-columns: 3.5rem auto 3.5rem;
    column-gap: 20px;
    margin-block-end: 1rem;
  }
}
.c-title-linePopImg-double:after, .c-title-linePopImg-double:before {
  content: "";
  display: block;
  background: url(../images/pop_double.png) no-repeat;
  background-size: contain;
  aspect-ratio: 45/47;
  width: 6vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg-double:after, .c-title-linePopImg-double:before {
    width: 45px;
  }
}
.c-title-linePopImg-double:after {
  justify-self: end;
  transform: scale(-1, 1);
}

/*********** line_pop ***********/
.c-title-linePopImg {
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 4% auto 4%;
  column-gap: 2.6666666667vw;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg {
    grid-template-columns: 2rem auto 2rem;
    column-gap: 20px;
  }
}
.c-title-linePopImg:after, .c-title-linePopImg:before {
  content: "";
  display: block;
  background: url(../images/pop.png) no-repeat;
  background-size: contain;
  aspect-ratio: 39/50;
  width: 5.2vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg:after, .c-title-linePopImg:before {
    width: 39px;
  }
}
.c-title-linePopImg:before {
  position: relative;
  left: -7px;
}
.c-title-linePopImg:after {
  justify-self: end;
  transform: scale(-1, 1);
}

.c-icon-triangle {
  display: inline-block;
  align-items: flex-start;
  position: relative;
  width: fit-content;
}
.c-icon-triangle:after {
  content: " ";
  display: block;
  background: url(../images/title_arrow.png) no-repeat center;
  background-size: contain;
  aspect-ratio: 29/33;
  width: 3.8666666667vw;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-icon-triangle:after {
    width: 29px;
    left: -50px;
  }
}

/*==========================================
setting
===========================================*/
/*==========================================
layout
===========================================*/
.l-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.l-inner {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  height: inherit;
  padding-inline-start: 5.3333333333vw;
  padding-inline-end: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline-start: 2.4rem;
    padding-inline-end: 2.4rem;
  }
}
@media screen and (min-width: 1060px) {
  .l-inner {
    padding-inline: 0;
  }
}
.l-inner--narrow {
  max-width: 800px;
}
.l-inner--middle {
  max-width: 1100px;
}
.l-inner--wide {
  max-width: 1300px;
  padding-inline-start: 5.3333333333vw;
  padding-inline-end: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-inner--wide {
    padding-inline-start: 2.4rem;
    padding-inline-end: 2.4rem;
  }
}
@media (min-width: 1300px) {
  .l-inner--wide {
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}
.l-inner--full {
  padding-inline-start: 5.3333333333vw;
  padding-inline-end: 5.3333333333vw;
  max-width: 100%;
}

/* header.css */
/*==========================================
hero
===========================================*/
.p-hero {
  position: relative;
  overflow: hidden;
}
.p-hero__inner {
  padding-block-start: 8vw;
  aspect-ratio: 750/1334;
  width: 100%;
  height: auto;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 2.6666666667vw;
  padding-block-end: 6.6666666667vw;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 0 1fr;
  grid-template-rows: auto;
  gap: 0;
  grid-template-areas: "img heading";
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    aspect-ratio: revert;
    padding-block-start: 10rem;
    padding-block-end: revert;
    margin-block-end: 15rem;
    padding-inline: 0;
    grid-template-columns: auto 71.5384615385%;
    grid-template-rows: 1fr;
    gap: 0;
    grid-template-areas: "img heading";
  }
}
.p-hero__heading {
  width: 100%;
  grid-area: heading;
  position: relative;
  z-index: 5;
}
.p-hero__img {
  grid-area: img;
  position: relative;
}
.p-hero__body {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}
.p-hero__aiba {
  max-width: revert;
  position: absolute;
  aspect-ratio: 521/743;
  width: 46.6666666667vw;
  height: auto;
  top: 29.3333333333vw;
  right: -6.6666666667vw;
  z-index: 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-hero__aiba {
    display: block;
    width: 521px;
    top: 15px;
    right: -170px;
  }
}
.p-hero__title {
  position: relative;
  padding-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.4166666667;
    padding-block-end: 1rem;
  }
}
.p-hero__catch {
  font-size: 5.3333333333vw;
  font-weight: 900;
  line-height: 1.6;
  margin-block-end: 2.6666666667vw;
  color: #617692;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-hero__catch {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.5238095238;
    letter-spacing: -0.1rem;
    margin-block-end: 1.5rem;
  }
}
.p-hero__caption {
  display: block;
  width: fit-content;
  font-size: 4.2666666667vw;
  font-weight: 900;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .p-hero__caption {
    background: #000000;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.6666666667;
    letter-spacing: -0.05rem;
    padding-inline: 1rem;
    margin-block-end: 1rem;
  }
}
.p-hero__caption .no {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.2777777778;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-hero__caption .no {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.4705882353;
  }
}
.p-hero__caption .line {
  width: fit-content;
  display: block;
  background: #000000;
  padding-inline: 2.6666666667vw;
  padding-block-start: 0.1333333333vw;
  padding-block-end: 0.4vw;
  margin-block-end: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__caption .line {
    display: inline;
    background: revert;
    padding-inline: revert;
    padding-block: revert;
    margin-block-end: revert;
  }
}
.p-hero__arrow {
  width: 50%;
  position: relative;
  height: 16vw;
  margin-block-end: 7.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__arrow {
    width: 100%;
    height: 60px;
    margin-block-end: revert;
  }
}
.p-hero__arrow img {
  width: 24vw;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__arrow img {
    width: auto;
    top: -50px;
  }
}
.p-hero__day {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.875;
  text-align: center;
  color: white;
}
@media screen and (min-width: 768px) {
  .p-hero__day {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.875;
    color: black;
  }
}
.p-hero__day .no {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.6666666667;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-hero__day .no {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.5789473684;
  }
}
.p-hero__limited {
  font-size: 5.3333333333vw;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-hero__limited {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.5;
  }
}
.p-hero__limited .no {
  font-size: 8vw;
  font-weight: 900;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-hero__limited .no {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    vertical-align: -4px;
  }
}
.p-hero__cta-area {
  background: #313131;
  mix-blend-mode: multiply;
}
.p-hero__cta {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-hero__cta {
    width: 100%;
    max-width: 500px;
  }
}
.p-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-hero__bg {
    max-width: inherit;
    position: absolute;
    top: 0;
    left: 50%;
    aspect-ratio: 1980/806;
    width: 130vw;
    height: auto;
    margin-inline-start: -65vw;
    z-index: -1;
  }
}
@media (min-width: 1500px) {
  .p-hero__bg {
    width: 1980px;
    margin-left: -990px;
  }
}

.c-partition {
  position: absolute;
  bottom: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-partition {
    bottom: -100px;
  }
}

.c-line-bg--01:before, .c-line-bg--05:before {
  content: " ";
  display: block;
  clip-path: polygon(0 0, 100% calc(100% - 40vw), 100% 100%, 0 40vw);
  background: #fff;
  width: 100%;
  height: 53.3333333333vw;
  position: absolute;
  left: 0;
  right: 0;
  top: -13.3333333333vw;
  margin: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-line-bg--01:before, .c-line-bg--05:before {
    clip-path: polygon(0 0, 100% calc(100% - 400px), 100% 100%, 0 400px);
    width: 1980px;
    height: 600px;
    left: -50%;
    right: -50%;
    top: -150px;
  }
}
.c-line-bg--01:after, .c-line-bg--05:after {
  content: " ";
  display: block;
  clip-path: polygon(0 calc(100% - 40vw), 100% 0%, 100% 40vw, 0% 100%);
  background: #fff;
  width: 100%;
  height: 53.3333333333vw;
  position: absolute;
  left: 0;
  right: 0;
  top: -13.3333333333vw;
  margin: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-line-bg--01:after, .c-line-bg--05:after {
    clip-path: polygon(0 calc(100% - 400px), 100% 0%, 100% 400px, 0% 100%);
    width: 1980px;
    height: 600px;
    left: -50%;
    right: -50%;
    top: -150px;
  }
}

.c-line-bg--02:before, .c-line-bg--06:before {
  content: " ";
  display: block;
  clip-path: polygon(0 0, 100% calc(100% - 40vw), 100% 100%, 0 40vw);
  background: #606879;
  width: 100%;
  height: 53.3333333333vw;
  position: absolute;
  left: 0;
  right: 0;
  top: -13.3333333333vw;
  margin: auto;
  z-index: 15;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .c-line-bg--02:before, .c-line-bg--06:before {
    clip-path: polygon(0 0, 100% calc(100% - 400px), 100% 100%, 0 400px);
    width: 1980px;
    height: 600px;
    left: -50%;
    right: -50%;
    top: -150px;
  }
}
.c-line-bg--02:after, .c-line-bg--06:after {
  content: " ";
  display: block;
  clip-path: polygon(0 calc(100% - 40vw), 100% 0%, 100% 40vw, 0% 100%);
  background: #606879;
  width: 100%;
  height: 53.3333333333vw;
  position: absolute;
  left: 0;
  right: 0;
  top: -13.3333333333vw;
  margin: auto;
  z-index: 15;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .c-line-bg--02:after, .c-line-bg--06:after {
    clip-path: polygon(0 calc(100% - 400px), 100% 0%, 100% 400px, 0% 100%);
    width: 1980px;
    height: 600px;
    left: -50%;
    right: -50%;
    top: -150px;
  }
}

.c-line-bg {
  position: relative;
  margin-block-start: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-line-bg {
    margin-block-start: 8rem;
    transform: translateY(6rem);
  }
}

.c-line-bg--05 {
  position: relative;
}
.c-line-bg--05:before, .c-line-bg--05:after {
  background: #5a5f70;
}
@media screen and (min-width: 768px) {
  .c-line-bg--05:before, .c-line-bg--05:after {
    top: -120px;
  }
}

.c-line-bg--06 {
  position: relative;
  background: #0d1019;
  padding-block-end: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-line-bg--06 {
    background: revert;
    padding-block-end: revert;
  }
}
.c-line-bg--06:before, .c-line-bg--06:after {
  background: #606879;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .c-line-bg--06:before, .c-line-bg--06:after {
    top: -120px;
  }
}

/* footer.scss */
.p-footer {
  position: relative;
  padding-block-start: 6.6666666667vw;
  padding-block-end: 6.6666666667vw;
  background: none;
  /*********** info ***********/
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block-start: 5rem;
    padding-block-end: 4rem;
  }
}
.p-footer p {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #000;
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-footer p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.1428571429;
  }
}
.p-footer__info {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 6.6666666667vw;
  padding-block: 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__info {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }
}
.p-footer__logo {
  margin-block-end: 4vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-block-end: 1rem;
    text-align: left;
  }
}
.p-footer__notice p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-footer__notice p {
    text-align: right;
  }
}
.p-footer p.p-footer__copyright {
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 1.4285714286;
  text-align: center;
  color: #000;
  margin-block-start: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-footer p.p-footer__copyright {
    text-align: right;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.1428571429;
    margin-block-start: 0;
  }
}
.p-footer__nav {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.p-footer__nav li {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  padding-block-end: 1rem;
}
.p-footer__nav li a {
  display: block;
  border: 1px solid #242a39;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: black;
  width: 100%;
  text-decoration: none;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav li a {
    border: none;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding: 0.5rem 2rem;
    border-right: none;
  }
}
.p-footer__nav li a:hover {
  color: #242a39;
}
@media screen and (min-width: 768px) {
  .p-footer__nav li:last-child a {
    border-right: 1px solid #000;
  }
}

/*==========================================
Utility
===========================================*/
/*==========================================
hidden
===========================================*/
.u-hidden-pc {
  display: inline;
}
@media screen and (min-width: 1060px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-hidden-tab {
  display: inline;
}
@media screen and (min-width: 768px) {
  .u-hidden-tab {
    display: none;
  }
}

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

/*==========================================
visible
===========================================*/
.u-visible-pc {
  display: none;
}
@media screen and (min-width: 1060px) {
  .u-visible-pc {
    display: inline;
  }
}

.u-visible-tab {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-visible-tab {
    display: inline;
  }
}

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

/*==========================================
movie
===========================================*/
.c-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: white;
  z-index: 50;
}
@media screen and (min-width: 480px) {
  .c-movie {
    padding-top: 56.25%;
  }
}
.c-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.c-movie__frame {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 2rem;
  background: #dbf2e1;
  border-radius: 10px;
  padding: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-movie__frame {
    margin-bottom: 5rem;
    padding: 40px;
    border-radius: 30px;
  }
}
.c-movie__inner {
  padding: 2.6666666667vw;
  background: #b6db6a;
}
@media screen and (min-width: 768px) {
  .c-movie__inner {
    padding: 5rem;
  }
}

/*==========================================
flexbox
===========================================*/
@media screen and (min-width: 768px) {
  .flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-overflow {
  overflow: hidden;
}

.u-clear {
  overflow: hidden;
}

/*==========================================
text
===========================================*/
.number {
  font-family: "Roboto", sans-serif;
  font-size: 110%;
}

.u-key {
  color: #242a39;
}

.u-accent {
  color: #32cc32;
}

.u-red {
  color: #e60012;
}

.u-blue {
  color: #05a1c8;
}

.u-orange {
  color: #eb4e00;
}

.u-black {
  color: black;
}

.u-white {
  color: white;
}

.u-yellow {
  color: #f9bd1a;
}

.u-bold {
  font-weight: 700;
}
.u-bold--s {
  font-weight: 500;
}
.u-bold--l {
  font-weight: 900;
}

.u-marker--red {
  background: linear-gradient(transparent 80%, rgba(196, 0, 75, 0.28) 80%);
}
.u-marker--yellow {
  background: linear-gradient(transparent 70%, #ffff00 70%);
}
.u-marker--blue {
  background: linear-gradient(transparent 80%, rgba(0, 78, 255, 0.25) 80%);
}

.u-center,
p.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-left {
  text-align: right;
}

.u-font--s01 {
  font-size: 90%;
}
.u-font--s02 {
  font-size: 80%;
}
.u-font--s03 {
  font-size: 70%;
}
.u-font--l01 {
  font-size: 110%;
}
.u-font--l02 {
  font-size: 120%;
}
.u-font--l03 {
  font-size: 130%;
}

.u-underline {
  border-bottom: 1px solid #000;
}
.u-underline--red {
  border-bottom: 1px solid red;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-justify {
  text-align-last: justify;
  text-justify: inter-character;
}

.u-japanease {
  overflow: hidden;
  writing-mode: vertical-rl;
}

.u-word-break {
  word-break: break-all;
}

.u-white-space {
  white-space: nowrap;
}

.u-marker {
  background: #eb4e00;
  background: linear-gradient(0deg, rgb(235, 78, 0) 7%, rgba(235, 78, 0, 0) 7%);
}

.u-marker--blue {
  background: #eb4e00;
  background: linear-gradient(0deg, rgb(116, 210, 231) 10%, rgba(116, 210, 231, 0) 10%);
}

.u-marker--dark {
  background: rgb(204, 240, 214);
  background: linear-gradient(180deg, rgba(131, 175, 187, 0) 80%, rgba(131, 175, 187, 0.6) 80%, rgba(131, 175, 187, 0.6) 95%, rgba(131, 175, 187, 0) 95%);
}

.u-marker--red {
  background: rgb(204, 240, 214);
  background: linear-gradient(180deg, rgba(221, 131, 131, 0) 75%, rgba(221, 131, 131, 0.8) 75%, rgba(221, 131, 131, 0.8) 95%, rgba(221, 131, 131, 0) 95%);
  display: inline;
  width: fit-content;
}

.u-dotted {
  position: relative;
}
.u-dotted:before {
  content: " ";
  display: block;
  background: #32cc32;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -0.6666666667vw;
}
@media screen and (min-width: 768px) {
  .u-dotted:before {
    width: 6px;
    height: 6px;
    top: -2px;
  }
}

/*==========================================
setting
===========================================*/
.c-notice p {
  text-align: center;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 2;
  margin-block-end: 2rem;
  letter-spacing: 0.1rem;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .c-notice p {
    margin-block-end: 3rem;
    font-size: 1.8rem;
  }
}

.u-wave-line {
  position: relative;
  margin-block-end: 2.6666666667vw;
  display: block;
}
@media screen and (min-width: 768px) {
  .u-wave-line {
    display: inline;
    padding-block-end: 0;
  }
}
.u-wave-line:after {
  content: " ";
  display: block;
  background: url(../images/wave_line_s.png) repeat-x;
  background-size: contain;
  width: 100%;
  height: auto;
  aspect-ratio: 599/23;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3.0666666667vw;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .u-wave-line:after {
    bottom: -23px;
  }
}

/*==========================================
c-list
===========================================*/
.c-list__wrap {
  width: 100%;
  background: #242a39;
  padding: 2.6666666667vw;
  padding-inline-end: 6.6666666667vw;
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-list__wrap {
    width: 70%;
    padding: 2rem;
    padding-inline-end: 5rem;
    margin-block-end: 3rem;
  }
}
.c-list li {
  position: relative;
  padding-inline-start: 4vw;
  margin-block-end: 2.6666666667vw;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.5333333333;
  letter-spacing: 0.1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-list li {
    padding-inline-start: 2rem;
    margin-block-end: 0;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8888888889;
  }
}
.c-list li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  display: inline-block;
  background: #dd8383;
  position: absolute;
  left: 0;
  top: calc((6.6666666667vw - 7px) / 2);
}
@media screen and (min-width: 768px) {
  .c-list li:before {
    width: 8px;
    height: 8px;
    top: 13px;
  }
}

.c-list-notice {
  width: 100%;
  max-width: 840px;
  margin-inline: auto;
  margin-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-list-notice {
    margin-block-start: 5rem;
  }
}
.c-list-notice li {
  position: relative;
  padding-inline-end: 2rem;
  font-size: 3.4666666667vw;
  font-weight: 400;
  line-height: 1.6923076923;
  letter-spacing: 0.1rem;
  text-align: left;
  margin-block-end: 1rem;
  color: white;
  text-indent: -15px;
  transform: translateX(15px);
}
@media screen and (min-width: 768px) {
  .c-list-notice li {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.625;
    margin-block-end: 1rem;
  }
}

/*==========================================
letter
===========================================*/
.c-letter p {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 2;
  margin-block-end: 2rem;
  letter-spacing: 0.1rem;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .c-letter p {
    margin-block-end: 3rem;
    font-size: 1.8rem;
  }
}
.c-letter p .large {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .c-letter p .large {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
  }
}

/*==========================================
cta
===========================================*/
.c-cta {
  position: relative;
  z-index: 30;
  padding-block-start: 4vw;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding-block-start: 3rem;
  }
}
.c-cta02 {
  padding-block-start: 4vw;
}
@media screen and (min-width: 768px) {
  .c-cta02 {
    padding-block-start: 2rem;
  }
}
.c-cta__wrap {
  padding-block-end: 3rem;
}
.c-cta p {
  margin-block-end: 2.6666666667vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .c-cta p {
    margin-block-end: 1rem;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.9230769231;
  }
}
.c-cta__area {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}
.c-cta__area-party {
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-cta__area-party {
    margin-block-end: 2rem;
  }
}

.u-dark {
  color: #83afbb;
}

/*==========================================
trouble
===========================================*/
.p-trouble {
  position: relative;
  padding-block-start: 6.6666666667vw;
  padding-block-end: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble {
    padding-block-start: 12rem;
    padding-block-end: 10rem;
  }
}
.p-trouble__heading {
  position: relative;
  z-index: 20;
  margin-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__heading {
    margin-block-end: 20rem;
  }
}
.p-trouble__img {
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-block-start: 20vw;
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__img {
    margin-block-start: revert;
    margin-block-end: 2rem;
  }
}
.p-trouble__text01 {
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.3529411765;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-trouble__text01 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5333333333;
  }
}
.p-trouble__arrow {
  width: 10.6666666667vw;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -8vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__arrow {
    width: auto;
    top: -30px;
  }
}
.p-trouble__wrap {
  position: relative;
  background: #f5f8ff;
  padding-block-start: 6.6666666667vw;
  padding-block-end: 6.6666666667vw;
  padding-inline: 5.3333333333vw;
  margin-block-start: 12vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__wrap {
    padding-block-start: 5rem;
    padding-block-end: 4rem;
    padding-inline: 2rem;
    margin-block-start: 4rem;
  }
}
.p-trouble__wrap:before, .p-trouble__wrap:after {
  content: " ";
  display: block;
  background: url(../images/bracket.png) no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 6.2666666667vw;
  height: auto;
  position: absolute;
  top: -5px;
}
@media screen and (min-width: 768px) {
  .p-trouble__wrap:before, .p-trouble__wrap:after {
    width: 47px;
  }
}
.p-trouble__wrap:before {
  left: -5px;
}
.p-trouble__wrap:after {
  right: -5px;
  transform: scale(-1, 1);
}
.p-trouble__brackets:before, .p-trouble__brackets:after {
  content: " ";
  display: block;
  background: url(../images/bracket.png) no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 6.2666666667vw;
  height: auto;
  position: absolute;
  bottom: -5px;
}
@media screen and (min-width: 768px) {
  .p-trouble__brackets:before, .p-trouble__brackets:after {
    width: 47px;
  }
}
.p-trouble__brackets:before {
  left: -5px;
  transform: scale(1, -1);
}
.p-trouble__brackets:after {
  right: -5px;
  transform: scale(-1, -1);
}
.p-trouble__list {
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-gap: 2rem;
}
@media (min-width: 1000px) {
  .p-trouble__list {
    max-width: 850px;
  }
}
.p-trouble__list li {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.75;
  padding-left: 8vw;
  position: relative;
  color: #313131;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li {
    padding-left: 6rem;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.7857142857;
    letter-spacing: -0.05rem;
  }
}
.p-trouble__list li:before {
  content: "";
  width: 23px;
  height: 23px;
  background: url(../images/icon_check.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: calc((7.4666666667vw - 23px) / 2);
  margin: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li:before {
    width: 39px;
    height: 39px;
    top: 5.5px;
  }
}
.p-trouble__text02 {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.75;
  margin-block-start: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__text02 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 2.0909090909;
    margin-block-start: 1rem;
  }
}
@media (min-width: 1000px) {
  .p-trouble__text02 {
    max-width: 680px;
    margin-inline: auto;
  }
}
.p-trouble__text03 {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.75;
  margin-block-start: 10.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-trouble__text03 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.7692307692;
    margin-block-start: 5rem;
  }
}
.p-trouble__object01 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 420/449;
  width: 40vw;
  height: auto;
  top: -40vw;
  right: -16vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__object01 {
    width: 420px;
    top: -200px;
    right: -320px;
  }
}
.p-trouble__object02 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 323/346;
  width: 33.3333333333vw;
  height: auto;
  bottom: -33.3333333333vw;
  left: -9.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-trouble__object02 {
    width: 323px;
    bottom: -120px;
    left: -400px;
  }
}
.p-trouble__triangle01 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 85/86;
  width: 7.3333333333vw;
  height: auto;
  top: -20vw;
  left: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__triangle01 {
    width: 85px;
    top: -80px;
    left: -200px;
  }
}

/*==========================================
reason
===========================================*/
.p-reason {
  position: relative;
}
.p-reason__heading {
  width: 100%;
  max-width: 950px;
  background: #242a39;
  border-radius: 5px;
  padding-block: 5.3333333333vw;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  top: -2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-reason__heading {
    padding-block: 4rem;
    margin-block-end: 4rem;
  }
}
.p-reason__heading:after {
  content: " ";
  display: block;
  background: #242a39;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  aspect-ratio: 52/25;
  width: 52px;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3.3333333333vw;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-reason__heading:after {
    bottom: -24px;
  }
}
.p-reason__row {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 6.6666666667vw 0;
  grid-template-areas: "pic" "contents";
}
@media screen and (min-width: 768px) {
  .p-reason__row {
    grid-template-columns: 30% 1fr;
    grid-template-rows: auto;
    gap: 0px 60px;
    grid-template-areas: "pic contents";
  }
}
.p-reason__contents {
  grid-area: contents;
}
.p-reason__contents p {
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.6470588235;
  margin-block-end: 0;
}
@media screen and (min-width: 768px) {
  .p-reason__contents p {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.9166666667;
  }
}
.p-reason__pic {
  grid-area: pic;
  justify-self: center;
}
@media screen and (min-width: 768px) {
  .p-reason__pic {
    position: relative;
    justify-self: end;
  }
}
.p-reason__pic img {
  position: relative;
  top: 2rem;
}
.p-reason__list {
  width: fit-content;
  display: grid;
  grid-gap: 2.6666666667vw;
  margin-block: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-reason__list {
    grid-gap: 1.6rem;
    margin-block: 2rem;
  }
}
@media (min-width: 1000px) {
  .p-reason__list {
    max-width: 850px;
  }
}
.p-reason__list li {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.5625;
  position: relative;
  color: white;
  background: #dd8383;
  border-radius: 5px;
  text-align: left;
  padding-inline-start: 8vw;
  padding-inline-end: 2.6666666667vw;
  padding-block: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-reason__list li {
    padding-inline-start: 4rem;
    padding-inline-end: 2rem;
    padding-block: 0.5rem;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 2.0833333333;
    letter-spacing: -0.05rem;
  }
}
.p-reason__list li:before {
  content: "";
  aspect-ratio: 27/38;
  width: 5.3333333333vw;
  height: auto;
  background: url(../images/icon_point.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 1.3333333333vw;
  top: -0.6vw;
  margin: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-reason__list li:before {
    width: 30px;
    left: 0.8rem;
    top: -2.5px;
  }
}
.p-reason__thumbnails {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3333333333vw;
  margin-block: 8vw;
}
@media screen and (min-width: 768px) {
  .p-reason__thumbnails {
    width: 106%;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-inline-start: -3%;
    margin-inline-end: -3%;
    margin-block: 5rem;
  }
}
.p-reason__thumbnails li {
  border-radius: 5px;
  overflow: hidden;
}
.p-reason__text {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
}
.p-reason__text p:last-child {
  margin-block-end: 0;
}
.p-reason__cta {
  position: relative;
  overflow: hidden;
  padding-block-start: 16vw;
  padding-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-reason__cta {
    padding-block-start: 12rem;
    padding-block-end: 5.5rem;
  }
}

.c-bg--pattern {
  background: #5a5f70 url(../images/pattern.png) repeat;
}

.c-line-bg--03:before {
  content: " ";
  display: block;
  clip-path: polygon(0 0, 100% calc(100% - 53.3333333333vw), 100% 100%, 0 53.3333333333vw);
  background: #606879;
  width: 100%;
  height: 66.6666666667vw;
  position: absolute;
  left: 0;
  right: 0;
  top: 4vw;
  margin: auto;
  z-index: 15;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .c-line-bg--03:before {
    clip-path: polygon(0 0, 100% calc(100% - 400px), 100% 100%, 0 400px);
    width: 1980px;
    height: 600px;
    left: -50%;
    right: -50%;
    top: 0;
  }
}
.c-line-bg--03:after {
  content: " ";
  display: block;
  clip-path: polygon(0 calc(100% - 53.3333333333vw), 100% 0%, 100% 53.3333333333vw, 0% 100%);
  background: #606879;
  width: 100%;
  height: 66.6666666667vw;
  position: absolute;
  left: 0;
  right: 0;
  top: 4vw;
  margin: auto;
  z-index: 15;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .c-line-bg--03:after {
    clip-path: polygon(0 calc(100% - 400px), 100% 0%, 100% 400px, 0% 100%);
    width: 1980px;
    height: 600px;
    left: -50%;
    right: -50%;
    top: 0;
  }
}

/*==========================================
profile
===========================================*/
.p-profile {
  padding-block-start: 16vw;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-profile {
    padding-block-start: 13rem;
  }
}
.p-profile__heading {
  text-align: left;
  margin-inline-start: 33.3333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-profile__heading {
    margin-inline-start: revert;
  }
}
.p-profile__icon {
  position: absolute;
  top: -17.3333333333vw;
  right: 0;
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .p-profile__icon {
    position: relative;
    top: -10px;
    transform: rotate(-20deg);
    padding-inline-end: 2rem;
  }
}
.p-profile__wrap {
  position: relative;
  width: 100%;
  background: #f5f8ff;
  border-radius: 10px;
  padding-block-start: 6.6666666667vw;
  padding-block-end: 6.6666666667vw;
  margin-block-start: 33.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-profile__wrap {
    padding-block-start: 5rem;
    padding-block-end: 4rem;
    margin-block-start: revert;
  }
}
.p-profile__wrap:after {
  content: " ";
  display: block;
  background: #5a5f70;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transform: rotate(-6deg);
  border-radius: 10px;
}
.p-profile__row {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0px 2.6666666667vw;
  grid-template-areas: "pic" "contents";
}
@media screen and (min-width: 768px) {
  .p-profile__row {
    grid-template-columns: 65% auto;
    grid-template-rows: auto;
    gap: 0px 3rem;
    grid-template-areas: "contents pic";
  }
}
.p-profile__contents {
  grid-area: contents;
  margin-inline: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-profile__contents {
    margin-inline: revert;
  }
}
.p-profile__pic {
  grid-area: pic;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-profile__pic {
    z-index: 2;
  }
}
.p-profile__aiba {
  position: absolute;
  top: -73.3333333333vw;
  left: -2.6666666667vw;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-profile__aiba {
    top: -120px;
    left: revert;
    right: -30px;
  }
}
.p-profile__aiba img {
  width: 46.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__aiba img {
    width: auto;
  }
}
.p-profile__title {
  grid-area: title;
  text-align: center;
  margin-block: 2.6666666667vw;
  padding-block: 1.3333333333vw;
  padding-inline: 1.3333333333vw;
  font-size: 4.6666666667vw;
  font-weight: 700;
  line-height: 1.1428571429;
  background: #83afbb;
  color: white;
  position: relative;
  left: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__title {
    margin-block: 2rem;
    padding-block: 1.4rem;
    padding-inline: 2rem;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5384615385;
    left: -110px;
  }
}
.p-profile__subTitle {
  text-align: center;
  width: fit-content;
  margin-block: 2.6666666667vw;
  padding-block: 1.3333333333vw;
  padding-inline: 6.6666666667vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.3333333333;
  background: #dd8383;
  color: white;
  position: relative;
  left: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__subTitle {
    margin-block: 2rem;
    padding-block: 0.2rem;
    padding-inline: 10rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
    left: -110px;
  }
}
.p-profile__inner {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
.p-profile__text {
  margin-inline: auto;
  grid-area: text;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .p-profile__text {
    padding-inline: 0;
  }
}
.p-profile__text p {
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .p-profile__text p {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.7647058824;
  }
}
.p-profile__label {
  width: fit-content;
  margin-inline: auto;
  color: white;
  border-radius: 5px;
  padding-inline: 4vw;
  padding-block: 1.3333333333vw;
  background: #242a39;
  font-size: 4.2666666667vw;
  font-weight: 400;
  line-height: 1.375;
  margin-block-start: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__label {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.1111111111;
    padding-inline: 1rem;
    padding-block: 1rem;
    margin-block-start: 2rem;
  }
}
.p-profile__en {
  width: fit-content;
  padding-inline: 2.6666666667vw;
  padding-block: 1.3333333333vw;
  background: white;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__en {
    padding-inline: 2rem;
    padding-block: 1rem;
    top: -2.6rem;
  }
}
.p-profile__bg-l {
  aspect-ratio: 1178/987;
  width: 157.0666666667vw;
  height: auto;
  position: absolute;
  top: 133.3333333333vw;
  left: -6.6666666667vw;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-profile__bg-l {
    width: 1178px;
    top: 450px;
    left: calc(50% - 1400px);
  }
}
.p-profile__bg-r {
  aspect-ratio: 1011/769;
  width: 134.8vw;
  height: auto;
  position: absolute;
  top: 26.6666666667vw;
  right: -2.6666666667vw;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-profile__bg-r {
    width: 1178px;
    top: 0;
    right: calc(50% - 1150px);
  }
}

.u-gray {
  color: #5c6579;
}

/*==========================================
user
===========================================*/
.p-user {
  padding-top: 13.3333333333vw;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-user {
    padding-top: 15rem;
    padding-bottom: 9rem;
  }
}
.p-user__wrap {
  width: 90%;
  margin-inline: auto;
  grid-area: book;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 29.3333333333vw 0;
  margin-block-start: 26.6666666667vw;
  margin-block-end: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-user__wrap {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem 3rem;
    margin-block-start: 8rem;
    margin-block-end: 8rem;
  }
}
.p-user__block {
  position: relative;
  width: 100%;
  background: #f5f8ff;
  border-radius: 10px;
  padding-block-start: 13.3333333333vw;
  padding-block-end: 6.6666666667vw;
  padding-inline: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-user__block {
    padding-block-start: 6rem;
    padding-block-end: 3rem;
    padding-inline: 4rem;
  }
}
.p-user__block:after {
  content: " ";
  display: block;
  background: #83afbb;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transform: rotate(-6deg);
  border-radius: 10px;
}
.p-user__block:nth-child(2):after, .p-user__block:nth-child(3):after {
  background: #dd8383;
}
.p-user__thumb {
  grid-area: thumb;
  position: relative;
}
.p-user__thumb img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -33.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-user__thumb img {
    top: -140px;
  }
}
.p-user__body {
  grid-area: body;
  border-radius: 10px;
}
.p-user__body p {
  font-size: 4.1333333333vw;
  font-weight: 700;
  line-height: 1.6129032258;
  margin-block-end: 0;
}
@media screen and (min-width: 768px) {
  .p-user__body p {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}

/*==========================================
overview,price
===========================================*/
.p-overview {
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-overview {
    padding-block-start: 10rem;
    padding-block-end: 8rem;
  }
}

.p-price {
  padding-block-end: 0;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-price {
    padding-block-end: 0;
  }
}

.p-overview__title,
.p-price__title {
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-overview__title,
  .p-price__title {
    margin-block-end: 3rem;
  }
}
.p-overview__grid, .p-overview__grid-price,
.p-price__grid,
.p-price__grid-price {
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-overview__grid, .p-overview__grid-price,
  .p-price__grid,
  .p-price__grid-price {
    grid-template-rows: revert;
    grid-template-columns: repeat(2, auto);
    gap: 0.5rem;
  }
}
.p-overview__grid dt,
.p-overview__grid dd, .p-overview__grid-price dt,
.p-overview__grid-price dd,
.p-price__grid dt,
.p-price__grid dd,
.p-price__grid-price dt,
.p-price__grid-price dd {
  box-shadow: 0px 8px 0px 0px rgba(1, 15, 72, 0.2);
  text-align: left;
}
.p-overview__grid dt, .p-overview__grid-price dt,
.p-price__grid dt,
.p-price__grid-price dt {
  width: 100%;
  font-size: 4.2666666667vw;
  font-weight: 600;
  line-height: 1.125;
  padding: 1.5rem;
  color: white;
  background: #242a39;
}
@media screen and (min-width: 768px) {
  .p-overview__grid dt, .p-overview__grid-price dt,
  .p-price__grid dt,
  .p-price__grid-price dt {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.6363636364;
    padding: 4rem;
  }
}
.p-overview__grid dd, .p-overview__grid-price dd,
.p-price__grid dd,
.p-price__grid-price dd {
  width: 100%;
  font-size: 4.5333333333vw;
  font-weight: 600;
  line-height: 1.3529411765;
  padding: 1rem;
  background: white;
}
@media screen and (min-width: 768px) {
  .p-overview__grid dd, .p-overview__grid-price dd,
  .p-price__grid dd,
  .p-price__grid-price dd {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    padding: 2.5rem;
    padding-left: 4rem;
    letter-spacing: 0.2rem;
    display: grid;
    align-items: center;
  }
}
.p-overview__grid .seminar, .p-overview__grid-price .seminar,
.p-price__grid .seminar,
.p-price__grid-price .seminar {
  background: #09b609;
}
.p-overview__grid .party, .p-overview__grid-price .party,
.p-price__grid .party,
.p-price__grid-price .party {
  background: #e7316e;
}
.p-overview__grid .notice, .p-overview__grid-price .notice,
.p-price__grid .notice,
.p-price__grid-price .notice {
  font-size: 3.4666666667vw;
  font-weight: 500;
  line-height: 1.5384615385;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-overview__grid .notice, .p-overview__grid-price .notice,
  .p-price__grid .notice,
  .p-price__grid-price .notice {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-overview__grid-price,
  .p-price__grid-price {
    grid-template-columns: 40% auto;
  }
}
.p-overview__detail,
.p-price__detail {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, auto);
  margin-block-start: 2.6666666667vw;
  gap: 0.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .p-overview__detail,
  .p-price__detail {
    width: 80%;
    gap: 0.5rem 0;
    margin-block-start: 2rem;
  }
}
.p-overview__detail dt,
.p-overview__detail dd,
.p-price__detail dt,
.p-price__detail dd {
  border: none;
  padding-block: 1.3333333333vw;
  color: black;
  box-shadow: none;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-overview__detail dt,
  .p-overview__detail dd,
  .p-price__detail dt,
  .p-price__detail dd {
    padding-block: 1.2rem;
    border: none;
  }
}
.p-overview__detail dt,
.p-price__detail dt {
  background: #83afbb;
}
.p-overview__detail dd,
.p-price__detail dd {
  background: #ebecee;
}
.p-overview .no,
.p-price .no {
  font-family: "Roboto", sans-serif;
}
.p-overview .price,
.p-price .price {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3888888889;
}
.p-overview__cell,
.p-price__cell {
  display: grid;
  grid-template-columns: 30% 50px calc(60% - 50px);
  align-items: center;
  gap: 0;
  font-family: "Roboto", sans-serif;
}

.u-line-through {
  text-decoration: line-through;
}

/*==========================================
program
===========================================*/
.p-program {
  position: relative;
  z-index: 0;
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-program {
    padding-block-start: 25rem;
    padding-block-end: 10rem;
  }
}
.p-program__wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 0.8rem;
  padding-block-start: 2.6666666667vw;
  padding-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-program__wrap {
    padding-block-start: 3rem;
    padding-block-end: 3rem;
  }
}
.p-program__block {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 8px 0px 0px rgba(1, 15, 72, 0.2);
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding-block: 5.3333333333vw;
  padding-inline: 4vw;
  background: white;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .p-program__block {
    padding-block: 3rem;
    padding-inline: 2rem;
    flex-wrap: nowrap;
    grid-gap: 1rem;
  }
}
.p-program__block:after {
  content: " ";
  display: block;
  aspect-ratio: 52/22;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: auto;
  height: 4vw;
  background: white;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -3.8666666667vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-program__block:after {
    height: 22px;
    bottom: -21px;
  }
}
.p-program__block:last-child:after {
  display: none;
}
.p-program__block:nth-child(odd) {
  background: #242a39;
  color: white;
}
.p-program__block:nth-child(odd):after {
  background: #242a39;
}
.p-program .time {
  font-family: "Roboto", sans-serif;
  width: 40%;
  font-size: 5.0666666667vw;
  font-weight: 700;
  line-height: 1.2105263158;
  margin-inline-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-program .time {
    width: 18%;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3846153846;
    margin-inline-end: 1rem;
  }
}
.p-program__title {
  width: 60%;
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.3529411765;
}
@media screen and (min-width: 768px) {
  .p-program__title {
    width: 100%;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.5652173913;
  }
}
.p-program__detail {
  width: 100%;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.5714285714;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #f5f8ff;
}
@media screen and (min-width: 768px) {
  .p-program__detail {
    margin-top: 0;
    padding-top: 0;
    flex: 1;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6666666667;
    border: none;
  }
}
.p-program__notice {
  margin-block-start: 2.6666666667vw;
  margin-block-end: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-program__notice {
    margin-block-start: 1rem;
    margin-block-end: 0;
  }
}
.p-program__notice p {
  font-size: 3.4666666667vw;
  font-weight: 400;
  line-height: 1.6923076923;
}
@media screen and (min-width: 768px) {
  .p-program__notice p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.875;
  }
}

/*==========================================
ending
===========================================*/
.p-ending {
  position: relative;
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
  overflow: hidden;
  background: #0a0302;
}
@media screen and (min-width: 768px) {
  .p-ending {
    padding-block-start: 8rem;
    padding-block-end: 10rem;
  }
}
.p-ending__heading {
  display: block;
  margin-block-end: 2rem;
}
@media screen and (min-width: 768px) {
  .p-ending__heading {
    margin-block-end: 4rem;
  }
}
.p-ending__text {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 2.0625;
  text-align: left;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-ending__text {
    width: 100%;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.6666666667;
    text-align: center;
  }
}
.p-ending__text .no {
  font-family: "Roboto", sans-serif;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.65;
}
@media screen and (min-width: 768px) {
  .p-ending__text .no {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2857142857;
  }
}
.p-ending__text .u-pink {
  color: #e7316e;
}
.p-ending__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-ending__bg {
    max-width: inherit;
    position: absolute;
    top: 0;
    left: 50%;
    aspect-ratio: 1980/1057;
    width: 130vw;
    height: auto;
    margin-inline-start: -65vw;
    z-index: 0;
  }
}
@media (min-width: 1500px) {
  .p-ending__bg {
    width: 1980px;
    margin-left: -990px;
  }
}

.u-shadow {
  text-shadow: 0px 0px 13.12px rgb(0, 0, 0);
}

/*==========================================
qa
===========================================*/
.p-qa {
  position: relative;
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-qa {
    padding-block-start: 8rem;
    padding-block-end: 10rem;
  }
}
.p-qa__heading {
  display: block;
  margin-block-end: 2rem;
}
@media screen and (min-width: 768px) {
  .p-qa__heading {
    margin-block-end: 4rem;
  }
}
.p-qa__en {
  font-size: 8vw;
  font-weight: 700;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  color: #32cc32;
  text-align: center;
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-qa__en {
    margin-block-end: revert;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.5;
  }
}

/*--------------------------
accordion
----------------------------*/
.c-accordion__container {
  position: relative;
  width: 100%;
  outline: 0;
  cursor: pointer;
  display: grid;
  grid-gap: 1rem;
  margin-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-accordion__container {
    grid-gap: 2rem;
    margin-block-start: 5rem;
  }
}
.c-accordion__container:after {
  content: " ";
  display: block;
  background: url(../images/flow_arrow.png);
  background-size: contain;
  width: 6.6666666667vw;
  height: auto;
  aspect-ratio: 31/37;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -5.3333333333vw;
  z-index: 10;
  transform: rotateZ(90deg);
}
@media screen and (min-width: 768px) {
  .c-accordion__container:after {
    width: 31px;
    top: -2rem;
  }
}
.c-accordion__item {
  display: flex;
  flex-direction: column;
}
.c-accordion-q {
  margin: 0;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
  background: #dde1eb;
  transition: all 0.3s ease;
  padding-block: 4vw;
  padding-inline-start: 8.6666666667vw;
  padding-inline-end: 10.6666666667vw;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.4666666667;
}
@media screen and (min-width: 768px) {
  .c-accordion-q {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 2.8rem 5rem;
  }
}
.c-accordion-q:before {
  content: " ";
  width: 4vw;
  height: auto;
  aspect-ratio: 18/25;
  color: #32cc32;
  background: url(../images/icon_q.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 4.6666666667vw;
  left: 2.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.375;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-accordion-q:before {
    width: 18px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 0.8333333333;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 20px;
    top: 3rem;
  }
}
.c-accordion-q:after {
  content: "";
  text-align: center;
  width: 4vw;
  height: 4vw;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  background: url(../images/toggle_dark.png) no-repeat;
  background-size: contain;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-accordion-q:after {
    width: 20px;
    height: 20px;
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-accordion-q:hover {
    background: #32cc32;
    color: white;
  }
  .c-accordion-q:hover:before {
    color: white;
    color: #32cc32;
    background: url(../images/icon_q_light.png) no-repeat;
    background-size: contain;
  }
  .c-accordion-q:hover:after {
    background: url(../images/toggle_light.png) no-repeat;
  }
}
.c-accordion-a {
  position: relative;
  overflow: hidden;
  transition-property: all;
  transition-timing-function: ease;
  background: #f5f8ff;
  padding-inline-start: 4vw;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.4666666667;
}
@media screen and (min-width: 768px) {
  .c-accordion-a {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.6470588235;
    padding-inline-start: revert;
  }
}
.c-accordion-a:before {
  content: "";
  width: 4vw;
  height: auto;
  aspect-ratio: 18/20;
  color: #32cc32;
  background: url(../images/icon_a.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 5.3333333333vw;
  left: 2.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.375;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-accordion-a:before {
    width: 18px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 0.8333333333;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 20px;
    top: 1.8rem;
  }
}
.c-accordion-a p {
  margin: 0;
  padding-block: 4vw;
  padding-inline-start: 4vw;
  padding-inline-end: 4vw;
}
@media screen and (min-width: 768px) {
  .c-accordion-a p {
    padding-block-start: 1rem;
    padding-block-end: 2rem;
    padding-inline-start: 5rem;
    padding-inline-end: 3rem;
  }
}
.c-accordion__item.js-enabled > .c-accordion-a {
  visibility: hidden;
}
.c-accordion__item.is-active > .c-accordion-a {
  visibility: visible;
}
.c-accordion__item.js-enabled.is-active > .c-accordion-q {
  background: #32cc32;
  color: white;
}
.c-accordion__item.js-enabled.is-active > .c-accordion-q:before {
  color: white;
  color: #32cc32;
  background: url(../images/icon_q_light.png) no-repeat;
  background-size: contain;
}
.c-accordion__item.js-enabled.is-active > .c-accordion-q:after {
  width: 5.3333333333vw;
  height: 0.4vw;
  background: url(../images/toggle_light.png) no-repeat center left;
}
@media screen and (min-width: 768px) {
  .c-accordion__item.js-enabled.is-active > .c-accordion-q:after {
    width: 20px;
    height: 2px;
  }
}
.c-accordion-q:focus {
  outline: 0;
}

/*==========================================
form
===========================================*/
.p-form {
  position: relative;
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-form {
    padding-block-start: 10rem;
    padding-block-end: 6rem;
  }
}
.p-form__wrap {
  width: 100%;
  background: white;
  border-radius: 10px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-start: 4vw;
  padding-block: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-form__wrap {
    grid-gap: 7rem;
    margin-block-start: 5rem;
    padding-block: 5rem;
  }
}
.p-form__wrap p {
  font-size: 4.1333333333vw;
  font-weight: 500;
  line-height: 1.6129032258;
}
@media screen and (min-width: 768px) {
  .p-form__wrap p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6666666667;
  }
}

/*==========================================
HubSpot
===========================================*/
.hbspt-form {
  width: 90%;
  margin-inline: auto;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .hbspt-form {
    width: 100%;
    max-width: 790px;
  }
}

/*********** hubSpot 外部CSS ***********/
.hbspt-form {
  /*********** button ***********/
  /*********** input ***********/
}
.hbspt-form .hs-form-required {
  color: red;
}
.hbspt-form label {
  font-size: 4.2666666667vw;
  font-weight: 400;
  line-height: 1.3125;
  width: 130px;
  display: flex;
  float: none;
  width: auto;
  font-weight: 500;
  line-height: 20px;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .hbspt-form label {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7777777778;
  }
}
.hbspt-form fieldset {
  border: 0;
  padding: 0;
  margin-inline: auto;
  max-width: 1000px;
}
.hbspt-form fieldset.form-columns-2 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .hbspt-form fieldset.form-columns-2 {
    flex-direction: row;
  }
}
.hbspt-form fieldset.form-columns-2 .hs-form-field {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hbspt-form fieldset.form-columns-2 .hs-form-field {
    width: 48%;
  }
}
.hbspt-form .hs-form-field label:not(.hs-error-msg) {
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.2222222222;
}
@media screen and (min-width: 768px) {
  .hbspt-form .hs-form-field label:not(.hs-error-msg) {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6666666667;
  }
}
.hbspt-form .field {
  margin-bottom: 18px;
}
.hbspt-form .hs-button {
  white-space: pre-wrap;
}
.hbspt-form .hs-button,
.hbspt-form .hs-button:hover,
.hbspt-form .hs-button:hover:not(.inactive),
.hbspt-form .hs-button:focus,
.hbspt-form .hs-button:active,
.hbspt-form .hs-button:active:not(.inactive):not(.link) {
  background: #32cc32;
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.0588235294;
}
@media screen and (min-width: 768px) {
  .hbspt-form .hs-button,
  .hbspt-form .hs-button:hover,
  .hbspt-form .hs-button:hover:not(.inactive),
  .hbspt-form .hs-button:focus,
  .hbspt-form .hs-button:active,
  .hbspt-form .hs-button:active:not(.inactive):not(.link) {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1818181818;
    color: black;
  }
}
.hbspt-form .hs-button,
.hbspt-form .hs-form-field input[type=text],
.hbspt-form .hs-form-field input[type=email],
.hbspt-form .hs-form-field input[type=phone],
.hbspt-form .hs-form-field input[type=number],
.hbspt-form .hs-form-field input[type=tel],
.hbspt-form .hs-form-field input[type=date],
.hbspt-form .hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.hbspt-form .hs-button {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: center;
  transition: all 0.15s;
  color: black;
  background: #242a39;
  border: none;
  border-radius: 5px;
  padding-block: 5.3333333333vw;
  padding-inline: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .hbspt-form .hs-button {
    border-radius: 10px;
    padding-block: 3rem;
    padding-inline: 3rem;
  }
}
.hbspt-form .hs_submit {
  text-align: center;
  margin-top: 10px;
}
.hbspt-form .p-hubSpot input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]),
.hbspt-form .p-hubSpot fieldset input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]) {
  box-sizing: border-box;
  padding: 0 15px;
  min-height: 27px;
}
.hbspt-form .p-hubSpot > div > div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]),
.hbspt-form .hs-custom-style fieldset > div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
  max-width: 100%;
}
.hbspt-form .hs-button,
.hbspt-form .hs-form-field input[type=text],
.hbspt-form .hs-form-field input[type=email],
.hbspt-form .hs-form-field input[type=phone],
.hbspt-form .hs-form-field input[type=number],
.hbspt-form .hs-form-field input[type=tel],
.hbspt-form .hs-form-field input[type=date],
.hbspt-form .hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.hbspt-form input.hs-input.error,
.hbspt-form div.field.error input,
.hbspt-form div.field.error textarea,
.hbspt-form div.field.error .chzn-choices,
.hbspt-form textarea.hs-input.error,
.hbspt-form select.hs-input.error {
  border-color: #c87872;
}
.hbspt-form .hs-custom-style .hs-input,
.hbspt-form .hs-custom-style fieldset {
  max-width: 100%;
}
.hbspt-form .hs-input:not([type=file]) {
  background-color: #f5f8fa;
  max-width: inherit;
  display: inline-block;
  aspect-ratio: 1/1;
  width: 6.6666666667vw;
  height: auto;
  max-width: inherit;
  padding: 9px 10px;
  border: 1px solid #cbd6e2;
  box-sizing: border-box;
  border-radius: 3px;
  float: none;
}
@media screen and (min-width: 768px) {
  .hbspt-form .hs-input:not([type=file]) {
    width: 30px;
    margin: 0;
    margin-right: 1rem;
  }
}
.hbspt-form .hs-fieldtype-text .hs-input,
.hbspt-form .hs-fieldtype-phonenumber .hs-input {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  display: block;
  height: 40px;
  padding: 9px 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
  border: 1px solid #cbd6e2;
  box-sizing: border-box;
  border-radius: 3px;
}
.hbspt-form .hs-fieldtype-text input.hs-input[type=email] {
  height: 40px;
}
@media screen and (min-width: 768px) {
  .hbspt-form .hs-fieldtype-text input.hs-input[type=email] {
    height: 80px;
  }
}
@media screen and (min-width: 768px) {
  .hbspt-form .hs-form-booleancheckbox-display {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.hbspt-form .hs-form-booleancheckbox-display p {
  text-align: center;
  padding-left: 1rem;
}
.hbspt-form .hs-form-booleancheckbox:before {
  display: none;
}
.hbspt-form .hs-form-booleancheckbox span {
  padding-left: 1rem;
}
.hbspt-form .hs-form * {
  box-sizing: border-box;
}
.hbspt-form .inputs-list {
  text-align: center;
  margin-top: 1rem;
}
.hbspt-form .inputs-list li:before {
  display: none;
}
.hbspt-form .hs-richtext p {
  text-align: center;
  padding-bottom: 1rem;
}
.hbspt-form .hs-shoseki {
  text-align: center;
  padding-top: 2rem;
}
.hbspt-form .hs-shoseki span {
  text-align: center;
}
.hbspt-form .multi-container {
  width: 100%;
  display: grid;
  justify-content: center;
  padding-top: 2.6666666667vw;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .hbspt-form .multi-container {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 2rem;
    flex-direction: row;
    gap: 1rem;
  }
}
.hbspt-form .hs-form-radio-display {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.hbspt-form .hs-form-radio-display span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hbspt-form .hs-form-radio {
  width: 100%;
  margin-top: 0;
  display: flex;
  align-items: center;
  text-indent: inherit;
  background: #242a39;
  padding-inline: 2.6666666667vw;
  padding-block: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .hbspt-form .hs-form-radio {
    justify-content: center;
    width: 100%;
    background: #242a39;
    padding-inline: 1rem;
    padding-block: 1rem;
  }
}
.hbspt-form .hs-form-radio .hs-input {
  margin-right: 1rem;
}
.hbspt-form .hs-form-radio .hs-input[type=radio] {
  accent-color: #12aa12;
}
.hbspt-form .grecaptcha-badge,
.hbspt-form .grecaptcha-logo {
  margin-inline: auto;
  text-align: center;
}
.hbspt-form .legal-consent-container {
  margin-block-start: 4vw;
}
@media screen and (min-width: 768px) {
  .hbspt-form .legal-consent-container {
    margin-block-start: 3rem;
  }
}