/*==========================================
color
===========================================*/
.c-bg--key {
  background-color: #f4810b;
}

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

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

.c-bg--lightblue {
  background-color: #ddf4ff;
}

.c-bg--blue {
  background-color: #6eb3ee;
}

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

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

html {
  font-size: 62.5%;
}

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

body {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0d1846;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ddf4ff;
  /*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, "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: white;
  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: 3px 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-free {
  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-free {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5384615385;
    padding-block: 0.2rem;
    padding-inline: 1rem;
    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, "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(110, 179, 238, 0.56);
}
@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    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;
}

/*********** pop bar ***********/
.c-titlePopBar {
  position: relative;
  width: calc(100% + 6.6666666667vw);
  background: #f4810b;
  text-align: center;
  padding: 6.6666666667vw 2.6666666667vw;
  left: -3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-titlePopBar {
    width: calc(100% + 50px);
    padding: 10rem 2rem;
    left: -25px;
  }
}
.c-titlePopBar:after {
  content: " ";
  display: block;
  background: #f4810b;
  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-titlePopBar:after {
    width: 60px;
    height: 20px;
    bottom: -19px;
  }
}
.c-titlePopBar__inner:before, .c-titlePopBar__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-titlePopBar__inner:before, .c-titlePopBar__inner:after {
    width: 25px;
    height: 22px;
    bottom: -22px;
  }
}
.c-titlePopBar__inner:before {
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.c-titlePopBar__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: 900px;
  height: inherit;
  padding-inline-start: 5.3333333333vw;
  padding-inline-end: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline-start: 2.4rem;
    padding-inline-end: 2.4rem;
  }
}
@media screen and (min-width: 1060px) {
  .l-inner {
    padding-inline: 0;
  }
}
.l-inner--narrow {
  max-width: 800px;
}
.l-inner--middle {
  max-width: 1100px;
}
.l-inner--wide {
  max-width: 1260px;
  padding-inline-start: 5.3333333333vw;
  padding-inline-end: 5.3333333333vw;
}
@media (min-width: 1260px) {
  .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: 9.6rem;
    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;
}
.p-hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-hero__img {
    max-width: inherit;
    position: absolute;
    top: 0;
    left: 50%;
    aspect-ratio: 1286/872;
    width: 1286px;
    height: auto;
    margin-inline-start: -643px;
    z-index: 0;
  }
}
@media (min-width: 1500px) {
  .p-hero__img {
    width: 1286px;
    margin-inline-start: -643px;
  }
}
.p-hero__sub-title {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.6666666667;
  padding-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-hero__sub-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.6363636364;
    padding-block-end: 1.6rem;
    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: 0;
}
@media screen and (min-width: 768px) {
  .p-hero__catch {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5333333333;
  }
}
.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(110, 179, 238, 0.56);
  letter-spacing: -0.05rem;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    padding-block-end: 1.5rem;
  }
}
.p-hero__title .no {
  font-size: 8.6666666667vw;
  font-weight: 900;
  line-height: 1.0769230769;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-hero__title .no {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.0909090909;
  }
}
.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: 4.5rem;
    font-weight: 900;
    line-height: 1.3333333333;
  }
}
.p-hero__label {
  width: fit-content;
  margin-inline: auto;
  font-size: 4.5333333333vw;
  font-weight: 700;
  line-height: 1.1764705882;
  margin-block-end: 2.6666666667vw;
  background: white;
  border-radius: 100vh;
  padding-block: 1.3333333333vw;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .p-hero__label {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.125;
    margin-block-end: 3rem;
    padding-block-start: 0.5rem;
    padding-block-end: 0.7rem;
    padding-inline: 5rem;
  }
}
.p-hero__text-l {
  font-size: 4.6666666667vw;
  font-weight: 900;
  line-height: 1.4285714286;
}
@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;
  }
}
.p-hero__text {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.6666666667;
  padding-block-start: 2.6666666667vw;
  padding-block-end: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-hero__text {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
    padding-block-start: 0.8rem;
    padding-block-end: 4rem;
    letter-spacing: 0.2rem;
  }
}
.p-hero__shindo {
  content: " ";
  display: block;
  width: 16vw;
  height: auto;
  aspect-ratio: 166/315;
  position: absolute;
  left: 1.3333333333vw;
  top: 50.6666666667vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__shindo {
    width: 166px;
    top: 550px;
    left: calc(50% - 470px);
  }
}
.p-hero__kojiro {
  content: " ";
  display: block;
  width: 16vw;
  height: auto;
  aspect-ratio: 182/305;
  position: absolute;
  right: 1.3333333333vw;
  top: 50.6666666667vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__kojiro {
    width: 182px;
    top: 550px;
    right: calc(50% - 470px);
  }
}
.p-hero__nanamin {
  content: " ";
  display: block;
  width: 15.3333333333vw;
  height: auto;
  aspect-ratio: 167/364;
  position: absolute;
  right: 1.3333333333vw;
  top: 84vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__nanamin {
    width: 167px;
    top: 350px;
    right: calc(50% - 650px);
  }
}
.p-hero__nissy {
  content: " ";
  display: block;
  width: 15.3333333333vw;
  height: auto;
  aspect-ratio: 178/346;
  position: absolute;
  left: 1.3333333333vw;
  top: 84vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__nissy {
    width: 178px;
    top: 350px;
    left: calc(50% - 650px);
  }
}

