/*==========================================
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: #0d1846;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #b9c8db;
  /*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: 100vh;
  background: linear-gradient(180deg, rgb(255, 193, 0) 0%, rgb(243, 152, 0) 70%, rgb(243, 143, 0) 100%);
  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: all 0.3s;
  position: relative;
  /*transform: translate(-15px,-15px);*/
  box-shadow: 0px 11px 20.58px 0.42px rgba(204, 108, 7, 0.4);
  /*&:after {
    content: " ";
    display: block;
    background: $orange;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s;
    border-radius: 100vh;
  }

  &__inner {
    width: 100%;
    position: relative;
    z-index: 10;

    &:after {
      content: " ";
      display: block;
      aspecto-ratio: 64/47;
      background: url(../images/btn_arrow.png) no-repeat;
      background-size: contain;
      width: vw(100);
      height: auto;
      position: absolute;
      right: vw(-20);
      top: 0;
      bottom: 0;
      margin: auto;
      transition: all 0.3s;

      @include media(m) {
        width: 64px;
        right: 20px;
      }
    }
  }
  */
}
@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: #FFC100;
    background: linear-gradient(0deg, rgb(255, 193, 0) 0%, rgb(243, 152, 0) 70%, rgb(243, 143, 0) 100%);
    transform: translateY(-5px);
    outline: none;
    box-shadow: 0px 11px 20.58px 0.42px rgba(255, 211, 79, 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-submit {
  border-radius: 20px;
}

.c-btn-label {
  background: #f63524;
  padding-block-start: 0.6666666667vw;
  padding-block-end: 1.2vw;
  padding-inline: 1.3333333333vw;
  border-radius: 5px;
  margin-inline-end: 0.6666666667vw;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-btn-label {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5384615385;
    padding-block: 0.2rem;
    padding-inline: 0.8rem;
    margin-inline-end: 0.5rem;
  }
}

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

/*==========================================
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;
  text-shadow: 4px 3px 0px rgba(183, 192, 224, 0.55);
}
@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);
}

/*********** line pop img ***********/
.c-title-linePopImg {
  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 {
    column-gap: 20px;
    margin-block-end: 2rem;
  }
}
.c-title-linePopImg:after, .c-title-linePopImg:before {
  content: "";
  display: block;
  background: url(../images/pop_deco.png) no-repeat;
  background-size: contain;
  aspect-ratio: 35/34;
  width: 8vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg:after, .c-title-linePopImg:before {
    width: 35px;
  }
}
.c-title-linePopImg:before {
  position: relative;
  left: -0.5rem;
}
.c-title-linePopImg:after {
  justify-self: end;
  transform: scale(-1, 1);
}

/*********** line_pop_l ***********/
.c-title-linePopImg-l {
  text-align: center;
}
.c-title-linePopImg-l__inner {
  text-align: center;
  padding: 1.3333333333vw 8vw;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg-l__inner {
    padding: 0.5rem 15rem;
  }
}
.c-title-linePopImg-l__inner:after, .c-title-linePopImg-l__inner:before {
  content: "";
  display: block;
  background: url(../images/title_pop_l.png) no-repeat;
  background-size: contain;
  width: 12.5333333333vw;
  height: 16.8vw;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg-l__inner:after, .c-title-linePopImg-l__inner:before {
    width: 94px;
    height: 126px;
  }
}
.c-title-linePopImg-l__inner:before {
  left: -4vw;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg-l__inner:before {
    left: 0;
  }
}
.c-title-linePopImg-l__inner:after {
  transform: scale(-1, 1);
  right: -4vw;
}
@media screen and (min-width: 768px) {
  .c-title-linePopImg-l__inner:after {
    right: 0;
  }
}

/*==========================================
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: 1100px;
}
.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: 8vw;
  padding-block-end: 8vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-block-start: 7rem;
    padding-block-end: 13rem;
  }
}
.p-hero__inner {
  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;
  color: #0d1846;
}
.p-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-hero__bg {
    max-width: inherit;
    position: absolute;
    top: 0;
    left: 50%;
    aspect-ratio: 1980/1054;
    width: 1980px;
    height: auto;
    margin-inline-start: -990px;
    z-index: 0;
  }
}
@media (min-width: 1500px) {
  .p-hero__bg {
    width: 1980px;
    margin-inline-start: -990px;
  }
}
.p-hero__sub-title {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.6666666667;
  padding-block-end: 2.6666666667vw;
  margin-block-end: 0;
  color: #bb132c;
}
@media screen and (min-width: 768px) {
  .p-hero__sub-title {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.2121212121;
    padding-block-end: 1.5rem;
    letter-spacing: 0.05rem;
  }
}
.p-hero__catch {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.1111111111;
  padding-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-hero__catch {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.84;
    padding-block-end: 2rem;
  }
}
.p-hero__title {
  font-size: 7.3333333333vw;
  font-weight: 900;
  line-height: 1.0909090909;
  padding-block-end: 2.6666666667vw;
  text-shadow: 4px 3px 0px rgba(183, 192, 224, 0.58);
  letter-spacing: -0.05rem;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    font-size: 7.4rem;
    font-weight: 900;
    line-height: 1.2162162162;
    padding-block-end: 3rem;
  }
}
.p-hero__title .small {
  display: block;
  font-size: 6.6666666667vw;
  font-weight: 900;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-hero__title .small {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.2727272727;
  }
}
.p-hero__label {
  width: 100%;
  margin-inline: auto;
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.1764705882;
  margin-block-end: 2.6666666667vw;
  padding-block: 1.3333333333vw;
  padding-inline: 4vw;
  color: white;
  background: #2D46A5;
  background: linear-gradient(90deg, rgba(45, 70, 165, 0) 0%, rgba(45, 70, 165, 0.8) 15%, rgb(45, 70, 165) 50%, rgba(45, 70, 165, 0.8) 85%, rgba(45, 70, 165, 0) 100%);
}
@media screen and (min-width: 768px) {
  .p-hero__label {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.125;
    margin-block-end: 2.5rem;
    padding-block-start: 0.8rem;
    padding-block-end: 1.2rem;
    padding-inline: 2rem;
  }
}
.p-hero__text-l {
  font-size: 4vw;
  font-weight: 900;
  line-height: 1.6666666667;
  margin-block-end: 4vw;
}
@media screen and (min-width: 768px) {
  .p-hero__text-l {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: 0.2rem;
    margin-block-end: 3.5rem;
  }
}
.p-hero__limit {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.6666666667;
  background: #f8a9c1;
  border-radius: 100vh;
  overflow: hidden;
  margin-block-end: 4vw;
}
@media screen and (min-width: 768px) {
  .p-hero__limit {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.6666666667;
    letter-spacing: 0.2rem;
    margin-block-end: 3.5rem;
  }
}
.p-hero__limit-label, .p-hero__limit-day {
  padding-block: 2.6666666667vw;
  padding-inline: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-hero__limit-label, .p-hero__limit-day {
    padding-block: 0.5rem;
    padding-inline: 1.8rem;
  }
}
.p-hero__limit-label {
  background: #c33560;
  color: white;
}
.p-hero__shindo {
  content: " ";
  display: block;
  width: 16vw;
  height: auto;
  aspect-ratio: 137/258;
  position: absolute;
  left: 1.3333333333vw;
  top: 49.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-hero__shindo {
    width: 137px;
    top: 550px;
    left: calc(50% - 470px);
  }
}
.p-hero__kojiro {
  content: " ";
  display: block;
  width: 16vw;
  height: auto;
  aspect-ratio: 148/248;
  position: absolute;
  right: 1.3333333333vw;
  top: 52vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-hero__kojiro {
    width: 148px;
    top: 550px;
    right: calc(50% - 470px);
  }
}
.p-hero__nanamin {
  content: " ";
  display: block;
  width: 15.3333333333vw;
  height: auto;
  aspect-ratio: 131/294;
  position: absolute;
  right: 1.3333333333vw;
  top: 84vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__nanamin {
    width: 131px;
    top: 350px;
    right: calc(50% - 650px);
  }
}
.p-hero__nissy {
  content: " ";
  display: block;
  width: 15.3333333333vw;
  height: auto;
  aspect-ratio: 138/278;
  position: absolute;
  left: 1.3333333333vw;
  top: 84vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__nissy {
    width: 138px;
    top: 350px;
    left: calc(50% - 650px);
  }
}
.p-hero__bg-flag-a {
  content: " ";
  display: block;
  max-width: revert;
  width: 86.6666666667vw;
  height: auto;
  aspect-ratio: 1389/1009;
  position: absolute;
  left: -26.6666666667vw;
  top: -24vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-hero__bg-flag-a {
    max-width: 100%;
    width: 1389px;
    top: -250px;
    left: calc(50% - 1370px);
  }
}
.p-hero__bg-flag-b {
  content: " ";
  display: block;
  max-width: revert;
  width: 106.6666666667vw;
  height: auto;
  aspect-ratio: 1389/917;
  position: absolute;
  right: -33.3333333333vw;
  top: 100vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-hero__bg-flag-b {
    max-width: 100%;
    width: 1389px;
    top: 450px;
    right: calc(50% - 1550px);
  }
}
.p-hero__bg-icon-l {
  content: " ";
  display: block;
  width: 33.3333333333vw;
  height: auto;
  aspect-ratio: 560/967;
  position: absolute;
  left: 1.3333333333vw;
  top: 96vw;
  z-index: 0;
  transform: rotateZ(0);
}
@media screen and (min-width: 768px) {
  .p-hero__bg-icon-l {
    width: 560px;
    top: -90px;
    left: calc(50% - 1000px);
  }
}
.p-hero__bg-icon-r {
  content: " ";
  display: block;
  width: 26.6666666667vw;
  height: auto;
  aspect-ratio: 486/710;
  position: absolute;
  right: -6.6666666667vw;
  top: -2.6666666667vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-hero__bg-icon-r {
    width: 486px;
    top: -30px;
    right: calc(50% - 980px);
  }
}

/* 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: rgba(255, 255, 255, 0.83);
  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: #bb132c;
}

.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) 10%, rgba(116, 210, 231, 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
===========================================*/
/*==========================================
c-list
===========================================*/
.c-list__wrap {
  width: 100%;
  background: #ffce00;
  padding: 2.6666666667vw;
  padding-inline-start: 6.6666666667vw;
  margin-block-end: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-list__wrap {
    padding-block: 3rem;
    padding-inline-start: 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: 1rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8888888889;
  }
}
.c-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: white;
  position: absolute;
  left: 0;
  top: 2.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-list li:before {
    height: 15px;
    top: 9.5px;
  }
}

