@charset "UTF-8";

/* common
-------------------------------------------- */
a {
  transition: 0.2s;
}

a img {
  transition: 0.2s;
}

a:hover img {
  opacity: 0.7;
}

.inner {
  max-width: 1160px;
  width: calc(100% - 48px);
  margin-inline: auto;
  box-sizing: border-box;
}

.inner:not(aside):last-of-type {
  margin-bottom: 6rem;
}

.inner__full {
  background: #FCF8F7;
  width: 100%;
  margin: 0 auto;
  box-sizing: content-box;
}

.images__inr {
  display: flex;
  justify-content: center;
}

.images__inr picture:first-child {
  margin-right: 56px;
}

.section__inr-bg {
  background: #FCF8F7;
  margin: 0 auto;
}

.section__inr {
  max-width: 1160px;
  padding: 0 56px 80px;
  margin: 0 auto;
  box-sizing: content-box;
}

.section__heading {
  text-align: center;
  margin-bottom: 56px;
  padding-top: 6rem;
}

.section__heading-en {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.6rem);
  text-transform: uppercase;
  line-height: 130%;
  font-weight: bold;
  letter-spacing: -0.02em;
  display: inline-block;
  background: linear-gradient(0deg, #D61518, #F4944E);
  background: -webkit-linear-gradient(0deg, #D61518, #F4944E);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #D61518;
}

.section__heading-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 150%;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05em;
}

.section__heading-jp .small {
  font-size: 1.2rem;
}

.section__list-item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.section__list-item:last-child {
  margin-bottom: 0;
}

.section__list-item::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #D61518;
  border-radius: 50%;
}

.text-red {
  color: #D61518;
  font-style: normal;
}

.image-400 {
  width: 400px;
}

.section__inr-btn {
  width: 400px;
  font-size: 1.8rem;
  margin: 0 auto;
  background-color: #fff;
}

.section__inr-btn__row {
  display: flex;
  justify-content: center;
}

.section__inr-btn__row a:first-child {
  margin-right: 32px;
}

.section__ol-list {
  margin-bottom: 32px;
}

.section__ol-list-box {
  margin-bottom: 24px;
}

.section__ol-list-ttl {
  color: #D61518;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  padding-left: 30px;
  margin-bottom: 8px;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .section__heading {
    margin-bottom: 32px;
    padding-bottom: 20px;
  }

  .section__inr {
    padding: 0 5%;
    margin: 0 auto 56px;
  }

  .section__heading-jp {
    font-size: 1.6rem;
  }

  .section__list-item {
    margin-bottom: 8px;
  }

  .section__list-item::before {
    width: 8px;
    height: 8px;
  }

  .section__ol-list-ttl {
    font-size: 1.6rem;
    padding-left: 28px;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    width: calc(100% - 20px);
  }

  .images__inr picture {
    display: block;
    width: 100%;
  }

  .section__inr-btn {
    font-size: 1.6rem;
    width: 100%;
    padding: 12px 0;
  }
}

@media (max-width: 576px) {
  .images__inr {
    display: block;
  }

  .images__inr picture:first-child {
    margin-bottom: 16px;
  }

  .section__inr-btn {
    font-size: 1.4rem;
    width: 100%;
    padding: 10px 0;
  }

  .section__inr-btn__row {
    display: block;
  }

  .section__inr-btn__row a:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

ol.section__ol-list {
  counter-reset: li;
}

ol.section__ol-list li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
}

ol.section__ol-list li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background-color: #D61518;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  ol.section__ol-list li::before {
    font-size: 1.4rem;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

.section__heading-secondary {
  font-weight: bold;
  font-size: 1.8rem;
  border-left: 8px solid #D61518;
  padding: 6px 0 6px 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .section__heading-secondary {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    border-left: 6px solid #D61518;
    padding: 4px 0 4px 12px;
  }
}

.has-arrow {
  position: relative;
  margin-inline: auto 0;
  margin-top: 1rem;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.has-arrow:hover {
  color: #D61518;
}

.has-arrow:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.8em;
  height: 0.8em;
  margin-inline: .5rem;
  border: 0.2rem solid currentColor;
  box-sizing: border-box;
  color: #D61518;
}

.has-arrow.arrow-right:after {
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-15%) rotate(45deg);
}

/* mv
-------------------------------------------- */
.top-mv-wrap {
  background: #D61518;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.top-mv-wrap .top-mv-picture {
  width: 50vw;
  margin-left: auto;
  position: absolute;
  right: 0;
  height: 100%;
}

.top-mv-wrap .top-mv-picture img {
  height: 100%;
  object-fit: cover;
}

