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

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

a:not([class]) {
  transition: ease-in-out, 0.3s;
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  vertical-align: top;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  vertical-align: middle;
}

:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  background: #ffffff;
  color: #1a151a;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  body {
    letter-spacing: normal;
    font-size: 0.875rem;
  }
}

main {
  margin-top: 8.6875rem;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 2.5625rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: ease-in-out, 0.3s;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* 背景カラー */
  background-color: white; /* 背景カラー */
  z-index: 99999; /* 一番手前に */
  pointer-events: none; /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0; /* 初期値では非表示 */ /* アニメーション時間は 0.8秒 */
  transition: opacity 0.25s ease;
}

body.js-fade::after {
  opacity: 1;
}

body.is-scroll-lock {
  overflow: hidden;
}

.js-body.is-active {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .js-navigation.is-open {
    pointer-events: inherit;
    transform: translateY(0);
  }
}

.js-fadeIn {
  opacity: 0;
  transition-duration: 1.6s;
  transition-property: opacity;
}

.js-fadeIn.is-scrollIn {
  opacity: 1;
}

.js-fadeUp {
  opacity: 0;
  transition-duration: 1.8s;
  transition-property: opacity, transform;
}

.js-fadeUp.is-scrollIn {
  opacity: 1;
}

.js-fadeUp.is-scrollIn.no-transition {
  transition-duration: 0s;
}

.js-fadeUp.no-transition {
  transition: none !important;
}

.l-container {
  max-width: 90rem;
  margin-inline: auto;
  overflow: clip;
}

.l-inner {
  max-width: 83.125rem;
  margin-inline: auto;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 37.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.c-arrow {
  position: relative;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.3s;
  z-index: 1;
}

.c-ellipse {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.c-ellipse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  border-radius: 50%;
  border: 1px dashed #1a151a;
  z-index: -2;
  width: 100%;
  height: 100%;
  transition: ease-in-out, 0.3s;
  box-shadow: 0 4px 4px rgba(26, 21, 26, 0.1);
}

.p-company__table {
  margin-top: 8.1875rem;
}
@media screen and (max-width: 767px) {
  .p-company__table {
    margin-top: 2rem;
  }
}

.p-footer__content {
  flex-shrink: 0;
}

.p-company__tr {
  border-bottom: 1px dashed #1a151a;
}

@media screen and (max-width: 767px) {
  .p-company__tr:first-child .p-company__th {
    padding-top: 0;
  }
}

.p-company__th,
.p-company__td {
  padding-block: 1.5rem;
  line-height: 1.1875;
}
@media screen and (max-width: 767px) {
  .p-company__th,
  .p-company__td {
    display: block;
    padding-block: 1rem;
  }
}

.p-company__th {
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__th {
    width: 100%;
    padding-bottom: 0;
  }
}

.p-company__td {
  padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__td {
    padding-inline: 0;
  }
}

.p-company__td span {
  line-height: 1.1875;
}

.p-company__td span + span {
  display: block;
  margin-top: 0.5rem;
}

.p-company__td a {
  line-height: 1.1875;
  transition: ease-in-out, 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-company__td a {
    text-decoration: underline;
    pointer-events: all;
  }
}

.p-company__td a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: 5rem;
  }
}

.p-contact__inner {
  max-width: 53.125rem;
  padding-top: 15rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-block: 5rem;
  }
}

.p-contact__text + .p-contact__text {
  margin-top: 2rem;
}

.p-contact__text-note {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__text-note {
    margin-top: 3rem;
  }
}

.p-contact__body {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__body {
    margin-top: 1.5rem;
  }
}

.p-contact-form__inner {
  max-width: 800px;
  margin-inline: auto;
}

.p-contact-form__dl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.p-contact-form__dl--textarea {
  align-items: flex-start;
}

.p-contact-form__dl:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__dl:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.p-contact-form__dd {
  width: 100%;
}

.p-contact-form__dd--radio {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
}

.p-contact-form__text,
.p-contact-form__mail,
textarea {
  width: 100%;
  height: auto;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border: 1px solid #1a151a;
  border-radius: 0.25rem;
  outline: none;
}
@media screen and (max-width: 767px) {
  .p-contact-form__text,
  .p-contact-form__mail,
  textarea {
    padding-block: 0.5rem;
    padding-inline: 1rem;
    font-size: 1rem;
  }
}

.p-contact-form__text:focus,
.p-contact-form__mail:focus,
textarea:focus {
  border: 1px solid #47bbaa;
}

.p-contact-form__text::-moz-placeholder, .p-contact-form__mail::-moz-placeholder, textarea::-moz-placeholder {
  color: #47bbaa;
}

.p-contact-form__text::placeholder,
.p-contact-form__mail::placeholder,
textarea::placeholder {
  color: #47bbaa;
}
@media screen and (max-width: 767px) {
  .p-contact-form__text::-moz-placeholder, .p-contact-form__mail::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 0.9375rem;
  }
  .p-contact-form__text::placeholder,
  .p-contact-form__mail::placeholder,
  textarea::placeholder {
    font-size: 0.9375rem;
  }
}

textarea {
  min-height: 12.5rem;
  resize: vertical;
}

input[type=checkbox] {
  display: none;
}

.p-contact-form__checkbox-txt {
  position: relative;
  display: inline-block;
  padding-left: 1.375rem;
  font-size: 1rem;
  cursor: pointer;
}
.p-contact-form__checkbox-txt input[type=checkbox] {
  display: none;
}
.p-contact-form__checkbox-txt::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  width: 0.9375rem;
  height: 0.9375rem;
  border: 1px solid #47bbaa;
}
.p-contact-form__checkbox-txt::after {
  content: "";
  position: absolute;
  top: 1.1875rem;
  left: 0.25rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.6875rem;
  height: 1.125rem;
  border-right: 0.1875rem solid #47bbaa;
  border-bottom: 0.1875rem solid #47bbaa;
  opacity: 0;
  transition: opacity 0.1s;
}
.p-contact-form__checkbox-txt:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
.p-contact-form__checkbox-txt br {
  display: contents;
}

@media (any-hover: hover) {
  .p-contact-form__checkbox-txt:hover {
    cursor: pointer;
  }
}
.radio-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.p-contact-form__radio .wpcf7-list-item label {
  position: relative;
  display: inline-block;
  padding-left: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio .wpcf7-list-item label {
    padding-left: 1.625rem;
  }
}
.p-contact-form__radio .wpcf7-list-item label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #47bbaa;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio .wpcf7-list-item label::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-contact-form__radio .wpcf7-list-item label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #47bbaa;
  opacity: 0;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio .wpcf7-list-item label::after {
    width: 1rem;
    height: 1rem;
  }
}

.p-contact-form__radio .wpcf7-list-item label input[type=radio] {
  display: none;
}