.c-list-s li {
  position: relative;
  padding-inline-end: 2rem;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.4666666667;
  letter-spacing: 0.1rem;
  text-align: left;
  margin-block-end: 1rem;
}
@media screen and (min-width: 768px) {
  .c-list-s li {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.625;
    margin-block-end: 1rem;
  }
}
.c-list-s li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  display: inline-block;
  background: #2d46a5;
  position: absolute;
  left: 0;
  top: calc((5.8666666667vw - 7px) / 2);
}
@media screen and (min-width: 768px) {
  .c-list-s li:before {
    top: 9.5px;
  }
}

/*==========================================
letter
===========================================*/
.c-letter {
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-letter {
    padding-block-start: 10rem;
    padding-block-end: 10rem;
  }
}
.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-box {
  position: relative;
  z-index: 1;
  padding-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-box {
    padding-block-start: 5rem;
  }
}

/*==========================================
intro
===========================================*/
.p-intro {
  width: 90%;
  padding-block-start: 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-intro {
    width: 100%;
  }
}

/*==========================================
trouble
===========================================*/
.p-trouble {
  padding-block-start: 20vw;
  padding-block-end: 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-trouble {
    background-size: auto;
    padding-block-start: 13rem;
    padding-block-end: 10rem;
  }
}
.p-trouble__inner {
  position: relative;
  z-index: 1;
}
.p-trouble__heading {
  width: fit-content;
  margin-inline: auto;
  position: relative;
  padding-inline: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__heading {
    padding-inline: 2rem;
  }
}
.p-trouble__heading:before {
  content: " ";
  display: block;
  background: url(../images/icon_bad01.png) no-repeat;
  background-size: contain;
  width: 6.6666666667vw;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  left: -2.6666666667vw;
  top: 1.3333333333vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__heading:before {
    width: 59px;
    left: -70px;
    top: 0;
  }
}
.p-trouble__heading:after {
  content: " ";
  display: block;
  background: url(../images/icon_bad02.png) no-repeat;
  background-size: contain;
  width: 6.6666666667vw;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  right: -2.6666666667vw;
  top: 1.3333333333vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__heading:after {
    width: 59px;
    right: -70px;
    top: 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__body p {
  color: white;
}
.p-trouble__wrap {
  padding-block: 16vw;
  padding-inline: 5.3333333333vw;
  margin-block-end: 13.3333333333vw;
  margin-block-start: 13.3333333333vw;
  background: white;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__wrap {
    padding-block: 8rem;
    padding-inline: 4rem;
    margin-block-end: 7rem;
    margin-block-start: 0;
  }
}
.p-trouble__wrap:before {
  content: " ";
  display: block;
  background: #2d46a5;
  background: url(../images/shindo_pic02.png) no-repeat;
  background-size: contain;
  width: 20vw;
  height: auto;
  aspect-ratio: 144/271;
  position: absolute;
  left: -1.3333333333vw;
  bottom: -22.6666666667vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-trouble__wrap:before {
    width: 144px;
    top: revert;
    bottom: 1rem;
    right: revert;
    left: -5rem;
  }
}
@media (min-width: 1200px) {
  .p-trouble__wrap:before {
    left: -16rem;
  }
}
.p-trouble__wrap:after {
  content: " ";
  display: block;
  background: #2d46a5;
  background: url(../images/nissy_pic02.png) no-repeat;
  background-size: contain;
  width: 20vw;
  height: auto;
  aspect-ratio: 142/271;
  position: absolute;
  right: 2.6666666667vw;
  top: -9.3333333333vw;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-trouble__wrap:after {
    width: 142px;
    right: -7rem;
    bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .p-trouble__wrap:after {
    right: -17rem;
    bottom: 0;
  }
}
.p-trouble__list {
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.p-trouble__list li {
  font-size: 4.5333333333vw;
  font-weight: 500;
  line-height: 1.3235294118;
  padding-inline-start: 8.6666666667vw;
  margin-block-end: 5.3333333333vw;
  position: relative;
}
.p-trouble__list li:last-child {
  margin-block-end: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li {
    padding-inline-start: 5rem;
    margin-block-end: 3rem;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.7307692308;
    letter-spacing: 0.05rem;
  }
}
.p-trouble__list li .emphasis {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.6666666667;
  color: #016ed4;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li .emphasis {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4285714286;
  }
}
.p-trouble__list li:before {
  content: "";
  width: auto;
  height: 6.6666666667vw;
  aspect-ratio: 1/1;
  background: url(../images/check_icon.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0.3333333333vw;
  margin: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li:before {
    height: 40px;
    top: 2.5px;
  }
}
.p-trouble__list li:after {
  content: " ";
  display: block;
  background: url(../images/check_icon_shadow.png) no-repeat;
  background-size: contain;
  width: 48px;
  height: 48px;
  position: absolute;
  left: -0.5rem;
  top: 0;
  margin: auto;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li:after {
    width: 71px;
    height: 72px;
    left: -1.5rem;
  }
}

.c-first {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-first {
    text-align: left;
  }
}

/*==========================================
view
===========================================*/
.p-view {
  padding-block-start: 20vw;
  padding-block-end: 26.6666666667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-view {
    background-size: auto;
    padding-block-start: 6rem;
    padding-block-end: 10rem;
  }
}
.p-view p {
  text-align: center;
  font-size: 4.5333333333vw;
  font-weight: 500;
  line-height: 1.3529411765;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-view p {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.6666666667;
  }
}
.p-view p .large {
  font-size: 5.3333333333vw;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-view p .large {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.3333333333;
  }
}
.p-view__wrap {
  position: relative;
  z-index: 5;
}
.p-view__list-wrap {
  width: 100%;
  margin-inline: auto;
  margin-block-end: 6.6666666667vw;
  padding-inline: 5.3333333333vw;
  padding-block-start: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-view__list-wrap {
    padding-inline: 2rem;
    padding-block-start: 10rem;
    padding-block-end: 10rem;
    margin-block-end: 5rem;
  }
}
.p-view__star {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: -2;
}
.p-view__list {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 6.6666666667vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-view__list {
    grid-gap: 8.8rem;
  }
}
.p-view__list li {
  counter-increment: number;
  font-size: 4.9333333333vw;
  font-weight: 600;
  line-height: 1.6216216216;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-view__list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.9230769231;
    padding-inline-start: 10rem;
    align-items: center;
  }
}
.p-view__list li:before {
  content: "0" counter(number) ".";
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: auto;
  color: #293c97;
  font-size: 10.6666666667vw;
  font-weight: 500;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .p-view__list li:before {
    width: auto;
    height: auto;
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    left: 0;
    top: revert;
    z-index: 10;
  }
}
.p-view__list li:after {
  content: " ";
  display: block;
  background: #293c97;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.6666666667vw;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-view__list li:after {
    height: 8px;
    bottom: -4rem;
  }
}
.p-view__label {
  width: fit-content;
  display: block;
  background: #304dd8;
  color: white;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1;
  padding-block: 2vw;
  padding-inline: 2.6666666667vw;
  margin-inline: auto;
  margin-block-end: 1.3333333333vw;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .p-view__label {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3636363636;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    margin-inline: revert;
    margin-inline-end: 0.5rem;
    margin-block-end: 0;
  }
}
.p-view__bg-flag-a {
  content: " ";
  display: block;
  width: 160vw;
  height: auto;
  max-width: revert;
  aspect-ratio: 1389/1009;
  position: absolute;
  left: -40vw;
  top: -41.3333333333vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-view__bg-flag-a {
    width: 1389px;
    top: -450px;
    left: calc(50% - 1370px);
  }
}
.p-view__bg-flag-b {
  content: " ";
  display: block;
  max-width: revert;
  width: 146.6666666667vw;
  height: auto;
  aspect-ratio: 1389/917;
  position: absolute;
  right: -44vw;
  top: 230.6666666667vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-view__bg-flag-b {
    width: 1389px;
    top: 350px;
    right: calc(50% - 1600px);
  }
}

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

/*==========================================
special
===========================================*/
.p-special {
  position: relative;
  overflow: hidden;
}
.p-special__heading {
  position: relative;
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-special__heading {
    padding-block-start: 10rem;
    padding-block-end: 10rem;
  }
}
.p-special__bg {
  height: 106.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-special__bg {
    height: auto;
  }
}
.p-special__inner {
  position: relative;
  z-index: 10;
}
.p-special__inner:after {
  content: " ";
  display: block;
  background: #bb132c;
  clip-path: polygon(50% calc(100% + 1px), 100% 55%, 100% 100%, 0 100%, 0 55%);
  width: 100%;
  height: 40vw;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-40vw + 1px);
  margin: auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-special__inner:after {
    clip-path: polygon(50% calc(100% + 1px), 100% 30%, 100% 100%, 0 100%, 0 30%);
    height: 300px;
    top: -299px;
  }
}
.p-special__deco-r, .p-special__deco-l {
  content: " ";
  display: block;
  width: 46.6666666667vw;
  height: auto;
  aspect-ratio: 493/659;
  position: absolute;
  top: -38.6666666667vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-special__deco-r, .p-special__deco-l {
    width: auto;
    height: 659px;
    top: -620px;
  }
}
.p-special__deco-r {
  right: -6.6666666667vw;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .p-special__deco-r {
    right: calc(50% - 770px);
  }
}
.p-special__deco-l {
  left: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-special__deco-l {
    left: calc(50% - 770px);
  }
}
.p-special__text01 {
  position: relative;
  z-index: 20;
  width: fit-content;
  margin-inline: auto;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.71875;
  padding-block-end: 8vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-special__text01 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
    padding-block-end: 2rem;
  }
}
.p-special__text02 {
  position: relative;
  z-index: 20;
  width: fit-content;
  margin-inline: auto;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.5277777778;
  padding-block-end: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-special__text02 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.84;
    padding-block-end: 2rem;
  }
}
.p-special__wrap {
  width: 80%;
  margin-inline: auto;
  display: grid;
  gap: 6.6666666667vw;
  padding-block-end: 13.3333333333vw;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-special__wrap {
    width: 100%;
    gap: 1rem;
    padding-block-end: 10rem;
    z-index: 20;
  }
}
.p-special__block {
  counter-increment: number;
  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: "icon" "title" "body";
}
@media screen and (min-width: 768px) {
  .p-special__block {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0px 0px;
    grid-template-areas: "title icon" "body icon";
  }
}
.p-special__block:after {
  content: " ";
  display: block;
  background: url(../images/special_icon.png) no-repeat;
  background-size: contain;
  width: 20vw;
  height: auto;
  aspect-ratio: 89/88;
  position: absolute;
  left: -5.3333333333vw;
  top: -2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-special__block:after {
    width: 88px;
    height: 88px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -50px;
  }
}
.p-special__title {
  grid-area: title;
  display: flex;
  align-items: center;
  background: white;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.3333333333;
  padding-inline-start: 4vw;
  padding-block: 4vw;
}
@media screen and (min-width: 768px) {
  .p-special__title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    padding-inline-start: 5rem;
    border-radius: 10px 0 0 0;
    padding-block: 0;
  }
}
.p-special__title img {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .p-special__title img {
    width: auto;
  }
}
.p-special__body {
  grid-area: body;
  background: #e0dddd;
  display: flex;
  align-items: center;
  padding-inline-start: 4vw;
  border-radius: 0 0 10px 10px;
  padding-block: 4vw;
}
@media screen and (min-width: 768px) {
  .p-special__body {
    padding-inline-start: 5rem;
    border-radius: 0 0 0 10px;
    padding-block: 0;
  }
}
.p-special__body p {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .p-special__body p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.8;
  }
}
.p-special__icon {
  grid-area: icon;
  background: #9b0a20;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 768px) {
  .p-special__icon {
    border-radius: 0 10px 10px 0;
  }
}
.p-special__icon img {
  display: block;
  width: 50%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-special__icon img {
    width: auto;
  }
}
.p-special__no {
  display: flex;
  color: #bb132c;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1;
  margin-inline-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-special__no {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-inline-end: 1rem;
  }
}

