@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* =========================================
   リセット・共通
   ========================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  background-color: #ffffff;
  color: #2c364b;
  font-size: 1.6rem;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}


/* pc/sp */
.pc {
    display: none;
}

.pc-i {
    display: none;
}

.sp {
    display: block;
}

.sp-i {
    display: inline;
}

@media (min-width: 940px) {
    .pc {
        display: block;
    }

    .pc-i {
        display: inline;
    }

    .sp,
    .sp-i {
        display: none;
    }
}

/* =========================================
   ヘッダー
   ========================================= */

.header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e0e0e0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 54px;
}

.header-logo-link {
  display: block;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  width: 33.6%;
}

.header-logo-ja {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.header-logo-en {
  font-size: 0.9rem;
  color: #888888;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

/* ハンバーガーボタン */

.header-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  flex-shrink: 0;
}

.header-hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333333;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* PC用ナビ：SPでは非表示 */

.header-nav {
  display: none;
}

/* ハンバーガーオープン時のアニメーション */

.header.is-open .header-hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header.is-open .header-hamburger-line:nth-child(2) {
  opacity: 0;
}

.header.is-open .header-hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ドロワーメニュー（ハンバーガーオープン時） */

.header.is-open .header-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  overflow-y: auto;
  z-index: 99;
  padding-bottom: 40px;
}

.header.is-open .header-nav-menu {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eeeeee;
}

.header.is-open .header-nav-menu-item {
  border-bottom: 1px solid #eeeeee;
}

.header.is-open .header-nav-menu-link {
  display: block;
  padding: 18px 24px;
  font-size: 1.5rem;
  color: #333333;
}

.header-nav-search form {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 87%,
    #2c364b 87%,
    #2c364b 100%
  );
  border: 1px solid #aaaaaa;
  border-radius: 24px;
  padding: 12px 14px;
  gap: 8px;
  margin: 24px 24px 0;
  width: auto;
}

.header.is-open .header-nav-search-input {
  background: none;
  border: none;
  outline: none;
  color: #333333;
  font-size: 1.4rem;
  width: 100%;
  font-family: inherit;
}

.header.is-open .header-nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.header.is-open .header-nav-student {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  font-size: 1.4rem;
  color: #333333;
  border-top: 1px solid #eeeeee;
}
.header.is-open .header-nav-menu + .header-nav-student {
  border-top: 0;
}

.header.is-open .header-nav-student-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.header.is-open .header-nav-site-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  font-size: 1.4rem;
  color: #333333;
  border-top: 1px solid #eeeeee;
}

@media (min-width: 940px) {

  .header-inner {
    padding: 0 30px;
    height: 60px;
  }

  .header-logo-link {
    margin-left: 0;
    width: auto;
  }
  .header-logo-link img {
    max-width: 100%;
    max-height: 45px;
  }
  
  .header-logo-ja {
    font-size: 1.9rem;
  }

  .header-logo-en {
    font-size: 1.0rem;
  }

  .header-hamburger {
    display: none;
  }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
  }

  /* メインメニュー */

  .header-nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .header-nav-menu-item {
    white-space: nowrap;
  }

  .header-nav-menu-link {
    font-size: 1.3rem;
    color: #333333;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
  }

  .header-nav-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333333;
    transition: width 0.25s;
  }

  .header-nav-menu-link:hover {
    color: #555555;
  }

  .header-nav-menu-link:hover::after {
    width: 100%;
  }

  /* 検索フィールド */

  .header-nav-search form {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    background: linear-gradient(
      to right,
      #ffffff 0%,
      #ffffff 80%,
      #2c364b 80%,
      #2c364b 100%
    );
    border: 1px solid #aaaaaa;
    border-radius: 24px;
    padding: 5px 12px;
    gap: 8px;
    margin: 0;
    width: 180px;
  }

  .header-nav-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #2c364b;
  }

  .header-nav-search-input {
    background: none;
    border: none;
    outline: none;
    color: #333333;
    font-size: 1.3rem;
    width: 100%;
    font-family: inherit;
  }

  .header-nav-search-input::placeholder {
    color: #aaaaaa;
  }

  /* 在学生の方へ */

  .header-nav-student {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #aaaaaa;
    border-radius: 24px;
    padding: 6px 14px;
    font-size: 1.2rem;
    color: #333333;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
  }

  .header-nav-student:hover {
    border-color: #333333;
    color: #111111;
  }

  .header-nav-student-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }

  /* サイト内検索 */

  .header-nav-site-search {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header-nav-site-search-text {
    font-size: 1.2rem;
    color: #333333;
    white-space: nowrap;
  }

  .header-nav-site-search-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    background-color: #333333;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    transition: background-color 0.2s;
  }

  .header-nav-site-search-btn:hover {
    background-color: #555555;
  }

}


/* =========================================
   スマホ用ヘッダーナビ
   ========================================= */
.header-nav-sp {
  border-top: 1px solid #e0e0e0;
  padding: 16px 0;
}
.header-nav-sp ul {
  align-items: flex-start;
  display: flex;
  justify-content: space-around;
}
.header-nav-sp li {
  font-size: 3vw;
  text-align: center;
  width: 25%;
}
.header-nav-sp li img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: .5em;
}
.header-nav-sp-menu-item--about img,
.header-nav-sp-menu-item--life img {
  width: 6.67vw;
}
.header-nav-sp-menu-item--department img,
.header-nav-sp-menu-item--course img {
  width: 7.73vw;
}


@media (min-width: 940px) {
  .header-nav-sp {
    display: none;
  }
}

/* =========================================
   メインビジュアル
   ========================================= */

.mv {
  background-color: #ffffff;
}

.mv-catch {
  text-align: center;
  padding: 40px 20px 28px;
}

.mv-catch-text {
  font-family:"ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 5.8vw;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.8;
  color: #333333;
}

.mv-catch-line {
  display: block;
  width: 120px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(
    to right,
    #86C695 0%,
    #86C695 16.6%,
    #E5A83F 16.6%,
    #E5A83F 33.3%,
    #84BAE5 33.3%,
    #84BAE5 50%,
    #f092b5 50%,
    #f092b5 66.6%,
    #c75661 66.6%,
    #c75661 83.3%,
    #d18b94 83.3%,
    #d18b94 100%
  );
  border-radius: 2px;
}

/* MVスライダー */

