@charset "UTF-8";

/*-------------------------------

# ボタン

-------------------------------*/
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  width: fit-content;
  border: 1px solid var(--black);
}
.c-btn--border-white {
  border-color: #fff;
}
.c-btn--en {
  font-family: var(--robo);
}
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  border: solid;
  width: fit-content;
  height: fit-content;
  letter-spacing: 0.1em;
}
.c-btn--big {
  font-size: 3rem;
  padding: 30px 120px;
}
.c-btn--medium {
  font-size: 2.4rem;
  padding: 8px 50px;
}
.c-btn--small {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 15px 60px;
}
.c-btn--thick {
  border-width: 2px;
}
.c-btn--en {
  font-family: var(--robo);
}
.c-btn--color-white {
  color: #fff;
}
.c-btn--border-white {
  border-color: #fff;
}
.c-btn__has-ico {
  width: 30px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .c-btn--big {
    font-size: 2rem;
    padding: 8px 60px;
  }
  .c-btn--medium {
    font-size: 1.6rem;
    padding: 8px 30px;
  }
  .c-btn--small {
    font-size: 1.4rem;
    padding: 10px 40px;
  }
}
/*-------------------------------

# LINEボタン

-------------------------------*/
.c-line-btn {
  background: var(--line-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  width: 304px;
  height: 80px;
  gap: 30px;
}
.c-line-btn__img {
  width: 60px;
  margin-left: 25px;
}
.c-line-btn__txt {
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .c-line-btn {
    width: 176px;
    height: 60px;
    gap: 8px;
    border-radius: 15px;
  }
  .c-line-btn__img {
    width: 30px;
    margin-left: 0;
  }
  .c-line-btn__txt {
    font-size: 1.6rem;
  }
}
/*-------------------------------

# バナーラップ

-------------------------------*/

.c-bnr-wrap__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .c-bnr-wrap__inner {
    display: block;
    margin-top: 15px;
  }
  .c-bnr-wrap__inner > * + * {
    margin-top: 8px;
  }
}
/*-------------------------------

# パンくず

-------------------------------*/
.c-bread {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  letter-spacing: 0;
  gap: 20px;
  margin-right: 100px;
  font-size: 1.3rem;
}
.c-bread__item {
  position: relative;
}
.c-bread__item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  left: -15px;
  margin: auto;
  rotate: 45deg;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
}
.c-bread__item:last-of-type a {
  pointer-events: none;
}
.c-bread.u-color-white .c-bread__item:not(:first-of-type)::before {
  border-color: #fff;
}

@media (max-width: 768px) {
  .c-bread {
    display: none;
  }
}
/*-------------------------------

# 記事本文

-------------------------------*/
.c-content-rule p + p:has(:is(img, picture)),
.c-content-rule p:has(:is(img, picture)) + p {
  margin-top: 3em;
}
.c-content-rule p:has(:is(img, picture)) + p:has(:is(img, picture)) {
  margin-top: 1em;
}
.c-content-rule p + p {
  margin-top: 2em;
}

/*-------------------------------

# タイトルラップ

-------------------------------*/
.c-heading-wrap01--white {
  color: #fff;
}
.c-heading-wrap01__heading {
  font-family: var(--robo);
  text-align: center;
  font-weight: bold;
  position: relative;
  font-size: min(22rem, 12vw);
}
.c-heading-wrap01__heading::after {
  position: absolute;
  content: "";
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  width: 120px;
  height: 2px;
  background: var(--black);
}
.c-heading-wrap01--white .c-heading-wrap01__heading::after {
  background: #fff;
}
.c-heading-wrap01__subheading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: bold;
  margin-top: -8px;
}

@media (max-width: 1536px) {
  .c-heading-wrap01__heading::after {
    bottom: 2vw;
  }
}
@media (max-width: 768px) {
  .c-heading-wrap01__heading {
    font-size: 13vw;
  }
  .c-heading-wrap01__heading::after {
    bottom: -1vw;
  }
  .c-heading-wrap01__subheading {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
/*-------------------------------

# タイトルラップ2

-------------------------------*/
.c-heading-wrap02 {
  text-align: center;
}
.c-heading-wrap02__heading {
  font-size: 8rem;
  font-weight: bold;
  font-family: var(--robo);
  position: relative;
}
.c-heading-wrap02__heading::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 120px;
  height: 2px;
  background: var(--black);
}
.c-heading-wrap02__subheading {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .c-heading-wrap02__heading {
    font-size: 13vw;
  }
  .c-heading-wrap02__heading::after {
    bottom: -1vw;
  }
  .c-heading-wrap02__subheading {
    font-size: 1.6rem;
    margin-top: 25px;
  }
}
/*-------------------------------

# オープンキャンパスのラップ

-------------------------------*/
.c-opencampus-item-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}
.c-opencampus-item-wrap__img :is(img, picture) {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
}
.c-opencampus-item-wrap__txt-wrap {
  margin-top: 15px;
}
.c-opencampus-item-wrap__date {
  font-weight: bold;
}
.c-opencampus-item-wrap__num {
  font-size: 2.6rem;
  font-family: var(--hel);
}
.c-opencampus-item-wrap__dayname {
  font-size: 2.6rem;
  font-family: var(--robo);
}
.c-opencampus-item-wrap__heading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .c-opencampus-item-wrap {
    display: block;
  }
  .c-opencampus-item-wrap > * + * {
    margin-top: 15px;
  }
  .c-opencampus-item-wrap__item {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
  }
  .c-opencampus-item-wrap__img {
    width: 50%;
  }
  .c-opencampus-item-wrap__txt-wrap {
    flex: 1;
    margin-top: 0;
  }
  .c-opencampus-item-wrap__num {
    font-size: 2.4rem;
  }
  .c-opencampus-item-wrap__dayname {
    font-size: 1.6rem;
  }
  .c-opencampus-item-wrap__heading {
    font-size: 1.3rem;
  }
}
/*-------------------------------

# オープンキャンパスに関するお問い合わせ

-------------------------------*/
.c-openampus-contact-wrap__heading {
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.1em;
}
.c-openampus-contact-wrap__txt {
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 2.1;
  margin-top: 40px;
}
.c-openampus-contact-wrap .c-line-btn {
  margin: 50px auto 0;
}
.c-openampus-contact-wrap .c-tel-wrap01 {
  margin: 50px auto 0;
}
.c-openampus-contact-wrap .c-btn--small {
  margin: 50px auto 0;
}