.no {
  position: relative;
}
.no:before {
  content: counter(number);
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: auto;
  color: #bb132c;
  font-family: "Roboto", sans-serif;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .no:before {
    width: auto;
    height: auto;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 0.8571428571;
  }
}

/*==========================================
offer
===========================================*/
.p-offer {
  padding-block-start: 13.3333333333vw;
  position: relative;
  /*********** notice_list ***********/
}
@media screen and (min-width: 768px) {
  .p-offer {
    padding-block-start: 100px;
  }
}
.p-offer__lead {
  position: relative;
  z-index: 10;
}
.p-offer__text01 {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.7647058824;
  padding-block-end: 10.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-offer__text01 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 2;
    padding-block-end: 4rem;
  }
}
.p-offer__text01 .large {
  display: block;
  font-size: 5.3333333333vw;
  font-weight: 900;
  line-height: 1.5;
  padding-block-end: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-offer__text01 .large {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.6666666667;
    padding-block-end: 3rem;
  }
}
.p-offer__text02 {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-size: 4vw;
  font-weight: 500;
  line-height: 2;
  padding-block-end: 6.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-offer__text02 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
    padding-block-end: 8rem;
  }
}
.p-offer__heading {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.3888888889;
  margin-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-offer__heading {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5384615385;
    margin-block-end: 1rem;
  }
}
.p-offer__title {
  font-size: 7.3333333333vw;
  font-weight: 900;
  line-height: 1.0909090909;
  padding-block-end: 2.6666666667vw;
  text-shadow: 4px 3px 0px rgba(183, 192, 224, 0.58);
  letter-spacing: -0.05rem;
}
@media screen and (min-width: 768px) {
  .p-offer__title {
    font-size: 6.2rem;
    font-weight: 900;
    line-height: 1.2903225806;
    padding-block-end: 3rem;
  }
}
.p-offer__title .small {
  display: block;
  font-size: 6.6666666667vw;
  font-weight: 900;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-offer__title .small {
    font-size: 4.7rem;
    font-weight: 900;
    line-height: 1.4893617021;
  }
}
.p-offer__icons-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  height: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-offer__icons-wrap {
    height: 17rem;
  }
}
.p-offer__icons {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -13.3333333333vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-offer__icons {
    bottom: -12rem;
    gap: 3.5rem;
  }
}
.p-offer__icons li {
  padding-inline: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-offer__icons li {
    padding-inline: 1rem;
  }
}
.p-offer__icons li img {
  max-width: 100%;
  width: 100%;
}
.p-offer__row {
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 16vw auto 16vw;
  column-gap: 2.6666666667vw;
  align-items: center;
  text-align: center;
  margin-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-offer__row {
    grid-template-columns: 130px auto 130px;
    column-gap: 20px;
    margin-block-end: 5rem;
  }
}
.p-offer__day {
  background: #f63524;
  padding-block: 2.6666666667vw;
  padding-inline: 2.6666666667vw;
  border-radius: 5px;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.3888888889;
}
@media screen and (min-width: 768px) {
  .p-offer__day {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5384615385;
    padding-block: 0.5rem;
    padding-inline: 3rem;
  }
}
.p-offer__col {
  position: relative;
}
.p-offer__shindo {
  content: " ";
  display: block;
  width: 16vw;
  height: auto;
  aspect-ratio: 166/315;
  position: absolute;
  right: 0;
  top: -6.6666666667vw;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-offer__shindo {
    width: 119px;
    top: -60px;
  }
}
.p-offer__kojiro {
  content: " ";
  display: block;
  width: 16vw;
  height: auto;
  aspect-ratio: 182/305;
  position: absolute;
  right: 0;
  top: -6.6666666667vw;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-offer__kojiro {
    width: 131px;
    top: -60px;
  }
}
.p-offer__bg {
  height: 213.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-offer__bg {
    height: auto;
  }
}
.p-offer__bg-flag-a {
  content: " ";
  display: block;
  max-width: revert;
  width: 146.6666666667vw;
  height: auto;
  aspect-ratio: 1389/1009;
  position: absolute;
  left: -26.6666666667vw;
  bottom: -70.6666666667vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-offer__bg-flag-a {
    max-width: 100%;
    width: 1389px;
    bottom: -250px;
    left: calc(50% - 1270px);
  }
}
.p-offer__bg-flag-b {
  content: " ";
  display: block;
  max-width: revert;
  width: 146.6666666667vw;
  height: auto;
  aspect-ratio: 1389/917;
  position: absolute;
  right: -26.6666666667vw;
  top: 184vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-offer__bg-flag-b {
    max-width: 100%;
    width: 1389px;
    top: 450px;
    right: calc(50% - 1550px);
  }
}
.p-offer__bg-icon01 {
  content: " ";
  display: block;
  width: 15.3333333333vw;
  height: auto;
  aspect-ratio: 148/149;
  position: absolute;
  right: 4vw;
  top: -4vw;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-offer__bg-icon01 {
    width: 148px;
    top: -30px;
    right: calc(50% - 700px);
  }
}
.p-offer__bg-icon02 {
  content: " ";
  display: block;
  width: 21.3333333333vw;
  height: auto;
  aspect-ratio: 282/749;
  position: absolute;
  left: -7.3333333333vw;
  top: 100vw;
  z-index: 0;
  transform: rotateZ(-5deg);
}
@media screen and (min-width: 768px) {
  .p-offer__bg-icon02 {
    width: 282px;
    top: 500px;
    left: calc(50% - 830px);
    transform: rotateZ(0);
  }
}
.p-offer__bg-icon03 {
  content: " ";
  display: block;
  width: 24vw;
  height: auto;
  aspect-ratio: 311/628;
  position: absolute;
  right: -4vw;
  bottom: -17.3333333333vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-offer__bg-icon03 {
    width: 311px;
    bottom: 100px;
    right: calc(50% - 880px);
  }
}
.p-offer__notice {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  padding-block-start: 4vw;
  padding-inline-start: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-offer__notice {
    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;
  }
}