/* footer.scss */
.p-footer {
  position: relative;
  padding-block-start: 6.6666666667vw;
  padding-block-end: 6.6666666667vw;
  background: #6eb3ee;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block-start: 6rem;
    padding-block-end: 4rem;
  }
}
.p-footer p {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #000;
  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, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  padding-block-end: 1rem;
}
.p-footer__nav li a {
  display: block;
  border: 1px solid #4396dd;
  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 {
    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: 2.1428571429;
  }
}
.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: #f4810b 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: #f4810b;
}

.u-accent {
  color: #66d0e6;
}

.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) 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: #f4810b;
  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, "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.2rem;
  font-size: 4.2666666667vw;
  font-weight: 400;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .c-letter p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.8888888889;
    margin-block-end: 3rem;
  }
}

/*==========================================
trouble
===========================================*/
.p-trouble {
  padding-block-start: 4rem;
  padding-block-end: 33.3333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-trouble {
    background-size: auto;
    padding-block-start: 8rem;
    padding-block-end: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .p-trouble {
    padding-block-end: 5rem;
  }
}
.p-trouble__heading {
  text-align: left;
  margin-inline: 0;
  padding-inline-start: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__heading {
    margin-inline: auto;
    padding-inline-start: 0;
    text-align: center;
  }
}
.p-trouble__bg {
  content: " ";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 909/869;
  position: absolute;
  right: 0;
  left: 0;
  margin-inline: auto;
  top: -6.6666666667vw;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-trouble__bg {
    width: 909px;
    top: -5rem;
  }
}
.p-trouble__list-wrap {
  border: 5px solid #b1daf8;
  border-radius: 20px;
  padding-block: 2.6666666667vw;
  padding-inline: 2.6666666667vw;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__list-wrap {
    padding-block: 4rem;
    padding-inline: 4rem;
    border-width: 15px;
  }
}
.p-trouble__list-wrap:before {
  content: " ";
  display: block;
  background: #f4810b;
  background: url(../images/shindo_pic02.png) no-repeat;
  background-size: contain;
  width: 21.3333333333vw;
  height: auto;
  aspect-ratio: 144/271;
  position: absolute;
  left: -6.6666666667vw;
  top: -33.3333333333vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-trouble__list-wrap:before {
    width: 144px;
    top: -15rem;
    left: -5rem;
  }
}
@media (min-width: 1200px) {
  .p-trouble__list-wrap:before {
    left: -16rem;
  }
}
.p-trouble__list-wrap:after {
  content: " ";
  display: block;
  background: #f4810b;
  background: url(../images/nissy_pic02.png) no-repeat;
  background-size: contain;
  width: 21.3333333333vw;
  height: auto;
  aspect-ratio: 142/271;
  position: absolute;
  right: -1.3333333333vw;
  bottom: -36vw;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-trouble__list-wrap:after {
    width: 142px;
    right: -7rem;
    bottom: -15rem;
  }
}
@media (min-width: 1200px) {
  .p-trouble__list-wrap:after {
    right: -17rem;
    bottom: 0;
  }
}
.p-trouble__deco01 {
  content: " ";
  display: block;
  width: 20vw;
  height: auto;
  aspect-ratio: 199/243;
  position: absolute;
  right: -6.6666666667vw;
  top: -33.3333333333vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__deco01 {
    width: 199px;
    right: -150px;
    top: -15rem;
  }
}
.p-trouble__deco02 {
  content: " ";
  display: block;
  width: 20vw;
  height: auto;
  aspect-ratio: 199/243;
  position: absolute;
  left: -6.6666666667vw;
  bottom: -20vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__deco02 {
    width: 199px;
    left: -150px;
    bottom: -15rem;
  }
}
.p-trouble__list {
  width: 100%;
  margin-inline: auto;
  background: white;
  padding-block: 4vw;
  padding-inline: 5.3333333333vw;
  border-radius: 2.6666666667vw;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-trouble__list {
    padding-block: 6rem;
    padding-inline: 5rem;
    border-width: 16px;
    border-radius: 15px;
  }
}
.p-trouble__list li {
  font-size: 4.5333333333vw;
  font-weight: 500;
  line-height: 1.7647058824;
  padding-inline-start: 8.6666666667vw;
  margin-block-end: 4.8vw;
  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.8rem;
    font-weight: 500;
    line-height: 1.4285714286;
    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.6666666667vw;
  margin: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-trouble__list li:before {
    height: 38px;
    top: 1px;
  }
}
.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;
  }
}

