@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
:root {
  --font-noto-sans: "Noto Sans JP", sans-serif;
}

.xs_only {
  display: none;
}
@media (max-width: 576px) {
  .xs_only {
    display: inline;
  }
}

@media (max-width: 576px) {
  .lg_only {
    display: none;
  }
}

.main-row {
  display: grid;
  margin: 60px auto 80px auto;
  width: calc(100% - 48px);
  max-width: 1160px;
  grid-template-columns: 900px 230px;
  gap: 0 30px;
}
.main-row__main {
  grid-column: 1;
  font-weight: 400;
}
.main-row__main p:not(:last-of-type) {
  margin-bottom: 1em;
}
.main-row__sub {
  grid-column: 2;
  position: relative;
}
.main-row__sub #sideBnr {
  position: sticky;
  top: 130px;
  width: 230px;
  height: 665px;
}
.main-row__sub #sideBnr a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .main-row {
    display: block;
    width: calc(100% - 30px);
  }
  .main-row__sub {
    display: none;
  }
}
@media (max-width: 576px) {
  .main-row {
    margin-top: 25px;
    margin-bottom: 40px;
  }
}

.title-gradation {
  margin-bottom: 50px;
  font-family: var(--font-noto-sans);
  font-weight: 700;
}
.title-gradation__main {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  background: linear-gradient(90deg, #D61518, #f4964e);
  -webkit-background-clip: text; /* テキストで切り抜く */
  -webkit-text-fill-color: transparent; /* 切り抜いた部分は背景を表示 */
  font-size: 56px;
}
.title-gradation__sub {
  display: block;
  line-height: 1.4;
  text-align: center;
  color: #333;
  font-size: 20px;
}
@media (max-width: 576px) {
  .title-gradation {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .title-gradation__main {
    margin-bottom: 10px;
    font-size: 40px;
  }
  .title-gradation__sub {
    font-size: 15px;
    word-break: keep-all;
  }
}

.title-left-red {
  margin-bottom: 20px;
  padding: 0 0 0 10px;
  border-left: 5px solid #D61518;
  color: #333;
  line-height: 1.5;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.title-left-red--large {
  margin-bottom: 30px;
  font-size: 20px;
}
.title-left-red__note {
  font-size: 12px;
}
@media (max-width: 576px) {
  .title-left-red--large {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.list-photo-comment {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px 20px;
  margin-bottom: 2.4rem;
}
.list-photo-comment__card {
  margin: 0 0 10px 0;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.list-photo-comment__photo {
  position: relative;
  z-index: 1;
}
.list-photo-comment__title {
  padding: 7px 0;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(214, 21, 24);
  background: linear-gradient(90deg, rgb(214, 21, 24) 0%, rgba(255, 91, 20, 0.7) 100%);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  font-size: 15px;
}
.list-photo-comment__title::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
  position: absolute;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
}
.list-photo-comment__comment {
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.4rem;
}
@media (max-width: 576px) {
  .list-photo-comment {
    grid-template-columns: repeat(2, 1fr);
  }
  .list-photo-comment__title {
    padding: 5px 0;
    font-size: 12px;
  }
  .list-photo-comment__title::after {
    right: 10px;
  }
}

.list-photo-title {
  display: grid;
  margin: 0 auto;
  width: calc(100% - 48px);
  max-width: 1160px;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
.list-photo-title__link {
  position: relative;
}
.list-photo-title__photo {
  position: relative;
  z-index: 1;
}
.list-photo-title__title {
  padding: 7px 0;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(214, 21, 24);
  background: linear-gradient(90deg, rgb(214, 21, 24) 0%, rgba(255, 91, 20, 0.7) 100%);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  font-size: 15px;
}
.list-photo-title__title::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
  position: absolute;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 576px) {
  .list-photo-title {
    margin: 0 15px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    width: auto;
  }
  .list-photo-title__title {
    padding: 5px 0;
    font-size: 12px;
  }
  .list-photo-title__title::after {
    right: 10px;
  }
}

.list-blog {
  display: grid;
  margin: 0 auto;
  width: calc(100% - 100px);
  max-width: 1160px;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
.list-blog__link {
  display: block;
  position: relative;
}
.list-blog__photo {
  margin-bottom: 10px;
}
.list-blog__date {
  font-size: 12px;
}
.list-blog__title {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 1.4rem;
}
.list-blog__tags {
  display: flex;
}
.list-blog__tags__item {
  margin-right: 5px;
  padding: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #D61518;
  background-color: #FCF8F7;
}
@media (max-width: 576px) {
  .list-blog {
    margin: 0 20px;
    grid-template-columns: auto;
    grid-gap: 0px;
    width: auto;
  }
  .list-blog__item:not(:last-of-type) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d9d9d9;
  }
  .list-blog__link {
    display: grid;
    grid-template-columns: 110px auto;
    grid-template-rows: auto auto auto;
  }
  .list-blog__photo {
    margin: 0 10px 0 0;
    grid-row: 1/3;
  }
  .list-blog__photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  .list-blog__date {
    font-size: 1.4rem;
    grid-column: 2;
    grid-row: 1;
  }
  .list-blog__title {
    font-size: 1.4rem;
    grid-column: 2;
    grid-row: 2;
  }
  .list-blog__tags {
    grid-column: 2;
    grid-row: 3;
  }
  .list-blog__tags__item {
    font-size: 12px;
  }
}

.list-school {
  margin: 0 auto;
  width: 900px;
}
.list-school__item {
  padding: 0 0 20px 0;
  border-radius: 5px;
  border: 2px solid #D61518;
}
.list-school__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.list-school__link {
  display: grid;
  padding: 20px 20px 0 20px;
  grid-template-columns: 475px 40px 290px;
  grid-template-rows: auto 1fr auto auto;
  gap: 0 25px;
}
.list-school__name {
  display: grid;
  margin-bottom: 10px;
  margin-right: 30px;
  grid-column: 1/3;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: auto auto;
}
.list-school__name br {
  display: none;
}
.list-school__name__ja {
  display: inline-block;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: #D61518;
  font-family: "Noto Sans JP";
  line-height: 1.5;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  grid-row: 1;
  grid-column: 1;
}
.list-school__name__en {
  display: inline-block;
  color: #ac7f78;
  line-height: 1.5;
  font-weight: 700;
  font-size: 13px;
  grid-row: 2;
  grid-column: 1;
}
.list-school__name__state {
  margin-left: 10px;
  margin-bottom: 5px;
  padding: 2px 8px;
  background-color: #f4e929;
  font-weight: 400;
  color: #000;
  line-height: 1;
  font-size: 1.4rem;
  border-radius: 30px;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.list-school__photo {
  margin-bottom: 20px;
  grid-column: 3;
  grid-row: 1/3;
}
.list-school__comment {
  grid-column: 1/3;
  grid-row: 2;
  align-items: start;
}
.list-school__table {
  margin-top: 15px;
  grid-column: 1;
  grid-row: 3;
  align-items: center;
}
.list-school__table table {
  width: 100%;
  color: #333;
  line-height: 1.4;
  font-weight: 400;
  font-size: 1.4rem;
}
.list-school__table caption {
  padding-bottom: 5px;
  border-bottom: 2px solid #d9d9d9;
}
.list-school__table th {
  padding: 5px 0;
  vertical-align: middle;
  border-bottom: 2px solid #D61518;
  font-weight: 400;
  width: 130px;
}
.list-school__table td {
  padding: 5px 0;
  vertical-align: middle;
  border-bottom: 2px solid #d9d9d9;
}
.list-school__recommends {
  margin-top: 15px;
  padding: 10px;
  grid-column: 2/4;
  grid-row: 3;
  background-color: #FCF8F7;
}
.list-school__recommends dt {
  color: #D61518;
  font-weight: 700;
}
.list-school__recommends dd {
  padding: 5px 0 5px 25px;
  font-size: 12px;
  position: relative;
  z-index: 0;
}
.list-school__recommends dd:not(:last-of-type) {
  border-bottom: 2px solid #ffe5df;
}
.list-school__recommends dd::before {
  display: block;
  content: "";
  width: 13px;
  height: 11px;
  background-image: url(/images/ls/icon_check.svg);
  position: absolute;
  left: 5px;
  top: 50%;
  translate: 0 -50%;
}
.list-school__para-button {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .list-school {
    width: auto;
  }
  .list-school__link {
    margin: 0 auto;
    padding: 15px 2.7% 0 2.7%;
    grid-template-columns: 56% 5% auto;
  }
  .list-school__comment {
    margin-right: 30px;
    margin-bottom: 20px;
  }
  .list-school__table table {
    font-size: 11px;
  }
  .list-school__table caption {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .list-school {
    margin: 0 0;
    width: auto;
  }
  .list-school__item:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .list-school__link {
    padding: 15px 15px 0 15px;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto auto auto;
  }
  .list-school__name {
    margin: 0 0 10px 0;
    grid-column: 1;
    grid-row: 1;
  }
  .list-school__name__ja {
    font-size: 16px;
  }
  .list-school__name__en {
    font-size: 12px;
  }
  .list-school__photo {
    margin: 0 auto 0 auto;
    width: 215px;
    grid-column: 1;
    grid-row: 5;
  }
  .list-school__comment {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    grid-column: 1;
    grid-row: 2;
  }
  .list-school__table {
    margin: 0 0 20px 0;
    grid-column: 1;
    grid-row: 3;
  }
  .list-school__table table {
    font-size: 13px;
  }
  .list-school__table caption {
    padding-bottom: 8px;
  }
  .list-school__table th {
    padding: 5px;
    font-weight: 400;
    width: 120px;
  }
  .list-school__table td {
    padding: 5px;
  }
  .list-school__recommends {
    margin-bottom: 20px;
    grid-column: 1;
    grid-row: 4;
    font-size: 13px;
  }
  .list-school__recommends dt {
    color: #D61518;
    font-weight: 700;
  }
  .list-school__recommends dd {
    padding: 5px 0 5px 30px;
    line-height: 1.5;
  }
  .list-school__para-button {
    grid-column: 1;
    grid-row: 6;
    text-align: center;
  }
}

.link-inline {
  display: inline-block;
  font-size: inherit;
  text-decoration: underline;
  line-height: inherit;
}
.link-inline--bold {
  font-weight: 700;
}
.link-inline--red {
  color: #D61518;
}

.link-inline_red {
  display: inline-block;
  font-size: inherit;
  text-decoration: underline;
  color: #d61518;
  line-height: inherit;
}

/* common
-------------------------------------------- */
.link-txt {
  color: #D61518;
}

.section__inr-btn {
  width: 400px;
  font-size: 1.8rem;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .section__inr-btn {
    font-size: 1.6rem;
    width: 100%;
    padding: 12px 0;
  }
}
@media (max-width: 576px) {
  .section__inr-btn {
    font-size: 1.4rem;
    width: 100%;
    padding: 10px 0;
  }
}

.section__inr-btn__row {
  display: flex;
  justify-content: center;
}
.section__inr-btn__row a:first-child {
  margin-right: 32px;
}
@media (max-width: 576px) {
  .section__inr-btn__row {
    display: block;
  }
  .section__inr-btn__row a:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

/* 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-size: cover;
}
@media (max-width: 576px) {
  .mv01 {
    height: 200px;
  }
}
.mv02 {
  flex: 1;
  height: 400px;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .mv02 {
    display: none;
  }
}

.company .mv01 {
  background: url(/images/company/main-1.webp) no-repeat center center;
  background-size: cover;
}
.company .mv02 {
  background: url(/images/company/main-2.webp) no-repeat center center;
  background-size: cover;
}
.depapepe .mv01 {
  background: url(/images/company/depapepe/main-1.webp) no-repeat center center;
  background-size: cover;
}
.depapepe .mv02 {
  background: url(/images/company/depapepe/main-2.webp) no-repeat center 0;
  background-size: cover;
}
.staff .mv01 {
  background: url(/images/company/staff/main-1.webp) no-repeat center 0;
  background-size: cover;
}
.staff .mv02 {
  background: url(/images/company/staff/main-2.webp) no-repeat center 0;
  background-size: cover;
}
.location .mv01 {
  background: url(/images/company/location/main-1.webp) no-repeat center center;
  background-size: cover;
}
.location .mv02 {
  background: url(/images/company/location/main-2.webp) no-repeat center center;
  background-size: cover;
}
.support-offices .mv01 {
  background: url(/images/company/support-offices/main-1.webp) no-repeat center center;
  background-size: cover;
}
.support-offices .mv02 {
  background: url(/images/company/support-offices/main-2.webp) no-repeat center center;
  background-size: cover;
}
.junior .mv01 {
  background: url(/images/age/main-1.webp) no-repeat center 0;
  background-size: cover;
}
.junior .mv02 {
  background: url(/images/age/main-2.webp) no-repeat center 0;
  background-size: cover;
}
.college .mv01 {
  background: url(/images/age/main-3.webp) no-repeat center 0;
  background-size: cover;
}
.college .mv02 {
  background: url(/images/age/main-4.webp) no-repeat center 0;
  background-size: cover;
}
.society .mv01 {
  background: url(/images/age/main-5.webp) no-repeat center 0;
  background-size: cover;
}
.society .mv02 {
  background: url(/images/age/main-6.webp) no-repeat center 0;
  background-size: cover;
}
.senior .mv01 {
  background: url(/images/age/main-7.webp) no-repeat center 0;
  background-size: cover;
}
.senior .mv02 {
  background: url(/images/age/main-8.webp) no-repeat center 0;
  background-size: cover;
}
.news .mv01 {
  background: url(/images/news/main-1.webp) no-repeat center 0;
  background-size: cover;
}
.news .mv02 {
  background: url(/images/news/main-2.webp) no-repeat center 0;
  background-size: cover;
}
.scholarship .mv01 {
  background: url(/images/scholarship/main-1.webp) no-repeat center 0;
  background-size: cover;
}
.scholarship .mv02 {
  background: url(/images/scholarship/main-2.webp) no-repeat center 0;
  background-size: cover;
}
.faq-archive .mv01 {
  background: url(/images/faq/main-1.webp) no-repeat center 0;
  background-size: cover;
}
.faq-archive .mv02 {
  background: url(/images/faq/main-2.webp) no-repeat center 0;
  background-size: cover;
}
.ls .mv01 {
  background: url(/images/ls/main-1.webp) no-repeat center 0;
  background-size: cover;
}
.ls .mv02 {
  background: url(/images/ls/main-2.webp) no-repeat center 0;
  background-size: cover;
}
.uni .mv01 {
  background: url(/images/uni/main-1.webp) no-repeat center 0;
  background-size: cover;
}
.uni .mv02 {
  background: url(/images/uni/main-2.webp) no-repeat center 0;
  background-size: cover;
}
.tc .mv01 {
  background: url(/images/tc/main-1.webp) no-repeat center 0;
  background-size: cover;
}
.tc .mv02 {
  background: url(/images/tc/main-2.webp) no-repeat center 0;
  background-size: cover;
}




.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,
.mv__title p {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.07em;
}
.mv__title h1.s-font,
.mv__title p.s-font {
  font-size: 2.4rem;
}
.mv__title h1.s-font .s-font,
.mv__title p.s-font .s-font {
  font-size: 1.8rem;
}
@media (max-width: 576px) {
  .mv__title h1,
  .mv__title p {
    font-size: 2rem;
  }
  .mv__title h1.s-font ,
  .mv__title p.s-font {
    font-size: 2rem;
  }
  .mv__title h1.s-font .s-font,
  .mv__title p.s-font .s-font {
    font-size: 1.6rem;
  }
}



/*
.unit-top {
  display: grid;
  margin: 0 auto;
  height: 400px;
  grid-template-columns: auto 400px auto;
  grid-template-rows: 400px;
  background-color: #D61518;
}
.unit-top__photo:nth-of-type(1) {
  grid-column: 1;
}
.unit-top__photo:nth-of-type(2) {
  grid-column: 3;
}
.unit-top__photo__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}
.unit-top__title {
  grid-column: 2;
  align-self: center;
  padding: 0 20px;
  line-height: 1.5;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #fff;
  word-break: keep-all;
}
.unit-top__photo-2 {
  grid-column: 3;
}
@media (max-width: 576px) {
  .unit-top {
    height: auto;
    grid-template-columns: 100%;
    grid-template-rows: 135px auto;
  }
  .unit-top__photo {
    height: 135px;
  }
  .unit-top__photo:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .unit-top__photo:nth-of-type(2) {
    display: none;
  }
  .unit-top__photo__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .unit-top__title {
    padding: 10px;
    grid-column: 1;
    grid-row: 2;
    font-size: 2rem;
    text-align: center;
  }
}
*/
.unit-intro {
  margin: 50px auto;
  width: calc(100% - 100px);
  max-width: 1160px;
}
.unit-intro p:not(:last-of-type) {
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .unit-intro {
    margin: 20px;
    width: auto;
  }
}

.school-list .btn--school-list {
  display: inline-block;
  width: 360px;
  position: relative;
}
.school-list .btn--school-list::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
  position: absolute;
  right: 25px;
  top: 50%;
  translate: 0 -50%;
}
.school-list .btn--school-list:hover::after {
  border-color: #D61518;
}
.school-list__unit:not(:last-of-type) {
  margin-bottom: 80px;
}
.school-list__conditions {
  margin: 0 auto;
  padding: 20px 60px 30px 60px;
  width: calc(100% - 50px);
  max-width: 1160px;
  border-radius: 5px;
  background: #fcf8f7;
}
.school-list__conditions__title {
  margin-bottom: 10px;
  color: #D61518;
  text-align: center;
  line-height: 170%;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.school-list__conditions__list {
  margin-bottom: 10px;
  counter-reset: item-count;
}
.school-list__conditions__list__item {
  padding: 7px 5px 7px 30px;
  color: #000;
  font-weight: 700;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  counter-increment: item-count;
  border-bottom: 2px solid #ffe5df;
}
.school-list__conditions__list__item::before {
  display: block;
  content: counter(item-count);
  background-color: #D61518;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  line-height: 24px;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 9px;
}
.school-list__conditions__note {
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.6px;
}
.school-list__conditions__comment {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
}
.school-list__conditions__comment em {
  color: #D61518;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 576px) {
  .school-list__intro {
    margin: 0 20px;
    padding: 20px 0;
    width: auto;
  }
  .school-list__conditions {
    margin: 0 20px;
    padding: 20px;
    width: auto;
  }
  .school-list__conditions__title {
    font-size: 13px;
  }
  .school-list__conditions__list__item {
    font-size: 12px;
  }
  .school-list__conditions__note {
    font-size: 10px;
  }
  .school-list .btn--school-list {
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px;
    width: auto;
    position: relative;
    font-size: 1.4rem;
  }
  .school-list .btn--school-list::after {
    right: 15px;
  }
}

.school-detail {
  font-family: "Noto Sans JP";
}
.school-detail__unit {
  margin-bottom: 40px;
}
.school-detail__title-logo__logo {
  display: none;
}
.school-detail__name {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
}
.school-detail__name__logo {
  margin-right: 30px;
  max-width: 180px;
  text-align: right;
}
.school-detail__name__logo img {
  max-width: 180px;
  max-height: 80px;
  height: auto;
  object-fit: contain;
}
.school-detail__name__text__ja {
  display: block;
  color: #D61518;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.school-detail__name__text__en {
  display: block;
  color: #ac7f78;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.school-detail__location {
  display: grid;
  margin-bottom: 15px;
  grid-template-columns: auto 280px;
  grid-template-rows: auto 1fr 1fr;
  gap: 0 20px;
}
.school-detail__location__title {
  grid-row: 1;
  grid-column: 1;
}
.school-detail__location__text {
  grid-row: 2/4;
  grid-column: 1;
}
.school-detail__location__map {
  grid-column: 2;
  grid-row: 1/4;
  height: 100%;
}
.school-detail__location__map__iframe {
  width: 100%;
  min-height: 200px;
}
.school-detail__features {
  margin-bottom: 60px;
}
.school-detail__table-info {
  margin: 0 0 30px 0;
}
.school-detail__table-info table {
  width: 100%;
  color: #333;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
.school-detail__table-info th {
  padding: 5px 0;
  width: 240px;
  vertical-align: middle;
  border-bottom: 2px solid #D61518;
  font-weight: 400;
}
.school-detail__table-info td {
  padding: 5px 0 5px 10px;
  vertical-align: middle;
  border-bottom: 2px solid #d9d9d9;
  word-break: keep-all;
}
.school-detail__table-info tr:first-child th {
  border-top: 2px solid #D61518;
}
.school-detail__table-info tr:first-child td {
  border-top: 2px solid #d9d9d9;
}
.school-detail__table-info em {
  font-weight: 500;
  color: #D61518;
  font-style: normal;
}
.school-detail__table-info__location dt {
  font-weight: 500;
  color: #D61518;
  font-style: normal;
}
.school-detail__table-info__location dd:not(:last-of-type) {
  margin-bottom: 1em;
}
.school-detail__table-info__url {
  font-size: 12px;
}
.school-detail__swiper {
  width: 100%;
}
.school-detail .swiper-slide {
  width: 293.3333333333px;
}
.school-detail__swiper-wrapper {
  justify-content: center;
}
.school-detail__swiper-pagination {
  margin: 30px auto 0 auto;
  text-align: center;
}
.school-detail__swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
.school-detail__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #D61518;
}
.school-detail__fee {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
}
.school-detail__fee--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.school-detail__fee__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row: span 1;
  height: 100%;
  border: 2px solid #D61518;
  line-height: 1.4;
}
.school-detail__fee__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  background-color: #D61518;
  color: #fff;
  text-align: center;
  align-self: stretch;
}
.school-detail__fee__content {
  color: #000;
  background-color: #fff;
  text-align: center;
  align-self: center;
}
.school-detail__course table {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  font-style: normal;
}
.school-detail__course th {
  padding: 10px;
  font-weight: 400;
  font-style: normal;
}
.school-detail__course td {
  padding: 10px;
  background-color: #eee;
}
.school-detail__course thead th {
  background-color: #D61518;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.school-detail__course thead td {
  background-color: #D61518;
  color: #fff;
  text-align: center;
  border-left: 2px solid #fff;
  vertical-align: middle;
}
.school-detail__course thead .long {
  width: 400px;
}
.school-detail__course thead .narrow {
  width: 100px;
}
.school-detail__course tbody th {
  border-top: 2px solid #fff;
  background-color: #eee;
  max-width: 450px;
  vertical-align: middle;
}
.school-detail__course tbody th.long {
  width: 400px;
}
.school-detail__course tbody td {
  text-align: center;
  vertical-align: middle;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.school-detail__course tbody td.long {
  width: 100px;
}
.school-detail__course tbody td .title {
  display: none;
}
.school-detail__course__note {
  margin: 10px 0 0 0;
  line-height: 1.7;
  font-size: 12px;
}
.school-detail__collage-course table {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
}
.school-detail__collage-course th {
  padding: 10px;
  font-weight: 400;
  font-style: normal;
}
.school-detail__collage-course td {
  padding: 10px;
  background-color: #eee;
  vertical-align: middle;
}
.school-detail__collage-course .narrow {
  width: 100px;
}
.school-detail__collage-course thead th {
  background-color: #D61518;
  color: #fff;
  width: 45%;
  text-align: center;
  vertical-align: middle;
}
.school-detail__collage-course thead td {
  background-color: #D61518;
  color: #fff;
  text-align: center;
  border-left: 2px solid #fff;
  min-width: 15%;
}
.school-detail__collage-course thead.col5 th {
  width: 40%;
}
.school-detail__collage-course thead.col5 .qual {
  width: 30%;
}
.school-detail__collage-course thead.col5 .term {
  width: 8%;
}
.school-detail__collage-course thead.col5 .campus {
  width: 25%;
}
.school-detail__collage-course thead.col4 th {
  width: 40%;
}
.school-detail__collage-course thead.col4 .term {
  width: 10%;
}
.school-detail__collage-course tbody th {
  padding: 10px 20px;
  border-top: 2px solid #fff;
  background-color: #eee;
  vertical-align: middle;
}
.school-detail__collage-course tbody td {
  text-align: center;
  vertical-align: middle;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.school-detail__collage-course tbody td:nth-of-type(1) {
  padding-left: 0;
  padding-right: 0;
}
.school-detail__collage-course tbody td:nth-of-type(2) {
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
}
.school-detail__collage-course tbody td:nth-of-type(3) {
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
}
.school-detail__collage-course tbody td .title {
  display: none;
}
.school-detail__collage-course tbody tr:nth-of-type(2n-1) th,
.school-detail__collage-course tbody tr:nth-of-type(2n-1) td {
  background: #fcf8f7;
}
.school-detail__collage-course__note {
  margin: 10px 0 0 0;
  line-height: 1.7;
  font-size: 12px;
}
.school-detail__recommends {
  display: grid;
  margin-bottom: 60px;
  background: #fcf8f7;
  grid-template-columns: 280px auto;
  grid-template-rows: auto;
  gap: 40px;
  align-items: center;
}
.school-detail__recommends__photo {
  margin-left: 40px;
  padding: 30px 0;
  grid-column: 1;
  grid-row: 1;
}
.school-detail__recommends__list {
  margin: 15px 40px 15px 0;
  grid-column: 2;
  grid-row: 1;
}
.school-detail__recommends__list dt {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #D61518;
}
.school-detail__recommends__list dd {
  padding: 5px 0 5px 25px;
  position: relative;
  z-index: 0;
  line-height: 1.5;
  font-size: 13px;
}
.school-detail__recommends__list dd:not(:last-of-type) {
  border-bottom: 2px solid #ffe5df;
}
.school-detail__recommends__list dd::before {
  display: block;
  content: "";
  width: 13px;
  height: 11px;
  background-image: url(/images/ls/icon_check.svg);
  position: absolute;
  left: 5px;
  top: 50%;
  translate: 0 -50%;
}
.school-detail__para-button {
  text-align: center;
}
.school-detail__special {
  color: #d61518;
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.school-detail .btn--school-list {
  display: inline-block;
  width: 360px;
  position: relative;
}
.school-detail .btn--school-list::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
  position: absolute;
  right: 25px;
  top: 50%;
  translate: 0 -50%;
}
.school-detail .btn--school-list:hover::after {
  border-color: #D61518;
}
.school-detail__list-pop-faculty__item {
  padding-left: 20px;
  position: relative;
}
.school-detail__list-pop-faculty__item::before {
  content: "";
  background-color: #eb8a8b;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.school-detail__list-campus {
  line-height: 1.5;
  font-size: 1.4rem;
  color: #333;
}
.school-detail__list-campus dt {
  font-weight: 400;
}
.school-detail__list-campus dd:not(:last-of-type) {
  margin-bottom: 0.6em;
}
@media (max-width: 576px) {
  .school-detail__unit {
    margin-bottom: 30px;
  }
  .school-detail__name {
    display: block;
    margin-bottom: 30px;
    text-align: left;
  }
  .school-detail__name__logo {
    display: block;
    margin-bottom: 5px;
    text-align: left;
  }
  .school-detail__name__logo img {
    object-fit: cover;
    max-width: 120px;
    max-height: 120px;
  }
  .school-detail__name__text__ja {
    font-size: 16px;
  }
  .school-detail__table-info table {
    display: block;
  }
  .school-detail__table-info tbody {
    display: block;
    width: 100%;
  }
  .school-detail__table-info tr {
    display: block;
    width: 100%;
  }
  .school-detail__table-info tr:first-child th,
  .school-detail__table-info tr:first-child td {
    border-style: none;
  }
  .school-detail__table-info th {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-style: none;
    position: relative;
  }
  .school-detail__table-info th::before, .school-detail__table-info th::after {
    display: block;
    content: "";
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .school-detail__table-info th::before {
    background-color: #d9d9d9;
    z-index: 1;
    width: 100%;
  }
  .school-detail__table-info th::after {
    background-color: #D61518;
    z-index: 2;
    width: 105px;
  }
  .school-detail__table-info td {
    padding: 10px 0 15px 0;
    border-style: none;
    word-break: break-all;
  }
  .school-detail__swiper-wrapper {
    justify-content: flex-start;
  }
  .school-detail .swiper-slide {
    width: 100%;
  }
  .school-detail__special {
    color: #d61518;
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .school-detail__location {
    margin-bottom: 30px;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    gap: 0;
  }
  .school-detail__location__title {
    margin: 0;
    grid-row: 1;
    grid-column: 1;
  }
  .school-detail__location__text {
    margin-bottom: 20px;
    grid-row: 2;
    grid-column: 1;
  }
  .school-detail__location__map {
    grid-column: 1;
    grid-row: 3;
  }
  .school-detail__location__map__iframe {
    width: 100%;
    min-height: 200px;
  }
  .school-detail__features {
    margin-bottom: 60px;
  }
  .school-detail__fee {
    grid-template-columns: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }
  .school-detail__fee__item {
    grid-template-columns: 50% 50%;
  }
  .school-detail__course table {
    display: block;
  }
  .school-detail__course thead {
    display: none;
  }
  .school-detail__course tbody {
    display: block;
  }
  .school-detail__course tbody tr {
    display: grid;
    background-color: #eee;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    border-style: none;
    margin-bottom: 20px;
  }
  .school-detail__course tbody tr::before {
    display: block;
    padding: 10px 0;
    content: "コース名";
    background-color: #D61518;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    grid-column: 1/3;
    grid-row: 1;
    border-bottom: 2px solid #fff;
  }
  .school-detail__course tbody th {
    display: block;
    width: auto;
    grid-column: 1/3;
    grid-row: 2;
    border-style: none;
  }
  .school-detail__course tbody:not(:has(td:nth-of-type(2))) td {
    grid-column: 1/3;
    border-right-width: 10px;
  }
  .school-detail__course tbody td {
    display: block;
    padding: 2px 2px 15px 2px;
    width: auto;
    grid-row: 3;
    background-color: #fff;
    box-sizing: border-box;
    border-color: #eee;
    border-style: solid;
    border-bottom-width: 10px;
  }
  .school-detail__course tbody td:nth-of-type(1) {
    grid-column: 1;
    border-left-width: 10px;
    border-right-width: 5px;
  }
  .school-detail__course tbody td:nth-of-type(2) {
    grid-column: 2;
    border-right-width: 10px;
    border-left-width: 5px;
  }
  .school-detail__course tbody td .title {
    display: block;
    padding: 5px 0;
    margin-bottom: 15px;
    background-color: #f9e6e0;
    color: #000;
    font-size: 1.4rem;
    text-align: center;
  }
  .school-detail__collage-course table {
    display: block;
  }
  .school-detail__collage-course thead {
    display: block;
  }
  .school-detail__collage-course thead tr {
    display: block;
  }
  .school-detail__collage-course thead th {
    display: block;
    width: 100%;
  }
  .school-detail__collage-course thead td {
    display: none;
  }
  .school-detail__collage-course thead.col4 th, .school-detail__collage-course thead.col5 th {
    width: 100%;
  }
  .school-detail__collage-course tbody {
    display: block;
  }
  .school-detail__collage-course tbody tr {
    display: block;
    padding: 0 10px 10px 10px;
    background-color: #fcf8f7;
    border-style: none;
    margin-bottom: 10px;
  }
  .school-detail__collage-course tbody tr:nth-of-type(2n) {
    background-color: #efeeee;
  }
  .school-detail__collage-course tbody th {
    display: block;
    width: auto;
    border-style: none;
    text-align: center;
    background-color: transparent;
  }
  .school-detail__collage-course tbody td {
    display: flex;
    align-items: stretch;
    padding: 0;
    padding: 2px;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    border-color: #eee;
    border-style: none;
  }
  .school-detail__collage-course tbody td .title {
    display: flex;
    width: 130px;
    padding: 5px 0;
    background-color: #ffe5df;
    color: #333;
    font-size: 1.4rem;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    align-items: center;
    justify-content: center;
  }
  .school-detail__collage-course tbody td span {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    text-align: center;
    width: calc(100% - 130px);
    background-color: #fff;
    border-right: 2px solid #fcf8f7;
    border-bottom: 2px solid #fcf8f7;
  }
  .school-detail__collage-course tbody td:nth-of-type(1) {
    width: 100%;
    padding: 0;
  }
  .school-detail__collage-course tbody td:nth-of-type(1) span {
    border-top: 2px solid #fff;
  }
  .school-detail__collage-course tbody td:nth-of-type(1) .title {
    border-top: 2px solid #fcf8f7;
  }
  .school-detail__collage-course tbody td:nth-of-type(2) {
    width: 100%;
    padding: 0;
  }
  .school-detail__collage-course tbody td:nth-of-type(3) {
    width: 100%;
    padding: 0;
  }
  .school-detail__collage-course tbody td:nth-of-type(4) {
    width: 100%;
    padding: 0;
  }
  .school-detail__collage-course tbody.griffith td:nth-of-type(2):before {
    content: "入学日";
  }
  .school-detail__collage-course tbody.griffith td:nth-of-type(3):before {
    content: "英語条件";
  }
  .school-detail__collage-course tbody.imagine td:nth-of-type(2):before {
    content: "取得資格";
  }
  .school-detail__collage-course tbody.imagine td:nth-of-type(3):before {
    content: "授業料";
  }
  .school-detail__recommends {
    margin-bottom: 30px;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    gap: 30px;
    align-items: center;
  }
  .school-detail__recommends__photo {
    grid-column: 1;
    grid-row: 2;
    margin: 10px;
    padding: 0;
  }
  .school-detail__recommends__list {
    grid-column: 1;
    grid-row: 1;
    margin-right: 0;
    margin-bottom: 0;
    padding: 15px 10px 0 10px;
  }
  .school-detail__recommends__list dt {
    margin-bottom: 10px;
    text-align: center;
  }
  .school-detail__para-button {
    margin: 0 30px;
  }
  .school-detail .btn--school-list {
    width: 280px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .school-detail .btn--school-list::after {
    right: 25px;
  }
}

.page-purpose__lead {
  padding: 35px 0;
  background-color: #FCF8F7;
}
.page-purpose__lead__copy {
  margin-bottom: 25px;
  text-align: center;
  color: #D61518;
  line-height: 1.5;
  font-weight: 700;
  font-size: 24px;
}
.page-purpose__lead__swiper {
  width: 100%;
}
.page-purpose__lead .swiper-slide {
  width: 240px;
}
.page-purpose__lead__slide__link {
  display: block;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.page-purpose__lead__slide img {
  display: block;
  position: relative;
  height: 180px;
  background-size: cover;
  object-fit: cover;
  margin: 0 auto;
}
.page-purpose__lead__slide__title {
  padding: 7px 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  line-height: 1;
  font-size: 12px;
  color: #fff;
  background-color: rgba(51, 51, 51, 0.7);
}
.page-purpose__lead__swiper-pagination {
  margin: 30px auto 0 auto;
  text-align: center;
}
.page-purpose__lead__swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
.page-purpose__lead__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #D61518;
}
.page-purpose__purpose {
  padding: 60px 0 80px 0;
}
.page-purpose__service {
  padding: 60px 0 80px 0;
  background-color: #FCF8F7;
}
.page-purpose__blog {
  padding: 60px 0 80px 0;
}
@media (max-width: 576px) {
  .page-purpose__lead {
    padding: 20px 0 30px 0;
  }
  .page-purpose__lead__copy {
    margin-bottom: 15px;
    text-align: center;
    font-size: 12px;
  }

  .page-purpose__lead__slide img {
    height: 120px;
  }

  .page-purpose__lead .swiper-slide {
    width: 48%;
  }
  .page-purpose__lead__swiper-pagination {
    margin: 20px auto 0 auto;
  }
  .page-purpose__purpose {
    padding: 30px 0 40px 0;
  }
  .page-purpose__service {
    padding: 30px 0 40px 0;
    background-color: #FCF8F7;
  }
  .page-purpose__blog {
    padding: 30px 0 40px 0;
  }
}

.page-faq__unit {
  margin: 0 0 30px 0;
}

.list-faq__item {
  border: 1px solid #ffe5df;
}
.list-faq__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.list-faq__button {
  display: block;
  padding: 10px 35px 10px 35px;
  background: #ffe5df;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
.list-faq__button::before {
  content: "Q.";
  position: absolute;
  left: 15px;
  top: 10px;
}
.list-faq__button__cross {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
}
.list-faq__button__cross::before, .list-faq__button__cross::after {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  content: "";
  position: absolute;
  transition: rotate 500ms, opacity 500ms;
  background-color: #D61518;
}
.list-faq__button__cross::before {
  width: 15px;
  height: 2px;
}
.list-faq__button__cross::after {
  width: 2px;
  height: 15px;
}
.list-faq__button--open .list-faq__button__cross::before {
  opacity: 0;
  rotate: 180deg;
}
.list-faq__button--open .list-faq__button__cross::after {
  rotate: 90deg;
}
.list-faq__content {
  padding-top: 0;
  padding-right: 20px;
  padding-bottom: 0;
  padding-left: 20px;
  overflow: hidden;
  transition: opacity 500ms, padding 500ms;
  line-height: 0;
}
.list-faq__content p {
  font-weight: 400;
  font-size: 1.4rem;
  opacity: 0;
  line-height: 0;
  transition: opacity 500ms, line-height 500ms;
}
.list-faq__content p:not(:last-of-type) {
  margin-bottom: 0;
}
.list-faq__content--open {
  padding-top: 20px;
  padding-bottom: 20px;
}
.list-faq__content--open p {
  line-height: 1.5;
  opacity: 1;
}
.list-faq__content--open p:not(:last-of-type) {
  margin-bottom: 1em;
}
.list-faq__content--open .list-faq__iphone {
  margin: 10px 0 2em 0;
  display: block;
}
.list-faq__iphone {
  margin: 0;
  display: none;
  width: 100%;
  max-width: 360px;
  transition: margin 500ms;
}
.list-faq .color-main {
  color: #D61518;
}
.list-faq .underline {
  text-decoration: underline;
}
@media (max-width: 576px) {
  .list-faq__button {
    font-size: 12px;
  }
  .list-faq__content p {
    font-size: 12px;
  }
}

.page-staff__list__item {
  display: grid;
  gap: 0 30px;
  padding: 30px;
  grid-template-columns: 200px auto;
  grid-template-rows: 200px auto;
  background-color: #fcf8f7;
  border-radius: 10px;
  overflow: hidden;
}
.page-staff__list__item:not(:last-of-type) {
  margin-bottom: 50px;
}
.page-staff__list__photo {
  margin-bottom: 15px;
  grid-column: 1;
  grid-row: 1;
  border-radius: 10px;
  overflow: hidden;
}
.page-staff__list__name {
  grid-column: 1;
  grid-row: 2;
}
.page-staff__list__name__ja {
  display: block;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
.page-staff__list__name__en {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: #D61518;
}
.page-staff__list__comment {
  grid-column: 2;
  grid-row: 1/3;
}
@media (max-width: 576px) {
  .page-staff__list__item {
    display: grid;
    gap: 0;
    padding: 20px;
    grid-template-columns: auto;
    grid-template-rows: 145px auto auto;
  }
  .page-staff__list__photo {
    margin-bottom: 0;
    padding-bottom: 15px;
    grid-column: 1;
    grid-row: 1;
    text-align: center;
  }
  .page-staff__list__photo img {
    border-radius: 10px;
    overflow: hidden;
    width: 130px;
  }
  .page-staff__list__name {
    padding-bottom: 10px;
    grid-column: 1;
    grid-row: 2;
  }
  .page-staff__list__name__ja {
    font-size: 22px;
  }
  .page-staff__list__name__en {
    font-size: 1.4rem;
  }
  .page-staff__list__comment {
    grid-column: 1;
    grid-row: 3;
  }
}

.page-location__acccess-note {
  margin-bottom: 20px;
  padding: 10px 100px;
  line-height: 1.5;
  font-size: 1.4rem;
  background-color: #f9f0ee;
  border: 1px solid #D61518;
  border-radius: 5px;
}
.page-location__unit-access {
  margin-bottom: 60px;
}
.page-location__list-access {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: count-access;
}
.page-location__list-access__item {
  padding: 10px;
  border: 1px solid #D61518;
  border-radius: 10px;
  overflow: hidden;
  counter-increment: count-access;
}
.page-location__list-access__photo {
  margin-bottom: 10px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.page-location__list-access__photo::before {
  display: block;
  text-align: center;
  content: counter(count-access);
  background-color: #D61518;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 30px;
  font-size: 22px;
  width: 30px;
  height: 30px;
  border-radius: 0 0 5px 0;
  position: absolute;
  left: 0;
  top: 0;
}
.page-location__list-access__comment {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 1.4rem;
}
.page-location__unit-map {
  display: grid;
  grid-template-columns: auto 300px;
  gap: 30px;
}
.page-location__unit-map__text {
  grid-column: 1;
}
.page-location__unit-map__map {
  grid-column: 2;
}
.page-location__unit-map__map iframe {
  width: 100%;
  height: 200px;
}
@media (max-width: 576px) {
  .page-location__acccess-note {
    padding: 10px;
  }
  .page-location__list-access {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .page-location__unit-map {
    grid-template-columns: auto;
  }
  .page-location__unit-map__map {
    grid-column: 1;
  }
}

.page-depapepe__unit-top {
  padding-bottom: 50px;
}
.page-depapepe__unit-top__logo {
  margin: 0 auto -7px auto;
  max-width: 393px;
  width: 100%;
  translate: 0 -22px;
}
.page-depapepe__unit-top__para {
  text-align: center;
}
.page-depapepe__unit-player {
  padding: 30px 20px 40px 20px;
  position: relative;
}
.page-depapepe__unit-player::before {
  display: block;
  content: "";
  width: 100%;
  height: 180px;
  background: linear-gradient(to bottom, rgb(253, 220, 220) 0%, rgba(253, 220, 220, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
}
.page-depapepe__unit-player__content {
  position: relative;
  z-index: 2;
}
.page-depapepe__unit-player__title {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #D61518;
}
.page-depapepe__unit-player__para {
  text-align: center;
}
.page-depapepe__unit-player__audio {
  display: block;
  margin: 20px auto;
  text-align: center;
  width: 100%;
  max-width: 400px;
}
.page-depapepe__unit-profile__title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid #D61518;
}
.page-depapepe__unit-profile p:not(:last-of-type) {
  margin-bottom: 1em;
}
.page-depapepe__unit-profile__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.page-depapepe__unit-profile__links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
  padding: 30px 0;
  background: linear-gradient(to bottom, rgba(253, 220, 220, 0) 0%, rgb(253, 220, 220) 100%);
}
.page-depapepe__unit-profile__links__item {
  margin: 0 25px;
  height: 20px;
}
.page-depapepe__unit-profile__links__item img {
  width: auto;
  height: 20px;
}
@media (max-width: 576px) {
  .page-depapepe__unit-top__para {
    font-size: 12px;
  }
  .page-depapepe__unit-player__para {
    font-size: 12px;
  }
  .page-depapepe__unit-profile__title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 20px;
    border-bottom: 1px solid #D61518;
  }
  .page-depapepe__unit-profile p:not(:last-of-type) {
    margin-bottom: 1em;
  }
  .page-depapepe__unit-profile__photos {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 50px;
  }
  .page-depapepe__unit-profile__links__item {
    margin: 0 10px;
  }
}

.page-scholarship__para-button {
  margin-top: 100px;
  text-align: center;
}
.page-scholarship__para-back {
  margin-top: 30px;
  text-align: center;
  font-weight: 700;
  flex: 1;
}
.page-scholarship__para-back__link {
  color: #D61518;
}

.btn--page-scholarship {
  display: inline-block;
  width: 250px;
}
.btn--page-scholarship svg {
  margin-right: 5px;
  vertical-align: middle;
}

.list-champaign__item {
  border-bottom: 1px solid #666;
}
.list-champaign__link {
  display: block;
  padding: 15px 0;
}
.list-champaign__date {
  display: block;
  color: #999;
  font-weight: 700;
  font-size: 12px;
}
.list-champaign__date__new {
  display: inline-block;
  margin-left: 10px;
  color: #D61518;
}
.list-champaign__title {
  display: inline-block;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.4rem;
}

.policy__unit-top {
  padding: 65px 0;
  background-color: #ffe5df;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
.policy__unit-top br {
  display: none;
}
.policy__unit-top__title {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.07em;
}
.policy__unit-top__title .s-font {
  font-size: 1.8rem;
}
.policy__unit-content {
  margin: 0 auto;
  background-color: #fcf8f7;
}
.policy__unit-content__content {
  margin: 0 auto;
  padding: 40px 0;
  width: calc(100% - 100px);
  max-width: 1160px;
}
.policy__unit-content ol {
  list-style-type: decimal;
  margin-left: 2em;
  color: #333;
}
.policy__unit-content ol ol {
  list-style-type: lower-latin;
}
.policy__title-mid {
  margin: 0 0 0.5em 0;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
}
.policy__title-mid:not(:first-of-type) {
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .policy__unit-top {
    padding: 40px 0;
  }
  .policy__unit-top br {
    display: inline;
  }
  .policy__unit-top__title {
    font-size: 2.0rem;
  }
  .policy__unit-top__title .s-font {
    font-size: 1.6rem;
  }
  .policy__unit-content {
    padding: 0 20px;
  }
  .policy__unit-content__content {
    margin: 0 auto;
    padding: 40px 0;
    width: calc(100% - 10px);
  }
}

.page-offices__unit {
  margin-top: 30px;
}

.list-offices__item {

  margin-bottom: 50px;
}
.list-offices__name {
  grid-column: 1/3;
  margin-bottom: 25px;
  padding: 0 0 0 10px;
  border-left: 5px solid #D61518;
  color: #333;
  line-height: 1.5;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.list-offices__table {
  grid-column: 1/3;
  grid-row: 2;
  margin-bottom: 25px;
}
.list-offices__table table {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  font-style: normal;
}
.list-offices__table tr:not(:last-of-type) th {
  border-top: 2px solid #D61518;
}
.list-offices__table tr:not(:last-of-type) td {
  border-top: 2px solid #d9d9d9;
}
.list-offices__table th {
  padding: 15px 0;
  border-bottom: 2px solid #D61518;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
  width: 180px;
}
.list-offices__table td {
  padding: 15px 0;
  border-bottom: 2px solid #d9d9d9;
  text-align: left;
  vertical-align: middle;
}
.list-offices__photos {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 2.4rem;
  flex-wrap: nowrap;
  gap: 3rem;
}
.list-offices__photos .list-offices__photos__image{
  width: calc(50% - 1.5rem);
  height: 340px;
  object-fit: cover;
  object-position: center;
}
.list-offices__comment {
  grid-column: 1/3;
  grid-row: 4;
  padding: 15px 0 0 0;
}
.list-offices__comment a {
  display: inline;
  text-decoration: underline;
  color: #D61518;
}
.list-offices__map {
  grid-column: 1;
  grid-row: 5;
}
.list-offices__map iframe {
  height: 200px;
}
@media screen and (max-width: 1024px) {
  .list-offices__item {
    grid-template-columns: auto 46%;
  }
}
@media (max-width: 576px) {
  .list-offices__item {
    grid-template-columns: 100%;
    grid-template-rows: auto auto 41vw auto auto;
    gap: 0;
  }
  .list-offices__name {
    grid-column: 1;
    margin-bottom: 15px;
    font-size: 16px;
    border-left-width: 2px;
  }
  .list-offices__table {
    display: block;
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 10px;
    width: 100%;
  }
  .list-offices__table tbody {
    display: block;
    width: 100%;
  }
  .list-offices__table tr {
    display: block;
    width: 100%;
  }
  .list-offices__table tr:not(:last-of-type) th {
    border-style: none;
  }
  .list-offices__table tr:not(:last-of-type) td {
    border-style: none;
  }
  .list-offices__table th {
    display: block;
    padding: 10px 0;
    width: 100%;
    border-style: none;
    position: relative;
  }
  .list-offices__table th::before, .list-offices__table th::after {
    display: block;
    content: "";
    height: 2px;
    position: absolute;
    background-color: #d9d9d9;
    left: 0;
    bottom: -2px;
    width: 100%;
  }
  .list-offices__table th::after {
    background-color: #D61518;
    width: 110px;
    left: 0;
  }
  .list-offices__table td {
    display: block;
    padding: 10px 0;
    width: 100%;
    border-style: none;
  }
  .list-offices__photos {
    gap: 1rem;
    justify-content: space-between;
  }
  .list-offices__photos .list-offices__photos__image{
    width: calc(50% - 0.5rem);
    height: 41vw;
  }
  .list-offices__map {
    grid-column: 1;
    grid-row: 5;
    padding-top: 15px;
  }
  .list-offices__map iframe {
    width: 100%;
    height: 200px;
  }
  .list-offices__comment {
    grid-column: 1;
    grid-row: 4;
    padding: 15px 0 0 0;
  }
  .list-offices__comment a {
    display: inline;
    text-decoration: underline;
    color: #D61518;
  }
}

.page-company__table table {
  width: 100%;
  margin-bottom: 20px;
}
.page-company__table th {
  padding: 15px 0;
  width: 150px;
  background-color: #ffe5df;
  border: 2px solid #fff;
  text-align: center;
  vertical-align: middle;
  line-height: 2;
  font-weight: 400;
  font-size: 1.4rem;
}
.page-company__table td {
  padding: 5px 10px;
  border: 2px solid #ffe5df;
  text-align: left;
  vertical-align: middle;
  line-height: 1.8;
  font-weight: 400;
  font-size: 1.4rem;
}
.page-company__table__para-button {
  margin: 45px auto 0 auto;
  text-align: center;
  width: 500px;
  font-size: 18px;
}
.page-company__table .btn--page-company {
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
}
.raxus_samurai {
  padding-bottom: 20px;
}

.raxus_samurai_sp {
  display: none;
}

@media (max-width: 576px) {
  .page-company__table table {
    margin-bottom: 24px;
  }
  .page-company__table table,
  .page-company__table tbody,
  .page-company__table tr {
    width: 100%;
    display: block;
  }
  .page-company__table th {
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 1.4rem;
    text-align: left;
    border: 2px;
    margin-top: 20px;
  }
  .page-company__table td {
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 1.4rem;
  }
  .page-company__table__para-button {
    width: auto;
  }
  .page-company__table .btn--page-company {
    font-size: 12px;
  }

  .raxus_samurai {
    display: none;
  }
  
  .raxus_samurai_sp {
    display: block;
    padding-bottom: 20px;
  }

}

.pagenation{
  width: 100%;
}
.pagenation table{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-collapse:collapse;
  background-color: #FFFFFF;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagenation table td{
  padding: 0 15px 0 0px;
}
.pagenation a,
.pagenation span{
  padding:6px 4px;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
}
.pagenation a{
    text-decoration: underline;
}
.pagenation .current{
  color: #333;
}
.pagenation td.prev,
.pagenation td.next{
  padding:0 5px;
}
@media screen and (max-width: 960px) {
  .pagenation table tbody{
    width: 100%;
  }
  .pagenation tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
  }
  .pagenation a,
  .pagenation span{
    font-size: 1.4rem;
  }
  .pagenation td.prev, .pagenation td.next{
    min-width: 40px;
  }
}

/* 代表メッセージ */

.message.mv {
  background: url(/images/company/message/bg_fv_pc.webp) center / cover no-repeat;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.message.mv h1{
    margin: 4.5em auto;
    text-align: center;
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.message.mv h1 .s-font {
  font-size: 2.6rem;
    display: block;
}

.main-txt br {
  display: none;
}

@media screen and (max-width: 960px) {
  .message.mv {
    background: url(/images/company/message/bg_fv_sp.webp) center / cover no-repeat;
  }
  
  .message.mv h1{
      font-size: 3rem;
  }

  .message.mv h1 .s-font {
    font-size: 1.6rem;
  }

  .main-txt br {
    display: block;
  }
  
}

.message .main-txt {
  font-size: 4em;
  font-weight: bold;
  margin-bottom: 5px !important;
}

.representative_name br{
  display: none;
}

@media screen and (max-width: 768px) {
  .message .main-txt {
    font-size: 3em;
    margin-bottom: 22px !important;
  }

  .representative_name br{
    display: block;
  }
  
}

.message .representative_name {
  text-align: right;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.message .representative_name span {
  font-size: 1.2rem;
}

.our_vision,.australia_charm,.ceo_message {
  margin-bottom: 50px;
}

.our_vision h2,.australia_charm h2,.ceo_message h2,.international_student h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.4;
  color: #D61518;
}

.our_vision p,.australia_charm p{
  margin-bottom: 12px;
}

.ceo_message .message_movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.ceo_message .message_movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.international_student {
  margin-top: 20px;
}

.international_student li {
  display: flex;
  margin: 20px 0;
  background-color: #FCF8F7;
  padding: 20px;
  gap: 20px;
  align-items: center;
}

.international_student img {
  max-width: 280px;
}

@media screen and (max-width: 1024px) {
  .international_student li {
    flex-direction: column;
    margin: 20px 0 30px;
    gap: 0px;
    padding: 18px;
  }

  .international_student img {
    margin-bottom: 15px;
  } 

}

.txt-lg {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.student_h_txt {
  font-weight: bold;
}

.student_txt_flex {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.student_txt_container {
  margin-bottom: 8px;
}

.banner_area {
  margin-top: 30px;
}

.banner_area ul{
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .banner_area ul {
    flex-direction: column;
  }
}

.banner_area li:hover {
  opacity: .8;
}

/* plan
-------------------------------------------- */
.plan {
  margin: 0 auto 80px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .plan {
    margin: 0 auto 40px;
  }
}

.inr__plan {
  margin: 0 auto;
  padding: 50px 0 48px;
}

.plan__inr {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .plan__inr {
    display: block;
  }
}

.plan__photo {
  width: 45%;
  max-width: 200px;
  margin-right: 56px;
}
@media screen and (max-width: 1024px) {
  .plan__photo {
    margin: 0 auto 16px;
  }
}

.plan__name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .plan__name {
    text-align: center;
    font-size: 1.6rem;
  }
}

.plan__position {
  font-size: 1.2rem;
  color: #AEAEAE;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .plan__position {
    text-align: center;
  }
}

.menu__container {
  width: 100%;
  background-color: #FCF8F7;
  padding: 35px;
}
@media screen and (max-width: 1024px) {
  .menu__container {
    padding: 35px 18px;
  }
}

.menu__box {
  max-width: 260px;
}
@media screen and (max-width: 1024px) {
  .menu__box {
    max-width: 100%;
  }
}
.menu__box a {
  transition: 0.2s;
}
.menu__box a:hover {
  opacity: 0.7;
}

.menu__box-row {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 260px);
  gap: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .menu__box-row {
    grid-template-columns: repeat(auto-fit, 100%);
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .menu__box-row {
    grid-gap: 32px;
  }
}

.purpose-gogaku {
  background: url(/images/purpose/purpose-gogaku.webp) no-repeat center center;
}

.purpose-senmon {
  background: url(/images/purpose/purpose-senmon.webp) no-repeat center center;
}

.purpose-sport {
  background: url(/images/purpose/purpose-sport.webp) no-repeat center center;
}

.purpose-kango {
  background: url(/images/purpose/purpose-kango.webp) no-repeat center center;
}

.purpose-daigaku {
  background: url(/images/purpose/purpose-daigaku.webp) no-repeat center center;
}

.purpose-working-holiday {
  background: url(/images/purpose/purpose-working-holiday.webp) no-repeat center center;
}

.purpose-kyugaku-nintei {
  background: url(/images/top/top-purpose-kyugaku-nintei.webp) no-repeat center center;
}

.purpose-aus-syusyoku {
  background: url(/images/top/top-purpose-aus-syusyoku.webp) no-repeat center center;
}

.menu__box-card {
  max-width: 260px;
  height: 200px;
  border: 1px solid #BDBDBD;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 8px;
  background-size: 360px 242px;
}
@media screen and (max-width: 1024px) {
  .menu__box-card {
    max-width: 100%;
    height: 200px;
    background-size: cover;
  }
}

.menu__box-tag {
  position: absolute;
  color: #fff;
  height: 54px;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 1px;
  padding: 16px 24px;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 0 0 8px 8px;
  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 (max-width: 576px) {
  .menu__box-tag {
    height: 50px;
  }
}

.bnr-box__row {
  display: flex;
  margin: 0 auto 80px;
  max-width: 1160px;
}
@media screen and (max-width: 768px) {
  .bnr-box__row {
    display: block;
    margin: 0 auto;
  }
}

.bnr-box:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .bnr-box:first-child {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.bnr-box a {
  transition: 0.2s;
}
.bnr-box a:hover {
  opacity: 0.7;
}

.bnr-box__bnr {
  margin-bottom: 8px;
}

.m_b_n {
  margin-bottom: 0 !important;
}

/* 代表メッセージ */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* アスペクト比16:9（9 ÷ 16 = 0.5625） */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* transition
-------------------------------------------- */
.transition {
  margin-top: 32px;
}

.transition__inr {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .transition__inr {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .transition__inr {
    flex-direction: column;
  }
}

.transition__ttl {
  color: #D61518;
  font-weight: bold;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: center;
}

.transition__cat {
  padding-right: 32px;
  width: 27%;
}
@media screen and (max-width: 1024px) {
  .transition__cat {
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .transition__cat {
    margin-bottom: 32px;
    padding-right: 0;
    width: 100%;
  }
  .transition__cat:last-child {
    margin-bottom: 0;
  }
}

.transition__cat-ttl {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #666666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 180%;
  font-weight: bold;
  color: #333;
}
.transition__cat-ttl:hover {
  text-decoration: underline;
  color: #D61518;
}

.transition__cat-link {
  padding-top: 14px;
}
.transition__cat-link:hover {
  text-decoration: underline;
  color: #D61518;
}

.transition__inr-city {
  flex-wrap : wrap;
}

.transition__cat-city {
  margin-bottom: 32px;
}


/*LINEバナー */
.school-list__conditions .pc {
  display: none; 
}

.school-list__conditions .sp {
  display: block; 
  max-width: 100%; 
  height: auto;    
}

@media screen and (min-width: 768px) {
  .school-list__conditions .pc {
    display: block; 
    max-width: 100%; 
    height: auto;    
  }

  .school-list__conditions .sp {
    display: none;
  }
}


.school-list__conditions {
    background-color: #FCF8F7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 70px; 
    box-shadow: none; 
    border-radius: 8px; 
    border: none; 
}

.school-list__conditions__title.uni-new-title {
    color: #333; 
    font-size: 2.8rem;
    font-weight: 700; 
    text-align: center; 
    margin-bottom: 30px; 
    line-height: 1.2; 
    letter-spacing: 0.05em; 
}

.school-list__conditions__list.uni-new-list {
    list-style: none;
    padding-left: 0; 
    margin-bottom: 30px; 
}

.school-list__conditions__list__item.uni-custom-list-item {
    font-weight: 700; 
    font-size: 1.6rem; 
    line-height: 1.3; 
    padding-top: 3px; 
    padding-bottom: 3px; 
    padding-right: 5px; 
    padding-left: 30px; 

    position: relative; 
    color: #333;
    margin-bottom: 0px; 
    border-bottom: none;
    min-height: auto; 
}

.school-list__conditions__list__item.uni-custom-list-item::before {
    content: "✓";
    color: #D61518;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: transparent;
    border-radius: 0;
    width: auto;
    height: auto;
    line-height: 1;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.uni-new-text {
    color: #333; 
    line-height: 1.4;
    font-size: 1.5rem; 
    margin-bottom: 30px; 
}

.uni-new-text p:not(:last-of-type) {
    margin-bottom: 0.7em; 
}

.uni-new-text strong {
    color: #D61518; 
    font-weight: 700;
}

.uni-line-banner-link {
    display: block; 
    margin: 0 auto; 
    max-width: 700px; 
}
.uni-line-banner-link img {
    display: block; 
    width: 100%; 
    height: auto; 
}


@media (max-width: 576px) {
    .school-list__conditions {
        padding: 30px 20px;
        max-width: 100%;
    }

    .school-list__conditions__title.uni-new-title {
        font-size: 2rem; 
        margin-bottom: 20px; 
        line-height: 1.1; 
    }

    .school-list__conditions__list.uni-new-list {
        margin-bottom: 20px; 
    }

    .school-list__conditions__list__item.uni-custom-list-item {
        font-size: 1.4rem; 
        padding-top: 2px;
        padding-bottom: 2px; 
        padding-left: 25px; 
        margin-bottom: 0px; 
        line-height: 1.2; 
    }
    .school-list__conditions__list__item.uni-custom-list-item::before {
        font-size: 1.6rem;
        left: 0;
    }

    .uni-new-text {
        font-size: 1.3rem; 
        margin-bottom: 25px;
        line-height: 1.3; 
    }
    .uni-new-text p:not(:last-of-type) {
        margin-bottom: 0.5em; 
    }

    .uni-new-text strong {
        color: #D61518;
        font-weight: 700;
    }

    .uni-line-banner-link {
        max-width: 320px;
    }
}

/* パンフレットバナー */
.australia-study-abroad-promo {
  display: flex; 
  align-items: center; 
  margin-top: 30px !important; 
  margin-bottom: 40px !important; 
  gap: 20px; 
  flex-wrap: wrap; 
  justify-content: center; 
  width: 90%; 
  max-width: 1200px;
  box-sizing: border-box; 
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px; 
  padding-right: 15px; 
  background-color: #FCF8F7 !important; 
  border-radius: 10px; 
  padding: 20px; 
}

.australia-study-abroad-promo .promo-image-link {
  display: block;
  text-decoration: none;
  flex-shrink: 0; 
}

.australia-study-abroad-promo .promo-image {
  width: 300px; 
  height: auto;
  display: block;
}

.australia-study-abroad-promo .promo-content-wrapper {
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
  justify-content: center; 
  min-width: 250px; 
  align-items: center; 
}

.australia-study-abroad-promo .promo-title-container {
  width: 100%; 
  margin-bottom: 10px; 
  text-align: center; 
}

.australia-study-abroad-promo .promo-text-container {
  width: 100%; 
  text-align: center; 
}

.australia-study-abroad-promo .promo-title {
  text-align: center; 
  box-sizing: border-box;
}

.australia-study-abroad-promo .promo-text {
  text-align: center; 
  box-sizing: border-box;
}

.australia-study-abroad-promo .promo-text p {
  font-weight: 700 !important; 
  font-size: 1.8rem !important;
  line-height: 1.4 !important; 
  padding-top: 3px !important; 
  padding-bottom: 3px !important; 
  padding-right: 5px !important; 
  padding-left: 5px !important; 
  color: #333 !important; 
  font-family: "Meiryo UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif !important; 
  margin: 0; 
  text-align: center; 
}

.australia-study-abroad-promo .promo-title p {
  font-weight: 700 !important; 
  font-size: 2.5rem !important; 
  line-height: 1.4 !important; 
  padding-top: 3px !important; 
  padding-bottom: 3px !important; 
  padding-right: 5px !important;
  padding-left: 5px !important; 
  color: #D61518 !important;
  font-family: "Meiryo UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif !important; 
  margin: 0; 
  text-align: center; 
}

@media (max-width: 933px) {
  .australia-study-abroad-promo {
    flex-direction: column; 
    text-align: center; 
    gap: 10px;
  }

  .australia-study-abroad-promo .promo-image {
    width: 250px;
    margin: 0 auto;
  }

  .australia-study-abroad-promo .promo-content-wrapper {
    justify-content: center; 
    align-items: center; 
    min-width: unset; 
    text-align: center;
  }

  .australia-study-abroad-promo .promo-title-container,
  .australia-study-abroad-promo .promo-text-container {
    text-align: center;
  }

  .australia-study-abroad-promo .promo-title,
  .australia-study-abroad-promo .promo-text {
    text-align: center;
  }

   .australia-study-abroad-promo .promo-title p,
   .australia-study-abroad-promo .promo-text p {
     text-align: center !important;
   }
}

@media (max-width: 768px) {
  .australia-study-abroad-promo {
    margin-top: 20px !important;
    margin-bottom: 30px !important;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding: 15px;
  }

  .australia-study-abroad-promo .promo-image-link {
    margin-bottom: 15px;
  }

  .australia-study-abroad-promo .promo-image {
    width: 250px; 
    margin: 0 auto; 
  }

}

/* --- 学校詳細 写真 --- */
.fixed-image-container {
  max-width: 700px;
  margin: 0 auto;
}

.fixed-image-container picture,
.fixed-image-container img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- 学校詳細 動画--- */
.iframe-no-border {
  border: none;
}

/* ---レスポンシブ動画埋め込みコンテナ (16:9比率) --- */
.responsive-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 20px; 
}

.responsive-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}