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

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

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

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

.c-bg--blue {
  background-color: #2d46a5;
}

.c-bg--red {
  background-color: #bb132c;
}

.c-bg--gradient {
  background: #FFFFFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: auto !important;
}

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: #fefcf6;
  /*overflow-x: hidden;*/
  overflow-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

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

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

a {
  color: inherit;
  outline: none;
}

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

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

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

ul,
ol {
  list-style: none;
}

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

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

/*==========================================
setting
===========================================*/
/*==========================================
btn
===========================================*/
.c-btn {
  display: inline-block;
  vertical-align: middle;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  height: auto;
  padding-inline: 1.3333333333vw;
  padding-block: 8vw;
  border: none;
  outline: none;
  color: black;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 30px;
  background: #bf2115;
  border: 5px solid white;
  font-size: 4.9333333333vw;
  font-weight: 700;
  line-height: 1.2162162162;
  text-align: center;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  position: relative;
  box-shadow: 0px 11px 20.58px 0.42px rgba(204, 108, 7, 0.4);
}
@media screen and (min-width: 768px) {
  .c-btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4285714286;
    padding-inline: 2rem;
    padding-block: 3.8rem;
    border-width: 7px;
  }
}
.c-btn:not(:disabled) {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-btn:hover, .c-btn:focus {
    background: #f03b2f;
    background: linear-gradient(0deg, rgb(240, 59, 47) 0%, rgb(227, 29, 18) 70%, rgb(210, 20, 10) 100%);
    transform: translateY(-5px);
    outline: none;
    box-shadow: 0px 11px 20.58px 0.42px rgba(255, 120, 120, 0.23), 0px 0px 21px 0px rgba(255, 255, 255, 0.6) inset;
  }
  .c-btn:hover:after, .c-btn:focus:after {
    opacity: 0;
  }
  .c-btn:hover .c-btn__inner:after, .c-btn:focus .c-btn__inner:after {
    transform: translateX(10px);
  }
}

.c-btn {
  position: relative;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #cf170f;
  border: 0.8vw solid #fff;
  border-radius: 4vw;
  box-shadow: 0 1.3333333333vw 2.6666666667vw rgba(0, 0, 0, 0.18);
  padding-block: 4.8vw;
  padding-inline: 2.6666666667vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-btn {
    border: 6px solid #fff;
    border-radius: 30px;
    padding-block: 2.6rem;
    padding-inline: 2.3rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  }
}
.c-btn__row {
  display: grid;
  grid-template-columns: 2.6666666667vw 1fr 2.6666666667vw;
  align-items: center;
  column-gap: 1.8666666667vw;
  color: #fff;
  letter-spacing: 0.03em;
  text-align: center;
  text-shadow: 0 0.4vw 0 rgba(0, 0, 0, 0.15);
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1.16;
}
@media screen and (min-width: 768px) {
  .c-btn__row {
    grid-template-columns: 2.5rem 1fr 2.5rem;
    column-gap: 14px;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.15);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.1764705882;
  }
}
.c-btn__row::before, .c-btn__row::after {
  content: "";
  display: block;
  aspecto-ratio: 23/31;
  background: url(../images/btn_arrow.png) no-repeat;
  background-size: contain;
  width: 3.0666666667vw;
  height: 4.1333333333vw;
}
@media screen and (min-width: 768px) {
  .c-btn__row::before, .c-btn__row::after {
    width: 23px;
    height: 31px;
  }
}
.c-btn-caption {
  display: block;
  margin-block-start: 1.3333333333vw;
  color: #fff;
  text-align: center;
  font-size: 3.4666666667vw;
  font-weight: 700;
  line-height: 1.3846153846;
}
@media screen and (min-width: 768px) {
  .c-btn-caption {
    margin-block-start: 8px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
  }
}

.c-btn-submit {
  border-radius: 20px;
  background: #32b16c;
  padding-block: 5.3333333333vw;
  padding-inline: 2.6666666667vw;
  box-shadow: 0 1.3333333333vw 2.6666666667vw rgba(204, 108, 7, 0.3);
}
@media screen and (min-width: 768px) {
  .c-btn-submit {
    padding-block: 4rem;
    padding-inline: 2rem;
    box-shadow: 0 1rem 2rem rgba(204, 108, 7, 0.3);
  }
}
@media screen and (min-width: 768px) {
  .c-btn-submit:hover, .c-btn-submit:focus {
    background: #39bf72;
    background: linear-gradient(0deg, rgb(57, 191, 114) 0%, rgb(46, 179, 101) 70%, rgb(38, 166, 91) 100%);
    transform: translateY(-5px);
    outline: none;
    box-shadow: 0px 11px 20.58px 0.42px rgba(94, 220, 145, 0.23), 0px 0px 21px 0px rgba(255, 255, 255, 0.6) inset;
  }
  .c-btn-submit:hover:after, .c-btn-submit:focus:after {
    opacity: 0;
  }
  .c-btn-submit:hover .c-btn__inner:after, .c-btn-submit:focus .c-btn__inner:after {
    transform: translateX(10px);
  }
}

.c-btn__wrap {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-btn__wrap {
    width: 100%;
    max-width: 560px;
  }
}

.c-form__btn-wrap {
  max-width: 670px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-form__btn-wrap {
    margin-top: 4rem;
  }
}

.u-light {
  color: #fff799;
}

/*==========================================
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;
}
@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.7142857143;
    margin-block-end: 6rem;
    letter-spacing: 0.2rem;
  }
}
.c-heading__label {
  font-size: 4.6666666667vw;
  font-weight: 500;
  line-height: 1.1428571429;
  margin-block-end: 4vw;
}
@media screen and (min-width: 768px) {
  .c-heading__label {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-block-end: 1rem;
  }
}
.c-heading__en {
  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__en {
    margin-block-end: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
}
.c-heading .large {
  font-size: 7.3333333333vw;
  font-weight: 500;
  line-height: 1.2727272727;
}
@media screen and (min-width: 768px) {
  .c-heading .large {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.3333333333;
  }
}
.c-heading .small {
  font-size: 6vw;
  font-weight: 500;
  line-height: 1.5555555556;
}
@media screen and (min-width: 768px) {
  .c-heading .small {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.7142857143;
  }
}

.c-title-linePop,
.c-title-linePop--white {
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 0 4vw;
  align-items: center;
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-title-linePop,
  .c-title-linePop--white {
    font-family: "M PLUS 1p", sans-serif;
    grid-gap: 3rem;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.4666666667;
  }
}
.c-title-linePop:before, .c-title-linePop:after,
.c-title-linePop--white:before,
.c-title-linePop--white:after {
  content: "";
  display: block;
  background: #00b0d5;
  width: 3px;
  height: 80%;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .c-title-linePop:before, .c-title-linePop:after,
  .c-title-linePop--white:before,
  .c-title-linePop--white:after {
    width: 6px;
    height: 100%;
  }
}
.c-title-linePop:before,
.c-title-linePop--white:before {
  transform: rotate(-30deg);
  right: 0;
}
.c-title-linePop:after,
.c-title-linePop--white:after {
  transform: rotate(30deg);
  left: 0;
}

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

/*********** side line ***********/
.c-title-line {
  width: 100%;
  margin-inline: auto;
  align-items: center;
  text-align: center;
  padding-block: 6.6666666667vw;
  border-top: 3px solid #b1daf8;
  border-bottom: 3px solid #b1daf8;
}
@media screen and (min-width: 768px) {
  .c-title-line {
    padding-block: 4rem;
    margin-block-end: 6rem;
    border-top: 5px solid #b1daf8;
    border-bottom: 5px solid #b1daf8;
  }
}
.c-title-line:before, .c-title-line:after {
  content: "";
  width: 8vw;
  height: 5px;
  background: #74d2e7;
}
@media screen and (min-width: 768px) {
  .c-title-line:before, .c-title-line:after {
    width: 60px;
    height: 5px;
  }
}
.c-title-line:after {
  justify-self: end;
}