.top-mv-wrap .inner:last-of-type {
  max-width: 950px;
  margin-inline: auto;
  margin-bottom: 0;
}

.top-mv-wrap .top-mv-message_inr {
  max-width: 380px;
  position: relative;
  padding-block: 2rem 2rem;
}

.top-mv-wrap .top-mv-message__img {
  width: 50vw;
  max-width: 600px;
}

.top-mv-wrap .top-mv-message-text {
  color: #fff;
  max-width: 380px;
  margin-bottom: 2rem;
}

.top-mv-wrap .top-mv-medal__img {
  max-width: 370px;
}

@media screen and (max-width: 768px) {
  .top-mv-wrap .top-mv-picture {
    position: initial;
    width: 80vw;
  }

  .top-mv-wrap .top-mv-picture img {
    height: auto;
    object-fit: unset;
  }

  .top-mv-wrap .top-mv-message_inr {
    margin-top: -15vw;
    max-width: 100%;
  }

  .top-mv-wrap .top-mv-message__img {
    width: 80vw;
  }

  .top-mv-wrap .top-mv-message-text {
    max-width: 100%;
  }

  .top-mv-wrap .top-mv-medal__img {
    width: calc(100% - 4rem);
    margin: 0 auto;
  }
}

/* campaign
-------------------------------------------- */
.news__month {
  color: #D61518;
  font-size: 1.4rem;
  line-height: 1.8;
}

.news__title {
  font-size: 1.4rem;
  line-height: 1.8;
}

.new-tag {
  background: #D61518;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  padding: 2px 6px;
  border-radius: 2px;
  margin-right: 8px;
}

/* news
-------------------------------------------- */
.news__item {
  border-style: solid;
  border-color: #E6E6E6;
}

.latest_info {
  display: flex;
  gap: 2rem;
  margin-bottom: 8rem;
}

.news__items {
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  padding: 2.4rem;
  background: #fff;
}

.latest_info>div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.latest_info>div:nth-child(1) {
  flex: 6.5;
}

.latest_info>div:nth-child(2) {
  flex: 3.5;
}

.latest_info .news__items {
  height: 100%;
}

.latest_info .news.news__items .news__item:not(:first-child) {
  padding-top: 2.4rem;
  border-top-width: 1px;
}

.latest_info .news.news__items .news__item:not(:last-child) {
  padding-bottom: 2.4rem;
}

.latest_info .news.news__items .news__title {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.latest_info .news.news__items .news__month {
  margin-bottom: 1rem;
}

.latest_info .campaign.news__items .news__item:not(:last-child) {
  padding-bottom: 1.4rem;
}

.latest_info .campaign.news__items .news__item:not(:first-child) {
  padding-top: 1.4rem;
  border-top-width: 1px;
}

.latest_info .campaign.news__items .news__title {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 1024px) {
  .latest_info {
    margin-bottom: 4rem;
  }

  .latest_info>div:nth-child(1) {
    flex: 1;
  }

  .latest_info>div:nth-child(2) {
    flex: 1;
  }

  .latest_info {
    flex-direction: column;
  }

  .latest_info .news.news__items .news__month {
    margin-bottom: 0;
  }

  .latest_info .news.news__items .news__item:not(:first-child),
  .latest_info .campaign.news__items .news__item:not(:first-child) {
    padding-top: 1.4rem;
  }

  .latest_info .news.news__items .news__item:not(:last-child),
  .latest_info .campaign.news__items .news__item:not(:last-child) {
    padding-bottom: 1.4rem;
  }
}

/* menu container
-------------------------------------------- */
.menu__container {
  margin-bottom: 30px;
}

.menu__box a {
  display: flex;
  flex-direction: column;
}

.menu__box a:hover {
  opacity: 0.7;
}

.menu__box-row {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 31%);
  justify-content: space-between;
  grid-gap: 56px min(20px, 3vw);
}

.menu__box-card {
  width: 100%;
  height: 0px;
  border: 1px solid #BDBDBD;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top 20% center;
}

.menu__box-tag {
  position: absolute;
  color: #fff;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  line-height: 1;
  text-align: center;
  letter-spacing: 1px;
  padding: 12px 1rem;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 4px 4px 4px 4px;
  background: url(/images/icon/arrow-right-wh.webp) no-repeat right 16px center/20px 20px, linear-gradient(to right, rgba(214, 21, 24, 0.9), rgba(255, 91, 20, 0.7));
}

@media screen and (max-width: 1024px) {
  .menu__container {
    margin-bottom: 40px;
  }

  .menu__box {
    max-width: 100%;
  }

  .menu__box-row {
    grid-template-columns: repeat(auto-fit, 48%);
  }
}