.p-contact-form__radio .wpcf7-list-item label:has(input[type=radio]:checked)::after {
  opacity: 1;
}

.p-contact-form__radio .wpcf7-list-item label:hover {
  cursor: pointer;
}

.p-contact-form__privacy {
  margin-top: 4rem;
  text-align: center;
}

.p-contact-form__privacy-txt {
  text-align: center;
}

.p-contact-form__checkbox-txt a {
  position: relative;
  color: #1a151a;
  vertical-align: baseline;
  overflow: clip;
}

.p-contact-form__checkbox-txt a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #1a151a;
  transition: ease-in-out, 0.3s;
}

.p-contact-form__checkbox-txt a:hover::before {
  left: 101%;
}

.p-contact-form__submit-wrapper {
  margin-top: 4rem;
}

.p-contact-form__submit-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.p-contact-form__submit-button {
  position: relative;
  width: 20rem;
  height: 6.3125rem;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit-button {
    width: 80%;
    height: 5.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-contact-form__submit-button p {
    width: 100%;
  }
}

.p-contact-form__submit-button.c-ellipse::before {
  background: linear-gradient(to top, #6ed3e2, #91d6cc);
  transition: ease-in-out, 0.3s;
}

.p-contact-form__submit-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-3deg);
  border-radius: 50%;
  background: #fdd000;
  border: 1px dashed #1a151a;
  width: 100%;
  height: 100%;
  transition: ease-in-out, 0.3s;
  opacity: 0;
}

@media (min-width: 768px) {
  .p-contact-form__submit-button:hover::after {
    opacity: 1;
  }
}

.p-contact-form__submit-button__arrow {
  position: absolute;
  top: 50%;
  left: 6.125rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.125rem;
  background: #1a151a;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit-button__arrow {
    left: 5rem;
    width: 6.25rem;
  }
}

.p-contact-form__submit {
  position: relative;
  width: 20rem;
  height: 6.3125rem;
  padding-left: 2.5rem;
  color: #1a151a;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
  font-size: 1.5rem;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit {
    width: 100%;
    padding-left: 1.25rem;
    font-size: 1rem;
  }
}

.p-contact-form__submit::-webkit-search-decoration {
  display: none;
}

.p-contact-form__privacy .wpcf7-list-item {
  margin: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #47bbaa;
}

.wpcf7-list-item-label {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item-label {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-contact-form__privacy .wpcf7-list-item-label {
    font-size: 0.875rem;
  }
}

.p-course-detail--01 {
  background: #065e4e;
}

.p-course-detail--02 {
  background: #21327c;
}

.p-course-detail__inner {
  padding-top: 7.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__inner {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.p-course-detail__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__header {
    gap: 0.25rem;
  }
}

.p-course-detail__category {
  display: inline-block;
  padding-inline: 2.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-course-detail__category {
    font-size: 0.875rem;
    padding: 0 1.5rem;
  }
}

.p-course-detail__title {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 4rem;
  line-height: 1.203125;
}
@media screen and (max-width: 767px) {
  .p-course-detail__title {
    font-size: 1.75rem;
  }
}

.p-course-detail__title-unit {
  display: inline-block;
  margin-left: 0.625rem;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.2083333333;
}
@media screen and (max-width: 767px) {
  .p-course-detail__title-unit {
    display: block;
    margin-left: 0;
    font-size: 1rem;
    text-align: center;
  }
}

.p-course-detail__body {
  margin-top: -2.25rem;
  background: #ffffff;
}

.p-course-detail__top {
  display: flex;
  align-items: flex-end;
  gap: 5rem;
  padding: 7.5rem 5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__top {
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 1rem 4rem;
  }
}

.p-course-detail__content {
  flex-shrink: 0;
}

.p-course-detail__text {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__text {
    font-size: 1rem;
  }
}

.p-course-detail__recommend {
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__recommend {
    margin-top: 1.25rem;
    padding: 0.625rem;
  }
}

.p-course-detail__conditions {
  padding: 2rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__conditions {
    padding: 1rem;
  }
}

.p-course-detail__conditions-title__en {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-course-detail__conditions-title__en {
    font-size: 0.875rem;
  }
}

.p-course-detail__conditions-title__ja {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-course-detail__conditions-title__ja {
    margin-top: 0.125rem;
    font-size: 1.375rem;
  }
}

.p-course-detail__conditions-table {
  margin-top: 2rem;
}

.p-course-detail__conditions-tr {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px dashed #1a151a;
}
@media screen and (max-width: 767px) {
  .p-course-detail__conditions-tr {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}

.p-course-detail__conditions-th,
.p-course-detail__conditions-td {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-course-detail__conditions-th,
  .p-course-detail__conditions-td {
    padding-block: 0.5rem;
  }
}

.p-course-detail__conditions-th {
  flex-shrink: 0;
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__conditions-th {
    width: 100%;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-course-detail__conditions-td {
    padding-top: 0;
  }
}

.p-course-detail__conditions-text {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .p-course-detail__conditions-button {
    margin-top: 0.5rem;
  }
}

.p-course-detail__conditions-button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  max-width: 9.25rem;
  margin-left: auto;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-course-detail__conditions-button a {
    max-width: 8.5rem;
  }
}

.p-course-detail__conditions-button a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #1a151a;
  transition: ease-in-out, 0.3s;
}

.p-course-detail__conditions-button a:hover::before {
  left: 101%;
}

.p-course-detail__conditions-button__icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(../images/common/icon_out_link.svg) center/contain no-repeat;
}

.p-course-detail__middle {
  padding: 5rem 5rem 2.5rem;
  border-top: 1px dashed #1a151a;
}
@media screen and (max-width: 767px) {
  .p-course-detail__middle {
    padding: 2.5rem 1rem;
  }
}

.p-course-detail__list {
  border-top: 1px dashed #1a151a;
}

.p-course-detail__item {
  padding-block: 5rem;
  padding-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__item {
    padding: 2.5rem 1rem;
  }
}

.p-course-detail__item:nth-of-type(1) {
  border-bottom: 1px dashed #1a151a;
}

.p-course-detail__item-header {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-header {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-course-detail__item-title__en {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  line-height: 1;
}

.p-course-detail__item-title__ja {
  color: #065e4e;
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-title__ja {
    font-size: 1.5rem;
    line-height: 1;
  }
}

.p-course-detail__item-title__ja-unit {
  display: inline-block;
  margin-left: 0.25rem;
  color: #065e4e;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-title__ja-unit {
    font-size: 1.25rem;
  }
}

.p-course-detail__item-text {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-course-detail__item-guideline {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px dashed #065e4e;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-guideline {
    margin-top: 1.25rem;
    padding-block: 1rem;
    padding-inline: 0.5rem;
  }
}

.p-course-detail__item-guideline__title {
  color: #065e4e;
}

.p-course-detail__item-guideline__text {
  margin-top: 0.625rem;
  letter-spacing: normal;
}

.p-course-detail__item-button {
  flex-shrink: 0;
  width: 10rem;
  height: 3.125rem;
  color: #ffffff;
  transition: ease-in-out, 0.3s;
}

.p-course-detail__item-button.is-open {
  color: #1a151a;
}

.p-course-detail__item-button.c-ellipse::before {
  background: #065e4e;
}

.p-course-detail__item-button.c-ellipse.is-open::before {
  background: #d7d7d7;
}

@media (min-width: 768px) {
  .p-course-detail__item-button.c-ellipse:hover {
    color: #1a151a;
  }
  .p-course-detail__item-button.c-ellipse:hover::before {
    background: #fdd000;
  }
}

.p-course-detail__item-body {
  max-height: 0;
  overflow: hidden;
  transition: ease-in-out, 0.3s;
  will-change: max-height;
}

.p-course-detail--01 .p-course-detail__content {
  width: 32.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--01 .p-course-detail__content {
    width: 100%;
  }
}

.p-course-detail--01 .p-course-detail__category {
  color: #065e4e;
}

.p-course-detail--01 .p-course-detail__title {
  background: #065e4e;
}

.p-course-detail--01 .p-course-detail__recommend {
  border: 1px dashed #065e4e;
}

.p-course-detail--01 .p-course-detail__conditions {
  background: #d5d5ab;
}

.p-course-detail--01 .p-course-detail__item-body {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--01 .p-course-detail__item-body {
    padding-top: 2rem;
  }
}

.p-course-detail--02 {
  background: #21327c;
}

.p-course-detail--02 .p-course-detail__content {
  width: 33.375rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--02 .p-course-detail__content {
    width: 100%;
  }
}

.p-course-detail--02 .p-course-detail__recommend {
  width: 32.5rem;
  border: 1px dashed #21327c;
}
@media screen and (max-width: 767px) {
  .p-course-detail--02 .p-course-detail__recommend {
    width: 100%;
  }
}

.p-course-detail--02 .p-course-detail__category {
  color: #21327c;
}

.p-course-detail--02 .p-course-detail__title {
  background: #21327c;
}

.p-course-detail--02 .p-course-detail__conditions {
  background: #f3eaee;
}

.p-course-difference {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-difference {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}

.p-course-difference__title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-course-difference__title {
    font-size: 1.5rem;
  }
}

.p-course-difference__text {
  letter-spacing: normal;
}

.p-course-table__header {
  text-align: center;
}

.p-course-table__label {
  display: block;
  color: #065e4e;
  font-size: 1.25rem;
}

.p-course-table__title {
  display: inline-block;
  margin-top: 0.5rem;
  padding-inline: 0.5rem;
  padding-block: 0.25rem;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.1875;
}
@media screen and (max-width: 767px) {
  .p-course-table__title {
    font-size: 1.8125rem;
  }
}

.p-course-table__body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-table__body {
    margin-top: 2rem;
  }
}

.p-course-table__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-table__list {
    flex-direction: column;
  }
}

