@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none !important;
}

a:hover {
  opacity: 0.7;
}

p {
  line-height: 1.8em;
}

.tel {
  pointer-events: none;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 12rem;
}

/*-------------------------
** 共通変数・ベース
---------------------------*/
:root {
  --blue: #2699bf;
  --navy: #1a356d;
  --navy-d: #0e2540;
  --ink: #1a2b42;
  --line: #e3e8ef;
  --bg-soft: #f4f8fc;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(to right, rgba(237, 244, 248, 0.8) 20%, rgba(255, 239, 219, 0.8) 100%);
}

/* 英語見出し・日付などに付与するフォント指定 */
.font-en {
  font-family: "Alumni Sans", sans-serif;
}

.skip-link {
  position: absolute;
  top: -6rem;
  left: 1rem;
  z-index: 1000;
  padding: 1rem 1.6rem;
  background: var(--navy);
  color: #fff;
  font-size: 1.4rem;
  border-radius: 0 0 0.6rem 0.6rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  opacity: 1;
}

/*-------------------------
** header
---------------------------*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 188rem;
  height: 10rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: 0.3s;
}
.header__logo-img {
  width: auto;
  height: 5rem;
  max-width: none;
}
.header__toggle {
  display: none;
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.gnav__item--btn {
  margin-left: 0.4rem;
}
.gnav__item--btn + .gnav__item--btn {
  margin-left: -1rem;
}
.gnav__item--has-child {
  position: relative;
}
.gnav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}
.gnav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: #1a356d;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gnav__link:hover {
  color: var(--blue);
  opacity: 1;
}
.gnav__link:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
}
.gnav__caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.6rem solid currentColor;
  transition: transform 0.25s;
}
.gnav__item--has-child:hover .gnav__caret, .gnav__toggle[aria-expanded=true] .gnav__caret {
  transform: rotate(180deg);
}
.gnav__btn {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: 4.6rem;
  padding: 0 2.2rem;
  border-radius: 0.4rem;
  box-shadow: 0 0 0 0.15rem rgba(26, 53, 109, var(--header-fill, 0));
  font-size: 1.45rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.35s ease, box-shadow 0.2s;
}
.gnav__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.gnav__btn:hover {
  opacity: 1;
}
.gnav__btn:hover::before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.35s ease, opacity 0s;
}
.gnav__btn--outline {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 0 0 0.15rem rgba(215, 236, 242, var(--header-fill, 0));
}
.gnav__btn--outline::before {
  background: #d7ecf2;
}
.gnav__btn--fill {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}
.gnav__btn--fill::before {
  background: #102655;
}
.gnav__btn-icon {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/common/hd_mail_icon.png) center/contain no-repeat;
}

.subnav {
  position: absolute;
  top: 180%;
  left: 0;
  min-width: 34rem;
  background: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 1.4rem 3.2rem rgba(20, 49, 91, 0.14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.8rem);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
li + li .subnav__link {
  border-top: 1px solid var(--line);
}
.subnav__link {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 1.6rem 1.8rem 2.4rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  transition: color 0.3s;
}
.subnav__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, #395ead, #2699bf);
  opacity: 0;
  transition: opacity 0.7s;
}
.subnav__link::after {
  content: "";
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}
.subnav__link:hover {
  border-top-color: transparent;
  color: #fff;
  opacity: 1;
}
.subnav__link:hover::before {
  opacity: 1;
}
.subnav__link:hover::after {
  background-image: url(../img/common/arrow_icon_white.png);
}

.gnav__item--has-child:hover .subnav,
.gnav__item--has-child:focus-within .subnav,
.gnav__toggle[aria-expanded=true] + .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*-------------------------
** メインビジュアル
---------------------------*/
#main {
  position: relative;
}

