@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--light {
  background-color: #f9f6f0;
}

.c-bg--texture {
  background: url(../images/texture.png) repeat;
}

.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 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;
}

/*==========================================
setting
===========================================*/
/*==========================================
btn
===========================================*/
.c-btn {
  width: 100%;
  height: auto;
  color: black;
  letter-spacing: 0.04em;
  border-radius: 5px;
  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: #9B8758;
  background: linear-gradient(0deg, rgb(155, 135, 88) 40%, rgb(255, 243, 220) 100%);
  border: 2px solid #34435a;
  /*box-shadow: 0px 8px 0px 0px rgba(1, 15, 72, 0.2);*/
}
@media screen and (min-width: 768px) {
  .c-btn {
    border: 5px solid #34435a;
    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 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: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.7142857143;
    margin-block-end: 2rem;
    letter-spacing: 0.3rem;
  }
}
.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 .middle {
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .c-heading .middle {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
.c-heading .small {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-heading .small {
    font-size: 3rem;
    font-weight: 700;
    line-height: 2;
  }
}

.c-title-bar {
  background: #020f1c;
  text-align: center;
  padding-block: 4vw;
}
@media screen and (min-width: 768px) {
  .c-title-bar {
    padding-block: 5rem;
  }
}

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

.c-title-linePop--cta {
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-title-linePop--cta {
    font-size: 3rem;
    font-weight: 500;
    line-height: 2;
  }
}

.c-title-linePop--dark {
  color: #34435a;
}
.c-title-linePop--dark:before, .c-title-linePop--dark:after {
  background: #34435a;
}

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

/*********** title ribbon ***********/
.c-title-ribbon {
  width: 100%;
  margin-inline: auto;
  position: relative;
  display: grid;
  grid-template-columns: 4% auto 4%;
  grid-template-areas: "left center right";
  column-gap: 2.6666666667vw;
  align-items: center;
  text-align: center;
  margin-block-end: 2.6666666667vw;
  margin-block-start: 4vw;
}
@media screen and (min-width: 768px) {
  .c-title-ribbon {
    width: fit-content;
    grid-template-columns: 3rem auto 3rem;
    column-gap: 20px;
    margin-block-end: 1rem;
    margin-block-start: 1rem;
  }
}
.c-title-ribbon .center {
  grid-area: center;
  display: block;
  z-index: 1;
  padding-inline: 2.6666666667vw;
  padding-block: 1.3333333333vw;
  background: #d40101;
}
@media screen and (min-width: 768px) {
  .c-title-ribbon .center {
    padding-inline: 1rem;
    padding-block: 1rem;
    padding-block-start: 0.5rem;
    min-height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.c-title-ribbon:after {
  grid-area: right;
  right: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-title-ribbon:after {
    right: 10px;
  }
}
.c-title-ribbon:before {
  grid-area: left;
  left: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-title-ribbon:before {
    left: 10px;
  }
}
.c-title-ribbon:after, .c-title-ribbon:before {
  content: "";
  display: block;
  background: url(../images/ribbon.png) no-repeat;
  background-size: contain;
  aspect-ratio: 59/96;
  width: 7.8666666667vw;
  height: auto;
  z-index: 0;
  position: absolute;
  bottom: -2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-title-ribbon:after, .c-title-ribbon:before {
    width: 59px;
    bottom: -13px;
  }
}
.c-title-ribbon: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);
}

/*==========================================
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: 1160px;
}
.l-inner--wide {
  max-width: 1200px;
  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: 1200px) {
  .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;
}
.p-hero__inner {
  padding-block-start: 8vw;
  aspect-ratio: 750/1334;
  width: 100%;
  height: auto;
  margin-inline: auto;
  padding-inline: 2.6666666667vw;
  padding-block-end: 6.6666666667vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    width: fit-content;
    aspect-ratio: revert;
    padding-block-start: 8rem;
    padding-block-end: 5rem;
    padding-inline: 0;
  }
}
.p-hero__heading {
  width: 100%;
  grid-area: heading;
  position: relative;
  z-index: 5;
}
.p-hero__sponsor {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-hero__sponsor {
    width: fit-content;
  }
}
.p-hero__sponsor-logo {
  width: 40vw;
  margin-block-end: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__sponsor-logo {
    width: auto;
    position: absolute;
    bottom: 0;
    right: -250px;
    margin-block-end: revert;
  }
}
.p-hero__label {
  width: fit-content;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.5;
  padding-inline: 2.6666666667vw;
  padding-block: 2vw;
  background: #958152;
  margin-block-end: 2.6666666667vw;
  color: white;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-hero__label {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.8181818182;
    letter-spacing: -0.1rem;
    padding-inline: 2rem;
    padding-block: 0.5rem;
    margin-block-end: 1.5rem;
  }
}
.p-hero__label:after {
  content: " ";
  display: block;
  background: #958152;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  width: 5.3333333333vw;
  height: 100%;
  position: absolute;
  right: -5.2666666667vw;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-hero__label:after {
    width: 40px;
    right: -39.5px;
  }
}
.p-hero__title {
  font-size: 8.5333333333vw;
  font-weight: 700;
  line-height: 1.40625;
  padding-block-end: 2.6666666667vw;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.4285714286;
    padding-block-end: 1rem;
  }
}
.p-hero__title .large {
  font-size: 8.5333333333vw;
  font-weight: 700;
  line-height: 1.40625;
}
@media screen and (min-width: 768px) {
  .p-hero__title .large {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3333333333;
  }
}
.p-hero__title .small {
  font-size: 7.3333333333vw;
  font-weight: 700;
  line-height: 1.6363636364;
}
@media screen and (min-width: 768px) {
  .p-hero__title .small {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.6;
  }
}
.p-hero__title .no {
  font-size: 12vw;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__title .no {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
  }
}
.p-hero__caption {
  display: block;
  width: fit-content;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.4375;
  margin-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__caption {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6666666667;
    letter-spacing: -0.05rem;
    padding-inline: 1rem;
    margin-block-end: 3rem;
  }
}
.p-hero__information {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  background: #1d477c;
  padding-inline: 4vw;
  padding-block: 5.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-hero__information {
    padding-inline: 3.5rem;
    padding-block: 3.5rem;
    z-index: 10;
  }
}
.p-hero__information:after {
  content: " ";
  display: block;
  background: #1d477c;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}
.p-hero__information-row {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 4vw 0;
  grid-template-areas: "title" "detail" "book";
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-hero__information-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 20px 40px;
    grid-template-areas: "title book" "detail book";
  }
}
.p-hero__information-title {
  grid-area: title;
  font-size: 5.2vw;
  font-weight: 700;
  line-height: 1.5384615385;
  background: #b19f54;
  padding-inline: 2.6666666667vw;
  padding-block: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__information-title {
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.8518518519;
    padding-inline: 2rem;
    padding-block: 0;
  }
}
.p-hero__information-detail {
  grid-area: detail;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "date date" "fee  teacher";
  gap: 4vw;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.3888888889;
  color: white;
}
@media screen and (min-width: 768px) {
  .p-hero__information-detail {
    gap: 2rem;
    grid-auto-flow: column;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5384615385;
  }
}
.p-hero__information-detail li {
  border-left: 4px solid #b19f54;
  padding-inline-start: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__information-detail li {
    border-left: 7px solid #b19f54;
    padding-inline-start: 2rem;
  }
}
.p-hero__information-detail li .small {
  font-size: 3.4666666667vw;
  font-weight: 700;
  line-height: 1.5384615385;
}
@media screen and (min-width: 768px) {
  .p-hero__information-detail li .small {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.8181818182;
  }
}
.p-hero__information-detail li:nth-child(1) {
  grid-area: date;
}
.p-hero__information-detail li:nth-child(2) {
  grid-area: fee;
}
.p-hero__information-detail li:nth-child(2) {
  grid-area: teacher;
}
.p-hero__information-book {
  width: fit-content;
  grid-area: book;
  padding-inline-start: 5.3333333333vw;
  padding-block-start: 5.3333333333vw;
  padding-block-end: 5.3333333333vw;
  position: relative;
  align-content: center;
}
@media screen and (min-width: 768px) {
  .p-hero__information-book {
    width: 100%;
    padding-inline-start: 3rem;
    padding-block: 0;
  }
  .p-hero__information-book:before {
    content: " ";
    display: block;
    background: #b19f54;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.p-hero__book {
  height: 40vw;
}
@media screen and (min-width: 768px) {
  .p-hero__book {
    height: 170px;
  }
}
.p-hero__book-label {
  height: 20vw;
  position: absolute;
  top: -2.6666666667vw;
  right: -16vw;
}
@media screen and (min-width: 768px) {
  .p-hero__book-label {
    height: 110px;
    top: -60px;
    right: -60px;
  }
}
.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__cta-area {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  padding-inline: 4vw;
  padding-block: 4vw;
}
@media screen and (min-width: 768px) {
  .p-hero__cta-area {
    padding-inline: 3.5rem;
    padding-block: 3.5rem;
  }
}
.p-hero__cd {
  text-align: center;
}
.p-hero__cta {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-hero__cta {
    width: 100%;
    max-width: 500px;
  }
}
.p-hero__aiba {
  max-width: revert;
  position: absolute;
  aspect-ratio: 256/296;
  width: 42.6666666667vw;
  height: auto;
  top: 42.6666666667vw;
  right: 6.6666666667vw;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-hero__aiba {
    display: block;
    width: 256px;
    top: -80px;
    right: -310px;
  }
}
.p-hero__user01 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 407/340;
  z-index: 1;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-hero__user01 {
    display: block;
    width: 407px;
    top: -300px;
    left: -470px;
    right: revert;
  }
}
.p-hero__user02 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 379/303;
  z-index: 1;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-hero__user02 {
    display: block;
    width: 325px;
    top: 130px;
    left: -300px;
    right: revert;
  }
}
.p-hero__user03 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 310/241;
  z-index: 1;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-hero__user03 {
    display: block;
    width: 340px;
    top: -360px;
    right: -490px;
  }
}
.p-hero__user01-sp {
  max-width: revert;
  position: absolute;
  aspect-ratio: 407/340;
  width: 40vw;
  height: auto;
  top: -5.3333333333vw;
  right: -6.6666666667vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__user01-sp {
    display: none;
  }
}
.p-hero__user02-sp {
  max-width: revert;
  position: absolute;
  aspect-ratio: 379/303;
  width: 30.6666666667vw;
  height: auto;
  top: 20vw;
  right: -5.3333333333vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__user02-sp {
    display: none;
  }
}
.p-hero__user03-sp {
  max-width: revert;
  position: absolute;
  aspect-ratio: 310/241;
  width: 29.3333333333vw;
  height: auto;
  top: 69.3333333333vw;
  right: -1.3333333333vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__user03-sp {
    display: none;
  }
}
.p-hero__deco-l {
  max-width: revert;
  position: absolute;
  aspect-ratio: 507/825;
  z-index: 0;
  width: 66.6666666667vw;
  height: auto;
  top: 33.3333333333vw;
  left: 20vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__deco-l {
    display: block;
    width: 507px;
    top: 0;
    left: calc(50% - 900px);
  }
}
.p-hero__deco-rt {
  max-width: revert;
  position: absolute;
  aspect-ratio: 508/342;
  z-index: 0;
  width: 80vw;
  height: auto;
  top: 62.6666666667vw;
  right: -6.6666666667vw;
  z-index: 1;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-hero__deco-rt {
    display: block;
    width: 508px;
    top: 0;
    right: calc(50% - 900px);
  }
}
.p-hero__deco-rb {
  max-width: revert;
  position: absolute;
  aspect-ratio: 543/626;
  z-index: 0;
  width: 80vw;
  height: auto;
  bottom: 9.3333333333vw;
  right: -6.6666666667vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__deco-rb {
    display: block;
    width: 543px;
    bottom: 0;
    right: calc(50% - 900px);
  }
}

.u-gold {
  color: #f0e1c8;
}

/* footer.scss */
.p-footer {
  position: relative;
  padding-block-start: 6.6666666667vw;
  padding-block-end: 6.6666666667vw;
  /*********** info ***********/
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block-start: 5rem;
    padding-block-end: 4rem;
  }
}
.p-footer p {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: white;
  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__logo img {
  width: 40vw;
}
@media screen and (min-width: 768px) {
  .p-footer__logo img {
    width: auto;
  }
}
.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: white;
  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 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: white;
  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 white;
    border-right: 1px solid white;
    padding: 0.5rem 2rem;
    border-right: none;
  }
}
.p-footer__nav li a:hover {
  /*color: $color-key;*/
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-footer__nav li:last-child a {
    border-right: 1px solid white;
  }
}