.mv-slider {
  padding: 0 20px;
  position: relative;
}

.mv-slider-item-img {
  background-color: #f0f0f0;
}

.mv-slider-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 矢印 */

.mv-slider-prev,
.mv-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.85);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s;
}

.mv-slider-prev:hover,
.mv-slider-next:hover {
  background-color: #ffffff;
}

.mv-slider-prev {
  left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2.5'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}

.mv-slider-next {
  right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2.5'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

/* ドット */

.mv-slider .slick-dots {
  bottom: 10px;
}

.mv-slider .slick-dots li {
  width: 3.4vw;
}

.mv-slider .slick-dots li button::before {
  background-color: #ffffff;
  border-radius: 4px;
  content: '';
  color: #ffffff;
  opacity: 1;
  font-size: 8px;
  height: 1vw;
  width: 100%;
}

.mv-slider .slick-dots li.slick-active {
    width: 7.15vw;
}

.mv-slider .slick-dots li.slick-active button::before {
  color: #ffffff;
  opacity: 1;
}

@media (min-width: 940px) {

  .mv-catch {
    padding: 72px 20px 52px;
  }

  .mv-catch-text {
    font-size: 4.2rem;
    letter-spacing: 0.3em;
    line-height: 1.5;
  }

  .mv-catch-line {
    width: 200px;
    height: 4px;
    margin-top: 24px;
  }

  .mv-slider {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 95%;
  }
  .mv-slider-item-img {
  }

  .mv-slider-prev {
    left: 24px;
  }

  .mv-slider-next {
    right: 24px;
  }

  .mv-slider-prev,
  .mv-slider-next {
    width: 44px;
    height: 44px;
  }

  .mv-slider .slick-dots {
    bottom: 14px;
  }

  .mv-slider .slick-dots li {
    width: 27px;
  }

  .mv-slider .slick-dots li button::before {
    border-radius: 3px;
    font-size: 9px;
    height: 6px;
  }

  .mv-slider .slick-dots li.slick-active {
      width: 65px;
  }
}

/* =========================================
   ピックアップ
   ========================================= */

.pickup {
  background-color: #ffffff;
  padding: 48px 0 64px;
}

.pickup-inner {
  padding: 0;
}

.pickup-heading {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 20px;
}

.pickup-heading-sub {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #999999;
  margin-bottom: 6px;
}

.pickup-heading-main {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #333333;
}

/* スライダー（SP: centerMode 対応で幅いっぱいに広げる） */

.pickup-slider {
  width: 100%;
}

.pickup-slider-item {
  padding: 0 6px;
}

.pickup-slider-item-img {
  background-color: #f0f0f0;
  border-radius: 10px;
}

.pickup-slider-item-img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ドット */

.pickup-slider .slick-dots {
  bottom: -28px;
  text-align: left;
  padding-left: 40px;
}

.pickup-slider .slick-dots li {
  margin-left: 3px;
  margin-right: 3px;
  width: 3.4vw;
}
.pickup-slider .slick-dots li button::before {
  background-color: #cbcbcb;
  border-radius: 4px;
  content: '';
  color: #cccccc;
  opacity: 1;
  font-size: 8px;
  height: 1vw;
  width: 100%;
}

.pickup-slider .slick-dots li.slick-active {
    width: 7.15vw;
}

.pickup-slider .slick-dots li.slick-active button::before {
  background-color: #6a7a9c;
  color: #333333;
  opacity: 1;
}

@media (min-width: 940px) {

  .pickup {
    padding: 80px 0 110px;
  }

  .pickup-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .pickup-heading {
    margin-bottom: 40px;
    padding: 0;
  }

  .pickup-heading-main {
    font-size: 4.4rem;
  }

  .pickup-slider-item {
    padding: 0 8px;
  }

  .pickup-slider-item-img,
  .pickup-slider-item-img img {
    border-radius: 0;
  }

  .pickup-slider .slick-dots {
    bottom: -40px;
    padding-left: 13%;
  }

  .pickup-slider .slick-dots li {
    width: 27px;
  }
  .pickup-slider .slick-dots li button::before {
    border-radius: 3px;
    height: 6pt;
    width: 100%;
  }
  
  .pickup-slider .slick-dots li.slick-active {
      width: 65px;
  }
}

/* =========================================
   縦バーナビ（SP: 非表示）
   ========================================= */

.sidenav {
  display: none;
}

@media (max-width: 939px) {
  .sidenav {
    background: #5ebc88;
    display: block;
    padding: .75em 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .sidenav-list {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: 3.73vw;
    justify-content: center;
  }
  .sidenav-list-item:nth-child(n+2)::before {
    content: '|';
    display: inline-block;
    margin: 0 .25em 0 .5em;
  }
  .sidenav-list-item-icon {
    display: none;
  }
  .sidenav-list-item:has(.sidenav-list-item-icon--top) {
    display: none;
  }
  .sidenav-pagetop {
    height: 13.33vw;
    position: absolute;
    bottom: calc(100% + 3.33vw);
    right: 3.33vw;
    width: 13.33vw;
  }
}

@media (min-width: 940px) {

  .sidenav {
    display: block;
    position: fixed;
    left: .5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
  }

  .sidenav-list {
    display: flex;
    flex-direction: column;
  }

  .sidenav-list-item:nth-child(n+2) {
    border-top: 1px solid #5ebc88;
  }

  .sidenav-list-item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 8px;
    color: #333333;
    transition: opacity 0.2s;
  }

  .sidenav-list-item-link:hover {
    opacity: 0.6;
  }

  .sidenav-list-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: 62%;
    background-position: center;
  }

  .sidenav-list-item-icon--opencampus {
    /* background-color: #43a047;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E"); */
  }

  .sidenav-list-item-icon--exam {
    /* background-color: #fb8c00;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cline x1='9' y1='9' x2='15' y2='9'/%3E%3Cline x1='9' y1='13' x2='15' y2='13'/%3E%3Cline x1='9' y1='17' x2='12' y2='17'/%3E%3C/svg%3E"); */
  }

  .sidenav-list-item-icon--pamphlet {
    /* background-color: #ef6c00;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E"); */
  }

  .sidenav-list-item-icon--access {
    /* background-color: #1565c0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); */
  }

  .sidenav-list-item-icon--top {
    /* background-color: #aaaaaa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E"); */
  }

  .sidenav-list-item-text {
    font-size: 1.4rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.1em;
    color: #555555;
    white-space: nowrap;
    line-height: 1;
  }

}

/* =========================================
   ニュース
   ========================================= */

.news {
  padding: 56px 0 64px;
}

.news-inner {
  padding: 0 20px;
}

.news-heading {
  text-align: center;
  margin-bottom: 32px;
}

.news-heading-sub {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #888888;
  margin-bottom: 6px;
}

.news-heading-main {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ①重要なお知らせ（SP: 縦積み） */

.news-important {
  background-color: #f7edf0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
  padding: 0 20px 32px;
}

.news-important-label {
  background-color: #f7edf0;
  padding: 20px;
  text-align: center;
}

.news-important-label-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #c75661;
  margin-bottom: 8px;
}

.news-important-label-link {
  font-size: 1.2rem;
  color: #2c364b;
  border-bottom: 1px solid rgba(44, 54, 75, 0.4);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.news-important-label-link:hover {
  opacity: 0.7;
}

.news-important-list-item {
  border-top: 1px solid #e0d8d7;
}

.news-important-list-item:last-child {
  border-bottom: 1px solid #e0d8d7;
}

.news-important-list-item-link {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 16px 20px;
  transition: background-color 0.2s;
}

.news-important-list-item-link:hover {
  background-color: #ede5e4;
}

.news-important-list-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 100%;
}

.news-important-list-item-date {
  font-size: 1.2rem;
  color: #6a7a9c;
  white-space: nowrap;
}

.news-important-list-item-tag {
  background-color: #c75661;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.news-important-list-item-title {
  flex: 1;
  min-width: 0;
  font-size: 1.3rem;
  color: #333333;
  line-height: 1.6;
}

.news-important-list-item-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c364b' stroke-width='2'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
}