.mv {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: transparent;
}
.mv__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 188rem;
  margin: 0 auto;
  padding: 8rem 7.5% 9rem;
}
.mv__body {
  position: relative;
  width: 45%;
  flex-shrink: 0;
}
.mv__bg {
  position: absolute;
  top: -8rem;
  left: 0;
  z-index: 0;
  font-family: "Alumni Sans", sans-serif;
  font-weight: 700;
  font-size: 65rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  user-select: none;
  text-box-trim: trim-start;
  text-box-edge: cap alphabetic;
}
@media screen and (max-width: 980px) {
  .mv__bg {
    font-size: 45rem;
  }
}
.mv__title {
  position: relative;
  z-index: 1;
  font-size: clamp(4rem, 2rem + 2.6vw, 6.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  width: fit-content;
  color: #1a356d;
  background-image: linear-gradient(128deg, #2699bf 0%, #1a356d 30%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv__lead {
  position: relative;
  z-index: 1;
  margin-top: 2.4rem;
  font-size: 2rem;
  font-weight: 500;
  color: #1a356d;
  letter-spacing: 0.1em;
}
.mv__btns {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 4rem;
}
.mv__btn {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25rem;
  height: 5.6rem;
  padding: 0 1rem;
  border-radius: 2px;
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.35s ease;
}
.mv__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mv__btn:hover {
  opacity: 1;
}
.mv__btn:hover::before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.35s ease, opacity 0s;
}
.mv__btn--fill {
  background: var(--navy);
  color: #fff;
}
.mv__btn--fill::before {
  background: #102655;
}
.mv__btn--outline {
  background: #fff;
  color: var(--navy);
  padding-right: 3.5rem;
}
.mv__btn--outline::before {
  background: #d7ecf2;
}
.mv__btn-arrow {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 3rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}
.mv__visual {
  position: relative;
  flex: 1;
  min-width: 0;
}
.mv__photos {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.mv__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.mv__photo {
  position: relative;
  z-index: 1;
  display: block;
  height: auto;
  border-radius: 0.4rem;
  background-color: #cdd9e6;
  background-size: cover;
  background-position: center;
  box-shadow: 0 1.6rem 4rem rgba(20, 49, 91, 0.16);
  animation: mv-photo-in 0.6s ease-out both;
}
.mv__photo--01 {
  width: 52.94%;
  aspect-ratio: 468/313;
  animation-delay: 0.2s;
  background-image: url(../img/top/mv01.png);
}
.mv__photo--04 {
  width: 52.94%;
  aspect-ratio: 468/313;
  animation-delay: 0.5s;
  background-image: url(../img/top/mv04.png);
}
.mv__photo--02 {
  width: 40.72%;
  aspect-ratio: 360/270;
  animation-delay: 0.8s;
  background-image: url(../img/top/mv02.png);
}
.mv__photo--03 {
  width: 40.72%;
  aspect-ratio: 360/271;
  z-index: 3;
  animation-delay: 1.1s;
  background-image: url(../img/top/mv03.png);
}
.mv__circle {
  position: absolute;
  top: -4rem;
  right: -4rem;
  z-index: 4;
  width: 11%;
  aspect-ratio: 1;
  background: url(../img/top/mv_circle.png) center/contain no-repeat;
  animation: mv-circle-fade 1s ease-out 1.6s both;
}
.mv__swoosh {
  position: absolute;
  left: 68%;
  top: 64%;
  width: 150%;
  aspect-ratio: 820.0082/322.67084;
  transform: translate(-50%, -50%);
  z-index: 2;
  overflow: visible;
  opacity: 0.85;
  pointer-events: none;
}
.mv__swoosh-path {
  stroke-dasharray: 1;
  stroke-dashoffset: -1;
  animation: mv-swoosh-draw 1.4s ease-out 0.2s forwards;
}

@keyframes mv-swoosh-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes mv-circle-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mv-photo-in {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mv__circle,
  .mv__photo {
    animation: none;
  }
  .mv__swoosh-path {
    animation: none;
    stroke-dashoffset: 0;
  }
}
/*-------------------------
** タブレット〜小型ノートPC（1200px以下）
**  横並びナビが収まらないためハンバーガー＋ドロワーに切り替え
---------------------------*/
@media screen and (max-width: 1200px) {
  .header__toggle {
    position: relative;
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    width: 4.6rem;
    height: 4.6rem;
    cursor: pointer;
  }
  .header__toggle span {
    display: block;
    width: 3rem;
    height: 0.3rem;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .header__toggle.is-open span:nth-child(1) {
    transform: translateY(1rem) rotate(45deg);
  }
  .header__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header__toggle.is-open span:nth-child(3) {
    transform: translateY(-1rem) rotate(-45deg);
  }
  body.is-nav-open {
    overflow: hidden;
  }
  .gnav {
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 8rem);
    height: calc(100dvh - 8rem);
    background: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }
  .gnav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .gnav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0 6rem;
  }
  .gnav__item {
    border-bottom: 1px solid var(--line);
  }
  .gnav__item--btn {
    margin-left: 0;
    border-bottom: none;
  }
  .gnav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2.2rem 4rem;
    font-size: 1.8rem;
  }
  .gnav__link::after {
    display: none;
  }
  .gnav__caret {
    border-top-color: var(--blue);
  }
  .gnav__btn {
    width: auto;
    height: 5.6rem;
    margin: 1.6rem 4rem 0;
    font-size: 1.6rem;
  }
  .subnav {
    position: static;
    transform: none;
    min-width: 0;
    max-height: 0;
    padding: 0;
    background: var(--bg-soft);
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .subnav::before {
    display: none;
  }
  .subnav__link {
    padding: 1.8rem 4rem 1.8rem 5.6rem;
    font-size: 1.6rem;
    border-top: 1px solid var(--line);
  }
  .gnav__item--has-child:hover .subnav,
  .gnav__item--has-child:focus-within .subnav {
    transform: none;
    max-height: 0;
  }
  .gnav__toggle[aria-expanded=true] + .subnav {
    max-height: 40rem;
    transform: none;
  }
}
/*-------------------------
** news（お知らせ・イベント）
---------------------------*/
.news {
  position: relative;
  overflow: hidden;
  padding: 6rem 4rem 6rem;
}
.news__inner {
  position: relative;
  z-index: 1;
  max-width: 168rem;
  margin: 0 auto;
  padding: 6rem 6rem 6.5rem;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(1.2rem);
  backdrop-filter: blur(1.2rem);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px 3px rgba(151, 222, 255, 0.2), 10px 10px 15px 0 rgba(0, 0, 0, 0.05);
}
.news__line {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  aspect-ratio: 2423.1428/484.6121;
  z-index: 0;
  opacity: 0.5;
  overflow: visible;
  pointer-events: none;
}
.news__line-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-width: 64;
}
.news.is-inview .news__line-path {
  animation: news-line-draw 1.6s ease-out forwards;
}
.news__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 6rem;
}
.news__en {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #2699bf;
}
.news__title {
  margin-top: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.news__body {
  position: relative;
  z-index: 1;
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 4%;
  align-items: stretch;
}
.news__meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.news__date {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b7a90;
}
.news__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1.2rem;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: #e7f1f8;
  color: var(--navy);
  white-space: nowrap;
}
.news {
  /* --- 左：最新1件 --- */
}
.news__feature {
  width: 48%;
  display: flex;
  border-radius: 4px;
}
.news__feature-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  box-shadow: 0 1.6rem 4rem rgba(20, 49, 91, 0.12);
  transition: box-shadow 0.35s ease;
}
.news__feature-link:hover {
  opacity: 1;
  box-shadow: 0 2.4rem 5.5rem rgba(20, 49, 91, 0.3);
}
.news__feature-link:hover .news__feature-thumb img {
  transform: scale(1.05);
}
.news__feature-link:hover .news__feature-content {
  background-position: 0% 0%;
}
.news__feature-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #cdd9e6;
}
.news__feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.news__feature-thumb--nothumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9edf1;
}
.news__feature-logo {
  display: block;
  width: 62%;
  max-width: 32rem;
  height: 55%;
  background: url(../img/common/logo.png) center/contain no-repeat;
}
.news__feature-content {
  position: relative;
  flex: 1;
  padding: 2.6rem 3rem 3.6rem;
  background-image: linear-gradient(135deg, #395ead 0%, #2699bf 50%, #395ead 100%);
  background-size: 200% 200%;
  background-position: 100% 100%;
  transition: background-position 0.6s ease;
}
.news__feature-content .news__date {
  color: #fff;
}
.news__feature-content .news__cat {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}
.news__feature-title {
  margin-top: 1.6rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.news__feature-excerpt {
  margin-top: 1.4rem;
  padding-right: 4rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}
.news__feature-arrow {
  position: absolute;
  right: 2.4rem;
  bottom: 2.6rem;
  width: 3.4rem;
  height: 3.4rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}
.news {
  /* --- 右：一覧 --- */
}
.news__list-wrap {
  width: 48%;
  display: flex;
  flex-direction: column;
  padding: 3rem 3.4rem 3rem;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1.2rem 3.4rem rgba(20, 49, 91, 0.06);
}
.news__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.news__tab {
  padding: 1rem 0.8rem;
  border-radius: 2px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  color: var(--navy);
  background: #e8f6fa;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.news__tab:hover {
  opacity: 1;
  background: #d3ecf3;
}
.news__tab.is-active {
  background: var(--navy);
  color: #fff;
}
.news__tab.is-active:hover {
  background: var(--navy);
}
.news__item {
  border-bottom: 1px solid var(--line);
}
.news__item-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0.4rem;
}
.news__item-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(to right, #395ead, #2699bf);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
.news__item-link:hover {
  opacity: 1;
}
.news__item-link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.news__item-body {
  flex: 1;
  min-width: 0;
}
.news__item-title {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}
.news__item-arrow {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-top: 0.2rem solid #1a356d;
  border-right: 0.2rem solid #1a356d;
  transform: rotate(45deg);
}
.news__more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: fit-content;
  margin: 2.6rem 0 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.news__more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.news__more:hover {
  opacity: 1;
}
.news__more:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
}
.news__more-arrow {
  width: 2.6rem;
  height: 2.6rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}

@keyframes news-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .news__line-path {
    animation: none;
    stroke-dashoffset: 0;
  }
}
@media screen and (max-width: 980px) {
  .news__body {
    flex-direction: column;
    gap: 4rem;
    max-width: 58rem;
  }
  .news__feature,
  .news__list-wrap {
    width: 100%;
  }
}
/*-------------------------
** about（校友会とは）
---------------------------*/
.about {
  position: relative;
  overflow: hidden;
  padding: 6rem 4rem 10rem;
}
.about__line {
  position: absolute;
  bottom: 0;
  left: 40%;
  transform: translateX(-50%);
  width: 150%;
  aspect-ratio: 2625.7177/689.6704;
  z-index: 0;
  opacity: 0.28;
  overflow: visible;
  pointer-events: none;
}
.about__line-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-width: 70;
}
.about.is-inview .about__line-path {
  animation: about-line-draw 1.8s ease-out forwards;
}
.about__inner {
  position: relative;
  z-index: 1;
  max-width: 148rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media screen and (min-width: 1450px) {
  .about__body {
    padding-left: 20%;
    padding-right: 3%;
  }
}
@media screen and (min-width: 981px) and (max-width: 1449px) {
  .about__body {
    padding-left: 10%;
  }
}
.about {
  /* --- 左：テキスト --- */
}
.about__en {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2699bf;
}
.about__title {
  margin-top: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.about__lead {
  margin-top: 3.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: var(--navy);
  word-break: keep-all;
}
.about__lead-em {
  font-size: 2.6rem;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-thickness: 1px;
  margin-right: 0.3em;
}
.about__text {
  margin-top: 3rem;
  font-size: 1.8rem;
  line-height: 2;
  color: #1a356d;
}
.about__text p + p {
  margin-top: 2rem;
}
.about__more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: fit-content;
  margin-top: 4rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.about__more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.about__more:hover {
  opacity: 1;
}
.about__more:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
}
.about__more-arrow {
  width: 2.6rem;
  height: 2.6rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}
.about {
  /* --- 右：写真（グラデ板付き・斜め配置） --- */
}
.about__visual {
  position: relative;
  aspect-ratio: 666/604;
}
.about__photo {
  position: relative;
  border-radius: 4px;
  opacity: 0;
}
.about__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(45deg, #2699bf 0%, #395ead 100%);
  opacity: 0.9;
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background-color: #cdd9e6;
  background-size: cover;
  background-position: center;
  transform: translate(0, 0);
}
.about__photo--01 {
  position: absolute;
  bottom: 30%;
  right: 3%;
  width: 50%;
  aspect-ratio: 90/107;
  z-index: 2;
}
.about__photo--01::after {
  background-image: url(../img/top/about01.png);
}
.about__photo--02 {
  position: absolute;
  left: 8%;
  bottom: 2%;
  width: 30%;
  aspect-ratio: 1/1;
  z-index: 3;
}
.about__photo--02::after {
  background-image: url(../img/top/about02.png);
}

@keyframes about-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}
/* about 写真：表示領域に入ったら MV同様に順番でフェード＋スケール表示 → 表示後に写真を左上へスライドして板を覗かせる */
.about.is-inview .about__photo {
  animation: about-photo-in 0.6s ease-out both;
}