/*==========================================
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: #0961bd;
}

.u-orange {
  color: #eb4e00;
}

.u-black {
  color: black;
}

.u-white {
  color: white;
}

.u-yellow {
  color: #ebd472;
}

.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--yellow {
  background: #fbd40b;
  background: linear-gradient(0deg, rgba(251, 212, 11, 0.5) 20%, rgba(251, 212, 11, 0) 20%);
}

.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 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: #269bfe;
  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 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: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding-block-start: 3rem;
  }
}
.c-cta__wrap {
  padding-block-end: 3rem;
  background: #020f1c;
}
.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: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-cta__area {
    width: 100%;
    max-width: 500px;
  }
}

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

/*==========================================
trouble
===========================================*/
.p-trouble {
  position: relative;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-trouble {
    padding-block-end: 6rem;
  }
}
.p-trouble__row {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 6.6666666667vw 0;
  grid-template-areas: "pic" "contents";
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__row {
    grid-template-columns: 25% 1fr;
    grid-template-rows: auto;
    gap: 0px 60px;
    grid-template-areas: "pic contents";
    margin-block-end: 4rem;
  }
}
.p-trouble__contents {
  grid-area: contents;
  align-content: flex-end;
}
.p-trouble__contents p {
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.6470588235;
  margin-block-end: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__contents p {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.9166666667;
  }
}
.p-trouble__pic {
  grid-area: pic;
  justify-self: center;
  position: relative;
  width: 100%;
  height: 26.6666666667vw;
  max-height: 456px;
}
@media screen and (min-width: 768px) {
  .p-trouble__pic {
    width: auto;
    justify-self: center;
  }
}
.p-trouble__pic img {
  max-width: revert;
  position: absolute;
  aspect-ratio: 192/456;
  width: 46.6666666667vw;
  height: auto;
  top: -2.6666666667vw;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__pic img {
    position: relative;
    display: block;
    width: 195px;
    top: revert;
    left: revert;
  }
}
.p-trouble__list {
  width: fit-content;
  display: grid;
  grid-gap: 2.6666666667vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-trouble__list {
    grid-gap: 1.6rem;
  }
}
@media (min-width: 1000px) {
  .p-trouble__list {
    max-width: 850px;
  }
}
.p-trouble__list li {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.5625;
  position: relative;
  background: white;
  text-align: left;
  padding-inline-start: 8vw;
  padding-inline-end: 2.6666666667vw;
  padding-block: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li {
    padding-inline-start: 4.5rem;
    padding-inline-end: 2.5rem;
    padding-block: 2.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.05rem;
  }
}
.p-trouble__list li:before {
  content: "";
  aspect-ratio: 64/74;
  width: auto;
  height: 6.6666666667vw;
  background: url(../images/icon_list.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 1.3333333333vw;
  top: 4vw;
  margin: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li:before {
    height: 74px;
    left: -40px;
    top: 12px;
  }
}
.p-trouble__text {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  color: #f0e1c8;
  text-align: center;
}
.p-trouble__text p:last-child {
  margin-block-end: 0;
}
.p-trouble__text01 {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.75;
  margin-block-end: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__text01 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.7692307692;
    margin-block-end: 5rem;
  }
}
.p-trouble__text02 {
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.3529411765;
}
@media screen and (min-width: 768px) {
  .p-trouble__text02 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6666666667;
  }
}