.c-titlePopflag,
.c-titlePopflag-s {
  position: relative;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  padding-block: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-titlePopflag,
  .c-titlePopflag-s {
    padding-block: 1rem;
  }
}
.c-titlePopflag:before, .c-titlePopflag:after,
.c-titlePopflag-s:before,
.c-titlePopflag-s:after {
  content: " ";
  display: block;
  width: 10.6666666667vw;
  height: auto;
  aspect-ratio: 82/48;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .c-titlePopflag:before, .c-titlePopflag:after,
  .c-titlePopflag-s:before,
  .c-titlePopflag-s:after {
    width: 82px;
  }
}
.c-titlePopflag:before,
.c-titlePopflag-s:before {
  background: #293c97;
  left: 0;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .c-titlePopflag:before,
  .c-titlePopflag-s:before {
    top: -1rem;
  }
}
.c-titlePopflag:after,
.c-titlePopflag-s:after {
  background: #bb132c;
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
@media screen and (min-width: 768px) {
  .c-titlePopflag:after,
  .c-titlePopflag-s:after {
    bottom: -1rem;
  }
}

.c-titlePopflag-s {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-titlePopflag-s {
    padding-inline: 8rem;
  }
}

/*********** pop ***********/
.c-titlePop {
  position: relative;
  width: calc(100% + 6.6666666667vw);
  background: #2d46a5;
  text-align: center;
  padding: 6.6666666667vw 2.6666666667vw;
  left: -3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-titlePop {
    width: calc(100% + 50px);
    padding: 10rem 2rem;
    left: -25px;
  }
}
.c-titlePop:after {
  content: " ";
  display: block;
  background: #2d46a5;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  width: 8vw;
  height: 2.5333333333vw;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.6666666667vw;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-titlePop:after {
    width: 60px;
    height: 20px;
    bottom: -19px;
  }
}
.c-titlePop__inner:before, .c-titlePop__inner:after {
  content: " ";
  display: block;
  background: #01132a;
  width: 3.3333333333vw;
  height: 2.9333333333vw;
  position: absolute;
  bottom: -2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .c-titlePop__inner:before, .c-titlePop__inner:after {
    width: 25px;
    height: 22px;
    bottom: -22px;
  }
}
.c-titlePop__inner:before {
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.c-titlePop__inner:after {
  right: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

/*********** linePopImg--double ***********/
.c-title-linePopImg--double {
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 0;
  align-items: center;
  text-align: center;
  margin-block-end: 2.6666666667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg--double {
    margin-block-end: 2rem;
  }
}
.c-title-linePopImg--double__inner {
  width: fit-content;
}
.c-title-linePopImg--double:after, .c-title-linePopImg--double:before {
  content: "";
  display: block;
  background: url(../images/deco_pop_double.png) no-repeat;
  background-size: contain;
  aspect-ratio: 35/34;
  width: 8vw;
  height: auto;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg--double:after, .c-title-linePopImg--double:before {
    width: 35px;
  }
}
.c-title-linePopImg--double:before {
  left: -9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg--double:before {
    left: -4rem;
  }
}
.c-title-linePopImg--double:after {
  right: -9.3333333333vw;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg--double:after {
    right: -4rem;
  }
}

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

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

.c-title-linePopImg--red:after, .c-title-linePopImg--red:before {
  background: url(../images/deco_pop_red.png) no-repeat;
  background-size: contain;
}

.c-title-linePopImg--white:after, .c-title-linePopImg--white:before {
  background: url(../images/deco_pop_white.png) no-repeat;
  background-size: contain;
}

/*********** linePopImg--offer ***********/
.c-title-linePopImg--offer {
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 0;
  align-items: center;
  text-align: center;
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg--offer {
    column-gap: 20px;
    margin-block-end: 2rem;
  }
}
.c-title-linePopImg--offer__inner {
  width: fit-content;
}
.c-title-linePopImg--offer:after, .c-title-linePopImg--offer:before {
  content: "";
  display: block;
  background: url(../images/deco_pop_triple.png) no-repeat;
  background-size: contain;
  aspect-ratio: 122/127;
  width: 16vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg--offer:after, .c-title-linePopImg--offer:before {
    width: 127px;
  }
}
.c-title-linePopImg--offer:before {
  position: relative;
  left: -0.5rem;
}
.c-title-linePopImg--offer:after {
  justify-self: end;
  transform: scale(-1, 1);
}

/*********** frame ***********/
.c-title-frame--green,
.c-title-frame--pink {
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  padding-block: 4vw;
  padding-inline: 4vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-title-frame--green,
  .c-title-frame--pink {
    padding-block: 3rem;
    padding-inline: 3rem;
    border-radius: 20px;
  }
}

.c-title-frame--green {
  border: 4px solid #c1d049;
}
@media screen and (min-width: 768px) {
  .c-title-frame--green {
    border: 6px solid #c1d049;
  }
}

.c-title-frame--pink {
  background: white;
  border: 4px solid #f79aa0;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .c-title-frame--pink {
    border: 6px solid #f79aa0;
  }
}

.c-title-frame--yellow {
  border: 4px solid #c1d049;
}
@media screen and (min-width: 768px) {
  .c-title-frame--yellow {
    border: 6px solid #c1d049;
  }
}

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

.l-inner {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 800px;
  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: 980px;
}
.l-inner--middle {
  max-width: 1060px;
}
.l-inner--wide {
  max-width: 1200px;
  padding-inline-start: 5.3333333333vw;
  padding-inline-end: 5.3333333333vw;
}
@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 {
  padding-block-start: 5.3333333333vw;
  padding-block-end: 10.6666666667vw;
  position: relative;
  overflow: hidden;
  background: url(../images/bg_pattern_rainbow_sp.png) repeat-y;
  background-size: contain;
  /*border-bottom: 3px solid #e4bd55;*/
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-block-start: 3rem;
    padding-block-end: 16rem;
    border-bottom: none;
    background: none;
  }
}
.p-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    padding-inline: 5.3333333333vw;
  }
}
.p-hero__heading {
  text-align: center;
  position: relative;
  z-index: 5;
}
.p-hero__pop {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  margin-block-end: 3.3333333333vw;
  padding-block: 1.3333333333vw;
  padding-inline: 3.0666666667vw;
  background: #c71f13;
  border-radius: 2vw;
  color: #fff;
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.4705882353;
}
@media screen and (min-width: 768px) {
  .p-hero__pop {
    margin-block-end: 1rem;
    padding-block: 1rem;
    padding-inline: 2.3rem;
    border-radius: 15px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1rem;
  }
}
.p-hero__pop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.8666666667vw;
  transform: translateX(-50%);
  width: 4.2666666667vw;
  height: 2.1333333333vw;
  background: #c71f13;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (min-width: 768px) {
  .p-hero__pop::after {
    bottom: -14px;
    width: 32px;
    height: 16px;
  }
}
.p-hero__catch {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.4666666667;
}
@media screen and (min-width: 768px) {
  .p-hero__catch {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.9166666667;
  }
}
.p-hero__catch .no {
  font-family: "Roboto", sans-serif;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.1;
  color: #bb132c;
}
@media screen and (min-width: 768px) {
  .p-hero__catch .no {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
  }
}
.p-hero__title {
  text-align: center;
}
.p-hero__label {
  width: fit-content;
  margin-inline: auto;
  font-size: 4.6666666667vw;
  font-weight: 700;
  line-height: 1.4285714286;
  margin-block-end: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-hero__label {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3714285714;
    margin-block-end: 1rem;
  }
}
.p-hero__label .no {
  font-family: "Roboto", sans-serif;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.2;
  color: #bb132c;
}
@media screen and (min-width: 768px) {
  .p-hero__label .no {
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 1.0697674419;
  }
}
.p-hero__text {
  font-size: 4.1333333333vw;
  font-weight: 700;
  line-height: 1.6129032258;
  margin-block-start: 8vw;
  margin-block-end: 4vw;
}
@media screen and (min-width: 768px) {
  .p-hero__text {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-block-start: 0;
    margin-block-end: 2rem;
  }
}
.p-hero__limit {
  width: 100%;
  margin-inline: auto;
  margin-block-end: 6.6666666667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-hero__limit {
    letter-spacing: 0.2rem;
    margin-block-end: 3.5rem;
  }
}
.p-hero__limit:after {
  content: " ";
  display: block;
  background: #e4bd55;
  width: 70%;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-hero__limit:after {
    width: 100%;
    height: 3px;
  }
}
.p-hero__limit-day {
  padding-block-start: 1.3333333333vw;
  font-size: 5.0666666667vw;
  font-weight: 700;
  line-height: 1.3157894737;
}
@media screen and (min-width: 768px) {
  .p-hero__limit-day {
    padding-block-start: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6666666667;
  }
}
.p-hero__anchor {
  position: relative;
  z-index: 30;
}
.p-hero__anchor-text {
  color: #f35b00;
  font-size: 4.4vw;
  font-weight: 700;
  line-height: 1.8181818182;
}
@media screen and (min-width: 768px) {
  .p-hero__anchor-text {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
  }
}
.p-hero__bg {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-hero__bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-width: inherit;
    position: absolute;
    top: 0;
    left: 50%;
    aspect-ratio: 1980/2194;
    width: 100%;
    height: auto;
    transform: translateX(-50%);
    z-index: 0;
  }
}
@media (min-width: 1500px) {
  .p-hero__bg {
    width: 1980px;
  }
}
.p-hero__frame {
  position: absolute;
  top: 6.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
  width: 108vw;
  aspect-ratio: 1221/887;
  max-width: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-hero__frame {
    width: 100%;
    max-width: inherit;
    position: absolute;
    top: 2rem;
    left: 50%;
    aspect-ratio: 1221/887;
    width: 100%;
    height: auto;
    z-index: 2;
  }
}
@media (min-width: 1500px) {
  .p-hero__frame {
    width: 1221px;
  }
}
.p-hero__shindo {
  display: block;
  width: 20vw;
  aspect-ratio: 209/352;
  pointer-events: none;
  position: absolute;
  left: -1.3333333333vw;
  top: 102.6666666667vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-hero__shindo {
    width: 209px;
    left: calc(50% - 540px);
    top: 660px;
    z-index: 15;
  }
}
.p-hero__nissy {
  display: block;
  width: 20vw;
  aspect-ratio: 195/355;
  pointer-events: none;
  position: absolute;
  right: -1.3333333333vw;
  top: 102.6666666667vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-hero__nissy {
    width: 195px;
    right: calc(50% - 540px);
    top: 660px;
    z-index: 15;
  }
}
.p-hero__fuyu {
  display: block;
  width: 21.3333333333vw;
  aspect-ratio: 207/355;
  pointer-events: none;
  position: absolute;
  left: -2vw;
  top: 69.3333333333vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__fuyu {
    width: 207px;
    left: calc(50% - 730px);
    top: 300px;
    z-index: 10;
  }
}
.p-hero__mari {
  display: block;
  width: 21.3333333333vw;
  aspect-ratio: 206/358;
  pointer-events: none;
  position: absolute;
  right: -2vw;
  top: 69.3333333333vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__mari {
    width: 206px;
    right: calc(50% - 730px);
    top: 300px;
    z-index: 10;
  }
}
.p-hero__confetti-l {
  display: block;
  width: 23.3333333333vw;
  aspect-ratio: 175/572;
  pointer-events: none;
  position: absolute;
  left: 0vw;
  top: 0vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-hero__confetti-l {
    width: 175px;
    left: calc(50% - 510px);
    top: 160px;
  }
}
.p-hero__confetti-r {
  display: block;
  width: 20.9333333333vw;
  aspect-ratio: 157/557;
  pointer-events: none;
  position: absolute;
  right: 0vw;
  top: 0vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-hero__confetti-r {
    width: 157px;
    right: calc(50% - 510px);
    top: 160px;
  }
}