.about.is-inview .about__photo--01 {
  animation-delay: 0.2s;
}

.about.is-inview .about__photo--02 {
  animation-delay: 0.5s;
}

.about.is-inview .about__photo::after {
  animation: about-photo-slide 0.5s ease-out forwards;
}

.about.is-inview .about__photo--01::after {
  animation-delay: 0.8s;
}

.about.is-inview .about__photo--02::after {
  animation-delay: 1.1s;
}

@keyframes about-photo-in {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes about-photo-slide {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-1.2rem, -1.2rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about__line-path {
    animation: none;
    stroke-dashoffset: 0;
  }
  .about__photo {
    opacity: 1;
    animation: none;
  }
  .about__photo::after {
    animation: none;
    transform: translate(-1.2rem, -1.2rem);
  }
}
/*-------------------------
** service（校友会でできること）
---------------------------*/
.service {
  position: relative;
  overflow: hidden;
  padding: 6rem 4rem 10rem;
}
.service__inner {
  position: relative;
  z-index: 1;
  max-width: 168rem;
  margin: 0 auto;
  padding: 6rem 6rem 6.5rem;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(1.2rem);
  backdrop-filter: blur(1.2rem);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px 3px rgba(151, 222, 255, 0.2), 10px 10px 15px 0 rgba(0, 0, 0, 0.05);
}
.service__line {
  position: absolute;
  top: 0%;
  right: 0;
  width: 90%;
  aspect-ratio: 1162/177.6577;
  transform: translateX(5%) rotate(-45deg);
  transform-origin: right center;
  z-index: 0;
  opacity: 0.5;
  overflow: visible;
  pointer-events: none;
}
.service__line-path {
  stroke-dasharray: 1;
  stroke-dashoffset: -1;
  stroke-width: 51;
}
.service.is-inview .service__line-path {
  animation: service-line-draw 1.6s ease-out forwards;
}
.service__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 5rem;
}
.service__en {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #2699bf;
}
.service__title {
  margin-top: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.service__grid {
  position: relative;
  z-index: 1;
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.service__card {
  display: flex;
}
.service__card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 2px rgba(151, 222, 255, 0.22), 8px 8px 14px 0 rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.service__card-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(-45deg, #2699bf 0%, #395ead 100%);
}
.service__card-link:hover {
  opacity: 1;
  background: #e8f6fa;
  box-shadow: none;
}
.service__card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #cdd9e6;
}
.service__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service__card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #4cacee;
  opacity: 0.07;
}
.service__card-body {
  position: relative;
  flex: 1;
  padding: 2.6rem 2.4rem 4.5rem;
  text-align: center;
}
.service__card-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
}
.service__card-desc {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--navy);
}
.service__card-arrow {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3rem;
  height: 3rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}

@keyframes service-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .service__line-path {
    animation: none;
    stroke-dashoffset: 0;
  }
}
@media screen and (max-width: 980px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 68rem;
  }
}
/*-------------------------
** join（会員登録導線・フルブリード）
---------------------------*/
.join {
  position: relative;
  overflow: hidden;
  padding: 13rem 4rem;
  text-align: center;
  background: linear-gradient(105deg, #26a6c9 0%, #2e64a8 58%, #26408e 100%);
}
.join::before, .join::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  z-index: 0;
  pointer-events: none;
  background: url(../img/top/join_square.png) repeat-y;
  background-size: contain;
}
.join::before {
  left: 0;
}
.join::after {
  right: 0;
  transform: rotate(180deg);
}
.join__watermark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 17rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-box-trim: trim-start;
  text-box-edge: cap alphabetic;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  pointer-events: none;
  z-index: 0;
}
.join__inner {
  position: relative;
  z-index: 1;
  max-width: 100rem;
  margin: 0 auto;
}
.join__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #fff;
}
.join__lead {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
}
.join__actions {
  margin-top: 4.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.join__btn {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38rem;
  max-width: 100%;
  min-height: 8rem;
  padding: 1.2rem 5.6rem;
  border-radius: 2px;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.35s ease;
}
.join__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.join__btn:hover {
  opacity: 1;
}
.join__btn:hover::before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.35s ease, opacity 0s;
}
.join__btn-arrow {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  width: 3.4rem;
  height: 3.4rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}
.join__btn--navy {
  background: var(--navy);
  color: #fff;
}
.join__btn--navy::before {
  background: #102655;
}
.join__btn--white {
  background: #fff;
  color: var(--navy);
}
.join__btn--white::before {
  background: #d7ecf2;
}

/*-------------------------
** school（加入校）
---------------------------*/
.school {
  padding: 8rem 4rem 10rem;
}
.school__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.school__head {
  margin-bottom: 5rem;
}
.school__en {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #2699bf;
}
.school__title {
  margin-top: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.school__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem 2rem;
  background: #fff;
  padding: 4rem 3rem;
}
.school__item {
  width: 12rem;
}
.school__item img {
  width: 100%;
  height: auto;
  display: block;
}

