@charset "euc-jp";

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

body {
  font-feature-settings: "palt";
  line-height: 1.5;
  padding-top: 60px;
}

img {
  height: auto;
}

/* *****************************************
 * layout
 * ***************************************** */
/* l-container
-------------------------------------------- */
.l-container {
  container-type: inline-size;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

@media screen and (min-width: 768px) {
  .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .l-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* *****************************************
 * component
 * ***************************************** */
/* c-title
-------------------------------------------- */
.c-title.-primary {
  padding: .25em;
}

.c-title.-primary>span {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

@media screen and (min-width: 768px) {
  .c-title.-primary {
    font-size: 3rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-title.-secondary {
    font-size: 2.6rem;
  }

  .c-title.-tertiary {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .c-title.-primary {
    font-size: 2.6rem;
  }

  .c-title.-secondary {
    font-size: 2.2rem;
  }

  .c-title.-tertiary {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 599px) {
  .c-title.-primary {
    font-size: 2rem;
  }

  .c-title.-secondary {
    font-size: 1.8rem;
  }

  .c-title.-tertiary {
    font-size: 1.6rem;
  }
}

/* text
-------------------------------------------- */
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .c-text {
    font-size: 1.4rem;
  }
}

/* list
-------------------------------------------- */
.c-list[class*="-bullet-"]>li {
  padding-left: 1em;
  position: relative;
}

.c-list__bullet,
.c-list[class*="-bullet-"]:not(.-bullet-free)>li::before {
  left: 0;
  position: absolute;
  top: 0;
}

.c-list.-bullet-asterisk>li::before {
  content: "\203B";
}

.c-list.-bullet-dot>li::before {
  content: "\30FB";
}

/* link
-------------------------------------------- */
.c-link.-text {
  color: #1d54a7;
}

.c-link.-button {
  display: inline-block;
  text-align: center;
  transition: opacity .3s;
}

.c-link.-button.-yellow {
  background-color: #ffff00;
}

.c-link.-underline {
  text-decoration: underline;
}

@media (hover:hover) {
  .c-link.-text:not(.-underline):hover {
    text-decoration: underline;
  }

  .c-link.-button:hover {
    opacity: .75;
  }

  .c-link.-underline:hover {
    text-decoration: none;
  }
}

/* table
-------------------------------------------- */
.c-table.-w100 {
  width: 100%;
}

.c-table.-layout-fixed {
  table-layout: fixed;
}

.c-table th,
.c-table td {
  padding: .5em 1em;
  vertical-align: middle;
}

.c-table[class*="-bordered-"] th,
.c-table[class*="-bordered-"] td {
  border-style: solid;
  border-width: 2px;
}

.c-table.-bordered-gray th,
.c-table.-bordered-gray td {
  border-color: #a8a8a8;
}

.c-table.-bordered-white th,
.c-table.-bordered-white td {
  border-color: #fff;
}

.c-table__header.-red {
  background-color: #bf0000;
  color: #fff;
}

.c-table__header.-pink {
  background-color: #fcdad9;
  color: #555;
}

.c-table__header.-gray {
  background-color: #d9d9d9;
}

.c-table__data.-empty {
  background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), #999 50%, #999 calc(50% + 0.5px), transparent calc(50% + 1px))
}

@container (width>=600px) {

  .c-table__header.-large,
  .c-table__data.-large {
    font-size: 18px;
  }
}

/* *****************************************
 * project
 * ***************************************** */
.p-header {
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  display: flex;
  justify-content: space-between;
  height: 60px;
  padding: 0 10px;
  position: relative;
}

.p-header__logo {
  width: 100px;
}

.p-header__list .c-link {
  display: block;
  position: relative;
}

.p-header__btn {
  background-color: transparent;
  border: none;
  height: 50px;
  padding: 0;
  position: relative;
  width: 50px;
}

.p-header__btn::before,
.p-header__btn::after {
  content: "";
}

.p-header__btn span,
.p-header__btn::before,
.p-header__btn::after {
  background-color: #fff;
  display: block;
  height: 2px;
  left: 12px;
  position: absolute;
  transition: 0.6s ease;
  width: 26px;
}

.p-header__btn span {
  top: 24px;
}

.p-header__btn::before {
  top: 16px;
}

.p-header__btn::after {
  top: 32px;
}

@media screen and (min-width: 768px) {
  .p-header__list>li {
    display: inline-block;
  }

  .p-header__list>li+li {
    margin-left: 1em;
  }

  .p-header__list .c-link {
    color: #fff;
    padding-bottom: 3px;
  }

  .p-header__list .c-link::before,
  .p-header__list .c-link::after {
    background-color: #fff;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transition: width 0.3s;
    width: 0;
  }

  .p-header__list .c-link::before {
    left: 50%;
  }

  .p-header__list .c-link::after {
    right: 50%;
  }

  .p-header__btn {
    display: none;
  }
}

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

  .p-header__list a:hover::before,
  .p-header__list a:hover::after {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav {
    background-color: #fff;
    height: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 60px;
    transition: height .3s;
    width: 100%;
  }

  .p-header__list>li {
    border-bottom: solid 1px #333;
  }

  .p-header__list .c-link {
    padding: 18px 10px;
  }

  .p-header__list .c-link::after {
    border-right: solid 1px #bf0000;
    border-top: solid 1px #bf0000;
    content: "";
    display: block;
    height: 6px;
    position: absolute;
    top: 50%;
    width: 6px;
  }

  .p-header__list .c-link.-internal::after {
    right: 10px;
    transform: rotate(135deg) translate(-50%, 50%);
  }

  .p-header__list .c-link.-external::after {
    right: 15px;
    transform: rotate(45deg) translateY(-50%);
  }
}

/* main visual
-------------------------------------------- */
.p-mv {
  /* common */
  align-items: center;
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 100%;
  display: flex;
  justify-content: center;
}

.p-mv__container {
  border-bottom-color: #60ac2d;
  border-bottom-style: solid;
  border-top-color: #60ac2d;
  border-top-style: solid;
  max-width: 1000px;
  position: relative;
  width: 100%;
  z-index: 10;
}

.p-mv__container::before,
.p-mv__container::after {
  background-color: #60ac2d;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-mv .c-title {
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.p-mv .c-title>em,
.p-mv .c-title>span {
  display: block;
}

.p-mv .c-list {
  text-align: center;
}

.p-mv .c-list>li {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .p-mv {
    padding: 4rem;
  }

  .p-mv__container {
    border-bottom-width: 4px;
    border-top-width: 4px;
    padding: 6rem 0;
  }

  .p-mv__container::before,
  .p-mv__container::after {
    height: 2px;
  }

  .p-mv__container::before {
    top: 4px;
  }

  .p-mv__container::after {
    bottom: 4px;
  }

  .p-mv .c-title>em {
    /* common */
    font-size: 5rem;
  }

  .p-mv .c-title>span {
    /* common */
    font-size: 4.4rem;
    /* unique */
    margin-top: 4rem;
  }

  .p-mv .c-list {
    font-size: 2rem;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-mv {
    padding: 2rem 1rem;
  }

  .p-mv__container {
    border-bottom-width: 2px;
    border-top-width: 2px;
    padding: 3rem 0;
    max-width: 768px;
    width: 100%;
  }

  .p-mv__container::before,
  .p-mv__container::after {
    height: 1px;
  }

  .p-mv__container::before {
    top: 2px;
  }

  .p-mv__container::after {
    bottom: 2px;
  }

  .p-mv .c-title>em {
    font-size: clamp(2.2rem, 1.770rem + 1.342vw, 2.8rem);
  }

  .p-mv .c-title>span {
    font-size: clamp(2rem, 1.570rem + 1.342vw, 2.6rem);
    margin-top: .5em;
  }

  .p-mv .c-list {
    font-size: clamp(1.4rem, 1.257rem + 0.447vw, 1.6rem);
    margin-top: .5em;
  }
}

.p-step__title {
  line-height: 1.4;
  text-align: center;
}

.p-step__list>li {
  position: relative;
}

.p-step__list>li::before {
  bottom: 0;
  content: "";
  left: 0;
  right: 0;
  position: absolute;
}

.p-step__list>li:nth-child(1):before {
  background-color: #e5f8dc;
}

.p-step__list>li:nth-child(2):before {
  background-color: #d6f0fe;
}

.p-step__list>li:nth-child(3):before {
  background-color: #fcdad9;
}

.p-step__condition {
  color: #fff;
  font-weight: bold;
  letter-spacing: -.04em;
  position: relative;
  text-align: center;
}

.p-step__condition::after,
.p-step__condition::before {
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-style: solid;
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

.p-step__condition::after {
  border-bottom-color: #fff;
  border-top-color: #fff;
  right: 0;
}

.p-step__condition::before {
  border-left-color: #fff;
  left: 0;
}

.p-step__condition.-pre {
  background-color: #3d7b18;
}

.p-step__condition.-basic {
  background-color: #333c5e;
}

.p-step__condition.-nations {
  background-color: #bf0000;
}

.p-step__condition.-pre::after {
  border-left-color: #3d7b18;
}

.p-step__condition.-basic::after {
  border-left-color: #333c5e;
}

.p-step__condition.-nations::after {
  border-left-color: #bf0000;
}

.p-step__condition.-pre::before {
  border-bottom-color: #3d7b18;
  border-top-color: #3d7b18;
}

.p-step__condition.-basic::before {
  border-bottom-color: #333c5e;
  border-top-color: #333c5e;
}

.p-step__condition.-nations::before {
  border-bottom-color: #bf0000;
  border-top-color: #bf0000;
}

.p-step__des {
  line-height: 1.4;
  position: relative;
}

.p-step__des dt {
  font-weight: bold;
  text-align: center;
}

.p-step__des+figure {
  bottom: 0;
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

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

  .p-step__list>li {
    width: 32%;
  }
}

@media screen and (min-width: 768px) {
  .p-step__title {
    font-size: 4rem;
  }

  .p-step__list {
    margin-top: 30px;
  }

  .p-step__list>li::before {
    top: 60px;
  }

  .p-step__condition {
    font-size: 2.2rem;
    height: 40px;
    line-height: 40px;
  }

  .p-step__condition::after,
  .p-step__condition::before {
    border-bottom-width: 20px;
    border-left-width: 16px;
    border-top-width: 20px;
  }

  .p-step__des {
    margin-top: 20px;
    padding: 20px 10px 31%;
  }

  .p-step__des dt {
    font-size: 2.2rem;
  }

  .p-step__des dd {
    font-size: 1.8rem;
    margin-top: 20px;
  }

  .p-step__des dd p+p {
    margin-top: 10px;
  }
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .p-step__des {
    padding: 10px 5px 31%;
  }
}

@media screen and (max-width: 767px) {
  .p-step__condition {
    font-size: 1.8rem;
    height: 30px;
    line-height: 30px;
  }

  .p-step__condition::after,
  .p-step__condition::before {
    border-bottom-width: 15px;
    border-left-width: 12px;
    border-top-width: 15px;
  }

  .p-step__list>li::before {
    top: 40px;
  }

  .p-step__title {
    font-size: clamp(2rem, 1.570rem + 1.342vw, 2.6rem);
  }

  .p-step__list {
    margin-top: 15px;
  }

  .p-step__des {
    margin-top: 20px;
  }

  .p-step__des dt {
    font-size: 1.8rem;
  }

  .p-step__des dd {
    margin-top: 10px;
  }
}

@media screen and (max-width: 599px) {
  .p-step__list>li {
    margin-top: 20px;
  }

  .p-step__des {
    padding: 10px 10px 100px;
  }
}

/* Pre-NATIONS
-------------------------------------------- */
/*---- preFeature ----*/
.p-preFeature>li {
  background-color: #60ac2d;
  box-sizing: border-box;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .p-preFeature {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }

  .p-preFeature>li {
    font-size: clamp(1.5rem, -0.286rem + 2.976vw, 2rem);
    padding: 20px 5px;
    min-width: 190px;
    width: 31%;
  }
}

@media screen and (max-width: 599px) {
  .p-preFeature>li {
    font-size: 1.6rem;
    margin-top: 15px;
    padding: 20px 20px 20px calc(1em + 20px);
    text-indent: -1em;
  }

  .p-preFeature>li .c-list {
    text-indent: 0;
  }
}

/*---- program ----*/
.p-program .c-table {
  border-bottom: solid 1px #a8a8a8;
  border-right: solid 1px #a8a8a8;
  border-top: solid 1px #a8a8a8;
  border-collapse: separate;
}

.p-program .c-table__header,
.p-program .c-table__data {
  border-width: 1px !important;
  padding-left: .25em;
  padding-right: .25em;
}

.p-program .c-table__header:nth-child(1) {
  border-left-width: 2px !important;
  border-right-width: 2px !important;
}

.p-program .c-table__header:nth-child(2) {
  border-right-width: 2px !important;
}

.p-program .c-table__header:nth-child(2),
.p-program .c-table__data:nth-child(2) {
  border-left-width: 0 !important;
}

@container (min-width: 600px) {
  .p-program .c-table__data:nth-child(2) {
    font-size: 2.1rem;
  }
}

@container (max-width: 599px) {
  .p-program .c-table__header:nth-child(1) {
    left: 0;
    min-width: 5em;
  }

  .p-program .c-table__data:nth-child(2) {
    font-size: 1.8rem;
    min-width: 7em;
  }

  .p-program .c-table__data:nth-child(3) {
    min-width: 10em;
  }
}

/* course */
.p-preCourse__title {
  text-align: center;
}

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

@media screen and (min-width: 600px) and (max-width: 767px) {
  .p-preCourse__title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 599px) {
  .p-preCourse__title {
    font-size: 2rem;
  }
}

/* day */
.p-preDay__title {
  background-color: #60ac2d;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.p-preDay__item dt {
  font-weight: bold;
}

.p-preDay__item dd>figure {
  border: solid 1px #ddd;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .p-preDay__title {
    padding: 10px;
    font-size: 2.2rem;
  }

  .p-preDay__item {
    margin-top: 30px;
  }

  .p-preDay__item dt {
    font-size: 1.8rem;
  }

  .p-preDay__item dd {
    align-items: center;
    display: flex;
    margin-top: 15px;
  }

  .p-preDay__item dd>figure {
    width: 45%;
  }

  .p-preDay__item dd>.c-text {
    margin-left: 20px;
    width: calc(55% - 20px);
  }

  .p-preDay__item dd+dd {
    margin-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  .p-preDay__title {
    padding: 5px;
    font-size: 1.8rem;
  }

  .p-preDay__item {
    margin-top: 15px;
  }

  .p-preDay__item dt {
    font-size: 1.6rem;
  }

  .p-preDay__item dd {
    margin-top: 15px;
  }

  .p-preDay__item dd>.c-text {
    margin-top: 10px;
  }

  .p-preDay__item dd+dd {
    margin-top: 15px;
  }
}

/*---- ������Ź���ͤΤ��� ----*/
.p-preVoice__item {
  display: flex;
  justify-content: space-between;
}

.p-preVoice__item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.p-preVoice__comment {
  box-sizing: border-box;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
}

.p-preVoice__comment::before,
.p-preVoice__comment::after {
  border-bottom: solid 8px transparent;
  border-top: solid 8px transparent;
  content: "";
  display: block;
  position: absolute;
  top: 24px;
}

.p-preVoice__item:nth-of-type(odd) .p-preVoice__comment::before,
.p-preVoice__item:nth-of-type(odd) .p-preVoice__comment::after {
  border-right: solid 12px;
}

.p-preVoice__item:nth-of-type(odd) .p-preVoice__comment::before {
  left: -12px;
}

.p-preVoice__item:nth-of-type(odd) .p-preVoice__comment::after {
  border-right-color: #fff;
  left: -8px;
}

.p-preVoice__item:nth-of-type(even) .p-preVoice__comment::before,
.p-preVoice__item:nth-of-type(even) .p-preVoice__comment::after {
  border-left: solid 12px;
}

.p-preVoice__item:nth-of-type(even) .p-preVoice__comment::before {
  right: -12px;
}

.p-preVoice__item:nth-of-type(even) .p-preVoice__comment::after {
  border-left-color: #fff;
  right: -8px;
}

.p-preVoice__btn {
  background-color: transparent;
  border: none;
  border-radius: 2em;
  display: block;
  margin: 30px auto 0;
  padding: .5em 2em;
  transition: opacity .3s;
}

.p-preVoice__btn.-more {
  background-color: #333;
  color: #fff;
}

.p-preVoice__btn.-close {
  background-color: #d9d9d9;
  color: #000;
}

@media (hover:hover) {
  .p-preVoice__btn:hover {
    opacity: .65;
  }
}

@media screen and (min-width: 768px) {
  .p-preVoice__thum {
    width: 120px;
  }

  .p-preVoice__comment {
    padding: 20px;
    position: relative;
    width: calc(100% - 160px);
  }

  .p-preVoice__item+.p-preVoice__item {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-preVoice__thum {
    width: 60px;
  }

  .p-preVoice__comment {
    padding: 15px;
    position: relative;
    width: calc(100% - 80px);
  }

  .p-preVoice__item+.p-preVoice__item {
    margin-top: 15px;
  }
}

/*---- preInquiry ----*/
.p-preInquiry .c-table__data {
  word-break: break-all;
}

.p-preInquiry .c-table__header:nth-child(1) {
  width: 30%;
}

.p-preInquiry .c-table__header:nth-child(2) {
  width: 70%;
}

@media screen and (max-width: 767px) {

  .p-preInquiry .c-table__header,
  .p-preInquiry .c-table__data {
    font-size: 1.2rem;
  }
}

/* register
-------------------------------------------- */
.p-register.-fixed {
  bottom: 0;
  left: 0;
  position: fixed;
  transform: translateY(100%);
  transition: transform .6s;
  width: 100%;
}

.p-register.-fixed.is-active {
  transform: translateY(0);
}

.p-register__group {
  margin-left: auto;
  margin-right: auto;
}

.p-register .c-link {
  font-weight: bold;
  width: 100%;
}

.p-register .c-link i {
  margin-left: 1em;
}

@media screen and (min-width: 768px) {
  .p-register {
    padding: 2rem;
  }

  .p-register__group {
    max-width: 700px;
  }

  .p-register .c-link {
    border-radius: .5em;
    font-size: 4rem;
    padding: .5em;
  }
}

@media screen and (max-width: 768px) {
  .p-register {
    padding: 1rem;
  }

  .p-register .c-link {
    border-radius: .5rem;
    font-size: 1.8rem;
    padding: .5em;
  }

  .p-register__group {
    max-width: 400px;
  }
}

/* *****************************************
 * utility
 * ***************************************** */
/* background-color
-------------------------------------------- */
.u-bg-nations {
  background-color: #bf0000;
}

.u-bg-basic {
  background-color: #333c5e;
}

.u-bg-pre {
  background-color: #60ac2d;
}

.u-bg-pre-dark {
  background-color: #3d7b18;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-pink {
  background-color: #fcdad9;
}

/* color
-------------------------------------------- */
.u-text-red {
  color: #bf0000;
}

.u-text-blue {
  color: #3a73de;
}

.u-text-white {
  color: white;
}

.u-text-pre {
  color: #3c7b18;
}

.u-text-basic {
  color: #333c5e;
}

/* color
-------------------------------------------- */
.u-text-white {
  color: #fff;
}

/* display
-------------------------------------------- */
.u-d-block {
  display: block;
}

.u-d-inline-block {
  display: inline-block;
}

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

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

/* font-size
-------------------------------------------- */
.u-fs-small {
  font-size: .875em
}

.u-fs-xsmall {
  font-size: .75em
}

.u-fs-large {
  font-size: 112.5%;
}

.u-fs-xlarge {
  font-size: 125%;
}

/* font-weight
-------------------------------------------- */
.u-fw-bold {
  font-weight: bold;
}

/* text-align
-------------------------------------------- */
.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

/* margin
-------------------------------------------- */
@media screen and (min-width: 768px) {
  .u-mt-md-10 {
    margin-top: 10px !important;
  }

  .u-mt-md-20 {
    margin-top: 20px !important;
  }

  .u-mt-md-30 {
    margin-top: 30px !important;
  }

  .u-mt-md-60 {
    margin-top: 60px !important;
  }

  .u-mt-md-100 {
    margin-top: 100px !important;
  }

  .u-mt-md-120 {
    margin-top: 120px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-sm-5 {
    margin-top: 5px !important;
  }

  .u-mt-sm-10 {
    margin-top: 10px !important;
  }

  .u-mt-sm-15 {
    margin-top: 15px !important;
  }

  .u-mt-sm-30 {
    margin-top: 30px !important;
  }

  .u-mt-sm-50 {
    margin-top: 50px !important;
  }

  .u-mt-sm-60 {
    margin-top: 60px !important;
  }
}

/* padding
-------------------------------------------- */
@media screen and (min-width: 768px) {
  .u-pb-md-120 {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-sm-60 {
    padding-bottom: 60px;
  }
}