.p-course-table__item {
  border-radius: 1rem;
  overflow: clip;
}

.p-course-table__item-inner {
  padding: 0.125rem;
  border-radius: 1rem;
}

.p-course-table__item-header {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-inline: 1.5rem;
  text-align: center;
  border-radius: 0.9375rem 0.9375rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-header {
    padding-block: 1.5rem;
    padding-inline: 1rem;
  }
}

.p-course-table__item-label {
  position: relative;
  display: inline-block;
  padding-inline: 0.5rem;
  background: #ffffff;
  border-radius: 0.125rem;
  font-size: 0.75rem;
  letter-spacing: normal;
}

.p-course-table__item-label + .p-course-table__item-label {
  margin-left: 1.5rem;
}

.p-course-table__item-label + .p-course-table__item-label::before {
  content: "＋";
  position: absolute;
  top: 50%;
  left: -1.25rem;
  transform: translateY(-50%);
  color: #ffffff;
}

.p-course-table__item-label--option {
  font-size: 0.625rem;
}

.p-course-table__item-catch {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: normal;
}

.p-course-table__item-title {
  margin-top: 0.5rem;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-title {
    font-size: 1.25rem;
  }
}

.p-course-table__item-title + .p-course-table__item-title {
  margin-top: 0;
}

.p-course-table__item-title--basic {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-title--basic {
    font-size: 1.125rem;
  }
}

.p-course-table__item-body {
  padding-block: 2rem;
  padding-inline: 1.5rem;
  background: #ffffff;
  border-radius: 0 0 0.9375rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-body {
    padding: 1rem;
  }
}

.p-course-table__item-description {
  max-width: 25rem;
  margin-inline: auto;
  font-size: 0.875rem;
  letter-spacing: normal;
}

.p-course-detail__item-02 .p-course-table__item:first-child .p-course-table__item-description {
  height: 7rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-02 .p-course-table__item:first-child .p-course-table__item-description {
    height: auto;
  }
}

.p-course-table__item-category {
  padding-block: 0.25rem;
  border-radius: 0.125rem;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-category {
    padding-block: 0;
  }
}

.p-course-table__item-qualification,
.p-course-table__item-term {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-qualification,
  .p-course-table__item-term {
    margin-top: 1.25rem;
  }
}

.p-course-table__item-price__text {
  margin-top: 1rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-price__text {
    margin-top: 0.75rem;
    font-size: 1.5rem;
  }
}

.p-course-table__item-price__unit {
  display: inline-block;
  padding-right: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-price__unit {
    font-size: 0.875rem;
  }
}

.p-course-table__item-price__tax {
  font-size: 0.875rem;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-price__tax {
    font-size: 0.75rem;
  }
}

.p-course-table__item-qualification__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-qualification__text {
    margin-top: 0.75rem;
  }
}

.p-course-table__item-qualification__text + .p-course-table__item-qualification__text {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-qualification__text + .p-course-table__item-qualification__text {
    margin-top: 0.25rem;
  }
}

.p-course-table__item-term {
  font-size: 0.875rem;
  text-align: center;
}

.p-course-table__item-number {
  margin-top: 1rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course-table__item-number {
    margin-top: 0.75rem;
    font-size: 1.5rem;
  }
}