/* ②バナーエリア（SP: 1列） */

.news-banner-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.news-banner-list-item-link {
  display: block;
}

.news-banner-list-item-img {
  background-color: #2a2a2a;
  margin-bottom: 12px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.news-banner-list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.news-banner-list-item-link:hover .news-banner-list-item-img img {
  transform: scale(1.04);
}

.news-banner-list-item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.news-banner-list-item-tag {
  font-size: 1.1rem;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.news-banner-list-item-tag--news {
  background-color: #5ebc88;
}

.news-banner-list-item-tag--event {
  background-color: #1565c0;
}

.news-banner-list-item-date {
  font-size: 1.3rem;
  color: #2c364b;
}

.news-banner-list-item-title {
  font-size: 1.5rem;
  line-height: 1.6;
}

/* ニュース一覧ボタン */

.news-btn {
  text-align: center;
}

.news-btn-link {
  box-shadow: 3px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  background-color: #5ebc88;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 14px 48px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  transition: background-color 0.2s;
  width: 100%;
}

.news-btn-link:hover {
  opacity: .7;
}

@media (min-width: 940px) {

  .news {
    padding: 80px 0 96px;
  }

  .news-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .news-heading {
    margin-bottom: 44px;
  }

  .news-heading-sub {
    font-size: 1.2rem;
  }

  .news-heading-main {
    font-size: 4.0rem;
  }

  /* ①重要なお知らせ PC: 横並び */

  .news-important {
    display: flex;
    align-items: stretch;
    margin-bottom: 44px;
    padding: 20px 24px;
  }

  .news-important-label {
    border-right: 1px solid #c75661;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 24px;
    padding-top: 0;
    padding-bottom: 0;
    justify-content: center;
    gap: 6px;
  }

  .news-important-label-title {
    margin-bottom: 0;
  }

  .news-important-list {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .news-important-list-item:first-child {
    border-top-width: 0;
  }

  .news-important-list-item:last-child {
    border-bottom-width: 0;
  }
  
  .news-important-list-item-link {
    flex-wrap: nowrap;
    align-items: center;
    padding: 12px 8px 12px 28px;
  }

  .news-important-list-item-tag {
    border-radius: 20px;
    font-size: 1.4rem;
    line-height: 1.3;
    padding-top: 2px;
  }

  .news-important-list-item-date {
    font-size: 1.4rem;
  }

  .news-important-list-item-title {
    flex: 1;
    width: auto;
    font-size: 1.8rem;
  }

  .news-important-list-item-meta {
    width: auto;
  }

  /* ②バナーエリア PC: 4列 */

  .news-banner-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 44px;
  }

  .news-banner-list-item-tag {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .news-banner-list-item-date {
    font-size: 1.4rem;
  }
  
  .news-banner-list-item-title {
    font-size: 1.6rem;
  }

    /* ニュース一覧ボタン PC */
  .news-btn-link {
    width: min(350px, 32%);
  }
}

/* =========================================
   インスタグラム
   ========================================= */

.instagram {
  background-color: #eef1f9;
  border-radius: 8px;
  margin: 0 auto;
  padding: 24px 0 0;
  width: 93%;
}

.instagram-inner {
  padding: 0 20px;
}

.instagram-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 24px;
}

.instagram-heading-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #333333;
}

.instagram-heading-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333333'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.instagram-heading-follow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  color: #333333;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.instagram-heading-follow:hover {
  opacity: 0.7;
}

.instagram-heading-follow-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c75661' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.instagram-embed {
  min-height: 240px;
}

@media (min-width: 940px) {

  .instagram {
    border-radius: 12px;
    padding: 64px 0 72px;
    width: 95%;
    }

  .instagram-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .instagram-heading {
    flex-direction: row;
    margin-bottom: 32px;
  }

  .instagram-heading-title {
    font-size: 3.5rem;
  }

  .instagram-heading-icon {
    width: 35px;
    height: 35px;
    margin-top: 7px;
  }

  .instagram-heading-follow {
    font-size: 1.8rem;
  }

  .instagram-heading-follow-icon {
    width: 18px;
    height: 18px;
  }

  .instagram-embed {
    min-height: 400px;
  }

}

/* =========================================
   学科紹介
   ========================================= */

.department {
  padding: 64px 0 80px;
}

.department-inner {
  padding: 0 20px;
}

.department-heading {
  text-align: center;
  margin-bottom: 32px;
}

.department-heading-main {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2c364b;
  margin-bottom: 8px;
}

.department-heading-sub {
  font-size: 1.3rem;
  color: #6a7a9c;
  letter-spacing: 0.05em;
}