/*-------------------------
** footer
---------------------------*/
.footer {
  position: relative;
  overflow: hidden;
  background: #141f37;
  color: #fff;
  padding: 7rem 4rem 4rem;
}
.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 120rem;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 5rem;
}
.footer__logo {
  display: inline-block;
  transition: 0.3s;
}
.footer__logo img {
  width: 22rem;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer__address {
  margin-top: 3.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.footer__hours {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.footer__tel {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.footer__tel a {
  color: inherit;
}
.footer__fb {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  color: inherit;
  transition: opacity 0.2s;
}
.footer__fb:hover {
  opacity: 0.7;
}
.footer__fb-logo {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
}
.footer__fb-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 8rem;
  row-gap: 3.4rem;
}
.footer__nav-link {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.25s ease;
}
.footer__nav-link:hover {
  opacity: 1;
  color: #4cacee;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding-top: 3.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 3.6rem;
}
.footer__link {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}
.footer__link:hover {
  opacity: 0.7;
}
.footer__copy {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.footer__line {
  position: absolute;
  right: 0;
  top: 40%;
  width: 80rem;
  z-index: 0;
  opacity: 0.5;
  overflow: visible;
  pointer-events: none;
  transform: translateX(50%) rotate(-45deg);
}
.footer__line-path {
  stroke-dasharray: 1;
  stroke-dashoffset: -1;
  stroke-width: 53;
}
.footer.is-inview .footer__line-path {
  animation: footer-line-draw 1.6s ease-out forwards;
}

@keyframes footer-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer__line-path {
    animation: none;
    stroke-dashoffset: 0;
  }
}
/*-------------------------
** 下層ページ共通（page-about 等）
---------------------------*/
.page {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: #fff;
}

/* 会長あいさつ〜会員特典にかけて流れる装飾ライン（mv__swoosh と同様：ストローク＋描画アニメ）
   stroke-width 48 × スケール1.25 = 約60px＝mv__swoosh 相当 */
.page-flow {
  position: absolute;
  z-index: 2;
  top: 60rem;
  left: 35%;
  width: 300rem;
  height: auto;
  transform: translateX(-50%) rotate(-145deg) scaleY(-1);
  opacity: 0.6;
  overflow: visible;
  pointer-events: none;
  user-select: none;
}

.page-flow-path,
.benefit-flow-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.page-flow.is-inview .page-flow-path {
  animation: about-flow-draw 2.8s ease-out 0.6s forwards;
}

.benefit-flow.is-inview .benefit-flow-path {
  animation: about-flow-draw 1.8s ease-out forwards;
}

@keyframes about-flow-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-flow-path, .benefit-flow-path {
    animation: none;
    stroke-dashoffset: 0;
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem 11rem;
  text-align: center;
  background: linear-gradient(to right, rgba(237, 244, 248, 0.8) 20%, rgba(255, 239, 219, 0.8) 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9.5rem;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,2 Q50,15 100,2 L100,10 L0,10 Z' fill='%23fff'/></svg>") no-repeat bottom/100% 100%;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 104rem;
  margin: 0 auto;
}
.page-hero__en {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #2699bf;
}
.page-hero__title {
  margin-top: 2rem;
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--navy);
}
.page-hero__lead {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  max-width: 128rem;
  margin: 0 auto;
  padding: 2rem 4rem 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  font-size: 1.4rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #6b7a90;
}
.breadcrumb__item:not(:first-child)::before {
  content: "/";
  color: #b9c3d0;
}
.breadcrumb__item a {
  color: #6b7a90;
}
.breadcrumb__item a:hover {
  opacity: 0.7;
}
.breadcrumb__item[aria-current] {
  color: var(--navy);
  font-weight: 700;
}

.about-block {
  padding: 7rem 4rem;
}
.about-block__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.about-block__inner--narrow {
  max-width: 96rem;
}

.about-heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.about-heading__icon {
  flex-shrink: 0;
  width: 3.1rem;
  height: 3.6rem;
  background: url(../img/common/title_item.png) center/contain no-repeat;
}
.about-heading--center {
  justify-content: center;
}
.about-heading--light {
  color: #fff;
}

/* 会長あいさつ */
.greeting {
  position: relative;
}
.greeting::before, .greeting::after {
  content: "";
  position: absolute;
  top: -11rem;
  bottom: 0;
  width: 39.6rem;
  background: url(../img/about/square.png) left top repeat-y;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.greeting::before {
  left: 0;
}
.greeting::after {
  right: 0;
  transform: scaleX(-1);
}
.greeting__body {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  display: flex;
  gap: 10%;
  align-items: flex-start;
}
.greeting__text {
  flex: 1;
  min-width: 0;
}
.greeting__lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--navy);
}
.greeting__text > p:not(.greeting__lead):not(.greeting__name) {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #1a356d;
}
.greeting__name {
  margin-top: 3.4rem;
  text-align: right;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.greeting__photo {
  position: relative;
  flex-shrink: 0;
  width: 30%;
  max-width: 35rem;
}
.greeting__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(45deg, #2699bf 0%, #395ead 100%);
  transform: translate(1.2rem, 1.2rem);
  z-index: 0;
}
.greeting__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 校友会とは（表） */
.overview {
  position: relative;
  z-index: 2;
  background: #f5faff;
}
.overview__note {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 1.5rem;
  color: #333;
}
.overview__table {
  width: 100%;
  margin-top: 3.6rem;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 1.5rem;
  line-height: 1.9;
}
.overview__table th, .overview__table td {
  border: 1px solid var(--line);
  padding: 2rem 2.6rem;
  text-align: left;
  vertical-align: top;
}
.overview__table th {
  width: 22rem;
  background: #e8f6fa;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.overview__table td {
  background: #fff;
  color: #333;
}

/* 校友会のメリット */
.merit {
  position: relative;
  z-index: 2;
  padding: 1rem 4rem 0;
  background: linear-gradient(to bottom, #f5faff 0 50%, #fff 50%);
}
.merit__inner {
  position: relative;
  overflow: hidden;
  max-width: 148rem;
  margin: 0 auto;
  padding: 6rem 4rem 7rem;
  border-radius: 6px;
  background: #26375c;
  background-image: radial-gradient(circle farthest-side at center, rgba(255, 255, 255, 0.02) 0 93%, transparent 93%), radial-gradient(circle farthest-side at center, rgba(255, 255, 255, 0.02) 0 66%, transparent 66%);
  background-repeat: no-repeat;
  background-position: center, center;
}
.merit__list {
  position: relative;
  z-index: 1;
  margin-top: 4.5rem;
  display: flex;
  justify-content: center;
  gap: 0;
}
.merit__item {
  position: relative;
  width: 30rem;
  aspect-ratio: 1;
}
.merit__item:not(:first-child) {
  margin-left: -4rem;
}
.merit__item {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 70%);
  box-shadow: inset 4.5px 7.79px 18px 0 rgba(103, 173, 255, 0.36);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.merit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
}
.merit__icon img {
  height: 5.2rem;
  width: auto;
  display: block;
}
.merit__title {
  margin-top: 2.2rem;
  font-size: 2rem;
  font-weight: 700;
}
.merit__desc {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}

/* 会員特典（page-hero と同じグラデーション＋下部の弧） */
.benefit {
  position: relative;
  overflow: hidden;
  padding-bottom: 12rem;
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0)), linear-gradient(to right, rgba(237, 244, 248, 0.8) 20%, rgba(255, 239, 219, 0.8) 100%);
}
.benefit .about-block__inner {
  position: relative;
  z-index: 1;
}
.benefit__grid {
  margin-top: 5rem;
}
.benefit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9.5rem;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,2 Q50,15 100,2 L100,10 L0,10 Z' fill='%23fff'/></svg>") no-repeat bottom/100% 100%;
  pointer-events: none;
}