/*==========================================
mailform
===========================================*/
.c-form__title {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.7647058824;
  padding-block-start: 10.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-form__title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.84;
    padding-block-start: 4rem;
  }
}
.c-form__wrap {
  width: 100%;
  margin-inline: auto;
  background: #283b95;
  border-radius: 10px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-form__wrap {
    border-radius: 10px;
  }
}
.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: 700px;
    padding-block-start: 5rem;
    padding-block-end: 7rem;
  }
}
.c-form__btn-wrap {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-form__btn-wrap {
    margin-top: 4rem;
  }
}
.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__notice {
  width: 90%;
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: 30px;
}
.c-form__notice li {
  margin: 0 0 0 10px;
  padding: 0 0 10px;
  text-indent: -13px;
  line-height: 1.2;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.1428571429;
}
@media screen and (min-width: 768px) {
  .c-form__notice li {
    font-size: 1.5rem;
    line-height: 1.7333333333;
  }
}
.c-form__notice a {
  text-decoration: underline;
}
.c-form__notice a:hover {
  text-decoration: none;
}

/*********** 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;
  }
}
.promo-band { 
      position: sticky;
      top: 0;
      z-index: 1000;
      display: none; /* JSで制御 */
      background: #bb132c;
      color: #fff240;
      font-size: 18px;
      font-weight: 700;
      text-align: center;
      padding: 10px 16px;
    }
@media screen and (min-width: 768px) {
  .promo-band {font-size: 22px;
  }
}