/* 学科タブ（吹き出し型） */

.department-tab {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 14px;
  row-gap: 6px;
  background-color: #ffffff;
  border: 2px solid #c2d6e1;
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 26px;
  margin-bottom: 32px;
  justify-content: center;
}

/* 「New!」手書き風ラベル */
.department-tab-new {
  background: #ffffff;
  width: auto;
  height: 41px;
  content: '';
  position: absolute;
  top: -21px;
  left: 10px;
  font-style: italic;
  font-weight: 700;
  color: #e84040;
  font-size: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
}

/* 吹き出しの下向き三角 */
.department-tab::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: calc(50% - 6px);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 13px solid #c2d6e1;
}
/* 重ねる白い三角（内側・背景色） */
.department-tab::before {
  content: '';
  position: absolute;
  bottom: -10px; /* afterより少し上に */
  left: calc(50% - 5px); /* 少し内側に */
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 11px solid #ffffff; /* 背景色に合わせる */
  z-index: 1;
}

.department-tab-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 2.0rem;
  font-weight: 700;
  color: #2c364b;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.3;
}

.department-tab-btn::before {
  content: none;
}

.department-tab-btn-icon {
  display: none;
}

.department-tab-note {
  font-size: 1.2rem;
  color: #333333;
  background: linear-gradient(transparent 58%, #fef08a 58%);
  padding: 0 2px;
  line-height: 1.9;
  width: 100%;
}

/* カードリスト（SP: 1列） */

.department-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.department-list-item {
  background-color: #ffffff;
  border-style: solid;
  border-width: 2px;
  border-radius: 12px;
  padding: 24px;
}
.department-list-item:nth-child(1) {
  border-color: #c2d6e1;
}

.department-list-item:nth-child(2) {
  border-color: #e9b8cd;
}

.department-list-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.department-list-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: 62%;
  background-position: center;
}

.department-list-item-name {
  font-size: 2.1rem;
  font-weight: 700;
  color: #333333;
}

.department-list-item-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.department-list-item-img img {
  width: 100%;
  height: auto;
  display: block;
}

.department-list-item-text {
  font-size: 1.3rem;
  color: #2c364b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.department-list-item-course {
  margin-bottom: 20px;
}

.department-list-item-course-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 1.3rem;
  color: #333333;
  transition: color 0.2s;
}

.department-list-item-course-link::before {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d18b94' stroke-width='2.5'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.department-list-item-course-link--pink::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f092b5' stroke-width='2.5'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}
.department-list-item-course-link--blue::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235491cd' stroke-width='2.5'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}
.department-list-item-course-link--green::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386c695' stroke-width='2.5'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}
.department-list-item-course-link--orange::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5a83f' stroke-width='2.5'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

.department-list-item-course-link:hover {
  color: #26a69a;
}

.department-list-item-course-tag {
  background-color: #c75661;
  color: #ffffff;
  font-size: 1.0rem;
  padding: 2px 10px;
  border-radius: 10px;
  margin-left: 1em;
  white-space: nowrap;
}

.department-list-item-course-tag--year3 {
  background-color: #fce4ec;
  color: #c62828;
}

.department-list-item-course-tag--year2 {
  background-color: #e0f2f1;
  color: #00695c;
}

.department-list-item-instagram {
  display: block;
  width: 26px;
  height: 26px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232c364b'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 940px) {

  .department {
    padding: 80px 0 100px;
  }

  .department-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .department-heading {
    margin-bottom: 40px;
  }

  .department-heading-main {
    font-size: 4.0rem;
  }

  .department-tab {
    border-width: 4pt;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    padding: 18px 32px;
    border-radius: 12px;
    margin-bottom: 44px;
    width: 48.8%;
  }

  /* 吹き出しの下向き三角 */
  .department-tab::after {
    bottom: -17px;
  }
  /* 重ねる白い三角（内側・背景色） */
  .department-tab::before {
    bottom: -8px; /* afterより少し上に */
  }

  .department-tab-btn {
    font-size: 2.4rem;
  }

  .department-tab-note {
    font-size: 1.2rem;
    white-space: nowrap;
    width: auto;
  }

  /* PC: 2列グリッド */

  .department-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .department-list-item {
    padding: 28px;
    position: relative;
  }

  .department-list-item:nth-child(1) {
    border-width: 4pt;
  }

  .department-list-item:nth-child(2) {
    border-width: 4pt;
  }
  
  .department-list-item-text {
    font-size: 1.6rem;
  }

  .department-list-item-name {
    font-size: 3.5rem;
  }

  .department-list-item-course {
    margin-bottom: 0;
  }

.department-list-item-course-link {
    font-size: 1.6rem;
  }

  .department-list-item-course-tag {
    font-size: 1.2rem;
    border-radius: 22px;
    padding-top: 0;
  }
  .department-list-item-instagram {
    position: absolute;
    right: 28px;
    bottom: 28px;
  }

}

/* =========================================
   本学の魅力
   ========================================= */

.charm {
  padding: 56px 0 64px;
}

.charm-inner {
  padding: 0 20px;
}

.charm-heading {
  text-align: center;
  margin-bottom: 28px;
}

.charm-heading-main {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #2c364b;
  margin-bottom: 10px;
}

.charm-heading-sub {
  font-size: 1.6rem;
  color: #6a7a9c;
  letter-spacing: 0.05em;
}

.charm-img {
  margin-bottom: 36px;
}

