.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

@media only screen and (max-width: 1240px) {
  html {
    font-size: calc(10 / 1240 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 3.7333333333vw;
  }
}

body {
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.75;
  padding: 0 0 19.7333333333vw 0;
}

@media screen and (min-width: 768px) {
  body {
    padding: 0;
  }
}

body.is-menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  overflow: hidden;
  outline: none;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

.g-sans {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
}

.sp {
  display: block;
}

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

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.center {
  text-align: center;
}

.notes {
  font-size: 2.6666666667vw;
  line-height: 1.38;
}

@media screen and (min-width: 768px) {
  .notes {
    font-size: 1.4rem;
    line-height: 1.42;
  }
}

.btn {
  width: 72.9333333333vw;
}

@media screen and (min-width: 768px) {
  .btn {
    width: 54.7rem;
  }
}

.btn img {
  filter: drop-shadow(0px 0.9333333333vw 1.2vw rgba(0, 0, 0, 0.5));
}

@media screen and (min-width: 768px) {
  .btn img {
    filter: drop-shadow(0px 0.7rem 0.9rem rgba(0, 0, 0, 0.5));
  }
}

.modal-contents,
.js-accordion dd {
  display: none;
}

/* header
---------------------------------------------------- */
.header {
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: #202020;
}

@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5;
    transition: background-color 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .header.is-scroll {
    background-color: #fff;
  }
}

.header__inner {
  height: 10.6666666667vw;
  padding: 0 0 0 3.7333333333vw;
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 120.7rem;
    height: 8rem;
    padding: 0;
    margin: 0 auto;
    justify-content: space-between;
  }
}

.header__logo {
  font-size: 2.9333333333vw;
  font-weight: 500;
  line-height: 9.0666666667vw;
  padding: 0 0 0 20vw;
  background: url(../img/logo.svg) no-repeat 0 0;
  background-size: 18.4vw auto;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .header__logo {
    font-size: 1.8rem;
    line-height: 5.8rem;
    padding: 0 0 0 12.4rem;
    background-size: 11.4rem auto;
  }
}

.header__btn {
  width: 4vw;
  height: 2.9333333333vw;
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  top: 3.8666666667vw;
  right: 4vw;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}

.header__btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2666666667vw;
  background: #202020;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}

.header__btn span:nth-child(1) {
  top: 0;
}

.header__btn span:nth-child(2) {
  top: 1.3333333333vw;
}

.header__btn span:nth-child(3) {
  top: 2.6666666667vw;
}

.header__btn.is-open span:nth-child(1) {
  top: 1.3333333333vw;
  transform: rotate(45deg);
}

.header__btn.is-open span:nth-child(2) {
  opacity: 0;
}

.header__btn.is-open span:nth-child(3) {
  top: 1.3333333333vw;
  transform: rotate(-45deg);
}

.header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  padding: 16.8vw 8vw 0 8vw;
  background: #fff;
  transition: right 0.4s;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .header__nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
  }
}

.header__nav.is-open {
  right: 0;
}

.header__nav ul {
  border-top: 1px solid #0051a4;
}

@media screen and (min-width: 768px) {
  .header__nav ul {
    border-top: none;
    display: flex;
    align-items: center;
  }
}

.header__nav li:not(:last-child) {
  border-bottom: 1px solid #0051a4;
}

@media screen and (min-width: 768px) {
  .header__nav li:not(:last-child) {
    border-bottom: none;
    margin: 0 0 0 1.8rem;
  }
}

.header__nav li:not(:last-child) a {
  height: 12.8vw;
  font-size: 3.3333333333vw;
  color: #202020;
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .header__nav li:not(:last-child) a {
    height: 5rem;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .header__nav li:not(:last-child) a::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.3rem;
    background-color: transparent;
    position: absolute;
    bottom: 0.7rem;
    left: 0;
    transition: background-color 0.3s ease;
  }
}

@media screen and (min-width: 768px) {

  .header__nav li:not(:last-child) a:hover::after,
  .header__nav li:not(:last-child) a.is-active::after {
    background-color: #9b010c;
  }
}

.header__nav li:last-child {
  margin: 7.3333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .header__nav li:last-child {
    width: 15.8rem;
    margin: 0 0 0 1.2rem;
  }
}

.header__nav li:last-child a {
  height: 13.3333333333vw;
  font-size: 5.0666666667vw;
  color: #fff;
  background-color: #0051a4;
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .header__nav li:last-child a {
    height: 5rem;
    font-size: 1.5rem;
  }
}

.header__nav li:last-child span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 6.5333333333vw;
  padding: 0 0 0 8.5333333333vw;
  margin: -0.05em 0 0 0;
  background: url(../img/icon-search.svg) no-repeat 0 0;
  background-size: 6.6666666667vw auto;
}

@media screen and (min-width: 768px) {
  .header__nav li:last-child span {
    height: 2rem;
    padding: 0 0 0 2.5rem;
    background-size: 2rem auto;
  }
}

/* fv
---------------------------------------------------- */
.fv {
  background: url(../img/fv-bg.jpg) no-repeat 0 0;
  background-size: 100% auto;
  margin: -5.8666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .fv {
    background: url(../img/fv-bg.png) no-repeat 50% 0;
    background-size: 223.4rem auto;
    margin: 0;
  }
}

.fv__inner {
  padding: 10.8vw 0 6.6666666667vw 0;
}