/* footer.scss */
.p-footer {
  position: relative;
  padding-block-start: 6.6666666667vw;
  padding-block-end: 6.6666666667vw;
  background: none;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block-start: 6rem;
    padding-block-end: 4rem;
  }
}
.p-footer p {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #000;
  text-align: center;
  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 p br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer p br {
    display: inline;
  }
}
.p-footer p.p-footer__copyright {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #000;
}
.p-footer__nav {
  width: 85%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    width: 100%;
    max-width: 700px;
    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;
  background: #fdeeb5;
  text-align: center;
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 1.4285714286;
  color: black;
  width: 100%;
  text-decoration: none;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav li a {
    background: none;
    border: none;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding: 0 3rem;
    border-right: none;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4285714286;
  }
}
.p-footer__nav li a:hover {
  /*color: white;*/
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-footer__nav li:last-child a {
    border-right: 1px solid #000;
  }
}

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

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

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

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

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

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

/*==========================================
movie
===========================================*/
.c-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: white;
  z-index: 50;
}
@media screen and (min-width: 480px) {
  .c-movie {
    padding-top: 56.25%;
  }
}
.c-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.c-movie__frame {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 2rem;
  box-shadow: 0px 0px 24.3px 2.7px #065cad inset, 0px 26px 47.31px 9.69px rgba(175, 92, 3, 0.63);
  background: #2d46a5 url(../images/movie_light.png) no-repeat center top;
  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: #2d46a5;
}

.u-accent {
  color: #bb132c;
}

.u-red {
  color: #e60012;
}

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

.u-orange {
  color: #eb4e00;
}

.u-black {
  color: black;
}

.u-white {
  color: white;
}

.u-yellow {
  color: #f39800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-marker--pink {
  background: #eb4e00;
  background: linear-gradient(0deg, rgb(253, 213, 204) 10%, rgba(253, 213, 204, 0) 10%);
}

.u-dotted {
  position: relative;
}
.u-dotted:before {
  content: " ";
  display: block;
  background: #eb4e00;
  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: 7px;
    height: 7px;
    top: -4px;
  }
}