.benefit-flow {
  position: absolute;
  z-index: 0;
  top: -90rem;
  left: 20%;
  width: 300rem;
  transform: translateX(-30%) rotate(-145deg) scaleY(-1);
  opacity: 0.6;
  overflow: visible;
  pointer-events: none;
  user-select: none;
}

/* 規約（PDFカード） */
.rules__panel {
  margin-top: 3.6rem;
  padding: 5rem 6rem;
  border-radius: 6px;
  background: #f5faff;
  display: flex;
  justify-content: center;
}
.rules__list {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.rules__item {
  flex: 1;
  min-width: 34rem;
  max-width: 45rem;
}
.rules__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.6rem 3rem;
  border-radius: 4px;
  background: #e8f6fa;
  transition: background 0.25s ease;
}
.rules__link:hover {
  opacity: 1;
  background: #d7ecf2;
}
.rules__icon {
  flex-shrink: 0;
  width: 4.6rem;
  height: 5.4rem;
  background: url(../img/about/pdf_icon.png) center/contain no-repeat;
}
.rules__text {
  flex: 1;
  min-width: 0;
}
.rules__title {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}
.rules__desc {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.4rem;
  color: #1a356d;
}
.rules__arrow {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}

/* 加入校（下層ページ：白背景） */
.school--about {
  background: #fff;
}

/* 個人情報保護方針（page-privacy） */
.privacy {
  padding: 8rem 4rem 12rem;
}
.privacy__inner {
  max-width: 116rem;
  margin: 0 auto;
}
.privacy__title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.privacy__title::after {
  content: "";
  display: block;
  width: 8rem;
  height: 3px;
  margin: 1.8rem auto 0;
  border-radius: 2px;
  background: linear-gradient(to right, #355aa2, #2890b3);
}
.privacy__intro {
  margin-top: 4.5rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
}
.privacy__block {
  margin-top: 4.5rem;
}
.privacy__heading {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.privacy__text {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
}
.privacy__text + .privacy__text {
  margin-top: 1.2rem;
}

/* お問い合わせ（page-contact）／会員登録（page-member） */
.contact {
  padding: 6rem 4rem 12rem;
}
.contact__inner {
  max-width: 116rem;
  margin: 0 auto;
}

.contact-intro {
  max-width: 88rem;
  margin: 3.2rem auto 0;
  text-align: left;
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
}
.contact-intro p + p {
  margin-top: 2rem;
}
.contact-intro__list {
  margin: 2rem 0;
  padding-left: 2rem;
  list-style: disc;
}
.contact-intro__list li + li {
  margin-top: 0.6rem;
}

.contact-heading--form {
  margin-top: 7rem;
}

.contact-note {
  padding: 3.2rem 4rem;
  border-radius: 6px;
  background: #e8f4fb;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2;
  color: var(--navy);
}
.contact-note a {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  font-weight: 700;
  color: var(--navy);
}
.contact-note a:hover {
  opacity: 0.7;
}
.contact-note + .about-heading {
  margin-top: 6rem;
}

.contact-form {
  max-width: 100rem;
  margin: 4rem auto 0;
  border-top: 1px solid #e7ebf0;
  font-size: 16px;
}
.contact-form__row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid #e7ebf0;
}
.contact-form__label {
  flex-shrink: 0;
  width: 22rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.contact-form__req {
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #c0392b;
}
.contact-form__field {
  flex: 1;
  min-width: 0;
}
.contact-form__input, .contact-form__select, .contact-form__textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  border: none;
  border-radius: 2px;
  background: #ededed;
  font-family: inherit;
  font-size: 1.5rem;
  color: #333;
}
.contact-form__input::placeholder, .contact-form__select::placeholder, .contact-form__textarea::placeholder {
  color: #9aa0a6;
}
.contact-form__textarea {
  min-height: 20rem;
  line-height: 1.8;
  resize: vertical;
}
.contact-form__note {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #777;
}
.contact-form__radios .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 3rem;
  padding-top: 1.3rem;
}
.contact-form__radios label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
.contact-form__radios label input {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--navy);
}
.contact-form__select-wrap {
  position: relative;
}
.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.7rem solid var(--navy);
  pointer-events: none;
}
.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 4rem;
  cursor: pointer;
}
.contact-form__agree {
  margin-top: 4rem;
  text-align: center;
}
.contact-form__check {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}
.contact-form__check input {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--navy);
}
.contact-form__submit {
  margin-top: 3.6rem;
  text-align: center;
}
.contact-form__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34rem;
  max-width: 100%;
  height: 6.2rem;
  border: none;
  border-radius: 2px;
  background: var(--navy);
  color: #fff;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact-form__btn:hover {
  opacity: 0.85;
}
.contact-form__btn-arrow {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}

/* お知らせ詳細（single / WP投稿詳細） */
.single {
  padding-bottom: 10rem;
}

.post .post__inner {
  max-width: 128rem;
  margin: 0 auto;
  padding: 2rem 4rem 0;
}
.post__head {
  padding: 4rem 0 3.5rem;
}
.post__content .post__inner {
  max-width: 120rem;
  background: #fff;
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.post__meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.post__date {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b7a90;
}
.post__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.4rem;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: #e7f1f8;
  color: var(--navy);
  white-space: nowrap;
}
.post__title {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-top: 1.8rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.post__title-icon {
  flex-shrink: 0;
  width: 2.6rem;
  height: 3rem;
  margin-top: 0.75rem;
  background: url(../img/common/title_item.png) center/contain no-repeat;
}
.post__content {
  padding-bottom: 6rem;
}
.post__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.post__back {
  margin-top: 6rem;
  text-align: center;
}
.post__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  width: 26rem;
  height: 6rem;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0.6rem 2rem rgba(20, 49, 91, 0.08);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  transition: opacity 0.3s;
}
.post__back-btn:hover {
  opacity: 0.7;
}
.post__back-arrow {
  width: 2.8rem;
  height: 2.8rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
  transform: scaleX(-1);
}