/*==========================================
about
===========================================*/
.p-about {
  position: relative;
  z-index: 20;
  padding-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-block-end: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-about:after {
    content: " ";
    display: block;
    background: #f9f6f0;
    width: 100%;
    height: 50px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    margin: auto;
    z-index: 0;
  }
}
.p-about__heading {
  margin-block-end: 0;
}
.p-about__row {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1060px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 4vw 0;
  grid-template-areas: "pic" "contents";
}
@media screen and (min-width: 768px) {
  .p-about__row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0px 60px;
    grid-template-areas: "pic contents";
  }
}
.p-about__contents {
  grid-area: contents;
  padding-inline: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-about__contents {
    padding-inline: revert;
  }
}
.p-about__contents br {
  display: none;
}
@media (min-width: 980px) {
  .p-about__contents br {
    display: inline;
  }
}
.p-about__method {
  border-bottom: 2px solid #f8ecce;
  margin-block-end: 4vw;
}
@media screen and (min-width: 768px) {
  .p-about__method {
    margin-block-end: 3rem;
  }
}
.p-about__pic {
  width: 100%;
  grid-area: pic;
  justify-self: center;
  text-align: center;
  padding-inline: 17.3333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__pic {
    width: auto;
    justify-self: end;
    padding-inline: revert;
  }
}
.p-about__pic img {
  position: relative;
  z-index: 10;
}
.p-about__pic:after {
  content: " ";
  display: block;
  background: #f9f6f0;
  width: 100%;
  height: 90%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-about__pic:after {
    display: none;
  }
}
.p-about__label {
  font-size: 4.8vw;
  font-weight: 600;
  line-height: 1.5555555556;
  margin-block-start: 10.6666666667vw;
  margin-block-end: 5.3333333333vw;
  color: #f8ecce;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
@media screen and (min-width: 768px) {
  .p-about__label {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.7692307692;
    margin-block-start: 7rem;
    margin-block-end: 3rem;
  }
}

.u-light {
  color: #f8ecce;
}

/*==========================================
comparison
===========================================*/
.p-comparison {
  position: relative;
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-comparison {
    padding-block-start: 10rem;
    padding-block-end: 10rem;
  }
}
.p-comparison__heading {
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-comparison__heading {
    margin-block-end: 4rem;
  }
}
.p-comparison__wrap {
  background: #cdd3d6;
  padding-block: 6.6666666667vw;
  padding-inline: 4vw;
  margin-inline: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-comparison__wrap {
    padding-block: 5rem;
    padding-inline: 3rem;
    margin-inline: 0;
  }
}
.p-comparison__answer {
  font-size: 5.0666666667vw;
  font-weight: 700;
  line-height: 1.8421052632;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  text-align: center;
  margin-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-comparison__answer {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6666666667;
    margin-block-start: 5rem;
  }
}
.p-comparison table {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 20% 1fr;
  grid-template-rows: auto 1fr 1fr 1fr;
  background: none;
  grid-gap: 0;
}
@media screen and (min-width: 768px) {
  .p-comparison table {
    grid-template-columns: 1fr 25% 1fr;
  }
}
.p-comparison table thead,
.p-comparison table tbody,
.p-comparison table tfoot,
.p-comparison table tr {
  display: contents;
}
.p-comparison table th,
.p-comparison table td {
  display: block;
  text-align: center;
}
.p-comparison__summary {
  display: block;
  width: 100%;
  border: none;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.p-comparison__summary td,
.p-comparison__summary th {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.3333333333;
  display: grid;
  place-content: center;
  place-items: center;
  border: none;
  padding-block: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary td,
  .p-comparison__summary th {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.6363636364;
    padding-block: 0.5rem;
  }
}
.p-comparison__summary th {
  padding-inline: 1.3333333333vw;
  padding-block: 2.6666666667vw;
  font-size: 3.4666666667vw;
  font-weight: 700;
  line-height: 1.5384615385;
  color: black;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary th {
    padding-inline: 1rem;
    padding-block: 5rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.6363636364;
  }
}
.p-comparison__summary td {
  position: relative;
  z-index: 1;
  background: white;
}
.p-comparison__summary td span {
  padding-inline: 1.3333333333vw;
  padding-block: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary td span {
    padding-inline: 1rem;
    padding-block: 5rem;
  }
}
.p-comparison__summary .u-cross,
.p-comparison__summary .u-traiangle,
.p-comparison__summary .u-circle {
  display: block;
  width: 100%;
  height: 100%;
  background-size: 50% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary .u-cross,
  .p-comparison__summary .u-traiangle,
  .p-comparison__summary .u-circle {
    background-size: auto auto;
  }
}
.p-comparison__summary .u-cross {
  background: url(../images/icon_cross.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary .u-cross {
    background-size: auto;
  }
}
.p-comparison__summary .u-traiangle {
  background: url(../images/icon_triangle.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary .u-traiangle {
    background-size: auto;
  }
}
.p-comparison__summary .u-circle {
  background: url(../images/icon_circle.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary .u-circle {
    background-size: auto;
  }
}
.p-comparison__summary th.course01,
.p-comparison__summary th.course02 {
  padding-block: 2.6666666667vw;
  text-align: center;
  border-radius: 10px 10px 0 0;
  color: white;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary th.course01,
  .p-comparison__summary th.course02 {
    padding-block: 3.5rem;
  }
}
.p-comparison__summary th.course01 {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.3333333333;
  background: #7d7d7d;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary th.course01 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
.p-comparison__summary th.course02 {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.1111111111;
  background: #b19f54;
}
@media screen and (min-width: 768px) {
  .p-comparison__summary th.course02 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.125;
  }
}
.p-comparison__summary tr td:nth-child(1),
.p-comparison__summary tr td:nth-child(3) {
  position: relative;
}
.p-comparison__summary tr td:nth-child(1):after,
.p-comparison__summary tr td:nth-child(3):after {
  content: " ";
  display: block;
  background: #b5b5b5;
  width: 80%;
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.p-comparison__summary tr th:nth-child(2),
.p-comparison__summary tr td:nth-child(2) {
  background: #07213f;
  color: white;
  position: relative;
}
.p-comparison__summary tr th:nth-child(2):after,
.p-comparison__summary tr td:nth-child(2):after {
  content: " ";
  display: block;
  background: #1c4e88;
  width: 80%;
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.p-comparison__summary tr:last-child th:after,
.p-comparison__summary tr:last-child td:after {
  display: none;
}
.p-comparison__summary tr td.transparent {
  border: none;
  background: none;
}
.p-comparison__summary tr td.transparent:after {
  display: none;
}

/*==========================================
benefit
===========================================*/
.p-benefit {
  position: relative;
}
.p-benefit__wrap {
  position: relative;
  padding-block-end: 17.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-benefit__wrap {
    padding-block-end: 120px;
  }
}
.p-benefit__wrap:before {
  content: " ";
  display: block;
  background: url(../images/texture_light.png) repeat;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.p-benefit__wrap:after {
  content: " ";
  display: block;
  background: #f9f6f0;
  clip-path: polygon(50% 100%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
  width: 100%;
  height: 110px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin: auto;
}
.p-benefit__heading {
  width: 94%;
  background: black;
  border-radius: 10px;
  padding-block: 5.3333333333vw;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  top: -2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-benefit__heading {
    width: 100%;
    max-width: 1100px;
    padding-block: 4rem;
    margin-block-end: 4rem;
  }
}
.p-benefit__heading:after {
  content: " ";
  display: block;
  background: url(../images/arrow_light.png) no-repeat;
  background-size: contain;
  aspect-ratio: 50/49;
  width: 10.6666666667vw;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6.6666666667vw;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-benefit__heading:after {
    width: 50px;
    bottom: -24px;
  }
}
.p-benefit__table {
  width: 100%;
  max-width: 950px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  border: none;
  margin-block-start: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-benefit__table {
    margin-block-start: 0;
  }
}
.p-benefit__table th,
.p-benefit__table td {
  padding-inline: 2.6666666667vw;
  padding-block: 2.6666666667vw;
  border: none;
  font-size: 3.4666666667vw;
  font-weight: 700;
  line-height: 1.5384615385;
  color: black;
}
@media screen and (min-width: 768px) {
  .p-benefit__table th,
  .p-benefit__table td {
    padding-inline: 2rem;
    padding-block: 3rem;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
.p-benefit__table th {
  padding-inline: 1.3333333333vw;
  padding-block: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-benefit__table th {
    padding-inline: 2rem;
    padding-block: 3rem;
  }
}
.p-benefit__table td {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-block-end: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-benefit__table td {
    margin-block-end: 2rem;
  }
}
.p-benefit__table td:after {
  content: " ";
  display: block;
  background: white;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-benefit__table td p {
  flex: 1;
  position: relative;
  z-index: 10;
  text-align: left;
}
.p-benefit__table tr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-benefit__table tr {
    gap: 7rem;
  }
}
.p-benefit__inner {
  position: relative;
}
.p-benefit__man-l {
  width: 18.6666666667vw;
  position: absolute;
  top: 34.6666666667vw;
  left: 17.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-benefit__man-l {
    width: auto;
    top: 220px;
    left: calc(50% - 650px);
  }
}
.p-benefit__man-r {
  width: 20vw;
  position: absolute;
  top: 33.3333333333vw;
  right: 16vw;
}
@media screen and (min-width: 768px) {
  .p-benefit__man-r {
    width: auto;
    top: 210px;
    right: calc(50% - 650px);
  }
}
.p-benefit__answer {
  text-align: center;
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.3636363636;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  margin-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-benefit__answer {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.4705882353;
    margin-block-start: 5rem;
  }
}

/*==========================================
profile
===========================================*/
.p-profile {
  padding-block-start: 26.6666666667vw;
  padding-block-end: 6.6666666667vw;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-profile {
    padding-block-start: 13rem;
    padding-block-end: 10rem;
  }
}
.p-profile__heading {
  margin-block-end: 4vw;
}
@media screen and (min-width: 768px) {
  .p-profile__heading {
    margin-block-end: 2rem;
  }
}
.p-profile__name {
  text-align: center;
  font-size: 4.6666666667vw;
  font-weight: 700;
  line-height: 1.1428571429;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
@media screen and (min-width: 768px) {
  .p-profile__name {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1428571429;
  }
}
.p-profile__name .kana {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .p-profile__name .kana {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.6666666667;
  }
}
.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__inner {
  max-width: 1200px;
}
.p-profile__wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__wrap {
    padding-block-start: 5rem;
    padding-block-end: 4rem;
  }
}
.p-profile__row {
  width: 100%;
  max-width: 1200px;
  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: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0px 3rem;
    grid-template-areas: "pic contents";
  }
}
.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;
}
@media screen and (min-width: 768px) {
  .p-profile__pic {
    z-index: 2;
  }
}
.p-profile__aiba {
  position: relative;
  z-index: 20;
  text-align: center;
  padding-block-end: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__aiba {
    position: absolute;
    top: 0;
    left: revert;
    right: 0;
    padding-block-end: 0;
  }
}
.p-profile__aiba img {
  width: 66.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;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  background: #1e456e;
  color: white;
}
@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;
  }
}
.p-profile__subTitle {
  text-align: center;
  width: 100%;
  margin-block: 2.6666666667vw;
  padding-block: 1.3333333333vw;
  padding-inline: 6.6666666667vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.3333333333;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  background: #1e456e;
  color: white;
}
@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;
  }
}
.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 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 635/155;
  z-index: 0;
  width: 26.6666666667vw;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-profile__en {
    width: 635px;
    right: 0;
    left: revert;
    bottom: -15.6rem;
  }
}
.p-profile__deco-l {
  max-width: revert;
  position: absolute;
  aspect-ratio: 523/597;
  z-index: 0;
  width: 53.3333333333vw;
  top: 26.6666666667vw;
  left: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__deco-l {
    display: block;
    width: 523px;
    top: 400px;
    left: calc(50% - 900px);
  }
}
.p-profile__deco-r {
  max-width: revert;
  position: absolute;
  aspect-ratio: 543/474;
  z-index: 0;
  width: 53.3333333333vw;
  top: 66.6666666667vw;
  right: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__deco-r {
    display: block;
    width: 543px;
    top: 0;
    right: calc(50% - 900px);
  }
}

/*==========================================
recommend
===========================================*/
.p-recommend__wrap {
  width: 100%;
  max-width: 1060px;
  margin-inline: auto;
}
.p-recommend__title {
  grid-area: title;
  text-align: center;
  margin-block: 2.6666666667vw;
  padding-block: 1.3333333333vw;
  padding-inline: 1.3333333333vw;
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.5909090909;
  position: relative;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
@media screen and (min-width: 768px) {
  .p-recommend__title {
    margin-block: 2rem;
    padding-block: 1.4rem;
    padding-inline: 2rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}
.p-recommend__title:after {
  content: " ";
  display: block;
  background: url(../images/arrow_dark.png) no-repeat;
  background-size: contain;
  aspect-ratio: 50/49;
  width: 10.6666666667vw;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8vw;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-recommend__title:after {
    width: 50px;
    bottom: -44px;
  }
}
.p-recommend__body {
  background: #c3ae7d;
  padding-block: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-recommend__body {
    padding-block: 4rem;
    padding-block-end: 2rem;
  }
}
.p-recommend__text {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  padding-inline: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-recommend__text {
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-recommend__text p {
    margin-block-end: 2rem;
  }
}
.p-recommend__sign {
  text-align: right;
  margin-block-end: revert;
  border-top: 2px solid black;
  padding-block-start: 2.6666666667vw;
  font-size: 4vw;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recommend__sign {
    padding-block-start: 1rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.2222222222;
  }
}

/*==========================================
special
===========================================*/
.p-special {
  position: relative;
  padding-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-special {
    padding-block-start: 5rem;
  }
}
.p-special__heading {
  position: relative;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  color: #ebd472;
  padding-block: 6.6666666667vw;
  margin-block-end: 10.6666666667vw;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  font-size: 6.2666666667vw;
  font-weight: 700;
  line-height: 1.4893617021;
}
@media screen and (min-width: 768px) {
  .p-special__heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.375;
    padding-block: 2.5rem;
    margin-block-end: 4.5rem;
  }
}
.p-special__wrap {
  position: relative;
  background: #1d477c;
  padding-inline: 4.6666666667vw;
  padding-block: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-special__wrap {
    padding-inline: 4rem;
    padding-block-start: 4rem;
    padding-block-end: 5rem;
  }
}
.p-special__row {
  width: 100%;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 6.6666666667vw 0;
  grid-template-areas: "pic" "text";
}
@media screen and (min-width: 768px) {
  .p-special__row {
    grid-template-columns: 32% 1fr;
    grid-template-rows: auto;
    gap: 0px 43px;
    align-items: center;
    grid-template-areas: "pic text";
    align-items: flex-start;
  }
}
.p-special__title {
  color: #ebd472;
  font-size: 5.2vw;
  font-weight: 700;
  line-height: 1.641025641;
}
@media screen and (min-width: 768px) {
  .p-special__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6666666667;
  }
}
.p-special__list {
  width: fit-content;
  display: grid;
  grid-gap: 2.6666666667vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-special__list {
    grid-gap: 4rem;
  }
}
.p-special__list li {
  position: relative;
  text-align: left;
  color: white;
  padding-inline-start: 4.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-special__list li {
    padding-inline-start: 0;
  }
}
.p-special__list li:before {
  content: "";
  aspect-ratio: 36/37;
  width: auto;
  height: 6.6666666667vw;
  background: url(../images/icon_arrow_sp.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: -2.6666666667vw;
  top: 0.9333333333vw;
  margin: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-special__list li:before {
    height: 37px;
    left: -40px;
    top: 12px;
  }
}
.p-special__list li p {
  margin-block: 0;
}
.p-special__pic {
  grid-area: pic;
  text-align: center;
  position: relative;
}
.p-special__book-label {
  height: 26.6666666667vw;
  position: absolute;
  top: -8vw;
  left: -2vw;
}
@media screen and (min-width: 768px) {
  .p-special__book-label {
    height: 159px;
    top: -130px;
    left: -10px;
  }
}
.p-special__book {
  width: 40vw;
}
@media screen and (min-width: 768px) {
  .p-special__book {
    width: 243px;
  }
}

/*==========================================
outline
===========================================*/
.p-outline {
  position: relative;
  padding-top: 6.6666666667vw;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-outline {
    padding-top: 10rem;
    padding-bottom: 15rem;
  }
}
.p-outline__heading {
  background: #0a1d34;
  font-size: 4.5333333333vw;
  font-weight: 600;
  line-height: 1.4705882353;
  padding-block: 4vw;
  margin-block-end: 1rem;
}
@media screen and (min-width: 768px) {
  .p-outline__heading {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.25;
    padding-block: 1.5rem;
    margin-block-end: 3rem;
  }
}
.p-outline p {
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.5625;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-outline p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6666666667;
    margin-bottom: 3rem;
  }
}
.p-outline__wrap {
  counter-reset: number 0;
  display: flex;
  flex-direction: column;
  grid-gap: 3rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-outline__wrap {
    flex-direction: row;
    grid-gap: 3rem;
  }
}
.p-outline__block {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-outline__block {
    width: calc((100% - 3rem) / 2);
  }
}
.p-outline__title {
  position: relative;
  margin-block-end: 2.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.71875;
  letter-spacing: 0.02rem;
  color: #ebd472;
  text-align: left;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
@media screen and (min-width: 768px) {
  .p-outline__title {
    margin-block-end: 1rem;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.8181818182;
    letter-spacing: 0.02rem;
  }
}
.p-outline__title:before {
  counter-increment: number 1;
  content: "第" counter(number) "章";
  display: block;
  background: #0a1d34;
  font-size: 4.5333333333vw;
  font-weight: 600;
  line-height: 1.4705882353;
  color: white;
  text-align: center;
  padding-block: 4vw;
  margin-block-end: 1rem;
}
@media screen and (min-width: 768px) {
  .p-outline__title:before {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.25;
    padding-block: 1.5rem;
    margin-block-end: 3rem;
  }
}
.p-outline__title-inner {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
}
.p-outline__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.6666666667;
  text-align: left;
  color: white;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-outline__list li {
    padding-left: 1.5rem;
    letter-spacing: 0.1rem;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.2222222222;
    margin-left: 1rem;
  }
}
.p-outline__list li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  display: inline-block;
  background: #ebd472;
  position: absolute;
  left: 0;
  top: calc((6.6666666667vw - 5px) / 2);
}
@media screen and (min-width: 768px) {
  .p-outline__list li:before {
    width: 7px;
    height: 7px;
    top: 16.5px;
  }
}

/*==========================================
overview
===========================================*/
.p-overview {
  padding-block-start: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-overview {
    padding-block-start: 10rem;
  }
}
.p-overview__wrap {
  background: url(../images/texture_light.png) repeat;
  padding-inline: 4vw;
  padding-block: 6.6666666667vw;
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-overview__wrap {
    padding-inline: 0;
    padding-block: 4rem;
    margin-block-end: 10rem;
  }
}
.p-overview__title {
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-overview__title {
    margin-block-end: 3rem;
  }
}
.p-overview__grid {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-overview__grid {
    grid-template-rows: revert;
    grid-template-columns: repeat(2, auto);
    gap: 0.5rem;
  }
}
.p-overview__grid dt,
.p-overview__grid dd {
  box-shadow: 0px 8px 0px 0px rgba(1, 15, 72, 0.2);
  text-align: left;
}
.p-overview__grid dt {
  width: 100%;
  font-size: 4.2666666667vw;
  font-weight: 600;
  line-height: 1.125;
  padding: 1.5rem;
  color: block;
  background: #c3ae7d;
}
@media screen and (min-width: 768px) {
  .p-overview__grid dt {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.6363636364;
    padding: 3.6rem;
  }
}
.p-overview__grid 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 {
    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 {
  background: #09b609;
}
.p-overview__grid .party {
  background: #e7316e;
}
.p-overview__grid .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 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
  }
}
.p-overview__notice {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  margin-block-start: 6.6666666667vw;
  font-size: 3.4666666667vw;
  font-weight: 500;
  line-height: 1.5384615385;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-overview__notice {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
    margin-block-start: 5rem;
  }
}

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

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

:root {
  --bar: 3px;
  /* プラスの帯の太さ */
}

.plus-shape {
  width: 24px;
  height: 24px;
  background: black;
  clip-path: polygon(calc(50% - var(--bar)) 0, calc(50% + var(--bar)) 0, calc(50% + var(--bar)) calc(50% - var(--bar)), 100% calc(50% - var(--bar)), 100% calc(50% + var(--bar)), calc(50% + var(--bar)) calc(50% + var(--bar)), calc(50% + var(--bar)) 100%, calc(50% - var(--bar)) 100%, calc(50% - var(--bar)) calc(50% + var(--bar)), 0 calc(50% + var(--bar)), 0 calc(50% - var(--bar)), calc(50% - var(--bar)) calc(50% - var(--bar)));
}

/*--------------------------
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: #c3ae7d;
  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: 21px;
    height: 21px;
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-accordion-q:hover {
    /*background: $color-accent;
    color: white;*/
    /*&:before {
        color: white;
        color: $color-accent;
        background: url(../images/icon_q_light.png) no-repeat;
        background-size: contain;
    }*/
  }
  .c-accordion-q:hover:after {
    background: url(../images/toggle_dark.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: $color-accent;
      color: white;

      &:before {
        color: white;
        color: $color-accent;
        background: url(../images/icon_q_light.png) no-repeat;
        background-size: contain;
  }*/
}
.c-accordion__item.js-enabled.is-active > .c-accordion-q:after {
  width: 4vw;
  height: 0.6666666667vw;
  background: url(../images/toggle_dark.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: 3px;
  }
}
.c-accordion-q:focus {
  outline: 0;
}

/*==========================================
closing
===========================================*/
.p-closing {
  padding-block-start: 37.3333333333vw;
  padding-block-end: 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-closing {
    padding-block-start: 15rem;
    padding-block-end: 10rem;
  }
}
.p-closing__inner {
  position: relative;
}
.p-closing__heading {
  text-align: center;
  margin-block-end: 2.6666666667vw;
  font-size: 7.3333333333vw;
  font-weight: 900;
  line-height: 1.4545454545;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .p-closing__heading {
    margin-block-end: 3rem;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.3333333333;
  }
}
.p-closing__body {
  margin-block: 4vw;
  margin-block-end: 26.6666666667vw;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
@media screen and (min-width: 768px) {
  .p-closing__body {
    margin-block: 3rem;
    letter-spacing: 0.05rem;
  }
}
.p-closing__body p {
  text-align: center;
  font-size: 4.1333333333vw;
  font-weight: 700;
  line-height: 1.7741935484;
  margin-block-end: 4vw;
}
@media screen and (min-width: 768px) {
  .p-closing__body p {
    margin-block-end: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.76;
  }
}
.p-closing__body p .large {
  font-size: 7.2vw;
  font-weight: 700;
  line-height: 1.2037037037;
}
@media screen and (min-width: 768px) {
  .p-closing__body p .large {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.25;
  }
}
.p-closing__body p .middle {
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.4772727273;
}
@media screen and (min-width: 768px) {
  .p-closing__body p .middle {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.5789473684;
  }
}
.p-closing__body .u-emphasis {
  color: #958152;
}
.p-closing__deadline {
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 5px 0;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-closing__deadline {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.6666666667;
  }
}
.p-closing__deadline dt,
.p-closing__deadline dd {
  padding-block: 2.6666666667vw;
  padding-inline: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-closing__deadline dt,
  .p-closing__deadline dd {
    padding-block: 1rem;
    padding-inline: 2rem;
  }
}
.p-closing__deadline dt {
  background: #242a39;
  color: #c3ae7d;
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.4705882353;
}
@media screen and (min-width: 768px) {
  .p-closing__deadline dt {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
  }
}
.p-closing__deadline dd {
  background: #c3ae7d;
  color: #242a39;
  font-size: 4.6666666667vw;
  font-weight: 900;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-closing__deadline dd {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
  }
}
.p-closing__user01 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 407/340;
  width: 40vw;
  height: auto;
  top: -42.6666666667vw;
  right: -6.6666666667vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-closing__user01 {
    display: block;
    width: 407px;
    top: 350px;
    right: -400px;
  }
}
.p-closing__user02 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 379/303;
  width: 37.3333333333vw;
  height: auto;
  top: -33.3333333333vw;
  left: -1.3333333333vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-closing__user02 {
    display: block;
    width: 379px;
    top: -60px;
    left: -300px;
  }
}
.p-closing__user03 {
  max-width: revert;
  position: absolute;
  aspect-ratio: 310/241;
  width: 36vw;
  height: auto;
  top: 106.6666666667vw;
  left: -4vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-closing__user03 {
    display: block;
    width: 340px;
    top: 550px;
    left: -300px;
  }
}
.p-closing__deco-l {
  max-width: revert;
  position: absolute;
  aspect-ratio: 523/597;
  z-index: 0;
  width: 46.6666666667vw;
  top: -30.6666666667vw;
  right: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-closing__deco-l {
    display: block;
    width: 523px;
    top: 400px;
    left: calc(50% - 900px);
    right: revert;
  }
}
.p-closing__deco-r {
  max-width: revert;
  position: absolute;
  aspect-ratio: 543/474;
  z-index: 0;
  width: 53.3333333333vw;
  top: 89.3333333333vw;
  right: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-closing__deco-r {
    display: block;
    width: 543px;
    top: 0;
    right: calc(50% - 900px);
  }
}

/*==========================================
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: 0vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-start: 6.6666666667vw;
  padding-block: 6.6666666667vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-form__wrap {
    grid-gap: 2rem;
    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: 0 auto;
  max-width: revert !important;
}
.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: #242a39;
  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;
  }
}
.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: 0 auto;
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: center;
  transition: all 0.15s;
  color: black;
  background: #e60012;
  /*background-color: #ff7a59;*/
  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 .hs_submit .hs-button {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: center;
  transition: all 0.15s;
  color: white;
  background: #e60012;
  /*background-color: #ff7a59;*/
  border: none;
  border-radius: 5px;
  padding-block: 5.3333333333vw;
  padding-inline: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .hbspt-form .hs_submit .hs-button {
    border-radius: 10px;
    padding-block: 3rem;
    padding-inline: 3rem;
  }
}
.hbspt-form .hs_submit .hs-button:hover, .hbspt-form .hs_submit .hs-button:focus, .hbspt-form .hs_submit .hs-button:active {
  background: #242a39;
  color: white;
}
.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: 0 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: 40px;
  }
}
@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: #e60012;
  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: #e60012;
    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: #c71d2c;
}
.hbspt-form .grecaptcha-badge,
.hbspt-form .grecaptcha-logo {
  margin: 0 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;
  }
}
.hbspt-form .hs-richtext.hs-main-font-element {
  overflow-wrap: anywhere;
}