/*==========================================
setting
===========================================*/
/*==========================================
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;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-letter p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.8888888889;
    letter-spacing: 0.2rem;
    margin-block-end: 3rem;
  }
}

.c-heading {
  text-shadow: 4px 3px 0px rgba(183, 192, 224, 0.55);
}

.u-yellow {
  color: #fccf58;
}

.c-bg-pattern--blue {
  background-image: image-set(url("../images/bg_pattern_blue.webp") type("image/webp"), url("../images/bg_pattern_blue.png") type("image/png"));
  background-repeat: repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-bg-pattern--blue {
    background-size: auto;
  }
}
.c-bg-pattern--green {
  background-image: image-set(url("../images/bg_pattern_green.webp") type("image/webp"), url("../images/bg_pattern_green.png") type("image/png"));
  background-repeat: repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-bg-pattern--green {
    background-size: auto;
  }
}
.c-bg-pattern--pink {
  background-image: image-set(url("../images/bg_pattern_pink.webp") type("image/webp"), url("../images/bg_pattern_pink.png") type("image/png"));
  background-repeat: repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-bg-pattern--pink {
    background-size: auto;
  }
}

/*==========================================
trouble
===========================================*/
.p-trouble {
  position: relative;
  padding-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble {
    padding-block-start: 7rem;
  }
}
.p-trouble__gradient {
  position: relative;
}
.p-trouble__gradient:after {
  content: " ";
  display: block;
  background: #bae0f6;
  background: linear-gradient(90deg, rgba(186, 224, 246, 0) 0%, rgba(186, 224, 246, 0.4) 20%, rgb(186, 224, 246) 35%, rgb(186, 224, 246) 65%, rgba(186, 224, 246, 0.4) 80%, rgba(186, 224, 246, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-trouble__gradient:after {
    background: linear-gradient(90deg, rgba(186, 224, 246, 0) 0%, rgba(186, 224, 246, 0.6) 40%, rgb(186, 224, 246) 50%, rgba(186, 224, 246, 0.6) 60%, rgba(186, 224, 246, 0) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    width: 1980px;
    height: 100%;
    margin-inline-start: -990px;
    z-index: 0;
  }
}
.p-trouble p.p-trouble__intro {
  text-align: center;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.4375;
  margin-block-end: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble p.p-trouble__intro {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.6363636364;
    margin-block-end: 5rem;
  }
}
.p-trouble__wrap {
  padding-block-start: 17.3333333333vw;
  padding-block-end: 13.3333333333vw;
  border-top: 4px solid #016ed4;
  border-bottom: 4px solid #016ed4;
}
@media screen and (min-width: 768px) {
  .p-trouble__wrap {
    padding-block-start: 10rem;
    padding-block-end: 10rem;
    border-top: 8px solid #016ed4;
    border-bottom: 8px solid #016ed4;
  }
}
.p-trouble__inner {
  position: relative;
  z-index: 10;
  margin-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__inner {
    margin-block-end: 0;
  }
}
.p-trouble__bg {
  content: " ";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 791/597;
  position: absolute;
  right: 0;
  left: 0;
  margin-inline: auto;
  top: -6.6666666667vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__bg {
    width: 791px;
    top: 0;
    left: calc(50% - 2000px);
  }
}
.p-trouble__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.p-trouble__list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 2.6666666667vw;
  padding-inline: 2.6666666667vw;
  background: #fff;
  border: 0.8vw solid #0068d7;
  border-radius: 3.7333333333vw;
  text-align: center;
  letter-spacing: 0.03em;
  font-size: 4.6666666667vw;
  font-weight: 700;
  line-height: 1.5428571429;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li {
    padding-block: 4rem;
    padding-inline: 2rem;
    border: 6px solid #0068d7;
    border-radius: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.76;
  }
}
.p-trouble__list li::before {
  content: "";
  aspect-ratio: 1/1;
  width: 6.2666666667vw;
  background: url("../images/check_icon_blue.png") no-repeat center center/contain;
  position: absolute;
  top: -2.6666666667vw;
  left: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li::before {
    width: 40px;
    top: -20px;
    left: 20px;
  }
}
.p-trouble__list li .emphasis {
  color: #0068d7;
}
.p-trouble__nissy {
  display: block;
  width: 19.4666666667vw;
  aspect-ratio: 146/274;
  pointer-events: none;
  position: absolute;
  left: 0vw;
  top: -26.6666666667vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__nissy {
    width: 146px;
    left: -170px;
    top: -150px;
  }
}
.p-trouble__fuyu {
  display: block;
  width: 21.4666666667vw;
  aspect-ratio: 161/271;
  pointer-events: none;
  position: absolute;
  right: -2.6666666667vw;
  bottom: -33.3333333333vw;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-trouble__fuyu {
    width: 161px;
    right: -200px;
    bottom: -100px;
  }
}
.p-trouble {
  /*********** answer ***********/
}
.p-trouble__answer {
  background: #f3bd4a;
  border: 0.8vw solid #f7d47a;
  border-radius: 2.6666666667vw;
  position: relative;
  z-index: 10;
  width: 100%;
  margin-inline: auto;
  padding-inline: 4vw;
  padding-block-start: 4vw;
  padding-block-end: 4vw;
  text-align: left;
  overflow: hidden;
  align-content: center;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto;
  grid-template-areas: "thumb" "text";
  column-gap: 0.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__answer {
    border: 6px solid #f7d47a;
    border-radius: 20px;
    min-height: 230px;
    padding-inline: 2rem;
    padding-block-start: 3rem;
    padding-block-end: 2rem;
    grid-template-columns: 200px 1fr;
    grid-template-areas: "thumb text";
    column-gap: 0.5rem;
  }
}
.p-trouble__answer-text {
  grid-area: text;
  align-content: center;
}
.p-trouble__answer-text p {
  color: #111;
  letter-spacing: 0.03em;
  margin-block-end: 3.7333333333vw;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .p-trouble__answer-text p {
    margin-block-end: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
  }
}
.p-trouble__answer-text p:last-child {
  margin-block-end: 0;
}
.p-trouble__answer-text p .emphasis {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-trouble__answer-text p .emphasis {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.8181818182;
  }
}
.p-trouble__answer-thumb {
  grid-area: thumb;
  width: 100%;
  position: relative;
  width: 100%;
  height: 30.6666666667vw;
  overflow: hidden;
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__answer-thumb {
    height: inherit;
    overflow: visible;
  }
}
.p-trouble__answer-img {
  position: absolute;
  width: 26.6666666667vw;
  height: auto;
  top: 2.6666666667vw;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-trouble__answer-img {
    width: 171px;
    top: 1rem;
  }
}
.p-trouble__arrow {
  width: 10.4vw;
  position: relative;
  top: 4vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .p-trouble__arrow {
    width: 78px;
    top: 25px;
  }
}

/*==========================================
about
===========================================*/
.p-about {
  padding-block-start: 20vw;
  padding-block-end: 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about {
    background-size: auto;
    padding-block-start: 15rem;
    padding-block-end: 10rem;
  }
}
.p-about__heading {
  text-align: left;
  position: relative;
  padding-inline-start: 2.6666666667vw;
  margin-block-start: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-about__heading {
    padding-inline-start: 1rem;
    margin-block-start: 0;
  }
}
.p-about__heading:after {
  content: " ";
  display: block;
  background: #9c6ccf;
  border-radius: 3px;
  width: 1.3333333333vw;
  height: 100%;
  position: absolute;
  left: -2vw;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-about__heading:after {
    width: 11px;
    left: -15px;
  }
}
.p-about__thumb-inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__thumb-inner {
    aspect-ratio: 498/575;
    width: 498px;
  }
}
.p-about__thumb {
  display: block;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__thumb {
    aspect-ratio: 400/575;
    float: right;
    width: 400px;
  }
}
.p-about__thumb-img {
  aspect-ratio: 498/575;
  width: 66.4vw;
}
@media screen and (min-width: 768px) {
  .p-about__thumb-img {
    position: absolute;
    width: 498px;
    right: -20px;
    top: 0px;
  }
}
.p-about__kojiro-chara {
  display: block;
  width: 21.8666666667vw;
  aspect-ratio: 164/221;
  pointer-events: none;
  position: absolute;
  right: 0vw;
  bottom: 0vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-about__kojiro-chara {
    width: 164px;
    right: 30px;
    bottom: -90px;
  }
}
.p-about p.p-about__emphasis {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.5;
  color: #4f1b87;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about p.p-about__emphasis {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.5151515152;
    text-align: left;
  }
}
.p-about__message {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  margin-block-end: 4vw;
  background: #e1cff3;
  border-radius: 0.6666666667vw;
  box-shadow: inset 2.2666666667vw 0 0 #9c6ccf, inset -2.2666666667vw 0 0 #9c6ccf;
  padding-block: 2.6666666667vw;
  padding-inline: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__message {
    margin-block-end: 3rem;
    border-radius: 5px;
    box-shadow: inset 17px 0 0 #9c6ccf, inset -17px 0 0 #9c6ccf;
    padding-block: 4rem;
    padding-inline: 3rem;
  }
}
.p-about__message p {
  letter-spacing: 0.03em;
  margin-block-end: 0;
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.4705882353;
}
@media screen and (min-width: 768px) {
  .p-about__message p {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
  }
}

/*********** heading band ***********/
.c-heading--left {
  text-align: left;
  display: flex;
  align-items: flex-end;
}