/*==========================================
profile
===========================================*/
.p-profile {
  padding-block-start: 13.3333333333vw;
  padding-block-end: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-profile {
    padding-block-start: 10rem;
    padding-block-end: 15rem;
  }
}
.p-profile__wrap {
  display: grid;
  gap: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-profile__wrap {
    gap: 10rem;
  }
}
.p-profile__block {
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-profile__block {
    grid-template-columns: auto 1fr;
  }
}
@media screen and (min-width: 768px) {
  .p-profile__block:nth-of-type(even) {
    grid-template-columns: 1fr auto;
  }
}
@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 {
  font-size: 9.3333333333vw;
  font-weight: 300;
  line-height: 1.1857142857;
  text-align: center;
  margin-block-end: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-profile__heading {
    text-align: left;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2166666667;
    margin-block-end: 4rem;
  }
}
.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: 3rem;
  padding-block-end: 2rem;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-profile__name {
    margin-block-end: 3rem;
    padding-block-end: 2rem;
    text-align: left;
  }
}
.p-profile__name:after {
  content: " ";
  display: block;
  background: #6eb3ee;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.p-profile__name .name {
  display: block;
  font-size: 7.3333333333vw;
  font-weight: 400;
  line-height: 1.2727272727;
}
@media screen and (min-width: 768px) {
  .p-profile__name .name {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.3333333333;
  }
}
.p-profile__name .en {
  font-size: 6.6666666667vw;
  font-weight: 400;
  line-height: 1.4;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-profile__name .en {
    display: block;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
@media (min-width: 1000px) {
  .p-profile__name .en {
    display: inline;
  }
}
.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%;
}
@media screen and (min-width: 768px) {
  .p-profile__text {
    padding-right: 2rem;
  }
}
.p-profile__text p {
  font-size: 4.2666666667vw;
  font-weight: 400;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-profile__text p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.8888888889;
  }
}
.p-profile__carrier {
  margin-block-end: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-profile__carrier {
    margin-block-end: 2rem;
  }
}
.p-profile__carrier li {
  position: relative;
  padding-inline-start: 4vw;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.5333333333;
  letter-spacing: 0.1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-profile__carrier li {
    padding-inline-start: 2rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8888888889;
  }
}
.p-profile__carrier li:before {
  content: "";
  width: auto;
  height: 2vw;
  aspect-ratio: 12/15;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  display: inline-block;
  background: #ffab16;
  position: absolute;
  left: 0;
  top: 2.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-profile__carrier li:before {
    height: 15px;
    top: 9.5px;
  }
}
.p-profile__thumb {
  width: 80%;
  margin-inline: auto;
  margin-block-end: 13.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-profile__thumb {
    width: 100%;
    margin-inline: auto;
    margin-block-end: 3rem;
  }
}
.p-profile__img {
  position: relative;
}
.p-profile__img:after {
  content: " ";
  display: block;
  width: 113.3333333333vw;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/circle_line.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: -20vw;
  top: -20vw;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-profile__img:after {
    width: 667px;
    left: -120px;
    top: -120px;
  }
}

.c-arrow {
  position: relative;
  bottom: -6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-arrow {
    bottom: -5rem;
  }
}
.c-arrow p {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.3888888889;
  text-align: center;
  position: relative;
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .c-arrow p {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5384615385;
  }
}
.c-arrow__img {
  position: absolute;
  left: 0;
  right: 0;
  top: 6.6666666667vw;
  margin-inline: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-arrow__img {
    top: 5rem;
  }
}

/*==========================================
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__heading {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.3888888889;
  margin-block-end: 1.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__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: 2.6666666667vw;
}
@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__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.7333333333vw;
  font-weight: 400;
  line-height: 1.4285714286;
  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__wrap {
  width: 100%;
  margin-inline: auto;
  background: white;
  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: #e60012;
  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;
  }
}