.p-course-table__item-number__unit {
  display: inline-block;
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

.p-course-table__item-text {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: normal;
}

.p-course-table__item-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.p-course-detail--01 .p-course-table__title {
  background: #065e4e;
}

.p-course-detail--01 .p-course-table__item {
  width: calc((100% - 3rem) / 3);
}
@media screen and (max-width: 767px) {
  .p-course-detail--01 .p-course-table__item {
    width: 100%;
  }
}

.p-course-detail--01 .p-course-table__item-inner {
  background: linear-gradient(255deg, #909a45, #087562);
}

.p-course-detail__item-01 .p-course-table__item:last-child {
  width: 100%;
}

.p-course-detail__item-01 .p-course-table__item-header {
  height: 13rem;
  background: linear-gradient(208deg, #909a45 -10%, #087562);
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-01 .p-course-table__item-header {
    height: auto;
  }
}

.p-course-detail__item-01 .p-course-table__item:last-child .p-course-table__item-header {
  height: 11rem;
  background: linear-gradient(187deg, #909a45 -2%, #087562);
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-01 .p-course-table__item:last-child .p-course-table__item-header {
    height: auto;
    background: linear-gradient(216deg, #909a45 -8%, #087562);
  }
}

.p-course-detail--01 .p-course-table__item-category {
  border: 1px dashed #065e4e;
  color: #065e4e;
}

.p-course-detail__item-01 .p-course-table__item-body {
  min-height: 29.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-01 .p-course-table__item-body {
    min-height: auto;
  }
}

.p-course-detail__item-01 .p-course-table__item:last-child .p-course-table__item-title {
  display: inline-block;
}

.p-course-detail__item-02 .p-course-table__item-header {
  background: linear-gradient(198deg, #909a45, #087562);
}

.p-course-detail--02 .p-course-table__item {
  width: calc((100% - 1.5rem) / 2);
}
@media screen and (max-width: 767px) {
  .p-course-detail--02 .p-course-table__item {
    width: 100%;
  }
}

.p-course-detail--02 .p-course-table__item-inner {
  background: linear-gradient(245deg, #3bb6e4 -20%, #21327c);
}

.p-course-detail--02 .p-course-table__item-body {
  min-height: 35.375rem;
  min-height: 35.75rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--02 .p-course-table__item-body {
    min-height: auto;
  }
}

.p-course-detail--02 .p-course-table__item-header {
  background: linear-gradient(208deg, #3bb6e4 -20%, #21327c);
}
@media screen and (max-width: 767px) {
  .p-course-detail--02 .p-course-table__item-header {
    height: auto;
  }
}

.p-course-detail--02 .p-course-table__item-title {
  line-height: 1.2;
}

.p-course-detail--02 .p-course-table__item-category {
  margin-top: 1.5rem;
  border: 1px dashed #21327c;
  color: #21327c;
}

.p-course-detail__item-01 .p-course-table__item-space {
  display: inline-block;
  height: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail__item-01 .p-course-table__item-space {
    height: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-course {
    margin-top: 5rem;
  }
}

.p-course__button a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  letter-spacing: normal;
  overflow: clip;
}

.p-course__button a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #1a151a;
  transition: ease-in-out, 0.3s;
}

.p-course__button a:hover::before {
  left: 101%;
}

.p-course__button-con {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(../images/common/icon_out_link.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-course__button-con {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-course__concept {
  background: url(../images/course/bg_sky.webp) center/cover no-repeat;
}

.p-course__concept-inner {
  position: relative;
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-course__concept-inner {
    padding-block: 5rem;
  }
}

.p-course__concept-container {
  max-width: 44.375rem;
  margin-inline: auto;
}

.p-course__concept-title {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-course__concept-title {
    font-size: 1rem;
  }
}

.p-course__concept-catchcopy {
  font-size: 4rem;
  line-height: 1.203125;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-course__concept-catchcopy {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}

.p-course__concept-content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-course__concept-content {
    margin-top: 3rem;
  }
}

.p-course__concept-text {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course__concept-text {
    font-size: 1rem;
  }
}

.p-course__concept-text + .p-course__concept-text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-course__concept-text + .p-course__concept-text {
    margin-top: 1rem;
  }
}

.p-course__concept-list {
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 77rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-course__concept-list {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    flex-direction: column;
    margin-top: 2.5rem;
  }
}

.p-course__concept-item {
  position: relative;
  padding: 2rem 2.5rem 1.625rem;
  z-index: 1;
  width: 25rem;
  height: 17rem;
}
@media screen and (max-width: 767px) {
  .p-course__concept-item {
    width: 100%;
    height: 100%;
  }
}

.p-course__concept-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/home/concept_trapezoid.webp) center/contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-course__concept-item::before {
    filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.1));
    background: url(../images/course/concept_trapezoid_md_sp.webp) center/contain no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .p-course__concept-item:first-child::before {
    background: url(../images/course/concept_trapezoid_sm_sp.webp) center/contain no-repeat;
  }
}

.p-course__concept-item__number {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course__concept-item__number {
    font-size: 1rem;
  }
}

.p-course__concept-item__title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course__concept-item__title {
    font-size: 1rem;
  }
}

.p-course__concept-item__text {
  margin-top: 0.5rem;
}

.p-course__place .p-title__ja {
  line-height: 1.203125;
}

.p-course__place-inner {
  padding-top: 20rem;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__place-inner {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }
}

.p-course__place-text {
  margin-top: 4rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course__place-text {
    margin-top: 3rem;
    font-size: 1rem;
  }
}

.p-course__place-body {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-course__place-body {
    margin-top: 2rem;
  }
}

.p-course__place-list {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__place-list {
    flex-direction: column;
    gap: 1.75rem;
  }
}

.p-course__place-item {
  width: calc((100% - 2.5rem) / 2);
}
@media screen and (max-width: 767px) {
  .p-course__place-item {
    width: 100%;
  }
}

.p-course__place-item__map {
  width: 100%;
  height: auto;
  aspect-ratio: 620/300;
  box-sizing: content-box;
}

.p-course__place-item__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  outline: 1px dashed #1a151a;
}

.p-course__place-item__title {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course__place-item__title {
    margin-top: 1.125rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-course__place-item__address {
  margin-top: 0.5rem;
  letter-spacing: normal;
}

.p-course__place-item__button {
  margin-top: 0.5rem;
}

.p-course__place-item__button a {
  max-width: 10.0625rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-course__place-item__button a {
    max-width: 8.625rem;
  }
}

.p-course__background-img {
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 1440/600;
}

.p-course__background-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-course__worry {
  position: relative;
}

.p-course__worry__layout {
  margin-top: -8.75rem;
}
@media screen and (max-width: 767px) {
  .p-course__worry__layout {
    margin-top: 0;
  }
}

.p-course__worry__inner.l-inner {
  width: 88.88888%;
  max-width: 100%;
  padding: 5rem;
  background: url(../images/course/bg_dot.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-course__worry__inner.l-inner {
    padding-top: 2.5rem;
    padding-inline: 1rem;
    background: url(../images/course/bg_dot_sp.webp) center/cover no-repeat;
  }
}

.p-course__worry-header {
  text-align: center;
  max-width: 70rem;
  margin-inline: auto;
}

.p-course__worry-title__box {
  line-height: 1.5;
}

.p-course__worry-title__box + .p-course__worry-title__box {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__worry-title__box + .p-course__worry-title__box {
    margin-top: 1rem;
  }
}

.p-course__worry-title {
  display: inline-block;
  font-size: 2rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-course__worry-title {
    display: inline;
    font-size: 1.5rem;
  }
}

.p-course__worry-body {
  max-width: 70rem;
  margin-top: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-course__worry-body {
    margin-top: 3rem;
  }
}

.p-course__worry-text {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course__worry-text {
    font-size: 1rem;
  }
}

.p-course__worry-text + .p-course__worry-text {
  margin-top: 1rem;
}

.p-course__worry-button {
  margin-top: 1rem;
}

.p-course__worry-button a {
  max-width: 13.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__worry-button a {
    margin-left: auto;
    max-width: 11.6875rem;
  }
}

.p-course__section .p-title__ja {
  line-height: 1.203125;
}

.p-course__section-inner {
  padding-top: 12.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-inner {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.p-course__section-text {
  margin-top: 2.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-text {
    margin-top: 2rem;
    font-size: 1rem;
  }
}

.p-course__section-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-buttons {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .p-course__section-button:first-child {
    margin-right: auto;
  }
}

.p-course__section-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 20rem;
  height: 6.3125rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-course__section-button a {
    width: 16.25rem;
    height: 5.625rem;
  }
}

.p-course__section-button:first-child a.c-ellipse::before {
  background: #065e4e;
}

.p-course__section-button:nth-of-type(2) a.c-ellipse::before {
  background: #21327c;
}

.p-course__section-button__content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.p-course__section-button__text {
  display: block;
}

.p-course__section-button__text--lg {
  font-size: 1.5rem;
  line-height: 1.2083333333;
}
@media screen and (max-width: 767px) {
  .p-course__section-button__text--lg {
    font-size: 1rem;
  }
}

.p-course__section-button__text--sm {
  line-height: 1.125;
}

.p-course__section-button .c-arrow {
  width: 1.4375rem;
  height: 1.4375rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-course__section-button .c-arrow {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (min-width: 768px) {
  .p-course__section-button a:hover {
    color: #1a151a;
  }
  .p-course__section-button a:hover.c-ellipse::before {
    background: #fdd000;
  }
  .p-course__section-button a:hover .c-arrow {
    background: #1a151a;
  }
}

.p-course__section-about {
  background: #d5d5ab;
  padding-inline: 5rem;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-about {
    padding-inline: 1rem;
    padding-block: 2.5rem;
  }
}

.p-course-detail--01 .p-course__section-about {
  border-top: 1px dashed #1a151a;
}

@media screen and (max-width: 767px) {
  .p-course__section-about__title-box {
    text-align: center;
  }
}

.p-course__section-about__title {
  display: inline;
  padding-block: 0.25rem;
  padding-inline: 0.5rem;
  font-size: 2rem;
  line-height: 1.1875;
  color: #ffffff;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-course__section-about__title {
    font-size: 1.3125rem;
    line-height: 2;
  }
}

.p-course__section-about__text {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-about__text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.p-course__section-about__button {
  margin-top: 1.5rem;
  letter-spacing: normal;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-course__section-about__button {
    margin-top: 1rem;
  }
}

.p-course__section-about__button a {
  position: relative;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-course__section-about__button a {
    font-size: 0.9375rem;
  }
}

.p-course__section-about__button a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #1a151a;
  transition: ease-in-out, 0.3s;
}

@media (min-width: 768px) {
  .p-course__section-about__button a:hover::before {
    left: 101%;
  }
}

.p-course__section-about__button-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(../images/common/icon_out_link.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-course__section-about__button-icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-course__section-flow__header {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}

.p-course__section-flow__title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__title {
    font-size: 1.375rem;
  }
}

.p-course__section-flow__title--sm {
  display: inline-block;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__title--sm {
    font-size: 1.25rem;
  }
}

.p-course__section-flow__note {
  letter-spacing: normal;
}

.p-course__section-flow__body {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__body {
    margin-top: 1rem;
  }
}

.p-course__section-flow__link-list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__link-list {
    margin-top: 1rem;
  }
}

.p-course__section-flow__link-item {
  text-align: right;
}

.p-course__section-flow__link-item a {
  display: inline-block;
  position: relative;
  letter-spacing: normal;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__link-item a {
    font-size: 0.75rem;
  }
}

.p-course__section-flow__link-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #1a151a;
  transition: ease-in-out, 0.3s;
}

@media (min-width: 768px) {
  .p-course__section-flow__link-item a:hover::before {
    left: 101%;
  }
}

.p-course__section-flow__link-item__icon {
  display: inline-block;
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;
  background: url(../images/common/icon_out_link.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__link-item__icon {
    width: 0.6875rem;
    height: 0.6875rem;
    margin-left: 0.1875rem;
  }
}

.p-course__section-flow__notice {
  margin-top: 1.5rem;
  padding-block: 2.5rem;
  padding-inline: 1.5rem;
  border-radius: 1.5rem;
  border: 1px dashed #1a151a;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__notice {
    padding-block: 2rem;
    padding-inline: 1rem;
  }
}

.p-course__section-flow__notice-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: #065e4e;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__notice-message {
    flex-direction: column;
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-course__section-flow__notice-message img {
  width: 5.3125rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-course__section-flow__notice-highlight {
  display: inline-block;
  padding-inline: 0.5rem;
  padding-block: 0.25rem;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.5;
  background: #065e4e;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__notice-highlight {
    font-size: 1rem;
  }
}

.p-course__section-flow__subtext {
  margin-top: 0.5rem;
  text-align: center;
}

.p-course__section-flow__button {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__button {
    text-align: right;
  }
}

.p-course__section-flow__button a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  max-width: 9.9375rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__button a {
    max-width: 8.9375rem;
  }
}

.p-course__section-flow__button a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #1a151a;
  transition: ease-in-out, 0.3s;
}

@media (min-width: 768px) {
  .p-course__section-flow__button a:hover::before {
    left: 101%;
  }
}

.p-course__section-flow__button-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(../images/common/icon_out_link.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__button-icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-course__section-cta {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-cta {
    padding-block: 5rem;
  }
}

.p-course__section-cta__title {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  color: #ffffff;
  font-size: 4rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course__section-cta__title {
    margin-top: 1.25rem;
    font-size: 2rem;
  }
}

.p-course__section-cta__text {
  margin-top: 2rem;
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course__section-cta__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-course__section-cta__button {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-course__section-cta__button {
    margin-top: 1.25rem;
  }
}

.p-course__section-cta__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 25rem;
  height: 7.875rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-cta__button a {
    width: 80%;
    height: 5.625rem;
    margin-inline: auto;
    font-size: 1.25rem;
  }
}

.p-course__section-cta__button a.c-ellipse::before {
  background: #fdd000;
}

.p-course__section-cta__button a .c-arrow {
  width: 1.875rem;
  height: 1.5rem;
  margin-top: 0.3125rem;
  background: #1a151a;
}
@media screen and (max-width: 767px) {
  .p-course__section-cta__button a .c-arrow {
    width: 1.5rem;
    height: 1.125rem;
  }
}

@media (min-width: 768px) {
  .p-course__section-cta__button a:hover {
    scale: 1.06;
  }
}

.p-course-detail--01 .p-course__section-about__title {
  background: #065e4e;
}

.p-course-detail--01 .p-course__section-about {
  background: #d5d5ab;
}

.p-course-detail--01 .p-course__section-flow {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--01 .p-course__section-flow {
    margin-top: 1rem;
  }
}

.p-course-detail--01 .p-course__section-flow__inner {
  padding-block: 4rem;
  padding-inline: 5rem;
  background: #ffffff;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--01 .p-course__section-flow__inner {
    padding-block: 2.5rem;
    padding-inline: 1rem;
  }
}

.p-course-detail--01 .p-course__section-flow__title {
  color: #065e4e;
}

.p-course-detail--01 .p-course__section-flow__title--small {
  margin-left: 0.25rem;
}

.p-course-detail--02 .p-course__section-about__title {
  background: #21327c;
}

.p-course-detail--02 .p-course__section-about {
  background: #f3eaee;
}

.p-course-detail--02 .p-course__section-flow {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--02 .p-course__section-flow {
    margin-top: 2rem;
  }
}

.p-course-detail--02 .p-course__section-flow__title {
  color: #21327c;
}

.p-course-detail--02 .p-course__section-flow__inner {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--02 .p-course__section-flow__inner {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-course-detail--02 .p-course__section-flow__box {
  width: calc((100% - 2.5rem) / 2);
  padding-inline: 2.5rem;
  padding-block: 2rem;
  background: #ffffff;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--02 .p-course__section-flow__box {
    width: 100%;
    padding: 1rem;
  }
}

.p-course-detail--02 .p-course__section-flow__text {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course-detail--02 .p-course__section-flow__text {
    font-size: 1rem;
  }
}

.p-course-detail--02 .p-course__section-flow__note {
  margin-top: 0.5rem;
}

.p-course__qa .p-title__ja {
  line-height: 1.203125;
}

.p-course__qa-inner.l-inner {
  max-width: 73.125rem;
  padding-block: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__qa-inner.l-inner {
    padding-block: 5rem;
  }
}

.p-course__qa-body {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-course__qa-body {
    margin-top: 3rem;
  }
}

.p-course__qa-item:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__qa-item:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.p-course__qa-item__button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  background: linear-gradient(to bottom, #91d6cc, #6ed3e2);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-course__qa-item__button {
    padding: 1rem;
    padding-block: 1rem;
    padding-left: 0.75rem;
    padding-right: 1.75rem;
  }
}

.p-course__qa-item__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 0.125rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-course__qa-item__button::before {
    right: 0.75rem;
  }
}

.p-course__qa-item__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%) rotate(90deg);
  width: 1rem;
  height: 0.125rem;
  background: #ffffff;
  transition: 0.16s;
}
@media screen and (max-width: 767px) {
  .p-course__qa-item__button::after {
    right: 0.75rem;
  }
}

.p-course__qa-item__button.is-open::after {
  transform: translateY(-50%) rotate(0deg);
}

.p-course__qa-item__button-title {
  color: #ffffff;
  font-size: 1.25rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-course__qa-item__button-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-course__qa-item__button-icon {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-course__qa-item__button-icon {
    font-size: 1.5rem;
  }
}

.p-course__qa-item__body {
  padding-block: 2rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 767px) {
  .p-course__qa-item__body {
    padding: 0.75rem;
  }
}

.p-course__qa-item__body[hidden] {
  display: none;
}

.p-course__cta-inner.l-inner {
  max-width: 88.8888%;
  padding-block: 5rem;
  padding-inline: 1rem;
  background: url(../images/course/bg_dot.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-course__cta-inner.l-inner {
    padding-block: 4rem;
  }
}

.p-course__cta-content {
  max-width: 90rem;
  margin-inline: auto;
  text-align: center;
}

.p-course__cta-catch__box {
  line-height: 1.4;
}

.p-course__cta-catch__box + .p-course__cta-catch__box {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-course__cta-catch__box + .p-course__cta-catch__box {
    margin-top: 1.5rem;
  }
}

.p-course__cta-catch {
  display: inline;
  background: #ffffff;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-course__cta-catch {
    font-size: 1.375rem;
  }
}

.p-course__cta-text {
  margin-top: 2rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course__cta-text {
    font-size: 1rem;
  }
}

.p-course__cta-text + .p-course__cta-text {
  margin-top: 0.3125rem;
}

.p-course__cta-button {
  margin-top: 2rem;
  margin-inline: auto;
  width: 25rem;
  height: 7.875rem;
}
@media screen and (max-width: 767px) {
  .p-course__cta-button {
    margin-top: 1.5rem;
    width: 80%;
    height: 5.625rem;
  }
}

.p-course__cta-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  height: 100%;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-course__cta-button a {
    font-size: 1.25rem;
  }
}

.p-course__cta-button a .c-arrow {
  width: 1.875rem;
  height: 1.5rem;
  margin-top: 0.3125rem;
  background: #1a151a;
}
@media screen and (max-width: 767px) {
  .p-course__cta-button a .c-arrow {
    width: 1.5rem;
    height: 1.125rem;
  }
}

.p-course__cta-button a.c-ellipse::before {
  background: #fdd000;
}

@media (min-width: 768px) {
  .p-course__cta-button a:hover {
    scale: 1.06;
  }
}

.p-course__section-flow__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__content {
    flex-direction: column;
  }
}

.p-course__section-flow__categories {
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__categories {
    display: none;
  }
}

.p-course__section-flow__categories img {
  display: block;
  width: 4.375rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-course__section-flow__categories img + img {
  margin-top: 0.5rem;
}

.p-course__section-flow__category-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.625rem;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__category-box {
    gap: 1rem;
    margin-top: 0;
  }
}

.p-course__section-flow__category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.4375rem;
  height: 1.375rem;
  background: #065e4e;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
}