/*==========================================
curriculum
===========================================*/
.p-curriculum {
  padding-block-start: 20vw;
  padding-block-end: 13.3333333333vw;
  position: relative;
  border-top: 4px solid #fdcd53;
  border-bottom: 4px solid #fdcd53;
}
@media screen and (min-width: 768px) {
  .p-curriculum {
    padding-block-start: 10rem;
    padding-block-end: 10rem;
    border-top: 8px solid #fdcd53;
    border-bottom: 8px solid #fdcd53;
  }
}
.p-curriculum__gradient {
  position: relative;
}
.p-curriculum__gradient:after {
  content: " ";
  display: block;
  background: #FFFEFD;
  background: linear-gradient(90deg, rgba(255, 254, 253, 0) 0%, rgba(255, 254, 253, 0.2) 10%, rgb(255, 254, 253) 25%, rgb(255, 254, 253) 75%, rgba(255, 254, 253, 0.2) 90%, rgba(255, 254, 253, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-curriculum__gradient:after {
    background: linear-gradient(90deg, rgba(255, 254, 253, 0) 0%, rgba(255, 254, 253, 0.6) 40%, rgb(255, 254, 253) 50%, rgba(255, 254, 253, 0.6) 60%, rgba(255, 254, 253, 0) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    width: 1980px;
    height: 100%;
    margin-inline-start: -990px;
    z-index: 0;
  }
}
.p-curriculum__inner {
  position: relative;
  z-index: 10;
}
.p-curriculum__arrow {
  width: 7.3333333333vw;
  position: absolute;
  bottom: -5.3333333333vw;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-curriculum__arrow {
    width: 55px;
    bottom: -40px;
  }
}
.p-curriculum__intro {
  text-align: center;
}
.p-curriculum__intro p {
  margin-block-end: 1rem;
}
.p-curriculum__intro-row {
  width: 100%;
  margin-inline: auto;
  align-content: center;
  display: grid;
  grid-template-columns: 15% auto 15%;
  grid-template-rows: auto auto;
  grid-template-areas: "kojiro phrase shindo" "text text text";
  justify-items: center;
  column-gap: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-curriculum__intro-row {
    overflow: hidden;
    grid-template-columns: 180px auto 180px;
    grid-template-areas: "kojiro phrase shindo" "kojiro text shindo";
    padding-inline: 2rem;
    padding-block-start: 5rem;
    padding-block-end: 2rem;
  }
}
.p-curriculum__intro-phrase {
  grid-area: phrase;
  align-self: end;
  padding-block: 8vw;
}
@media screen and (min-width: 768px) {
  .p-curriculum__intro-phrase {
    padding-block: 0;
  }
}
.p-curriculum__intro-phrase p {
  font-size: 4.6666666667vw;
  font-weight: 700;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-curriculum__intro-phrase p {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6666666667;
    margin-block-end: 2rem;
    position: relative;
    top: -2rem;
  }
}
.p-curriculum__intro-text {
  grid-area: text;
  align-self: end;
}
@media screen and (min-width: 768px) {
  .p-curriculum__intro-text p {
    margin-block-end: 2rem;
    position: relative;
    top: -2rem;
  }
}
.p-curriculum__intro-thumb-l {
  grid-area: kojiro;
  width: 100%;
  position: relative;
}
.p-curriculum__intro-thumb-r {
  grid-area: shindo;
  width: 100%;
  position: relative;
}
.p-curriculum__intro-kojiro {
  position: absolute;
  width: 18.6666666667vw;
  height: auto;
  max-width: none;
  top: 2.6666666667vw;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-curriculum__intro-kojiro {
    width: 162px;
    top: -4rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.p-curriculum__intro-shindo {
  position: absolute;
  width: 16vw;
  height: auto;
  max-width: none;
  top: -1.3333333333vw;
  left: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-curriculum__intro-shindo {
    width: 137px;
    top: -5rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.p-curriculum__wrap {
  display: grid;
  gap: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-curriculum__wrap {
    gap: 6rem;
  }
}
.p-curriculum__block {
  position: relative;
  background: #f5f3ef;
  border-radius: 2.6666666667vw;
  padding-block: 6.6666666667vw;
  padding-block-end: 9.3333333333vw;
  padding-inline: 4vw;
  overflow: hidden;
  box-shadow: inset 0 0 0 0.8vw rgb(253, 208, 83), 0 0.9333333333vw 6.1333333333vw 0.6666666667vw rgba(216, 224, 152, 0.61);
}
@media screen and (min-width: 768px) {
  .p-curriculum__block {
    border-radius: 20px;
    padding-block: 5rem;
    padding-inline: 5rem;
    box-shadow: inset 0 0 0 6px rgb(253, 208, 83), 0 7px 46px 5px rgba(216, 224, 152, 0.61);
  }
}
.p-curriculum__block {
  /* 右上 */
}
.p-curriculum__block::before {
  content: "";
  position: absolute;
  top: -0.8vw;
  right: -0.8vw;
  width: 16vw;
  height: 16vw;
  background: #b8c92f;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
@media screen and (min-width: 768px) {
  .p-curriculum__block::before {
    top: -6px;
    right: -6px;
    width: 100px;
    height: 100px;
  }
}
.p-curriculum__block {
  /* 左下 */
}
.p-curriculum__block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16vw;
  height: 16vw;
  background: #b8c92f;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}
@media screen and (min-width: 768px) {
  .p-curriculum__block::after {
    width: 100px;
    height: 100px;
  }
}
.p-curriculum__block:nth-child(1):before, .p-curriculum__block:nth-child(1):after {
  background: #c1d049;
}
.p-curriculum__block:nth-child(2):before, .p-curriculum__block:nth-child(2):after {
  background: #80c1e9;
}
.p-curriculum__block:nth-child(3):before, .p-curriculum__block:nth-child(3):after {
  background: #feb737;
}
.p-curriculum__block:nth-child(4):before, .p-curriculum__block:nth-child(4):after {
  background: #f79aa0;
}
.p-curriculum__heading {
  width: 100%;
  max-width: 750px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 13.6vw 1fr;
  grid-template-areas: "label title" "label lead";
  column-gap: 6.6666666667vw;
  row-gap: 1.0666666667vw;
  position: relative;
  margin-block-end: 4vw;
}
@media screen and (min-width: 768px) {
  .p-curriculum__heading {
    grid-template-columns: 102px 1fr;
    column-gap: 30px;
    row-gap: 8px;
    margin-block-end: 3rem;
  }
}
.p-curriculum__label {
  grid-area: label;
  position: relative;
  aspect-ratio: 1/1;
  width: 17.6vw;
  height: auto;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.2;
  z-index: 1;
  font-size: 2.9333333333vw;
  font-weight: 700;
  line-height: 1.0909090909;
}
@media screen and (min-width: 768px) {
  .p-curriculum__label {
    width: 102px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3333333333;
  }
}
.p-curriculum__label::after {
  content: "";
  position: relative;
  top: 0;
  width: 17.6vw;
  height: 19.3333333333vw;
  position: absolute;
  clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-curriculum__label::after {
    width: 102px;
    height: 115px;
    top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-curriculum__label {
    width: 102px;
    height: 115px;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2631578947;
  }
}
.p-curriculum__label .label-inner {
  display: block;
}
.p-curriculum__label .no {
  font-family: "Roboto", sans-serif;
  font-size: 6.6666666667vw;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (min-width: 768px) {
  .p-curriculum__label .no {
    font-size: 4.4rem;
    font-weight: 600;
    line-height: 1.0227272727;
  }
}
.p-curriculum__title {
  grid-area: title;
  font-size: 5.7333333333vw;
  font-weight: 700;
  line-height: 1.2790697674;
  align-self: end;
}
@media screen and (min-width: 768px) {
  .p-curriculum__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
.p-curriculum__lead {
  grid-area: lead;
  font-size: 3.7333333333vw;
  font-weight: 600;
  line-height: 1.7142857143;
  align-self: start;
}
@media screen and (min-width: 768px) {
  .p-curriculum__lead {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.7;
  }
}
.p-curriculum__list {
  padding-block-start: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-curriculum__list {
    padding-block-start: 4rem;
  }
}
.p-curriculum__list li {
  width: 100%;
  max-width: 650px;
  margin-inline: auto;
  position: relative;
  padding-inline-start: 5.3333333333vw;
  margin-block-end: 2.6666666667vw;
  color: #111;
  text-align: left;
  letter-spacing: 0.03em;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.7857142857;
}
@media screen and (min-width: 768px) {
  .p-curriculum__list li {
    padding-inline-start: 4rem;
    margin-block-end: 1.8rem;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
  }
}
.p-curriculum__list li:last-child {
  margin-block-end: 0;
}
.p-curriculum__list li::before {
  content: "";
  aspect-ratio: 1/1;
  width: 3.7333333333vw;
  position: absolute;
  left: 0;
  top: 1.4666666667vw;
}
@media screen and (min-width: 768px) {
  .p-curriculum__list li::before {
    width: 28px;
    top: 4px;
  }
}
.p-curriculum__block:nth-child(1) .p-curriculum__label:after {
  background: #C1D049;
  background: linear-gradient(102deg, rgb(193, 208, 73) 0%, rgb(193, 208, 73) 50%, rgb(171, 185, 61) 50%, rgb(171, 185, 61) 100%);
}
.p-curriculum__block:nth-child(1) .p-curriculum__list {
  border-top: 1px solid #b8c92f;
}
.p-curriculum__block:nth-child(1) .p-curriculum__list li:before {
  background: url("../images/check_icon_green.png") no-repeat center center/contain;
}
.p-curriculum__block:nth-child(2) .p-curriculum__label:after {
  background: #80c1e9;
  background: linear-gradient(102deg, rgb(128, 193, 233) 0%, rgb(128, 193, 233) 50%, rgb(99, 168, 210) 50%, rgb(99, 168, 210) 100%);
}
.p-curriculum__block:nth-child(2) .p-curriculum__list {
  border-top: 1px solid #80c1e9;
}
.p-curriculum__block:nth-child(2) .p-curriculum__list li:before {
  background: url("../images/check_icon_lightblue.png") no-repeat center center/contain;
}
.p-curriculum__block:nth-child(3) .p-curriculum__label:after {
  background: #fbbf52;
  background: linear-gradient(102deg, rgb(251, 191, 82) 0%, rgb(251, 191, 82) 50%, rgb(246, 171, 36) 50%, rgb(246, 171, 36) 100%);
}
.p-curriculum__block:nth-child(3) .p-curriculum__list {
  border-top: 1px solid #fbbf52;
}
.p-curriculum__block:nth-child(3) .p-curriculum__list li:before {
  background: url("../images/check_icon_orange.png") no-repeat center center/contain;
}
.p-curriculum__block:nth-child(4) .p-curriculum__label:after {
  background: #f9abb0;
  background: linear-gradient(102deg, rgb(249, 171, 176) 0%, rgb(249, 171, 176) 50%, rgb(244, 147, 154) 50%, rgb(244, 147, 154) 100%);
}
.p-curriculum__block .p-curriculum__list {
  border-top: 1px solid #f9abb0;
}
.p-curriculum__block .p-curriculum__list li:before {
  background: url("../images/check_icon_pink.png") no-repeat center center/contain;
}

/*==========================================
profile
===========================================*/
.p-profile {
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-profile {
    padding-block-end: 5rem;
  }
}
.p-profile__wrap {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-profile__wrap {
    gap: 0;
  }
}
.p-profile__block-l {
  position: relative;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 0px 0px;
  grid-template-areas: "thumb" "body" "meta";
  padding-block: 6.6666666667vw;
  padding-inline: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__block-l {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: auto auto;
    gap: 0px 0px;
    grid-template-areas: "thumb body" "meta meta";
    padding-block: 8rem;
    padding-inline: 7rem;
  }
}
.p-profile__block-l:after {
  content: " ";
  display: block;
  background: url(../images/profile_bg.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: auto;
  aspect-ratio: 433/531;
  position: absolute;
  left: 1.3333333333vw;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-profile__block-l:after {
    width: 433px;
    left: 2rem;
  }
}
.p-profile__block-l-meta {
  grid-area: meta;
}
.p-profile__block-l-thumb {
  grid-area: thumb;
}
.p-profile__block-l-thumb img {
  display: block;
  width: 70%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-profile__block-l-thumb img {
    width: auto;
    margin-inline: revert;
  }
}
.p-profile__block-l-body {
  grid-area: body;
}
.p-profile__heading-sp {
  display: block;
  text-align: center;
}
.p-profile__row {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0px 3rem;
  grid-template-areas: "award" "book";
  margin-block-start: 4vw;
}
@media screen and (min-width: 768px) {
  .p-profile__row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "award book";
    margin-block-start: 5rem;
  }
}
.p-profile__award {
  grid-area: award;
}
.p-profile__book {
  grid-area: book;
}
.p-profile__block {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding-block: 6.6666666667vw;
  padding-inline: 6.6666666667vw;
  display: grid;
  grid-template-columns: auto;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .p-profile__block {
    grid-template-columns: 40% 60%;
    grid-template-rows: auto;
    gap: 2rem;
    padding-block: 8rem;
    padding-inline: 7rem;
  }
}
.p-profile__block:after {
  content: " ";
  display: block;
  background: url(../images/profile_bg.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: auto;
  aspect-ratio: 433/531;
  position: absolute;
  left: 1.3333333333vw;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-profile__block:after {
    width: 433px;
    left: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-profile__block:nth-of-type(even) {
    grid-template-columns: 60% 40%;
  }
  .p-profile__block:nth-of-type(even):after {
    left: revert;
    right: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-profile__block:nth-of-type(even):after {
    width: 433px;
    right: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-profile__block:nth-of-type(even) .p-profile__thumb {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-profile__block:nth-of-type(even) .p-profile__body {
    order: 1;
  }
}
.p-profile__heading {
  text-align: center;
  padding-inline: 4vw;
  margin-block-start: 4vw;
}
@media screen and (min-width: 768px) {
  .p-profile__heading {
    text-align: left;
    padding-inline: 3rem;
    margin-block-start: 5rem;
  }
}
.p-profile__heading .small {
  font-size: 4vw;
  font-weight: 400;
  line-height: 1;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-profile__heading .small {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    display: inline;
    padding-inline-start: 1rem;
  }
}
.p-profile__name {
  margin-block-end: 6.6666666667vw;
  padding-block: 6.6666666667vw;
  padding-inline: 5.3333333333vw;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
  font-size: 6vw;
  font-weight: 400;
  line-height: 1.3333333333;
  background: #2D46A5;
  background: linear-gradient(275deg, rgba(45, 70, 165, 0) 0%, rgb(45, 70, 165) 78%, rgb(196, 56, 99) 100%);
  color: white;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-profile__name {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.6666666667;
    margin-block-start: 8rem;
    margin-block-end: 3rem;
    padding-block: 3rem;
    padding-inline: 3rem;
    text-align: left;
  }
}
.p-profile__name:after {
  content: " ";
  display: block;
  background: #2d46a5;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.p-profile__name .kana {
  font-size: 3.4666666667vw;
  font-weight: 400;
  line-height: 0.7692307692;
}
@media screen and (min-width: 768px) {
  .p-profile__name .kana {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
  }
}
.p-profile__body {
  width: 100%;
  margin-block-end: 2rem;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-profile__body {
    padding-block-end: 5rem;
  }
}
.p-profile__text {
  width: 100%;
  padding-inline: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__text {
    width: 100%;
    padding-inline: 2rem;
  }
}
.p-profile__text p {
  font-size: 4vw;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-profile__text p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.125;
  }
}
.p-profile__title {
  margin-block-end: 4vw;
  padding-block: 1.3333333333vw;
  padding-inline: 2.6666666667vw;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.3333333333;
  background: #2D46A5;
  background: linear-gradient(275deg, rgba(45, 70, 165, 0) 0%, rgb(45, 70, 165) 78%, rgb(196, 56, 99) 100%);
  color: white;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-profile__title {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.1764705882;
    margin-block-end: 2rem;
    padding-block: 1rem;
    padding-inline: 2rem;
    text-align: left;
  }
}
.p-profile__list {
  margin-block-end: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-profile__list {
    margin-block-end: 2rem;
  }
}
.p-profile__list li {
  position: relative;
  padding-inline-start: 4vw;
  font-size: 3.8666666667vw;
  font-weight: 400;
  line-height: 1.724137931;
  letter-spacing: 0.1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-profile__list li {
    padding-inline-start: 2rem;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2;
  }
}
.p-profile__list li:before {
  content: "";
  width: auto;
  height: 2vw;
  aspect-ratio: 12/15;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  display: inline-block;
  background: #293c97;
  position: absolute;
  left: 0;
  top: 2.0666666667vw;
}
@media screen and (min-width: 768px) {
  .p-profile__list li:before {
    height: 10px;
    top: 9px;
  }
}
.p-profile__thumb {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-profile__thumb {
    margin-block-end: 3rem;
  }
}
.p-profile__thumb img {
  display: block;
  width: 70%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-profile__thumb img {
    width: auto;
    margin-inline: revert;
  }
}

/*==========================================
benefit
===========================================*/
.p-benefit {
  padding-block-start: 20vw;
  padding-block-end: 40vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-benefit {
    background-size: auto;
    padding-block-start: 13rem;
    padding-block-end: 20rem;
  }
}
.p-benefit__heading {
  width: 100%;
  max-width: 872px;
  margin-inline: auto;
}
.p-benefit__arrow {
  width: 7.3333333333vw;
  position: absolute;
  bottom: -5.3333333333vw;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-benefit__arrow {
    width: 55px;
    bottom: -40px;
  }
}
.p-benefit__wrap {
  position: relative;
}
.p-benefit__list {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  gap: 2.6666666667vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-benefit__list {
    gap: 1.5rem;
  }
}
.p-benefit__list li {
  background: white;
  padding-block: 2.6666666667vw;
  padding-inline: 2.6666666667vw;
  border-radius: 2.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  box-shadow: inset 2.2666666667vw 0 0 #dc5f61, inset -2.2666666667vw 0 0 #dc5f61;
}
@media screen and (min-width: 768px) {
  .p-benefit__list li {
    padding-block: 3rem;
    padding-inline-start: 7rem;
    padding-inline-end: 4rem;
    border-radius: 2rem;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5384615385;
    text-align: left;
    box-shadow: inset 17px 0 0 #dc5f61, inset -17px 0 0 #dc5f61;
  }
}
.p-benefit__frame {
  position: absolute;
  top: -20vw;
  left: 50%;
  transform: translateX(-50%);
  width: 110vw;
  max-width: none;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-benefit__frame {
    max-width: inherit;
    position: absolute;
    top: -8rem;
    aspect-ratio: 1182/787;
    width: 100%;
    height: auto;
    z-index: 2;
  }
}
@media (min-width: 1500px) {
  .p-benefit__frame {
    width: 1182px;
  }
}
.p-benefit__confetti-l {
  display: block;
  width: 100vw;
  aspect-ratio: 741/1106;
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
  top: -46.6666666667vw;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-benefit__confetti-l {
    aspect-ratio: 322/935;
    width: 322px;
    transform: none;
    left: calc(50% - 730px);
    top: -20rem;
  }
}
.p-benefit__confetti-r {
  display: block;
  width: 98.1333333333vw;
  aspect-ratio: 736/455;
  pointer-events: none;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  width: 100vw;
  max-width: none;
  top: 96vw;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-benefit__confetti-r {
    aspect-ratio: 359/894;
    width: 359px;
    transform: none;
    right: calc(50% - 750px);
    top: -24rem;
  }
}
.p-benefit__shindo {
  display: block;
  width: 21.3333333333vw;
  aspect-ratio: 170/300;
  pointer-events: none;
  position: absolute;
  left: 0vw;
  top: -60vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-benefit__shindo {
    width: 170px;
    left: -150px;
    top: -130px;
  }
}
.p-benefit__nissy {
  display: block;
  width: 20vw;
  aspect-ratio: 159/298;
  pointer-events: none;
  position: absolute;
  right: 0vw;
  top: -60vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-benefit__nissy {
    width: 159px;
    right: -150px;
    top: -130px;
  }
}
.p-benefit__fuyu {
  display: block;
  width: 20vw;
  aspect-ratio: 154/295;
  pointer-events: none;
  position: absolute;
  left: -2.6666666667vw;
  bottom: -33.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-benefit__fuyu {
    width: 154px;
    left: -130px;
    bottom: -130px;
  }
}
.p-benefit__mari {
  display: block;
  width: 21.3333333333vw;
  aspect-ratio: 170/301;
  pointer-events: none;
  position: absolute;
  right: -2.6666666667vw;
  bottom: -33.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-benefit__mari {
    width: 170px;
    right: -130px;
    bottom: -130px;
  }
}

.u-darkred {
  color: #bf2115;
}

/*==========================================
special
===========================================*/
.p-special {
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
  position: relative;
  border-top: 4px solid #dc5f61;
  border-bottom: 4px solid #dc5f61;
}
@media screen and (min-width: 768px) {
  .p-special {
    background-size: auto;
    padding-block-start: 10rem;
    padding-block-end: 10rem;
    border-top: 8px solid #dc5f61;
    border-bottom: 8px solid #dc5f61;
  }
}
.p-special__heading {
  background: white;
  padding-block: 2.6666666667vw;
  padding-inline: 2.6666666667vw;
  border-radius: 2.6666666667vw;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.3888888889;
  box-shadow: inset 2.2666666667vw 0 0 #bf2115, inset -2.2666666667vw 0 0 #bf2115;
}
@media screen and (min-width: 768px) {
  .p-special__heading {
    padding-block: 2.5rem;
    padding-inline: 4rem;
    border-radius: 2rem;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.4285714286;
    box-shadow: inset 17px 0 0 #bf2115, inset -17px 0 0 #bf2115;
  }
}
.p-special__wrap {
  position: relative;
  margin-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-special__wrap {
    margin-block-end: 10rem;
  }
}
.p-special__frame {
  background: #fffdf8;
  border: 0.8vw solid #d91d14;
  border-radius: 2.6666666667vw;
  overflow: hidden;
  padding-block-start: 6.6666666667vw;
  padding-block-end: 4vw;
  padding-inline: 5.3333333333vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-special__frame {
    border: 6px solid #d91d14;
    border-radius: 20px;
    padding-block-start: 4rem;
    padding-block-end: 3rem;
    padding-inline: 4rem;
  }
}
.p-special__ribbon-tp {
  display: block;
  width: 240vw;
  aspect-ratio: 1573/308;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: -26.6666666667vw;
  transform: translateX(-50%);
  z-index: 0;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-special__ribbon-tp {
    width: 1573px;
    top: -20rem;
  }
}
.p-special__ribbon-bt {
  display: block;
  width: 133.3333333333vw;
  aspect-ratio: 1444/156;
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: -9.3333333333vw;
  transform: translateX(-50%);
  max-width: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-special__ribbon-bt {
    width: 1444px;
    bottom: -5rem;
  }
}
.p-special__first {
  margin-block-end: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-special__first {
    margin-block-end: 40px;
  }
}
.p-special__first::before, .p-special__first::after {
  content: "";
  position: absolute;
  top: 0;
  width: 9.3333333333vw;
  height: 9.3333333333vw;
  background: #d91d14;
}
@media screen and (min-width: 768px) {
  .p-special__first::before, .p-special__first::after {
    width: 70px;
    height: 70px;
  }
}
.p-special__first::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.p-special__first::after {
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.p-special__first-heading {
  background: #f6d7a8;
  border: 5px solid white;
  text-align: center;
  position: relative;
  padding-block: 4vw;
  padding-inline: 4vw;
  margin-block-end: 2.4vw;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .p-special__first-heading {
    padding-block: 3rem;
    padding-inline: 3rem;
    margin-block-end: 1.8rem;
  }
}
.p-special__first-label {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.03em;
  font-size: 5.7333333333vw;
  font-weight: 900;
  line-height: 1.3953488372;
}
@media screen and (min-width: 768px) {
  .p-special__first-label {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.4285714286;
  }
}
.p-special__first-pop {
  background: #bf2115;
  color: white;
  border-radius: 100vh;
  padding-block: 2vw;
  padding-inline: 2.6666666667vw;
  width: fit-content;
  margin-inline: auto;
  margin-block-start: 2.6666666667vw;
  margin-block-end: 2.6666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.0714285714;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-special__first-pop {
    padding-block: 1rem;
    padding-inline: 2rem;
    margin-block-start: 2rem;
    margin-block-end: 2rem;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.p-special__first-pop:after {
  content: " ";
  display: block;
  background: #bf2115;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 2.6666666667vw;
  height: 1.3333333333vw;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.2vw;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-special__first-pop:after {
    width: 2rem;
    height: 1rem;
    bottom: -0.9rem;
  }
}
.p-special__first-title {
  font-size: 4.6666666667vw;
  font-weight: 700;
  line-height: 1.3142857143;
}
@media screen and (min-width: 768px) {
  .p-special__first-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
  }
}
.p-special__first-type {
  text-align: center;
  margin-block-end: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-special__first-type {
    margin-block-end: 1rem;
  }
}
.p-special__first-text {
  margin-block-start: 4vw;
  margin-block-end: 8vw;
}
@media screen and (min-width: 768px) {
  .p-special__first-text {
    margin-block-start: 2rem;
    margin-block-end: 6rem;
  }
}
.p-special__first-text p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-special__first-text p {
    text-align: center;
  }
}
.p-special__second-box {
  background: #f7c8c3;
  border: 5px solid white;
  text-align: center;
  position: relative;
  padding-block: 4vw;
  padding-inline: 4vw;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .p-special__second-box {
    padding-block: 3rem;
    padding-inline: 3rem;
  }
}
.p-special__second-more {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.03em;
  font-size: 6vw;
  font-weight: 900;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .p-special__second-more {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.4285714286;
  }
}
.p-special__second-title {
  padding-inline: 2.6666666667vw;
  padding-block-start: 3.2vw;
  padding-block-end: 3.2vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .p-special__second-title {
    padding-inline: 2rem;
    padding-block-start: 2rem;
    padding-block-end: 0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 2.0909090909;
  }
}
.p-special__second-text p {
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.6428571429;
}
@media screen and (min-width: 768px) {
  .p-special__second-text p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
  }
}
.p-special__second-message {
  font-size: 4.6666666667vw;
  font-weight: 700;
  line-height: 1.3142857143;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-special__second-message {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
  }
}
.p-special {
  /*********** notion ***********/
}
.p-special__notion {
  background: #cf170f;
  border: 0.8vw solid #f6b84b;
  border-radius: 3.2vw;
  padding-block: 5.3333333333vw;
  padding-inline: 5.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-special__notion {
    border: 6px solid #f6b84b;
    border-radius: 20px;
    padding-block: 4rem;
    padding-inline: 4rem;
  }
}
.p-special__notion-title {
  position: relative;
  margin-block-end: 2.6666666667vw;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.2222222222;
}
@media screen and (min-width: 768px) {
  .p-special__notion-title {
    margin-block-end: 2rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.5714285714;
  }
}
.p-special__notion-limit {
  letter-spacing: 0.03em;
  background: #fdd6d2;
  border: 0.5333333333vw solid #fff;
  border-radius: 0.6666666667vw;
  padding: 4vw 2.6666666667vw;
  font-size: 5.0666666667vw;
  font-weight: 700;
  line-height: 1.3157894737;
}
@media screen and (min-width: 768px) {
  .p-special__notion-limit {
    border: 4px solid #fff;
    border-radius: 5px;
    padding: 30px 20px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5333333333;
  }
}

/*==========================================
offer
===========================================*/
.p-offer {
  padding-block-start: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-offer {
    padding-block-start: 100px;
  }
}
.p-offer__intro {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.3888888889;
  padding-block-end: 6.6666666667vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-offer__intro {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5384615385;
    padding-block-end: 4rem;
  }
}
.p-offer__lead {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-offer__lead {
    margin-block-end: 5rem;
  }
}
.p-offer__lead p {
  font-size: 4vw;
  font-weight: 600;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-offer__lead p {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2;
  }
}
.p-offer__title {
  font-size: 6vw;
  font-weight: 900;
  line-height: 1.3333333333;
  margin-block-end: 4vw;
}
@media screen and (min-width: 768px) {
  .p-offer__title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.4285714286;
    margin-block-end: 3rem;
  }
}
.p-offer p.p-offer__message {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-size: 5.3333333333vw;
  font-weight: 900;
  line-height: 1.5;
  padding-block-start: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-offer p.p-offer__message {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.5;
    padding-block-start: 2rem;
  }
}
.p-offer__all {
  display: block;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 11;
}
.p-offer__floor {
  display: block;
  width: 264vw;
  aspect-ratio: 1980/230;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-offer__floor {
    width: 1980px;
    bottom: 0px;
  }
}
.p-offer {
  /*********** notice_list ***********/
}
.p-offer__notice {
  width: 90%;
  margin-inline: auto;
  overflow: hidden;
  padding-block-start: 4vw;
  padding-inline-start: 2.6666666667vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-offer__notice {
    width: 100%;
    padding-block-start: 4rem;
    padding-inline-start: 1.4rem;
  }
}
.p-offer__notice li {
  font-size: 3.4666666667vw;
  font-weight: 400;
  line-height: 1.5384615385;
  text-indent: -2.6666666667vw;
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-offer__notice li {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4285714286;
    text-indent: -1.4rem;
    margin-block-end: 14px;
  }
}
.p-offer__bg {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-offer__bg {
    display: block;
    max-width: inherit;
    position: absolute;
    top: 0;
    left: 50%;
    aspect-ratio: 1980/2194;
    width: 100%;
    height: auto;
    transform: translateX(-50%);
    z-index: 0;
  }
}
@media (min-width: 1500px) {
  .p-offer__bg {
    width: 1980px;
  }
}

/*==========================================
form
===========================================*/
.p-form {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  position: relative;
  padding-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-form {
    padding-block-start: 4rem;
  }
}
.p-form__bg {
  position: relative;
  background: url(../images/bg_pattern_rainbow_sp.png) repeat-y;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-form__bg {
    background: none;
  }
}
.p-form__heading {
  position: relative;
  z-index: 10;
}
.p-form__label {
  width: fit-content;
  margin-inline: auto;
  font-size: 4.6666666667vw;
  font-weight: 700;
  line-height: 1.4285714286;
  margin-block-end: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-form__label {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6;
    margin-block-end: 1rem;
  }
}
.p-form__label .no {
  font-family: "Roboto", sans-serif;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.2;
  color: #bb132c;
}
@media screen and (min-width: 768px) {
  .p-form__label .no {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
  }
}
.p-form__title {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-form__title {
    margin-block-end: 2rem;
  }
}

/*********** mailform ***********/
.c-form__wrap {
  width: 100%;
  margin-inline: auto;
  background: white;
  border: 4px solid #fedb8c;
  border-radius: 10px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-form__wrap {
    border-radius: 10px;
    border: 5px solid #fedb8c;
  }
}
.c-form__title {
  background: #fedb8c;
  padding-block: 2.6666666667vw;
  padding-inline: 2.6666666667vw;
  border-radius: 1.3333333333vw;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.3888888889;
  text-align: center;
  box-shadow: inset 1.3333333333vw 0 0 #4f1b87, inset -1.3333333333vw 0 0 #4f1b87;
  color: #4f1b87;
  margin-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-form__title {
    padding-block: 1.5rem;
    padding-inline: 2rem;
    border-radius: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5333333333;
    box-shadow: inset 10px 0 0 #4f1b87, inset -10px 0 0 #4f1b87;
    margin-block-end: 3rem;
  }
}
.c-form__inner {
  width: 90%;
  margin-inline: auto;
  padding-block: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-form__inner {
    width: 100%;
    max-width: 680px;
    padding-block-start: 5rem;
    padding-block-end: 7rem;
  }
}
.c-form__required {
  border-radius: 5px;
  background: #bb132c;
  color: white;
  padding: 0.6666666667vw 2vw;
}
@media screen and (min-width: 768px) {
  .c-form__required {
    padding: 0.5rem 1rem;
  }
}
.c-form a {
  text-decoration: underline;
}
.c-form a:hover {
  text-decoration: none;
}

.c-notice {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.7333333333vw;
  margin-block-start: 3.2vw;
}
@media screen and (min-width: 768px) {
  .c-notice {
    gap: 28px;
    margin-block-start: 24px;
  }
}
.c-notice li {
  position: relative;
  padding-inline-start: 6.1333333333vw;
  color: #111;
  letter-spacing: 0.03em;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .c-notice li {
    padding-inline-start: 4rem;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.c-notice li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4.5333333333vw;
  aspect-ratio: 1/1;
  background: url(../images/check_icon_green.png) no-repeat center center/contain;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-notice li::before {
    width: 34px;
  }
}

/*********** form ***********/
.c-form__input {
  height: 50px;
  width: 100%;
  border: none;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  padding: 10px 5px;
  margin: 10px 0 15px;
  display: block;
  border-radius: 3px;
  text-align: center;
  outline: none;
  color: #000;
  font-family: "Noto San JP", sans-serif;
  background: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .c-form__input {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    height: 60px;
    padding: 10px 20px;
  }
}