/*==========================================
count down timer
===========================================*/
/*********** timer ***********/
.c-timer {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-size: 4.5333333333vw;
  font-weight: 900;
  line-height: 1.3235294118;
  margin-block-start: 2.6666666667vw;
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-timer {
    font-size: 2.1333333333vw;
    font-weight: 900;
    line-height: 1.25;
    margin-block-start: 1.3333333333vw;
    margin-block-end: 2.6666666667vw;
  }
}
@media (min-width: 1500px) {
  .c-timer {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1666666667;
    margin-block-start: 3rem;
    margin-block-end: 1rem;
  }
}

#TimeLeft > div {
  display: inline-block;
}

.cda {
  font-size: 110%;
  font-family: "Roboto", sans-serif;
  padding: 0 0.2rem;
}

.p-hero .c-timer {
  font-size: 4vw;
  font-weight: 600;
  line-height: 1.5;
  margin-block-start: 2.6666666667vw;
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-hero .c-timer {
    font-size: 1.8666666667vw;
    font-weight: 600;
    line-height: 1.4285714286;
    margin-block-start: 1.3333333333vw;
    margin-block-end: 2.6666666667vw;
  }
}
@media (min-width: 1500px) {
  .p-hero .c-timer {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6666666667;
    margin-block-start: 2rem;
    margin-block-end: 1rem;
  }
}
.p-hero .cda {
  font-size: 4.6666666667vw;
  font-weight: 600;
  line-height: 1.2857142857;
  font-family: "Roboto", sans-serif;
  padding: 0 0.2rem;
}
@media screen and (min-width: 768px) {
  .p-hero .cda {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.1538461538;
  }
}