@media (max-width: 576px) {
  .menu__box-row {
    grid-template-columns: repeat(auto-fit, 100%);
    grid-gap: 32px;
  }

  .menu__box {
    /* <-- ここから追加されたルール */
    margin-bottom: 24px;
  }

  .plan .section__heading {
    margin-bottom: 50px;
    /* SP版での見出しの下部マージンを調整 */
  }

  .menu__container {
    margin-top: 24px;
    /* SP版でのバナー群全体の上部マージンを調整 */
    margin-bottom: 24px;
  }
}

/* plan
-------------------------------------------- */
.purpose-gogaku {
  background-image: url(/images/purpose/purpose-gogaku.webp);
  background-position: top 40% center;
}

.purpose-senmon {
  background-image: url(/images/purpose/purpose-senmon.webp);
}

.purpose-sport {
  background-image: url(/images/purpose/purpose-sport.webp);
}

.purpose-kango {
  background-image: url(/images/purpose/purpose-kango.webp);
  background-position: top 30% center;
}

.purpose-daigaku {
  background-image: url(/images/purpose/purpose-daigaku.webp);
}

.purpose-working-holiday {
  background-image: url(/images/purpose/purpose-working-holiday.webp);
  background-position: center;
}

.purpose-kyugaku-nintei {
  background-image: url(/images/top/top-purpose-kyugaku-nintei.webp);
}

.purpose-aus-syusyoku {
  background-image: url(/images/top/top-purpose-aus-syusyoku.webp);
}

.bnr-box__row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.bnr-box {
  transition: 0.2s;
  width: 47%;
}

.bnr-box:hover img {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .bnr-box__row {
    gap: 24px;
  }

  .bnr-box {
    width: 100%;
  }
}

.bnr-box__bnr {
  margin-bottom: 8px;
}

/* schools
-------------------------------------------- */
.school_tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}