.p-course__section-flow__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__item {
    align-items: flex-start;
  }
}

.p-course__section-flow__item:not(:first-child) {
  margin-top: 1rem;
}

.p-course__section-flow__item-number {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-course__section-flow__item-number {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-footer__inner {
  display: flex;
  justify-content: space-between;
  padding-top: 12.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 4rem;
    padding-top: 7.5rem;
    padding-bottom: 5rem;
  }
}

.p-footer__content {
  width: 100%;
  max-width: 40.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    max-width: 100%;
  }
}

.p-footer__content .p-title__ja {
  line-height: 1.15625;
}

.p-footer__sns {
  width: 100%;
  max-width: 18.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    margin-inline: auto;
  }
}

.p-footer__sns__text {
  text-align: center;
}

.p-footer__sns-button {
  margin-top: 1rem;
}

.p-footer__sns-button a {
  gap: 0.3125rem;
  width: 100%;
  max-width: 20rem;
  height: 5.625rem;
  font-size: 1.375rem;
  line-height: 1.2083333333;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-button a {
    max-width: 80%;
    height: 5.625rem;
    margin-inline: auto;
    font-size: 1rem;
  }
}

.p-footer__sns-button__icon {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  background: #1a151a;
  -webkit-mask-image: url(../images/common/icon_out_link.svg);
          mask-image: url(../images/common/icon_out_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-button__icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

@media (min-width: 768px) {
  .p-footer__sns-button a:hover.c-ellipse::before {
    background: #fdd000;
  }
}

.p-footer__visual {
  position: relative;
}

.p-footer__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.p-footer__img {
  overflow: clip;
}

.p-footer__img:first-child {
  grid-row: 1/span 2;
}

.p-footer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: ease-in-out, 1.6s;
}

@media (min-width: 768px) {
  .p-footer__img:hover img {
    scale: 1.05;
  }
}

.p-footer__copyright {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    bottom: 0.75rem;
    left: 1rem;
  }
}