@media (max-width: 768px) {
  .c-openampus-contact-wrap__heading {
    font-size: 1.6rem;
  }
  .c-openampus-contact-wrap__txt {
    margin-top: 25px;
    text-align: left;
  }
  .c-openampus-contact-wrap .c-line-btn {
    margin-top: 30px;
  }
  .c-openampus-contact-wrap .c-tel-wrap01 {
    margin-top: 30px;
  }
  .c-openampus-contact-wrap .c-btn--small {
    margin-top: 30px;
  }
}
/*-------------------------------

# オープンキャンパスのカレンダー

-------------------------------*/
.c-opencampus-calendar {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.c-opencampus-calendar__table-wrap {
  position: relative;
}
.c-opencampus-calendar__arrow-item {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 3px solid var(--black);
  display: block;
}
.c-opencampus-calendar__arrow-item--prev {
  left: 0;
  border-left: 3px solid var(--black);
  rotate: 45deg;
}
.c-opencampus-calendar__arrow-item--next {
  right: 0;
  border-right: 3px solid var(--black);
  rotate: -45deg;
}
.c-opencampus-calendar__table {
  width: 100%;
  max-width: 952px;
  position: relative;
  margin: 60px auto 0;
}
.c-opencampus-calendar__th,
.c-opencampus-calendar__td {
  border: 2px solid var(--black);
  width: 14%;
  vertical-align: top;
  text-align: center;
}
.c-opencampus-calendar__th {
  height: 62px;
  vertical-align: middle;
  font-family: var(--robo);
  font-size: 1.9rem;
  font-weight: bold;
}
.c-opencampus-calendar__td {
  height: 100px;
  position: relative;
  padding: 34px 0 10px;
}
.c-opencampus-calendar__td--today {
  background: var(--calendar-today-color);
}
.c-opencampus-calendar__day {
  position: absolute;
  top: 7px;
  left: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: var(--robo);
}
.c-opencampus-calendar__day--sat {
  color: var(--blue);
}
.c-opencampus-calendar__day--sun,
.c-opencampus-calendar__day--holiday {
  color: var(--red);
}
.c-opencampus-calendar__event > * + * {
  margin-top: 5px;
}
.c-opencampus-calendar__event-item {
  display: block;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.c-opencampus-calendar .c-link01__inner {
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}

.c-opencampus-calendar .c-link01__item {
  display: block;
  width: fit-content;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1280px) {
  .c-opencampus-calendar__table {
    max-width: unset;
  }
  .c-opencampus-calendar__arrow-item {
    bottom: auto;
    top: -60px;
  }
}
@media (max-width: 768px) {
  .c-opencampus-calendar__arrow-item {
    width: 15px;
    height: 15px;
    top: -30px;
  }
  .c-opencampus-calendar__table {
    margin-top: 30px;
  }
  .c-opencampus-calendar__th {
    height: 30px;
  }
  .c-opencampus-calendar__td {
    height: 40px;
    padding-bottom: 8px;
  }
  .c-opencampus-calendar__day {
    top: 3px;
    left: 5px;
    font-size: 1.3rem;
  }
  .c-opencampus-calendar__event {
    margin-top: 20px;
  }
  .c-opencampus-calendar__event-item {
    font-size: 1rem;
    text-align: left;
    margin: 0 2px;
  }
  .c-opencampus-calendar .c-link01__inner {
    margin-top: 50px;
  }
  .c-opencampus-calendar .c-link01__item {
    margin-left: 0;
  }
}
/*-------------------------------

# タイトルセクション

-------------------------------*/
.c-heading-sec01 {
  padding-top: 170px;
  padding-bottom: 60px;
}

/* .c-heading-sec01 .c-bread {
  margin-right: 100px;
} */
.c-heading-sec01__heading-wrap {
  margin-top: 25px;
}
.c-heading-sec01__heading {
  font-family: var(--robo);
  font-size: 5rem;
  font-weight: bold;
  position: relative;
}
.c-heading-sec01__heading::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  left: 0;
  bottom: -10px;
  background: var(--black);
}
.c-heading-sec01__heading-wrap.u-color-white .c-heading-sec01__heading::after {
  background: #fff;
}
.c-heading-sec01__subheading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-top: 40px;
}
.c-heading-sec01 .c-link01 {
  margin-top: 100px;
}
.c-heading-sec01 .c-link01 > * + * {
  margin-top: 30px;
}
.c-heading-sec01 .c-link01__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 600px;
}
.c-heading-sec01 .c-link01__item {
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media (max-width: 768px) {
  .c-heading-sec01 {
    padding-top: 130px;
  }
  .c-heading-sec01__heading-wrap {
    margin-top: 0;
  }
  .c-heading-sec01__heading {
    font-size: 3rem;
  }
  .c-heading-sec01__heading::after {
    bottom: -8px;
  }
  .c-heading-sec01__subheading {
    font-size: 1.6rem;
    margin-top: 25px;
  }
  .c-heading-sec01 .c-link01 {
    margin-top: 50px;
    font-size: 1.2rem;
  }
  .c-heading-sec01 .c-link01__inner {
    display: block;
  }
  .c-heading-sec01 .c-link01__inner > * + * {
    margin-top: 15px;
  }
  .c-heading-sec01 .c-link01__item {
    display: block;
  }
}
/*-------------------------------

# その他セクション1

-------------------------------*/
.c-works-wrap01 {
  padding-bottom: 160px;
}
.c-other-sec01__block {
  padding: 90px 0;
  border-top: 1px solid var(--black);
}
.c-other-sec01__heading {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-other-sec01__inner {
  display: flex;
  gap: 70px;
  align-items: center;
  margin-top: 40px;
}
.c-other-sec01__img {
  width: 430px;
}
.c-other-sec01__img :is(img, picture) {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-other-sec01__txt-wrap {
  flex: 1;
}
.c-other-sec01__summary {
  line-height: 2.6;
}
.c-other-sec01 .c-btn--small {
  margin-left: auto;
  margin-top: 40px;
}

@media (max-width: 1280px) {
  .c-other-sec01__img {
    width: 30%;
  }
  .c-other-sec01__inner {
    gap: 7%;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .c-other-sec01 {
    padding-bottom: 25px;
  }
  .c-other-sec01__block {
    padding: 40px 0;
  }
  .c-other-sec01__heading {
    font-size: 2rem;
  }
  .c-other-sec01__inner {
    display: block;
    margin-top: 25px;
  }
  .c-other-sec01__img {
    width: auto;
  }
  .c-other-sec01__summary {
    line-height: 2;
    margin-top: 25px;
  }
  .c-other-sec01 .c-btn--small {
    margin-top: 25px;
  }
}
/*==================================================

下層ページ統一テンプレート

==================================================*/
/*-------------------------------

# ページ冒頭用

-------------------------------*/
.c-fv-sec01 {
  padding-top: 160px;
}
.c-fv-sec01 .c-bread {
  margin-right: 100px;
}
.c-fv-sec01__img {
  margin-top: 60px;
  position: relative;
  margin-left: calc(50% - 50vw);
  width: calc(50vw + 50%);
  height: 460px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
}
.c-fv-sec01__heading-wrap {
  width: 1000px;
  max-width: calc(100vw - 200px);
  margin-left: auto;
  margin-right: 0;
}
.c-fv-sec01__heading {
  color: #fff;
  font-size: 3.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
}
.c-fv-sec01__heading::after {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 2px;
  background: #fff;
}

@media (max-width: 768px) {
  .c-fv-sec01 {
    padding-top: 100px;
  }
  .c-fv-sec01__img {
    margin-top: 0;
    height: auto;
    aspect-ratio: 2/1;
  }
  .c-fv-sec01__heading-wrap {
    width: auto;
    max-width: unset;
    margin-left: 5vw;
    margin-right: 5vw;
  }
  .c-fv-sec01__heading {
    font-size: 2rem;
  }

  .c-fv-sec01__heading::after {
    height: 1px;
  }
}
/*-------------------------------

# アンカーリンク

-------------------------------*/
.c-heading01 + .c-link01 {
  margin-top: 60px;
}
.c-link01 > * + * {
  margin-top: 25px;
}
.c-link01__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 600px;
}
.c-link01__item {
  letter-spacing: 0.04em;
  font-weight: bold;
}
.c-fv-sec01 + section .c-link01 {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .c-link01 > * + * {
    margin-top: 30px;
  }
  .c-link01__inner {
    display: block;
  }
  .c-link01__inner > * + * {
    margin-top: 15px;
  }
  .c-link01__item {
    display: block;
  }
  .c-fv-sec01 + section .c-link01 {
    margin-top: 50px;
  }
}
/*-------------------------------

# アンカーリンク2

-------------------------------*/
.c-link02 > * + * {
  margin-top: 30px;
}
.c-link02__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 600px;
  margin-top: 8px;
}
.c-link02__heading,
.c-link02__item {
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media (max-width: 768px) {
  .c-link02 > * + * {
    margin-top: 30px;
  }
  .c-link02__inner {
    display: block;
  }
  .c-link02__inner > * + * {
    margin-top: 15px;
  }
  .c-link02__item {
    display: block;
    font-size: 1.4rem;
  }
}
/*-------------------------------

# テキスト

-------------------------------*/
.c-link01 + .c-txt01 {
  margin-top: 40px;
}
.c-txt01 {
  line-height: 2.2;
}
.c-heading01 + .c-txt01 {
  margin-top: 40px;
}
.c-fv-sec01 + section .c-txt01 {
  margin-top: 55px;
}
.c-link01 .c-txt01 {
  margin-top: 70px;
}

@media (max-width: 768px) {
  .c-txt01 {
    line-height: 2.4;
  }
  .c-fv-sec01 + section .c-txt01 {
    margin-top: 30px;
  }
}
.c-txt-center01 {
  text-align: center;
}
.c-color-line {
  color: var(--line-color);
}

/*-------------------------------

# コンテンツ見出し

-------------------------------*/
.c-heading01 {
  font-size: 3rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
}
.c-heading01::after {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
  width: 90px;
  height: 1px;
  background: var(--black);
}
.c-heading01.u-color-white::after {
  background: #fff;
}
.c-heading01__sub {
  font-size: 1.6rem;
  box-sizing: border-box;
  padding: 5px 10px;
  color: #fff;
  background-color: #000;
}

@media (max-width: 768px) {
  .c-heading01 {
    font-size: 1.6rem;
  }
  .c-heading01__sub {
    font-size: 1.3rem;
  }
}
.c-heading02 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .c-heading02 {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}
.c-heading03 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .c-heading03 {
    font-size: 1.8rem;
  }
}
/*-------------------------------

# 縦並び 画像＋文章

-------------------------------*/
.c-col-wrap01__img :is(img, picture) {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-col-wrap01__txt-wrap {
  margin-top: 50px;
}
.c-col-wrap01__heading {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.c-col-wrap01__txt {
  line-height: 2.6;
  margin-top: 25px;
}
.c-heading01 + .c-col-wrap01 {
  margin-top: 60px;
}
.c-col-wrap01 + .c-col-wrap01 {
  margin-top: 50px;
}
.c-col-wrap01 + .c-heading01:has(+ .c-col-wrap01) {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .c-heading01 + .c-col-wrap01 {
    margin-top: 40px;
  }

  .c-col-wrap01__txt-wrap {
    margin-top: 30px;
  }
  .c-col-wrap01__heading {
    font-size: 1.8rem;
  }
  .c-col-wrap01__txt {
    font-size: 1.4rem;
    line-height: 2.4;
    margin-top: 15px;
  }
  .c-col-wrap01 + .c-heading01:has(+ .c-col-wrap01) {
    margin-top: 60px;
  }
}
/*-------------------------------

# 横並び 画像＋文章（大）

-------------------------------*/
.c-row-wrap01__item--wide .c-row-wrap01__img :is(img, picture) {
  aspect-ratio: 17/9;
}
.c-row-wrap01__item {
  display: flex;
  flex-direction: row;
  gap: 100px;
}
.c-row-wrap01__img {
  margin-left: calc(50% - 50vw);
  width: 44vw;
  /* height: 460px; */
}
.c-row-wrap01__img :is(img, picture) {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/2;
}
.c-row-wrap01__txt-wrap {
  flex: 1;
  margin-top: 60px;
}
.c-row-wrap01__txt {
  line-height: 2.6;
  margin-top: 52px;
}
.c-row-wrap01__txt--bold {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.6;
}
.c-row-wrap01__item--reverse {
  flex-direction: row-reverse;
}
.c-row-wrap01__item--reverse .c-row-wrap01__img {
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}
.c-row-wrap01 > * + * {
  margin-top: 60px;
}
.c-row-wrap01 .c-btn {
  margin-top: 60px;
  font-size: 1.6rem;
  padding: 4px 30px;
}

@media (max-width: 1280px) {
  .c-row-wrap01__item {
    gap: 5%;
  }
}
@media (max-width: 768px) {
  .c-row-wrap01__item {
    display: block;
  }
  .c-row-wrap01__img {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .c-row-wrap01__txt-wrap {
    margin-top: 25px;
  }
  .c-row-wrap01__txt {
    font-size: 1.4rem;
    line-height: 2.4;
    margin-top: 25px;
  }
}
/*-------------------------------

# 横並び 画像＋文章（中）

-------------------------------*/
.c-heading01 + .c-row-wrap02 {
  margin-top: 50px;
}
.c-row-wrap02 > * + * {
  margin-top: 60px;
}
.c-row-wrap02__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4.8%;
}
.c-row-wrap02__img {
  width: 45.5%;
  /* aspect-ratio: 7/6; */
}
.c-row-wrap02__img :is(img, picture) {
  aspect-ratio: 7/6;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-row-wrap02__txt-wrap {
  flex: 1;
}
.c-row-wrap02__heading {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 2;
}
.c-row-wrap02__txt {
  line-height: 2.2;
  margin-top: 15px;
}
.c-row-wrap02__name {
  margin-top: 25px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-row-wrap02__item--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .c-heading01 + .c-row-wrap02 {
    margin-top: 30px;
  }
  .c-row-wrap02__item {
    display: block;
  }
  .c-row-wrap02__img {
    width: auto;
  }
  .c-row-wrap02__heading {
    font-size: 1.6rem;
  }
  .c-row-wrap02__txt-wrap {
    margin-top: 30px;
  }
  .c-row-wrap02__txt {
    font-size: 1.4rem;
    margin-top: 8px;
  }
}
/*-------------------------------

# 横並び 画像＋文章（小）

-------------------------------*/
.c-row-wrap03__item {
  display: flex;
  flex-direction: row;
  gap: 8%;
  align-items: center;
}
.c-row-wrap03__img {
  width: 42%;
}
.c-row-wrap03__img :is(img, picture) {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-row-wrap03__txt-wrap {
  flex: 1;
}
.c-row-wrap03__heading {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
.c-row-wrap03__txt {
  line-height: 2.2;
  margin-top: 15px;
}
.c-row-wrap03__item--reverse {
  flex-direction: row-reverse;
}
.c-row-wrap03 > * + * {
  margin-top: 60px;
}
.c-row-wrap03 .c-btn {
  margin-top: 35px;
  font-size: 1.6rem;
  padding: 4px 30px;
}
.c-heading01 + .c-row-wrap03 {
  margin-top: 51px;
}
.c-row-wrap03 + .c-row-wrap03 {
  margin-top: 76px;
}
.c-row-wrap03__big-heading {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
}
.c-row-wrap03__big-heading + .c-row-wrap03__item {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .c-row-wrap03__item {
    display: block;
  }
  .c-row-wrap03__img {
    width: auto;
  }
  .c-row-wrap03__heading {
    font-size: 1.6rem;
  }
  .c-row-wrap03__txt-wrap {
    margin-top: 30px;
  }
  .c-row-wrap03__txt {
    font-size: 1.4rem;
    margin-top: 8px;
  }
  .c-row-wrap03 .c-btn {
    margin-top: 19px;
    font-size: 1.3rem;
    padding: 4px 25px;
  }
  .c-row-wrap03__big-heading {
    font-size: 2rem;
  }
  .c-heading01 + .c-row-wrap03 {
    margin-top: 40px;
  }
  .c-row-wrap03 + .c-row-wrap03 {
    margin-top: 60px;
  }
  .c-row-wrap03__big-heading + .c-row-wrap03__item {
    margin-top: 25px;
  }
}
/*-------------------------------

# グリッド 画像＋文章

-------------------------------*/
.c-grid-wrap01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 100px;
}
.c-grid-wrap01__img :is(img, picture) {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-grid-wrap01__txt-wrap {
  margin-top: 25px;
}
.c-grid-wrap01__heading {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
.c-grid-wrap01__txt {
  line-height: 2.2;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .c-grid-wrap01 {
    display: block;
  }
  .c-grid-wrap01 > * + * {
    margin-top: 20px;
  }
  .c-grid-wrap01__heading {
    font-size: 1.6rem;
  }
  .c-grid-wrap01__txt-wrap {
    margin-top: 30px;
  }
  .c-grid-wrap01__txt {
    font-size: 1.4rem;
    margin-top: 8px;
  }
}
/*-------------------------------

# ギャラリー

-------------------------------*/
.c-gallery-wrap01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 100px;
}
.c-heading01 + .c-gallery-wrap01 {
  margin-top: 80px;
}
.c-gallery01 {
  margin: 0 auto;
  max-width: 450px;
}
.c-gallery01__img :is(img, picture) {
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-gallery01--horizon .c-gallery01__img :is(img, picture) {
  aspect-ratio: 4/3;
}
.c-gallery01__txt-wrap {
  text-align: center;
  margin-top: 40px;
}
.c-gallery01__name,
.c-gallery01__heading {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.c-gallery01 + .c-gallery01 {
  margin-top: 80px;
}
.c-gallery-wrap01 .c-gallery01 {
  margin-top: 0;
}
.c-heading01 + .c-gallery01 {
  margin-top: 80px;
}
.c-gallery-wrap01 > :last-child:nth-child(2n + 1) {
  grid-column: 1/-1;
  justify-self: center;
  width: calc((100% - 100px) / 2);
}

@media (max-width: 768px) {
  .c-gallery-wrap01 {
    display: block;
  }
  .c-gallery-wrap01 > * + * {
    margin-top: 42px !important;
  }
  .c-gallery01__txt-wrap {
    margin-top: 25px;
  }
  .c-gallery01__name,
  .c-gallery01__heading {
    font-size: 1.4rem;
  }
  .c-gallery01 + .c-gallery01 {
    margin-top: 60px;
  }
  .c-gallery-wrap01 > :last-child:nth-child(2n + 1) {
    width: auto;
  }
}
/*-------------------------------

# ページ一覧

-------------------------------*/
.c-outline-sec01 {
  padding-bottom: 176px;
}
.c-outline-sec01__heading-wrap {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding-top: 30px;
  padding-bottom: 25px;
}
.c-outline-sec01__heading {
  font-family: var(--robo);
  font-size: 5rem;
  font-weight: bold;
}
.c-outline-sec01__subheading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-outline-sec01__item-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;
  margin-top: 90px;
}
.c-outline-sec01__img :is(img, picture) {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-outline-sec01__txt-wrap {
  margin-top: 25px;
}
.c-outline-sec01__ttl {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.c-outline-sec01__txt {
  line-height: 2.2;
  margin-top: 4px;
}

@media (max-width: 1025px) {
  .c-outline-sec01__subheading {
    font-size: 1.4rem;
  }
  .c-outline-sec01__item-wrap {
    gap: 100px 50px;
  }
}
@media (max-width: 768px) {
  .c-outline-sec01 {
    padding-bottom: 50px;
  }
  .c-outline-sec01__heading-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .c-outline-sec01__heading {
    font-size: 3rem;
  }
  .c-outline-sec01__item-wrap {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 25px;
  }
  .c-outline-sec01__txt-wrap {
    margin-top: 8px;
  }
  .c-outline-sec01__ttl {
    font-size: 1.3rem;
  }
  .c-outline-sec01__txt {
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 8px;
  }
}
/*-------------------------------

# ページ一覧2

-------------------------------*/
.c-outline-sec02 {
  padding-top: 90px;
  padding-bottom: 100px;
}
.c-outline-sec02__heading {
  font-family: var(--robo);
  font-size: 5rem;
  font-weight: bold;
}
.c-outline-sec02__subheading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-outline-sec02__item-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;
  margin-top: 90px;
}
.c-outline-sec02__img :is(img, picture) {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-outline-sec02__item--overseas .c-outline-sec02__img :is(img, picture) {
  object-fit: contain;
}
.c-outline-sec02__item--japan .c-outline-sec02__img :is(img, picture) {
  object-position: top;
}
.c-outline-sec02__txt-wrap {
  margin-top: 25px;
}
.c-outline-sec02__ttl {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.c-outline-sec02__txt {
  line-height: 2.2;
  margin-top: 15px;
}

@media (max-width: 1025px) {
  .c-outline-sec02__subheading {
    font-size: 1.6rem;
  }
  .c-outline-sec02__item-wrap {
    gap: 100px 50px;
  }
}
@media (max-width: 768px) {
  .c-outline-sec02 {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .c-outline-sec02__heading-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .c-outline-sec02__heading {
    font-size: 3rem;
  }
  .c-outline-sec02__item-wrap {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 25px;
  }
  .c-outline-sec02__txt-wrap {
    margin-top: 8px;
  }
  .c-outline-sec02__ttl {
    font-size: 1.4rem;
  }
  .c-outline-sec02__txt {
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 8px;
  }
}
/*-------------------------------

# 東コレ

-------------------------------*/
.c-works-wrap01 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 100px 40px;
}
.c-works-wrap01__item {
  display: block;
}
.c-works-wrap01__txt-wrap {
  margin-top: 30px;
  text-align: center;
}
.c-works-wrap01__heading {
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.c-works-wrap01__name {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .c-works-wrap01 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
}
/*-------------------------------

# ファッショングランプリのfv

-------------------------------*/
.c-fv-sec02 {
  height: 100svh;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  padding-top: 110px;
}

.c-fv-sec02::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.c-fv-sec02__heading {
  color: #fff;
  font-size: 8rem;
  font-weight: bold;
  font-family: var(--robo);
  line-height: 1.1;
  position: absolute;
  width: fit-content;
  left: 0;
  right: 0;
  bottom: 152px;
  margin: auto;
  transform: translate(-368px, 0);
}
.c-fv-sec02 .c-bread {
  margin-right: 100px;
}

@media (max-width: 1280px) {
  .c-fv-sec02__heading {
    transform: unset;
    margin-left: 100px;
  }
}
@media (max-width: 768px) {
  .c-fv-sec02 {
    height: calc(100svh - var(--ft-btn-height));
  }
  .c-fv-sec02__heading {
    font-size: 5rem;
    margin-left: 5vw;
    bottom: 30px;
  }
}

/*-------------------------------

# コンテスト

-------------------------------*/
:is(.c-heading01, .c-txt01) + .c-contest-block-wrap01 {
  margin-top: 60px;
}
.c-contest-block-wrap01 > * + * {
  margin-top: 160px;
}
.c-contest-block-wrap01__name-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.c-contest-block-wrap01__name {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.c-contest-block-wrap01__heading {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-top: 15px;
}
.c-contest-block-wrap01__award {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
.c-contest-block-wrap01__award + .c-contest-block-wrap01__name-wrap {
  margin-top: 30px !important;
}
.c-contest-block-wrap01__heading + .c-txt01 {
  margin-top: 30px;
}
.c-contest-item-wrap01 > * + * {
  margin-top: 40px;
}
.c-contest-item-wrap01 {
  margin-top: 80px;
}
.c-contest-item-wrap01__inner--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.c-contest-item-wrap01__inner--grid > :last-child:nth-child(2n + 1) {
  grid-column: 1/-1;
  justify-self: center;
  width: calc((100% - 40px) / 2);
}
.c-contest-item-wrap01__item--video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
}

@media (max-width: 768px) {
  .c-contest-block-wrap01__name {
    font-size: 1.6rem;
  }
  .c-contest-block-wrap01__course {
    font-size: 1.3rem;
  }
  .c-contest-block-wrap01__heading {
    font-size: 1.6rem;
    margin-top: 0;
  }
  .c-contest-block-wrap01 > * + * {
    margin-top: 60px;
  }
  .c-contest-item-wrap01 {
    margin-top: 30px;
  }
  .c-contest-item-wrap01 > * + * {
    margin-top: 25px;
  }
  .c-contest-item-wrap01__inner--grid {
    gap: 25px;
  }
  .c-contest-item-wrap01__inner--grid > :last-child:nth-child(2n + 1) {
    width: calc((100% - 25px) / 2);
  }
}
/*-------------------------------

# 三大イベントのレポート

-------------------------------*/
.c-big-event-report-sec01 {
  padding-top: 50px;
  padding-bottom: 110px;
}
.c-big-event-report-sec01__heading-wrap {
  text-align: center;
}
.c-big-event-report-sec01__heading {
  font-size: 5rem;
  font-family: var(--robo);
  font-weight: bold;
}
.c-big-event-report-sec01__subheading {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
}
.c-big-event-report-sec01 .c-big-event-report-wrap01 {
  margin-top: 100px;
}
.c-big-event-report-wrap01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 100px;
}
.c-big-event-report-wrap01__item {
  display: block;
}
.c-big-event-report-wrap01__img :is(img, picture) {
  object-position: top;
  object-fit: cover;
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
}
.c-big-event-report-wrap01__txt-wrap {
  margin-top: 15px;
  text-align: center;
}
.c-big-event-report-wrap01__heading {
  font-size: 4rem;
  font-weight: bold;
  font-family: var(--robo);
}
.c-big-event-report-wrap01__theme-heading {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
.c-big-event-report-wrap01__theme-name {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media (max-width: 768px) {
  .c-big-event-report-sec01 {
    padding-bottom: 50px;
  }
  .c-big-event-report-sec01__heading {
    font-size: 3rem;
  }
  .c-big-event-report-sec01__subheading {
    font-size: 1.4rem;
  }
  .c-big-event-report-sec01 .c-big-event-report-wrap01 {
    margin-top: 30px;
  }
  .c-big-event-report-wrap01 {
    display: block;
  }
  .c-big-event-report-wrap01 > * + * {
    margin-top: 30px;
  }
  .c-big-event-report-wrap01__heading {
    font-size: 2.2rem;
  }
  .c-big-event-report-wrap01__theme-heading {
    font-size: 1.4rem;
  }
  .c-big-event-report-wrap01__theme-name {
    font-size: 1.6rem;
  }
}
/*-------------------------------

# gallery（レポート）

-------------------------------*/
.c-gallery-wrap02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.c-gallery02__img :is(img, picture) {
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-gallery-wrap02 > :last-child:nth-child(2n + 1) {
  grid-column: 1/-1;
  justify-self: center;
  width: calc((100% - 40px) / 2);
}

@media (max-width: 768px) {
  .c-gallery-wrap02 {
    display: block;
  }
  .c-gallery-wrap02 > * + * {
    margin-top: 30px;
  }
  .c-gallery-wrap02 > :last-child:nth-child(2n + 1) {
    width: auto;
  }
}
/*-------------------------------

# faq-details

-------------------------------*/
.c-heading01 + .c-faq-details-wrap01 {
  margin-top: 40px;
}
.c-faq-details-wrap01__details {
  border-bottom: 2px solid var(--black);
}
.c-faq-details-wrap01__q,
.c-faq-details-wrap01__a {
  width: 58px;
}
.c-faq-details-wrap01__question-txt,
.c-faq-details-wrap01__answer-txt {
  flex: 1;
}
.c-faq-details-wrap01__question {
  cursor: pointer;
  padding: 30px 30px 20px 8px;
  position: relative;
  display: flex;
}
.c-faq-details-wrap01__q {
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--robo);
  line-height: 1;
  margin-top: -4px;
}
.c-faq-details-wrap01__question-txt {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-faq-details-wrap01__question::after {
  content: "";
  position: absolute;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  right: 0;
  width: 10px;
  height: 10px;
  transition: transform 0.4s;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.c-faq-details-wrap01__details.is-opened
  .c-faq-details-wrap01__question::after {
  transform: rotate(-135deg);
}
.c-faq-details-wrap01__answer {
  overflow: hidden;
  /* ここにpaddingを指定するとおかしくなる */
}
.c-faq-details-wrap01__inner {
  padding: 0 30px 25px 8px;
  display: flex;
  flex-direction: row;
}
.c-faq-details-wrap01__a {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: var(--robo);
  color: var(--faq-a-color);
  transform: translate(3px, -4px);
}
.c-faq-details-wrap01__answer-txt {
  line-height: 2.2;
}

@media (max-width: 768px) {
  .c-heading01 + .c-faq-details-wrap01 {
    margin-top: 25px;
  }
  .c-faq-details-wrap01__q,
  .c-faq-details-wrap01__a {
    width: 30px;
  }
  .c-faq-details-wrap01__q {
    font-size: 2.4rem;
    margin-top: 0;
  }
  .c-faq-details-wrap01__question {
    padding: 15px 30px 15px 8px;
  }
  .c-faq-details-wrap01__question-txt {
    font-size: 1.4rem;
  }
  .c-faq-details-wrap01__question::after {
    width: 8px;
    height: 8px;
  }
  .c-faq-details-wrap01__a {
    font-size: 2.4rem;
    transform: translate(1px, 0);
  }
}
/*-------------------------------

# 記事アーカイブ

-------------------------------*/
.c-article-wrap01 {
  border-top: 1px solid var(--black);
}
.c-article-wrap01__item {
  border-bottom: 1px solid var(--black);
  padding: 30px 0;
}
.c-article-wrap01__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6%;
}
.c-article-wrap01__img {
  width: 41%;
}
.c-article-wrap01__img :is(img, picture) {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-article-wrap01__txt-wrap {
  flex: 1;
}
.c-article-wrap01__date {
  font-family: var(--hel);
  font-size: 2.4rem;
  font-weight: bold;
}
.c-article-wrap01__heading {
  font-weight: bold;
  font-size: 1.8em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 15px;
}
.c-article-wrap01__cat {
  font-size: 1.3rem;
  color: var(--gray);
  margin-top: 30px;
}

/*---------- list ----------*/
.c-article-btn-wrap01 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 60px;
}
.c-article-btn-wrap01__item {
  font-weight: bold;
  font-size: 2.4rem;
  font-family: var(--hel);
}

/*---------- pager ----------*/
.c-archive-pager {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.c-archive-pager__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--black);
  border-radius: 100vmax;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: var(--hel);
}
.c-archive-pager__item--current {
  color: #fff;
  background: var(--black);
}

@media (max-width: 768px) {
  .c-article-btn-wrap01 {
    gap: 25px;
  }
  .c-article-wrap01__inner {
    display: block;
  }
  .c-article-wrap01__img {
    width: auto;
  }
  .c-article-wrap01__txt-wrap {
    width: auto;
    margin-top: 15px;
  }
  .c-article-wrap01__heading {
    font-size: 1.6rem;
    margin-top: 8px;
  }
  .c-article-wrap01__cat {
    margin-top: 15px;
  }
  .c-archive-pager__item {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
  .c-article-btn-wrap01__item {
    font-size: 1.6rem;
  }
  .c-article-wrap01__date {
    font-size: 2rem;
  }
}
/*-------------------------------

# single記事

-------------------------------*/
.c-single-pager {
  display: flex;
  justify-content: space-between;
}
.c-single-pager__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 50px;
  background: var(--black);
  border: 2px solid var(--black);
  font-size: 1.6rem;
  font-family: var(--robo);
  letter-spacing: 0.1em;
  border-radius: 100vmax;
}
.c-single-pager__item--all {
  background: unset;
}
.c-single-pager__item--prev,
.c-single-pager__item--next {
  color: #fff;
}
.c-single-pager__item--none {
  opacity: 0;
}

@media (max-width: 768px) {
  .c-single-pager__item {
    font-size: 1.3rem;
    width: 80px;
    height: 40px;
  }
}
/*-------------------------------

# article modal

-------------------------------*/
.c-article-modal01 {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
  z-index: -2;
  opacity: 0;
}
.c-article-modal01.is-open {
  opacity: 1;
  z-index: 10;
}
.c-article-modal01__x {
  position: fixed;
  width: 52px;
  height: 52px;
  border: 1px solid #fff;
  top: 86px;
  right: 114px;
  border-radius: 100vmax;
}
.c-article-modal01__x::before,
.c-article-modal01__x::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 28px;
  background: #fff;
  top: 23px;
  left: 11px;
}
.c-article-modal01__x::before {
  transform: rotate(-45deg);
}
.c-article-modal01__x::after {
  transform: rotate(45deg);
}
.c-article-modal01__inner {
  transform: translate(53px, 0);
  max-height: calc(100svh - 100px);
  overflow-y: scroll;
}
.c-article-modal01__heading {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: var(--hel);
  letter-spacing: 0.1em;
}
.c-article-modal01__list {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 40px;
}
.c-article-modal01__item {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

@media (max-width: 1280px) {
  .c-article-modal01__inner {
    transform: unset;
  }
}
@media (max-width: 768px) {
  /* .c-article-modal01 {
    height: calc(100% - var(--ft-btn-height));
  } */
  .c-article-modal01__x {
    width: 45px;
    height: 45px;
    top: 43px;
    right: 30px;
  }
  .c-article-modal01__x::before,
  .c-article-modal01__x::after {
    width: 23px;
    top: 20px;
    left: 10px;
  }
  .c-article-modal01__heading {
    font-size: 1.8rem;
  }
  .c-article-modal01__list {
    gap: 15px 25px;
    margin-top: 40px;
  }
  .c-article-modal01__item {
    font-size: 1.3rem;
  }
}
/*-------------------------------
汎用画像なしFV
-------------------------------*/
.c-fv-noImg01 {
  padding: 170px 0 85px;
}
.c-fv-noImg01__head {
  margin-top: 50px;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.3;
  font-family: var(--robo);
  position: relative;
  padding-bottom: 30px;
}
.c-fv-noImg01__head--big {
  font-size: 10rem;
}
.c-fv-noImg01__head::after {
  position: absolute;
  display: block;
  content: "";
  background-color: var(--black);
  width: 120px;
  height: 2px;
  left: 0;
  bottom: 0;
}
.c-fv-noImg01__sub {
  margin-top: 30px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-fv-noImg01__txt {
  line-height: 2.6;
  margin-top: 39px;
}
.c-fv-noImg01 .c-bread {
  margin-right: 100px;
}

@media (max-width: 768px) {
  .c-fv-noImg01 {
    padding: 80px 0 45px;
  }
  .c-fv-noImg01__head {
    margin-top: 30px;
    font-size: 2.8rem;
    padding-bottom: 20px;
  }
  .c-fv-noImg01__head--big {
    font-size: 4rem;
  }
  .c-fv-noImg01__sub {
    margin-top: 20px;
    font-size: 1.6rem;
  }
  .c-fv-noImg01__txt {
    margin-top: 19px;
  }
}
/*-------------------------------
電話番号
-------------------------------*/
.c-tel01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 445px;
  line-height: 1;
}
.c-tel01__ico {
  width: 55px;
  margin-right: 10px;
}
.c-tel01__num {
  font-size: 4rem;
  font-weight: bold;
  font-family: var(--robo);
}

@media (max-width: 768px) {
  .c-tel01 {
    justify-content: left;
    min-width: none;
  }
  .c-tel01__ico {
    width: 30px;
  }
  .c-tel01__num {
    font-size: 3rem;
  }
}
/*-------------------------------
フォーム
-------------------------------*/
.c-form01 tr {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-collapse: collapse;
}
.c-form01 th {
  box-sizing: border-box;
  padding: 30px 10px;
  min-width: 240px;
}
.c-form01 td {
  padding: 20px;
  vertical-align: middle;
}
.c-form01__require {
  font-size: 1.3rem;
  background-color: #db4b4b;
  line-height: 1;
  box-sizing: border-box;
  padding: 5px;
  color: #fff;
  margin-left: 15px;
}
.c-form01__th-note {
  font-size: 1.3rem;
  display: block;
}
.c-form01__td-note {
  margin-top: 5px;
  font-size: 1.3rem;
  display: block;
}

@media (max-width: 768px) {
  .c-form01 tr {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-collapse: collapse;
  }
  .c-form01 th {
    display: block;
    min-width: none;
    font-size: 1.4rem;
    padding: 20px 0;
  }
  .c-form01 td {
    display: block;
    padding: 0 0 20px;
    font-size: 1.4rem;
  }
}
.c-form01__btn {
  display: block;
  width: 400px;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  background-color: var(--black) !important;
  color: #fff !important;
  border-radius: 40px !important;
  border: none;
  margin: 30px auto 0;
  cursor: pointer;
}
.c-form01__btnWrap {
  display: flex;
  justify-content: center;
}
.c-form01__btn.is-back {
  background-color: #ccc !important;
  color: var(--black) !important;
}

@media (max-width: 768px) {
  .c-form01__btn {
    width: 200px;
    font-size: 1.4rem;
  }
  .c-form01__btnWrap {
    display: block;
  }
}
.js-cf7-confirm-wrap {
  display: none;
}
.wpcf7-response-output {
  display: none !important;
}
.wpcf7-spinner {
  position: absolute !important;
}
.js-cf7-wrap .wpcf7-list-item {
  margin-right: 15px !important;
  margin-bottom: 10px !important;
}
.c-form01
  td
  :is(
    input:is(
      [type="text"],
      [type="email"],
      [type="tel"],
      [type="number"],
      [type="url"],
      [type="search"],
      [type="password"]
    ),
    textarea
  ) {
  box-sizing: border-box;
  padding: 10px 5px;
  width: 100%;
  height: 100%;
  border: none;
  background: #efefee;
  font-weight: normal;
  outline: none;
  border-radius: 3px;
}

@media (max-width: 768px) {
  textarea {
    width: 100% !important;
  }
}
.c-form01 input[type="radio"] {
  appearance: none;
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  border-radius: 100vmax;
  background: #fff;
  vertical-align: -2px;
}
.c-form01 input[type="radio"]:checked:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  inset: 0;
  margin: auto;
  border-radius: 100vmax;
  background: #000;
}

@media (max-width: 768px) {
  .js-cf7-wrap .c-form01__btnWrap {
    display: block;
  }
  .js-cf7-wrap .c-form01__btnWrap > * + * {
    margin-top: 20px;
  }
}
.c-form01 input[type="checkbox"] {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #111;
  background: #fff;
  vertical-align: -4px;
  margin-right: 10px;
  cursor: pointer;
}
.c-form01 input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
}
.cf7-cf-turnstile {
  margin: 0 auto;
  width: fit-content;
  margin-top: 30px !important;
  margin-bottom: -65px !important;
}
.c-form01__shomeisho {
  display: flex !important;
}

@media (max-width: 768px) {
  .c-form01__shomeisho-type {
    margin-top: 25px;
  }
}
.c-form01__shomeisho .wpcf7-list-item {
  display: block;
  margin-bottom: 38px !important;
}

@media (max-width: 768px) {
  .c-form01__shomeisho .wpcf7-list-item {
    display: block;
    margin-bottom: 39px !important;
  }
}
.c-form01__shomeisho .busuu input[type="number"] {
  max-width: 70px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .c-form01__shomeisho .busuu input[type="number"] {
    margin-top: 10px;
  }
}
.c-form01__shomeisho .busuu input[type="text"] {
  max-width: 160px;
}
.c-form01__shomeisho .document {
  margin-bottom: 15px;
}
.c-form01__date {
  display: flex !important;
  align-items: center;
}
.c-form01__date .wpcf7-form-control-wrap {
  display: flex;
}
.c-form01__date input[type="text"] {
  max-width: 70px;
  margin-right: 10px;
}
.c-form01__flex {
  display: flex;
  align-items: center;
}
.c-form01__flex .wpcf7-form-control-wrap {
  display: flex;
}
.c-form01__flex input[type="text"] {
  margin-right: 10px;
}
.c-form01__code {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.c-form01__code input[type="text"] {
  max-width: 200px;
  margin-left: 10px;
}
.c-form01__time {
  display: flex;
  align-items: center;
}
.c-form01__time input[type="text"] {
  max-width: 70px;
  margin: 0 10px;
}

/*-------------------------------

# インタビュー

-------------------------------*/
.c-interview-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.c-interview-wrap__block {
  position: relative;
  display: block;
}
.c-interview-wrap__block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.c-interview-wrap__img :is(img, picture) {
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-interview-wrap__txt-wrap {
  bottom: 37px;
  left: 0;
  right: 0;
  margin: 0 34px;
  position: absolute;
  color: #fff;
  z-index: 2;
}
.c-interview-wrap__course {
  font-weight: bold;
  font-size: 1.6rem;
}
.c-interview-wrap__name {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 13px;
}

@media (max-width: 1280px) {
  .c-interview-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .c-interview-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .c-interview-wrap__txt-wrap {
    margin: 0 10px;
    bottom: 20px;
  }
  .c-interview-wrap__course {
    font-size: 1.3rem;
  }
  .c-interview-wrap__name {
    font-size: 2.2rem;
    margin-top: 4px;
  }
}
/*-------------------------------

# 活躍する先輩

-------------------------------*/
.c-senior-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}
.c-senior-wrap__block {
  position: relative;
  display: block;
}
.c-senior-wrap__block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.c-senior-wrap__img :is(img, picture) {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-senior-wrap__txt-wrap {
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 30px;
  position: absolute;
  color: #fff;
  z-index: 2;
}
.c-senior-wrap__position {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.8;
}
.c-senior-wrap__name {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 19px;
}

@media (max-width: 1280px) {
  .c-senior-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1025px) {
  .c-senior-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .c-senior-wrap__txt-wrap {
    margin: 0 10px;
    bottom: 20px;
  }
  .c-senior-wrap__position {
    font-size: 1.1rem;
  }
  .c-senior-wrap__name {
    font-size: 1.8rem;
    margin-top: 4px;
  }
}
/*-------------------------------

# 教師一覧

-------------------------------*/
.c-teacher-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.c-teacher-wrap__block:first-of-type {
  grid-column: span 2;
}
.c-teacher-wrap__block {
  position: relative;
  display: block;
}
.c-teacher-wrap__block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.c-teacher-wrap__img :is(img, picture) {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 47/66;
}
.c-teacher-wrap__block:first-of-type .c-teacher-wrap__img :is(img, picture) {
  aspect-ratio: 95/66;
  object-position: 0 22%;
}
.c-teacher-wrap__inner {
  display: flex;
  flex-direction: row;
  bottom: 37px;
  left: 0;
  right: 0;
  margin: 0 30px;
  position: absolute;
  color: #fff;
  z-index: 2;
  align-items: flex-end;
  gap: 20px;
}
.c-teacher-wrap__txt-wrap {
  flex: 1;
}
.c-teacher-wrap__name {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-teacher-wrap__en {
  font-weight: bold;
  font-size: 1.6rem;
  font-family: var(--robo);
}
.c-teacher-wrap__occupation {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 40px;
}
.c-teacher-wrap .c-btn {
  margin-right: 36px;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media (max-width: 1280px) {
  .c-teacher-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1025px) {
  .c-teacher-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .c-teacher-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .c-teacher-wrap__inner {
    margin: 0 10px;
    bottom: 20px;
  }
  .c-teacher-wrap__course {
    font-weight: bold;
    font-size: 1.3rem;
  }
  .c-teacher-wrap__name {
    font-size: 1.6rem;
  }
  .c-teacher-wrap__en {
    font-size: 1rem;
  }
  .c-teacher-wrap__occupation {
    margin-top: 8px;
  }
  .c-teacher-wrap .c-btn {
    padding: 8px 15px;
    margin-right: 0;
    margin-bottom: 6px;
  }
}
/*-------------------------------

# アイコン

-------------------------------*/
.c-ico-pdf01 {
  display: block;
  padding-left: 25px;
  position: relative;
}
.c-ico-pdf01::before {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/common/i_pdf--color.svg);
  background-position: center;
  background-repeat: no-repeat;
  top: auto;
  left: 0;
}

/*-------------------------------

# 表

-------------------------------*/
.c-table01 tr {
  border-collapse: collapse;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.c-table01 th {
  padding: 20px;
}
.c-table01 td {
  padding: 20px;
}

@media (max-width: 768px) {
  .c-table01 th {
    display: block;
    padding: 20px 0 10px 0;
  }
  .c-table01 td {
    display: block;
    padding: 0 0 20px 0;
  }
}
/*-------------------------------

# teacher

-------------------------------*/
.c-teacher-fv01__img-wrap {
  position: relative;
  margin-left: calc(50% - 50vw);
  width: calc(50vw + 50%);
  height: 704px;
  position: relative;
}
.c-teacher-fv01__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.c-teacher-fv01__img {
  height: 100%;
}
.c-teacher-fv01__img :is(img, picture) {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-teacher-fv01__txt-wrap {
  right: 58px;
  bottom: 75px;
  position: absolute;
  color: #fff;
  z-index: 2;
  gap: 20px;
}
.c-teacher-fv01__name {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-teacher-fv01__en {
  font-weight: bold;
  font-size: 1.6rem;
  font-family: var(--robo);
}
.c-teacher-fv01__occupation {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .c-teacher-fv01__img-wrap {
    height: auto;
    aspect-ratio: 1/1;
  }
  .c-teacher-fv01__txt-wrap {
    right: 17px;
    bottom: 15px;
  }
  .c-teacher-fv01__course {
    font-weight: bold;
    font-size: 1.3rem;
  }
  .c-teacher-fv01__name {
    font-size: 1.6rem;
  }
  .c-teacher-fv01__en {
    font-size: 1rem;
  }
  .c-teacher-fv01__occupation {
    margin-top: 8px;
    font-size: 1.3rem;
  }
}
/*-------------------------------

# 教師プロフィール

-------------------------------*/
.c-teacher-profile01 {
  padding: 130px 0 0;
}
.c-teacher-profile01__lead {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.c-teacher-profile01__txt {
  line-height: 2.6;
  margin-top: 40px;
}
.c-teacher-profile01__career {
  margin-top: 90px;
  max-width: 490px;
}
.c-teacher-profile01__career-heading {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1em;
  position: relative;
}
.c-teacher-profile01__career-heading::after {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 2px;
  background: var(--black);
}
.c-teacher-profile01__career-txt {
  line-height: 2.1;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .c-teacher-profile01 {
    padding: 43px 0 0;
  }
  .c-teacher-profile01__lead {
    font-size: 1.8rem;
  }
  .c-teacher-profile01__txt {
    margin-top: 14px;
  }
  .c-teacher-profile01__career {
    margin-top: 40px;
  }
  .c-teacher-profile01__career-heading::after {
    width: 100px;
  }
  .c-teacher-profile01__career-txt {
    margin-top: 25px;
  }
}
/*-------------------------------

# 同じ学科を見てみるなどのボタン

-------------------------------*/
.course-btn-wrap01__txt {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}
.course-btn-wrap01__btn {
  width: fit-content;
  margin: 15px auto 0;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 31px 71px;
  position: relative;
}
.course-btn-wrap01__btn::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  display: block;
  rotate: 45deg;
  border-top: 2px solid var(--department-color);
  border-right: 2px solid var(--department-color);
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
}

@media (max-width: 768px) {
  .course-btn-wrap01__txt {
    font-size: 1.6rem;
  }
  .course-btn-wrap01__btn {
    font-size: 1.6rem;
    padding: 20px 34px;
  }
  .course-btn-wrap01__btn::after {
    width: 8px;
    height: 8px;
    right: 15px;
  }
}
/*-------------------------------

# about table

-------------------------------*/
.c-about-table-wrap01 {
  display: flex;
  border: 2px solid #fff;
}
.c-about-table-wrap01__table {
  width: 50%;
  color: #fff;
  padding: min(30px, 2vw) min(40px, 2.7vw) min(25px, 1.6vw);
}
.c-about-table-wrap01__table:not(:first-of-type) {
  border-left: 2px solid #fff;
}
.c-about-table-wrap01__heading {
  text-align: center;
  font-size: min(4rem, 2.7vw);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-about-table-wrap01__value {
  display: flex;
  flex-direction: row;
  font-family: var(--hel);
  align-items: flex-end;
  justify-content: center;
  margin-top: -15px;
  gap: min(-15px, 1vw);
}
.c-about-table-wrap01__num {
  font-size: min(21.6rem, 14vw);
  font-weight: bold;
}
.c-about-table-wrap01__per {
  font-size: min(12.3rem, 7vw);
  translate:
    0,
    -25px;
  transform: translate(0, -25px);
}
.c-about-table-wrap01__caution {
  font-size: min(15px, 1vw);
  letter-spacing: 0.1em;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .c-about-table-wrap01 {
    display: block;
  }
  .c-about-table-wrap01__table {
    width: 100%;
    padding-top: 7vw;
    padding-bottom: 4vw;
  }
  .c-about-table-wrap01__table:not(:first-of-type) {
    border-left: none;
    border-top: 2px solid #fff;
  }
  .c-about-table-wrap01__heading {
    font-size: 6vw;
  }
  .c-about-table-wrap01__value {
    margin-top: -4vw;
    gap: 3vw;
  }
  .c-about-table-wrap01__num {
    font-size: 32vw;
  }
  .c-about-table-wrap01__per {
    font-size: 18vw;
    transform: translate(0, -4vw);
  }
  .c-about-table-wrap01__caution {
    font-size: 3.2vw;
  }
}
/*-------------------------------

# c-opencampus-bnr-wrap01

-------------------------------*/
.c-opencampus-bnr-wrap01__img {
  width: 744px;
  margin-left: 60px;
}

@media (max-width: 768px) {
  .c-opencampus-bnr-wrap01__img {
    width: 208px;
    margin-left: 8px;
  }
}
/*-------------------------------

# Gmap+住所のインクルード

-------------------------------*/
.c-access-map__f {
  margin-top: 25px;
}
.c-access-map__f iframe {
  width: 100%;
  height: 410px;
}
.c-access-info__txt {
  margin-top: 25px;
}
.c-access-info-map {
  margin-bottom: 110px;
}
.c-access-info__areaBtn {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.c-access-info__areaBtn-item {
  text-align: center;
  display: block;
  width: 100%;
}
.c-access-info__areaBtn-item + .c-access-info__areaBtn-item {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .c-access-info-map {
    margin-bottom: 60px;
  }
  .c-access-info__areaBtn {
    display: block;
  }
  .c-access-info__areaBtn-item + .c-access-info__areaBtn-item {
    margin-left: 0;
    margin-top: 30px;
  }
}
/*-------------------------------

# 箇条書きリスト

-------------------------------*/
.c-list01__wrap:has(> :nth-child(2):last-child) {
  display: flex;
  flex-wrap: nowrap;
}
.c-list01__wrap:has(> :nth-child(2):last-child) .c-list01 {
  width: 48%;
}
.c-list01__wrap:has(> :nth-child(2):last-child) .c-list01 + .c-list01 {
  margin-left: 4%;
}
.c-list01__item + .c-list01__item {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .c-list01__wrap {
    display: block !important;
  }
  .c-list01__wrap .c-list01 {
    width: 100% !important;
  }
  .c-list01__wrap .c-list01 + .c-list01 {
    margin-top: 10px;
    margin-left: 0;
  }

  .c-list01__wrap:has(> :nth-child(2):last-child) .c-list01 + .c-list01 {
    margin: 0;
  }
}
.c-list02__wrap:has(> :nth-child(3):last-child) {
  display: flex;
  flex-wrap: nowrap;
}
.c-list02__wrap:has(> :nth-child(3):last-child) .c-list02 {
  width: 33.3333%;
  box-sizing: border-box;
  padding-right: 1em;
}
.c-list02__item {
  line-height: 1.6;
  position: relative;
  padding-left: 1em;
}
.c-list02__item::before {
  position: absolute;
  content: "・";
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-list02__item + .c-list02__item {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .c-list02 + .c-list02 {
    margin-top: 10px;
  }
  .c-list02__wrap:has(> :nth-child(3):last-child) {
    display: block;
  }
  .c-list02__wrap:has(> :nth-child(3):last-child) .c-list02 {
    width: 100%;
    padding-right: 0;
  }
  .c-list02__item {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.c-list03__item {
  line-height: 1.6;
  position: relative;
  padding-left: 1em;
}
.c-list03__item::before {
  position: absolute;
  content: "・";
  top: 0;
  bottom: 0;
  left: 0;
}
.c-list03__item + .c-list03__item {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .c-list03 + .c-list03 {
    margin-top: 10px;
  }
  .c-list03__wrap:has(> :nth-child(3):last-child) {
    display: block;
  }
  .c-list03__wrap:has(> :nth-child(3):last-child) .c-list03 {
    width: 100%;
    padding-right: 0;
  }
  .c-list03__item {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
/*-------------------------------

# profile

-------------------------------*/
.c-profile01 {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
.c-profile01__img {
  width: 220px;
  margin-right: 40px;
}
.c-profile01__areaTxt {
  width: calc(100% - 220px);
}
.c-profile01__head {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.c-profile01__txt {
  line-height: 2.6;
}

@media (max-width: 768px) {
  .c-profile01 {
    display: block;
    max-width: none;
    margin-top: 25px;
  }
  .c-profile01__img {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
  .c-profile01__areaTxt {
    width: 100%;
  }
  .c-profile01__head {
    font-size: 1.6rem;
  }
  .c-profile01__txt {
    font-size: 1.4rem;
    line-height: 2.4;
  }
}
/*-------------------------------

# table02

-------------------------------*/
.c-table02 {
  position: relative;
}
.c-table02 :is(th, td) {
  border: 1px solid var(--black);
  padding: 15px 20px;
}
.c-table02 th:first-of-type {
  font-weight: bold;
  width: 114px;
}
.c-table02::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--black);
  bottom: 0;
  left: 0;
}

/*-------------------------------

# c-sec-lead01

-------------------------------*/
.c-sec-lead01 {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .c-sec-lead01 {
    padding-bottom: 60px;
  }
}
/*-------------------------------

# c-txt-wrap01

-------------------------------*/
.c-heading01 + .c-txt-wrap01 {
  margin-top: 60px;
}
.c-txt01 + .c-txt-wrap01 {
  margin-top: 60px;
}
.c-txt-wrap01 > * + * {
  margin-top: 30px;
}
.c-txt-wrap01__heading {
  font-size: 1.6rem;
  font-weight: bold;
}
.c-txt-wrap01__txt {
  line-height: 2;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .c-heading01 + .c-txt-wrap01 {
    margin-top: 40px;
  }
}

/*-------------------------------

# c-tel-wrap01

-------------------------------*/
.c-tel-wrap01 {
  text-align: center;
}
.c-tel-wrap01__heading {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
.c-tel-wrap01__txt {
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 2.1;
  margin-top: 40px;
  margin-top: 20px;
}
.c-tel-wrap01__subheading {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.c-tel-wrap01__txt + .c-tel-wrap01__subheading {
  margin-top: 30px;
}
.c-tel-wrap01__num {
  font-size: 4rem;
  font-family: var(--robo);
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-top: 5px;
  display: block;
}

@media (max-width: 768px) {
  .c-tel-wrap01__heading {
    font-size: 1.6rem;
  }
  .c-tel-wrap01__txt {
    margin-top: 25px;
    text-align: left;
  }
  .c-tel-wrap01__subheading {
    font-size: 1.6rem;
  }
  .c-tel-wrap01__txt + .c-tel-wrap01__subheading {
    margin-top: 14px;
  }
  .c-tel-wrap01__num {
    font-size: 3rem;
  }
}

/*-------------------------------

# c-exam-bnr

-------------------------------*/
.c-exam-bnr01 {
  width: 100%;
  height: 100%;
  background: #d83a60;
  color: #fff;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 364/190;
  gap: 10px;
}
.c-exam-bnr01__heading {
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-exam-bnr01__txt {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

.exam-bnr-wrap .c-exam-bnr01 .close-btn {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 1em;
  right: 1em;
  transform: rotate(45deg);
}

.exam-bnr-wrap .c-exam-bnr01 .close-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.exam-bnr-wrap .c-exam-bnr01 .close-btn::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .c-exam-bnr01 {
    flex-direction: row;
    aspect-ratio: unset;
    height: 60px;
  }
  .c-exam-bnr01__heading {
    font-size: 2.1rem !important;
  }
  .c-exam-bnr01__txt {
    font-size: 1.5rem !important;
  }
}

/*-------------------------------

# details

-------------------------------*/
.c-heading01 + .c-details-wrap01 {
  margin-top: 40px;
}
.c-details-wrap01__details {
  border-bottom: 2px solid var(--black);
}
.c-details-wrap01__question-txt,
.c-details-wrap01__answer-txt {
  flex: 1;
}
.c-details-wrap01__question {
  cursor: pointer;
  padding: 30px 30px 20px 0;
  position: relative;
  display: flex;
}
.c-details-wrap01__question::after {
  content: "";
  position: absolute;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  right: 0;
  width: 10px;
  height: 10px;
  transition: transform 0.4s;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.c-details-wrap01__details.is-opened .c-details-wrap01__question::after {
  transform: rotate(-135deg);
}
.c-details-wrap01__answer {
  overflow: hidden;
  /* ここにpaddingを指定するとおかしくなる */
}
.c-details-wrap01__inner {
  padding: 20px 0 30px;
  display: flex;
  flex-direction: row;
}

@media (max-width: 768px) {
  .c-heading01 + .c-details-wrap01 {
    margin-top: 25px;
  }
  .c-details-wrap01__question {
    padding: 15px 30px 15px 8px;
  }
  .c-details-wrap01__question::after {
    width: 8px;
    height: 8px;
  }
}

/*-------------------------------

# マロニエファッショングランプリ/プログラム用

-------------------------------*/

/*---------- heading-wrap ----------*/
.c-program-heading-wrap01 {
  font-weight: bold;
}
.c-program-heading-wrap01__en {
  font-family: var(--robo);
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-program-heading-wrap01__ja {
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}

/*---------- lead ----------*/
.c-program-lead01 {
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  line-height: 1.8;
}
.c-program-heading-wrap01 + .c-program-lead01 {
  margin-top: 35px;
}

/*---------- works-wrap01 ----------*/
.c-program-works-wrap01 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 40px;
}
.c-program-works-wrap01__item {
  display: block;
}
.c-program-works-wrap01__txt-wrap {
  margin-top: 10px;
  text-align: center;
}
.c-program-works-wrap01__num {
  font-family: var(--robo);
  font-size: 2.4rem;
  font-weight: bold;
}
.c-program-works-wrap01__name {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-program-works-wrap01__course {
  letter-spacing: 0.1em;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .c-program-works-wrap01 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
}

/*---------- works-wrap02 ----------*/
.c-program-works-wrap02__item {
  padding: 50px 0;
  border-top: 1px solid var(--black);
}
.c-program-works-wrap02__num {
  font-family: var(--robo);
  font-size: 2.4rem;
  font-weight: bold;
}
.c-program-works-wrap02__heading-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  flex-wrap: wrap;
}
.c-program-works-wrap02__heading {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.c-program-works-wrap02__subheading {
  letter-spacing: 0.1em;
}
.c-program-works-wrap02__name {
  margin-top: 5px;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 15px;
}
.c-program-works-wrap02__course {
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.c-program-works-wrap02__txt {
  letter-spacing: 0.1em;
  margin-top: 30px;
  line-height: 2;
}
.c-program-works-wrap02__img-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 30px;
}
.c-program-works-wrap02__img-num {
  font-family: var(--robo);
  font-size: 2.4rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .c-program-works-wrap02__heading-wrap {
    display: block;
  }
  .c-program-works-wrap02__img-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
}

/*---------- works-wrap03 ----------*/
.c-program-works-wrap03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}
.c-program-works-wrap03__heading-wrap {
  text-align: center;
}
.c-program-works-wrap03__num {
  font-family: var(--robo);
  font-size: 2.4rem;
  font-weight: bold;
}
.c-program-works-wrap03__heading {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-program-works-wrap03__subheading {
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-program-works-wrap03__img {
  margin-top: 15px;
}
.c-program-works-wrap03__txt {
  letter-spacing: 0.1em;
  margin-top: 30px;
  line-height: 2;
}
.c-program-works-wrap03__course {
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.c-program-works-wrap03__name {
  margin-top: 5px;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .c-program-works-wrap03 {
    display: block;
  }
  .c-program-works-wrap03 > * + * {
    margin-top: 40px;
  }
}

/*---------- works-wrap04 ----------*/
.c-program-works-wrap04__item {
  padding: 50px 0;
  border-top: 1px solid var(--black);
}
.c-program-works-wrap04__person-num {
  font-family: var(--robo);
  font-size: 2.4rem;
  font-weight: bold;
}
.c-program-works-wrap04__heading-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  flex-wrap: wrap;
}
.c-program-works-wrap04__heading {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.c-program-works-wrap04__subheading {
  letter-spacing: 0.1em;
}

.c-program-works-wrap04__group-course {
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.c-program-works-wrap04__txt {
  letter-spacing: 0.1em;
  margin-top: 30px;
  line-height: 2;
}
.c-program-works-wrap04__person-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 30px;
}
.c-program-works-wrap04__person-img-num {
  font-family: var(--robo);
  font-size: 2.4rem;
  font-weight: bold;
}
.c-program-works-wrap04__person {
  display: block;
}
.c-program-works-wrap04__person-txt-wrap {
  margin-top: 10px;
  text-align: center;
}
.c-program-works-wrap04__person-num {
  font-family: var(--robo);
  font-size: 2.4rem;
  font-weight: bold;
}
.c-program-works-wrap04__person-name {
  letter-spacing: 0.1em;
  margin-top: 15px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-program-works-wrap04__person-course {
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.c-program-works-wrap04__person-heading {
  font-weight: bold;
  font-size: 1.8rem;
}
.c-program-works-wrap04__person-txt {
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.c-program-works-wrap04__person-txt + .c-program-works-wrap04__person-name {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .c-program-works-wrap04 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
  .c-program-works-wrap04__heading-wrap {
    display: block;
  }
}

/*---------- content-wrap01 ----------*/
.c-program-content-wrap01 {
  margin-top: 60px;
}
.c-program-content-wrap01__block {
  padding: 40px 0;
  border-top: 2px solid var(--black);
}
/*-------------------------------

# c-article-marrostep01

-------------------------------*/
.c-article-marrostep01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.c-article-marrostep01__txt-wrap {
  margin-top: 15px;
}
.c-article-marrostep01__date {
  font-weight: bold;
  font-size: 3rem;
  font-family: var(--hel);
}
.c-article-marrostep01__heading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 8px;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  font-weight: bold;
}
.c-article-marrostep01__img :is(img, picture) {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}
@media (max-width: 768px) {
  .c-article-marrostep01 {
    display: block;
  }
  .c-article-marrostep01 > * + * {
    margin-top: 15px;
  }
  .c-article-marrostep01__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .c-article-marrostep01__img {
    width: 46%;
  }
  .c-article-marrostep01__txt-wrap {
    flex: 1;
    margin-top: 0;
  }
  .c-article-marrostep01__date {
    font-size: 2.4rem;
  }
  .c-article-marrostep01__heading {
    font-size: 1.3rem;
    margin-top: 8px;
  }
}

/*-------------------------------

# フロー表

-------------------------------*/

.flow-wrap01 > * + * {
  margin-top: 20px;
}
.flow-wrap01__block {
  border-top: 2px solid var(--black);
}
.flow-wrap01__block:has(.flow-wrap01__outer) {
  border: none;
  margin-top: 53px;
}
.flow-wrap01__outer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.flow-wrap01__inner {
  width: 48%;
  border-top: 2px solid var(--black);
}
.flow-wrap01__heading-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
}
.flow-wrap01__num {
  width: 60px;
  font-family: var(--robo);
  font-size: 4rem;
  font-weight: bold;
}
.flow-wrap01__heading {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.flow-wrap01__txt {
  line-height: 2.2;
  margin-top: 15px;
}
.flow-wrap01__arrow-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 35px;
  align-items: center;
  gap: 10px;
}
.flow-wrap01__arrow {
  width: 30px;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 55%, 100% 0, 0 0);
  background: var(--black);
}
.flow-wrap01__arrow-txt {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .flow-wrap01__num {
    width: 35px;
    font-size: 3rem;
  }
  .flow-wrap01__heading-wrap {
    margin-top: 10px;
  }
  .flow-wrap01__heading {
    font-size: 1.6rem;
  }
  .flow-wrap01__txt {
    margin-top: 5px;
  }
  .flow-wrap01__arrow-wrap {
    margin-top: 17px;
  }
  .flow-wrap01__arrow {
    width: 15px;
  }
  .flow-wrap01__arrow-txt {
    font-size: 1.4rem;
  }
  .flow-wrap01__outer {
    display: block;
  }
  .flow-wrap01__outer > * + * {
    margin-top: 20px;
  }
  .flow-wrap01__inner {
    width: auto;
  }
  .flow-wrap01__block:has(.block__outer) {
    margin-top: 20px;
  }
}

/*-------------------------------

# ギャラリー（archive-gallery）

-------------------------------*/
.c-gallery03 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-gallery03__item {
  width: 25%;
}
.c-gallery03__item :is(img, picture) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-gallery03__item.is-square {
  aspect-ratio: 1/1;
}
.c-gallery03__item.is-vertical {
  aspect-ratio: 1/2;
}
.c-gallery03__item.is-horizontal {
  width: 50%;
  aspect-ratio: 2/1;
}
@media (max-width: 768px) {
  .c-gallery03__item {
    width: 50%;
  }
  .c-gallery03__item.is-horizontal {
    width: 100%;
  }
}

/*-------------------------------

# table03

-------------------------------*/
.c-table03 {
  margin-top: 40px;
  border-top: 1px solid var(--black);
}
.c-table03__item {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--black);
  padding: 25px;
}
.c-table03__heading {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  width: 160px;
}
.c-table03__txt {
  flex: 1;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .c-table03__item {
    display: block;
    padding: 25px 8px;
  }
  .c-table03__txt {
    margin-top: 8px;
  }
}

/*-------------------------------

# contestのoutline

-------------------------------*/
.c-outline-contest-wrap01 {
  border-top: 2px solid var(--black);
}
.c-outline-contest-wrap01__item {
  padding: 40px 0;
  border-bottom: 2px solid var(--black);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 112px;
}
.c-outline-contest-wrap01__img {
  width: 200px;
}
.c-outline-contest-wrap01__inner {
  display: flex;
  flex-direction: row;
  flex: 1;
  align-items: center;
  gap: 64px;
}
.c-outline-contest-wrap01__txt-wrap {
  flex: 1;
}
.c-outline-contest-wrap01__country {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.c-outline-contest-wrap01__heading {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.c-outline-contest-wrap01__country + .item__heading {
  margin-top: 8px;
}
.c-outline-contest-wrap01__summary {
  line-height: 2;
  margin-top: 16px;
}
@media (max-width: 1280px) {
  .c-outline-contest-wrap01__item {
    gap: 64px;
  }
}
@media (max-width: 1024px) {
  .c-outline-contest-wrap01__inner {
    margin-top: 40px;
  }
  .c-outline-contest-wrap01__item {
    display: block;
  }
}

@media (max-width: 768px) {
  .c-outline-contest-wrap01__inner {
    display: block;
    margin-top: 24px;
  }
  .c-outline-contest-wrap01__country {
    font-size: 1.6rem;
  }
  .c-outline-contest-wrap01__heading {
    font-size: 1.6rem;
  }
  .c-outline-contest-wrap01__summary {
    font-size: 1.4rem;
  }
  .c-outline-contest-wrap01 .item__country + .item__heading {
    margin-top: 0;
  }
  .c-outline-contest-wrap01 .c-btn {
    margin-top: 24px;
  }
}

/*-------------------------------

# ファッショングランプリのテーマ

-------------------------------*/
.c-heading01 + .c-theme01 {
  margin-top: 50px;
}
.c-theme01__heading {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: var(--robo);
}
.c-theme01__txt {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-theme01 + .c-txt01 {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .c-heading01 + .c-theme01 {
    margin-top: 30px;
  }
  .c-theme01__heading {
    font-size: 2rem;
  }
  .c-theme01__txt {
    font-size: 1.6rem;
  }
  .c-theme01 + .c-txt01 {
    margin-top: 30px;
  }
}