.charm-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.charm-img video {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* SP: スライダー */

.charm-list {
  list-style: none;
  position: relative;
}
.slick-dotted.slick-slider.charm-list {
  margin-bottom: 80px;
}

.charm-list-item {
  text-align: center;
  padding: 8px 32px 16px;
  outline: none;
}

/* SP: スライダー 矢印 */

.charm-list .slick-prev,
.charm-list .slick-next {
  width: 24px;
  height: 40px;
  z-index: 1;
  top: 36%;
}

.charm-list .slick-prev {
  left: -6px;
}

.charm-list .slick-next {
  right: -6px;
}

.charm-list .slick-prev::before {
  content: '‹';
  color: #aaaaaa;
  font-size: 8rem;
  opacity: 1;
  line-height: 1;
}

.charm-list .slick-next::before {
  content: '›';
  color: #aaaaaa;
  font-size: 8rem;
  opacity: 1;
  line-height: 1;
}

/* SP: スライダー ドット（pickup と同スタイル） */

.charm-list .slick-dots {
  bottom: -32px;
  text-align: center;
}

.charm-list .slick-dots li {
  margin-left: 3px;
  margin-right: 3px;
  width: 3.4vw;
}

.charm-list .slick-dots li button::before {
  background-color: #cbcbcb;
  border-radius: 4px;
  content: '';
  opacity: 1;
  height: 1vw;
  width: 100%;
}

.charm-list .slick-dots li.slick-active {
  width: 7.15vw;
}

.charm-list .slick-dots li.slick-active button::before {
  background-color: #6a7a9c;
  opacity: 1;
}

.charm-list-item-point {
  font-size: 1.1rem;
  color: #2c364b;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.charm-list-item-point::after,
.charm-list-item-title::after {
  content: '';
  display: block;
  margin: .75em auto 0;
  height: 1px;
  width: 30px;
}

.charm-list-item-title::after {
  margin-top: .25em;
}

.charm-list-item--01 .charm-list-item-point::after,
.charm-list-item--01 .charm-list-item-title::after {
  background-color: #e5a83f;
}

.charm-list-item--02 .charm-list-item-point::after,
.charm-list-item--02 .charm-list-item-title::after {
  background-color: #87c796;
}

.charm-list-item--03 .charm-list-item-point::after,
.charm-list-item--03 .charm-list-item-title::after {
  background-color: #cb7f46;
}

.charm-list-item--04 .charm-list-item-point::after,
.charm-list-item--04 .charm-list-item-title::after {
  background-color: #f092b5;
}

.charm-list-item--05 .charm-list-item-point::after,
.charm-list-item--05 .charm-list-item-title::after {
  background-color: #d18b94;
}

.charm-list-item--06 .charm-list-item-point::after,
.charm-list-item--06 .charm-list-item-title::after {
  background-color: #c75661;
}

.charm-list-item-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.charm-list-item-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.charm-list-item-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c364b;
  margin-bottom: 8px;
}

.charm-list-item-text {
  font-size: 1.2rem;
  color: #2c364b;
  line-height: 1.7;
}

.charm-btn-wrap {
  text-align: center;
}

.charm-btn {
  box-shadow: 3px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  background-color: #5ebc88;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 14px 48px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  width: 100%;
}

.charm-btn:hover {
  opacity: 0.7;
}

@media (min-width: 940px) {

  .charm {
    padding: 80px 0 96px;
  }

  .charm-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .charm-heading {
    margin-bottom: 44px;
  }

  .charm-heading-main {
    font-size: 4.0rem;
    letter-spacing: 0.28em;
    margin-bottom: 14px;
  }

  .charm-heading-sub {
    font-size: 1.5rem;
  }

  .charm-img {
    margin-bottom: 56px;
  }

  .charm-img img {
    border-radius: 8px;
  }

  .charm-img video {
    border-radius: 8px;
  }

  /* PC: 3×2グリッド（縦線・横線区切り） */

  .charm-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 56px;
  }

  .charm-list-item {
    margin-top: 44px;
    margin-bottom: 36px;
    padding: 0 24px;
    border-right: 1px dashed #c8c9ca;
  }

  /* 各行の最終列（3列目）: 右ボーダーなし */
  .charm-list-item:nth-child(3n) {
    border-right: none;
  }

  /* 2行目（4〜6番目）: 下ボーダーなし */
  .charm-list-item:nth-child(n + 4) {
    border-bottom: none;
  }

  .charm-list-item-point {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .charm-list-item-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 22px;
  }

  .charm-list-item-title {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }

  .charm-list-item-text {
    font-size: 1.3rem;
  }

  .charm-btn {
    width: min(350px, 32%);
    padding: 14px 72px;
    font-size: 1.5rem;
  }

}

/* =========================================
   入試情報
   ========================================= */

.admission {
  padding: 56px 0 64px;
}

.admission-inner {
  padding: 0 20px;
}

/* 見出し */

.admission-heading {
  text-align: center;
  margin-bottom: 28px;
}

.admission-heading-main {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #2c364b;
  margin-bottom: 10px;
}

.admission-heading-sub {
  font-size: 1.3rem;
  color: #6a7a9c;
  letter-spacing: 0.05em;
}

/* バナー */

.admission-banner {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f0f2f5;
}

.admission-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* メインコンテンツ（SP: 縦積み・順序制御） */

.admission-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* SP: セレクト（上）→ 詳細（中）→ ナビ（下）の順序 */

.admission-select-wrap {
  order: 1;
  position: relative;
}

.admission-select-wrap::after {
  content: '▼';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #aaaaaa;
  font-size: 1.0rem;
}

.admission-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 1px solid #dde0e6;
  border-radius: 8px;
  padding: 14px 44px 14px 16px;
  font-size: 1.4rem;
  color: #333333;
  background-color: #ffffff;
  cursor: pointer;
  font-family: inherit;
}

.admission-detail {
  order: 2;
}

.admission-nav {
  order: 3;
}

/* ナビリスト */

.admission-nav-list {
  list-style: none;
  overflow: hidden;
  margin-bottom: 16px;
}

.admission-nav-item {
  border-bottom: 1px solid #dde0e6;
}

.admission-nav-item:last-child {
  border-bottom: none;
}

.admission-nav-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: #2c364b;
  border-left: 4px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
  line-height: 1.4;
}

.admission-nav-btn:hover {
  background-color: #f5f7fa;
}

.admission-nav-item.is-active .admission-nav-btn {
  background-color: #edf4f1;
}
.admission-nav-item--01.is-active .admission-nav-btn {
  background-color:  rgba(97, 166, 130, 0.1);
}
.admission-nav-item--02.is-active .admission-nav-btn {
  background-color: rgba(123, 121, 174, 0.1);
}
.admission-nav-item--03.is-active .admission-nav-btn {
  background-color: rgba(204, 127, 70, 0.1);
}
.admission-nav-item--04.is-active .admission-nav-btn {
  background-color: rgba(237, 160, 177, 0.1);
}
.admission-nav-item--05.is-active .admission-nav-btn {
  background-color: rgba(244, 192, 94, 0.1);
}
.admission-nav-item--06.is-active .admission-nav-btn {
  background-color: rgba(104, 165, 217, 0.1);
}

.admission-nav-btn::after {
  content: '›';
  margin-left: auto;
  font-size: 4.0rem;
  color: #aaaaaa;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -5px;
}