/* WPブロックエディタ本文（コンテンツ内は要素セレクタでデザイン） */
.post__body {
  margin-top: 4.5rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
}
.post__body > * + * {
  margin-top: 2.4rem;
}
.post__body > :first-child {
  margin-top: 0;
}
.post__body h2:not(.about-heading):not(.is-style-about-heading-center) {
  position: relative;
  margin-top: 5.5rem;
  padding-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
  border-bottom: 1px solid #d8dee6;
}
.post__body h2:not(.about-heading):not(.is-style-about-heading-center)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 12rem;
  height: 3px;
  background: linear-gradient(to right, #2699bf 0 50%, #395ead 50%);
}
.post__body h2.is-style-about-heading-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 5.5rem;
  padding-bottom: 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--navy);
  border-bottom: none;
}
.post__body h2.is-style-about-heading-center::before {
  content: "";
  flex-shrink: 0;
  width: 3.1rem;
  height: 3.6rem;
  background: url(../img/common/title_item.png) center/contain no-repeat;
}
.post__body .is-style-contact-note {
  padding: 3.2rem 4rem;
  border-radius: 6px;
  background: #e8f4fb;
  text-align: center;
  color: var(--navy);
}
.post__body .is-style-contact-note > * {
  margin-top: 0;
  font-size: 1.5rem;
  line-height: 2;
}
.post__body h3 {
  position: relative;
  margin-top: 5rem;
  padding-left: 1.6rem;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
}
.post__body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 0.3rem;
  border-radius: 2px;
  background: linear-gradient(to bottom, #2699bf 0 50%, #395ead 50%);
}
.post__body h4 {
  margin-top: 4.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy);
}
.post__body p {
  color: #333;
}
.post__body strong {
  font-weight: 700;
  color: var(--navy);
}
.post__body a:not(.wp-block-button__link) {
  color: #2699bf;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.post__body a:not(.wp-block-button__link):hover {
  opacity: 0.7;
}
.post__body ul {
  list-style: none;
  padding-left: 0;
}
.post__body ul > li {
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.9;
}
.post__body ul > li + li {
  margin-top: 1rem;
}
.post__body ul > li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 1.1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--navy);
}
.post__body ol {
  list-style-type: decimal;
  padding-left: 2.4rem;
}
.post__body ol > li {
  padding-left: 0.4rem;
  line-height: 1.9;
}
.post__body ol > li + li {
  margin-top: 1rem;
}
.post__body ol > li::marker {
  color: var(--navy);
  font-weight: 700;
}
.post__body img {
  max-width: 100%;
  height: auto;
}
.post__body figure {
  margin: 0;
}
.post__body table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e3e8ef;
  font-size: 1.5rem;
}
.post__body th, .post__body td {
  padding: 1.6rem 2rem;
  border: 1px solid #e3e8ef;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.post__body th {
  width: 34%;
  background: #e8f6fa;
  font-weight: 700;
  color: var(--navy);
}
.post__body td {
  background: #fff;
  color: #333;
}
.post__body blockquote {
  margin-left: 0;
  padding: 1.6rem 2.4rem;
  border-left: 0.4rem solid #cdd9e6;
  background: #f5faff;
  color: #555;
}
.post__body .wp-block-buttons {
  margin-top: 3.5rem;
}
.post__body .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30rem;
  padding: 1.7rem 5.4rem 1.7rem 3rem;
  border-radius: 2px;
  background: var(--navy);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}
.post__body .wp-block-button__link:hover {
  opacity: 0.85;
}
.post__body .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.2rem;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* お知らせ・イベント 一覧（news アーカイブ） */
.newslist {
  padding: 5rem 0 11rem;
}
.newslist__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.newslist__tabs {
  display: flex;
  gap: 2.4rem;
  margin-top: 5rem;
}
.newslist__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  border-radius: 2px;
  background: #e8f4fb;
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}
.newslist__tab:hover {
  opacity: 0.75;
}
.newslist__tab.is-active {
  background: var(--navy);
  color: #fff;
}
.newslist__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.5rem 4rem;
  margin-top: 5.5rem;
}
.newslist__empty {
  margin-top: 5.5rem;
  font-size: 1.6rem;
}

.news-card {
  list-style: none;
}
.news-card__link {
  display: block;
  height: 100%;
  background: #fff;
  box-shadow: 0 0.8rem 2.4rem rgba(20, 49, 91, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card__link:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 3rem rgba(20, 49, 91, 0.12);
}
.news-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: #e9edf1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__logo {
  display: block;
  width: 62%;
  max-width: 20rem;
  height: 55%;
  background: url(../img/common/logo.png) center/contain no-repeat;
}
.news-card__body {
  padding: 2rem;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.news-card__date {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b7a90;
}
.news-card__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1.3rem;
  border-radius: 0.3rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  white-space: nowrap;
}
.news-card__title {
  margin-top: 1.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--navy);
}
.news-card__excerpt {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #555;
}

/* ページネーション（WP-PageNavi） */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 6.5rem;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  height: 4.8rem;
  padding: 0 0.6rem;
  font-family: "Alumni Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  border-radius: 2px;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
}
.wp-pagenavi a:hover {
  opacity: 0.7;
}
.wp-pagenavi .current {
  background: var(--navy);
  color: #fff;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .prevpostslink {
  position: relative;
  border: 1px solid #cfd8e3;
}
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .prevpostslink:hover {
  opacity: 1;
  border-color: var(--navy);
}
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .prevpostslink::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}
.wp-pagenavi .nextpostslink::before {
  transform: translateX(-0.2rem) rotate(45deg);
}
.wp-pagenavi .prevpostslink::before {
  transform: translateX(0.2rem) rotate(-135deg);
}

/* 固定ページ本体（ブロックエディタ出力のラッパー） */
.entry {
  padding: 5rem 0 11rem;
}
.entry__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 6rem 6rem 7rem;
  background: #fff;
}
.entry .post__body {
  margin-top: 0;
}

