@charset "UTF-8";
/* -------------------------------------------------------------
//  メディアクエリ
// ------------------------------------------------------------*/
/* -------------------------------------------------------------
//  css変数
// ------------------------------------------------------------*/
:root {
  --list-wrap-height: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hamburger-bar01 {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes hamburger-bar02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hamburger-bar03 {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes active-hamburger-bar01 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(45deg);
    top: 15px;
  }
}
@keyframes active-hamburger-bar02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes active-hamburger-bar03 {
  0% {
    transform: rotate(0);
  }
  100% {
    top: 15px;
    transform: rotate(-45deg);
  }
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
button {
  margin: 0;
  padding: 0;
  font-weight: normal;
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

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

em,
i,
strong,
th,
address {
  font-style: normal;
  /*text-align: left;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

img,
object,
embed {
  border: 0;
  vertical-align: top;
}

hr {
  border: 0;
  height: 1px;
  background: #cccccc;
  margin: 1em 0;
  clear: both;
  width: 100%;
}

li {
  list-style-type: none;
}

area {
  outline: none !important;
  border: none !important;
}

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

input[type=submit],
input[type=button],
input[type=text],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline: 0;
}

a {
  text-decoration: none;
}

html {
  color: #414143;
  line-height: 1.8;
  color: #414143;
  font-size: 16px;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.l-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  background-color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 5;
  padding: calc(30 / 1920 * 100vw);
}
@media screen and (max-width: 1920px) {
  .l-header {
    width: min(1920px, 100%);
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 15px;
  }
}
.l-header__logo {
  width: 7.8125vw;
}
@media screen and (max-width: 1920px) {
  .l-header__logo {
    width: min(150px, 100%);
  }
}
.l-header__logo img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.l-header__external span {
  position: relative;
}
.l-header__external span::before {
  content: "";
  position: absolute;
  background-image: url(/assets/img/common/c-external-link.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  right: -1.0416666667vw;
  top: 50%;
  transform: translateY(-50%);
  width: 0.78125vw;
  height: 0.78125vw;
}
@media screen and (max-width: 1920px) {
  .l-header__external span::before {
    right: -20px;
    width: 15px;
    height: 15px;
  }
}
.l-header__navList {
  display: flex;
  gap: 1.6666666667vw;
  font-family: "Zen Kaku Gothic New";
}
.l-header__navList a {
  position: relative;
  font-weight: 700;
  color: #414143;
  font-size: 0.8333333333vw;
}
.l-header__navList a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #414143;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.l-header__navList a:hover::before {
  transform: scaleX(1);
}
@media screen and (max-width: 1920px) {
  .l-header__navList a {
    font-size: 1rem;
  }
}
.l-header__navList a.-active {
  color: #d1b882;
}
.l-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.34375vw;
  width: 52.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .l-header__nav {
    gap: 45px;
    width: min(1000px, 100%);
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__sp {
  position: fixed;
  left: 0;
  top: 63px;
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  padding: 10px 30px 30px;
  background-color: #fff;
  transition: 0.5s ease;
}
.l-header__sp.-active {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease;
}
.l-header__spNavList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.l-header__spNavList a {
  color: #414143;
  transition: 0.3s ease;
  font-size: 1.25rem;
}
.l-header__spNavList a:hover {
  color: #d1b882;
}
.l-header__contact {
  display: block;
  width: 10.4166666667vw;
  text-align: center;
  background-color: #f6bd46;
  color: #fff;
  border-radius: 1.4583333333vw;
  border: 1px solid #663300;
  transition: 0.3s ease;
  padding-top: 0.5208333333vw;
  padding-bottom: 0.5208333333vw;
  padding-right: 0.78125vw;
  padding-left: 0.78125vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .l-header__contact {
    width: min(200px, 100%);
    border-radius: 28px;
    padding-top: clamp(10px, 0.5208333333vw, 10px);
    padding-bottom: clamp(10px, 0.5208333333vw, 10px);
    padding-left: clamp(15px, 0.78125vw, 15px);
    padding-right: clamp(15px, 0.78125vw, 15px);
    font-size: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__contact {
    margin-inline: auto;
    margin-top: clamp(20px, 2.0833333333vw, 40px);
  }
}
.l-header__contact:hover {
  background-color: #e4ac37;
}

.l-hamburger {
  position: fixed;
  right: 30px;
  top: 30px;
  display: none;
  width: 50px;
  height: 35px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  z-index: 999;
}
@media screen and (max-width: 1023px) {
  .l-hamburger {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    top: 15px;
  }
}
.l-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #414143;
  border-radius: 4px;
}
.l-hamburger span:nth-of-type(1) {
  top: 0;
  animation: hamburger-bar01 0.3s forwards;
}
.l-hamburger span:nth-of-type(2) {
  top: 15px;
  animation: hamburger-bar02 0.3s forwards;
}
.l-hamburger span:nth-of-type(3) {
  top: 30px;
  animation: hamburger-bar03 0.3s forwards;
}
.l-hamburger.-active span:nth-of-type(1) {
  animation: active-hamburger-bar01 0.3s forwards;
}
.l-hamburger.-active span:nth-of-type(2) {
  animation: active-hamburger-bar02 0.3s forwards;
}
.l-hamburger.-active span:nth-of-type(3) {
  animation: active-hamburger-bar03 0.3s forwards;
}
.l-hamburger.-active + .l-spNav {
  transform: translateX(0);
}

.l-footer {
  padding: 0 30px;
}
@media screen and (max-width: 479px) {
  .l-footer {
    padding: 0 18px;
  }
}
.l-footer__inner {
  width: 62.5vw;
  margin-inline: auto;
  padding-top: 4.6875vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .l-footer__inner {
    width: min(1200px, 100%);
  }
}
.l-footer__logo {
  width: 8.4895833333vw;
}
@media screen and (max-width: 1920px) {
  .l-footer__logo {
    width: min(163px, 100%);
  }
}
.l-footer__logo img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.l-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    flex-direction: column;
    gap: 1.5625vw;
  }
}
.l-footer__navList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6770833333vw;
}
@media screen and (max-width: 1920px) {
  .l-footer__navList {
    gap: 5px 13px;
  }
}
.l-footer__navList a {
  position: relative;
  font-weight: 500;
  color: #414143;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .l-footer__navList a {
    font-size: 1rem;
  }
}
.l-footer__navList a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #414143;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.l-footer__navList a:hover::before {
  transform: scaleX(1);
}
.l-footer__name {
  font-weight: 700;
  font-size: 1.0416666667vw;
  margin-top: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .l-footer__name {
    font-size: 1.25rem;
    margin-top: clamp(10px, 1.0416666667vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__name {
    font-size: 0.9523809524rem;
  }
}
.l-footer__access {
  margin-top: 1.40625vw;
}
@media screen and (max-width: 1920px) {
  .l-footer__access {
    margin-top: clamp(13px, 1.40625vw, 27px);
  }
}
.l-footer__accessText {
  font-weight: 500;
  font-size: 0.7291666667vw;
}
@media screen and (max-width: 1920px) {
  .l-footer__accessText {
    font-size: 0.875rem;
  }
}
.l-footer__accessText a {
  transition: 0.3s ease;
}
.l-footer__accessText a:hover {
  text-decoration: underline;
}
.l-footer__copyright {
  color: #b8c4c2;
  text-align: right;
  font-size: 0.7291666667vw;
}
@media screen and (max-width: 1920px) {
  .l-footer__copyright {
    font-size: 0.875rem;
  }
}

.c-headLine01 {
  position: relative;
  top: 50%;
  translate: 0 -50%;
  left: 10.4166666667vw;
  display: inline-block;
  text-align: center;
  width: 29.1666666667vw;
}
@media screen and (max-width: 1920px) {
  .c-headLine01 {
    width: min(560px, 100%);
  }
}
@media screen and (max-width: 1023px) {
  .c-headLine01 {
    top: 30%;
    left: 50%;
    translate: -50% -50%;
    padding: 20px;
  }
}
.c-headLine01__sub {
  position: relative;
  color: #ea7f24;
  font-weight: 900;
  font-size: 2.6041666667vw;
}
@media screen and (max-width: 1920px) {
  .c-headLine01__sub {
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-headLine01__sub {
    width: fit-content;
    margin-inline: auto;
    font-size: 2.380952381rem;
  }
}
@media screen and (max-width: 479px) {
  .c-headLine01__sub {
    font-size: 2.0833333333rem;
  }
}
.c-headLine01__sub::before, .c-headLine01__sub::after {
  content: "";
  position: absolute;
  width: 1.875vw;
  height: 0.1041666667vw;
  border-radius: 0.2604166667vw;
  background-color: #ea7f24;
}
@media screen and (max-width: 1920px) {
  .c-headLine01__sub::before, .c-headLine01__sub::after {
    width: 36px;
    height: 2px;
  }
}
.c-headLine01__sub::before {
  left: 0;
  top: 50%;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .c-headLine01__sub::before {
    left: -38px;
  }
}
.c-headLine01__sub::after {
  right: 0;
  top: 50%;
  rotate: -45deg;
}
@media screen and (max-width: 767px) {
  .c-headLine01__sub::after {
    right: -25px;
  }
}
.c-headLine01 img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.c-headLine02 {
  font-weight: 900;
  color: #414143;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.9791666667vw;
}
@media screen and (max-width: 1920px) {
  .c-headLine02 {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 1199px) {
  .c-headLine02 {
    font-size: 1.9791666667rem;
  }
}
@media screen and (max-width: 767px) {
  .c-headLine02 {
    font-size: 1.8095238095rem;
  }
}
@media screen and (max-width: 479px) {
  .c-headLine02 {
    font-size: 1.5833333333rem;
  }
}
.c-headLine02--white {
  color: #fff;
}
.c-headLine02__pt--15 {
  padding-top: 0.78125vw;
}
@media screen and (max-width: 1920px) {
  .c-headLine02__pt--15 {
    padding-top: clamp(8px, 0.78125vw, 15px);
  }
}

.c-headLine02-en {
  position: relative;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ea7f24;
  padding-bottom: 0.5208333333vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-headLine02-en {
    padding-bottom: 10px;
    font-size: 1rem;
  }
}
.c-headLine02-en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  background-image: url(/assets/img/common/en-title-dec.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 1.0416666667vw;
  height: 0.3645833333vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-headLine02-en::after {
    width: 20px;
    height: 7px;
  }
}
.c-headLine02-en--yellow {
  color: #f7db43;
}
.c-headLine02-en--yellow::after {
  background-image: url(/assets/img/common/en-title-yellow-dec.svg);
}
.c-headLine02-en--green {
  color: #005114;
}
.c-headLine02-en--green::after {
  content: "";
  background-color: #005114;
  display: inline-block;
  -webkit-mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  background-image: none;
}
.c-headLine02-en--green-secondary {
  color: #deff73;
}
.c-headLine02-en--green-secondary::after {
  content: "";
  background-color: #deff73;
  display: inline-block;
  -webkit-mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  background-image: none;
}
.c-headLine02-en--purple {
  color: #424081;
}
.c-headLine02-en--purple::after {
  content: "";
  background-color: #424081;
  display: inline-block;
  -webkit-mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  background-image: none;
}
.c-headLine02-en--purple-secondary {
  color: #a2e2ff;
}
.c-headLine02-en--purple-secondary::after {
  content: "";
  background-color: #a2e2ff;
  display: inline-block;
  -webkit-mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  background-image: none;
}
.c-headLine02-en--red {
  color: #6e223c;
}
.c-headLine02-en--red::after {
  content: "";
  background-color: #6e223c;
  display: inline-block;
  -webkit-mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  background-image: none;
}
.c-headLine02-en--red-secondary {
  color: #ffe3c7;
}
.c-headLine02-en--red-secondary::after {
  content: "";
  background-color: #ffe3c7;
  display: inline-block;
  -webkit-mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  background-image: none;
}
.c-headLine02-en--information {
  color: #f7be43;
}
.c-headLine02-en--information::after {
  content: "";
  background-color: #f7be43;
  display: inline-block;
  -webkit-mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  mask: url(/assets/img/common/en-title-yellow-dec.svg) no-repeat center/contain;
  background-image: none;
}

.c-headLine03 {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.c-headLine04 {
  display: inline-block;
  position: absolute;
  translate: 0 -50%;
  top: 56%;
  left: 12.5vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .c-headLine04 {
    left: 6.25vw;
  }
}
@media screen and (max-width: 1499px) {
  .c-headLine04 {
    left: 6.25vw;
  }
}
@media screen and (max-width: 1199px) {
  .c-headLine04 {
    left: 0;
    width: 100%;
    padding: 24px;
  }
}
.c-headLine04:has(.--purple) {
  width: 100%;
}
.c-headLine04__speech-bubble {
  position: relative;
  margin-bottom: 20px;
  padding: 0.8333333333vw 1.25vw;
  padding: 0.625vw 2.6041666667vw;
  border-radius: 1.875vw;
  background-color: #04a173;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.2rem;
  width: fit-content;
  text-align: center;
  font-size: 1.1458333333vw;
}
@media screen and (max-width: 1920px) {
  .c-headLine04__speech-bubble {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-headLine04__speech-bubble {
    border-radius: 36px;
  }
}
.c-headLine04__speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 12px 14px 0 0;
  border-color: #04a173 transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
  transform: skew(-46deg);
  transform-origin: top;
}
.c-headLine04__speech-bubble.--purple {
  background-color: #7f6cdc;
}
.c-headLine04__speech-bubble.--purple::after {
  border-color: #7f6cdc transparent transparent;
}
.c-headLine04__speech-bubble.--red {
  background-color: #f67d61;
}
.c-headLine04__speech-bubble.--red::after {
  border-color: #f67d61 transparent transparent;
}
.c-headLine04__text {
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.4rem;
  font-weight: 900;
  width: fit-content;
  border-radius: 0.5208333333vw;
  padding: calc(10 / 1920 * 100vw);
  font-size: 2.7083333333vw;
}
@media screen and (max-width: 1920px) {
  .c-headLine04__text {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 1199px) {
  .c-headLine04__text {
    font-size: 2.7083333333rem;
  }
}
@media screen and (max-width: 767px) {
  .c-headLine04__text {
    font-size: 1.8095238095rem;
  }
}
@media screen and (max-width: 479px) {
  .c-headLine04__text {
    font-size: 1.5833333333rem;
  }
}
.c-headLine04__text > .--green {
  color: #27c093;
  text-shadow: 2px 0 rgba(0, 95, 67, 0.1), -2px 0 rgba(0, 95, 67, 0.1), 0 2px rgba(0, 95, 67, 0.1), 0 -2px rgba(0, 95, 67, 0.1), 1px 1px rgba(0, 95, 67, 0.1), -1px -1px rgba(0, 95, 67, 0.1), 1px -1px rgba(0, 95, 67, 0.1), -1px 1px rgba(0, 95, 67, 0.1);
}
.c-headLine04__text > .--purple {
  color: #7f6cdc;
}
.c-headLine04__text:has(.--purple) {
  color: #414143;
}
.c-headLine04__text > .--red {
  color: #f67d61;
}
.c-headLine04__text:has(.--red) {
  color: #414143;
}

.c-section--gray {
  background-color: #eee8dd;
}
.c-section--lightgray {
  background-color: #faf8f4;
}
.c-section--orange {
  background-color: #ea7f24;
}
.c-section--red {
  background-color: #f67d61;
}
.c-section--lightorange {
  background-color: #f5efdb;
}
.c-section--green {
  background-color: #e4ebde;
}
.c-section--green-secondary {
  background-color: #1aae83;
}
.c-section--purple {
  background-color: #ece1ea;
}
.c-section--purple-dark {
  background-color: #7f6cdc;
}
.c-section--information {
  background-color: #faf8f4;
}

.c-content {
  padding: 0 30px;
  position: relative;
}
.c-content__inner {
  width: 75vw;
  margin: auto;
}
@media screen and (max-width: 1920px) {
  .c-content__inner {
    width: min(1440px, 100%);
  }
}
@media screen and (max-width: 479px) {
  .c-content {
    padding: 0 18px;
  }
}
.c-content--contact {
  background-image: url(/assets/img/contact/p-contact-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 5vw;
}
@media screen and (max-width: 1920px) {
  .c-content--contact {
    background-position: center 96px;
  }
}
.c-content--price {
  background-image: url(/assets/img/home/p-price-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media screen and (max-width: 1920px) {
  .c-content--price {
    background-position: center top;
  }
}
.c-content--voice {
  background-image: url(/assets/img/home/p-voice-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media screen and (max-width: 1920px) {
  .c-content--voice {
    background-position: center top;
  }
}
.c-content--movie {
  background-image: url(/assets/img/home/p-movie-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media screen and (max-width: 1920px) {
  .c-content--movie {
    background-position: center top;
  }
}
.c-content--course {
  background-image: url(/assets/img/home/p-course-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media screen and (max-width: 1920px) {
  .c-content--course {
    background-position: center top;
  }
}
.c-content--faq {
  background-image: url(/assets/img/home/p-faq-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media screen and (max-width: 1920px) {
  .c-content--faq {
    background-position: center top;
  }
}
.c-content--study {
  background-image: url(/assets/img/course01/p-study-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center -1%;
}
.c-content--howto {
  background-image: url(/assets/img/course01/p-howto-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center -1%;
}
.c-content--howto02 {
  background-image: url(/assets/img/course02/p-howto-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center -1%;
}
.c-content--course02-study {
  background-image: url(/assets/img/course02/p-course02-study-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center -1%;
}
.c-content--course03-study {
  background-image: url(/assets/img/course03/p-course03-study-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 0;
}
.c-content--roadmap {
  background-image: url(/assets/img/course03/p-roadmap-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center -3%;
}
@media screen and (max-width: 1920px) {
  .c-content--roadmap {
    background-position: center -0.9375vw;
  }
}
.c-content--course01Figure {
  position: relative;
}
.c-content--course01Figure::before {
  content: "";
  position: absolute;
  right: 6.40625vw;
  bottom: -8.3333333333vw;
  background-image: url(/assets/img/course01/img02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 22.9166666667vw;
  height: 16.6666666667vw;
  z-index: 1;
}
@media screen and (max-width: 1920px) {
  .c-content--course01Figure::before {
    right: calc(6.40625vw - 80px);
  }
}
@media screen and (max-width: 1199px) {
  .c-content--course01Figure::before {
    content: none;
  }
}
.c-content--course02Figure {
  position: relative;
}
.c-content--course02Figure::before {
  content: "";
  position: absolute;
  right: 6.40625vw;
  bottom: -4.1666666667vw;
  background-image: url(/assets/img/course02/p-course02-img01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(11.25vw - 25px);
  height: calc(15.625vw - 25px);
  z-index: 1;
}
@media screen and (max-width: 1920px) {
  .c-content--course02Figure::before {
    right: calc(6.40625vw - 80px);
  }
}
@media screen and (max-width: 1199px) {
  .c-content--course02Figure::before {
    content: none;
  }
}
.c-content--course03Figure {
  position: relative;
}
.c-content--course03Figure::before {
  content: "";
  position: absolute;
  right: 6.40625vw;
  bottom: -4.1666666667vw;
  background-image: url(/assets/img/course03/img02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 21.5104166667vw;
  height: 15.625vw;
  z-index: 1;
}
@media screen and (max-width: 1920px) {
  .c-content--course03Figure::before {
    right: calc(6.40625vw - 80px);
  }
}
@media screen and (max-width: 1400px) {
  .c-content--course03Figure::before {
    bottom: -6.25vw;
  }
}
@media screen and (max-width: 1300px) {
  .c-content--course03Figure::before {
    bottom: -20%;
  }
}
@media screen and (max-width: 1199px) {
  .c-content--course03Figure::before {
    content: none;
  }
}

.c-btn-course {
  position: relative;
  text-align: center;
  width: 12.5vw;
  border-radius: 1.4583333333vw;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 1920px) {
  .c-btn-course {
    width: min(240px, 100%);
  }
}
@media screen and (max-width: 767px) {
  .c-btn-course {
    width: min(380px, 100%);
  }
}
.c-btn-course--decoration01::after {
  content: "";
  position: absolute;
  top: -0.78125vw;
  left: 50%;
  translate: -50% 0;
  background-image: url(/assets/img/common/c-btn-dec01.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 7.2916666667vw;
  height: 1.09375vw;
  transition: 0.3s;
}
@media screen and (max-width: 1920px) {
  .c-btn-course--decoration01::after {
    width: 139px;
    height: 21px;
    top: -15px;
  }
}
.c-btn-course--decoration02::after {
  content: "";
  position: absolute;
  top: -0.78125vw;
  left: 50%;
  translate: -50% 0;
  background-image: url(/assets/img/common/c-btn-dec02.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 7.2916666667vw;
  height: 0.9895833333vw;
  transition: 0.3s;
}
@media screen and (max-width: 1920px) {
  .c-btn-course--decoration02::after {
    width: 140px;
    height: 19px;
    top: -15px;
  }
}
.c-btn-course--decoration03::after {
  content: "";
  position: absolute;
  top: -0.78125vw;
  left: 50%;
  translate: -50% 0;
  background-image: url(/assets/img/common/c-btn-dec03.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 7.2916666667vw;
  height: 1.09375vw;
  transition: 0.3s;
}
@media screen and (max-width: 1920px) {
  .c-btn-course--decoration03::after {
    width: 140px;
    height: 21px;
    top: -15px;
  }
}
.c-btn-course--decoration04::after {
  content: "";
  position: absolute;
  top: -1.5625vw;
  left: 50%;
  translate: -50% 0;
  background-image: url(/assets/img/common/c-btn-dec04.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 7.2916666667vw;
  height: 1.4583333333vw;
  transition: 0.3s;
}
@media screen and (max-width: 1920px) {
  .c-btn-course--decoration04::after {
    width: 140px;
    height: 28px;
    top: -30px;
  }
}
.c-btn-course--decoration05::after {
  content: "";
  position: absolute;
  top: -1.5625vw;
  left: 50%;
  translate: -50% 0;
  background-image: url(/assets/img/common/c-btn-dec05.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 7.34375vw;
  height: 1.4583333333vw;
  transition: 0.3s;
}
@media screen and (max-width: 1920px) {
  .c-btn-course--decoration05::after {
    width: 141px;
    height: 28px;
    top: -30px;
  }
}
.c-btn-course--decoration06::after {
  content: "";
  position: absolute;
  top: -1.5625vw;
  left: 50%;
  translate: -50% 0;
  background-image: url(/assets/img/common/c-btn-dec06.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 12.1354166667vw;
  height: 1.4583333333vw;
  transition: 0.3s;
}
@media screen and (max-width: 1920px) {
  .c-btn-course--decoration06::after {
    width: 233px;
    height: 28px;
    top: -30px;
  }
}
.c-btn-course p {
  position: relative;
  bottom: 0;
  width: 12.5vw;
  border-radius: 1.4583333333vw;
  transition: 0.3s;
  padding-top: 0.78125vw;
  padding-bottom: 0.78125vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course p {
    width: min(240px, 100%);
    padding: 15px 0;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-course p {
    width: min(380px, 100%);
  }
}
.c-btn-course p span {
  font-weight: 500;
}
.c-btn-course p::before {
  content: "";
  position: absolute;
  right: 0.625vw;
  top: 50%;
  translate: 0 -50%;
  mask-image: url(/assets/img/common/c-common-arrow.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  background-color: #fff;
  width: 0.625vw;
  height: 0.5208333333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course p::before {
    right: 12px;
    width: 12px;
    height: 10px;
  }
}
.c-btn-course:hover::after {
  top: -0.5208333333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course:hover::after {
    top: -10px;
  }
}
.c-btn-course:hover.c-btn-course--decoration04::after {
  top: -1.3020833333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course:hover.c-btn-course--decoration04::after {
    top: -25px;
  }
}
.c-btn-course:hover.c-btn-course--decoration05::after {
  top: -1.3020833333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course:hover.c-btn-course--decoration05::after {
    top: -25px;
  }
}
.c-btn-course:hover.c-btn-course--decoration06::after {
  top: -1.3020833333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course:hover.c-btn-course--decoration06::after {
    top: -25px;
  }
}
.c-btn-course:hover p {
  bottom: -5px;
}
.c-btn-course::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2604166667vw;
  width: 12.5vw;
  height: 100%;
  border-radius: 1.4583333333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course::before {
    width: min(240px, 100%);
    bottom: -5px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-course::before {
    width: min(380px, 100%);
  }
}
.c-btn-course--green p {
  background-color: #1aae83;
  border: 1px solid #005114;
}
.c-btn-course--green::before {
  background-color: #139471;
  border: 1px solid #005114;
}
.c-btn-course--red p {
  background-color: #f67d61;
  border: 1px solid #86503b;
}
.c-btn-course--red::before {
  background-color: #d26a53;
  border: 1px solid #86503b;
}
.c-btn-course--blue p {
  background-color: #7f6cdc;
  border: 1px solid #424081;
}
.c-btn-course--blue::before {
  background-color: #6d5dbb;
  border: 1px solid #424081;
}
.c-btn-course--br10 {
  border-radius: 0.5208333333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course--br10 {
    border-radius: 10px;
  }
}
.c-btn-course--br10 p {
  border-radius: 0.5208333333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course--br10 p {
    border-radius: 10px;
  }
}
.c-btn-course--br10::before {
  border-radius: 0.5208333333vw;
}
@media screen and (max-width: 1920px) {
  .c-btn-course--br10::before {
    border-radius: 10px;
  }
}

.c-common-btn {
  position: relative;
  display: block;
  text-align: center;
  width: 24.5833333333vw;
  border-radius: 1.4583333333vw;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.c-common-btn:hover p {
  bottom: -5px;
}
@media screen and (max-width: 1920px) {
  .c-common-btn {
    width: min(472px, 100%);
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .c-common-btn {
    width: min(370px, 100%);
  }
}
.c-common-btn p {
  position: relative;
  bottom: 0;
  width: 24.5833333333vw;
  border-radius: 1.4583333333vw;
  background-color: #f6bd46;
  border: 1px solid #663300;
  transition: 0.3s;
  padding-top: 0.78125vw;
  padding-bottom: 0.78125vw;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .c-common-btn p {
    width: min(472px, 100%);
    padding: 15px 0;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-common-btn p {
    width: min(370px, 100%);
    font-size: 1rem;
  }
}
.c-common-btn p::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  translate: 0 -50%;
  mask-image: url(/assets/img/common/c-common-arrow.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  background-color: #fff;
  width: 0.625vw;
  height: 0.5208333333vw;
  transition: 0.3s;
}
@media screen and (max-width: 1920px) {
  .c-common-btn p::before {
    width: 12px;
    height: 10px;
  }
}
.c-common-btn p span {
  font-weight: 700;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .c-common-btn p span {
    font-size: 1.25rem;
  }
}
.c-common-btn::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #d1a13b;
  border: 1px solid #663300;
  bottom: -0.2604166667vw;
  width: 24.5833333333vw;
  height: 100%;
  border-radius: 1.4583333333vw;
}
@media screen and (max-width: 1920px) {
  .c-common-btn::before {
    width: min(472px, 100%);
    bottom: -5px;
  }
}
@media screen and (max-width: 767px) {
  .c-common-btn::before {
    width: min(370px, 100%);
  }
}
.c-common-btn--white {
  color: #414143;
}
.c-common-btn--white p {
  background-color: #ffffff;
  border: 1px solid #414143;
}
.c-common-btn--white p::before {
  background-color: #414143;
}
.c-common-btn--white::before {
  background-color: #eee8dd;
  border: 1px solid #414143;
}

.c-back-btn {
  position: relative;
  text-align: center;
  width: 18.2291666667vw;
  border-radius: 1.4583333333vw;
  color: #414143;
  font-weight: 700;
  cursor: pointer;
}
.c-back-btn:hover p {
  bottom: -5px;
}
@media screen and (max-width: 1920px) {
  .c-back-btn {
    width: min(350px, 100%);
  }
}
.c-back-btn::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #eee8dd;
  border: 1px solid #414143;
  bottom: -0.2604166667vw;
  width: 18.2291666667vw;
  height: 100%;
  border-radius: 1.4583333333vw;
}
@media screen and (max-width: 1920px) {
  .c-back-btn::before {
    width: min(350px, 100%);
    bottom: -5px;
  }
}
.c-back-btn p {
  position: relative;
  bottom: 0;
  width: 18.2291666667vw;
  border-radius: 1.4583333333vw;
  background-color: #ffffff;
  border: 1px solid #414143;
  transition: 0.3s;
  padding-top: 0.78125vw;
  padding-bottom: 0.78125vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-back-btn p {
    width: min(350px, 100%);
    padding: 15px 0;
    font-size: 1rem;
  }
}
.c-back-btn p::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  translate: 0 -50%;
  rotate: 180deg;
  mask-image: url(/assets/img/common/c-common-arrow.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  background-color: #414143;
  width: 0.625vw;
  height: 0.5208333333vw;
  transition: 0.3s;
}
@media screen and (max-width: 1920px) {
  .c-back-btn p::before {
    width: 12px;
    height: 10px;
  }
}

.c-page-top {
  position: fixed;
  right: 0.5208333333vw;
  bottom: 5.2083333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.78125vw;
  height: 4.8958333333vw;
  background-color: initial;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 1920px) {
  .c-page-top {
    right: 10px;
    bottom: 100px;
    width: 15px;
    height: 94px;
  }
}
.c-page-top:hover {
  opacity: 1;
}
.c-page-top span {
  position: relative;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  color: #d26a53;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-page-top span {
    font-size: 1rem;
  }
}
.c-page-top span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20%;
  translate: -50% 0;
  rotate: 270deg;
  width: 0.625vw;
  height: 0.5208333333vw;
  mask-image: url(/assets/img/common/c-common-arrow.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  background-color: #d26a53;
}
@media screen and (max-width: 1920px) {
  .c-page-top span::before {
    width: 12px;
    height: 10px;
  }
}
.c-page-top.-show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease-in-out;
}

.c-common-check-ul li {
  position: relative;
  padding-left: 1.5625vw;
  font-weight: 700;
  margin-top: clamp(10px, 1.0416666667vw, 20px);
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .c-common-check-ul li {
    padding-left: 30px;
    margin-top: 1.0416666667vw;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-common-check-ul li {
    font-size: 0.9523809524rem;
  }
}
.c-common-check-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-image: url(/assets/img/common/c-common-check.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 1.0416666667vw;
  height: 1.2037037037vw;
}
@media screen and (max-width: 1920px) {
  .c-common-check-ul li::before {
    width: 20px;
    height: 14px;
  }
}

.c-faq-list {
  border: 1px solid #414143;
  border-radius: 0.5208333333vw;
}
.c-faq-list__question {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 45px);
  gap: 30px;
  font-weight: 700;
  cursor: pointer;
  padding: calc(24 / 1920 * 100vw);
  font-size: 0.78125vw;
}
@media screen and (max-width: 1920px) {
  .c-faq-list__question {
    font-size: 0.9375rem;
    padding-top: clamp(12px, 1.25vw, 24px);
    padding-bottom: clamp(12px, 1.25vw, 24px);
    padding-right: clamp(12px, 1.25vw, 24px);
    padding-left: clamp(12px, 1.25vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .c-faq-list__question {
    gap: 15px;
  }
}
.c-faq-list__question::before, .c-faq-list__question::after {
  content: "";
  position: absolute;
  right: 1.25vw;
  width: 0.9375vw;
  height: 0.1851851852vw;
  background-color: #f67d61;
}
@media screen and (max-width: 1920px) {
  .c-faq-list__question::before, .c-faq-list__question::after {
    right: -32px;
    width: 18px;
    height: 2px;
  }
}
.c-faq-list__question::before {
  /* 縦棒（+ の縦線）を transform で回転 */
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.c-faq-list__question span {
  line-height: 1;
  font-size: 1.4583333333vw;
}
@media screen and (max-width: 1920px) {
  .c-faq-list__question span {
    font-size: 1.75rem;
  }
}
.c-faq-list__question--1 span {
  color: #1aae83;
}
.c-faq-list__question--2 span {
  color: #f67d61;
}
.c-faq-list__question--3 span {
  color: #7f6cdc;
}
.c-faq-list__question--other span {
  color: #b8c4c2;
}
.c-faq-list__answer {
  overflow: hidden;
  font-size: 0.7291666667vw;
  /* 開閉アニメーション用: 初期は details のネイティブ挙動を利用しつつ、JSでheight計測する場合に備えて overflow を許可 */
}
@media screen and (max-width: 1920px) {
  .c-faq-list__answer {
    font-size: 0.875rem;
  }
}
.c-faq-list__answer span {
  color: #ffcc33;
  line-height: 1;
  font-size: 1.4583333333vw;
}
@media screen and (max-width: 1920px) {
  .c-faq-list__answer span {
    font-size: 1.75rem;
  }
}
.c-faq-list__answerInner {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #414143;
  gap: 30px;
  font-weight: 500;
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .c-faq-list__answerInner {
    padding-top: clamp(12px, 1.25vw, 24px);
    padding-bottom: clamp(12px, 1.25vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .c-faq-list__answerInner {
    gap: 15px;
  }
}
.c-faq-list__answerInner a {
  transition: 0.3s ease;
}
.c-faq-list__answerInner a:hover {
  text-decoration: underline;
}
.c-faq-list__item {
  /* ホバー時のスタイル */
}
.c-faq-list__item:hover .c-faq-list__question {
  cursor: pointer;
  opacity: 0.8;
}
.c-faq-list__item[open] {
  /* open 時の answer アニメーション */
}
.c-faq-list__item[open] .c-faq-list__question::before {
  transform: rotate(0deg);
}
.c-faq-list__item[open] .c-faq-list__answer {
  animation: faqFadeSlide 0.3s ease;
  padding-right: 1.25vw;
  padding-left: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .c-faq-list__item[open] .c-faq-list__answer {
    padding-right: clamp(12px, 1.25vw, 24px);
    padding-left: clamp(12px, 1.25vw, 24px);
  }
}

.c-common-detail {
  width: 62.5vw;
  margin-inline: auto;
  border-radius: 0.5208333333vw;
  border: 1px solid #414143;
}
@media screen and (max-width: 1920px) {
  .c-common-detail {
    width: min(1200px, 100%);
  }
}
.c-common-detail__title {
  color: #fff;
  text-align: center;
  border-radius: 0.5208333333vw 0.5208333333vw 0 0;
  background-color: #ea7f24;
  word-break: keep-all;
  padding: calc(30 / 1920 * 100vw);
  font-size: 2.0833333333vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .c-common-detail__title {
    font-size: 2.5rem;
    padding-top: clamp(15px, 1.5625vw, 30px);
    padding-left: clamp(15px, 1.5625vw, 30px);
    padding-bottom: clamp(15px, 1.5625vw, 30px);
    padding-right: clamp(15px, 1.5625vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .c-common-detail__title {
    font-size: 1.9047619048rem;
  }
}
.c-common-detail__title span {
  color: #ffff2a;
}
.c-common-detail__box {
  display: flex;
  gap: 3.125vw;
  background-color: #fff;
  border-radius: 0.5208333333vw;
  padding-top: 3.125vw;
  padding-bottom: 3.125vw;
  padding-right: 5.46875vw;
  padding-left: 5.46875vw;
}
@media screen and (max-width: 1920px) {
  .c-common-detail__box {
    padding-top: clamp(30px, 3.125vw, 60px);
    padding-left: clamp(50px, 5.46875vw, 105px);
    padding-bottom: clamp(30px, 3.125vw, 60px);
    padding-right: clamp(50px, 5.46875vw, 105px);
  }
}
@media screen and (max-width: 767px) {
  .c-common-detail__box {
    flex-direction: column;
    gap: 5.2151238592vw;
  }
}
@media screen and (max-width: 479px) {
  .c-common-detail__box {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-common-detail__itemTitle {
  display: flex;
  align-items: center;
  gap: 1.0416666667vw;
  font-weight: 900;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-common-detail__itemTitle {
    font-size: 1rem;
  }
}
.c-common-detail__itemTitle span {
  color: #614813;
  border-radius: 0.2604166667vw;
  background-color: #f7be43;
  border: 1px solid #614813;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  padding: calc(5 / 1920 * 100vw);
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-common-detail__itemTitle span {
    width: 76px;
    padding: 5px;
    font-size: 1rem;
  }
}
.c-common-detail__itemTitle span span {
  padding: initial;
  font-weight: 900;
  color: #614813;
  border: initial;
  font-family: "Jost";
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-common-detail__itemTitle span span {
    font-size: 1rem;
  }
}
.c-common-detail__item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-common-detail__item {
    width: 100%;
  }
}
.c-common-detail__itemImg {
  padding-top: 2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .c-common-detail__itemImg {
    padding-top: clamp(20px, 2.0833333333vw, 40px);
  }
}
.c-common-detail__itemImg img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.c-common-detail__text {
  padding-top: clamp(20px, 2.0833333333vw, 40px);
}

.c-basic-text {
  font-weight: 500;
  font-size: 0.9375vw;
}
@media screen and (max-width: 1920px) {
  .c-basic-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-basic-text {
    font-size: 0.8571428571rem;
  }
}

.c-support {
  display: flex;
  justify-content: center;
  gap: 7.9166666667vw;
  margin-inline: auto;
  width: 53.3333333333vw;
  padding-top: 4.5833333333vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .c-support {
    width: min(1024px, 100%);
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
@media screen and (max-width: 767px) {
  .c-support {
    align-items: center;
  }
}
@media screen and (max-width: 479px) {
  .c-support {
    align-items: center;
    flex-direction: column;
  }
}
.c-support__title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-support__text {
    min-width: 261px;
  }
}
.c-support__lead {
  font-weight: 700;
  margin-top: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .c-support__lead {
    margin-top: clamp(15px, 1.5625vw, 30px);
  }
}
.c-support__btn {
  display: block;
  margin-inline: auto;
  margin-top: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .c-support__btn {
    margin-top: clamp(15px, 1.5625vw, 30px);
  }
}
.c-support__img {
  width: 16.9791666667vw;
}
@media screen and (max-width: 1920px) {
  .c-support__img {
    width: min(326px, 100%);
  }
}
.c-support__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.c-contact-flow {
  display: flex;
  justify-content: center;
  gap: 5.5208333333vw;
}
@media screen and (max-width: 1920px) {
  .c-contact-flow {
    gap: 106px;
  }
}
.c-contact-flow__item {
  position: relative;
  font-weight: 700;
  font-size: 0.8333333333vw;
  /* 変数を使わずに before と after を配置 */
}
@media screen and (max-width: 1920px) {
  .c-contact-flow__item {
    font-size: 1rem;
  }
}
.c-contact-flow__item::before, .c-contact-flow__item::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* before の bottom は -29px 相当（vw と px 両対応） */
  bottom: -1.5104166667vw;
}
@media screen and (max-width: 1920px) {
  .c-contact-flow__item::before, .c-contact-flow__item::after {
    bottom: -29px;
  }
}
.c-contact-flow__item::before {
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border-radius: 50%;
  background-color: #dbd8d6;
}
@media screen and (max-width: 1920px) {
  .c-contact-flow__item::before {
    width: 20px;
    height: 20px;
  }
}
.c-contact-flow__item::after {
  width: 0.4166666667vw;
  height: 0.4166666667vw;
  border-radius: 50%;
  background-color: #fff;
  /* before の中心に合わせる: vw版は計算済みで -23/1920*100vw、px版は -23px */
  bottom: -1.1979166667vw;
}
@media screen and (max-width: 1920px) {
  .c-contact-flow__item::after {
    width: 8px;
    height: 8px;
    bottom: -23px;
  }
}
.c-contact-flow__item--active::before {
  background-color: #f7be43;
}

.c-form__item {
  display: flex;
  flex-direction: column;
}
.c-form__label {
  display: flex;
  align-items: center;
  gap: 0.5208333333vw;
  font-weight: 700;
  font-size: 0.9375vw;
}
@media screen and (max-width: 1920px) {
  .c-form__label {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__label {
    font-size: 0.8571428571rem;
  }
}
.c-form__input {
  margin-top: 0.78125vw;
}
@media screen and (max-width: 1920px) {
  .c-form__input {
    margin-top: clamp(7px, 0.78125vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .c-form__input {
    font-size: 0.7142857143rem;
  }
}
.c-form__required {
  background-color: #614813;
  color: #f7be43;
  border-radius: 0.2604166667vw;
  padding-top: 0.1041666667vw;
  padding-bottom: 0.1041666667vw;
  padding-right: 0.3125vw;
  padding-left: 0.3125vw;
  font-size: 0.7291666667vw;
}
@media screen and (max-width: 1920px) {
  .c-form__required {
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__required {
    font-size: 0.6666666667rem;
  }
}
.c-form input[type=submit],
.c-form input[type=button],
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel] {
  height: 2.9166666667vw;
  border: 1px solid #414143;
  border-radius: 0.2604166667vw;
  font-weight: 500;
  color: #414143;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  padding: calc(20 / 1920 * 100vw);
  font-size: 0.9375vw;
}
@media screen and (max-width: 1920px) {
  .c-form input[type=submit],
  .c-form input[type=button],
  .c-form input[type=text],
  .c-form input[type=email],
  .c-form input[type=tel] {
    height: 56px;
    padding: 20px;
    border-radius: 5px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form input[type=submit],
  .c-form input[type=button],
  .c-form input[type=text],
  .c-form input[type=email],
  .c-form input[type=tel] {
    font-size: 0.8571428571rem;
  }
}
.c-form input[type=checkbox] {
  width: 1.3541666667vw;
  height: 1.3541666667vw;
}
@media screen and (max-width: 1920px) {
  .c-form input[type=checkbox] {
    width: 26px;
    height: 26px;
  }
}
.c-form textarea {
  max-height: 13.3333333333vw;
  border: 1px solid #414143;
  border-radius: 0.2604166667vw;
  font-weight: 500;
  color: #414143;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  padding: calc(20 / 1920 * 100vw);
  font-size: 0.9375vw;
}
@media screen and (max-width: 1920px) {
  .c-form textarea {
    max-height: 256px;
    padding: 20px;
    border-radius: 5px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form textarea {
    font-size: 0.8571428571rem;
  }
}
.c-form__privacy {
  margin-top: 0.625vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacy {
    margin-top: 12px;
  }
}
.c-form__privacyBox {
  max-height: 13.3333333333vw;
  overflow: auto;
  border: 1px solid #414143;
  border-radius: 8px;
  background: #fff;
  font-size: 0.7291666667vw;
  padding-top: 2.6041666667vw;
  padding-bottom: 2.6041666667vw;
  padding-right: 1.0416666667vw;
  padding-left: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyBox {
    max-height: 256px;
    font-size: 14px;
    padding-top: clamp(25px, 2.6041666667vw, 50px);
    padding-bottom: clamp(25px, 2.6041666667vw, 50px);
    padding-left: clamp(10px, 1.0416666667vw, 20px);
    padding-right: clamp(10px, 1.0416666667vw, 20px);
  }
}
.c-form__privacyTitle {
  font-weight: 700;
  text-align: center;
  font-size: 0.9375vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyTitle {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__privacyTitle {
    font-size: 0.8571428571rem;
  }
}
.c-form__privacyText {
  font-weight: 500;
  margin-top: 1.9791666667vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyText {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__privacyText {
    font-size: 0.7619047619rem;
  }
}
.c-form__privacyBlock {
  margin-top: 1.25vw;
}
.c-form__privacyBlock h2 {
  font-weight: 700;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyBlock h2 {
    margin-top: clamp(12px, 1.25vw, 24px);
    font-size: 1.25rem;
  }
}
.c-form__privacyBlock ol {
  margin-top: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyBlock ol {
    margin-top: clamp(8px, 0.8333333333vw, 16px);
  }
}
.c-form__privacyBlock ol .c-form__privacyNumber {
  position: relative;
  font-weight: 500;
  counter-increment: number;
  padding-left: 2.0833333333vw;
  text-indent: -2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyBlock ol .c-form__privacyNumber {
    padding-left: 40px;
    text-indent: -40px;
  }
}
.c-form__privacyBlock ol .c-form__privacyNumber::before {
  content: "（" counter(number) "）";
  font-weight: 700;
}
.c-form__privacyBlock ol .c-form__privacyEn {
  font-weight: 500;
  padding-left: 1.0416666667vw;
  text-indent: -1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyBlock ol .c-form__privacyEn {
    padding-left: 20px;
    text-indent: -20px;
  }
}
.c-form__privacyBlock ul .c-form__privacyPoint {
  position: relative;
  font-weight: 500;
  padding-left: 2.0833333333vw;
  text-indent: -2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyBlock ul .c-form__privacyPoint {
    padding-left: 40px;
    text-indent: -40px;
  }
}
.c-form__privacyBlock ul .c-form__privacyPoint::before {
  content: "";
  position: absolute;
  top: 0.6770833333vw;
  left: -0.5208333333vw;
  background-color: #222;
  border-radius: 50%;
  width: 0.3125vw;
  height: 0.3125vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyBlock ul .c-form__privacyPoint::before {
    top: 13px;
    left: -10px;
    width: 3px;
    height: 3px;
  }
}
.c-form__privacyBlock a {
  color: #414143;
}
.c-form__privacyBlock > .c-basic-text {
  margin-top: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyBlock > .c-basic-text {
    margin-top: clamp(8px, 0.8333333333vw, 16px);
  }
}
.c-form__privacyLead {
  margin-top: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyLead {
    margin-top: clamp(8px, 0.8333333333vw, 16px);
  }
}
.c-form__agree {
  text-align: center;
  font-weight: 700;
  font-size: 0.9375vw;
}
@media screen and (max-width: 1920px) {
  .c-form__agree {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__agree {
    font-size: 0.8571428571rem;
  }
}
.c-form__privacyContact .c-basic-text {
  margin-top: 0;
}
.c-form__privacyRevision {
  margin-top: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyRevision {
    margin-top: clamp(12px, 1.25vw, 24px);
  }
}
.c-form__privacyRevision p {
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .c-form__privacyRevision p {
    font-size: 1rem;
  }
}
.c-form__privacyName {
  text-align: right;
}

.c-common-information {
  padding-top: 5.2083333333vw;
}
@media screen and (max-width: 1920px) {
  .c-common-information {
    padding-top: clamp(25px, 5.2083333333vw, 100px);
  }
}
.c-common-information__title {
  text-align: center;
}
.c-common-information__title > .c-headLine02-en {
  color: #f7be43;
}
.c-common-information__title > .c-headLine02 {
  color: #414143;
  letter-spacing: 0.2rem;
}
.c-common-information__block {
  display: flex;
  gap: 5.2083333333vw;
  justify-content: center;
}
.c-common-information__itemImg {
  display: grid;
  align-items: end;
  width: 16.09375vw;
}
@media screen and (max-width: 1920px) {
  .c-common-information__itemImg {
    width: min(309px, 100%);
  }
}
.c-common-information__itemImg img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.c-common-information__btn {
  padding-top: 2.0833333333vw;
  width: 18.2291666667vw;
}
@media screen and (max-width: 1920px) {
  .c-common-information__btn {
    padding-top: clamp(25px, 2.0833333333vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .c-common-information__btn {
    min-width: 200px;
  }
}
.c-common-information__btn > .c-common-btn {
  display: block;
}
.c-common-information__btnWrap {
  padding-bottom: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .c-common-information__btnWrap {
    padding-bottom: 40px;
  }
}

.p-home-mainVisual {
  position: relative;
  background-image: url(/assets/img/home/main.webp);
  background-size: cover;
  background-position: 70%;
  background-repeat: no-repeat;
  aspect-ratio: 1920/660;
}
@media screen and (max-width: 1920px) {
  .p-home-mainVisual {
    width: 100%;
    height: 660px;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-mainVisual {
    background-position: 70% 50px;
  }
}

.p-home-bnr {
  position: fixed;
  bottom: 11.9791666667vw;
  right: 0;
  width: 25.2083333333vw;
  height: 9.4791666667vw;
  overflow: hidden;
  border-radius: 3.0208333333vw 0 0 3.0208333333vw;
  z-index: 2;
}
@media screen and (max-width: 1920px) {
  .p-home-bnr {
    bottom: 230px;
    width: 484px;
    height: 182px;
    border-radius: 58px 0 0 58px;
  }
}
@media screen and (max-width: 479px) {
  .p-home-bnr {
    bottom: 10px;
    width: 242px;
    height: 91px;
    border-radius: 0;
  }
}
.p-home-bnr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  width: 100%;
  height: 94%;
  transition: 0.5s;
  background-color: #fff;
  opacity: 0;
  border-radius: 1.0416666667vw 0 0 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-bnr::before {
    border-radius: 20px 0 0 20px;
  }
}
.p-home-bnr img {
  border-radius: 3.0208333333vw 0 0 3.0208333333vw;
  vertical-align: middle;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1920px) {
  .p-home-bnr img {
    border-radius: 58px 0 0 58px;
  }
}
@media screen and (max-width: 479px) {
  .p-home-bnr img {
    border-radius: 0;
  }
}
.p-home-bnr:hover::before {
  top: 0;
  opacity: 0.2;
}

.p-home-campaign {
  position: relative;
  width: 62.5vw;
  margin-inline: auto;
  padding: 15px 30px 60px;
  background-color: #f7be43;
  border-radius: 10px;
  border: 1px solid #614813;
  color: #ffff2a;
  margin-inline: auto;
  font-size: 0.7291666667vw;
  padding-top: 0.78125vw;
  padding-bottom: 3.125vw;
  padding-left: 1.5625vw;
  padding-right: 1.5625vw;
  margin-top: 4.5833333333vw;
  margin-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-campaign {
    width: min(1200px, 100%);
    padding: 15px 30px 60px;
    margin-top: clamp(44px, 4.5833333333vw, 88px);
    margin-bottom: clamp(44px, 4.5833333333vw, 88px);
    font-size: 0.875rem;
  }
}
.p-home-campaign::before {
  content: "";
  position: absolute;
  right: -2.0833333333vw;
  top: -2.0833333333vw;
  background-image: url(/assets/img/common/c-discount.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 6.4583333333vw;
  height: 6.4583333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-campaign::before {
    width: 124px;
    height: 124px;
  }
}
@media screen and (max-width: 767px) {
  .p-home-campaign::before {
    top: -8.4745762712vw;
    width: 16.1668839635vw;
    height: 16.1668839635vw;
  }
}
@media screen and (max-width: 479px) {
  .p-home-campaign::before {
    width: 77px;
    height: 77px;
  }
}
.p-home-campaign__enTitle {
  display: block;
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.7291666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-campaign__enTitle {
    width: min(1200px, 100%);
    font-size: 0.875rem;
  }
}
.p-home-campaign__title {
  position: relative;
  text-align: center;
  margin-inline: auto;
}
.p-home-campaign__title::before, .p-home-campaign__title::after {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
}
.p-home-campaign__title::before {
  left: 0;
  background-image: url(/assets/img/home/p-home-campaign01.webp);
  width: 11.09375vw;
  height: 9.375vw;
}
@media screen and (max-width: 1920px) {
  .p-home-campaign__title::before {
    width: 213px;
    height: 180px;
  }
}
@media screen and (max-width: 1199px) {
  .p-home-campaign__title::before {
    display: none;
  }
}
.p-home-campaign__title::after {
  top: 0;
  right: 0;
  background-image: url(/assets/img/home/p-home-campaign02.webp);
  width: 13.59375vw;
  height: 9.1145833333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-campaign__title::after {
    width: 261px;
    height: 175px;
  }
}
@media screen and (max-width: 1199px) {
  .p-home-campaign__title::after {
    display: none;
  }
}
.p-home-campaign__title img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-home-campaign__titleInner {
  width: 29.1666666667vw;
  margin-inline: auto;
}
@media screen and (max-width: 1920px) {
  .p-home-campaign__titleInner {
    width: min(560px, 100%);
  }
}
.p-home-campaign__text {
  font-weight: 700;
  text-align: center;
  margin-inline: auto;
  line-height: 2.5;
  color: #414143;
  margin-top: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-campaign__text {
    margin-top: 20px;
  }
}
.p-home-campaign__text span {
  position: relative;
  /* .p-home-movie__item の直後に来る .p-home-movie__flow（実質的に2個目の flow）だけに余白を付与 */
  padding: 3px 5px;
  border-radius: 5px;
  margin-left: 5px;
  background-color: #ffff2a;
  font-family: "Jost";
}
.p-home-campaign__text span__item + .p-home-campaign__text span__flow {
  margin-top: 5.2083333333vw;
}
.p-home-campaign__text span::before {
  content: "";
  position: absolute;
  right: -11px;
  top: -9px;
  background-image: url(/assets/img/home/p-home-details.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 12px;
  height: 11px;
}
.p-home-campaign__text span span {
  color: #ff6800;
}
.p-home-campaign__text span span::before {
  content: none;
}
.p-home-campaign__btnWrap {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-campaign__btnWrap {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home-campaign__btnWrap {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
}

.p-home-price {
  padding-top: 4.5833333333vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-price {
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-home-price__title {
  text-align: center;
}
.p-home-price__table {
  background-color: #fff;
  border-radius: 0.5208333333vw;
  border: 1px solid #414143;
  padding-top: 4.5833333333vw;
  padding-bottom: 4.5833333333vw;
  padding-right: 1.5625vw;
  padding-left: 1.5625vw;
  margin-top: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-home-price__table {
    border-radius: 10px;
    margin-top: clamp(15px, 1.5625vw, 30px);
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
    padding-right: clamp(15px, 1.5625vw, 30px);
    padding-left: clamp(15px, 1.5625vw, 30px);
  }
}
.p-home-price__tableNote {
  text-align: center;
}
.p-home-price__tableImg {
  width: 39.7395833333vw;
  margin-inline: auto;
}
@media screen and (max-width: 1920px) {
  .p-home-price__tableImg {
    width: min(763px, 100%);
  }
}
.p-home-price__tableImg img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-home-oneMonth {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.p-home-oneMonth__text {
  line-height: 1.2;
  font-weight: 400;
  font-size: 1.0416666667vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .p-home-oneMonth__text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-oneMonth__text {
    font-size: 0.9523809524rem;
  }
}
.p-home-oneMonth__price span {
  font-weight: 400;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-oneMonth__price span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-oneMonth__price span {
    font-size: 1.9047619048rem;
  }
}
@media screen and (max-width: 479px) {
  .p-home-oneMonth__price span {
    font-size: 1.6666666667rem;
  }
}
.p-home-oneMonth__priceNumbar {
  display: flex;
  align-items: center;
  font-weight: 800;
  line-height: 1.2;
  color: #ea7f24;
  font-family: "Jost";
  font-size: 4.7395833333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-oneMonth__priceNumbar {
    font-size: 5.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-oneMonth__priceNumbar {
    font-size: 4.3333333333rem;
  }
}
@media screen and (max-width: 479px) {
  .p-home-oneMonth__priceNumbar {
    font-size: 3.7916666667rem;
  }
}
.p-home-oneMonth__tax {
  font-weight: 800;
  letter-spacing: 2px;
  font-family: "Jost";
  font-size: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-home-oneMonth__tax {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 1920px) {
  .p-home-oneMonth__tax {
    font-size: 1.4285714286rem;
  }
}
.p-home-oneMonth__tax span {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-oneMonth__tax span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1920px) {
  .p-home-oneMonth__tax span {
    font-size: 0.9523809524rem;
  }
}

.p-home-list {
  position: relative;
  padding-top: 4.5833333333vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-list {
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-home-list::before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: -3.6458333333vw;
  rotate: 180deg;
  background-color: #fff;
  width: 11.71875vw;
  height: 3.6458333333vw;
  clip-path: polygon(50% 5%, 0% 100%, 100% 100%);
}
@media screen and (max-width: 1920px) {
  .p-home-list::before {
    bottom: -70px;
    width: 225px;
    height: 70px;
  }
}
.p-home-list__title {
  position: relative;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home-list__title {
    text-align: left;
  }
}
.p-home-list__title::before, .p-home-list__title::after {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 14.8958333333vw;
  height: 14.8958333333vw;
}
.p-home-list__title::before {
  left: 0;
  top: 1.0416666667vw;
  background-image: url(/assets/img/home/p-home-list-img01.webp);
}
@media screen and (max-width: 1920px) {
  .p-home-list__title::before {
    min-width: 200px;
    min-height: 200px;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-list__title::before {
    display: none;
  }
}
.p-home-list__title::after {
  right: 0;
  top: 1.0416666667vw;
  background-image: url(/assets/img/home/p-home-list-img02.webp);
}
@media screen and (max-width: 1920px) {
  .p-home-list__title::after {
    min-width: 200px;
    min-height: 200px;
  }
}
@media screen and (max-width: 1023px) {
  .p-home-list__title::after {
    display: none;
  }
}
.p-home-list__item {
  width: 30.7291666667vw;
  margin-inline: auto;
  margin-top: 3.125vw;
}
@media screen and (max-width: 1920px) {
  .p-home-list__item {
    width: min(590px, 100%);
    margin-top: clamp(30px, 3.125vw, 60px);
    font-size: 1.25rem;
  }
}

.p-home-satisfaction {
  padding-top: 5.7291666667vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-satisfaction {
    padding-top: clamp(85px, 5.7291666667vw, 110px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-home-satisfaction__title {
  display: flex;
  justify-content: center;
  gap: 5.3125vw;
}
@media screen and (max-width: 767px) {
  .p-home-satisfaction__title {
    align-items: center;
  }
}
@media screen and (max-width: 479px) {
  .p-home-satisfaction__title {
    flex-direction: column;
  }
}
.p-home-satisfaction__titleText {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home-satisfaction__titleText {
    text-align: left;
  }
}
.p-home-satisfaction__graph {
  width: 22.9166666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-satisfaction__graph {
    width: min(440px, 100%);
  }
}
@media screen and (max-width: 479px) {
  .p-home-satisfaction__graph {
    width: min(320px, 100%);
    margin-inline: auto;
  }
}
.p-home-satisfaction__graph img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-home-satisfaction__detail {
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-satisfaction__detail {
    margin-top: 40px;
  }
}

.p-home-feeling {
  padding-top: 4.5833333333vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-feeling {
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-home-feeling__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.125vw;
}
@media screen and (max-width: 767px) {
  .p-home-feeling__title {
    flex-direction: column;
  }
}
.p-home-feeling__titleText {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home-feeling__titleText {
    text-align: left;
  }
}
.p-home-feeling__detail {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .p-home-feeling__detail {
    margin-top: 40px;
  }
}
.p-home-feeling__pictogram {
  width: 22.9166666667vw;
  margin-bottom: -20px;
}
@media screen and (max-width: 1920px) {
  .p-home-feeling__pictogram {
    width: min(440px, 100%);
  }
}
@media screen and (max-width: 767px) {
  .p-home-feeling__pictogram {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 479px) {
  .p-home-feeling__pictogram {
    width: min(320px, 100%);
  }
}
.p-home-feeling__pictogram img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-home-voice {
  padding-top: 7.8125vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-voice {
    padding-top: clamp(75px, 7.8125vw, 150px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-home-voice__title {
  text-align: center;
}

.p-home-comment {
  display: flex;
  gap: 3.125vw;
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-comment {
    margin-top: clamp(40px, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .p-home-comment {
    flex-direction: column;
    gap: 40px;
  }
}
.p-home-comment__item {
  width: calc((100% - 3.125vw) / 3);
}
@media screen and (max-width: 767px) {
  .p-home-comment__item {
    width: 100%;
  }
}
.p-home-comment__user {
  color: #fff;
  text-align: right;
  font-size: 0.7291666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-comment__user {
    font-size: 0.875rem;
  }
}
.p-home-comment__box {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid #414143;
  padding-top: 3.125vw;
  padding-bottom: 1.875vw;
  padding-left: 1.875vw;
  padding-right: 1.875vw;
  margin-top: 0.5208333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-comment__box {
    border: 1px solid #414143;
    border-radius: 0.5208333333vw;
    padding-top: 60px;
    padding-bottom: clamp(18px, 1.875vw, 36px);
    padding-right: clamp(18px, 1.875vw, 36px);
    padding-left: clamp(18px, 1.875vw, 36px);
    margin-top: clamp(5px, 0.5208333333vw, 10px);
  }
}
.p-home-comment__img {
  position: absolute;
  top: -2.0833333333vw;
  width: 5.78125vw;
}
@media screen and (max-width: 1920px) {
  .p-home-comment__img {
    width: 111px;
    top: -40px;
  }
}
.p-home-comment__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-home-comment__title {
  font-weight: 700;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-comment__title {
    font-size: 1.25rem;
  }
}
.p-home-comment__text {
  margin-top: 1.0416666667vw;
  font-size: 0.8854166667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-comment__text {
    margin-top: clamp(10px, 1.0416666667vw, 20px);
    font-size: 1.0625rem;
  }
}

.p-home-movie {
  position: relative;
  padding-top: 4.5833333333vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-movie {
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-home-movie__title {
  text-align: center;
  word-break: keep-all;
}
.p-home-movie__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.125vw;
  width: 53.3333333333vw;
  margin-inline: auto;
  margin-top: 4.7916666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-movie__flow {
    width: min(1024px, 100%);
    gap: 60px;
    margin-top: clamp(46px, 4.7916666667vw, 92px);
  }
}
@media screen and (max-width: 767px) {
  .p-home-movie__flow {
    flex-direction: column;
    gap: 20px;
    width: min(380px, 100%);
  }
}
.p-home-movie__flowItem {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-home-movie__flowItem {
    width: 100%;
  }
}
.p-home-movie__flowStep {
  color: #614813;
  border-radius: 5px;
  padding: 5px;
  background-color: #f7be43;
  border: 1px solid #614813;
  font-weight: 700;
  font-family: "Jost";
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-movie__flowStep {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-movie__flowStep {
    font-size: 0.9523809524rem;
  }
}
.p-home-movie__flowArrow {
  width: 1.5625vw;
  height: 1.5625vw;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  background-color: #614813;
  transform: rotate(90deg);
}
@media screen and (max-width: 1920px) {
  .p-home-movie__flowArrow {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-home-movie__flowArrow {
    transform: rotate(180deg);
  }
}
.p-home-movie__flowText {
  font-weight: 900;
  font-size: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-home-movie__flowText {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-movie__flowText {
    font-size: 1.1428571429rem;
  }
}
.p-home-movie__point {
  background-color: #fff;
  margin-top: 2.7604166667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-movie__point {
    margin-top: clamp(26px, 2.7604166667vw, 53px);
  }
}
.p-home-movie__pointHeader {
  text-align: center;
  background-color: #eee8dd;
  font-weight: 700;
  padding: calc(24 / 1920 * 100vw);
  font-size: 0.9375vw;
}
@media screen and (max-width: 1920px) {
  .p-home-movie__pointHeader {
    padding-top: clamp(12px, 1.25vw, 24px);
    padding-bottom: clamp(12px, 1.25vw, 24px);
    padding-right: clamp(12px, 1.25vw, 24px);
    padding-left: clamp(12px, 1.25vw, 24px);
    font-size: 1.125rem;
  }
}
.p-home-movie__pointList {
  width: 31.25vw;
  margin-inline: auto;
  padding-top: 1.7708333333vw;
  padding-bottom: 1.7708333333vw;
  padding-right: 0.8333333333vw;
  padding-left: 0.8333333333vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-movie__pointList {
    width: min(440px, 100%);
    padding-top: clamp(17px, 1.25vw, 34px);
    padding-bottom: clamp(17px, 1.25vw, 34px);
    padding-right: clamp(17px, 1.25vw, 34px);
    padding-left: clamp(17px, 1.25vw, 34px);
    font-size: 1rem;
  }
}
.p-home-movie__pointList li {
  position: relative;
  font-weight: 500;
  padding-left: 0.78125vw;
  margin-top: 0.5208333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-movie__pointList li {
    margin-top: clamp(5px, 0.5208333333vw, 10px);
    padding-left: 15px;
  }
}
.p-home-movie__pointList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: #ea7f24;
  width: 0.3125vw;
  height: 0.3125vw;
  border-radius: 50%;
}
@media screen and (max-width: 1920px) {
  .p-home-movie__pointList li::before {
    top: 13px;
    translate: 0 0;
    width: 6px;
    height: 6px;
  }
}
.p-home-movie__item {
  position: relative;
  aspect-ratio: 1024/576;
  margin-top: 2.8125vw;
}
.p-home-movie__item::before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: -7.2916666667vw;
  rotate: 180deg;
  background-color: #f7be43;
  width: 11.71875vw;
  height: 3.6458333333vw;
  clip-path: polygon(47% 56%, 0% 100%, 100% 100%);
}
@media screen and (max-width: 1920px) {
  .p-home-movie__item::before {
    bottom: min(-74px, -7.2916666667vw);
    width: 225px;
    height: 70px;
  }
}
@media screen and (max-width: 1920px) {
  .p-home-movie__item {
    margin-top: clamp(27px, 2.8125vw, 54px);
  }
}
.p-home-movie__item iframe {
  width: 100%;
  height: 100%;
}
.p-home-movie__item + .p-home-movie__flow {
  margin-top: 7.8125vw;
}
@media screen and (max-width: 1920px) {
  .p-home-movie__item + .p-home-movie__flow {
    margin-top: clamp(75px, 7.8125vw, 150px);
  }
}

.p-home-course {
  padding-top: 7.8125vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-course {
    padding-top: clamp(75px, 7.8125vw, 150px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-home-course__title {
  text-align: center;
}

.p-home-course-item {
  display: flex;
  gap: 3.125vw;
  margin-top: 1.71875vw;
}
@media screen and (max-width: 1920px) {
  .p-home-course-item {
    gap: 60px;
    margin-top: clamp(15px, 1.71875vw, 33px);
  }
}
@media screen and (max-width: 1199px) {
  .p-home-course-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.p-home-course-item__card {
  width: calc((100% - 120px) / 3);
  background-color: #fff;
  border-radius: 0.9375vw;
  border: 1px solid #414143;
  overflow: hidden;
}
@media screen and (max-width: 1920px) {
  .p-home-course-item__card {
    border-radius: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .p-home-course-item__card {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .p-home-course-item__card {
    width: 100%;
  }
}
.p-home-course-item__text {
  text-align: center;
  padding-top: 1.6666666667vw;
  padding-bottom: 2.0833333333vw;
  padding-right: 1.25vw;
  padding-left: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-home-course-item__text {
    padding-bottom: 40px;
    padding-top: clamp(16px, 1.6666666667vw, 32px);
    padding-right: clamp(12px, 1.25vw, 24px);
    padding-left: clamp(12px, 1.25vw, 24px);
  }
}
.p-home-course-item__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-home-course-item__btn {
  display: flex;
  justify-content: center;
  font-size: 0.8333333333vw;
  padding-bottom: 1.6666666667vw;
  padding-right: 1.25vw;
  padding-left: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-home-course-item__btn {
    padding-bottom: 32px;
    font-size: 1rem;
    padding-right: clamp(12px, 1.25vw, 24px);
    padding-left: clamp(12px, 1.25vw, 24px);
  }
}

.p-home-faq {
  padding-top: 7.8125vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-faq {
    padding-top: clamp(75px, 7.8125vw, 150px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-home-faq__title {
  text-align: center;
}
.p-home-faq__tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7291666667vw;
  margin-top: 1.71875vw;
}
@media screen and (max-width: 1920px) {
  .p-home-faq__tab {
    gap: 14px;
    width: min(574px, 100%);
    margin-inline: auto;
    margin-top: clamp(15px, 1.71875vw, 33px);
  }
}
.p-home-faq__tabItem {
  display: inline-block;
  width: 5.0520833333vw;
  text-align: center;
  border-radius: 4px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  padding-top: 0.625vw;
  padding-bottom: 0.625vw;
  padding-right: 0.8333333333vw;
  padding-left: 0.8333333333vw;
  font-size: 0.7291666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-faq__tabItem {
    width: min(97px, 100%);
    font-size: 0.875rem;
    padding-top: clamp(6px, 0.625vw, 12px);
    padding-bottom: clamp(6px, 0.625vw, 12px);
    padding-right: clamp(8px, 0.8333333333vw, 16px);
    padding-left: clamp(8px, 0.8333333333vw, 16px);
  }
}
@media screen and (max-width: 599px) {
  .p-home-faq__tabItem {
    width: calc((100% - 14px) / 2);
  }
}
.p-home-faq__tabItem--1 {
  border: 1px solid #1aae83;
  color: #1aae83;
}
.p-home-faq__tabItem--1:hover {
  background-color: #1aae83;
  color: #fff;
}
.p-home-faq__tabItem--2 {
  border: 1px solid #f67d61;
  color: #f67d61;
}
.p-home-faq__tabItem--2:hover {
  background-color: #f67d61;
  color: #fff;
}
.p-home-faq__tabItem--3 {
  border: 1px solid #7f6cdc;
  color: #7f6cdc;
}
.p-home-faq__tabItem--3:hover {
  background-color: #7f6cdc;
  color: #fff;
}
.p-home-faq__tabItem--other {
  border: 1px solid #b8c4c2;
  color: #b8c4c2;
}
.p-home-faq__tabItem--other:hover {
  background-color: #b8c4c2;
  color: #fff;
}
.p-home-faq__list {
  width: 53.3333333333vw;
  padding-top: 5.2083333333vw;
  margin-top: -5.2083333333vw;
  margin-inline: auto;
  /* .p-home-faq__list の直下にある .c-faq-list のみにマージンを付与 */
}
@media screen and (max-width: 1920px) {
  .p-home-faq__list {
    width: min(1024px, 100%);
  }
}
.p-home-faq__list > .c-faq-list {
  margin-top: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-faq__list > .c-faq-list {
    font-size: 0.875rem;
    margin-top: clamp(8px, 0.8333333333vw, 16px);
  }
}
.p-home-faq__listTitle {
  font-weight: 700;
  margin-top: 3.3854166667vw;
  font-size: 0.9375vw;
}
@media screen and (max-width: 1920px) {
  .p-home-faq__listTitle {
    font-size: 1.125rem;
    margin-top: clamp(32px, 3.3854166667vw, 65px);
  }
}

.p-home-info {
  padding-top: 4.5833333333vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-home-info {
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-home-info__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-home-info__title {
    font-size: 1.5rem;
  }
}
.p-home-info__btnWrap {
  display: flex;
  justify-content: center;
  gap: 1.5625vw;
  margin-top: 1.9791666667vw;
}
@media screen and (max-width: 1920px) {
  .p-home-info__btnWrap {
    margin-top: clamp(30px, 1.9791666667vw, 38px);
  }
}
@media screen and (max-width: 767px) {
  .p-home-info__btnWrap {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
}

.p-contact {
  padding-top: 7.8125vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-contact {
    padding-top: clamp(130px, 7.8125vw, 150px);
    padding-bottom: clamp(70px, 4.5833333333vw, 88px);
  }
}
.p-contact__title {
  text-align: center;
}
.p-contact__flow {
  position: relative;
  text-align: center;
  width: 16.5625vw;
  margin-inline: auto;
  padding-bottom: 1.0416666667vw;
  margin-top: 4.8958333333vw;
}
@media screen and (max-width: 1920px) {
  .p-contact__flow {
    width: min(318px, 100%);
    padding-bottom: 20px;
    margin-top: clamp(47px, 4.8958333333vw, 94px);
  }
}
.p-contact__flow::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 14.5833333333vw;
  background-color: #414143;
}
@media screen and (max-width: 1920px) {
  .p-contact__flow::before {
    width: min(280px, 88%);
  }
}
.p-contact__form {
  width: 53.3333333333vw;
  margin-inline: auto;
  margin-top: 4.53125vw;
}
@media screen and (max-width: 1920px) {
  .p-contact__form {
    width: min(1024px, 100%);
    margin-top: clamp(47px, 4.53125vw, 87px);
  }
}
.p-contact__formItem {
  margin-top: 2.8645833333vw;
}
@media screen and (max-width: 1920px) {
  .p-contact__formItem {
    margin-top: clamp(27px, 2.8645833333vw, 55px);
  }
}
.p-contact__formItem:first-child {
  margin-top: 0;
}
.p-contact__agree {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5208333333vw;
  margin-top: 3.3854166667vw;
}
@media screen and (max-width: 1920px) {
  .p-contact__agree {
    margin-top: clamp(32px, 3.3854166667vw, 65px);
  }
}
.p-contact__btn {
  margin-inline: auto;
}

.p-confirm {
  width: 53.3333333333vw;
  margin-inline: auto;
  padding-top: 4.6875vw;
}
@media screen and (max-width: 1920px) {
  .p-confirm {
    width: min(1024px, 100%);
    padding-top: clamp(45px, 4.6875vw, 90px);
  }
}
.p-confirm__value {
  padding-left: 1.3020833333vw;
  padding-bottom: 0.5208333333vw;
  margin-top: 2.0833333333vw;
  margin-bottom: 2.0833333333vw;
  border-bottom: 1px solid #414143;
}
@media screen and (max-width: 1920px) {
  .p-confirm__value {
    padding-left: clamp(16px, 1.3020833333vw, 25px);
    padding-bottom: clamp(5px, 0.5208333333vw, 10px);
    margin-top: clamp(15px, 1.5625vw, 30px);
    margin-bottom: clamp(20px, 2.0833333333vw, 40px);
  }
}
.p-confirm__btnWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.p-thanks__text {
  text-align: center;
  margin-top: 4.6875vw;
}
@media screen and (max-width: 1920px) {
  .p-thanks__text {
    margin-top: clamp(45px, 4.6875vw, 90px);
  }
}

.p-course02-mainVisual {
  position: relative;
  background-image: url(/assets/img/course02/main.webp);
  background-size: cover;
  background-position: 70%;
  background-repeat: no-repeat;
  aspect-ratio: 1920/660;
}
@media screen and (max-width: 1920px) {
  .p-course02-mainVisual {
    width: 100%;
    height: 660px;
  }
}
.p-course02-mainVisual__btn {
  position: absolute;
  bottom: 2.7083333333vw;
  right: 3.6458333333vw;
  word-break: keep-all;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-mainVisual__btn {
    width: min(472px, 100%);
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course02-mainVisual__btn {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 10%;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 319px) {
  .p-course02-mainVisual__btn {
    font-size: 0.875rem;
  }
}
.p-course02-mainVisual__btn span {
  width: calc(100% - 90px);
  display: block;
  margin-inline: auto;
  text-align: center;
}

.p-course02-title {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.1rem;
  letter-spacing: 0.1rem;
  text-align: center;
  word-break: keep-all;
  padding-top: 2.0833333333vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 2.3958333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-title {
    font-size: 2.875rem;
    padding-top: clamp(32px, 1.6666666667vw, 40px);
  }
}
.p-course02-title > .--col-secondary {
  color: #f67d61;
}

.p-course02-figure {
  padding-top: 4.5833333333vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-figure {
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}

.p-course02-block {
  display: flex;
  gap: 5.9895833333vw;
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-block {
    gap: 115px;
    margin-top: clamp(20px, 2.0833333333vw, 40px);
  }
}
@media screen and (max-width: 1023px) {
  .p-course02-block {
    flex-direction: column;
    gap: 60px;
  }
}
.p-course02-block__inner {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .p-course02-block__inner {
    width: 100%;
  }
}
.p-course02-block__lead {
  text-align: center;
  word-break: keep-all;
  margin-top: 1.4583333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-block__lead {
    margin-top: clamp(14px, 1.4583333333vw, 28px);
  }
}

.p-course02-graph__img {
  width: 29.6875vw;
  padding-top: 2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-graph__img {
    width: min(716px, 100%);
    margin-inline: auto;
    padding-top: clamp(20px, 2.0833333333vw, 40px);
  }
}
.p-course02-graph__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-course02-graph__text {
  text-align: center;
  color: #6e223c;
  font-weight: 700;
  word-break: keep-all;
}
.p-course02-graph__text > .--col-secondary {
  color: #f67d61;
}

.p-course02-graph-title {
  width: 33.3333333333vw;
  margin-inline: auto;
  margin-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-graph-title {
    gap: 115px;
    margin-bottom: clamp(24px, 1.25vw, 88px);
  }
}
@media screen and (max-width: 1023px) {
  .p-course02-graph-title {
    width: 80%;
  }
}
.p-course02-graph-title__text {
  border: #6e223c 2px solid;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 2px;
  font-weight: 500;
  word-break: keep-all;
  font-size: 1.3020833333vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .p-course02-graph-title__text {
    font-size: 1.5625rem;
  }
}
.p-course02-graph-title__text::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 100%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: #f67d61;
  z-index: -1;
}
.p-course02-graph-title__text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 60px;
  width: 18px;
  height: 2px;
  background-color: #6e223c;
  transform: rotate(45deg);
}
.p-course02-graph-title__text > .--col-secondary {
  color: #ffff2a;
}

.p-course02-study-balloon {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  text-align: center;
  color: #6e223c;
  font-size: 20px;
  font-weight: bold;
  background: #ffe3c7;
  padding: 0.625vw 0.8333333333vw;
  border-radius: 1.875vw;
  border: solid 2px #6e223c;
  margin-top: 1.25vw;
  margin-bottom: 1.25vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-study-balloon {
    width: min(370px, 100%);
    margin-top: clamp(24px, 1.25vw, 24px);
    margin-bottom: clamp(24px, 1.25vw, 24px);
    font-size: 1rem;
  }
}
.p-course02-study-balloon:before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  translate: -50% 0;
  border: 6px solid transparent;
  border-top: 16px solid #ffe3c7;
  z-index: 2;
}
.p-course02-study-balloon:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  translate: -50% 0;
  border: 8px solid transparent;
  border-top: 16px solid #6e223c;
  z-index: 1;
}
.p-course02-study-balloon > p {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.p-course02-study {
  padding-top: 5.2083333333vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-study {
    padding-top: clamp(50px, 5.2083333333vw, 100px);
    padding-top: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-course02-study__title {
  text-align: center;
}
.p-course02-study__title h2 {
  word-break: keep-all;
}
.p-course02-study__lead {
  text-align: center;
  word-break: keep-all;
  margin-top: 0.78125vw;
  margin-bottom: 3.125vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-study__lead {
    margin-top: clamp(8px, 0.8333333333vw, 16px);
    margin-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-course02-study__lead > .--col-secondary {
  color: #1aae83;
}
.p-course02-study__text {
  word-break: keep-all;
}
.p-course02-study__text span {
  white-space: nowrap;
}
@media screen and (max-width: 479px) {
  .p-course02-study__text {
    text-align: left;
    word-break: break-all;
  }
}
.p-course02-study__box-wrap {
  display: flex;
  justify-content: center;
  gap: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-study__box-wrap {
    gap: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .p-course02-study__box-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.p-course02-study__box-icon {
  width: 2.0833333333vw;
  display: grid;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .p-course02-study__box-icon {
    width: min(40px, 100%);
  }
}
.p-course02-study__box-icon img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-course02-study__btn {
  margin-top: 2.7604166667vw;
  padding-bottom: 2.7604166667vw;
  margin-left: auto;
  margin-right: auto;
  width: 18.2291666667vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-study__btn {
    width: min(350px, 100%);
    margin-top: clamp(26px, 2.7604166667vw, 53px);
    padding-bottom: clamp(26px, 2.7604166667vw, 53px);
  }
}
.p-course02-study__btn > .c-common-btn {
  color: #fff;
}
.p-course02-study__btn > .c-common-btn p {
  background-color: #f6bd46;
  border: 1px solid #86503b;
}
.p-course02-study__btn > .c-common-btn p::before {
  right: 5%;
  background-color: #fff;
}
.p-course02-study__btn > .c-common-btn::before {
  background-color: #d1a13b;
  border: 1px solid #86503b;
}

.p-course02-study-detail {
  width: 36.4583333333vw;
  border-radius: 10px;
  border: 1px solid #414143;
  background-color: #fff;
}
@media screen and (max-width: 1920px) {
  .p-course02-study-detail {
    width: min(700px, 100%);
  }
}
.p-course02-study-detail__title {
  color: #fff;
  padding: 1.5625vw;
  text-align: center;
  border-radius: 10px 10px 0 0;
  background-color: #f67d61;
  font-size: 2.0833333333vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-study-detail__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course02-study-detail__title {
    flex-direction: column;
    gap: 0.8333333333vw;
  }
}
.p-course02-study-detail__title span {
  color: #ffff2a;
  border: solid 2px #ffff2a;
  padding: 5px 10px;
  font-size: 1.1979166667vw;
  font-weight: 400;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .p-course02-study-detail__title span {
    font-size: 1.4375rem;
  }
}
.p-course02-study-detail__box {
  padding-top: 1.5625vw;
  padding-bottom: 1.5625vw;
  padding-right: 1.5625vw;
  padding-left: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-study-detail__box {
    padding-top: clamp(15px, 1.5625vw, 30px);
    padding-bottom: clamp(15px, 1.5625vw, 30px);
    padding-right: clamp(15px, 2.9166666667vw, 56px);
    padding-left: clamp(15px, 2.9166666667vw, 56px);
  }
}
.p-course02-study-detail__list {
  text-align: center;
  padding: 8px;
  width: 100%;
  max-width: 24.4791666667vw;
  margin: 0 auto;
}
@media screen and (max-width: 1920px) {
  .p-course02-study-detail__list {
    max-width: 470px;
  }
}
.p-course02-study-detail__list > li {
  position: relative;
  padding-left: 1.5625vw;
  border: solid 2px #eee8dd;
  border-radius: 32px;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  padding-top: 0.4166666667vw;
  padding-bottom: 0.4166666667vw;
  margin-top: clamp(10px, 1.0416666667vw, 20px);
  font-size: 1.40625vw;
  font-weight: 500;
}
@media screen and (max-width: 1920px) {
  .p-course02-study-detail__list > li {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 1.6875rem;
    margin-top: clamp(10px, 1.0416666667vw, 20px);
    padding-top: clamp(10px, 1.0416666667vw, 20px);
    padding-bottom: clamp(10px, 1.0416666667vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-course02-study-detail__list > li {
    font-size: 1.1428571429rem;
  }
}
.p-course02-study-detail__list > li > span {
  position: relative;
  font-weight: 700;
}
.p-course02-study-detail__list > li > span::before {
  content: "";
  position: absolute;
  left: -1.5625vw;
  top: 50%;
  translate: 0 -50%;
  background-color: #f67d61;
  display: inline-block;
  -webkit-mask: url(../img/common/c-common-check-green.svg) no-repeat center/contain;
  mask: url(../img/common/c-common-check-green.svg) no-repeat center/contain;
  margin-right: 16px;
  vertical-align: -2px;
  width: 0.8854166667vw;
  height: 1.9444444444vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-study-detail__list > li > span::before {
    left: -30px;
    width: 17px;
    height: 21px;
  }
}
.p-course02-study-detail__text {
  text-align: center;
  word-break: keep-all;
  padding-top: clamp(20px, 2.0833333333vw, 40px);
}
@media screen and (max-width: 479px) {
  .p-course02-study-detail__text {
    text-align: left;
    word-break: break-all;
  }
}

.p-course02-howto {
  display: flex;
  justify-content: center;
  gap: 9.8958333333vw;
  padding-top: 4.5833333333vw;
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-howto {
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
@media screen and (max-width: 767px) {
  .p-course02-howto {
    flex-direction: column;
    align-items: center;
  }
}
.p-course02-howto__title {
  color: #fff;
}
.p-course02-howto__title span {
  color: #fff;
}
.p-course02-howto__title span::after {
  mask-image: url(/assets/img/common/en-title-dec.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  background-color: #fff;
  background-image: none;
}
.p-course02-howto__title h2 {
  color: #fff;
}
.p-course02-howto__title img {
  margin-top: 5.2083333333vw;
  vertical-align: middle;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1920px) {
  .p-course02-howto__title img {
    margin-top: clamp(50px, 5.2083333333vw, 100px);
  }
}
.p-course02-howto__img {
  width: 26.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-course02-howto__img {
    width: min(510px, 100%);
  }
}
.p-course02-howto__img img {
  margin-top: 2.0833333333vw;
  vertical-align: middle;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1920px) {
  .p-course02-howto__img img {
    margin-top: clamp(20px, 2.0833333333vw, 40px);
  }
}
.p-course02-howto .p-course02-graph-title__text {
  border: 0;
  padding: 0;
}
.p-course02-howto .p-course02-graph-title__text::before {
  left: 4px;
  top: 4px;
  background-color: #f66361;
  z-index: 1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}
.p-course02-howto .p-course02-graph-title__text::after {
  bottom: -4px;
  z-index: 2;
}
.p-course02-howto .p-course02-graph-title__text p {
  border: #6e223c 2px solid;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 2px;
  font-weight: 500;
  z-index: 1;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.p-course02-howto .p-course02-graph-title__text p > .--col-secondary {
  color: #ffff2a;
}

.p-course01-mainVisual {
  position: relative;
  background-image: url(/assets/img/course01/main.webp);
  background-size: cover;
  background-position: 60%;
  background-repeat: no-repeat;
  aspect-ratio: 1920/660;
}
@media screen and (max-width: 1920px) {
  .p-course01-mainVisual {
    width: 100%;
    height: 660px;
  }
}
@media screen and (max-width: 767px) {
  .p-course01-mainVisual {
    background-position-x: 58%;
  }
}
.p-course01-mainVisual__btn {
  word-break: keep-all;
  position: absolute;
  bottom: 2.7083333333vw;
  right: 3.6458333333vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-mainVisual__btn {
    width: min(472px, 100%);
  }
}
@media screen and (max-width: 767px) {
  .p-course01-mainVisual__btn {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 6%;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 319px) {
  .p-course01-mainVisual__btn {
    font-size: 0.875rem;
  }
}
.p-course01-mainVisual__btn span {
  width: calc(100% - 90px);
  display: block;
  margin-inline: auto;
  text-align: center;
}

.p-course01-content {
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-content {
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-course01-content__title {
  text-align: center;
}
.p-course01-content__lead-block {
  display: flex;
  column-gap: 4.1666666667vw;
  padding-top: 1.5625vw;
  padding-bottom: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-content__lead-block {
    padding-top: clamp(15px, 1.5625vw, 30px);
    padding-bottom: clamp(15px, 1.5625vw, 30px);
  }
}
@media screen and (max-width: 1199px) {
  .p-course01-content__lead-block {
    flex-direction: column;
  }
}
.p-course01-content__item {
  width: 50%;
}
@media screen and (max-width: 1199px) {
  .p-course01-content__item {
    width: 100%;
  }
}

.p-course01-graph {
  text-align: center;
}
.p-course01-graph__text {
  color: #005114;
  margin-bottom: clamp(16px, 0.8333333333vw, 24px);
  font-weight: 600;
}
.p-course01-graph__text > .--col-secondary {
  color: red;
}
.p-course01-graph__itemImg {
  padding-top: 2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-graph__itemImg {
    padding-top: clamp(20px, 2.0833333333vw, 40px);
  }
}
.p-course01-graph__itemImg img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-course01-graph-title {
  margin-bottom: clamp(24px, 1.25vw, 88px);
  width: 89%;
  margin-left: auto;
  margin-right: auto;
}
.p-course01-graph-title__text {
  border: #005114 2px solid;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 2px;
  word-break: keep-all;
  font-size: 1.3020833333vw;
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .p-course01-graph-title__text {
    font-size: 1.5625rem;
  }
}
.p-course01-graph-title__text::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 100%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: #1aae83;
  z-index: -1;
}
.p-course01-graph-title__text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 60px;
  width: 18px;
  height: 2px;
  background-color: #005114;
  transform: rotate(45deg);
}
.p-course01-graph-title__text > .--col-secondary {
  color: #ffff2a;
}

.p-course01-textarea {
  font-size: 0.78125vw;
}
.p-course01-textarea__title {
  font-weight: 500;
  font-size: 2.3958333333vw;
  line-height: 1.4;
  letter-spacing: -0.1rem;
  padding-top: clamp(32px, 1.6666666667vw, 40px);
  margin-bottom: clamp(32px, 1.6666666667vw, 24px);
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1920px) {
  .p-course01-textarea__title {
    font-size: 2.875rem;
  }
}
.p-course01-textarea__title > .--col-secondary {
  color: #1aae83;
}
.p-course01-textarea__pointList {
  padding-top: 0.8333333333vw;
  padding-bottom: 0.8333333333vw;
  padding-left: 0.2083333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-textarea__pointList {
    padding-top: clamp(16px, 1.25vw, 16px);
    padding-bottom: clamp(16px, 1.25vw, 16px);
  }
}
.p-course01-textarea__pointList li {
  position: relative;
  margin-top: 0.5208333333vw;
  padding-left: 0.78125vw;
  font-weight: 500;
}
@media screen and (max-width: 1920px) {
  .p-course01-textarea__pointList li {
    margin-top: clamp(5px, 0.2604166667vw, 5px);
    padding-left: clamp(15px, 0.78125vw, 15px);
  }
}
.p-course01-textarea__pointList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: #1aae83;
  width: 0.3125vw;
  height: 0.3125vw;
  border-radius: 50%;
}
@media screen and (max-width: 1920px) {
  .p-course01-textarea__pointList li::before {
    width: 6px;
    height: 6px;
    top: 1em;
  }
}

.p-course01-study {
  padding-top: 5.2083333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-study {
    padding-top: clamp(25px, 5.2083333333w, 100px);
  }
}
.p-course01-study__title {
  text-align: center;
}
.p-course01-study__lead {
  text-align: center;
  margin-top: 0.8333333333vw;
  margin-bottom: 3.125vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-study__lead {
    margin-top: clamp(8px, 0.8333333333vw, 16px);
    margin-bottom: clamp(30px, 3.125vw, 60px);
  }
}
.p-course01-study__lead > .--col-secondary {
  color: #1aae83;
}
.p-course01-study__box-wrap {
  display: flex;
  justify-content: center;
  gap: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-study__box-wrap {
    gap: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .p-course01-study__box-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.p-course01-study__box-icon {
  width: 2.0833333333vw;
  display: grid;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .p-course01-study__box-icon {
    width: 40px;
  }
}
.p-course01-study__box-icon img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-course01-study__btn {
  margin-top: 2.7604166667vw;
  padding-bottom: 2.7604166667vw;
  margin-left: auto;
  margin-right: auto;
  width: 24.4791666667vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-study__btn {
    width: min(470px, 100%);
    margin-top: clamp(26px, 2.7604166667vw, 53px);
    padding-bottom: clamp(26px, 2.7604166667vw, 53px);
  }
}
.p-course01-study__btn > .c-common-btn {
  color: #fff;
}
.p-course01-study__btn > .c-common-btn p {
  background-color: #f6bd46;
  border: 1px solid #86503b;
}
.p-course01-study__btn > .c-common-btn p::before {
  right: 5%;
  background-color: #fff;
}
.p-course01-study__btn > .c-common-btn::before {
  background-color: #d1a13b;
  border: 1px solid #86503b;
}

.p-course01-study-balloon {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  text-align: center;
  color: #005114;
  font-size: 20px;
  font-weight: bold;
  background: #ccff66;
  padding: 0.625vw 0.8333333333vw;
  border-radius: 1.875vw;
  border: solid 2px #005114;
  margin-top: 1.25vw;
  margin-bottom: 1.25vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-study-balloon {
    width: min(370px, 100%);
    font-size: 1rem;
    margin-top: clamp(24px, 1.25vw, 24px);
    margin-bottom: clamp(24px, 1.25vw, 24px);
  }
}
.p-course01-study-balloon:before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  translate: -50% 0;
  border: 6px solid transparent;
  border-top: 16px solid #ccff66;
  z-index: 2;
}
.p-course01-study-balloon:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  translate: -50% 0;
  border: 8px solid transparent;
  border-top: 16px solid #005114;
  z-index: 1;
}
.p-course01-study-balloon > p {
  margin: 0;
  padding: 0;
}
.p-course01-study-balloon__h2 {
  word-break: keep-all;
}

.p-course01-study-detail {
  width: 36.4583333333vw;
  border-radius: 10px;
  border: 1px solid #414143;
  background-color: #fff;
}
@media screen and (max-width: 1920px) {
  .p-course01-study-detail {
    width: min(700px, 100%);
  }
}
.p-course01-study-detail__title {
  color: #fff;
  padding: 1.5625vw;
  text-align: center;
  border-radius: 10px 10px 0 0;
  background-color: #1aae83;
  font-size: 2.0833333333vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-study-detail__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course01-study-detail__title {
    flex-direction: column;
    gap: 0.8333333333vw;
  }
}
.p-course01-study-detail__title span {
  color: #ffff2a;
  border: solid 2px #ffff2a;
  padding: 5px 10px;
  font-size: 1.1979166667vw;
  font-weight: 400;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .p-course01-study-detail__title span {
    font-size: 1.4375rem;
  }
}
.p-course01-study-detail__box {
  padding-top: 1.5625vw;
  padding-bottom: 1.5625vw;
  padding-right: 1.5625vw;
  padding-left: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-study-detail__box {
    padding-top: clamp(15px, 1.5625vw, 30px);
    padding-bottom: clamp(15px, 1.5625vw, 30px);
    padding-right: clamp(30px, 2.9166666667vw, 56px);
    padding-left: clamp(30px, 2.9166666667vw, 56px);
  }
}
.p-course01-study-detail__list {
  text-align: center;
  padding: 8px;
  width: 100%;
  max-width: 24.4791666667vw;
  margin: 0 auto;
}
@media screen and (max-width: 1920px) {
  .p-course01-study-detail__list {
    max-width: 470px;
  }
}
.p-course01-study-detail__list > li {
  position: relative;
  padding-left: 1.5625vw;
  border: solid 2px #eee8dd;
  border-radius: 32px;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  padding-top: 0.4166666667vw;
  padding-bottom: 0.4166666667vw;
  margin-top: clamp(10px, 1.0416666667vw, 20px);
  font-size: 1.40625vw;
  font-weight: 500;
}
@media screen and (max-width: 1920px) {
  .p-course01-study-detail__list > li {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 1.6875rem;
    margin-top: clamp(10px, 1.0416666667vw, 20px);
    padding-top: clamp(10px, 1.0416666667vw, 20px);
    padding-bottom: clamp(10px, 1.0416666667vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-course01-study-detail__list > li {
    font-size: 1.1428571429rem;
  }
}
.p-course01-study-detail__list > li > span {
  position: relative;
  font-weight: 700;
}
.p-course01-study-detail__list > li > span::before {
  content: "";
  position: absolute;
  left: -1.5625vw;
  top: 50%;
  translate: 0 -50%;
  background-color: #1aae83;
  display: inline-block;
  -webkit-mask: url(../img/common/c-common-check-green.svg) no-repeat center/contain;
  mask: url(../img/common/c-common-check-green.svg) no-repeat center/contain;
  margin-right: 16px;
  vertical-align: -2px;
  width: 0.8854166667vw;
  height: 1.9444444444vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-study-detail__list > li > span::before {
    left: -30px;
    width: 17px;
    height: 21px;
  }
}
.p-course01-study-detail__text {
  text-align: center;
  padding-top: clamp(20px, 2.0833333333vw, 40px);
}

.p-course01-howto {
  padding-top: 5.2083333333vw;
  padding-bottom: 3.125vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-howto {
    padding-top: clamp(25px, 5.2083333333w, 100px);
    padding-bottom: clamp(20px, 3.125w, 60px);
  }
}
.p-course01-howto__title {
  text-align: center;
}
.p-course01-howto__title > .c-headLine02 {
  color: #fff;
}
.p-course01-howto__lead {
  color: #fff;
  text-align: center;
  margin-top: 0.78125vw;
  margin-bottom: 3.125vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-howto__lead {
    margin-top: clamp(8px, 0.8333333333vw, 16px);
    margin-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-course01-howto__timeline {
  max-width: 62.5vw;
  margin-inline: auto;
  display: flex;
  gap: 2.0833333333vw;
  justify-content: space-between;
}
@media screen and (max-width: 1920px) {
  .p-course01-howto__timeline {
    max-width: 1200px;
    gap: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .p-course01-howto__timeline {
    flex-direction: column;
    gap: 60px;
  }
}

.p-course01-timeline {
  flex: 1;
  position: relative;
  /* 縦線 & 見出し整列用 */
  padding-left: 4.6875vw;
  /* 時刻＋ラインぶんの余白 */
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline {
    padding-left: 90px;
  }
}
.p-course01-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2.8645833333vw;
  /* 時刻の右端を基準にラインを引く */
  width: 0.2083333333vw;
  background: #deff73;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline::before {
    left: 55px;
    width: 4px;
  }
}
.p-course01-timeline__title {
  font-family: "Zen Kaku Gothic New";
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1.4583333333vw;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline__title {
    font-size: 1.75rem;
    margin-bottom: clamp(8px, 1.25vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-course01-timeline__title {
    font-size: 1.3333333333rem;
  }
}
@media screen and (max-width: 479px) {
  .p-course01-timeline__title {
    font-size: 1.1666666667rem;
  }
}
.p-course01-timeline__block {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-course01-timeline__item {
  position: relative;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline__item {
    margin-bottom: 40px;
  }
}
.p-course01-timeline__item > time {
  position: absolute;
  font-family: "Zen Kaku Gothic New";
  left: -6.25vw;
  top: 0.3125vw;
  width: 3.6458333333vw;
  /* column の padding-left と連動 */
  font-weight: 700;
  color: #fff;
  text-align: right;
  font-size: 1.3541666667vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline__item > time {
    left: -120px;
    top: 6px;
    width: 70px;
    font-size: 1.625rem;
  }
}
.p-course01-timeline__item > .p-course01-timeline__timeGreen {
  color: #deff73;
}
.p-course01-timeline__item::before {
  content: "";
  position: absolute;
  left: -2.1875vw;
  /* 縦線中央に揃える */
  top: 1.4583333333vw;
  width: 0.7291666667vw;
  height: 0.7291666667vw;
  border: 0.15625vw solid #0c8145;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline__item::before {
    left: -42px;
    top: 28px;
    width: 14px;
    height: 14px;
    border: 3px solid #0c8145;
  }
}
.p-course01-timeline__item.--secondary::before {
  border: 0.15625vw solid #005114;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline__item.--secondary::before {
    border: 3px solid #005114;
  }
}
.p-course01-timeline__item.--secondary > .p-course01-timeline-card {
  background: #ceedd9;
}
.p-course01-timeline__item.--secondary > .p-course01-timeline-card:before {
  border-right: 1.1458333333vw solid #ceedd9;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline__item.--secondary > .p-course01-timeline-card:before {
    border-right: 22px solid #ceedd9;
  }
}

.p-course01-timeline-card {
  background: #ffffff;
  border-radius: 0.4166666667vw;
  padding: 1.1458333333vw 1.4583333333vw;
  color: #414143;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border: solid 1px #005114;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline-card {
    border-radius: 8px;
    padding: 22px 28px;
  }
}
.p-course01-timeline-card:before {
  content: "";
  position: absolute;
  top: 2.0833333333vw;
  left: -1.3541666667vw;
  margin-top: -0.625vw;
  border: 0.4166666667vw solid transparent;
  border-right: 1.1458333333vw solid #fff;
  z-index: 2;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline-card:before {
    top: 40px;
    left: -26px;
    margin-top: -12px;
    border: 8px solid transparent;
    border-right: 22px solid #fff;
  }
}
.p-course01-timeline-card:after {
  content: "";
  position: absolute;
  top: 2.0833333333vw;
  left: -1.4583333333vw;
  margin-top: -0.625vw;
  border: 0.4166666667vw solid transparent;
  border-right: 1.1458333333vw solid #005114;
  z-index: 1;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline-card:after {
    top: 40px;
    left: -28px;
    margin-top: -12px;
    border: 8px solid transparent;
    border-right: 22px solid #005114;
  }
}
.p-course01-timeline-card__title {
  color: #005114;
  font-weight: 500;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline-card__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course01-timeline-card__title {
    font-size: 0.9523809524rem;
  }
}
.p-course01-timeline-card > p {
  line-height: 1.6;
}
.p-course01-timeline-card__2col {
  display: flex;
  align-items: center;
}
.p-course01-timeline-card__2col-itemImg {
  width: 10.46875vw;
  min-width: 201px;
}
@media screen and (max-width: 1920px) {
  .p-course01-timeline-card__2col-itemImg {
    min-width: 30%;
  }
}
.p-course01-timeline-card__2col-itemImg img {
  width: 100%;
  height: auto;
}
.p-course01-timeline-card__2col > p {
  padding-bottom: clamp(24px, 5.2083333333vw, 100px);
  width: 15em;
}
@media screen and (max-width: 1023px) {
  .p-course01-timeline-card__2col > p {
    width: 100%;
  }
}

.p-course03-body {
  width: 100%;
  overflow-x: hidden;
}

.p-course03-mainVisual {
  position: relative;
  background-image: url(/assets/img/course03/main.webp);
  background-size: cover;
  background-position: 70%;
  background-repeat: no-repeat;
  aspect-ratio: 1920/660;
}
@media screen and (max-width: 1920px) {
  .p-course03-mainVisual {
    width: 100%;
    height: 660px;
  }
}
.p-course03-mainVisual__btn {
  position: absolute;
  bottom: 2.7083333333vw;
  right: 3.6458333333vw;
  word-break: keep-all;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-mainVisual__btn {
    width: min(472px, 100%);
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course03-mainVisual__btn {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 10%;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 319px) {
  .p-course03-mainVisual__btn {
    font-size: 0.875rem;
  }
}
.p-course03-mainVisual__btn span {
  width: calc(100% - 90px);
  display: block;
  margin-inline: auto;
  text-align: center;
}

.p-course03-content {
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-content {
    padding-top: clamp(44px, 4.5833333333vw, 88px);
    padding-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-course03-content__title {
  text-align: center;
}
.p-course03-content__lead-block {
  display: flex;
  column-gap: 4.1666666667vw;
  padding-top: 1.5625vw;
  padding-bottom: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-content__lead-block {
    padding-top: clamp(15px, 1.5625vw, 30px);
    padding-bottom: clamp(15px, 1.5625vw, 30px);
  }
}
@media screen and (max-width: 1199px) {
  .p-course03-content__lead-block {
    flex-direction: column;
  }
}
.p-course03-content__item {
  width: 50%;
}
@media screen and (max-width: 1199px) {
  .p-course03-content__item {
    width: 100%;
  }
}

.p-course03-graph {
  text-align: center;
  position: relative;
}
.p-course03-graph__title-wrap {
  position: absolute;
  top: 0;
  z-index: 1;
  padding-top: 2.0833333333vw;
  width: 100%;
}
@media screen and (max-width: 1920px) {
  .p-course03-graph__title-wrap {
    padding-top: clamp(20px, 2.0833333333vw, 40px);
  }
}
.p-course03-graph__text {
  color: #005114;
  margin-bottom: clamp(16px, 0.8333333333vw, 24px);
  font-weight: 600;
}
.p-course03-graph__text > .--col-secondary {
  color: #1aae83;
}
.p-course03-graph__itemImg img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-course03-graph-title {
  margin-bottom: clamp(24px, 1.25vw, 88px);
  width: 89%;
  margin-left: auto;
  margin-right: auto;
}
.p-course03-graph-title__text {
  border: #424081 2px solid;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 2px;
  font-size: 1.3020833333vw;
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .p-course03-graph-title__text {
    font-size: 1.5625rem;
  }
}
.p-course03-graph-title__text::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 100%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: #7f6cdc;
  z-index: -1;
}
.p-course03-graph-title__text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 60px;
  width: 18px;
  height: 2px;
  background-color: #2b267d;
  transform: rotate(45deg);
}
.p-course03-graph-title__text > .--col-secondary {
  color: #ffff2a;
}

.p-course03-textarea {
  font-size: 0.78125vw;
}
.p-course03-textarea__title {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  font-size: 2.3958333333vw;
  padding-top: clamp(32px, 1.6666666667vw, 40px);
  margin-bottom: clamp(32px, 1.6666666667vw, 24px);
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .p-course03-textarea__title {
    font-size: 2.875rem;
  }
}
.p-course03-textarea__title > .--col-secondary {
  color: #7f6cdc;
}
.p-course03-textarea__pointList {
  padding-top: 0.8333333333vw;
  padding-bottom: 0.8333333333vw;
  padding-left: 0.2083333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-textarea__pointList {
    padding-top: clamp(16px, 1.25vw, 16px);
    padding-bottom: clamp(16px, 1.25vw, 16px);
  }
}
.p-course03-textarea__pointList li {
  position: relative;
  margin-top: 0.5208333333vw;
  padding-left: 0.78125vw;
  font-weight: 500;
  line-break: strict;
  word-break: keep-all;
}
@media screen and (max-width: 1920px) {
  .p-course03-textarea__pointList li {
    margin-top: clamp(5px, 0.2604166667vw, 5px);
    padding-left: clamp(15px, 0.78125vw, 15px);
  }
}
.p-course03-textarea__pointList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: #7f6cdc;
  width: 0.3125vw;
  height: 0.3125vw;
  border-radius: 50%;
}
@media screen and (max-width: 1920px) {
  .p-course03-textarea__pointList li::before {
    width: 6px;
    height: 6px;
    top: 1em;
  }
}
.p-course03-textarea__pointList li span {
  display: inline-block;
}

.p-course03-study {
  padding-top: 5.2083333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study {
    padding-top: clamp(25px, 5.2083333333vw, 100px);
  }
}
.p-course03-study__title {
  text-align: center;
}
.p-course03-study__lead {
  text-align: center;
  margin-top: 0.78125vw;
  margin-bottom: 3.125vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study__lead {
    margin-top: clamp(8px, 0.8333333333vw, 16px);
    margin-bottom: clamp(44px, 4.5833333333vw, 88px);
  }
}
.p-course03-study__lead > .--col-secondary {
  color: #7f6cdc;
}
.p-course03-study__box-wrap {
  display: flex;
  justify-content: center;
  gap: 3.3333333333vw;
  margin-top: 4.0625vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study__box-wrap {
    margin-top: clamp(60px, 4.0625vw, 78px);
    gap: 74px;
  }
}
@media screen and (max-width: 1199px) {
  .p-course03-study__box-wrap {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}
.p-course03-study__box-block {
  width: 36.4583333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study__box-block {
    max-width: 700px;
    width: 100%;
  }
}
.p-course03-study__box-title {
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}
.p-course03-study__box-icon {
  max-width: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study__box-icon {
    width: min(700px, 100%);
    margin-bottom: clamp(16px, 1.25vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-course03-study__box-icon {
    margin-bottom: 18px;
  }
}
.p-course03-study__btn {
  margin-top: 2.7604166667vw;
  padding-bottom: 2.7604166667vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1920px) {
  .p-course03-study__btn {
    margin-top: clamp(26px, 2.7604166667vw, 53px);
    padding-bottom: clamp(26px, 2.7604166667vw, 53px);
  }
}
.p-course03-study__btn > .c-common-btn {
  color: #fff;
}
.p-course03-study__btn > .c-common-btn p {
  background-color: #f6bd46;
  border: 1px solid #86503b;
}
.p-course03-study__btn > .c-common-btn p::before {
  right: 5%;
  background-color: #fff;
}
.p-course03-study__btn > .c-common-btn::before {
  background-color: #d1a13b;
  border: 1px solid #86503b;
}
.p-course03-study__title-second {
  text-align: center;
  color: #424081;
  font-size: 1.4583333333vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 1920px) {
  .p-course03-study__title-second {
    font-size: 1.75rem;
  }
}

.p-course03-study-balloon {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  text-align: center;
  color: #424081;
  font-size: 20px;
  font-weight: bold;
  background: #a2e2ff;
  padding: 0.625vw 0.8333333333vw;
  border-radius: 1.875vw;
  border: solid 2px #424081;
  margin-top: 1.25vw;
  margin-bottom: 1.25vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study-balloon {
    width: min(370px, 100%);
    font-size: 1rem;
    margin-top: clamp(24px, 1.25vw, 24px);
    margin-bottom: clamp(24px, 1.25vw, 24px);
  }
}
.p-course03-study-balloon:before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  translate: -50% 0;
  border: 6px solid transparent;
  border-top: 16px solid #a2e2ff;
  z-index: 2;
}
.p-course03-study-balloon:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  translate: -50% 0;
  border: 8px solid transparent;
  border-top: 16px solid #005114;
  z-index: 1;
}
.p-course03-study-balloon > p {
  margin: 0;
  padding: 0;
}

.p-course03-study-detail {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #414143;
  background-color: #fff;
  margin-top: 1.6666666667vw;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study-detail {
    width: min(700px, 100%);
    margin-bottom: clamp(16px, 1.25vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-course03-study-detail {
    margin-bottom: 18px;
  }
}
.p-course03-study-detail__title {
  color: #fff;
  padding: 1.5625vw;
  text-align: center;
  background-color: #7f6cdc;
  font-size: 2.0833333333vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study-detail__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course03-study-detail__title {
    flex-direction: column;
    gap: 0.8333333333vw;
  }
}
.p-course03-study-detail__title span {
  color: #ffff2a;
  border: solid 2px #ffff2a;
  padding: 5px 10px;
  font-size: 1.1979166667vw;
  font-weight: 400;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 1920px) {
  .p-course03-study-detail__title span {
    font-size: 1.4375rem;
  }
}
.p-course03-study-detail__box {
  padding-top: 1.5625vw;
  padding-bottom: 2.0833333333vw;
  padding-right: 1.5625vw;
  padding-left: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study-detail__box {
    padding-top: clamp(15px, 1.5625vw, 30px);
    padding-bottom: clamp(40px, 3.125vw, 60px);
    padding-right: clamp(30px, 2.9166666667vw, 56px);
    padding-left: clamp(30px, 2.9166666667vw, 56px);
  }
}
.p-course03-study-detail__list {
  text-align: center;
  padding: 8px;
  max-width: 24.4791666667vw;
  margin: 0 auto;
}
@media screen and (max-width: 1499px) {
  .p-course03-study-detail__list {
    max-width: 100%;
  }
}
.p-course03-study-detail__list > li {
  position: relative;
  padding-left: 1.5625vw;
  border: solid 2px #eee8dd;
  border-radius: 32px;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  padding-top: 0.4166666667vw;
  padding-bottom: 0.4166666667vw;
  margin-top: clamp(10px, 1.0416666667vw, 20px);
  font-size: 1.40625vw;
  font-weight: 500;
}
@media screen and (max-width: 1920px) {
  .p-course03-study-detail__list > li {
    margin-top: 1.0416666667vw;
    font-size: 1.6875rem;
    padding-left: 1.0416666667vw;
    padding-right: 1.0416666667vw;
    padding-top: 0.4166666667vw;
    padding-bottom: 0.4166666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-course03-study-detail__list > li {
    font-size: 1.1428571429rem;
  }
}
.p-course03-study-detail__list > li > span {
  position: relative;
  font-weight: 700;
}
.p-course03-study-detail__list > li > span::before {
  content: "";
  position: absolute;
  left: -1.5625vw;
  top: 50%;
  translate: 0 -50%;
  background-color: #7f6cdc;
  display: inline-block;
  -webkit-mask: url(../img/common/c-common-check-green.svg) no-repeat center/contain;
  mask: url(../img/common/c-common-check-green.svg) no-repeat center/contain;
  margin-right: 16px;
  vertical-align: -2px;
  width: 0.8854166667vw;
  height: 1.9444444444vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-study-detail__list > li > span::before {
    left: -30px;
    width: 17px;
    height: 21px;
  }
}
.p-course03-study-detail__text {
  text-align: center;
  padding-top: clamp(20px, 2.0833333333vw, 40px);
}

.p-course03-roadmap__title {
  text-align: center;
  padding-top: 5.2083333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-roadmap__title {
    padding-top: clamp(25px, 5.2083333333w, 100px);
  }
}
.p-course03-roadmap__title > .c-headLine02 {
  color: #fff;
}
.p-course03-roadmap__lead {
  color: #fff;
  text-align: center;
  margin-top: 0.78125vw;
  margin-bottom: 2.0833333333vw;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.1rem;
  font-size: 1.9791666667vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-roadmap__lead {
    font-size: 2.375rem;
    margin-top: clamp(8px, 0.8333333333vw, 16px);
    margin-bottom: clamp(24px, 2.0833333333vw, 40px);
  }
}
@media screen and (max-width: 1199px) {
  .p-course03-roadmap__lead {
    font-size: 1.9791666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course03-roadmap__lead {
    font-size: 1.8095238095rem;
  }
}
@media screen and (max-width: 479px) {
  .p-course03-roadmap__lead {
    font-size: 1.5833333333rem;
  }
}
.p-course03-roadmap__lead > .--col-secondary {
  color: #ffff2a;
}
.p-course03-roadmap__timeline {
  width: 100%;
}

.p-course03-roadmap {
  position: relative;
  overflow: hidden;
}
.p-course03-roadmap__scroll {
  overflow-x: auto; /* ← 横スクロール有効 */
  -webkit-overflow-scrolling: touch; /* スマホでスムーズに */
  width: 100%;
}
.p-course03-roadmap__scroll::-webkit-scrollbar {
  height: 6px;
}
.p-course03-roadmap__scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.p-course03-roadmap__road {
  position: absolute;
  top: calc(50% - 3.6458333333vw);
  left: 0;
  right: 0;
  height: 3.125vw;
  background: #233146;
  /* 白線 */
}
@media screen and (max-width: 1920px) {
  .p-course03-roadmap__road {
    top: 35%;
    height: 60px;
  }
}
@media screen and (max-width: 1680px) {
  .p-course03-roadmap__road {
    width: 1680px;
  }
}
.p-course03-roadmap__road::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0.1041666667vw;
  background: repeating-linear-gradient(to right, transparent 0 1.0416666667vw, #fff 1.0416666667vw 2.0833333333vw);
  transform: translateY(-50%);
}
@media screen and (max-width: 1920px) {
  .p-course03-roadmap__road::before {
    height: 2px;
    background: repeating-linear-gradient(to right, transparent 0 20px, #fff 20px 40px);
  }
}
.p-course03-roadmap__inner {
  position: relative;
  display: flex;
  gap: 1.25vw;
  justify-content: flex-start;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-right: 10.4166666667vw;
  will-change: transform;
}
@media screen and (max-width: 1920px) {
  .p-course03-roadmap__inner {
    padding-right: 140px;
    gap: 24px;
  }
}
.p-course03-roadmap__goal {
  position: absolute;
  right: 2.0833333333vw;
  top: 6.1458333333vw;
  width: 7.5vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-roadmap__goal {
    top: 118px;
    right: 40px;
    max-width: 144px;
    min-width: 100px;
  }
}
.p-course03-roadmap__goal img {
  width: 100%;
  height: auto;
}

.p-course03-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 14.5833333333vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-step {
    min-width: 280px;
  }
}
@media (max-height: 500px) {
  .p-course03-step {
    transform: scale(0.6); /* 全体を75%に縮小 */
    transform-origin: center; /* 縮小の基準を中央に */
    margin: 0 10px; /* 横スクロール間隔を調整したいとき */
  }
}
.p-course03-step__img {
  padding-top: 1.25vw;
  width: 100%;
  max-width: 11.6666666667vw;
  min-width: 224px;
  z-index: 1;
}
@media screen and (max-width: 1920px) {
  .p-course03-step__img {
    padding-top: clamp(1px, 1.25vw, 24px);
    min-width: 180px;
  }
}
.p-course03-step__img img {
  width: 100%;
  height: auto;
}
.p-course03-step__img02 {
  padding-top: 1.25vw;
  width: 1.3541666667vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-step__img02 {
    padding-top: 24px;
    width: 26px;
  }
}
.p-course03-step__img02 img {
  width: 100%;
  height: auto;
}
.p-course03-step__card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #424081;
  background-color: #fff;
  margin-bottom: 1.25vw;
  min-width: 240px;
  width: 100%;
}
@media screen and (max-width: 1920px) {
  .p-course03-step__card {
    margin-bottom: clamp(1px, 1.25vw, 24px);
  }
}
.p-course03-step__card.--col-secandary > .p-course03-step__title {
  background-color: #43bdcc;
}
.p-course03-step__title {
  font-size: 1.1979166667vw;
  font-weight: 400;
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  background-color: #88a9ff;
  color: #fff;
  padding: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-step__title {
    font-size: 1.4375rem;
  }
}
.p-course03-step__textarea {
  text-align: center;
  font-weight: 500;
  font-size: 0.9375vw;
  padding: 1.25vw;
}
@media screen and (max-width: 1920px) {
  .p-course03-step__textarea {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course03-step__textarea {
    font-size: 0.8571428571rem;
  }
}

@media (max-height: 375px) {
  .js-roadmap {
    overflow-x: auto; /* 横スクロールを許可 */
    -webkit-overflow-scrolling: touch; /* iOSスムーズスクロール */
  }
  .p-course03-roadmap__inner {
    display: flex;
    gap: 16px; /* カード間の余白 */
  }
  .js-roadmap-scroll {
    flex: 0 0 auto; /* 縮小しても横並び維持 */
    transform: scale(0.75); /* 縮小 */
    transform-origin: center;
  }
}
.p-error {
  width: 25.5208333333vw;
  margin-inline: auto;
  text-align: center;
  padding-top: 10.4166666667vw;
  padding-bottom: 7.8125vw;
}
@media screen and (max-width: 1920px) {
  .p-error {
    width: min(490px, 100%);
    padding-bottom: 150px;
    padding-top: clamp(150px, 10.4166666667vw, 200px);
  }
}
.p-error__number {
  font-weight: 900;
  color: #ea7f24;
  line-height: 1;
  font-size: 9.375vw;
}
@media screen and (max-width: 1920px) {
  .p-error__number {
    font-size: 11.25rem;
  }
}
.p-error__en {
  font-weight: 900;
  font-size: 3.59375vw;
}
@media screen and (max-width: 1920px) {
  .p-error__en {
    font-size: 4.3125rem;
  }
}
.p-error__lead {
  font-weight: 600;
  font-size: 1.375rem;
  margin-top: 2.34375vw;
  font-size: 1.1458333333vw;
}
@media screen and (max-width: 1920px) {
  .p-error__lead {
    margin-top: clamp(27px, 2.34375vw, 45px);
    font-size: 1.375rem;
  }
}
.p-error__text {
  margin-top: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-error__text {
    margin-top: clamp(15px, 1.5625vw, 30px);
  }
}
.p-error__btn {
  display: block;
  margin-top: 1.5625vw;
}
@media screen and (max-width: 1920px) {
  .p-error__btn {
    margin-top: clamp(15px, 1.5625vw, 30px);
  }
}

.u-p-none {
  padding: 0;
}

.u-w-100 {
  width: 100%;
}

.u-color-orange {
  color: #ea7f24;
}

.u-color-green-dark {
  color: #005114;
}

.u-color-green {
  color: #1aae83;
}

.u-color-purple {
  color: #7f6cdc;
}

.u-color-purple-dark {
  color: #424081;
}

.u-color-red {
  color: #f67d61;
}

.u-color-red-dark {
  color: #6e223c;
}

.u-wbr-text {
  word-break: keep-all;
}

.u-fs-26 {
  font-size: 1.3541666667vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-26 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-26 {
    font-size: 1.2380952381rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-26 {
    font-size: 1.0833333333rem;
  }
}

.u-fs-38 {
  font-size: 1.9791666667vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-38 {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-38 {
    font-size: 1.8095238095rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-38 {
    font-size: 1.5833333333rem;
  }
}

.u-fs-42 {
  font-size: 2.1875vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-42 {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-42 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-42 {
    font-size: 1.75rem;
  }
}

.u-fs-46 {
  font-size: 2.3958333333vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-46 {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-46 {
    font-size: 2.1904761905rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-46 {
    font-size: 1.9166666667rem;
  }
}

.u-fs-50 {
  font-size: 2.6041666667vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-50 {
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-50 {
    font-size: 2.380952381rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-50 {
    font-size: 2.0833333333rem;
  }
}

.u-fs-55 {
  font-size: 2.8645833333vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-55 {
    font-size: 3.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-55 {
    font-size: 2.619047619rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-55 {
    font-size: 2.2916666667rem;
  }
}

.u-fs-59 {
  font-size: 3.0729166667vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-59 {
    font-size: 3.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-59 {
    font-size: 2.8095238095rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-59 {
    font-size: 2.4583333333rem;
  }
}

.u-fs-62 {
  font-size: 3.2291666667vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-62 {
    font-size: 3.875rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-62 {
    font-size: 2.9523809524rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-62 {
    font-size: 2.5833333333rem;
  }
}

.u-fs-64 {
  font-size: 3.3333333333vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-64 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-64 {
    font-size: 3.0476190476rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-64 {
    font-size: 2.6666666667rem;
  }
}

.u-fs-74 {
  font-size: 3.8541666667vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-74 {
    font-size: 4.625rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-74 {
    font-size: 3.5238095238rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-74 {
    font-size: 3.0833333333rem;
  }
}

.u-fs-75 {
  font-size: 3.90625vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-75 {
    font-size: 4.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-75 {
    font-size: 3.5714285714rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-75 {
    font-size: 3.125rem;
  }
}

.u-fs-160 {
  font-size: 8.3333333333vw;
}
@media screen and (max-width: 1920px) {
  .u-fs-160 {
    font-size: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-160 {
    font-size: 7.619047619rem;
  }
}
@media screen and (max-width: 479px) {
  .u-fs-160 {
    font-size: 6.6666666667rem;
  }
}

.u-font-jost {
  font-family: "Jost";
}

.u-font-jost-900 {
  font-weight: 900;
  font-family: "Jost";
}

.u-font-DelaGothic {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.u-font-DelaGothic-500 {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-weight: 500;
}

.u-font-Mplus-700 {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-weight: 700;
}

.u-lh-130 {
  line-height: 1.3;
}

.u-pseudo-none::before, .u-pseudo-none::after {
  content: none;
}