.admission-nav-item--01 .admission-nav-btn::after {
  color: #61a682;
}

.admission-nav-item--02 .admission-nav-btn::after {
  color: #7b79ae;
}

.admission-nav-item--03 .admission-nav-btn::after {
  color: #cc7f46;
}

.admission-nav-item--04 .admission-nav-btn::after {
  color: #eda0b1;
}

.admission-nav-item--05 .admission-nav-btn::after {
  color: #f4c05e;
}

.admission-nav-item--06 .admission-nav-btn::after {
  color: #68a5d9;
}

/* アクティブ時の左アクセントボーダー */

.admission-nav-item--01.is-active .admission-nav-btn {
  border-left-color: #61a682;
}

.admission-nav-item--02.is-active .admission-nav-btn {
  border-left-color: #7b79ae;
}

.admission-nav-item--03.is-active .admission-nav-btn {
  border-left-color: #cc7f46;
}

.admission-nav-item--04.is-active .admission-nav-btn {
  border-left-color: #eda0b1;
}

.admission-nav-item--05.is-active .admission-nav-btn {
  border-left-color: #f4c05e;
}

.admission-nav-item--06.is-active .admission-nav-btn {
  border-left-color: #68a5d9;
}


/* バッジ（アイテムごとに色設定） */

.admission-nav-badge {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  padding: 2px 10px 0;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.admission-nav-item--01 .admission-nav-badge {
  background-color: #61a682;
}

.admission-nav-item--02 .admission-nav-badge {
  background-color: #7b79ae;
}

.admission-nav-item--03 .admission-nav-badge {
  background-color: #cc7f46;
}

.admission-nav-item--04 .admission-nav-badge {
  background-color: #eda0b1;
}

.admission-nav-item--05 .admission-nav-badge {
  background-color: #f4c05e;
}

.admission-nav-item--06 .admission-nav-badge {
  background-color: #68a5d9;
}

/* CTAボタン */

.admission-nav-cta {
  text-align: center;
}

.admission-nav-cta-link {
  box-shadow: 3px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  background-color: #5ebc88;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 14px 48px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  width: 100%;
  text-align: center;
}

.admission-nav-cta-link:hover {
  opacity: 0.7;
}

/* 詳細コンテンツ */

.admission-panel {
  display: none;
}

.admission-panel.is-active {
  display: block;
}

/* パネルヘッダー */

.admission-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.admission-panel-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #2c364b;
  line-height: 1.4;
}
.admission-panel--01 .admission-panel-title {
  color: #61a682;
}
.admission-panel--02 .admission-panel-title {
  color: #7b79ae;
}
.admission-panel--03 .admission-panel-title {
  color: #cc7f46;
}
.admission-panel--04 .admission-panel-title {
  color: #eda0b1;
}
.admission-panel--05 .admission-panel-title {
  color: #f4c05e;
}
.admission-panel--06 .admission-panel-title {
  color: #68a5d9;
}

.admission-panel-badge {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 4px;
}

.admission-panel--01 .admission-panel-badge {
  background-color: #61a682;
}

.admission-panel--02 .admission-panel-badge {
  background-color: #7b79ae;
}
.admission-panel--03 .admission-panel-badge {
  background-color: #cc7f46;
}
.admission-panel--04 .admission-panel-badge {
  background-color: #eda0b1;
}
.admission-panel--05 .admission-panel-badge {
  background-color: #f4c05e;
}
.admission-panel--06 .admission-panel-badge {
  background-color: #68a5d9;
}

.admission-panel-desc {
  font-size: 1.3rem;
  color: #2c364b;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* パネル行（SP: ラベル上・内容下） */

.admission-panel-row {
  margin-bottom: 4px;
  margin-left: -20px;
  margin-right: -20px;
}

.admission-panel-row--gray .admission-panel-row-label {
  background-color: #dde1e8;
  padding: 10px 20px;
}

.admission-panel-row--gray .admission-panel-row-body {
  background-color: #f0f2f6;
  padding: 12px 20px;
}

.admission-panel--01 .admission-panel-row--gray .admission-panel-row-label,
.admission-panel--01 .admission-panel-row--gray .admission-panel-row-body {
  background-color:  rgba(97, 166, 130, 0.1);
}
.admission-panel--02 .admission-panel-row--gray .admission-panel-row-label,
.admission-panel--02 .admission-panel-row--gray .admission-panel-row-body {
  background-color: rgba(123, 121, 174, 0.1);
}
.admission-panel--03 .admission-panel-row--gray .admission-panel-row-label,
.admission-panel--03 .admission-panel-row--gray .admission-panel-row-body {
  background-color: rgba(204, 127, 70, 0.1);
}
.admission-panel--04 .admission-panel-row--gray .admission-panel-row-label,
.admission-panel--04 .admission-panel-row--gray .admission-panel-row-body {
  background-color: rgba(237, 160, 177, 0.1);
}
.admission-panel--05 .admission-panel-row--gray .admission-panel-row-label,
.admission-panel--05 .admission-panel-row--gray .admission-panel-row-body {
  background-color: rgba(244, 192, 94, 0.1);
}
.admission-panel--06 .admission-panel-row--gray .admission-panel-row-label,
.admission-panel--06 .admission-panel-row--gray .admission-panel-row-body {
  background-color: rgba(104, 165, 217, 0.1);
}


.admission-panel-row:not(.admission-panel-row--gray) .admission-panel-row-label {
  padding: 10px 14px 4px;
}

.admission-panel-row:not(.admission-panel-row--gray) .admission-panel-row-body {
  padding: 0 14px 12px;
}

.admission-panel-row-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c364b;
}
.admission-panel--01 .admission-panel-row-label {
  color:  rgba(97, 166, 130, 1);
}
.admission-panel--02 .admission-panel-row-label {
  color: rgba(123, 121, 174, 1);
}
.admission-panel--03 .admission-panel-row-label {
  color: rgba(204, 127, 70, 1);
}
.admission-panel--04 .admission-panel-row-label {
  color: rgba(237, 160, 177, 1);
}
.admission-panel--05 .admission-panel-row-label {
  color: rgba(244, 192, 94, 1);
}
.admission-panel--06 .admission-panel-row-label {
  color: rgba(104, 165, 217, 1);
}