.school_tab>label {
  flex: 1 1;
  order: -1;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 0.4rem;
  border-radius: 4px 4px 0 0;
  background-color: #fff;
  border-style: solid;
  border-color: #ccc;
  border-width: 1px 1px 0 1px;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.school_tab>label:hover {
  background-color: #efefef;
}

.school_tab input {
  display: none;
}

.school_tab>div {
  display: none;
  width: 100%;
  padding: 2.4rem 0 0 0;
  background-color: #fff;
  font-size: 1.4rem;
}

.school_tab>div .section__heading-secondary {
  grid-column: 1 / 2;
}

.school_tab>div ul {
  grid-column: 1 / 3;
}

.school_tab>div li a {
  border-style: solid;
  border-color: #E6E6E6;
  border-top-width: 1px;
  padding-block: 1.4rem;
  transition: 0.2s;
  font-size: 1.6rem;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.school_tab>div li:last-child a,
.school_tab>div li:last-child span {
  border-bottom: 1px solid #E6E6E6;
}

.school_tab>div li:hover a {
  color: #D61518;
}

.school_tab>div li span {
  display: block;
  border-style: solid;
  border-color: #E6E6E6;
  border-top-width: 1px;
  padding-block: 1.4rem;
  transition: 0.2s;
  font-size: 1.6rem;
  cursor: default;
}

.school_tab label br {
  display: none;
}

.school_tab label:has(:checked) {
  background-color: #D61518;
  border-colod: #D61518;
  color: #fff;
}

.school_tab label:before {
  content: '';
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.8rem;
  display: inline-block;
  background: url("/images/top/icon-list-k.svg") no-repeat center bottom / contain;
}

.school_tab label:has(:checked):before {
  background: url("/images/top/icon-list-w.svg") no-repeat center bottom / contain;
}

.school_tab label:has(:checked)+div {
  display: grid;
  border-top: 5px solid #D61518;
}

.school_tab>div>a.has-arrow {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

@media screen and (max-width: 768px) {
  .school_tab {
    gap: 0 0.4rem;
  }

  .school_tab>label {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  .school_tab label:before {
    width: 1rem;
    height: 1rem;
    margin-right: 0.4rem;
  }

  .school_tab>div .section__heading-secondary,
  .school_tab>div>a.has-arrow {
    grid-column: 1 / 3;
  }

  .school_tab>div>a.has-arrow {
    grid-row: 3 / 4;
    margin-top: 1.4rem;
  }

  .school_tab>div li a,
  .school_tab>div li span {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 414px) {
  .school_tab label br {
    display: block;
  }
}

/* reason
-------------------------------------------- */
.reason__inr {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  .reason__inr {
    display: block;
    margin-bottom: 40px;
  }
}

.reason__inr:last-child {
  margin-bottom: 0;
}

.reason__inr-reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .reason__inr-reverse {
    flex-direction: row;
  }
}

.reason__txt-block {
  width: 62%;
  margin-right: 3%;
}

@media screen and (max-width: 1024px) {
  .reason__txt-block {
    width: 100%;
    margin-right: 0;
  }
}

.reason__txt-block p.numbers {
  font-family: "Noto Sans", sans-serif;
  font-size: 7.2rem;
  line-height: 110%;
  color: #F7DFD4;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .reason__txt-block p.numbers {
    font-size: 4rem;
  }
}

.reason__txt-block h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 150%;
  font-weight: bold;
  color: #D61518;
  margin-bottom: 16px;
}

@media screen and (max-width: 1024px) {
  .reason__txt-block h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}

.reason__txt-block-reverse {
  margin-right: 0;
}

.reason__illust {
  width: 35%;
}

@media screen and (max-width: 1024px) {
  .reason__illust {
    width: 60%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .reason__illust {
    width: 90%;
  }
}

.reason__illust-reverse {
  width: 35%;
  margin-right: 3%;
}

@media screen and (max-width: 1024px) {
  .reason__illust-reverse {
    width: 60%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .reason__illust-reverse {
    width: 90%;
  }
}

/* voices
-------------------------------------------- */
.experience-wrap {
  border: 2px solid #ccc;
  border-radius: 8px;
  margin: 0 auto 20px;
  padding: 35px 56px 30px;
  background: #fff;
}

div .experience-wrap:nth-of-type(4) {
  margin-bottom: 4rem;
}

.experience__raw {
  display: flex;
  margin-bottom: 25px;
  gap: 35px;
}

.experience__image {
  width: 255px;
}

.experience__image .images__inr picture:first-child {
  margin-right: 0;
}

.experience__detail {
  flex: 1;
}

.experience__detail-raw {
  display: flex;
}

.experience__name {
  font-family: "Noto Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 24px;
}

.experience__detail-raw:not(:last-child) {
  margin-bottom: 15px;
}

.experience__title-tag {
  background: #D61518;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  padding: 4px 8px;
  border-radius: 3px;
  height: 30px;
  margin-right: 16px;
  flex-basis: 100px;
}

.experience__plan {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: bold;
  color: #D61518;
  width: 70%;
}

.experience__school {
  font-size: 1.4rem;
  line-height: 1.8;
  width: 70%;
}

.experience__course {
  font-size: 1.4rem;
  line-height: 1.8;
  width: 70%;
}

.review__btn {
  margin-top: 20px;
}

.review__inr-btn {
  max-width: 340px;
  font-size: 1.8rem;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  .experience__raw {
    flex-direction: column;
    gap: 15px;
  }

  .experience-wrap {
    padding-top: 30px;
    padding-inline: 5%;
  }

  .experience-wrap:not(:last-child) {
    padding-bottom: 4rem;
  }

  .experience__image {
    width: 60%;
    min-width: 225px;
    margin: 0 auto;
  }

  .experience__image .images__inr picture:first-child {
    margin-bottom: 0;
  }

  .experience__detail-raw {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience__name {
    font-size: 1.8rem;
    text-align: center;
  }

  .experience__title-tag {
    flex-basis: unset;
    width: 100px;
  }

  .experience__plan,
  .experience__school,
  .experience__course {
    width: 100%;
  }

  .review__btn {
    margin-top: 30px;
  }
}

/* support
-------------------------------------------- */
.support {
  padding-bottom: 1rem;
}

.support__text-wrap {
  margin-bottom: 24px;
}

.support__list-wrap {
  background: #fff;
  border: solid 2px #D61518;
  border-radius: 4px;
  padding: 56px 56px 36px;
}

.support__list-wrap:not(:last-child) {
  margin-bottom: 2rem;
}

@media screen and (max-width: 1024px) {
  .support__list-wrap {
    border-radius: 4px;
    padding: 32px 5% 40px;
  }
}

.support__list-wrap h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #D61518;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .support__list-wrap h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}

.support__list-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 56px;
}

@media screen and (max-width: 1024px) {
  .support__list-row {
    display: block;
    margin-bottom: 24px;
  }
}

.support__logo-box {
  width: 50%;
  text-align: center;
  background: #fff;
  padding: 56px 0;
}

@media (max-width: 576px) {
  .support__logo-box {
    width: 100%;
    padding: 40px 5%;
  }
}

.support__list-box {
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .support__list-box {
    width: 100%;
  }
}

.support__list-box__left {
  margin-right: 56px;
}

.support__logo {
  max-width: 356px;
  margin: 0 auto 24px;
}

@media screen and (max-width: 1024px) {
  .support__logo {
    max-width: 356px;
  }
}

.support__link-text {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.support__link-text:hover {
  color: #D61518;
}

.support__list-item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.support__list-item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .support__list-item {
    margin-bottom: 8px;
  }
}

.support__list-item::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #D61518;
  border-radius: 50%;
}

@media screen and (max-width: 1024px) {
  .support__list-item::before {
    width: 8px;
    height: 8px;
  }
}

.support__area {
  display: flex;
  justify-content: space-between;
}

.support__area>div {
  margin-top: 4rem;
}

.support__area ul li {
  display: inline-block;
}

.support__area .ttl {
  color: #D61518;
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 2.4rem);
}

.support__area .ttl em {
  font-style: normal;
  font-size: 2em;
  margin-inline: -5px;
}

.support__area img {
  max-width: 277px;
}

.support__area a {
  display: inline;
  text-decoration: underline;
}

.support__area a:hover {
  color: #D61518;
}

@media screen and (max-width:768px) {
  .support__area {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .support__area>div {
    margin-top: 1rem;
  }
}

/* guide
-------------------------------------------- */
.guide .menu__box {
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  display: flex;
}

.guide .menu__box a {
  padding: 0.5rem 1.5rem 2rem;
}

.guide a:hover .ttl {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: #D61518;
  transition: 0.2s;
}

.guide .menu__box img {
  max-width: calc(100% + 2rem);
  margin-left: -1rem;
  margin-bottom: 2rem;
}

.guide .menu__box a:hover {
  opacity: 1;
}

.guide .ttl {
  font-weight: bold;
  font-size: 1.8rem;
}

.guide .ttl+p {
  margin-block: 2rem;
}

.guide .btn {
  width: max(135px, 30%);
  font-size: 1.4rem;
  padding: 1rem;
  margin-right: 0;
  margin-top: auto;
}

.guide .guide-footer {
  background: #01184D;
  padding-block: 3rem;
}

.guide .guide-footer .bnr-box {
  background: #fff;
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 2rem;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  overflow: hidden;
  padding: 0.5rem;
}

.guide .guide-footer .inner:last-of-type {
  margin-bottom: 0;
}

.guide .guide-footer img {
  height: 82px;
}

/* magazine
-------------------------------------------- */
.magazine ul {
  max-width: 1048px;
  margin: 0 auto 4rem;
}

.magazine li a {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1.4rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.magazine li:not(:first-child) a {
  padding-top: 1.4rem;
}

.magazine .category {
  color: #ffffff;
  background-color: #d61518;
  border-radius: 3px;
  width: 80px;
  text-align: center;
  display: block;
  font-size: 1rem;
}

.magazine .ttl {
  width: calc(100% - 100px);
}

.magazine a:hover .ttl {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: #d61518;
}

@media screen and (max-width: 768px) {
  .magazine ul {
    margin-bottom: 3rem;
  }

  .magazine li a {
    flex-direction: column;
    gap: 0.4rem;
  }

  .magazine .ttl {
    width: 100%;
  }
}

/* mv
-------------------------------------------- */
.mv_wrap {
  width: 100%;
  height: 400px;
  display: flex;
  margin-bottom: 56px;
}

@media screen and (max-width: 1024px) {
  .mv_wrap {
    display: block;
    position: relative;
    margin-bottom: 24px;
  }
}

@media (max-width: 576px) {
  .mv_wrap {
    height: 200px;
  }
}

.mv01 {
  flex: 1;
  height: 400px;
  background: url(/images/gogaku/gogaku-mv01.webp) no-repeat center center;
  background-size: cover;
}

@media (max-width: 576px) {
  .mv01 {
    height: 200px;
  }
}

.mv02 {
  flex: 1;
  height: 400px;
  background: url(/images/gogaku/gogaku-mv02.webp) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .mv02 {
    display: none;
  }
}

.mv03 {
  flex: 1;
  height: 400px;
  background: url(/images/gogaku/gogaku-mv03.webp) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .mv03 {
    display: none;
  }
}

.mv__title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 400px;
  height: 400px;
  background: #D61518;
}

@media screen and (max-width: 1024px) {
  .mv__title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 12px;
    background: linear-gradient(to right, rgba(214, 21, 24, 0.9), rgba(255, 91, 20, 0.7));
  }
}

@media screen and (max-width: 1024px) and (max-width: 576px) {
  .mv__title {
    padding: 10px;
  }
}

.mv__title h1 {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.mv__title h1 span {
  font-size: 1.7rem;
}

@media (max-width: 576px) {
  .mv__title h1 {
    font-size: 2rem;
  }
}

/* Slider */
.splide__pagination__page.is-active {
  background: #D61518;
}

.splide__arrows.splide__arrows--ltr {
  width: 100%;
  position: absolute;
  margin: 0;
  height: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 10px;
}

.splide__arrow {
  background: #d61518;
  height: 3em;
  width: 3em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.splide__arrow svg {
  fill: #fff;
  height: 1.2em;
  width: 1.2em;
}

.splide {
  padding-bottom: 6rem;
}

@media screen and (max-width:1160px) {
  .splide__arrows.splide__arrows--ltr {
    width: 95vw;
  }
}

@media screen and (max-width: 767px) {
  .splide__arrows {
    display: none;
  }
}

.banner-slider-section {
  padding: 0px 0;
}

.splide__slide {
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.bnr-box {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: unset;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  overflow: hidden;
}

.bnr-box__bnr {
  margin-bottom: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.bnr-box__bnr img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}

/*都市基本情報
-------------------------------------------- */
.mv_wrap {
  width: 100%;
  height: 400px;
  display: flex;
  margin-bottom: 56px;
}

@media screen and (max-width: 1024px) {
  .mv_wrap {
    display: block;
    position: relative;
    margin-bottom: 24px;
  }
}

@media (max-width: 576px) {
  .mv_wrap {
    height: 200px;
  }
}

.mv01 {
  flex: 1;
  height: 400px;
  background: url(/images/common/nature-image02.webp) no-repeat left center;
  background-size: cover;
}

@media (max-width: 576px) {
  .mv01 {
    height: 200px;
  }
}

.mv02 {
  flex: 1;
  height: 400px;
  background: url(/images/common/goldcoast-image04.webp) no-repeat left center;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .mv02 {
    display: none;
  }
}

.mv__title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 400px;
  height: 400px;
  background: #D61518;
}

@media screen and (max-width: 1024px) {
  .mv__title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 12px;
    background: linear-gradient(to right, rgba(214, 21, 24, 0.9), rgba(255, 91, 20, 0.7));
  }
}

@media screen and (max-width: 1024px) and (max-width: 576px) {
  .mv__title {
    padding: 10px;
  }
}

.mv__title h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.07em;
}

@media (max-width: 576px) {
  .mv__title h1 {
    font-size: 2rem;
  }
}

section.inner {
  margin-bottom: 8rem;
}

.info_item {
  margin-bottom: 3.2rem;
}

.has-image .desc__inr {
  width: 60%;
  margin-right: 56px;
}

.has-image .images__inr {
  width: 40%;
  display: block;
}

.images__inr {
  display: flex;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.images__inr img {
  object-fit: cover;
  height: 100%;
}

.images__inr picture {
  width: 50%;
}

.images__inr picture:first-child {
  margin-right: 56px;
}

.inr-title {
  margin: 0 0 3.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #D61518;
  line-height: 1.4;
}

.inr-title a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  display: block;
  margin: 0 0 3.5rem;
}

.inr-title a:hover {
  text-decoration: underline;
}

.listarea__item {
  margin-bottom: 1.8rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.8rem;
}

.listarea__item:before {
  background-color: #d61518;
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 0.5em;
  width: 10px;
}

.info_item .text-wrap {
  margin-bottom: 4rem;
}

.info_item .text-wrap:last-of-type {
  margin-bottom: 0;
}

/*introduction__lead*/
.introduction__lead .au_img {
  width: 40%;
  min-width: 300px;
  background: #cae6f4;
  display: flex;
  align-items: center;
}

.introduction__lead .au_img img {
  width: 100%;
}

.introduction__lead .info_tbl {
  width: 60%;
}

.introduction__lead .info_tbl ul li:not(:last-child) {
  margin-bottom: 4px;
}

.introduction__lead .info_tbl ul li {
  position: relative;
  padding-left: 14px;
}

.introduction__lead .info_tbl ul li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #333;
  border-radius: 50%;
}

.introduction__lead.flexbox {
  gap: 20px;
}

.introduction__lead p {
  margin-bottom: 16px;
}


/*テーブル共通*/
.info_tbl {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: initial;
  width: 100%;
  table-layout: fixed;
}

.info_tbl_half {
  width: 50%;
}

.info_tbl caption {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.info_tbl thead {
  background: #F7DFD4;
}

.info_tbl thead th {
  padding: 12px;
  border: 1px solid #BDBDBD;
  font-weight: normal;
  color: #333;
  vertical-align: middle;
}

.info_tbl tbody {
  background: #fff;
}

.info_tbl tbody th,
.info_tbl tbody td {
  padding: 10px;
  font-weight: normal;
  border: 1px solid #BDBDBD;
  vertical-align: top;
}

.info__note {
  margin-bottom: 0.4rem;
  line-height: initial;
  margin-top: 0.4rem;
  font-size: 0.85em;
}

.section__inr-btn {
  font-size: 1.4rem;
  margin-top: 3rem;
  background-color: #fff;
}

.info_tbl.info_tbl_row {
  font-size: 1.4rem;
  table-layout: auto;
}

.info_tbl.info_tbl_row th {
  background: #F7DFD4;
  min-width: 100px;
  width: 20%;
}

/* 気候テーブル */
.weather-summary .info_tbl {
  text-align: center;
  table-layout: auto;
}

.weather-summary .info_tbl thead th {
  text-align: center;
}

.weather-summary .info_tbl tbody th {
  width: 15%;
  min-width: 120px;
}

@media screen and (max-width: 1024px) {
  section.inner {
    margin-bottom: 4rem;
  }

  .images__inr picture:first-child {
    margin-right: 1.5rem;
  }

  .images__inr picture {
    width: 100%;
  }

  .has-image {
    flex-direction: column;
    gap: 1.5rem;
  }

  .has-image .desc__inr,
  .has-image .images__inr {
    width: 100%;
  }

  .introduction__lead.flexbox {
    gap: 15px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 24px;
    width: 100%;
  }

  .introduction__lead .au_img {
    align-items: center;
    width: auto;
  }

  .introduction__lead .info_tbl {
    width: 100%;
  }

  .introduction__lead .info_tbl tr {
    display: flex;
    flex-direction: column;
  }

  .info_tbl.info_tbl_row th {
    border-bottom: none;
    width: 100%;
  }

  .info_tbl.info_tbl_row th:not(:first-child) {
    border-top: none;
  }

  .info_tbl.info_tbl_row td {
    border-top: none;
  }

  .info_tbl.info_tbl_row td {
    width: 100%;
  }

  .info_tbl.info_tbl_row tr:not(:last-child) td {
    border-bottom: none;
  }

  .info_tbl_half {
    width: 100%;
  }

  .g-tablearea {
    overflow-x: scroll;
    width: 110%;
    padding-right: 5%;
    margin-left: -5%;
    padding-left: 5%;
    padding-bottom: 3px;
  }

  .g-tablearea .info_tbl {
    min-width: 768px;
    table-layout: auto;
  }

  .g-tablearea .info_tbl thead th {
    z-index: 0;
  }
}

@media screen and (max-width: 768px) {
  .images__inr picture:first-child {
    margin-right: 0;
    margin-bottom: 0;
  }

  .images__inr {
    flex-direction: column;
    gap: 1.5rem;
  }

  .images__inr img {
    height: auto;
  }
}

.has-image {
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
}

.has-image .desc__inr {
  flex: 1;
  min-width: 200px;
  margin-right: 0;
}

.has-image .images__inr {
  flex: 1;
  min-width: 200px;
  margin-left: 0;
}

@media (max-width: 576px) {
  .info_item:first-child .has-image {
    display: flex !important;
  }

  .info_item:not(:first-child) .has-image {
    display: block !important;
  }

  .has-image .desc__inr,
  .has-image .images__inr {
    width: 100%;
    min-width: unset;
    margin-right: 0;
    margin-left: 0;
  }

  .has-image .desc__inr {
    margin-bottom: 16px;
  }
}

li.info_item {
  margin-bottom: 0;
}

section.inner ul {
  margin-top: 2.4rem;
}

section.inner ul li.info_item {
  margin-bottom: 3.2rem;
}

@media (max-width: 576px) {
  .inner {
    width: calc(100% - 24px);
    padding-inline: 2px;
  }

  section.inner ul {
    margin-top: 1.5rem;
  }

  section.inner ul li.info_item {
    margin-bottom: 2rem;
  }

  .introduction__lead {
    margin-bottom: 2rem;
  }

  .has-image .desc__inr {
    margin-bottom: 1rem;
  }

  .section__heading {
    margin-bottom: 24px;
  }
}

.has-image .images__inr img {
  max-width: 350px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 576px) {
  .has-image .images__inr img {
    max-width: 100%;
  }
}

.section__inr-bg-city {
  background: #FCF8F7;
  max-width: 1160px;
  margin-bottom: 80px;
  padding: 20px 30px 20px;
  margin: 0 auto;
}

/* 体験談セクション用CSS
-------------------------------------------- */
.schoolreview {
  padding-bottom: 80px;
}

.review-wrap {
  background: #FFF;
  max-width: 360px;
  margin: 0 auto 60px;  
  padding: 30px 20px;
  box-sizing: border-box;
}

.review-wrap--summary {
  border: 1px solid #333;
}

.schoolreview-unit {
  background: #FCF8F7;
  padding: 40px 50px;
  margin-bottom: 40px;
  border-radius: 4px;
}
.schoolreview-unit:last-of-type {
  margin-bottom: 60px;
}

.review__raw {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.review-wrap--summary .review__raw {
  justify-content: center;
}

.review__raw--top {
  align-items: flex-start;
}

.score__area {
  text-align: center;
  min-width: 140px;
  margin-right: 0;
}
.score__area--individual {
  padding-top: 10px;
}

.score__raw {
  display: block;
}

.score__title {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
  margin-right: 0;
}
.score__title--sm {
  font-size: 1.4rem;
}

.score__average {
  font-family: "Noto Sans", sans-serif;
  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
}

.score__stars {
  position: relative;
  color: #F6AF42;
  display: inline-block;
  font-size: 2.0rem;
  line-height: 1;
  width: auto;
}
.score__stars::before {
  content: "★★★★★";
  color: #ccc;
}
.score__stars span {
  position: absolute;
  overflow: hidden;
  display: inline-block;
  top: 0;
  left: 0;
  white-space: nowrap;
  color: #F6AF42;
}

.singlereview {
  margin-top: 0;
  margin-bottom: 0;
}
.singlereview__name {
  padding: 6px 0 6px 16px;
  margin-bottom: 25px;
  border-left: 8px solid #D61518;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
}

.qa {
  flex: 1;
  width: 100%;
  background: transparent;
  margin-bottom: 0;
}
.qa__wrap {
  margin-bottom: 0;
}
.qa__question {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  background: #fce5db; 
  padding: 10px 15px;
  border: solid 1px #ccc;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
}
.qa__answer {
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 15px;
  margin: 0 auto 20px;
  border: solid 1px #ccc;
}
.qa__answer:last-child {
  margin-bottom: 0;
}
.qa__answer p {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .schoolreview-unit {
    padding: 30px 20px;
  }
  .review-wrap {
    padding: 20px;
    width: 100%;
  }
  .review__raw {
    display: block;
  }
  
  .review-wrap--summary .review__raw {
    display: flex;
    justify-content: center;
  }

  .score__area {
    margin-right: 0;
    margin-bottom: 24px;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .review-wrap--summary .score__area {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .score__area--individual {
    border-bottom: none;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  
  .score__average {
    font-size: 3.2rem;
  }
  .singlereview__name {
    font-size: 1.6rem;
  }
  
  .qa__question, .qa__answer {
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  .score__area--individual {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.inner__full{
  background-color: #FCF8F7;
  width: 100%;
  margin: 0 auto;
  box-sizing: content-box;
}

.cta__bar{
  padding: 2rem 0 3rem;
  box-sizing: border-box;
}

.cta__bar .inner{
  display: flex;
  gap: 4rem;
}

.cta__item_wrap{
  width: 100%;
  text-align: center;
}

.cta__item{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 100px;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0.8rem;
  position: relative;
  height: 8rem;
  max-width: 536px;
  margin-inline: auto;
}

.cta__item .baloon{
  position: absolute;
  top: -2rem;
  border: 2px solid;
  font-size: 1.4rem;
  padding: .6rem 2rem 0.8rem;
  line-height: 1;
  background: #fff;
  color: initial;
  border-radius: 100px;
}

.cta__item .baloon:before{
  content: '';
  width: 20px;
  height:20px;
  display: inline-block;
  background: url(/images/contact-kakuyasu/icon-baloon.svg) no-repeat;
  position: absolute;
  bottom: -2rem;
  right: 2rem;
}

.cta__item.cta__line .baloon{
  color:#06C755;
}

.cta__item.cta__contact .baloon{
  color: #D61518;
}

.cta__item .item-icon{
  margin-right: 1rem;
}

.cta__item.cta__line .item-icon{
  height: 32px;
}

.cta__item.cta__contact .item-icon{
  height: 20px;
}

.cta__line{
  background-color:#06C755;
}

.cta__contact{
  background-color:#D61518;
}

@media screen and (max-width:768px){
  .cta__bar .inner{
    flex-direction: column;
    gap: 3rem;
    width: 90%;
  }

  .cta__item{
    padding:1rem 2rem 0.5rem;
    height: 7rem;
  }

  .cta__item{
    font-size: 1.8rem;
    font-weight: 500;
    padding:.3rem 2rem 0.5rem;
    height: 7rem;
  }
}
.cta__bar.inner__full{
  background-color: #fff;
}