/* ブロックエディタ 追加ブロック */
.post__body h5 {
  margin-top: 3.6rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy);
}
.post__body h6 {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: #355aa2;
}
.post__body mark {
  background: transparent;
  color: inherit;
}
.post__body .has-text-align-center {
  text-align: center;
}
.post__body .has-text-align-right {
  text-align: right;
}
.post__body .has-text-align-left {
  text-align: left;
}
.post__body {
  /* 区切り線 */
}
.post__body .wp-block-separator {
  margin-top: 5.5rem;
  margin-bottom: 5.5rem;
  border: none;
  height: 1px;
  background: #e3e8ef;
}
.post__body {
  /* 画像 */
}
.post__body .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.post__body .wp-block-image.aligncenter {
  text-align: center;
}
.post__body figcaption,
.post__body .wp-element-caption {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #777;
  text-align: center;
}
.post__body figcaption,
.post__body .wp-block-gallery.has-nested-images figure.wp-block-image .wp-element-caption {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #777;
  text-align: center;
  position: relative;
  background: none;
  text-shadow: unset;
  padding: 0;
}
.post__body {
  /* 引用 */
}
.post__body .wp-block-quote cite,
.post__body blockquote cite {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.4rem;
  font-style: normal;
  color: #888;
}
.post__body blockquote > * + * {
  margin-top: 1.6rem;
}
.post__body {
  /* カラム */
}
.post__body .wp-block-columns {
  display: flex;
  gap: 4rem;
}
.post__body .wp-block-column {
  flex: 1;
  min-width: 0;
}
.post__body .wp-block-column > * + * {
  margin-top: 2rem;
}
.post__body .wp-block-column > :first-child {
  margin-top: 0;
}
.post__body {
  /* 詳細（アコーディオン） */
}
.post__body .wp-block-details {
  border: 1px solid #e3e8ef;
  border-radius: 2px;
  overflow: hidden;
}
.post__body .wp-block-details + .wp-block-details {
  margin-top: 1.6rem;
}
.post__body .wp-block-details summary {
  position: relative;
  padding: 1.9rem 5.4rem 1.9rem 2.4rem;
  background: #f5faff;
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
  transition: background 0.3s;
}
.post__body .wp-block-details summary::-webkit-details-marker {
  display: none;
}
.post__body .wp-block-details summary:hover {
  background: #e8f4fb;
}
.post__body .wp-block-details summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 0.9rem;
  height: 0.9rem;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
}
.post__body .wp-block-details[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.post__body .wp-block-details > :not(summary) {
  margin: 2rem 2.4rem;
}
.post__body {
  /* WPコアアコーディオン（core/accordion）
     h3.wp-block-accordion-heading に本文h3の装飾が当たらないよう打ち消す */
}
.post__body .wp-block-accordion-item {
  border: 1px solid #e3e8ef;
  border-radius: 2px;
  overflow: hidden;
}
.post__body .wp-block-accordion-item + .wp-block-accordion-item {
  margin-top: 1.6rem;
}
.post__body .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.post__body .wp-block-accordion-item.is-open .wp-block-accordion-panel {
  display: block;
}
.post__body .wp-block-accordion-heading {
  margin: 0;
  padding: 0;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.post__body .wp-block-accordion-heading::before, .post__body .wp-block-accordion-heading::after {
  content: none;
  display: none;
}
.post__body .wp-block-accordion-heading__toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  margin: 0;
  padding: 1.9rem 5.6rem 1.9rem 2.4rem;
  background: #e8f6fa;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  color: var(--navy);
  font-family: inherit;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
  transition: background 0.3s;
}
.post__body .wp-block-accordion-heading__toggle:hover {
  background: #dcecf5;
}
.post__body .wp-block-accordion-heading__toggle-title {
  flex: 1;
}
.post__body .wp-block-accordion-heading__toggle-icon {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0;
  color: transparent;
}
.post__body .wp-block-accordion-heading__toggle-icon::before, .post__body .wp-block-accordion-heading__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--navy);
}
.post__body .wp-block-accordion-heading__toggle-icon::before {
  width: 1.8rem;
  height: 2px;
  transform: translate(-50%, -50%);
}
.post__body .wp-block-accordion-heading__toggle-icon::after {
  width: 2px;
  height: 1.8rem;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.post__body .wp-block-accordion-panel {
  display: none;
  padding: 2.4rem;
  background: #fff;
}
.post__body .wp-block-accordion-panel > * {
  margin-top: 0;
}
.post__body .wp-block-accordion-panel > * + * {
  margin-top: 1.6rem;
}
.post__body .wp-block-accordion-panel p {
  color: #333;
}
.post__body {
  /* ファイル（PDF等） */
}
.post__body .wp-block-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.8rem 2.4rem;
  background: #f5faff;
  border: 1px solid #e3e8ef;
  border-radius: 2px;
}
.post__body .wp-block-file a:not(.wp-block-file__button) {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.post__body .wp-block-file a:not(.wp-block-file__button):hover {
  text-decoration: underline;
}
.post__body .wp-block-file a.wp-block-file__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}
.post__body .wp-block-file a.wp-block-file__button:hover {
  opacity: 0.85;
}
.post__body {
  /* 埋め込み（動画など） */
}
.post__body .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #eef2f6;
  border-radius: 4px;
  overflow: hidden;
}
.post__body .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.post__body {
  /* ボタン群 */
}
.post__body .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.post__body .wp-block-buttons.is-content-justification-center {
  justify-content: center;
}
.post__body .wp-block-buttons.is-content-justification-right {
  justify-content: flex-end;
}
.post__body {
  /* ボタン：別タブで開く場合は矢印を window アイコンに差し替え */
}
.post__body .wp-block-button__link[target=_blank] {
  padding-right: 5.8rem;
}
.post__body .wp-block-button__link[target=_blank]::after {
  right: 2rem;
  width: 1.8rem;
  height: 1.8rem;
  border: none;
  border-radius: 0;
  background: url(../img/common/window.png) center/contain no-repeat;
  transform: translateY(-50%);
}

/* ===== キャリアサポート ===== */
/* ヒーローの色付き領域だけを覆い、装飾ラインの上端を隠す（白い弧の上には線を残す） */
.page-hero__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #fff;
  background-image: linear-gradient(to right, rgba(237, 244, 248, 0.8) 20%, rgba(255, 239, 219, 0.8) 100%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#000, #000) top/100% calc(100% - 9.5rem) no-repeat, url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,0 L100,0 L100,2 Q50,15 0,2 Z' fill='%23000'/></svg>") bottom/100% 9.5rem no-repeat;
  mask: linear-gradient(#000, #000) top/100% calc(100% - 9.5rem) no-repeat, url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,0 L100,0 L100,2 Q50,15 0,2 Z' fill='%23000'/></svg>") bottom/100% 9.5rem no-repeat;
}

/* こんな方へ */
.cs-target {
  position: relative;
  padding: 7rem 0 9rem;
}
.cs-target__line {
  position: absolute;
  top: 5rem;
  right: -25rem;
  width: 70%;
  aspect-ratio: 1162/177.6577;
  transform: rotate(-130deg);
  z-index: 0;
  opacity: 0.5;
  overflow: visible;
  pointer-events: none;
}
.cs-target__line-path {
  stroke-dasharray: 1;
  stroke-dashoffset: -1;
  stroke-width: 60;
}
.cs-target.is-inview .cs-target__line-path {
  animation: cs-target-line-draw 1.6s ease-out forwards;
}
.cs-target__inner {
  position: relative;
  z-index: 1;
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.cs-target__lead {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.1;
  color: #333;
}
.cs-target__list {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 5.5rem;
}
.cs-target__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: url(../img/career_support/circle.png) center/contain no-repeat;
}
.cs-target__item:not(:first-child) {
  margin-left: -2rem;
}
.cs-target__icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 6.6rem;
}
.cs-target__icon img {
  width: auto;
  max-height: 6.6rem;
}
.cs-target__label {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
}

@keyframes cs-target-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cs-target__line-path {
    animation: none;
    stroke-dashoffset: 0;
  }
}
/* ご利用の流れ */
.cs-flow {
  background: #f5faff;
  padding: 8rem 0 9rem;
}
.cs-flow__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.cs-flow__figure {
  margin-top: 5rem;
  text-align: center;
}
.cs-flow__img {
  display: block;
  width: 100%;
  max-width: 120rem;
  height: auto;
  margin: 0 auto;
}
.cs-flow__img--sp {
  display: none;
}
.cs-flow__note {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--ink);
}
.cs-flow__note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cs-flow__note a:hover {
  opacity: 0.7;
}

/* 登録・相談方法 */
.cs-contact {
  background: #2d4475;
  padding: 8rem 0 9rem;
}
.cs-contact__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.cs-contact__cards {
  display: flex;
  gap: 4rem;
  margin-top: 6rem;
}
.cs-contact__card {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 4.6rem 3rem 3.4rem;
  background: #f2f7fc;
  border-radius: 2px;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 80rem;
  margin: 0 auto;
}
.cs-contact__card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.25);
}
.cs-contact__tab {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  height: 4rem;
  padding: 0 2rem;
  border-radius: 2rem;
  background: var(--navy);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
}
.cs-contact__body {
  flex: 1;
  text-align: center;
}
.cs-contact__note {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a356d;
}
.cs-contact__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.4rem;
}
.cs-contact__tel-icon {
  display: flex;
}
.cs-contact__tel-icon img {
  width: 3.1rem;
  height: auto;
  display: block;
}
.cs-contact__tel-num {
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.cs-contact__name {
  display: block;
  margin-top: 0.3rem;
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
}
.cs-contact__login {
  position: relative;
  display: inline-block;
  margin-top: 0.7rem;
  padding-right: 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.cs-contact__login::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 0.4rem 0 0.4rem 0.6rem;
  border-color: transparent transparent transparent var(--navy);
}
.cs-contact__arrow {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}
.cs-contact__also {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4.5rem;
}
.cs-contact__also-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15rem;
  height: 4.4rem;
  padding: 0 2rem;
  border-radius: 2.2rem;
  background: #fff;
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 700;
}
.cs-contact__also-text {
  font-size: 1.6rem;
  color: #fff;
}
.cs-contact__also-text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* CTA */
.cs-cta {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 9rem;
  background: linear-gradient(105deg, #2b8cc2 0%, #294f92 100%);
}
.cs-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}
.cs-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: center;
}
.cs-cta__bg-text {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.09);
  white-space: nowrap;
  pointer-events: none;
}
.cs-cta__title {
  position: relative;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
.cs-cta__buttons {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5.5rem;
}
.cs-cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44rem;
  max-width: 100%;
  height: 8rem;
  border-radius: 2px;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}
.cs-cta__btn:hover {
  opacity: 0.88;
}
.cs-cta__btn--white {
  background: #fff;
  color: var(--navy);
}
.cs-cta__btn--navy {
  background: var(--navy);
  color: #fff;
}
.cs-cta__btn-arrow {
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: #2f7ec4;
  border-radius: 2px;
}
.cs-cta__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-65%, -50%) rotate(45deg);
}

/* ===== 会員登録・加入（registration） ===== */
/* 共通：ネイビーボタン */
.reg-btn {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30rem;
  height: 6.4rem;
  padding: 0 5.6rem 0 3rem;
  border-radius: 2px;
  background: var(--navy);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.reg-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #102655;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.reg-btn:hover::before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.35s ease, opacity 0s;
}
.reg-btn__arrow {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.reg-btn__arrow--img {
  right: 1.6rem;
  width: 4rem;
  height: 4rem;
  border: none;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
  transform: translateY(-50%);
}
.reg-btn--cta {
  min-width: 40rem;
  height: 7.4rem;
  padding: 0 3rem;
}

/* 校友会の会員とは */
.reg-intro {
  padding: 7rem 0 8rem;
  text-align: center;
}
.reg-intro__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.reg-intro__lead {
  margin-top: 3.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.5;
  color: var(--navy);
}
.reg-intro__note {
  margin-top: 3rem;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--navy);
}
.reg-intro__btn-wrap {
  margin-top: 3.5rem;
}

/* ご入会の対象・会費 */
.reg-fee {
  position: relative;
  padding: 7rem 0 11rem;
  background: linear-gradient(to bottom, #f5faff, rgba(255, 255, 255, 0)), linear-gradient(to right, rgba(237, 244, 248, 0.8) 20%, rgba(255, 239, 219, 0.8) 100%);
}
.reg-fee::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8rem;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,2 Q50,15 100,2 L100,10 L0,10 Z' fill='%23fff'/></svg>") no-repeat bottom/100% 100%;
  pointer-events: none;
}
.reg-fee__inner {
  position: relative;
  z-index: 1;
  max-width: 108rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.reg-fee__cards {
  display: flex;
  gap: 4rem;
  margin-top: 5.5rem;
}
.reg-fee__card {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 15rem;
  padding: 4.4rem 3rem 3rem;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0.8rem 2.4rem rgba(20, 49, 91, 0.05);
  text-align: center;
}
.reg-fee__tab {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 14rem;
  height: 4rem;
  padding: 0 2rem;
  border-radius: 2rem;
  background: var(--navy);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.reg-fee__main {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}
.reg-fee__sub {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
}

/* 新規会員登録・登録情報の変更 */
.reg-links {
  padding: 7rem 0 9rem;
}
.reg-links__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.reg-links__note {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 1.6rem;
  color: #333;
}
.reg-links__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 5rem;
}

.reg-linkblock {
  position: relative;
  display: block;
  aspect-ratio: 809/456;
  border-radius: 2px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.reg-linkblock--01 {
  background-image: url(../img/registration/link01_bg.png);
}
.reg-linkblock--02 {
  background-image: url(../img/registration/link02_bg.png);
}
.reg-linkblock::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.reg-linkblock--01::before {
  background-image: url(../img/registration/link01_bg_on.png);
}
.reg-linkblock--02::before {
  background-image: url(../img/registration/link02_bg_on.png);
}
.reg-linkblock:hover::before {
  opacity: 1;
}
.reg-linkblock__body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 5rem;
  text-align: center;
  color: #fff;
}
.reg-linkblock__pre {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.reg-linkblock__title {
  margin-top: 0.6rem;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.reg-linkblock__title--lg {
  font-size: 3.6rem;
}
.reg-linkblock__line {
  display: block;
  width: 7rem;
  height: 2px;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.8);
}
.reg-linkblock__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 34rem;
  height: 7rem;
  margin-top: 3rem;
  border-radius: 2px;
  background: #fff;
}
.reg-linkblock__btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}
.reg-linkblock__btn-main {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}
.reg-linkblock__btn-sub {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
}
.reg-linkblock__btn-arrow {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
  width: 3.4rem;
  height: 3.4rem;
  background: url(../img/common/arrow_icon_blue.png) center/contain no-repeat;
}

/* 会員情報変更バー */
.reg-change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding: 3rem 4rem;
  border-radius: 2px;
  background: #e8f6fa;
}
.reg-change__text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

/* よくある質問 */
.reg-faq {
  padding: 7rem 0 9rem;
}
.reg-faq__inner {
  max-width: 108rem;
  margin: 0 auto;
  padding: 0 4rem;
}

.faq {
  margin-top: 5rem;
}
.faq__item {
  border-radius: 2px;
  overflow: hidden;
}
.faq__item + .faq__item {
  margin-top: 2rem;
}
.faq__q {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 7rem 2.4rem 2.6rem;
  background: #e8f6fa;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.faq__q-text {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
}
.faq__q-icon {
  position: absolute;
  top: 50%;
  right: 2.8rem;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
}
.faq__q-icon::before, .faq__q-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--navy);
}
.faq__q-icon::before {
  width: 1.8rem;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__q-icon::after {
  width: 2px;
  height: 1.8rem;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.faq__item[open] .faq__q-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq__a {
  padding: 2.6rem 2.6rem 2.6rem 8.6rem;
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
}

/* ご不明な点はお気軽に */
.reg-cta {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background: linear-gradient(to right, #d3e7ff 0%, #ffefdb 100%);
}
.reg-cta::before, .reg-cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  z-index: 0;
  pointer-events: none;
  background: url(../img/common/square.png) repeat-y left top;
  background-size: contain;
}
.reg-cta::before {
  left: 0;
}
.reg-cta::after {
  right: 0;
  transform: rotate(180deg);
}
.reg-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 108rem;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: center;
}
.reg-cta__title {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
}
.reg-cta__btn-wrap {
  margin-top: 4rem;
}/*# sourceMappingURL=style.css.map */