@media screen and (min-width: 768px) {
  .fv__inner {
    max-width: 120rem;
    min-height: 74.2rem;
    padding: 14.4rem 0 2rem 54.7rem;
    margin: 0 auto;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .fv__inner::after {
    content: "";
    display: block;
    width: 53.9rem;
    height: 70.7rem;
    background: url(../img/fv-bg02.png) no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -5rem;
    left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .fv__box {
    display: flex;
    justify-content: space-between;
  }
}

.fv h1 {
  width: 52.9333333333vw;
  margin: 0 0 0 3.0666666667vw;
}

@media screen and (min-width: 768px) {
  .fv h1 {
    width: 39.7rem;
    margin: 0;
  }
}

.fv h1>span {
  display: block;
}

.fv h1>span:nth-child(2) {
  width: 52.4vw;
  margin: 3.4666666667vw auto 0 auto;
}

@media screen and (min-width: 768px) {
  .fv h1>span:nth-child(2) {
    width: 39.3rem;
    margin: 2.6rem auto 0 auto;
  }
}

.fv__img01 {
  width: 34.4vw;
  margin: 3.0666666667vw 0 0 12.2666666667vw;
}

@media screen and (min-width: 768px) {
  .fv__img01 {
    width: 24.7rem;
    margin: 7.2rem 0 0 0;
  }
}

@media screen and (min-width: 768px) {
  .fv__btn {
    margin: 5rem 0 0 0;
  }
}

@media screen and (min-width: 768px) {
  .fv__img02 {
    width: 43.1rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .fv .btn {
    margin: 0.9rem auto 0 auto;
  }
}

.fv .notes {
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  margin: 12.4vw 4vw 0 4vw;
}

@media screen and (min-width: 768px) {
  .fv .notes {
    margin: 2.2rem 0 0 0;
  }
}

/* reason
---------------------------------------------------- */
.reason {
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  padding: 10.9333333333vw 0 0 0;
  background-color: #f3f3f3;
}

@media screen and (min-width: 768px) {
  .reason {
    padding: 15.8rem 0 0 0;
    overflow: hidden;
  }
}

.reason h2 {
  padding: 0 0 5.3333333333vw 0;
  background: url(../img/reason-ttl-bg.svg) no-repeat 50% 100%;
  background-size: 68.6666666667vw auto;
}

@media screen and (min-width: 768px) {
  .reason h2 {
    padding: 0 0 4.8rem 0;
    background-size: 57.4rem auto;
  }
}

.reason h2>span {
  display: block;
  font-weight: 700;
  line-height: 1;
  color: #202020;
}

.reason h2>span:nth-child(1) {
  font-size: 2.9333333333vw;
}

@media screen and (min-width: 768px) {
  .reason h2>span:nth-child(1) {
    font-size: 2.5rem;
  }
}

.reason h2>span:nth-child(2) {
  font-size: 6vw;
  margin: 2.6666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .reason h2>span:nth-child(2) {
    font-size: 5rem;
    margin: 2rem 0 0 0;
  }
}

.reason h2>span:nth-child(3) {
  font-size: 2.9333333333vw;
  margin: 2.6666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .reason h2>span:nth-child(3) {
    font-size: 2.5rem;
    margin: 2rem 0 0 0;
  }
}

.reason h2>span:nth-child(4) {
  font-size: 3.6vw;
  margin: 1.8666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .reason h2>span:nth-child(4) {
    font-size: 3rem;
    margin: 1.8rem 0 0 0;
  }
}

.reason__list01 {
  width: 92.2666666667vw;
  height: 42.9333333333vw;
  margin: 2.2666666667vw auto 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media screen and (min-width: 768px) {
  .reason__list01 {
    width: auto;
    height: auto;
    margin: 2.3rem 0 0 0;
    justify-content: center;
    -moz-column-gap: 1.9rem;
    column-gap: 1.9rem;
  }
}

.reason__list01 li {
  width: 32.9333333333vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .reason__list01 li {
    width: 32rem;
  }
}

.reason__list01 li::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.reason__list01 li::after {
  content: "";
  display: block;
  width: 4.6666666667vw;
  height: 4.6666666667vw;
  background: url(../img/icon-x.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: -1.8666666667vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .reason__list01 li::after {
    width: 5.4rem;
    height: 5.3rem;
    top: 0.9rem;
    left: 2.6rem;
    transform: none;
  }
}

.reason__list01 li:nth-child(1)::before {
  width: 11.6vw;
  height: 9.6vw;
  background: url(../img/reason-icon01.svg) no-repeat;
  background-size: 100%;
  top: 6.4vw;
}

@media screen and (min-width: 768px) {
  .reason__list01 li:nth-child(1)::before {
    width: 10.8rem;
    height: 8.9rem;
    top: 5.5rem;
  }
}

.reason__list01 li:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .reason__list01 li:nth-child(2) {
    position: relative;
    left: 0;
    transform: none;
  }
}

.reason__list01 li:nth-child(2)::before {
  width: 11.6vw;
  height: 8.9333333333vw;
  background: url(../img/reason-icon02.svg) no-repeat;
  background-size: 100%;
  top: 7.3333333333vw;
}

@media screen and (min-width: 768px) {
  .reason__list01 li:nth-child(2)::before {
    width: 10.9rem;
    height: 8.2rem;
    top: 6.1rem;
  }
}

.reason__list01 li:nth-child(3)::before {
  width: 7.0666666667vw;
  height: 9.7333333333vw;
  background: url(../img/reason-icon03.svg) no-repeat;
  background-size: 100%;
  top: 6.1333333333vw;
}

@media screen and (min-width: 768px) {
  .reason__list01 li:nth-child(3)::before {
    width: 6.7rem;
    height: 9.1rem;
    top: 5.6rem;
  }
}

.reason__txt01 {
  font-size: 2.9333333333vw;
  font-weight: 700;
  line-height: 1.2;
  margin: 3.0666666667vw 0 0 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .reason__txt01 {
    font-size: 2.5rem;
    line-height: 1;
    margin: 3.2rem 0 0 0;
  }
}

.reason__txt01::after {
  content: "";
  display: block;
  width: 14.2666666667vw;
  height: 22.1333333333vw;
  background: url(../img/reason-illust01.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: -16.6666666667vw;
  right: 4vw;
}

@media screen and (min-width: 768px) {
  .reason__txt01::after {
    width: 15.4rem;
    height: 24rem;
    top: -25.6rem;
    right: auto;
    left: calc(50% + 43.6rem);
  }
}

.reason__txt01 span {
  font-size: 6vw;
  color: #9b010c;
}

@media screen and (min-width: 768px) {
  .reason__txt01 span {
    font-size: 5rem;
  }
}

.reason__img01 {
  width: 92.1333333333vw;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .reason__img01 {
    width: 84.7rem;
    margin: 0 auto;
  }
}

.reason__txt02 {
  font-size: 2.9333333333vw;
  font-weight: 700;
  line-height: 1;
  color: #202020;
  margin: 2vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .reason__txt02 {
    font-size: 2.5rem;
    margin: 1.3rem 0 0 0;
  }
}

.reason__img02 {
  padding: 20.5333333333vw 0 0 0;
  background: url(../img/logo.svg) no-repeat 50% 0, url(../img/reason-bg01.png) no-repeat 50% 9.8666666667vw;
  background-size: 32.9333333333vw auto, 92.2666666667vw auto;
  margin: 8vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .reason__img02 {
    width: 84.5rem;
    min-height: 13.2rem;
    padding: 0 0 0 32.2rem;
    background: url(../img/logo.svg) no-repeat;
    background-size: 27.4rem auto;
    margin: 4.8rem auto 0 auto;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .reason__img02::after {
    content: "";
    display: block;
    width: 119.5rem;
    height: 21.6rem;
    background: url(../img/reason-bg01-pc.png) no-repeat;
    background-size: 100%;
    position: absolute;
    top: -6.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.reason__bg {
  padding: 1.6vw 0 0 0;
  margin: 5.6vw 0 0 0;
  background-color: #fff;
  position: relative;
}

@media screen and (min-width: 768px) {
  .reason__bg {
    padding: 4.4rem 0 0 0;
    margin: 3.4rem 0 0 0;
  }
}

.reason__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 11.7333333333vw;
  background: url(../img/reason-bg02.svg) repeat-x;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .reason__bg::after {
    height: 88px;
  }
}

.reason__bg-inner {
  position: relative;
  z-index: 2;
}

.reason__area {
  padding: 0 0 12.6666666667vw 0;
  margin: 11.4666666667vw 0 0 0;
  background: url(../img/reason-area-bg02.png) no-repeat left 1.6vw bottom 76vw;
  background-size: 55.0666666667vw auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .reason__area {
    max-width: 120rem;
    padding: 0 0 10.7rem 0;
    margin: 9.7rem auto 0 auto;
    background: url(../img/reason-area-bg02.png) no-repeat;
    background-size: 45.7rem auto;
  }
}

.reason__area::after {
  content: "";
  display: block;
  width: 23.3333333333vw;
  height: 29.6vw;
  background: url(../img/reason-illust02.png) no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 78vw;
  right: 4vw;
}

@media screen and (min-width: 768px) {
  .reason__area::after {
    width: 19.4rem;
    height: 24.7rem;
    bottom: 11.9rem;
    right: 0.9rem;
  }
}

@media screen and (min-width: 768px) {
  .reason__area h3 {
    width: 49.3rem;
    margin: 0 auto;
  }
}

.reason__area .notes {
  margin: 2vw 0 0 4vw;
}

@media screen and (min-width: 768px) {
  .reason__area .notes {
    font-size: 2rem;
    margin: 1.5rem 0 0 0;
  }
}

.reason__area-txt01 {
  font-size: 2.9333333333vw;
  line-height: 1.63;
  font-feature-settings: normal;
  margin: 2.4vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .reason__area-txt01 {
    font-size: 2.5rem;
    line-height: 1.6;
    margin: 2rem 0 0 0;
  }
}

.reason__area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 4.2666666667vw;
  column-gap: 4.2666666667vw;
  margin: 4.8vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .reason__area-list {
    -moz-column-gap: 6.1rem;
    column-gap: 6.1rem;
    margin: 3rem 0 0 0;
  }
}

.reason__area-list li {
  width: 38.4vw;
  height: 38.2666666667vw;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-feature-settings: "palt";
  background: url(../img/reason-area-bg01.png) no-repeat;
  background-size: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

@media screen and (min-width: 768px) {
  .reason__area-list li {
    width: 30.5rem;
    height: 30.5rem;
  }
}

.reason__area-list li:nth-child(3) {
  position: relative;
  top: -1.6vw;
}

@media screen and (min-width: 768px) {
  .reason__area-list li:nth-child(3) {
    top: 0;
  }
}

.reason__area-list li>span {
  display: block;
  width: 100%;
  font-feature-settings: "palt";
}

.reason__txt03 {
  font-size: 2.4vw;
  line-height: 1.33;
  margin: 0 0 1.3333333333vw 0;
}

@media screen and (min-width: 768px) {
  .reason__txt03 {
    font-size: 2rem;
    line-height: 1.4;
    margin: 0 0 0.8rem 0;
  }
}

.reason__txt04 {
  font-size: 3.4666666667vw;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .reason__txt04 {
    font-size: 3rem;
  }
}

.reason__txt05 {
  font-size: 6.1333333333vw;
  line-height: 1.19;
}

@media screen and (min-width: 768px) {
  .reason__txt05 {
    font-size: 5rem;
    line-height: 1.1;
  }
}

.reason__area-img01 {
  margin: 2.4vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .reason__area-img01 {
    width: 96.9rem;
    margin: 4.5rem 0 0 0;
  }
}

.reason__area-txt02 {
  font-size: 2.9333333333vw;
  line-height: 1.81;
  letter-spacing: 0.08em;
  color: #202020;
  margin: 2.1333333333vw 0 0 4vw;
}

@media screen and (min-width: 768px) {
  .reason__area-txt02 {
    font-size: 3rem;
    line-height: 1;
    margin: 2rem 0 0 0;
  }
}

.reason__free {
  height: 49.2vw;
  background-color: #f3f3f3;
}

@media screen and (min-width: 768px) {
  .reason__free {
    height: 39.2rem;
  }
}

.reason__free p {
  width: 92.1333333333vw;
  margin: 0 auto;
  position: relative;
  top: -2.9333333333vw;
}

@media screen and (min-width: 768px) {
  .reason__free p {
    width: 73.6rem;
    margin: 0 0 0 35.7rem;
    top: 3.8rem;
  }
}

@media screen and (min-width: 768px) {
  .reason__free-inner {
    max-width: 120rem;
    margin: 0 auto;
  }
}

.reason__notes {
  font-size: 2.4vw;
  line-height: 1.33;
  color: #747474;
  margin: 5.3333333333vw 4vw 0 4vw;
}

@media screen and (min-width: 768px) {
  .reason__notes {
    max-inline-size: -moz-max-content;
    max-inline-size: max-content;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 4.5rem auto 0 auto;
  }
}

/* simulation
---------------------------------------------------- */
.simulation {
  color: #202020;
  background-color: #9b010c;
  padding: 0 0 10.9333333333vw 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .simulation {
    padding: 0 0 8.1rem 0;
  }
}

.simulation::after {
  content: "";
  display: block;
  width: 20.6666666667vw;
  height: 21.6vw;
  background: url(../img/simulation-illust01.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: -25.4666666667vw;
  right: 7.4666666667vw;
}

@media screen and (min-width: 768px) {
  .simulation::after {
    width: 22.4rem;
    height: 23.4rem;
    top: -25.5rem;
    right: calc(50% + 27.3rem);
  }
}

@media screen and (min-width: 768px) {
  .simulation__inner {
    max-width: 120rem;
    margin: 0 auto;
  }
}

.simulation h2 {
  width: 92.4vw;
  margin: 0 auto -4.8vw auto;
  position: relative;
  top: -7.2vw;
}

@media screen and (min-width: 768px) {
  .simulation h2 {
    width: 100%;
    margin: 0 0 -1.6rem 0;
    top: -3.9rem;
  }
}

.simulation__box {
  width: 92vw;
  background-color: #fff;
  border-radius: 2.6666666667vw;
  padding: 4vw;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .simulation__box {
    width: 100%;
    border-radius: 2rem;
    padding: 4rem 5rem;
  }
}

.simulation h3 {
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  padding: 0 4vw;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .simulation h3 {
    padding: 0 3rem;
  }
}

.simulation h3::before,
.simulation h3::after {
  content: "";
  display: block;
  width: 0.5333333333vw;
  height: 6vw;
  background-color: #9b010c;
  position: absolute;
  bottom: 0;
}

@media screen and (min-width: 768px) {

  .simulation h3::before,
  .simulation h3::after {
    width: 0.4rem;
    height: 5rem;
  }
}

.simulation h3::before {
  left: 0;
  transform: rotate(-27.5deg);
}

.simulation h3::after {
  right: 0;
  transform: rotate(27.5deg);
}

.simulation h3>span {
  display: block;
  font-weight: 700;
  line-height: 1;
}

.simulation h3>span:nth-child(1) {
  font-size: 2.9333333333vw;
}

@media screen and (min-width: 768px) {
  .simulation h3>span:nth-child(1) {
    font-size: 2.526rem;
  }
}

.simulation h3>span:nth-child(2) {
  font-size: 4.5333333333vw;
  margin: 1.3333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation h3>span:nth-child(2) {
    font-size: 4.56rem;
    margin: 1rem 0 0 0;
  }
}

@media screen and (min-width: 768px) {
  .simulation__wrap {
    display: flex;
    justify-content: space-between;
    margin: 2.8rem 0 0 0;
  }
}

.simulation__q {
  margin: 4.2666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__q {
    width: 53rem;
    margin: 0;
  }
}

.simulation__q>li:not(:first-child) {
  margin: 4.6666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__q>li:not(:first-child) {
    margin: 2.9rem 0 0 0;
  }
}

.simulation__q-txt {
  font-weight: 700;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.3333333333vw;
  column-gap: 1.3333333333vw;
}

@media screen and (min-width: 768px) {
  .simulation__q-txt {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}

.simulation__q-txt>span:nth-child(1) {
  width: 13.0666666667vw;
  height: 6.1333333333vw;
  color: #fff;
  background-color: #0051a4;
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.6666666667vw;
  column-gap: 0.6666666667vw;
}

@media screen and (min-width: 768px) {
  .simulation__q-txt>span:nth-child(1) {
    width: 6.8rem;
    height: 6.8rem;
    flex-wrap: wrap;
    align-content: center;
  }
}

@media screen and (min-width: 768px) {
  .simulation__q-txt>span:nth-child(1)>span {
    display: block;
    width: 100%;
    line-height: 1;
    text-align: center;
  }
}

.simulation__q-txt>span:nth-child(1)>span:nth-child(1) {
  font-size: 2.4vw;
}

@media screen and (min-width: 768px) {
  .simulation__q-txt>span:nth-child(1)>span:nth-child(1) {
    font-size: 1.5rem;
  }
}

.simulation__q-txt>span:nth-child(1)>span:nth-child(2) {
  font-size: 4vw;
}

@media screen and (min-width: 768px) {
  .simulation__q-txt>span:nth-child(1)>span:nth-child(2) {
    font-size: 3rem;
  }
}

.simulation__q-txt>span:nth-child(2) {
  font-size: 4vw;
}

@media screen and (min-width: 768px) {
  .simulation__q-txt>span:nth-child(2) {
    font-size: 3rem;
  }
}

.simulation__q-select {
  margin: 2.5333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__q-select {
    margin: 1.3rem 0 0 0;
  }
}

.simulation__q-use {
  display: block;
  min-width: 23.2vw;
  height: 100%;
  display: inline-flex;
  -moz-column-gap: 4vw;
  column-gap: 4vw;
}

@media screen and (min-width: 768px) {
  .simulation__q-use {
    min-width: 16.5rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
}

.simulation__q-use span {
  display: block;
  height: 100%;
  font-size: 2.4vw;
  line-height: 1;
  padding: 10.4vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__q-use span {
    font-size: 1.5rem;
    padding: 6rem 0 0 0;
  }
}

.simulation__q-use span.icon-movie {
  background: url(../img/simulation-icon03.svg) no-repeat 50% 2.9333333333vw;
  background-size: 3.7333333333vw auto;
}

@media screen and (min-width: 768px) {
  .simulation__q-use span.icon-movie {
    background: url(../img/simulation-icon03.svg) no-repeat 50% 0.8rem;
    background-size: 2.8rem auto;
  }
}

.simulation__q-use span.icon-sns {
  min-width: 5.6vw;
  background: url(../img/simulation-icon04.svg) no-repeat 50% 3.4666666667vw;
  background-size: 5.6vw auto;
}

@media screen and (min-width: 768px) {
  .simulation__q-use span.icon-sns {
    min-width: 4.2rem;
    background: url(../img/simulation-icon04.svg) no-repeat 50% 1.7rem;
    background-size: 4.2rem auto;
  }
}

.simulation__q-use span.icon-game {
  margin: 0 0 0 1.3333333333vw;
  background: url(../img/simulation-icon05.svg) no-repeat 50% 3.7333333333vw;
  background-size: 6.1333333333vw auto;
}

@media screen and (min-width: 768px) {
  .simulation__q-use span.icon-game {
    margin: 0;
    background: url(../img/simulation-icon05.svg) no-repeat 50% 2rem;
    background-size: 4.6rem auto;
  }
}

.simulation__q-use span.icon-pc {
  background: url(../img/simulation-icon06.svg) no-repeat 50% 3.4666666667vw;
  background-size: 6.9333333333vw auto;
}

@media screen and (min-width: 768px) {
  .simulation__q-use span.icon-pc {
    background: url(../img/simulation-icon06.svg) no-repeat 50% 1.8rem;
    background-size: 5.2rem auto;
  }
}

.simulation__q-use span.icon-many {
  background: url(../img/simulation-icon07.svg) no-repeat 50% 3.2vw;
  background-size: 8vw auto;
}

@media screen and (min-width: 768px) {
  .simulation__q-use span.icon-many {
    background: url(../img/simulation-icon07.svg) no-repeat 50% 1.2rem;
    background-size: 6rem auto;
  }
}

.simulation__q-course {
  display: block;
}

.simulation__q-course>span {
  display: block;
  line-height: 1;
}

.simulation__q-course>span:nth-child(1) {
  font-size: 4vw;
}

@media screen and (min-width: 768px) {
  .simulation__q-course>span:nth-child(1) {
    font-size: 2.5rem;
  }
}

.simulation__q-course>span:nth-child(2) {
  font-size: 2.9333333333vw;
  margin: 1.7333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__q-course>span:nth-child(2) {
    font-size: 1.5rem;
    margin: 0.8rem 0 0 0;
  }
}

.simulation__radio01 {
  display: flex;
  justify-content: space-between;
}

.simulation__radio01>li {
  width: 40.8vw;
}

@media screen and (min-width: 768px) {
  .simulation__radio01>li {
    width: 25.2rem;
  }
}

.simulation__radio01>li:nth-child(1) label::after {
  width: 8.4vw;
  height: 7.0666666667vw;
  background: url(../img/simulation-icon01.svg) no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .simulation__radio01>li:nth-child(1) label::after {
    width: 7.9rem;
    height: 6.7rem;
  }
}

.simulation__radio01>li:nth-child(2) label::after {
  width: 6.6666666667vw;
  height: 8.5333333333vw;
  background: url(../img/simulation-icon02.svg) no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .simulation__radio01>li:nth-child(2) label::after {
    width: 6.3rem;
    height: 8rem;
  }
}

.simulation__radio01 label {
  font-size: 4vw;
  font-weight: 700;
  position: relative;
}

@media screen and (min-width: 768px) {
  .simulation__radio01 label {
    font-size: 2rem;
  }
}

.simulation__radio01 label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2vw;
}

@media screen and (min-width: 768px) {
  .simulation__radio01 label::after {
    right: 1.7rem;
  }
}

.simulation__radio02>li:not(:first-child) {
  margin: 2.4vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__radio02>li:not(:first-child) {
    margin: 1.8rem 0 0 0;
  }
}

@media screen and (min-width: 768px) {
  .simulation__radio02 label {
    height: 8.5rem !important;
    padding: 0 0 0 7.5rem !important;
  }
}

.simulation__radio01 input[type=radio],
.simulation__radio02 input[type=radio] {
  display: none;
}

.simulation__radio01 input[type=radio]:checked+label,
.simulation__radio02 input[type=radio]:checked+label {
  background: #e6e5e5 url(../img/radio-checked.svg) no-repeat 1.3333333333vw 50%;
  background-size: 3.7333333333vw auto;
  background-color: #e6e5e5;
}

@media screen and (min-width: 768px) {

  .simulation__radio01 input[type=radio]:checked+label,
  .simulation__radio02 input[type=radio]:checked+label {
    background: #e6e5e5 url(../img/radio-checked.svg) no-repeat 0.9rem 50%;
    background-size: 2.8rem auto;
  }
}

.simulation__radio01 label,
.simulation__radio02 label {
  height: 16vw;
  font-weight: 700;
  padding: 0 0 0 6.6666666667vw;
  background-color: #fff;
  background-image: url(../img/radio-check.svg);
  background-repeat: no-repeat;
  background-position: 1.3333333333vw 50%;
  background-size: 3.7333333333vw auto;
  border: 0.4vw solid #e6e5e5;
  border-radius: 1.3333333333vw;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 768px) {

  .simulation__radio01 label,
  .simulation__radio02 label {
    height: 12rem;
    padding: 0 0 0 4.2rem;
    background-position: 0.9rem 50%;
    background-size: 2.8rem auto;
    border: 0.3rem solid #e6e5e5;
    border-radius: 1rem;
  }
}

.simulation__result {
  margin: 7.7333333333vw 0 0 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .simulation__result {
    width: 53rem;
    margin: 0;
  }
}

.simulation__result::after {
  content: "";
  display: block;
  width: 5.8666666667vw;
  height: 2.2666666667vw;
  background: url(../img/simulation-arrow.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: -5.0666666667vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .simulation__result::after {
    content: none;
  }
}

.simulation__result dl {
  margin: 2.6666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__result dl {
    margin: 2rem 0 0 0;
  }
}

.simulation__result dt {
  font-size: 2.6666666667vw;
  font-weight: 700;
  color: #fff;
  line-height: 4.6666666667vw;
  background-color: #9b010c;
  border-radius: 100vh;
}

@media screen and (min-width: 768px) {
  .simulation__result dt {
    font-size: 2rem;
    line-height: 3.5rem;
  }
}

.simulation__result dt:not(:nth-of-type(1)) {
  margin: 2vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__result dt:not(:nth-of-type(1)) {
    margin: 2rem 0 0 0;
  }
}

.simulation__result dd {
  padding: 1.3333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__result dd {
    padding: 1rem 0 0 0;
  }
}

.simulation__result ol.notes {
  margin: 8.6666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__result ol.notes {
    margin: 3.5rem 0 0 0;
  }
}

.simulation__result-box {
  background-color: #f3f3f3;
  border-radius: 1.3333333333vw;
  padding: 3.0666666667vw 2.4vw 2.4vw 2.4vw;
}

@media screen and (min-width: 768px) {
  .simulation__result-box {
    border-radius: 2rem;
    padding: 2rem 3rem;
  }
}

.simulation__result-txt01 {
  font-size: 2.6666666667vw;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .simulation__result-txt01 {
    font-size: 2rem;
  }
}

.simulation__result-txt02 {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1;
  margin: 1.3333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .simulation__result-txt02 {
    font-size: 3rem;
    margin: 1rem 0 0 0;
  }
}

.simulation__result-price span {
  font-size: 4vw;
  font-weight: 700;
  line-height: 0.8;
  color: #9b010c;
}

@media screen and (min-width: 768px) {
  .simulation__result-price span {
    font-size: 3rem;
  }
}

.simulation__result-price span.big {
  font-size: 13.3333333333vw;
}

@media screen and (min-width: 768px) {
  .simulation__result-price span.big {
    font-size: 10rem;
  }
}

.simulation__result-price span.mid {
  font-size: 8vw;
}

@media screen and (min-width: 768px) {
  .simulation__result-price span.mid {
    font-size: 6rem;
  }
}

.simulation__result-price span.small {
  font-size: 5.3333333333vw;
  color: #202020;
}

@media screen and (min-width: 768px) {
  .simulation__result-price span.small {
    font-size: 4rem;
  }
}

.simulation__result-price span.small span,
.simulation__result-price span.small+span {
  color: #202020;
}

.simulation__result-price sup {
  font-size: 2.4vw;
  color: #202020;
  vertical-align: 1em;
}

@media screen and (min-width: 768px) {
  .simulation__result-price sup {
    font-size: 1.4rem;
  }
}

/* initial-cost
---------------------------------------------------- */
.initial-cost {
  color: #202020;
  padding: 10.6666666667vw 4vw 10vw 4vw;
}

@media screen and (min-width: 768px) {
  .initial-cost {
    max-width: 120rem;
    padding: 8rem 0 10rem 0;
    margin: 0 auto;
  }
}

.initial-cost h2 {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 4.6666666667vw 0;
}

@media screen and (min-width: 768px) {
  .initial-cost h2 {
    font-size: 3rem;
    margin: 0 0 4.5rem 0;
  }
}

.initial-cost__notes {
  font-size: 2.6666666667vw;
  line-height: 1.78;
  background-color: #f3f3f3;
  padding: 4vw;
  margin: 3.3333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .initial-cost__notes {
    font-size: 1.4rem;
    padding: 2.5rem;
    margin: 3.9rem 0 0 0;
  }
}

.initial-cost__notes div {
  height: 32vw;
  padding: 0 1em 0 0;
  overflow-y: scroll;
}

@media screen and (min-width: 768px) {
  .initial-cost__notes div {
    height: 19.3rem;
  }
}

.initial-cost__notes dt,
.initial-cost__notes .mt {
  margin: 1.5em 0 0 0;
}

/* cv
---------------------------------------------------- */
.cv {
  padding: 0 0 12.5333333333vw 0;
}

@media screen and (min-width: 768px) {
  .cv {
    padding: 0 0 11rem 0;
  }
}

.cv__txt {
  width: 41.4666666667vw;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .cv__txt {
    width: 31rem;
  }
}

.cv .btn {
  margin: 1.2vw auto 0 auto;
}

@media screen and (min-width: 768px) {
  .cv .btn {
    margin: 0.8rem auto 0 auto;
  }
}

/* flow
---------------------------------------------------- */
.flow {
  background-color: #f3f3f3;
  padding: 10.9333333333vw 4vw;
}

@media screen and (min-width: 768px) {
  .flow {
    padding: 10rem 0;
  }
}

.flow h2 {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1;
  color: #202020;
}

@media screen and (min-width: 768px) {
  .flow h2 {
    font-size: 5rem;
  }
}

.flow__explain {
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin: 5.7333333333vw auto 0 auto;
}

@media screen and (min-width: 768px) {
  .flow__explain {
    max-inline-size: none;
    margin: 5rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 7.6rem;
    column-gap: 7.6rem;
  }
}

.flow__explain li {
  font-size: 3.4666666667vw;
  font-weight: 700;
  line-height: 7.4666666667vw;
  font-feature-settings: "palt";
  padding: 0 0 0 8vw;
}

@media screen and (min-width: 768px) {
  .flow__explain li {
    font-size: 2.5rem;
    line-height: 5.6rem;
    padding: 0 0 0 6.5rem;
  }
}

.flow__explain li:nth-child(1) {
  color: #0051a4;
  background: url(../img/flow-icon07.svg) no-repeat 0 50%;
  background-size: 6.2666666667vw auto;
}

@media screen and (min-width: 768px) {
  .flow__explain li:nth-child(1) {
    background-size: 4.7rem auto;
  }
}

.flow__explain li:nth-child(2) {
  color: #9b010c;
  background: url(../img/flow-icon08.svg) no-repeat 0 50%;
  background-size: 6.2666666667vw auto;
  margin: 2.5333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .flow__explain li:nth-child(2) {
    background-size: 4.7rem auto;
    margin: 0;
  }
}

.flow__step01 {
  margin: 4.4vw 0 0 3.2vw;
}

@media screen and (min-width: 768px) {
  .flow__step01 {
    width: 104rem;
    margin: 6.5rem auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 6rem;
  }
}

.flow__step01 li {
  height: 14.9333333333vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  padding: 0 0 0 4.2666666667vw;
  background-color: #fff;
  border-radius: 2.6666666667vw;
  display: flex;
  align-items: center;
  -moz-column-gap: 6.6666666667vw;
  column-gap: 6.6666666667vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .flow__step01 li {
    width: 30.7rem;
    height: 22.5rem;
    font-size: 2.5rem;
    padding: 1.8rem 0 0 0;
    border-radius: 2rem;
    display: block;
  }
}

.flow__step01 li::before {
  content: "";
  display: block;
  width: 6.2666666667vw;
  position: absolute;
  top: 50%;
  left: -2.9333333333vw;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .flow__step01 li::before {
    width: 3.3rem;
    top: -2.8rem;
    left: 50%;
    transform: translateY(0);
    transform: translateX(-50%);
  }
}

.flow__step01 li::after {
  content: "";
  display: block;
  width: 4vw;
  height: 2.9333333333vw;
  background: url(../img/arrow01.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -4.5333333333vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .flow__step01 li::after {
    width: 2.2rem;
    height: 3.1rem;
    background: url(../img/arrow03.svg) no-repeat;
    background-size: 100%;
    left: auto;
    right: -4.4rem;
    bottom: 50%;
    transform: translateY(50%);
  }
}

.flow__step01 li:not(:first-child) {
  margin: 6vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .flow__step01 li:not(:first-child) {
    margin: 0;
  }
}

.flow__step01 li:nth-child(-n+3) {
  border: 0.4vw solid #0051a4;
}

@media screen and (min-width: 768px) {
  .flow__step01 li:nth-child(-n+3) {
    border: 0.3rem solid #0051a4;
  }
}

.flow__step01 li:nth-child(-n+3)::before {
  height: 7.0666666667vw;
  background: url(../img/flow-icon07.svg) no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .flow__step01 li:nth-child(-n+3)::before {
    height: 3.8rem;
  }
}

.flow__step01 li:nth-child(-n+3) .flow__step01-no {
  color: #0051a4;
}

.flow__step01 li:nth-child(-n+3) p:not(.flow__step01-no) span {
  color: #0051a4;
}

.flow__step01 li:nth-child(n+4) {
  border: 0.4vw solid #9b010c;
}

@media screen and (min-width: 768px) {
  .flow__step01 li:nth-child(n+4) {
    border: 0.3rem solid #9b010c;
  }
}

.flow__step01 li:nth-child(n+4)::before {
  height: 7.3333333333vw;
  background: url(../img/flow-icon08.svg) no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .flow__step01 li:nth-child(n+4)::before {
    height: 3.9rem;
  }
}

.flow__step01 li:nth-child(n+4) .flow__step01-no {
  color: #9b010c;
}

.flow__step01 li:nth-child(n+4) p:not(.flow__step01-no) span {
  color: #9b010c;
}

.flow__step01 li.icon01 {
  background: #fff url(../img/flow-icon01.svg) no-repeat right 0.6666666667vw top 50%;
  background-size: 15.0666666667vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step01 li.icon01 {
    background: #fff url(../img/flow-icon01.svg) no-repeat 50% 6.9rem;
    background-size: 11.3rem auto;
  }
}

.flow__step01 li.icon02 {
  background: #fff url(../img/flow-icon02.svg) no-repeat right 4.2666666667vw top 50%;
  background-size: 7.7333333333vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step01 li.icon02 {
    background: #fff url(../img/flow-icon02.svg) no-repeat 50% 6.3rem;
    background-size: 5.8rem auto;
  }
}

.flow__step01 li.icon03 {
  background: #fff url(../img/flow-icon03.svg) no-repeat right 3.7333333333vw top 50%;
  background-size: 8.8vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step01 li.icon03 {
    background: #fff url(../img/flow-icon03.svg) no-repeat 50% 6.7rem;
    background-size: 6.6rem auto;
  }
}

.flow__step01 li.icon04 {
  background: #fff url(../img/flow-icon04.svg) no-repeat right 1.8666666667vw top 50%;
  background-size: 12.4vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step01 li.icon04 {
    background: #fff url(../img/flow-icon04.svg) no-repeat 50% 5.7rem;
    background-size: 9.3rem auto;
  }
}

.flow__step01 li.icon05 {
  background: #fff url(../img/flow-icon05.svg) no-repeat right 2.4vw top 50%;
  background-size: 11.4666666667vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step01 li.icon05 {
    background: #fff url(../img/flow-icon05.svg) no-repeat 50% 6.5rem;
    background-size: 8.6rem auto;
  }
}

.flow__step01 li.icon06 {
  background: #fff url(../img/flow-icon06.svg) no-repeat right 2.2666666667vw top 50%;
  background-size: 11.7333333333vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step01 li.icon06 {
    background: #fff url(../img/flow-icon06.svg) no-repeat 50% 6rem;
    background-size: 8.8rem auto;
  }
}

@media screen and (min-width: 768px) {
  .flow__step01 p:not(.flow__step01-no) {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 2.2rem;
  }
}

.flow__step01 p:not(.flow__step01-no) span {
  display: block;
  font-size: 2.4vw;
}

@media screen and (min-width: 768px) {
  .flow__step01 p:not(.flow__step01-no) span {
    font-size: 1.4rem;
  }
}

.flow__step01-no>span {
  display: block;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .flow__step01-no>span {
    display: inline;
  }
}

.flow__step01-no>span:nth-child(1) {
  font-size: 3.34vw;
}

@media screen and (min-width: 768px) {
  .flow__step01-no>span:nth-child(1) {
    font-size: 2.5rem;
  }
}

.flow__step01-no>span:nth-child(2) {
  font-size: 4.6666666667vw;
  margin: 0.1em 0 0 0;
}

@media screen and (min-width: 768px) {
  .flow__step01-no>span:nth-child(2) {
    font-size: 3.5rem;
    margin: 0 0 0 0.1em;
  }
}

.flow__img01 {
  padding: 12vw 9.3333333333vw 10vw 29.6vw;
  background: url(../img/flow-illust01.png) no-repeat 6.2666666667vw 5.3333333333vw;
  background-size: 20vw auto;
}

@media screen and (min-width: 768px) {
  .flow__img01 {
    max-width: 120rem;
    padding: 9.2rem 32.4rem 9.2rem 50rem;
    background: url(../img/flow-illust01.png) no-repeat 32.5rem 4.5rem;
    background-size: 15rem auto;
    margin: 0 auto;
  }
}

.flow__box {
  background-color: #fff;
  border-radius: 2.6666666667vw;
  padding: 6.6666666667vw 4vw 3.8666666667vw 4vw;
}

@media screen and (min-width: 768px) {
  .flow__box {
    max-width: 120rem;
    border-radius: 2rem;
    padding: 6rem 8rem 6.4rem 8rem;
    margin: 0 auto;
  }
}

.flow__step02 li {
  font-size: 3.2vw;
  line-height: 1.94;
  color: #202020;
  position: relative;
}

@media screen and (min-width: 768px) {
  .flow__step02 li {
    font-size: 1.8rem;
    display: flex;
    -moz-column-gap: 3.5rem;
    column-gap: 3.5rem;
  }
}

.flow__step02 li::after {
  content: "";
  display: block;
  width: 9.4666666667vw;
  height: 4.1333333333vw;
  background: url(../img/arrow02.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -8.8vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .flow__step02 li::after {
    content: none;
  }
}

.flow__step02 li:not(:first-child) {
  margin: 13.6vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .flow__step02 li:not(:first-child) {
    margin: 7.9rem 0 0 0;
  }
}

.flow__step02 li:nth-child(-n+3) .flow__step02-no {
  color: #0051a4;
  background-color: #e5ecf4;
}

.flow__step02 li:nth-child(-n+3) h3 {
  border-bottom: 0.2666666667vw solid #0051a4;
}

@media screen and (min-width: 768px) {
  .flow__step02 li:nth-child(-n+3) h3 {
    border-bottom: 0.2rem solid #0051a4;
  }
}

.flow__step02 li:nth-child(-n+3) h3::after {
  width: 6.4vw;
  height: 7.3333333333vw;
  background: url(../img/flow-icon07.svg) no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .flow__step02 li:nth-child(-n+3) h3::after {
    width: 4.8rem;
    height: 5.5rem;
  }
}

.flow__step02 li:nth-child(-n+3) .flow__ttl-notes {
  color: #0051a4;
}

.flow__step02 li:nth-child(n+4) .flow__step02-no {
  color: #9b010c;
  background-color: #f8e9ea;
}

.flow__step02 li:nth-child(n+4) h3 {
  border-bottom: 0.2666666667vw solid #9b010c;
}

@media screen and (min-width: 768px) {
  .flow__step02 li:nth-child(n+4) h3 {
    border-bottom: 0.2rem solid #9b010c;
  }
}

.flow__step02 li:nth-child(n+4) h3::after {
  width: 6.2666666667vw;
  height: 7.4666666667vw;
  background: url(../img/flow-icon08.svg) no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .flow__step02 li:nth-child(n+4) h3::after {
    width: 4.7rem;
    height: 5.6rem;
  }
}

.flow__step02 li:nth-child(n+4) .flow__ttl-notes {
  color: #9b010c;
}

@media screen and (min-width: 768px) {
  .flow__step02 li>div {
    flex: 1;
  }
}

.flow__step02 h3 {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1;
  color: #000;
  padding: 0 0 2.6666666667vw 0;
  margin: 4vw 0 2.2666666667vw 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .flow__step02 h3 {
    font-size: 3rem;
    padding: 0 0 2rem 0;
    margin: 0 0 2rem 0;
  }
}

.flow__step02 h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1.2vw;
  right: 0;
}

@media screen and (min-width: 768px) {
  .flow__step02 h3::after {
    bottom: 0.6rem;
  }
}

.flow__step02 .big {
  font-size: 138%;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .flow__step02 .big {
    font-size: 2.5rem;
  }
}

.flow__step02 .btn {
  width: 58.4vw;
  margin: 1.3333333333vw auto 0 auto;
}

@media screen and (min-width: 768px) {
  .flow__step02 .btn {
    width: 43.8rem;
    margin: 1.1rem 0 0 0;
  }
}

.flow__step02 dl {
  color: #000;
  background-color: #f3f3f3;
  border-radius: 1.3333333333vw;
  padding: 3.3333333333vw;
}

@media screen and (min-width: 768px) {
  .flow__step02 dl {
    border-radius: 1rem;
    padding: 1.5rem 2.5rem;
  }
}

.flow__step02 dl:not(:nth-of-type(1)) {
  margin: 3.6vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .flow__step02 dl:not(:nth-of-type(1)) {
    margin: 1.9rem 0 0 0;
  }
}

.flow__step02 dt {
  font-weight: 700;
  padding: 0 2em 0 0;
  position: relative;
  cursor: pointer;
}

.flow__step02 dt::before,
.flow__step02 dt::after {
  content: "";
  display: block;
  width: 2.8vw;
  height: 0.4vw;
  background: #000;
  position: absolute;
  right: 2.6666666667vw;
  top: 50%;
  margin: -0.2vw 0 0 0;
}

@media screen and (min-width: 768px) {

  .flow__step02 dt::before,
  .flow__step02 dt::after {
    width: 2.1rem;
    height: 0.3rem;
    right: 2.5rem;
    margin: -0.15rem 0 0 0;
  }
}

.flow__step02 dt::before {
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.flow__step02 dt.is-active::before {
  transform: rotate(0deg);
}

.flow__step02 dd {
  padding: 0.7em 0 0 0;
}

@media screen and (min-width: 768px) {
  .flow__step02 dd {
    padding: 0.7em 5rem 0 0;
  }
}

.flow__step02-no {
  width: 28.5333333333vw;
  height: 28.5333333333vw;
  padding: 6.1333333333vw 0 0 0;
  border-radius: 100vh;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .flow__step02-no {
    width: 21.4rem;
    height: 21.4rem;
    padding: 4.6rem 0 0 0;
  }
}

.flow__step02-no.icon01 {
  background: #e5ecf4 url(../img/flow-icon01.svg) no-repeat 50% 12.9333333333vw;
  background-size: 12.6666666667vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step02-no.icon01 {
    background: #e5ecf4 url(../img/flow-icon01.svg) no-repeat 50% 9.7rem;
    background-size: 9.5rem auto;
  }
}

.flow__step02-no.icon02 {
  background: #e5ecf4 url(../img/flow-icon02.svg) no-repeat 50% 13.0666666667vw;
  background-size: 6.5333333333vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step02-no.icon02 {
    background: #e5ecf4 url(../img/flow-icon02.svg) no-repeat 50% 9.8rem;
    background-size: 4.9rem auto;
  }
}

.flow__step02-no.icon03 {
  background: #e5ecf4 url(../img/flow-icon03.svg) no-repeat 50% 12.9333333333vw;
  background-size: 8vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step02-no.icon03 {
    background: #e5ecf4 url(../img/flow-icon03.svg) no-repeat 50% 9.7rem;
    background-size: 6rem auto;
  }
}

.flow__step02-no.icon04 {
  background: #f8e9ea url(../img/flow-icon04.svg) no-repeat 50% 12.5333333333vw;
  background-size: 11.2vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step02-no.icon04 {
    background: #f8e9ea url(../img/flow-icon04.svg) no-repeat 50% 9.4rem;
    background-size: 8.4rem auto;
  }
}

.flow__step02-no.icon05 {
  background: #f8e9ea url(../img/flow-icon05.svg) no-repeat 50% 12.8vw;
  background-size: 9.7333333333vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step02-no.icon05 {
    background: #f8e9ea url(../img/flow-icon05.svg) no-repeat 50% 9.6rem;
    background-size: 7.3rem auto;
  }
}

.flow__step02-no.icon06 {
  background: #f8e9ea url(../img/flow-icon06.svg) no-repeat 50% 12.1333333333vw;
  background-size: 10vw auto;
}

@media screen and (min-width: 768px) {
  .flow__step02-no.icon06 {
    background: #f8e9ea url(../img/flow-icon06.svg) no-repeat 50% 9.1rem;
    background-size: 7.5rem auto;
  }
}

.flow__step02-no>span {
  font-weight: 700;
  line-height: 1;
}

.flow__step02-no>span:nth-child(1) {
  font-size: 3.992vw;
}

@media screen and (min-width: 768px) {
  .flow__step02-no>span:nth-child(1) {
    font-size: 3rem;
  }
}

.flow__step02-no>span:nth-child(2) {
  font-size: 5.324vw;
  margin: 0 0 0 0.1em;
}

@media screen and (min-width: 768px) {
  .flow__step02-no>span:nth-child(2) {
    font-size: 4rem;
  }
}

.flow__tel {
  font-size: 6vw;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 0 5.0666666667vw;
  background: url(../img/icon-tel.svg) no-repeat 0 50%;
  background-size: 3.6vw auto;
  margin: 2.6666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .flow__tel {
    font-size: 4rem;
    padding: 0 0 0 3.5rem;
    background-size: 2.7rem auto;
    margin: 2rem 0 0 0;
  }
}

.flow__tel a {
  color: #000;
}

@media screen and (min-width: 768px) {
  .flow__tel a {
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) {
  .flow__tel-hour {
    font-size: 1.4rem;
    margin: 0.3em 0 0 0;
  }
}

.flow__support {
  min-height: 17.3333333333vw;
  font-weight: 700;
  color: #000;
  background-color: #f3f3f3;
  border-radius: 2.6666666667vw;
  padding: 0 0 0 3.7333333333vw;
  margin: 4.2666666667vw 0 0 0;
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .flow__support {
    min-height: 8rem;
    border-radius: 2rem;
    padding: 0 0 0 2rem;
    margin: 2.3rem 0 0 0;
  }
}

.flow__support::after {
  content: "";
  display: block;
  width: 13.3333333333vw;
  height: 16.8vw;
  background: url(../img/flow-icon09.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: -2.1333333333vw;
  right: 3.2vw;
}

@media screen and (min-width: 768px) {
  .flow__support::after {
    width: 10rem;
    height: 12.6rem;
    top: -6.2rem;
    right: 2.2rem;
  }
}

.flow__support span {
  padding: 0 0.1em;
  background: linear-gradient(transparent 70%, #fbde18 70%);
}

@media screen and (min-width: 768px) {
  .flow__support span {
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .flow__support span:nth-of-type(1) {
    padding: 0 0 0 0.3em;
  }
}

@media screen and (min-width: 768px) {
  .flow__support span:nth-of-type(2) {
    padding: 0 0.3em 0 0;
  }
}

.flow__ttl-notes {
  font-weight: 700;
  line-height: 1.38;
  margin: 4.6666666667vw 0 -2vw 0;
}

@media screen and (min-width: 768px) {
  .flow__ttl-notes {
    margin: 0 0 1rem 0;
  }
}

.flow__customer {
  color: #0051a4;
}

.flow__img02 {
  padding: 19.6vw 4vw 6.5333333333vw 30.2666666667vw;
  background: url(../img/flow-illust02.png) no-repeat 50% 0;
  background-size: 84vw auto;
  margin: 5.3333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .flow__img02 {
    padding: 13.7rem 24.5rem 4.9rem 45.8rem;
    background: url(../img/flow-illust02-pc.png) no-repeat 50% 0;
    background-size: 108rem auto;
    margin: 4.7rem -2rem 0 -2rem;
  }
}

.flow__btn-notes {
  width: 58.1333333333vw;
  margin: 4.6666666667vw auto 0 auto;
}

@media screen and (min-width: 768px) {
  .flow__btn-notes {
    width: 39.2rem;
    margin: 2.6rem 0 0 2.3rem;
  }
}

/* faq
---------------------------------------------------- */
.faq {
  color: #202020;
  padding: 10.9333333333vw 4vw;
}

@media screen and (min-width: 768px) {
  .faq {
    max-width: 120rem;
    padding: 10rem 0;
    margin: 0 auto;
  }
}

.faq h2 {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .faq h2 {
    font-size: 5rem;
  }
}

.faq__txt01 {
  font-size: 2.8vw;
  line-height: 1.66;
  margin: 4.2666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .faq__txt01 {
    font-size: 1.8rem;
    line-height: 2.22;
    margin: 3rem 0 0 0;
  }
}

.faq dl {
  color: #202020;
  background-color: #f3f3f3;
  border-radius: 2.6666666667vw;
  padding: 4vw;
  margin: 5.0666666667vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .faq dl {
    border-radius: 1.7rem;
    padding: 3.5rem 3rem;
    margin: 5.6rem 0 0 0;
  }
}

.faq dt {
  font-size: 3.3333333333vw;
  line-height: 1.59;
  padding: 0 4vw 0 9.3333333333vw;
  position: relative;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .faq dt {
    font-size: 2.5rem;
    padding: 0 6rem 0 6.7rem;
  }
}

.faq dt::before,
.faq dt::after {
  content: "";
  display: block;
  width: 2.8vw;
  height: 0.4vw;
  background: #000;
  position: absolute;
  right: 2.6666666667vw;
  top: 50%;
  margin: -0.2vw 0 0 0;
}

@media screen and (min-width: 768px) {

  .faq dt::before,
  .faq dt::after {
    width: 2.1rem;
    height: 0.3rem;
    right: 3rem;
    margin: -0.15rem 0 0 0;
  }
}

.faq dt::before {
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.faq dt.is-active::before {
  transform: rotate(0deg);
}

.faq dt span {
  display: block;
  min-height: 7.2vw;
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .faq dt span {
    min-height: 5.3rem;
  }
}

.faq dt span::before {
  content: "Q";
  width: 7.2vw;
  height: 7.2vw;
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 3.3413333333vw;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
  background-color: #fff;
  border-radius: 100vh;
  color: #202020;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -9.3333333333vw;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .faq dt span::before {
    width: 5.3rem;
    height: 5.3rem;
    font-size: 2.5rem;
    left: -6.7rem;
  }
}

.faq dd {
  font-size: 3.2vw;
  line-height: 1.67;
  padding: 1.3333333333vw 0 0 9.3333333333vw;
  margin: 3.6vw 0 0 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .faq dd {
    font-size: 1.8rem;
    padding: 0.8rem 6rem 0 6.7rem;
    margin: 2.6rem 0 0 0;
  }
}

.faq dd::before {
  content: "A";
  width: 7.2vw;
  height: 7.2vw;
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 3.3413333333vw;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
  background-color: #fff;
  border-radius: 100vh;
  color: #9b010c;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 768px) {
  .faq dd::before {
    width: 5.3rem;
    height: 5.3rem;
    font-size: 2.5rem;
  }
}

.faq__txt02 {
  font-size: 3.7333333333vw;
  font-weight: 700;
  line-height: 1.36;
  margin: 0 0 0.3em 0;
}

@media screen and (min-width: 768px) {
  .faq__txt02 {
    font-size: 2.5rem;
  }
}

/* contact
---------------------------------------------------- */
.contact {
  color: #202020;
  padding: 26.1333333333vw 4vw 19.3333333333vw 4vw;
  background: url(../img/contact-bg.jpg) no-repeat 50% 0;
  background-size: 100% auto;
}

@media screen and (min-width: 768px) {
  .contact {
    padding: 7.4rem 0 11.5rem 0;
    background: url(../img/contact-bg-pc.jpg) no-repeat 50% 0;
    background-size: 202.4rem auto;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 120rem;
    margin: 0 auto;
  }
}

.contact h2 {
  width: 54.2666666667vw;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .contact h2 {
    width: 54.8rem;
    text-align: center;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact h2 img {
    width: 40.7rem;
  }
}

.contact .cv {
  margin: 6vw 0 0 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .contact .cv {
    width: 54.8rem;
    margin: 4.5rem 0 0 0;
  }
}

.contact__tel {
  margin: 18.2666666667vw 0 0 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contact__tel {
    margin: 15.9rem 0 0 3.4rem;
  }
}

.contact__tel a {
  display: block;
  background-color: #9b010c;
  border-radius: 2.6666666667vw;
  padding: 5.6vw 0 4.5333333333vw 0;
}

@media screen and (min-width: 768px) {
  .contact__tel a {
    border-radius: 2rem;
    padding: 5.5rem 0 4.8rem 0;
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) {
  .contact__box {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 2.1rem;
    column-gap: 2.1rem;
  }
}

@media screen and (min-width: 768px) {
  .contact__img01 {
    width: 35.2rem;
  }
}

.contact__txt01 {
  font-size: 11.3906666667vw;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 3.7333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .contact__txt01 {
    font-size: 8.543rem;
    white-space: nowrap;
    margin: 0;
  }
}

.contact__txt02 {
  width: 76.8vw;
  height: 11.4666666667vw;
  background-color: #fff;
  border-radius: 100vh;
  margin: 2.2666666667vw auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

@media screen and (min-width: 768px) {
  .contact__txt02 {
    width: 108.4rem;
    height: 5.8rem;
    margin: 2.5rem auto 0 auto;
  }
}

.contact__txt02>span {
  display: block;
  width: 100%;
  color: #202020;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .contact__txt02>span {
    display: inline;
    width: auto;
  }
}

.contact__txt02>span:nth-child(1) {
  font-size: 3.3333333333vw;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .contact__txt02>span:nth-child(1) {
    font-size: 2.5rem;
  }
}

.contact__txt02>span:nth-child(1) span {
  font-size: 4vw;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .contact__txt02>span:nth-child(1) span {
    font-size: 3rem;
  }
}

.contact__txt02>span:nth-child(2) {
  font-size: 2.4vw;
  margin: 0.3em 0 0 0;
}

@media screen and (min-width: 768px) {
  .contact__txt02>span:nth-child(2) {
    font-size: 2rem;
    margin: 0 0 0 0.2em;
  }
}

.contact__free {
  width: 20vw;
  position: absolute;
  top: -11.3333333333vw;
  left: -0.4vw;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .contact__free {
    width: 15rem;
    top: -7.8rem;
    left: -3.2rem;
  }
}

.contact .notes {
  margin: 3.3333333333vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .contact .notes {
    font-weight: 700;
    margin: 3rem 0 0 0;
  }
}

/* footer
---------------------------------------------------- */
.footer {
  background-color: #f3f3f3;
  padding: 5.3333333333vw 0;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 4.4rem 0;
  }
}

.footer ul {
  display: flex;
  justify-content: center;
}

.footer ul li:not(:first-child) a {
  border-left: 1px solid #202020;
  padding: 0 0 0 1em;
  margin: 0 0 0 1em;
}

.footer ul a {
  display: inline-block;
  font-size: 2.4vw;
  line-height: 1;
  color: #202020;
}

@media screen and (min-width: 768px) {
  .footer ul a {
    font-size: 1.4rem;
  }
}

.footer p {
  font-size: 2.4vw;
  line-height: 1;
  color: #202020;
  margin: 4vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .footer p {
    font-size: 1rem;
    margin: 2.8rem 0 0 0;
  }
}

/* floating-nav
---------------------------------------------------- */
.floating-nav {
  width: 100%;
  background-color: #0051a4;
  position: fixed;
  bottom: 0;
  z-index: 5;
}

.floating-nav ul {
  height: 19.7333333333vw;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.4666666667vw;
  column-gap: 1.4666666667vw;
}

.floating-nav li:nth-child(1) {
  width: 70.6666666667vw;
}

.floating-nav li:nth-child(1) span {
  display: block;
  line-height: 1;
}

.floating-nav li:nth-child(1) span:nth-child(2) {
  margin: 0.9333333333vw 0 0 0;
  filter: drop-shadow(0px 0.7rem 0.9rem rgba(0, 0, 0, 0.5));
}

.floating-nav li:nth-child(2) {
  width: 19.8666666667vw;
}

/* page-top
---------------------------------------------------- */
.page-top {
  width: 11.7333333333vw;
  position: fixed;
  right: 4vw;
  bottom: 20.6666666667vw;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .page-top {
    width: 4.6rem;
    right: 5rem;
    bottom: 5rem;
  }
}

/* cookie
---------------------------------------------------- */
.cookie {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

.cookie h2 {
  font-size: 3.7333333333vw;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 4.8vw 0;
  margin: 0 0 3.4666666667vw 0;
  border-bottom: 0.4vw solid #9b010c;
}

@media screen and (min-width: 768px) {
  .cookie h2 {
    font-size: 1.4rem;
    padding: 0 0 2rem 0;
    margin: 0 0 2rem 0;
    border-bottom: 0.2rem solid #9b010c;
  }
}

.cookie dl {
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .cookie dl {
    font-size: 1.4rem;
  }
}

.cookie dt {
  margin: 1em 0 0 0;
}

.cookie__copy {
  font-size: 2.6666666667vw;
  margin: 1em 0 0 0;
}

@media screen and (min-width: 768px) {
  .cookie__copy {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */