@charset "UTF-8";
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption,
time,
button {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  display: block;
}

li {
  list-style: none;
}

body {
  background-color: #a9a9a9;
}

.l-content {
  width: 100%;
  max-width: 750px;
  margin: 0 5% 0 auto;
  background-color: #fff;
}

.l-footer {
  position: fixed;
  margin: 0 5% 0 auto;
  bottom: 0;
  width: 100%;
  max-width: 750px;
  z-index: 20;
}

.c-fv {
  background: rgb(0, 0, 0);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(8%, rgb(0, 0, 0)),
    to(rgb(120, 20, 32))
  );
  background: linear-gradient(180deg, rgb(0, 0, 0) 8%, rgb(120, 20, 32) 100%);
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}
@media (width < 750px) {
  .c-fv {
    padding-bottom: 16vw;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8vw), 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8vw), 0 100%);
  }
}

.c-fv__lead {
  background-image: url(../img/gold-bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 16px 45px;
}
@media (width < 750px) {
  .c-fv__lead {
    padding: 2.1vw 6vw;
  }
}

.c-fv__left {
  width: 42.6666666667%;
  max-width: 326px;
  position: absolute;
  left: 30px;
  top: 95px;
}
@media (width < 750px) {
  .c-fv__left {
    top: 13vw;
    left: 4vw;
  }
}

.c-fv__mv {
  position: absolute;
  right: 0;
  top: 0;
  width: 58vw;
  max-width: 437px;
  z-index: -1;
}

.c-fv__txt {
  font-size: clamp(16px, 4.8vw, 36px);
  font-family: "Source Han SerifJP", serif;
  color: #fff;
  font-style: italic;
  text-align: center;
  margin-top: 443px;
  text-shadow: 1px 7px 5px rgb(0, 0, 0);
}
@media (width < 750px) {
  .c-fv__txt {
    margin-top: 61vw;
  }
}

.c-fv__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 30px;
  margin-top: 25px;
}

.c-fv__heading-main {
  width: 56.8vw;
  max-width: 426px;
}

.c-fv__heading-sub {
  max-width: 265px;
  width: 35vw;
  margin-left: 10px;
}

.c-fv__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  padding: 0 26px;
  gap: 10px;
}

.c-fv__point {
  text-align: center;
  margin-top: 10px;
}

.c-fv__secondary-btn {
  margin-top: -20px;
}
@media (width < 750px) {
  .c-fv__secondary-btn {
    margin-top: -2.7vw;
  }
}

.c-header {
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 70px 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (width < 750px) {
  .c-header {
    padding: 1.9vw 9.3vw 1.3vw;
  }
}

.c-logo {
  width: 9.8360655738%;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-heading {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-primary-btn {
  width: 88.2666666667%;
  margin-inline: auto;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  position: relative;
}
.c-primary-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: transparent;
  background: linear-gradient(
    -45deg,
    rgba(53, 127, 60, 0) 50%,
    white 60%,
    rgba(53, 127, 60, 0) 70%
  );
  background-size: 600% 100%;
  -webkit-animation: shine 20s infinite;
  animation: shine 20s infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  width: 95%;
  height: 75%;
  border-radius: 15px;
}
@media (width < 750px) {
  .c-primary-btn::after {
    border-radius: 2vw;
  }
}
.c-primary-btn:hover {
  opacity: 0.7;
}

@-webkit-keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.c-secondary-btn {
  width: 88.2666666667%;
  margin-inline: auto;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  position: relative;
}
.c-secondary-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: transparent;
  background: linear-gradient(
    -45deg,
    rgba(53, 127, 60, 0) 50%,
    white 60%,
    rgba(53, 127, 60, 0) 70%
  );
  background-size: 600% 100%;
  -webkit-animation: shine 20s infinite;
  animation: shine 20s infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  width: 95%;
  height: 70%;
  border-radius: 15px;
}
@media (width < 750px) {
  .c-secondary-btn::after {
    border-radius: 2vw;
  }
}
.c-secondary-btn:hover {
  opacity: 0.7;
}

.c-voice-flow__bg {
  background-image: url(../img/voice-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}

.pc-bg {
  background-image: url(../img/pc-bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: -10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #6b0e1c;
}
@media (width < 750px) {
  .pc-bg {
    display: none;
  }
}

.c-course {
  position: relative;
}
.c-course::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -165px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../img/course-bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
@media (width < 750px) {
  .c-course::before {
    top: -22vw;
  }
}

.c-course__balloon {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 4vw, 30px);
  background-image: url(../img/gold-balloon.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 40px 60px 60px;
  display: grid;
  place-items: center;
  line-height: 1.3em;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -80px;
  z-index: 2;
}
@media (width < 750px) {
  .c-course__balloon {
    padding: 5.3vw 8vw 8vw;
    top: -11vw;
  }
}

.c-course__heading {
  padding-top: 140px;
  color: #da5a6a;
  font-family: "Source Han SerifJP", serif;
  position: relative;
}
@media (width < 750px) {
  .c-course__heading {
    padding-top: 18.6vw;
  }
}
.c-course__heading p {
  font-size: clamp(16px, 5.3vw, 40px);
  text-align: center;
}
.c-course__heading img {
  width: 81.3333333333%;
  margin-inline: auto;
  display: block;
  margin-bottom: 68px;
}
@media (width < 750px) {
  .c-course__heading img {
    margin-bottom: 9.1vw;
  }
}

.c-course__row1 {
  width: calc(63.3333333333% + 140px);
  padding: 0 70px;
}
@media (width < 750px) {
  .c-course__row1 {
    padding: 0 9.3vw;
    width: calc(63.3333333333% + 18.6vw);
  }
}

.c-course__row2 {
  width: calc(63.3333333333% + 140px);
  padding: 0 70px;
  margin-left: auto;
  margin-top: 26px;
}
@media (width < 750px) {
  .c-course__row2 {
    padding: 0 9.3vw;
    margin-top: 3.5vw;
    width: calc(63.3333333333% + 18.6vw);
  }
}

.c-data__bg {
  position: relative;
  padding-bottom: 56px;
}
@media (width < 750px) {
  .c-data__bg {
    padding-bottom: 7.5vw;
  }
}
.c-data__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/data-bg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.c-course__ribbon {
  margin-top: 30px;
}
@media (width < 750px) {
  .c-course__ribbon {
    margin-top: 4vw;
  }
}

.c-price {
  margin-top: 47px;
  padding: 0 30px;
}
@media (width < 750px) {
  .c-price {
    margin-top: 6.3vw;
    padding: 0 4vw;
  }
}

.c-price__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.c-price__row:nth-child(2) {
  margin-top: 10px;
}
.c-price__row img {
  width: calc(50% - 10px);
}
@media (width < 750px) {
  .c-price__row img {
    width: calc(50% - 1.35vw);
  }
}
@media (width < 750px) {
  .c-price__row {
    gap: 2.7vw;
  }
}

.c-price__note {
  font-size: clamp(12px, 2.7vw, 20px);
  color: #da5a6a;
  padding: 0 30px;
  display: block;
  margin-top: 15px;
}
@media (width < 750px) {
  .c-price__note {
    margin-top: 2vw;
    padding: 0 4vw;
  }
}

.c-data__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  padding: 0 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (width < 750px) {
  .c-data__head {
    padding: 0 4vw;
    margin-top: 2vw;
  }
}

.c-data__balloon {
  width: 29.2%;
}

.c-data__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 66.6666666667%;
}

.c-data__body {
  margin-inline: auto;
  width: 92%;
}

.c-data__bottom {
  margin-top: 25px;
  width: 90.6666666667%;
  margin-inline: auto;
  position: relative;
  padding-right: 12px;
}
@media (width < 750px) {
  .c-data__bottom {
    margin-top: 3.3vw;
    padding-right: 1.6vw;
  }
}

.c-data__bottom-txt {
  color: #da5a6a;
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 34px;
  background-color: #dcdcdc;
  background-image: url(../img/silver-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.c-course__bottom {
  position: relative;
}
.c-course__bottom::after {
  content: "";
  width: 62px;
  height: 49px;
  position: absolute;
  left: 50%;
  top: -25px;
  background-image: url(../img/pink-arrow.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: moveUpDown 1s infinite alternate ease-in-out;
  animation: moveUpDown 1s infinite alternate ease-in-out;
}
@media (width < 750px) {
  .c-course__bottom::after {
    width: 8.3vw;
    height: 6.5vw;
    min-width: 30px;
    min-height: 20px;
    top: -3.3vw;
  }
}

@-webkit-keyframes moveUpDown {
  0% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  100% {
    -webkit-transform: translate(-50%, 30px);
    transform: translate(-50%, 30px);
    @media (width < 750px) {
      -webkit-transform: translate(-50%, 3vw);
      transform: translate(-50%, 3vw);
    }
  }
}

@keyframes moveUpDown {
  0% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  100% {
    -webkit-transform: translate(-50%, 30px);
    transform: translate(-50%, 30px);
    @media (width < 750px) {
      -webkit-transform: translate(-50%, 3vw);
      transform: translate(-50%, 3vw);
    }
  }
}
.c-merit__head {
  background-image: url(../img/merit-bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: #fff;
  padding-bottom: 97px;
}
@media (width < 750px) {
  .c-merit__head {
    padding-bottom: 13vw;
  }
}

.c-merit__heading {
  text-align: center;
  padding-top: 55px;
}
@media (width < 750px) {
  .c-merit__heading {
    padding-top: 7.3vw;
  }
}
.c-merit__heading img {
  width: 50.2666666667%;
}

.c-merit-sec1 {
  margin-top: 100px;
  padding: 0 26px;
}
@media (width < 750px) {
  .c-merit-sec1 {
    margin-top: 13.3vw;
    padding: 0 3.5vw;
  }
}

.c-sec__ttl {
  font-size: clamp(18px, 6.4vw, 48px);
  color: #8a1c25;
  margin-bottom: 24px;
  font-family: "Source Han SerifJP", serif;
}
@media (width < 750px) {
  .c-sec__ttl {
    margin-bottom: 3.2vw;
  }
}

.c-sec__txt {
  font-size: clamp(12px, 3.2vw, 24px);
  color: #000;
  width: 65.3333333333%;
}
@media (width < 400px) {
  .c-sec__txt {
    width: 90%;
  }
}

.c-merit-sec2 {
  margin-top: 340px;
  padding: 0 26px;
}
@media (width < 750px) {
  .c-merit-sec2 {
    margin-top: 45.3vw;
    padding: 0 3.5vw;
  }
}
.c-merit-sec2 .c-sec__ttl {
  text-align: right;
}
.c-merit-sec2 .c-sec__txt {
  margin-left: auto;
}

.c-merit-sec3 {
  margin-top: 320px;
  padding: 0 26px;
}
@media (width < 750px) {
  .c-merit-sec3 {
    margin-top: 43vw;
    padding: 0 3.5vw;
  }
}

.c-merit__middle {
  position: relative;
  background-image: url(../img/list-bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 401px 60px 294px;
}
@media (width < 750px) {
  .c-merit__middle {
    padding: 53.5vw 8vw 39.2vw;
  }
}

.c-merit__balloon {
  background-image: url(../img/gray-balloon.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 45px 60px 60px;
  font-size: clamp(14px, 4vw, 30px);
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
  top: 0;
}
@media (width < 750px) {
  .c-merit__balloon {
    padding: 6vw 8vw 8vw;
  }
}

.c-merit__card {
  -webkit-box-shadow: 2px 8px 14px -3px #777777;
  box-shadow: 2px 8px 14px -3px #777777;
}
@media (width < 750px) {
  .c-merit__card {
    -webkit-box-shadow: 0.3vw 1.1vw 1.9vw -0.4vw #777777;
    box-shadow: 0.3vw 1.1vw 1.9vw -0.4vw #777777;
  }
}

.c-merit__bottom {
  background-image: url(../img/merit-bottom-bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-merit__bottom-ttl {
  padding: 211px 90px 0;
  margin-top: -167px;
}
@media (width < 750px) {
  .c-merit__bottom-ttl {
    padding: 28vw 12vw 0;
    margin-top: -22.3vw;
  }
}

.c-merit__bottom-txt {
  margin-top: 423px;
}
@media (width < 750px) {
  .c-merit__bottom-txt {
    margin-top: 56.4vw;
  }
}

.c-special__head {
  background-image: url(../img/special-bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 72px 0 45px;
}
@media (width < 750px) {
  .c-special__head {
    padding: 9.6vw 0 6vw;
  }
}

.c-special__heading {
  width: 81.3333333333%;
  margin-inline: auto;
}

.c-special__prehead {
  margin-top: 42px;
  width: 92%;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-special__prehead {
    margin-top: 5.6vw;
  }
}
.c-special__prehead p {
  font-size: clamp(16px, 4.8vw, 36px);
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
@media (width < 750px) {
  .c-special__prehead p {
    margin-top: 1.3vw;
  }
}

.c-special__card {
  margin-top: 37px;
  width: 92.8%;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-special__card {
    margin-top: 4.9vw;
  }
}

.c-special__head-txt {
  margin-top: 38px;
  color: #fff;
  padding: 0 60px;
  font-size: clamp(11px, 4.15vw, 31px);
  line-height: 1.8;
  font-family: "Source Han SerifJP", serif;
}
@media (width < 750px) {
  .c-special__head-txt {
    margin-top: 5.1vw;
    padding: 0 7.8vw;
  }
}
.c-special__head-txt .bg {
  background-color: #da5a6a;
  padding: 8px 15px;
  margin-left: 12px;
}
@media (width < 750px) {
  .c-special__head-txt .bg {
    padding: 1.1vw 2vw;
  }
}
@media (width < 750px) {
  .c-special__head-txt .bg {
    margin-left: 1.6vw;
  }
}

.c-special__middle {
  background-image: url(../img/special-middle-bg.webp);
  background-repeat: no-repeat;
  background-position: top -60px center;
  background-size: cover;
  padding: 59px 0 100px;
}
@media (width < 750px) {
  .c-special__middle {
    padding: 7.8vw 0 13.3vw;
    background-position: top -8vw center;
  }
}

.c-special__middle-ttl {
  width: 70.5333333333%;
  margin-inline: auto;
}

.c-special__middle-txt1 {
  text-align: center;
  margin-top: 78px;
  font-size: clamp(12px, 4.4vw, 36px);
  color: #6c6162;
}
@media (width < 750px) {
  .c-special__middle-txt1 {
    margin-top: 10.4vw;
  }
}
.c-special__middle-txt1 .bg {
  background-color: #fff;
  padding: 5px;
}
@media (width < 750px) {
  .c-special__middle-txt1 .bg {
    padding: 0.7vw;
  }
}

.c-special__middle-circle {
  margin-inline: auto;
  margin-top: 43px;
  width: 22.6666666667%;
  position: relative;
}
@media (width < 750px) {
  .c-special__middle-circle {
    margin-top: 5.7vw;
  }
}
.c-special__middle-circle::after {
  content: "";
  width: 15px;
  height: 74px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateY(50%) skewY(-45deg);
  transform: translateY(50%) skewY(-45deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
@media (width < 750px) {
  .c-special__middle-circle::after {
    width: 2vw;
    height: 9.8vw;
    bottom: 2vw;
  }
}
@media (width < 400px) {
  .c-special__middle-circle::after {
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
}

.c-special__middle-txt2 {
  font-size: clamp(12px, 4.4vw, 36px);
  color: #6c6162;
  border: 2px solid #fff;
  padding: 31px 23px;
  margin-top: 75px;
  width: 84%;
  margin-inline: auto;
  line-height: 1.2em;
  text-align: center;
}
@media (width < 750px) {
  .c-special__middle-txt2 {
    margin-top: 10vw;
    padding: 4.1vw 3.1vw;
  }
}

.c-special__middle-txt3 {
  font-size: clamp(24px, 8vw, 60px);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  letter-spacing: -0.1em;
  text-align: center;
  margin-top: 13px;
}
@media (width < 750px) {
  .c-special__middle-txt3 {
    margin-top: 1.7vw;
  }
}

.c-special__middle-txt4 {
  margin-top: 124px;
  color: #6c6162;
  font-size: clamp(12px, 4.4vw, 33px);
  width: 80%;
  text-align: center;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-special__middle-txt4 {
    margin-top: 16.5vw;
  }
}
.c-special__middle-txt4 .bold {
  font-weight: 700;
}

.c-special__middle-txt5 {
  margin-top: 69px;
  color: #6c6162;
  font-size: clamp(12px, 4.4vw, 33px);
  width: 72%;
  text-align: center;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-special__middle-txt5 {
    margin-top: 9.2vw;
  }
}
.c-special__middle-txt5 .bold {
  font-weight: 700;
}

.c-special__middle-txt6 {
  width: calc(21.3333333333% + 120px);
  margin-top: 34px;
  margin-left: auto;
  padding: 0 60px;
}
@media (width < 750px) {
  .c-special__middle-txt6 {
    padding: 0 8vw;
    margin-top: 4.5vw;
    width: calc(21.3333333333% + 16vw);
  }
}

.c-special__middle-ribbon {
  margin-top: 191px;
}
@media (width < 750px) {
  .c-special__middle-ribbon {
    margin-top: 26vw;
  }
}

.c-special__middle-card {
  margin-top: 45px;
  width: 92%;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-special__middle-card {
    margin-top: 6vw;
  }
}

.c-special__bottom {
  position: relative;
}
.c-special__bottom::before {
  content: "";
  width: 343px;
  height: 81px;
  background-image: url(../img/special-bottom-deco.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 0;
}
@media (width < 750px) {
  .c-special__bottom::before {
    width: 45.7vw;
    height: 10.8vw;
  }
}

.c-special__bottom-ttl {
  padding: 80px 60px 57px;
  background-color: #000;
}
@media (width < 750px) {
  .c-special__bottom-ttl {
    padding: 10.7vw 8vw 7.6vw;
  }
}

.c-special__bottom-body {
  background-image: url(../img/special-bottom-bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 42px;
  padding-bottom: 150px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% calc(100% - 90px), 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% calc(100% - 90px), 100% 0);
}
@media (width < 750px) {
  .c-special__bottom-body {
    padding-top: 5.6vw;
    padding-bottom: 20vw;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% calc(100% - 12vw), 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% calc(100% - 12vw), 100% 0);
  }
}

.c-special__bottom-item {
  width: 92%;
  margin-inline: auto;
}
.c-special__bottom-item:not(:first-child) {
  margin-top: 60px;
}
@media (width < 750px) {
  .c-special__bottom-item:not(:first-child) {
    margin-top: 8vw;
  }
}

.c-special__primary-btn {
  margin-top: 25px;
}
@media (width < 750px) {
  .c-special__primary-btn {
    margin-top: 3.3vw;
  }
}

.c-reason {
  background-color: #4e0413;
  padding-top: 153px;
  margin-top: -90px;
  padding-bottom: 180px;
}
@media (width < 750px) {
  .c-reason {
    padding-top: 20.4vw;
    margin-top: -12vw;
    padding-bottom: 24vw;
  }
}

.c-reason__heading {
  width: 84%;
  margin-inline: auto;
}

.c-reason__item {
  margin-top: 52px;
  width: 92%;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-reason__item {
    margin-top: 6.9vw;
  }
}

.c-profile {
  background-image: url(../img/profile-bg.webp);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 33px;
}
@media (width < 750px) {
  .c-profile {
    padding-top: 6.7vw;
    padding-bottom: 4.4vw;
  }
}

.c-profile__heading {
  text-align: center;
  color: #8a1c25;
}

.c-profile__heading-en {
  font-size: clamp(12px, 3.3vw, 25px);
  font-family: "Bodoni Moda", serif;
}

.c-profile__heading-ja {
  font-size: clamp(24px, 9.3vw, 70px);
  font-family: "Source Han SerifJP", serif;
}

.c-profile__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 84%;
  margin-inline: auto;
  margin-top: 25px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 30px;
  padding-bottom: 50px;
  position: relative;
}
@media (width < 750px) {
  .c-profile__content {
    margin-top: 3.3vw;
    gap: 4vw;
    padding-bottom: 6.7vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.c-profile__content::after {
  content: "";
  width: 107%;
  position: absolute;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  background-color: #fff;
}

.c-profile__name {
  font-family: "Source Han SerifJP", serif;
}
@media (width < 750px) {
  .c-profile__name {
    text-align: center;
    width: 100%;
  }
}

.c-profile__name-row1 {
  font-size: 40px;
}
@media (width < 750px) {
  .c-profile__name-row1 {
    font-size: clamp(20px, 5.3vw, 40px);
  }
}

.c-profile__name-row2 {
  font-size: 48px;
}
@media (width < 750px) {
  .c-profile__name-row2 {
    font-size: clamp(22px, 6.4vw, 48px);
  }
}

.c-profile__name-row3 {
  font-size: 24px;
}
@media (width < 750px) {
  .c-profile__name-row3 {
    font-size: clamp(16px, 3.2vw, 24px);
  }
}

@media (width < 750px) {
  .c-profile__avatar {
    width: 100%;
  }
}

.c-profile__en {
  margin-top: 30px;
  width: calc(84% + 10px);
  margin-inline: auto;
  font-size: 25px;
  font-family: "Bodoni Moda", serif;
  color: #8a1c25;
}
@media (width < 750px) {
  .c-profile__en {
    margin-top: 4vw;
    width: calc(84% + 1.3vw);
    font-size: clamp(14px, 3.3vw, 25px);
  }
}

.c-profile__txt {
  width: 84%;
  margin-inline: auto;
  margin-top: 60px;
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6em;
  letter-spacing: 0.15em;
}
@media (width < 750px) {
  .c-profile__txt {
    margin-top: 8vw;
    font-size: clamp(14px, 4vw, 30px);
  }
}
.c-profile__txt .bold {
  color: #8a1c25;
  font-weight: 700;
}

.c-profile__card {
  width: 92%;
  margin-inline: auto;
  margin-top: 40px;
}
@media (width < 750px) {
  .c-profile__card {
    margin-top: 5.3vw;
  }
}

.c-voice {
  padding-top: 50px;
}
@media (width < 750px) {
  .c-voice {
    padding-top: 6.7vw;
  }
}

.c-voice__heading {
  text-align: center;
  color: #fff;
}

.c-voice__heading-en {
  font-size: clamp(12px, 3.3vw, 25px);
  font-family: "Bodoni Moda", serif;
}

.c-voice__heading-ja {
  font-size: clamp(24px, 9.3vw, 70px);
  font-family: "Source Han SerifJP", serif;
}

.c-voice__item {
  margin-top: 60px;
  width: 84%;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-voice__item {
    margin-top: 8vw;
  }
}

.c-flow {
  margin-top: 334px;
  padding-bottom: 130px;
}
@media (width < 750px) {
  .c-flow {
    margin-top: 44.5vw;
    padding-bottom: 17.3vw;
  }
}

.c-flow__heading {
  margin-bottom: 60px;
  width: 70.6666666667%;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-flow__heading {
    margin-bottom: 8vw;
  }
}

.c-flow__item {
  width: 63.6%;
  margin-inline: auto;
}
.c-flow__item:not(:last-child) {
  padding-bottom: 60px;
  position: relative;
}
@media (width < 750px) {
  .c-flow__item:not(:last-child) {
    padding-bottom: 8vw;
  }
}
.c-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 74px;
  height: 31px;
  background-image: url(../img/arrow-down.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (width < 750px) {
  .c-flow__item:not(:last-child)::after {
    width: 9.9vw;
    height: 4.1vw;
    min-width: 20px;
    min-height: 10px;
  }
}
.c-flow__item:not(:first-child) {
  margin-top: 35px;
}
@media (width < 750px) {
  .c-flow__item:not(:first-child) {
    margin-top: 4.7vw;
  }
}

.c-question {
  background-color: #fff;
  padding: 156px 0 120px;
}
@media (width < 750px) {
  .c-question {
    padding: 20.8vw 0 16vw;
  }
}

.c-question__item {
  width: 92%;
  margin-inline: auto;
}
.c-question__item:not(:first-child) {
  margin-top: 115px;
}
@media (width < 750px) {
  .c-question__item:not(:first-child) {
    margin-top: 15.3vw;
  }
}

.c-qanda__heading {
  background-color: #8a1c25;
  color: #fff;
  text-align: center;
  padding: 26px 0 10px;
}
@media (width < 750px) {
  .c-qanda__heading {
    padding: 3.5vw 0 1.3vw;
  }
}

.c-qanda__heading-en {
  font-size: clamp(12px, 3.3vw, 25px);
  font-family: "Bodoni Moda", serif;
}

.c-qanda__heading-ja {
  font-size: clamp(24px, 9.3vw, 70px);
  font-family: "Source Han SerifJP", serif;
}

.c-qanda__body {
  background-color: #000;
  padding-top: 70px;
  padding-bottom: 120px;
}
@media (width < 750px) {
  .c-qanda__body {
    padding-top: 9.3vw;
    padding-bottom: 16vw;
  }
}

.c-qanda__item {
  background-color: #fff;
  border-top-right-radius: 60px;
  padding: 50px 90px 100px 40px;
  width: 92%;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-qanda__item {
    border-top-right-radius: 8vw;
    padding: 6.7vw 12vw 13.3vw 5.3vw;
  }
}
.c-qanda__item:not(:first-child) {
  margin-top: 67px;
}
@media (width < 750px) {
  .c-qanda__item:not(:first-child) {
    margin-top: 8.9vw;
  }
}
.c-qanda__item:nth-child(6) .c-qanda__answer {
  font-size: clamp(12px, 2.9vw, 22px);
}

.c-qanda__question {
  font-size: clamp(14px, 3.7vw, 28px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-left: 80px;
  position: relative;
  color: #413c41;
  margin-bottom: 60px;
  cursor: pointer;
}
@media (width < 750px) {
  .c-qanda__question {
    padding-left: 10.7vw;
    margin-bottom: 8vw;
  }
}
.c-qanda__question::before {
  content: "Q";
  font-size: clamp(16px, 6vw, 45px);
  color: #8a1c25;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 0.7em;
}
.c-qanda__question::after {
  content: "";
  width: 98%;
  height: 2px;
  position: absolute;
  bottom: -27px;
  right: 0;
  background-color: #8a1c25;
}
@media (width < 750px) {
  .c-qanda__question::after {
    bottom: -3.6vw;
  }
}

.c-qanda__answer {
  font-size: clamp(12px, 3vw, 23px);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #413c41;
  padding-left: 80px;
  position: relative;
  line-height: 2em;
}
@media (width < 750px) {
  .c-qanda__answer {
    padding-left: 10.7vw;
  }
}
.c-qanda__answer::before {
  content: "A";
  font-size: clamp(16px, 6vw, 45px);
  color: #8a1c25;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  top: 0;
  left: 0;
}

.c-catch__head {
  background-image: url(../img/catch-bg.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  padding-bottom: 117px;
  background-color: #fff;
}
@media (width < 750px) {
  .c-catch__head {
    padding-bottom: 15.6vw;
    background-size: cover;
  }
}

.c-catch__heading {
  background-image: url(../img/gold-bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 13px 120px 13px 90px;
}
@media (width < 750px) {
  .c-catch__heading {
    padding: 1.7vw 16vw 1.7vw 12vw;
  }
}

.c-catch__ttl {
  padding: 105px 30px 0;
  width: calc(56% + 60px);
}
@media (width < 750px) {
  .c-catch__ttl {
    padding: 14vw 4vw 0;
  }
}

.c-catch__txt {
  margin-top: 270px;
  width: 73.3333333333%;
  margin-inline: auto;
}
@media (width < 750px) {
  .c-catch__txt {
    margin-top: 36vw;
  }
}

.c-catch__bottom {
  background-color: #fff;
  padding-top: 16px;
  padding-bottom: 50px;
}
@media (width < 750px) {
  .c-catch__bottom {
    padding-top: 2.1vw;
    padding-bottom: 6.7vw;
  }
}

.c-catch__secondary-btn {
  margin-top: -20px;
}
@media (width < 750px) {
  .c-catch__secondary-btn {
    margin-top: -2.7vw;
  }
}

.c-access {
  background-color: #000;
  padding-bottom: 262px;
}
@media (width < 400px) {
  .c-access {
    padding-bottom: 66vw;
  }
}

.c-access__heading {
  color: #fff;
  text-align: center;
  margin-bottom: 52px;
}
@media (width < 750px) {
  .c-access__heading {
    margin-bottom: 6.9vw;
  }
}

.c-access__heading-en {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(12px, 3.3vw, 25px);
}

.c-access__heading-ja {
  font-size: clamp(20px, 6.4vw, 48px);
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 16px;
}
@media (width < 750px) {
  .c-access__heading-ja {
    margin-top: 2.1vw;
  }
}

.c-access__name {
  background-image: url(../img/gold-bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-size: clamp(14px, 4.8vw, 36px);
  font-family: "Source Han SerifJP", serif;
  padding: 0 110px;
}
@media (width < 750px) {
  .c-access__name {
    padding: 0 14.7vw;
  }
}

.c-access__info {
  color: #fff;
  padding: 0 110px;
  font-size: clamp(12px, 4vw, 30px);
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 50px;
}
@media (width < 750px) {
  .c-access__info {
    padding: 0 14.7vw;
    margin-top: 6.7vw;
  }
}
.c-access__info img {
  width: 25px;
  height: 30px;
  margin-top: 10px;
}
@media (width < 750px) {
  .c-access__info img {
    width: 3.3vw;
    height: 4vw;
    margin-top: 1.3vw;
  }
}
.c-access__info p:nth-child(4) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-access__map {
  margin-top: 64px;
  margin-inline: auto;
  width: 71.3333333333%;
}

.c-access__iframe-wrap {
  padding-top: 56.0747663551%;
  width: 100%;
  position: relative;
}
.c-access__iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-contact {
  background-color: #000;
  padding-top: 55px;
  padding-bottom: 50px;
}

.c-contact__heading {
  color: #fff;
  text-align: center;
}

.c-contact__heading-en {
  font-size: clamp(12px, 3.3vw, 25px);
  font-family: "Bodoni Moda", serif;
}

.c-contact__heading-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 6.4vw, 48px);
  margin-top: 16px;
}

.c-contact__form-dl {
  width: 69.3333333333%;
  margin-inline: auto;
  margin-top: 36px;
}
@media (width < 750px) {
  .c-contact__form-dl {
    margin-top: 4.8vw;
  }
}
@media (width < 400px) {
  .c-contact__form-dl {
    width: 85%;
  }
}

.c-contact__form-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 3.6vw, 27px);
  color: #fff;
  padding-right: 70px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 750px) {
  .c-contact__form-label {
    padding-right: 9.3vw;
  }
}
@media (width < 400px) {
  .c-contact__form-label {
    padding-right: 40px;
  }
}
.c-contact__form-label::after {
  position: absolute;
  content: "必須";
  color: #fff;
  background-color: #c40229;
  border-radius: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  padding: 0 5px 3px;
  font-size: clamp(12px, 2.9vw, 22px);
}
.c-contact__form-label--none::after {
  display: none;
}

.c-contact__form-input [type="text"],
.c-contact__form-input [type="email"],
.c-contact__form-input textarea {
  width: 100%;
  padding: 10px;
  border-radius: 0;
  border: none;
  margin-bottom: 20px;
  margin-top: 5px;
  font-size: clamp(16px, 3.6vw, 27px);
}
@media (width < 750px) {
  .c-contact__form-input [type="text"],
  .c-contact__form-input [type="email"],
  .c-contact__form-input textarea {
    margin-bottom: 2.7vw;
  }
}
.c-contact__form-input textarea {
  resize: vertical;
}

.c-contact__form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (width < 750px) {
  .c-contact__form-row {
    display: block;
  }
}
.c-contact__form-row .c-contact__form-unit {
  width: calc(50% - 15px);
}
@media (width < 750px) {
  .c-contact__form-row .c-contact__form-unit {
    width: 100%;
  }
}

.c-contact__form-radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 25px;
}
@media (width < 750px) {
  .c-contact__form-radio-wrap {
    display: block;
    margin-top: 3.3vw;
  }
}
.c-contact__form-radio-wrap .c-contact__form-unit {
  width: calc(50% - 15px);
}
@media (width < 750px) {
  .c-contact__form-radio-wrap .c-contact__form-unit:nth-child(2) {
    margin-top: 2.1vw;
  }
}
@media (width < 750px) {
  .c-contact__form-radio-wrap .c-contact__form-unit {
    width: 100%;
  }
}
@media (width < 750px) {
  .c-contact__form-radio-wrap .c-contact__form-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4vw;
    width: 100%;
  }
}

.c-contact__form-radio-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 3.6vw, 27px);
  color: #fff;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 70px;
}
@media (width < 750px) {
  .c-contact__form-radio-ttl {
    padding-right: 9.3vw;
  }
}
@media (width < 400px) {
  .c-contact__form-radio-ttl {
    padding-right: 40px;
  }
}
.c-contact__form-radio-ttl::after {
  position: absolute;
  content: "必須";
  color: #fff;
  background-color: #c40229;
  border-radius: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  padding: 0 5px 3px;
  font-size: clamp(12px, 2.9vw, 22px);
}

.c-contact__form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-contact__form-radio [type="radio"] {
  display: none;
}
.c-contact__form-radio [type="radio"]:checked + .c-contact__form-part::after {
  opacity: 1;
}
@media (width < 750px) {
  .c-contact__form-radio {
    width: calc(50% - 2vw);
  }
}

.c-contact__form-part {
  color: #fff;
  display: block;
  padding-left: 45px;
  font-size: clamp(16px, 3.6vw, 27px);
  position: relative;
  margin-top: 16px;
}
@media (width < 750px) {
  .c-contact__form-part {
    padding-left: 6vw;
    margin-top: 0;
  }
}
.c-contact__form-part::before {
  content: "";
  width: 33px;
  height: 33px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 5px;
}
@media (width < 750px) {
  .c-contact__form-part::before {
    width: 4.4vw;
    height: 4.4vw;
  }
}
.c-contact__form-part::after {
  content: "";
  width: 40px;
  height: 18px;
  border-left: 5px solid #c40229;
  border-bottom: 5px solid #c40229;
  position: absolute;
  top: 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 0;
  opacity: 0;
}
@media (width < 750px) {
  .c-contact__form-part::after {
    width: 5.3vw;
    height: 2.4vw;
    border-left: 3px solid #c40229;
    border-bottom: 3px solid #c40229;
  }
}

.c-contact__form-submit {
  text-align: center;
  margin-top: 60px;
}
@media (width < 750px) {
  .c-contact__form-submit {
    margin-top: 8vw;
  }
}
.c-contact__form-submit [type="submit"] {
  background-image: url(../img/submit.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 47.3333333333%;
  height: 60px;
  border: none;
  border-radius: 5px;
  min-width: 200px;
  min-height: 40px;
}
@media (width < 750px) {
  .c-contact__form-submit [type="submit"] {
    border-radius: 0.7vw;
    height: 8vw;
  }
}

.c-contact__form-btn {
  cursor: pointer;
}

.c-footer {
  background-color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (width < 400px) {
  .c-footer {
    display: block;
  }
}

.c-footer__primary-btn::after {
  border-radius: 0;
}
@media (width < 750px) {
  .c-footer__primary-btn::after {
    height: 57%;
    top: 39%;
  }
}
@media (width < 400px) {
  .c-footer__primary-btn::after {
    height: 75%;
    top: 50%;
  }
}
@media (width < 750px) {
  .c-footer__primary-btn {
    margin-bottom: -4vw;
  }
}

.c-footer__secondary-btn::after {
  border-radius: 0;
}
@media (width >= 400px) {
  .c-footer__secondary-btn::after {
    height: 70%;
  }
}
@media (width < 400px) {
  .c-footer__secondary-btn::after {
    height: 70%;
    top: 50%;
  }
}

.fz-26 {
  font-size: 26px;
}

/* ========================================================
wpオリジナルスタイル
=========================================================*/

.wpcf7-list-item-label {
  color: #fff;
  display: block;
  padding-left: 45px;
  font-size: clamp(16px, 3.6vw, 27px);
  position: relative;
  margin-top: 16px;
}
@media (width < 750px) {
  .wpcf7-list-item-label {
    padding-left: 6vw;
    margin-top: 0;
  }
}

.wpcf7-list-item-label::before {
  content: "";
  width: 33px;
  height: 33px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 5px;
}
@media (width < 750px) {
  .wpcf7-list-item-label::before {
    width: 4.4vw;
    height: 4.4vw;
  }
}

.wpcf7-list-item-label::after {
  content: "";
  width: 40px;
  height: 18px;
  border-left: 5px solid #c40229;
  border-bottom: 5px solid #c40229;
  position: absolute;
  top: 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 0;
  opacity: 0;
}
@media (width < 750px) {
  .wpcf7-list-item-label::after {
    width: 5.3vw;
    height: 2.4vw;
    border-left: 3px solid #c40229;
    border-bottom: 3px solid #c40229;
  }
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-list-item {
  margin-left: 0;
}

@media (width < 750px) {
  .wpcf7-form-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4vw;
    width: 100%;
  }
}

.c-contact__form-input {
  margin-top: 5px;
}

.wpcf7-not-valid-tip {
  font-size: clamp(11px, 2.1vw, 16px);
}

.wpcf7-response-output {
  font-size: clamp(11px, 2.1vw, 16px);
  color: #c40229;
}

.wpcf7 form .wpcf7-response-output {
  border: 0;
}