.admission-panel-row-text {
  font-size: 1.3rem;
  color: #2c364b;
  line-height: 1.7;
}

.admission-panel-row-note {
  font-size: 1.2rem;
  color: #888888;
  margin-top: 8px;
}

/* 日程 */

.admission-panel-schedule {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admission-panel-schedule-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
}

.admission-panel-schedule-term {
  font-size: 1.3rem;
  color: #2c364b;
  flex-shrink: 0;
}

.admission-panel-schedule-desc {
  font-size: 1.3rem;
  color: #333333;
}

/* 選考方法 */

.admission-panel-method-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admission-panel-method-item {
  font-size: 1.3rem;
  color: #555555;
  padding-left: 16px;
  position: relative;
}

.admission-panel-method-item::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #5ebc88;
}

/* 出願書類 */

.admission-panel-doc-list {
  list-style: none;
  counter-reset: doc-counter;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.admission-panel-doc-item {
  padding-left: 20px;
  position: relative;
  counter-increment: doc-counter;
}

.admission-panel-doc-item::before {
  content: counter(doc-counter) '.';
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  color: #555555;
}

.admission-panel-doc-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 4px;
}

.admission-panel-doc-text {
  font-size: 1.3rem;
  color: #555555;
  line-height: 1.6;
}

.admission-panel-doc-link {
  color: #c75661;
  text-decoration: underline;
}

@media (min-width: 940px) {

  .admission {
    padding: 80px 0 96px;
  }

  .admission-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .admission-heading {
    margin-bottom: 48px;
  }

  .admission-heading-main {
    font-size: 4.0rem;
    letter-spacing: 0.28em;
    margin-bottom: 14px;
  }

  .admission-heading-sub {
    font-size: 1.5rem;
  }

  .admission-banner {
    margin-bottom: 52px;
    border-radius: 8px;
  }

  /* PC: セレクト非表示・order リセット */

  .admission-select-wrap {
    display: none;
  }

  .admission-nav {
    order: unset;
  }

  .admission-detail {
    order: unset;
  }

  /* PC: 2カラムレイアウト（ナビ左・詳細右） */

  .admission-main {
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
  }

  .admission-nav {
    flex: 0 0 290px;
  }

  .admission-nav-list {
    margin-bottom: 20px;
  }

  .admission-nav-btn {
    padding: 14px 16px;
    font-size: 1.4rem;
    border-left: 4px solid transparent;
    transition: background-color 0.2s, border-left-color 0.2s;
  }

  /* 矢印（›）を右端に表示 */

  .admission-nav-btn::after {
    font-size: 4.0rem;
  }

  .admission-nav-cta-link {
    width: 100%;
    padding: 14px 20px;
  }

  /* 詳細 */

  .admission-detail {
    flex: 1;
    min-width: 0;
  }

  .admission-panel-title {
    font-size: 2.7rem;
  }

  .admission-panel-desc {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .admission-panel-badge {
    font-size: 1.4rem;
  }

  /* PC: パネル行を「ラベル左・内容右」の2カラムグリッドに */

  .admission-panel-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .admission-panel-row--gray .admission-panel-row-label {
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
  }

  .admission-panel-row--gray .admission-panel-row-body {
    padding: 18px 20px;
  }

  .admission-panel-row:not(.admission-panel-row--gray) .admission-panel-row-label {
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
  }

  .admission-panel-row:not(.admission-panel-row--gray) .admission-panel-row-body {
    padding: 18px 20px;
  }

  .admission-panel-row-label {
    font-size: 1.6rem;
  }

  .admission-panel-row-text {
    font-size: 1.4rem;
  }

  /* 日程の2カラム */

  .admission-panel-schedule-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
    flex-wrap: unset;
    padding: 3px 0;
  }

  .admission-panel-schedule-term {
    font-size: 1.4rem;
  }

  .admission-panel-schedule-desc {
    font-size: 1.4rem;
  }

  .admission-panel-method-item {
    font-size: 1.4rem;
  }

  .admission-panel-doc-name {
    font-size: 1.4rem;
  }

  .admission-panel-doc-text {
    font-size: 1.4rem;
  }

}

/* =========================================
   バナー
   ========================================= */

/* SP: リンクバナー 1列 */

.banner-links {
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 32px;
  padding: 0 20px;
}

.banner-links-item {
  display: block;
  overflow: hidden;
  transition: opacity 0.2s;
}

.banner-links-item:hover {
  opacity: 0.85;
}

.banner-links-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* SP: 広告バナー 1列 */

.banner-ads {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
  padding: 56px 20px;
}

.banner-ads-item {
  display: block;
  transition: opacity 0.2s;
}

.banner-ads-item:hover {
  opacity: 0.85;
}

.banner-ads-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (min-width: 940px) {

  /* PC: リンクバナー 4列 */

  .banner-links {
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    max-width: 1190px;
  }

  .banner-links-item:nth-child(n+2) {
    margin-top: 0;
  }

  /* PC: 広告バナー 2列・中央寄せ */

  .banner-ads {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 80px 30px;
    max-width: 900px;
    margin: 0 auto;
  }

  .banner-ads-item {
    max-width: 420px;
  }

  .banner-ads-item img {
    border-radius: 6px;
  }

}

/* =========================================
   フッター
   ========================================= */

.footer {
  background-color: #f4f7f9;
  border-top: 1px solid #e0e0e0;
}

.footer-inner {
  padding: 40px 20px 0;
  display: flex;
  flex-direction: column;
}

/* フッターヘッド */

.footer-head {
  padding-bottom: 24px;
  text-align: center;
}

.footer-head-logo {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  width: 54.4%;
}

.footer-head-logo-name {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c364b;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-bottom: 4px;
}

.footer-head-logo-sub {
  font-size: 1.1rem;
  color: #888888;
  letter-spacing: 0.2em;
}

.footer-head-catch {
  font-size: 1.8rem;
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  display: inline-block;
}
.footer-head-catch-sp {
  order: 3;
  text-align: center;
}

/* キャッチコピーの下グラデーションライン（mv-catch-line と同じ） */

.footer-head-catch::after {
  content: '';
  display: block;
  height: 3px;
  margin-top: 20px;
  background: linear-gradient(
    to right,
    #86C695 0%, #86C695 16.6%,
    #E5A83F 16.6%, #E5A83F 33.3%,
    #84BAE5 33.3%, #84BAE5 50%,
    #f092b5 50%, #f092b5 66.6%,
    #c75661 66.6%, #c75661 83.3%,
    #d18b94 83.3%, #d18b94 100%
  );
}