.p-footer__copyright small {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright small {
    font-size: 0.625rem;
  }
}

.p-hamburger {
  display: none;
  position: relative;
  width: 5rem;
  height: 1.5625rem;
  z-index: 9999;
  color: #1a151a;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .p-hamburger.c-ellipse::before {
    background: #ffffff;
  }
}

.p-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  overflow-x: clip;
}

.p-header__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.p-header__inner.l-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.125rem;
  padding-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner.l-inner {
    z-index: 99999;
    padding-block: 0.5rem;
    overflow: clip;
  }
}

.p-header__logo {
  position: relative;
  z-index: 99999;
}

.p-header__logo a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    gap: 0.25rem;
  }
}

@media (min-width: 768px) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}

.p-header__logo img {
  width: 19.375rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    width: 9.6875rem;
    height: 1.25rem;
  }
}

.p-header__logo-text {
  display: block;
  font-size: 0.75rem;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .p-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    transform: translateY(100%);
    width: 100%;
    height: 100vh;
    background: url(../images/common/drower_bg.webp) center/cover no-repeat;
    pointer-events: none;
    transition: ease-in-out, 0.4s;
    padding-top: 4.9375rem;
    padding-bottom: 1.5rem;
    padding-inline: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav-pc {
    display: none;
  }
}

.p-header__nav-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__nav-sp {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-list {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-end;
  }
}

.p-header__nav-item a {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  padding-block: 0.25rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item a {
    padding-inline: 0.0625rem;
    background: #ffffff;
    border-radius: 0.125rem;
  }
}

.p-header__nav-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #1a151a;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) and (min-width: 768px) {
  .p-header__nav-item a:hover::before {
    left: 101%;
  }
}
.p-header__nav-sublist {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-sublist {
    margin-top: 1.5rem;
    flex-direction: column;
    align-items: end;
  }
}

.p-header__nav-subitem a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 11.25rem;
  height: 3.5625rem;
  padding-top: 0.0625rem;
  padding-right: 0.375rem;
}

.p-header__nav-subitem .c-arrow {
  width: 0.9375rem;
  height: 0.9375rem;
  background: #ffffff;
}

.p-header__nav-subitem:first-child a.c-ellipse::before {
  background: #065e4e;
}

.p-header__nav-subitem:last-child a.c-ellipse::before {
  background: #21327c;
}

.p-header__nav-subitem__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.p-header__nav-subitem__name {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  transition: ease-in-out, 0.3s;
}

.p-header__nav-subitem__course {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  transition: ease-in-out, 0.3s;
}

@media (min-width: 768px) {
  .p-header__nav-subitem a:hover {
    color: #1a151a;
  }
  .p-header__nav-subitem a:hover.c-ellipse::before {
    background: #fdd000;
  }
  .p-header__nav-subitem a:hover .c-arrow {
    background: #1a151a;
  }
  .p-header__nav-subitem a:hover .p-header__nav-subitem__name,
  .p-header__nav-subitem a:hover .p-header__nav-subitem__course {
    color: #1a151a;
  }
}

.p-home-course__item {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-home-course__item {
    flex-direction: column;
  }
}

.p-home-course__item:not(:first-child) {
  border-top: 0.25rem solid #ffffff;
}
@media screen and (max-width: 767px) {
  .p-home-course__item:not(:first-child) {
    border-top: 0.125rem solid #ffffff;
  }
}