/* 関連（SP: SNSより前 order:2） */
.footer-connection {
  margin: 0 auto 18px;
  order: 2;
  width: 56.6%;
}

/* グループなど（SP: SNSより前 order:2） */
.footer-connection-group {
  padding-bottom: 24px;
  order: 3;
}
.footer-connection-group-each .footer-nav-col-list {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.footer-connection-group-each .footer-nav-col-item {
  margin-right: 1em;
  padding: 0;
}
.footer-connection-group-each .footer-nav-col-item:last-child {
  margin-right: 0;
}
/* SNS（SP: ナビより前 order:4） */

.footer-sns {
  order: 4;
  padding: 24px 0;
  text-align: center;
}

.footer-sns-label {
  font-size: 1.2rem;
  color: #2c364b;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-sns-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.2s;
}

.footer-sns-link:hover {
  opacity: 0.7;
}

.footer-sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ナビゲーション（SP: アコーディオン・order:3） */

.footer-nav {
  display: none;
  order: 3;
}

.footer-nav-col {
  border-bottom: 1px solid #e0e0e0;
}

.footer-nav-col-head {
  margin: 0;
}
.footer-nav-col-head:nth-child(n+2) {
  margin-top: 32px;
}

.footer-nav-col-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c364b;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.footer-nav-col-btn::after {
  content: '›';
  font-size: 2.0rem;
  color: #aaaaaa;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.2s;
}
.footer-connection-group .footer-nav-col-btn::after {
  content: '';
}

.footer-nav-col-btn[aria-expanded="true"]::after {
  transform: rotate(90deg);
}

/* SP: :has() でリスト表示制御 */

.footer-nav-col-list {
  list-style: none;
  padding: 0 0 16px;
}
.footer-nav .footer-nav-col-list {
  display: none;
}
.footer-nav .footer-nav-col:has(.footer-nav-col-btn[aria-expanded="true"]) .footer-nav-col-list {
  display: block;
}

.footer-nav-col-item {
  padding: 5px 0;
}
.footer-nav-col-item::before {
  content: '-';
  margin-right: 10px;
}
.footer-connection-group .footer-nav-col-item::before {
  content: none;
}
.footer-nav-col-link {
  font-size: 1.3rem;
  color: #2c364b;
  text-decoration: none;
  line-height: 1.6;
}

.footer-nav-col-link:hover {
  text-decoration: underline;
}

/* ボトム（order:4） */

.footer-bottom {
}
.footer-bottom-inner {
  order: 4;
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 20px;
  justify-content: center;
  width: 100%;
}

.footer-bottom-links-link {
  font-size: 1.2rem;
  color: #2c364b;
  text-decoration: underline;
}

.footer-bottom-links-link:hover {
  text-decoration: underline;
}

.footer-bottom-copy {
  background-color: #ffffff;
  border-top: 2px solid #7988a6;
  font-size: 1.1rem;
  color: #2c364b;
  padding: 12px 20px 60px;
  width: 100%;
}

@media (min-width: 940px) {

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 30px 0;
    display: block;
  }

  /* PC: ヘッド 2カラム */

  .footer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 52px;
    text-align: left;
  }

  .footer-head-logo {
    margin-left: 0;
    margin-bottom: 0;
    width: min(277px, 18%);
  }

  .footer-head-logo-name {
    font-size: 3.6rem;
  }

  .footer-head-logo-sub {
    font-size: 1.3rem;
  }

  .footer-head-catch {
    font-size: 1.8rem;
    text-align: right;
  }

  /* PC: ナビ 6カラムグリッド */

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0 20px;
    padding: 40px 0 48px;
    order: unset;
  }

  /* カラム07・08 を 6列目に積み重ねる */

  .footer-nav-col--07,
  .footer-nav-col--08 {
    grid-column: 6;
  }

  .footer-nav-col--08 {
    margin-top: 24px;
  }

  .footer-nav-col {
    border-bottom: none;
  }

  .footer-nav-col-btn {
    font-size: 1.3rem;
    pointer-events: none;
    cursor: default;
    padding: 0 0 12px;
  }

  .footer-nav-col-btn::after {
    display: none;
  }

  .footer-nav-col-list {
    padding: 0;
  }
  .footer-nav .footer-nav-col-list {
    display: block;
  }
  .footer-nav-col-item {
    padding: 3px 0;
  }
  .footer-nav-col-item::before {
    content: '';
    margin-right: 0;
  }
  
  .footer-nav-col-link {
    font-size: 1.2rem;
  }

  /* 関連（SP: ナビより前 order:2） */
  .footer-connection {
    margin: 0 0 28px;
    width: 20%;
  }
  
  /* グループなど（SP: SNSより前 order:3） */
  .footer-connection-group {
    padding-bottom: 14px;
  }
  .footer-connection-group-each {
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
  }
  .footer-connection-group-each:nth-child(n+2) {
    margin-top: 12px;
  }
  .footer-connection-group-each .footer-nav-col-head {
    width: 90px;
  }
  .footer-connection-group-each .footer-nav-col-btn {
    padding-bottom: 0;
  }
  .footer-connection-group-each .footer-nav-col-item {
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-connection-group-each .footer-nav-col-item a {
    display: block;
  }
  
  /* PC: SNS ナビ下・左寄せ */

  .footer-sns {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 0;
    text-align: left;
    order: unset;
  }

  .footer-sns-label {
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 500;
    color: #555555;
  }

  .footer-sns-list {
    justify-content: flex-start;
  }

  .footer-sns-link {
    width: 36px;
    height: 36px;
  }

  /* PC: ボトム 2カラム */

  .footer-bottom {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
  }
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px 24px;
    text-align: left;
    order: unset;
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-bottom-links {
    padding: 0;
    justify-content: flex-start;
  }

  .footer-bottom-copy {
    padding: 0;
    border-top: 0;
    text-align: right;
  }

  
}

/* =========================================
   現在リニューアル中です。しばらくお待ちください。
   ========================================= */
.preparation {
  text-align: center;
}

.preparation-heading-main {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2c364b;
  margin: 150px 20px;
}

@media (min-width: 940px) {
  .preparation-heading-main {
    font-size: 4.0rem;
  }
}