.p-home-course__item-content {
  position: relative;
  width: 50vw;
  flex: 1;
  padding: 7.5rem 7.1875rem 0 10rem;
  background: url(../images/home/course_bg.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-home-course__item-content {
    width: 100%;
    padding-block: 5rem;
    padding-inline: 1rem;
  }
}

.p-home-course__item-box {
  width: 100%;
  max-width: 27.5rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-home-course__item-box {
    margin-left: 0;
  }
}

.p-home-course__item-number {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-home-course__item-number {
    font-size: 1.25rem;
  }
}

.p-home-course__item-title {
  display: inline-block;
  margin-top: 1.5rem;
  padding-inline: 0.0625rem;
  background: #ffffff;
  font-size: 2rem;
  line-height: 1.1875;
}
@media screen and (max-width: 767px) {
  .p-home-course__item-title {
    margin-top: 1.125rem;
    font-size: 1.5rem;
  }
}

.p-home-course__item-text {
  margin-top: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-home-course__item-text {
    margin-top: 3rem;
  }
}

.p-home-course__item-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-home-course__item-button {
    align-items: end;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

.p-home-course__item-button a {
  gap: 0.25rem;
  width: 10rem;
  height: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}

.p-home-course__item-button a.c-ellipse::before {
  background: #ffffff;
}

.p-home-course__item-button a:hover.c-ellipse::before {
  background: #fdd000;
}

.p-home-course__item-button .c-arrow {
  width: 0.8125rem;
  height: 0.8125rem;
  background: #1a151a;
}

.p-home-course__item-img__box {
  width: 50vw;
}
@media screen and (max-width: 767px) {
  .p-home-course__item-img__box {
    width: 100%;
  }
}

.p-home-course__item-img {
  width: 100%;
  height: 50%;
  aspect-ratio: 720/500;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-home-course__item-img {
    height: 15rem;
  }
}

.p-home-course__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: ease-in-out, 1.6s;
}

@media (min-width: 768px) {
  .p-home-course__item-img:hover img {
    scale: 1.05;
  }
}

.p-home-mv {
  position: relative;
  z-index: 1;
  max-width: 94.44444%;
  aspect-ratio: 1360/764;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-home-mv {
    max-width: 100%;
    height: 100svh;
    aspect-ratio: auto;
  }
}

.p-home-mv__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  aspect-ratio: 1360/764;
}
.p-home-mv__inner {
  position: relative;
  max-width: 77.5rem;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
.p-home-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-mv__content {
  position: absolute;
  bottom: 3.75rem;
  left: 3.75rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-home-mv__content {
    bottom: 1.5rem;
    bottom: 25%;
    left: 1.125rem;
  }
}

.p-home-mv__text {
  font-size: 2rem;
  line-height: 1.1875;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .p-home-mv__text {
    font-size: 1rem;
  }
}

.p-home-mv__text + .p-home-mv__text {
  margin-top: 1rem;
}

.p-home-mv__text span {
  display: inline-block;
  background: #ffffff;
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-home-mv__text span {
    padding-block: 0.125rem;
  }
}

.p-home-mv__text:nth-of-type(2),
.p-home-mv__text:nth-of-type(3) {
  width: 43.125rem;
}
@media screen and (max-width: 767px) {
  .p-home-mv__text:nth-of-type(2),
  .p-home-mv__text:nth-of-type(3) {
    width: 100%;
  }
}

.p-home-mv__text:nth-of-type(1) span {
  padding-inline: 0.125rem;
}

.p-home-mv__text:nth-of-type(2) span {
  padding-inline: 0.125rem;
}

.p-home-mv__text:nth-of-type(3) span {
  padding-inline: 0.1875rem;
}

.p-home-service {
  background: url(../images/home/service_bg.webp) center/cover no-repeat;
  overflow-x: clip;
}

.p-home-service__layout {
  margin-top: -10.375rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__layout {
    margin-top: 0;
  }
}

.p-home-service__inner {
  display: flex;
  gap: 4rem;
  padding-top: 20rem;
  padding-bottom: 12.8125rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__inner {
    flex-direction: column;
    gap: 3.75rem;
    padding-block: 7.5rem;
  }
}

.p-home-service__text {
  margin-top: 8rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__text {
    margin-top: 4rem;
    font-size: 1rem;
  }
}

.p-home-service__body {
  position: relative;
  z-index: 1;
  margin-top: 0.625rem;
  padding-right: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__body {
    margin-top: 0;
    padding-top: 1.75rem;
    padding-right: 0;
  }
}

.p-home-service__item:not(:first-child) {
  margin-top: 2.625rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__item:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.p-home-service__item:first-child {
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__item:first-child {
    margin-left: 0;
  }
}

.p-home-service__item:nth-of-type(2) {
  margin-left: 10.875rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__item:nth-of-type(2) {
    margin-left: 0;
  }
}

.p-home-service__item:nth-of-type(3) {
  margin-left: 21rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__item:nth-of-type(3) {
    margin-left: 0;
  }
}

.p-home-service__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  width: 29.3125rem;
  height: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__item a {
    gap: 1rem;
    width: 100%;
    height: 6.875rem;
  }
}

.p-home-service__item a.c-ellipse::before {
  background: #ffffff;
}

.p-home-service__item-number {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  line-height: 1;
  letter-spacing: normal;
}

.p-home-service__item-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding-right: 0.375rem;
}

.p-home-service__item-content .c-arrow {
  width: 1.5rem;
  height: 1.5rem;
  background: #1a151a;
}
@media screen and (max-width: 767px) {
  .p-home-service__item-content .c-arrow {
    width: 1rem;
    height: 1rem;
  }
}

.p-home-service__item-name {
  font-size: 1.5rem;
  line-height: 1.2083333333;
}
@media screen and (max-width: 767px) {
  .p-home-service__item-name {
    font-size: 1rem;
  }
}

.p-home-service__item a:hover.c-ellipse::before {
  background: #fdd000;
}

.p-home-service__staff {
  position: absolute;
  bottom: 0.3125rem;
  left: 1.375rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-home-service__staff {
    bottom: auto;
    top: -2.5rem;
    left: 0;
  }
}

.p-home-service__staff img {
  width: 6.25rem;
  height: 15.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-home-service__staff img {
    width: 3.75rem;
    height: 9.375rem;
  }
}

.p-home-service__drone {
  position: absolute;
  top: -3.875rem;
  right: -1.875rem;
  top: -6.875rem;
  right: -3.125rem;
  animation: orbit 8s linear infinite; /* アニメーション指定 */
}
@media screen and (max-width: 767px) {
  .p-home-service__drone {
    top: -28.125rem;
    right: 0.625rem;
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateY(-30px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateY(-30px) rotate(-360deg);
  }
}
.p-home-service__drone img {
  width: 27.3125rem;
  height: 19.5625rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-home-service__drone img {
    width: 6.6875rem;
    height: 5.8125rem;
  }
}

.p-page-header {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.p-page-header__container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-page-header__container {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-page-header__content {
  margin-top: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-page-header__content {
    margin-top: 0;
  }
}

.p-page-header__img {
  flex-shrink: 0;
  width: 100%;
  max-width: 37.5rem;
  aspect-ratio: 600/400;
  margin-right: -5rem;
}
.p-page-header__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-page-title__en {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-page-title__en {
    font-size: 1.25rem;
    font-style: italic;
  }
}

.p-page-title__ja {
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-page-title__ja {
    margin-top: 0.5rem;
    font-size: 2rem;
    line-height: 1.3;
  }
}

.p-page-title__text {
  margin-top: 1rem;
  letter-spacing: normal;
}

@media screen and (max-width: 767px) {
  .p-privacy {
    margin-top: 5rem;
  }
}

.p-privacy__inner.l-inner {
  max-width: 53.125rem;
  padding-top: 15rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__inner.l-inner {
    padding-block: 5rem;
  }
}

.p-privacy__title {
  margin-top: 0.5rem;
  font-size: 1.25rem;
}

.p-privacy__text {
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .p-thanks {
    margin-top: 5rem;
  }
}

.p-thanks__inner.l-inner {
  max-width: 53.125rem;
  padding-top: 15rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__inner.l-inner {
    padding-block: 5rem;
  }
}

.p-title__en {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-title__en {
    font-style: italic;
    font-size: 1rem;
  }
}

.p-title__ja {
  margin-top: 1rem;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .p-title__ja {
    margin-top: 0.5rem;
    font-size: 2rem;
  }
}

.u-gradation::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  z-index: -2;
  background: linear-gradient(to top, #6ed3e2, #91d6cc);
  border: 1px dashed #1a151a;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: ease-in-out, 0.3s;
}

a:hover.u-gradation::after {
  opacity: 0;
}

.u-md-block {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-md-block {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-md-none {
    display: none;
  }
}

.u-page-body {
  margin-top: -6.875rem;
}
@media screen and (max-width: 767px) {
  .u-page-body {
    margin-top: 0;
  }
}
/*# sourceMappingURL=style.css.map */
