@charset "UTF-8";

/*
Theme Name: 武蔵野コンサルティングテーマ
Author: 
Description: 2025年6月作成
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant&display=swap");

.header {
  background: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 110px;
}

@media (max-width: 767px) {
  .header {
    height: 90px;
  }
}

.header__container.container {
  width: 95%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
  gap: 1%;
}

.header__logo {
  width: 22%;
}

@media (max-width: 767px) {
  .header__logo {
    width: 140px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

@media (min-width: 768px) and (max-width:1279px) {
  .header__nav {
    gap: 5px;
  }
}

@media (min-width: 768px) and (max-width:1023px) {
  .header__nav {
    display: none;
  }
}

.header__nav-item {
  white-space: nowrap;
  position: relative;
  font-size: 0.85rem;
}

/* 表示トリガー */
.header__nav-item:hover .submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* 非表示時の初期状態 */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: #FFFFFF;
  transition: all 0.2s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.submenu-item:not(:last-child) {
  border-bottom: 1px solid #CCCCCC;
}

.submenu-item a {
  display: block;
  padding: 10px;
  white-space: nowrap;
}

.header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px;
}

@media (min-width: 768px) and (max-width:1279px) {
  .header__nav-link {
    padding: 10px 5px;
  }
}

.header__nav-link span {
  margin-left: 4px;
  width: 12px;
  height: 12px;
}

.header__cta {
  display: flex;
  gap: 10px;
  margin-left: auto;
  justify-content: end;
  font-family: "Shippori Mincho", serif;
}

@media (max-width: 767px) {
  .header__cta {
    flex-direction: column;
    gap: 4px;
  }
}

.header__tel {
  margin-right: 10px;
  align-items: center;
}

.header__tel-label {
  font-size: 0.92rem;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.header__tel-label::before {
  position: absolute;
  content: "";
  background: url(assets/img/tel.svg);
  width: 16px;
  height: 16px;
  left: -23px;
  top: 0;
}

.header__tel-time {
  color: #6B7280;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  line-height: 1;
}

.header__button-white,
.header__button-blue {
  width: 180px;
  padding: 0.714rem 0;
  display: inline-block;
  line-height: 1;
  display: flex;
  width: 180px;
  height: 36px;
  border: 1px solid #3739A4;
  background: #FFF;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.header__button-white {
  border: 1px solid #3739A4;
  background: #FFF;
  color: #3739A4;
}

.header__button-blue {
  background: #3739A4;
  color: #fff;
}

.main {
  background: #F1F5F9;
  margin-top: 110px;
  height: 702px;
  font-family: "Shippori Mincho", serif;
}

@media (max-width: 767px) {
  .main {
    margin-top: 80px;
  }
}

.main__container.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
  width: 95%;
  max-width: 100%;
}

.main__slider {
  width: 100vw;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.main__slider-track {
  display: flex;
  width: 300vw;
  -webkit-animation: slide 20s infinite;
  animation: slide 20s infinite;
  height: 100%;
}

.main__slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  background: #fff;
  position: relative;
}

.main__slide img {
  -o-object-fit: cover;
  object-fit: cover;
}

.main__slide .section__button {
  position: relative;
  z-index: 100;
}

.main__slide-1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  height: 100%;
  background: #fff;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 13.6%, rgba(255, 255, 255, 0.5) 82.72%, #FFF 100%), url(assets/img/main_1.jpg) lightgray 50%/cover no-repeat;
}

@media (max-width: 767px) {
  .main__slide-1::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 13.6%, rgba(255, 255, 255, 0.5) 82.72%, #FFF 100%), url(assets/img/main_1.jpg) lightgray 50%/cover no-repeat;
  }
}

@media (max-width: 767px) {
  .main__slide-1 .main__container.container {
    padding-bottom: 340px;
  }
}

.main__slide-2 {
  background: linear-gradient(0deg, rgba(55, 57, 164, 0.35) 0%, rgba(55, 57, 164, 0.35) 100%), url(assets/img/main_2.jpg) lightgray 50%/cover no-repeat;
  text-align: center;
  color: #fff;
}

.main__slide-2 .main__title-small,
.main__slide-2 .main__title {
  font-size: clamp(40px, 3.85vw, 54px);
}

@media (max-width: 767px) {

  .main__slide-2 .main__title-small,
  .main__slide-2 .main__title {
    font-size: 2.8rem;
  }
}

.main__slide-2 .main__subtitle {
  font-size: clamp(18px, 1.57vw, 22px);
}

@media (max-width: 767px) {
  .main__slide-2 .main__subtitle {
    font-size: 1.4rem;
  }
}

.main__slide-2 .section__button {
  text-align: left;
  margin: 0 auto;
}

.main__slide-2 br {
  display: none;
}

.main__slide-3 {
  color: #FFF;
}

.main__slide-3 .container {
  flex-direction: row;
  margin: 0;
  width: 100%;
}

.slide-left,
.slide-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-left {
  background: #3739A4;
  padding: 4%;
}

.slide-right img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .main__slide-3 .container {
    flex-direction: column;
  }

  .slide-left,
  .slide-right {
    width: 100%;
  }

  .slide-left {
    height: 60%;
    justify-content: flex-end;
  }

  .slide-right {
    height: 40%;
  }

}

.main__title-small {
  font-size: clamp(18px, 2.14vw, 30px);
  margin-bottom: 20px;
  position: relative;
  z-index: 100;
}

.main__title {
  font-size: clamp(28px, 3.42vw, 48px);
  margin-bottom: 30px;
  line-height: 1.5;
  position: relative;
  z-index: 100;
}

@media (max-width: 767px) {
  .main__title {
    font-size: 2rem;
    line-height: 1.33;
  }
}

.main__subtitle {
  font-size: clamp(14px, 1.28vw, 18px);
  margin-bottom: 60px;
  line-height: 1.7;
  position: relative;
  z-index: 100;
}

/* アニメーション */
@-webkit-keyframes slide {
  0% {
    transform: translateX(0);
  }

  33% {
    transform: translateX(0);
  }

  34% {
    transform: translateX(-100vw);
  }

  66% {
    transform: translateX(-100vw);
  }

  67% {
    transform: translateX(-200vw);
  }

  99% {
    transform: translateX(-200vw);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  33% {
    transform: translateX(0);
  }

  34% {
    transform: translateX(-100vw);
  }

  66% {
    transform: translateX(-100vw);
  }

  67% {
    transform: translateX(-200vw);
  }

  99% {
    transform: translateX(-200vw);
  }

  100% {
    transform: translateX(0);
  }
}

.team {
  padding-top: 40px;
  padding-bottom: 73px;
  overflow: hidden;
}

.team__slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.team__slider-container {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.team__slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 25px;
}

@media (max-width: 767px) {
  .team__slider-track {
    gap: 10px;
  }
}

.team__card {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.team__card img {
  height: 196px;
  width: auto;
  object-fit: cover;
}

.team__slider-dots {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 10px;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
}

.team__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #3739A4;
  transition: all 0.3s ease;
}

.team__dot--active,
.team__dot:hover {
  background: #3739A4;
}

.services {
  background: #Fff;
}

.services__container.container {
  max-width: 95%;
  padding-top: 4.28rem;
}

.services__card {
  display: flex;
  flex-direction: row-reverse;
  height: 440px;
}

.services__card:not(:first-child) {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .services__card {
    flex-direction: column;
    height: auto;
  }
}

.services__card-img {
  width: 61%;
  background: #E5E7EB;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 865.5/577;
}

.services__card-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 767px) {
  .services__card-img {
    width: 100%;
  }
}

.services__card-text {
  width: 39%;
  background: #3739A4;
  color: #Fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
}

@media (max-width: 767px) {
  .services__card-text {
    width: 100%;
  }
}

.services__card-label {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: "Shippori Mincho", serif;
}

.services__card-title {
  font-size: 1.71rem;
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}

.services__card-description {
  font-size: 1.14rem;
  line-height: 2;
}

.consulting {
  background: white;
  padding-bottom: 160px;
}

.consulting__container.container {
  padding-top: 6.42rem;
}

.consulting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3.5%;
}

.consulting__card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.consulting__card-text {
  padding: 4.78rem 1.78rem 1.78rem 1.78rem;
}

.consulting__card-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.71rem;
  font-weight: 500;
  margin-bottom: 9px;
  line-height: 1;
  text-align: center;
}

.consulting__card-subtitle {
  font-family: "Cormorant", serif;
  font-weight: 500;
  margin-bottom: 4rem;
  line-height: 1;
  text-align: center;
  color: #3739A4;
}

.consulting__card-description {
  color: #333;
  line-height: 1.5;
}

.consulting__card-link {
  border-top: 1px solid #D7DEED;
  font-family: "Shippori Mincho", serif;
  padding: 1rem 1.42rem;
  display: inline-block;
  position: relative;
  width: 100%;
}

.consulting__card-link::after {
  position: absolute;
  content: "";
  background: url(assets/img/button_arrow.svg);
  background-size: contain;
  width: 40.25px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  right: 1.42rem;
}

.cases {
  background: #3739A4;
  position: relative;
}

.cases .container.cases__container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cases .section__title,
.cases .section__subtitle {
  color: #fff;
}

.cases .section__button-white {
  z-index: 100;
}

.curve-svg {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 160px;
  background: #3739A4;
}

.curve-svg.curve-svg-bottom {
  top: auto;
  bottom: -140px;
}

.cases__card.section__card {
  background: transparent;
  display: flex;
  flex-direction: column;
}

.cases__card-image {
  width: 100%;
  position: relative;
  aspect-ratio: 350/220;
  margin-bottom: 1.42rem;
}

.cases__card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cases__card-description {
  color: #FFF;
  line-height: 1.75;
  margin-bottom: 1.42rem;
}

.cases__card-footer {
  background: #FFF;
  padding: 1rem 0.71rem;
  margin-top: auto;
}

.cases__card-meta {
  font-size: 0.92rem;
  line-height: 2;
}

.cases__card-company {
  font-size: 1.28rem;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  display: flex;
  align-items: center;
}

.cases__card-company span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 12px;
  background: #E1E1F1;
  justify-content: center;
  align-items: center;
  color: #3739A4;
  font-size: 0.92rem;
  line-height: 1;
  margin-left: 1.42rem;
}

.seminar {
  background: #EFF1F5;
  padding-top: 160px;
}

.seminar__card.section__card {
  border: 1px solid #E2E8F0;
  background: #FFF;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.1);
}

.seminar__card-image {
  width: 100%;
  aspect-ratio: 500/280;
  background: #e9ecef;
  position: relative;
}

.seminar__card-image img {
  height: 100%;
}

.seminar__card-label {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  padding: 7px 14px;
  font-family: "Shippori Mincho", serif;
}

.seminar__card-label.-free {
  background: #3739A4;
}

.seminar__card-label.-paid {
  background: #3794A3;
}

.seminar__card-label.-archive {
  background: #37A33A;
}

.seminar__card-date {
  margin-bottom: 8px;
  padding-left: 24px;
  background: url(assets/img/calendar.svg) no-repeat;
  background-size: 18px 18px;
}

.seminar__card-title {
  font-size: 1.42rem;
  margin-bottom: 16px;
  font-family: "Shippori Mincho", serif;
  color: #020817;
}

.seminar__card-meta {
  font-size: 12px;
  margin-bottom: 24px;
  line-height: 2;
}

.seminar__card-button {
  font-family: "Shippori Mincho", serif;
  color: #3739A4;
  border: 1px solid #3739A4;
  padding: 0.71rem 0;
  width: 100%;
  line-height: 1;
  margin-top: auto;
}

.news {
  background: #Fff;
}

.news__container.container {
  display: flex;
  gap: 7%;
}

@media (max-width: 767px) {
  .news__container.container {
    display: block;
  }
}

.news__container.container .section__title {
  margin-bottom: 2.1rem;
}

.news__container.container .section__subtitle {
  margin-bottom: 5rem;
}

.news__list {
  flex-grow: 1;
}

.news__item {
  padding: 16px 0;
}

.news__item:not(:last-child) {
  border-bottom: 1px solid #E2E8F0;
}

.news__item a {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .news__item a {
    flex-wrap: wrap;
  }
}

.news__item-date {
  margin-right: 1.07rem;
  font-family: "Cormorant", serif;
}

.news__item-label {
  color: #FFF;
  background: #3739A4;
  padding: 4px 8px;
  font-size: 0.85rem;
  margin-right: 1.07rem;
}

.news__item-text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
}

@media (max-width: 767px) {
  .news__item-text {
    flex-basis: 100%;
    margin-top: 5px;
  }
}

.cta {
  position: relative;
  overflow: hidden;
}

.cta__back {
  position: absolute;
  width: 100%;
  height: 102%;
  top: -1%;
  left: 0;
  background: linear-gradient(0deg, rgba(29, 30, 87, 0.5), rgba(29, 30, 87, 0.5)), url("assets/img/footer.jpg") center/cover no-repeat, #1D1E57;
  filter: blur(2.5px);
}

.cta__container.container {
  display: flex;
  justify-content: space-between;
  padding-top: 4.57rem;
  padding-bottom: 4.57rem;
  align-items: center;
  position: relative;
  z-index: 100;
}

@media (max-width: 767px) {
  .cta__container.container {
    flex-direction: column;
  }
}

.cta__title {
  font-size: 2.14rem;
  margin-bottom: 1.78rem;
  color: #FFF;
  font-family: "Shippori Mincho", serif;
}

@media (max-width: 767px) {
  .cta__title {
    order: 1;
  }
}

.cta__button-blue {
  color: #FFF;
  font-family: "Shippori Mincho", serif;
  background: #3739A4;
  display: inline-flex;
  width: 100%;
  padding: 15px 0px;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.75rem;
}

@media (max-width: 767px) {
  .cta__button-blue {
    width: 100%;
    order: 3;
  }
}

.cta__left {
  width: 50%;
}

@media (min-width: 768px) and (max-width:1279px) {
  .cta__left {
    width: 52%;
  }
}

@media (max-width: 767px) {
  .cta__left {
    width: 100%;
    display: contents;
  }
}

.cta__right {
  width: 45%;
}

@media (max-width: 767px) {
  .cta__right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    order: 2;
  }
}

.cta__link {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border-radius: 5px;
  background: #FFF;
  color: #3739A4;
  position: relative;
  font-size: 1.14rem;
  height: 108px;
  font-family: "Shippori Mincho", serif;
}

.cta__link svg {
  position: absolute;
  right: 5px;
  bottom: 5px;
}

@media (max-width: 767px) {
  .cta__link {
    line-height: 1.2;
    padding: 1rem 10px;
    height: 80px;
  }
}

.cta__link:not(:first-child) {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .cta__link:not(:first-child) {
    margin-top: 0;
  }
}

.cta__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: #FFF;
  font-family: "Shippori Mincho", serif;
}

@media (max-width: 767px) {
  .cta__contact {
    order: 4;
    justify-content: center;
    gap: 2rem 1rem;
  }
}

.cta__tel {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-shrink: 0;
}

.cta__tel-label {
  font-weight: 700;
  font-size: 1.14rem;
  position: relative;
  padding-left: 24px;
  display: inline-block;
}

.cta__tel-label::before {
  position: absolute;
  content: "";
  background: url(assets/img/tel_white.svg);
  background-size: contain;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.cta__tel-hours {
  font-size: 0.85rem;
}

.cta__button.section__button {
  margin-bottom: 0;
  width: 215px;
  height: 30px;
  padding-top: 0;
  font-size: 1rem;
  line-height: 30px;
  flex-shrink: 0;
}

.footer {
  background: #1D1E57;
}

.footer__container.container {
  padding-top: 50px;
  padding-bottom: 24px;
}

@media (max-width: 767px) {
  .footer__container.container {
    padding-top: 30px;
  }
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .footer__grid {
    display: block;
  }
}

.footer__brand {
  width: 28.3%;
}

@media (max-width: 767px) {
  .footer__brand {
    width: 100%;
    margin-bottom: 40px;
  }
}

.footer__logo {
  width: 235px;
  margin-bottom: 25px;
}

.footer__brand-description {
  line-height: 1.428;
  margin-bottom: 1.785rem;
  color: #9CA3AF;
}

.footer__sns {
  display: flex;
  gap: 10px;
}

.footer__sns-link {
  width: 32px;
  height: 32px;
}

.footer__sns-link img {
  width: 100%;
}

.footer__right {
  width: 42.3%;
  display: flex;
}

@media (min-width: 768px) and (max-width:1023px) {
  .footer__right {
    width: 52%;
  }
}

@media (max-width: 767px) {
  .footer__right {
    width: 100%;
  }
}

.footer__nav-section {
  flex-grow: 1;
}

.footer__nav-title {
  font-size: 1.28rem;
  margin-bottom: 1.1rem;
  color: #FFF;
  font-family: "Shippori Mincho", serif;
}

.footer__nav-link {
  display: inline-block;
  margin-bottom: 11px;
  color: #9CA3AF;
}

.footer__bottom {
  border-top: 1px solid #374151;
  padding-top: 25px;
  text-align: center;
}

@media (max-width: 767px) {
  .footer__bottom {
    display: block;
  }
}

.footer__copyright {
  font-family: "Shippori Mincho", serif;
  font-size: 0.85rem;
  color: #FFF;
}

.footer__policy-list {
  color: #9CA3AF;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}

@media (max-width: 767px) {
  .footer__policy-list {
    margin-top: 10px;
  }
}

.section__title {
  font-size: clamp(28px, 4.8vw, 60px);
  font-family: "Cormorant", serif;
  line-height: 1;
  margin-bottom: 1.14rem;
  text-align: center;
  color: #3739A4;
  font-weight: 100;
}

@media (max-width: 767px) {
  .section__title {
    font-size: 4rem;
  }
}

.section__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 2.3vw, 24px);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .section__subtitle {
    font-size: 1.4rem;
  }
}

.section__footer {
  margin-top: 3.57rem;
  text-align: center;
}

.section__button {
  width: 340px;
  line-height: 2.33;
  font-size: 1.28rem;
  font-weight: 700;
  border-bottom: 1px solid #333;
  display: inline-block;
  position: relative;
  font-family: "Shippori Mincho", serif;
  text-align: left;
}

.section__button::after {
  position: absolute;
  content: "";
  background: url(assets/img/button_arrow.svg);
  background-size: contain;
  width: 40.25px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

@media (min-width: 768px) and (max-width:1279px) {
  .section__button {
    width: 260px;
  }
}

@media (max-width: 767px) {
  .section__button {
    width: 230px;
  }
}

.section__button-white {
  color: white;
  border-bottom: 1px solid #fff;
}

.section__button-white::after {
  background: url(assets/img/button_arrow_white.svg);
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.78rem;
  margin-bottom: 40px;
}

.section__card {
  background: #FFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.section__card-content {
  padding: 1.1rem 1.1rem 1.785rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* 下層ページ */
/* Hero Section */
.hero {
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 100%),
    linear-gradient(0deg, #3739A4 0%, #3739A4 100%);
  color: white;
  margin-top: 110px;
  height: 380px;
  display: flex;
  align-items: center;
}

.hero__container {
  max-width: 1100px;
  width: 96%;
  height: 100%;
  padding: 20px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hero__subtitle {
  font-family: "Cormorant", serif;
  font-size: 2.85rem;
  color: #D7DEED;
  line-height: 1;
  margin-bottom: 15px;
}

.hero__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 3.43rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.breadcrumb li:first-child::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
  background-image: url("assets/img/home.svg");
  background-repeat: no-repeat;
  content: '';
  transform: translateY(1px);
}

.breadcrumb li:not(:last-child)::after {
  content: "／";
  margin: 1em;
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 627px;
}

.hero__description {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.14rem;
  line-height: 2;
  flex: 1;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.hero__btns .section__button {
  width: 288px;
}

@media (max-width: 767px) {
  .hero {
    margin-top: 90px;
    min-height: 450px;
    height: 100%;
  }

  .hero__container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
  }

  .hero__left {
    display: contents;
  }

  .hero__subtitle {
    order: 1;
    margin-bottom: 0;
  }

  .hero__title {
    order: 2;
    margin-bottom: 20px;
  }

  .hero__right {
    order: 3;
  }

  .breadcrumb {
    order: 4;
    margin-top: 20px;
  }

  .hero__btns {
    justify-content: center;
  }

}

/* 武蔵野コラム */
/* Search Section */
.search {
  background: #D7DEED33;
  padding: 80px 0 67px;
}

.search__container {
  max-width: 1100px;
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.search__form {
  display: flex;
  max-width: 340px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  overflow: hidden;
}

.search__input {
  flex: 1;
  padding: 11px 15px;
  font-size: 1.14rem;
  border: none;
}

.search__form input:focus {
  outline: none;
}

.search__btn {
  padding: 6px 12px;
  background: #3794A3;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  margin: 4px;
  position: relative;
  width: 78px;
  text-align: right;
}

.search__btn::before {
  position: absolute;
  content: "";
  background: url(assets/img/search.svg);
  background-size: contain;
  width: 1.14em;
  height: 1.14em;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}

.search__filters {
  display: flex;
  justify-content: center;
  gap: 10px 25px;
  flex-wrap: wrap;
}

.search__filter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1;
}

.search__checkbox {
  accent-color: #3739A4;
  font-size: inherit;
  height: 1em;
  width: 1em;
}

@media (max-width: 767px) {
  .search__container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* Articles Grid */
.articles {
  padding: 0 0 100px 0;
  background: #D7DEED33;
}

.articles__container {
  max-width: 1100px;
  width: 96%;
  margin: 0 auto;
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.article-card {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-card__image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-card__image img {
  height: 100%;
  object-fit: cover;
}

.article-card__content {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 10px;
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.article-card__tag {
  background: #3739A4;
  color: white;
  padding: 5px 10px;
  font-size: 0.93rem;
}

.article-card__date {
  color: #3739A4;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  margin-left: auto;
}

.article-card__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.29rem;
  font-weight: 500;
  line-height: 1.5;
  flex-grow: 1;
}

.article-card__excerpt {
  font-size: 1rem;
  color: #333333;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 767px) {
  .articles__grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.pagination__prev,
.pagination__next {
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
}

.pagination__prev::before {
  position: absolute;
  content: "";
  background: url(assets/img/article_arrow_prev.svg);
  background-size: contain;
  width: 40.25px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  left: -50.25px;
}

.pagination__next::after {
  position: absolute;
  content: "";
  background: url(assets/img/article_arrow_next.svg);
  background-size: contain;
  width: 40.25px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  right: -50.25px;
}

.pagination__btns {
  display: flex;
  gap: 10px;
}

.pagination__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3739A4;
  background: white;
  color: #3739A4;
  border-radius: 50%;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  transition: all 0.3s;
}

.pagination__btn--current {
  background: #3739A4;
  color: white;
}

@media (max-width: 767px) {
  .pagination {
    gap: 20px;
  }

  .pagination__prev,
  .pagination__next {
    font-size: 0;
  }
}

/* 経営者アカデミー */
/* Management Academy Section */
.management-academy-about {
  background: linear-gradient(112.61deg, #FFFFFF 3.62%, #DBEAFE 94.57%);
}

.management-academy-about .container {
  padding: 90px 0 50px;
}

.management-academy-about .section__title {
  margin-bottom: 1.43rem;
}

.management-academy-about .section__subtitle {
  margin-bottom: 3rem;
}

.management-academy__text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.29rem;
  line-height: 1.56;
  text-align: center;
  max-width: 767px;
  margin: 0 auto 3.57rem;
}

.management-academy__list {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 30px 0;
}

.management-academy__item {
  width: 33.33%;
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.64rem;
}

@media (max-width: 1279px) {
  .management-academy__item {
    padding: 0 25px;
  }
}

.management-academy__item:not(:last-child) {
  border-right: 1px solid #C9C9C9;
}

.management-academy__item-num {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 4.57rem;
  line-height: 0.375;
  color: #3739A41A;
}

.management-academy__item-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.29rem;
  line-height: 2;
  min-height: 4em;
  display: flex;
  align-items: center;
}

.management-academy__item-text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #4B5563;
}

@media (max-width: 767px) {
  .management-academy__list {
    flex-direction: column;
    padding: 0 30px;
  }

  .management-academy__item {
    width: 100%;
    gap: 2rem;
    padding: 30px 0;
  }

  .management-academy__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #C9C9C9;
  }

  .management-academy__item-title {
    min-height: auto;
  }
}

/* Seminar Section */
.academy .seminar {
  padding-top: 0;
  background: #FFFFFF;
}

.academy .seminar .container {
  padding: 50px 0 100px;
}

/* Membership System Section */
.membership {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 100%), linear-gradient(0deg, #3739A4 0%, #3739A4 100%);
  position: relative;
  z-index: 0;
}

.membership__bg {
  height: 200px;
  width: 100%;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  z-index: -1;
}

.membership .container {
  padding: 0 0 60px;
}

/* Tab Navigation */
.membership__tabs {
  max-width: 1000px;
  display: flex;
  background: #FFFFFF;
  border: 1px solid #9CA3AF;
  margin: 0 auto 50px;
  padding: 20px 0;
}

.membership__tab {
  flex: 1;
  padding: 0 20px 30px;
  text-align: center;
  background: white;
  font-family: "Shippori Mincho", serif;
  font-size: 1.29rem;
  line-height: 1.56;
  cursor: pointer;
  position: relative;
}

.membership__tab:not(:last-child) {
  border-right: 1px solid #9CA3AF;
}

.membership__tab::after {
  content: '';
  background: url(assets/img/member_arrow.svg);
  width: 22px;
  height: 11px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: 0.5em;
  transform: translateX(-50%);
}

/* Content Section */
.membership__content {
  background: white;
  max-width: 1000px;
  margin: 0 auto;
  padding: 45px 25px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
}

.membership__content-title {
  font-size: 2.14rem;
  font-weight: 700;
  color: #020817;
  margin-bottom: 60px;
}

.panel {
  display: none;
}

.panel--active {
  display: block;
}

/* Support List */
.support-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-list__item {
  display: flex;
  gap: 8px;
}

.support-list__icon {
  width: 24px;
  height: 24px;
  background: url(assets/img/check.svg);
  background-size: cover;
  flex-shrink: 0;
}

.support-list__content {
  flex: 1;
}

.support-list__title {
  font-size: 1.14rem;
  font-weight: 500;
  color: #020817;
  line-height: 1.5;
}

.support-list__description {
  font-size: 1.14rem;
  color: #4B5563;
  line-height: 1.5;
}

.support-list__description-list li {
  list-style: disc;
  font-size: 1.14rem;
  color: #4B5563;
  line-height: 1.5;
  margin-left: 1.5em;
}

@media (max-width: 768px) {
  .membership__bg {
    height: 235px;
  }

  .membership__tabs {
    flex-direction: column;
    padding: 0 20px;
  }

  .membership__tab {
    padding: 20px 0 30px;
    font-size: 13px;
    border-right: none;
  }

  .membership__tab::after {
    bottom: 1em;
  }

  .membership__tab:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #9CA3AF;
  }

  .membership__content {
    padding: 30px 25px;
  }

  .membership__content-title {
    margin-bottom: 30px;
  }

  .support-list__icon {
    width: 20px;
    height: 20px;
  }
}

/* Program Section */
.program {
  background: #FFFFFF;
}

.program .container {
  max-width: 95%;
}

.program__card {
  display: flex;
  flex-direction: row-reverse;
  height: 440px;
}

.program__card:not(:first-child) {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .program__card {
    flex-direction: column;
    height: auto;
  }
}

.program__card-img {
  width: 61%;
  background: #E5E7EB;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 865.5/577;
}

.program__card-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 767px) {
  .program__card-img {
    width: 100%;
  }
}

.program__card-text {
  width: 39%;
  background: #3739A4;
  color: #Fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 29px;
  padding: 2rem 1rem;
}

@media (max-width: 767px) {
  .program__card-text {
    width: 100%;
  }
}

.program__card-title {
  font-size: 2.29rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1;
}

.program__card-description {
  max-width: 382px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.14rem;
  line-height: 1.5;
}

.program__card-list {
  text-align: left;
  max-width: 382px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program__card-item {
  padding-left: 28px;
  background: url(assets/img/program_arrow.svg) left 0px top 2px no-repeat;
  background-size: 20px 20px;
  font-size: 1.14rem;
  line-height: 1.5;
}

/* Voice Section */
.voice-sec {
  background: #FFFFFF;
}

.voice-sec__list {
  max-width: 1064px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.voice-sec__item {
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid #EAEAEA;
  border-radius: 20px;
  box-shadow: 0px 1px 2px 0px #00000040;
  padding: 26px 32px;
}

.voice-sec__image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.voice-sec__image img {
  object-fit: cover;
  object-position: top;
}

.voice-sec__text p {
  font-size: 1.43rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 23px;
}

.voice-sec__text span {
  font-size: 1.14rem;
  line-height: 1.25;
  color: #6B7280;
}

@media (max-width: 767px) {
  .voice-sec__item {
    gap: 20px;
  }

  .voice-sec__image {
    width: 100px;
    height: 100px;
  }
}

/* Information Section */
.information {
  background: #F0F6FF;
}

.information .container {
  padding: 50px 0 30px;
}

.information__box {
  max-width: 1000px;
  margin: 0 auto;
  background: #FFFFFF;
  display: flex;
}

.information__conditions {
  width: 50%;
  padding: 30px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 37px;
  position: relative;
}

.information__conditions::after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 65%;
  background: #C9C9C9;
}

.information__title {
  font-size: 1.71rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  line-height: 2.42;
}

.information__list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.information__item {
  padding-left: 44px;
  background: url(assets/img/check.svg) no-repeat;
  background-size: 24px 24px;
  font-size: 1.14rem;
  line-height: 24px;
}

.information__price {
  width: 50%;
  padding: 30px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.information__price-heading {
  font-size: 1.14rem;
  line-height: 1.5;
  color: #4B5563;
  margin-bottom: 4px;
}

.information__price-amount {
  font-size: 2.14rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  line-height: 1.07;
  color: #3739A4;
  margin-bottom: 10px;
}

.information__price-payment {
  line-height: 1.43;
  color: #6B7280;
  margin-bottom: 20px;
}

.information__price-add {
  line-height: 1.43;
  color: #6B7280;
}

@media (max-width: 767px) {
  .information__box {
    flex-direction: column;
    height: auto;
  }

  .information__conditions,
  .information__price {
    width: 100%;
    padding: 30px;
  }

  .information__conditions::after {
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 80%;
    height: 1px;
    background: #C9C9C9;
  }

  .information__list {
    max-width: 400px;
  }

  .information__item {
    padding-left: 40px;
    background-size: 20px 20px;
    font-size: 1.14rem;
    line-height: 20px;
  }
}

/* Procedure Section */
.procedure {
  background: #F0F6FF;
}

.procedure .container {
  padding: 50px 0 100px;
}

.procedure__list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 45px 70px;
  background: #FFFFFF;
}

.procedure__item {
  margin: 0;
  position: relative;
  display: flex;
}

.procedure__item-num {
  font-size: 3.57rem;
  font-family: "Shippori Mincho", serif;
  color: #3739A4;
  text-align: center;
  width: 70px;
  margin-right: 44px;
  flex-shrink: 0;
}

.procedure__item-text {
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.5;
  border-left: 1px #9CA3AF solid;
  padding: 18px 0 65px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.procedure__item-text::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #3739A4;
  position: absolute;
  left: -10px;
  top: 20px;
  border-radius: 100%;
}

@media (max-width: 767px) {
  .procedure__list {
    padding: 30px 40px;
  }

  .procedure__item {
    flex-direction: column;
    border-left: 1px #9CA3AF solid;
  }

  .procedure__item-num {
    padding-left: 44px;
    font-size: 3rem;
  }

  .procedure__item-num::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #3739A4;
    position: absolute;
    left: -10px;
    top: 15px;
    border-radius: 100%;
  }

  .procedure__item-text {
    border-left: none;
    padding-top: 10px;
    padding-bottom: 30px;
    line-height: 1.5;
  }

  .procedure__item-text::before {
    display: none;
  }
}

/* FAQ Section */
.faq {
  background: #FFFFFF;
}

.faq .container {
  padding: 50px 0 80px;
}

.faq__item {
  width: 100%;
  padding: 33px 58px;
  box-shadow: 2px 2px 10px 0px #0000000D;
  margin-bottom: 30px;
}

.faq__question {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.71rem;
  color: #3739A4;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq__icon {
  width: 22px;
  height: 11px;
  transition: transform 0.3s ease;
}

.faq__item.open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.29rem;
  color: #374151;
}

.faq__item.open .faq__answer {
  max-height: 500px;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid #000000;
}

@media (max-width: 767px) {
  .faq__item {
    padding: 33px 20px;
  }
}

/* 利用規約 */
.academy .term__box {
  max-width: 1000px;
  height: 45vh;
  overflow-y: scroll;
  margin: 0 auto;
  padding: 45px 70px;
  background: #fff;
}
.academy .term__box p {
  margin-bottom: 20px;
}

/* お申込みフォーム */
.academy .apply {
  background: #fff;
}
.academy .apply__price {
  display: flex;
  max-width: 1000px;
  margin: 0 auto 30px;
  box-shadow: 4px 4px 4px 0px #00000040;
  border: 1px solid #C9C9C9;
}
.academy .apply__price h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 25px;
  background: #3739A4;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  line-height: 1;
}
.academy .apply__price p {
  padding: 30px 25px;
  font-size: 16px;
  line-height: 1.5;
}
.academy .apply__text {
  max-width: 1000px;
  margin: 0 auto;
  color: #DC2626;
}
.academy .apply__text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.25;
}
.academy .apply__box .jss6 {
  padding-top: 0;
}

/* 経営サポートパートナー制度 */
/* Support Partner Section */
.support-partner-about {
  background: linear-gradient(112.61deg, #FFFFFF 3.62%, #DBEAFE 94.57%);
}

.support-partner-about .container {
  padding: 90px 0 50px;
}

.support-partner-about .section__title {
  margin-bottom: 1.43rem;
}

.support-partner-about .section__subtitle {
  margin-bottom: 3rem;
}

.support-partner__text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.29rem;
  line-height: 1.56;
  text-align: center;
  max-width: 767px;
  margin: 0 auto 3.57rem;
}

.support-partner__list {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 30px 0;
}

.support-partner__item {
  width: 33.33%;
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.64rem;
}

.support-partner__item:not(:last-child) {
  border-right: 1px solid #C9C9C9;
}

.support-partner__item-num {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 4.57rem;
  line-height: 0.375;
  color: #3739A41A;
}

.support-partner__item-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.29rem;
  line-height: 2;
  min-height: 4em;
  display: flex;
  align-items: center;
}

.support-partner__item-text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #4B5563;
}

@media (max-width: 767px) {
  .support-partner__list {
    flex-direction: column;
    padding: 0 30px;
  }

  .support-partner__item {
    width: 100%;
    gap: 2rem;
    padding: 30px 0;
  }

  .support-partner__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #C9C9C9;
  }

  .support-partner__item-title {
    min-height: auto;
  }
}

/* Detail / Merit Section */
.detail,
.merit {
  background: #FFFFFF;
}

.detail .container,
.merit .container {
  max-width: 1260px;
  padding: 50px 0;
}

.merit__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2rem;
}

.merit__item {
  box-shadow: 4px 4px 4px 0px #00000040;
  border: 1px solid #C9C9C9
}

.merit__item-heading {
  display: flex;
  gap: 13px;
  align-items: center;
  height: 100px;
  background: #3739A4;
  padding: 0 20px;
}

.merit__item-num {
  font-family: "Shippori Mincho", serif;
  font-size: 6.86rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.21);
  position: relative;
  top: -5px;
}

.merit__item-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
}

.merit__item-text {
  width: 90%;
  margin: 0 auto 35px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #4B5563;
}

.merit__item-body {
  padding: 30px 25px;
}

.merit__item-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.merit__item-item {
  padding-left: 34px;
  background: url(assets/img/check.svg) no-repeat;
  background-size: 20px 20px;
  font-size: 1.14rem;
  line-height: 20px;
}

/* Subject Section */
.subject {
  background: #F0F6FF;
}

.subject .container {
  max-width: 1000px;
  padding: 50px 0 150px;
}

.subject__list {
  width: 100%;
  background: #FFFFFF;
  padding: 45px 70px;
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.subject__item {
  display: flex;
  gap: 40px;
}

.subject__item-num {
  font-family: "Shippori Mincho", serif;
  font-size: 3.57rem;
  line-height: 1;
  color: #3739A4;
  flex-shrink: 0;
}

.subject__item-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.29rem;
  line-height: 1.56;
  color: #020817;
  margin-bottom: 10px;
}

.subject__item-text {
  font-size: 1.14rem;
  line-height: 1.5;
  color: #4B5563;
}

@media (max-width: 767px) {
  .subject__list {
    padding: 45px 20px;
  }

  .subject__item {
    gap: 20px;
  }
}

/* Compare Section */
.partner .compare {
  background: #FFFFFF;
}

.partner .compare .comtainer {
  max-width: 896px;
  padding: 50px 0 60px;
}

.compare__table {
  overflow-x: auto;
}

.compare__table table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border: 1px solid #E2E8F0;
}

.compare__table th {
  background: #F3F4F6;
  font-weight: 700;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #020817;
  padding: 14px 12px;
  border: 1px solid #E2E8F0;
}

.compare__table td {
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #020817;
  padding: 14px 12px;
  border: 1px solid #E2E8F0;
}

.compare__table td span {
  color: #D97706;
}

/* Voice Section */
.voice-sec__text .voice-sec-position {
  font-weight: 700;
  color: #020817;
  margin-right: 20px;
}

/* Information Section */
.spartner .information__price-amount {
  margin-bottom: 50px;
}

/* Procedure Section */
.procedure__item-text span {
  color: #4B5563;
}

/* 武蔵野の強み */
/* Strengths Section */
.strengths-about {
  background: #FFFFFF;
}

.strengths-about .container {
  max-width: 95%;
}

.strengths__card {
  display: flex;
  flex-direction: row-reverse;
  height: 550px;
}

.strengths__card:not(:first-child) {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .strengths__card {
    flex-direction: column;
    height: auto;
  }
}

.strengths__card-img {
  width: 61%;
  background: #E5E7EB;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 865.5/577;
}

.strengths__card-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 767px) {
  .strengths__card-img {
    width: 100%;
  }
}

.strengths__card-text {
  width: 39%;
  background: #3739A4;
  color: #Fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

@media (max-width: 767px) {
  .strengths__card-text {
    width: 100%;
  }
}

.strengths__card-label {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: "Shippori Mincho", serif;
}

.strengths__card-title {
  font-size: 1.71rem;
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}

.strengths__card-subtitle {
  font-size: 1.29rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.strengths__card-description {
  font-size: 1.14rem;
  line-height: 1.5;
  max-width: 413px;
  margin-bottom: 2rem;
}

.strengths-about .section__button {
  width: 240px;
}

/* Consulting01 Section */
.consulting01 {
  background: #F0F6FF;
  padding: 0;
}

.consulting01 .container {
  padding: 90px 0 100px;
}

/* Compare Section */
.strengths .compare {
  background: #F0F6FF;
}

.strengths .compare .container {
  padding: 0 0 20px;
  max-width: 1000px;
}

.compare__list {
  background: #FFFFFF;
  display: flex;
  padding: 40px 0;
  margin-bottom: 30px;
}

.compare__item {
  width: 33.33%;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.compare__item:not(:last-child) {
  border-right: 1px solid #C9C9C9;
}

.compare__image {
  height: 60px;
  margin-bottom: 10px;
}

.compare__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.43rem;
  color: #020817;
  line-height: 1.4;
  margin-bottom: 15px;
}

.compare__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.14rem;
  color: #4B5563;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .compare__list {
    flex-direction: column;
    height: auto;
    padding: 0 20px;
  }

  .compare__item {
    width: 100%;
    padding: 30px 0;
  }

  .compare__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #C9C9C9;
  }

  .compare__title {
    height: auto;
  }
}

/* Consulting02 Section */
.consulting02 {
  background: #FFFFFF;
}

.consulting02 .container {
  max-width: 1000px;
  padding: 50px 0;
}

.consulting__description {
  max-width: 737px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #374151;
}

.consulting__list {
  border: 1px solid #9CA3AF;
  padding: 30px 0;
  display: flex;
}

.consulting__item {
  width: 33.33%;
  padding: 0 53px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.consulting__item:not(:last-child) {
  border-right: 1px solid #C9C9C9;
}

.consulting__item-num {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 4.57rem;
  color: #3739A41A;
  line-height: 1;
}

.consulting__item-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.43rem;
  color: #020817;
  line-height: 1.4;
}

.consulting__item-text {
  font-weight: 400;
  font-size: 1.14rem;
  color: #4B5563;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .consulting__list {
    flex-direction: column;
    padding: 0 20px;
  }

  .consulting__item {
    width: 100%;
    padding: 30px 0;
  }

  .consulting__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #C9C9C9;
  }

  .consulting__item-title {
    height: auto;
  }
}

/* Information Section */
.related-information {
  background: #FFFFFF;
}

.related-information .container {
  max-width: 1368px;
  padding: 50px 0;
}

.related-information__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.related-information__item {
  border: 1px solid #E5E7EB;
  box-shadow: 0px 1px 2px 0px #0000000D;
}

.related-information__item-body {
  padding: 25px;
}

.related-information__item-title {
  font-weight: 700;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #020817;
}

.related-information__item-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.43;
  color: #4B5563;
}

.related-information__item-image {
  aspect-ratio: 158 / 89;
  object-fit: cover;
}

/* 会社情報 */
/* Tab Navigation */
.company__nav {
  background: #F0F6FF;
}

.company__nav .container {
  padding: 40px 0 50px;
}

.common__tabs,
.common__link-tabs {
  width: 100%;
  display: flex;
  background: #FFFFFF;
  border: 1px solid #9CA3AF;
  box-shadow: 0px 1px 2px 0px #00000040;
  padding: 20px 0;
}

.common__tab,
.common__link-tabs a {
  flex: 1;
  padding: 0 20px 30px;
  text-align: center;
  background: white;
  cursor: pointer;
  position: relative;
}

.common__tab,
.common__link-tab {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.29rem;
  line-height: 1.56;
}

.common__tab span,
.common__link-tab span {
  font-size: 2.29rem;
  line-height: 1;
  color: #3739A4;
}

.common__tab:not(:last-child),
.common__link-tabs a:not(:last-child)  {
  border-right: 1px solid #9CA3AF;
}

.common__tab::after,
.common__link-tabs a::after {
  content: '';
  background: url(assets/img/member_arrow.svg);
  width: 22px;
  height: 11px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .common__tabs {
    flex-direction: column;
    padding: 0 20px;
  }

  .common__tab,
  .common__link-tabs a {
    padding: 20px 0 30px;
    font-size: 13px;
    border-right: none;
  }

  .common__tab::after,
  .common__link-tabs a::after {
    bottom: 1em;
  }

  .common__tab:not(:last-child),
  .common__link-tabs a:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #9CA3AF;
  }
}

/* Message Section */
.message {
  background: #FFFFFF;
}

.message .container {
  max-width: 896px;
}

.message__wrapper {
  display: flex;
  justify-content: space-between;
}

.message__left {
  width: 28%;
  margin-left: 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.message__image {
  flex-grow: 1;
}

.message__image img {
  height: 100%;
}

.message__name {
  text-align: center;
  margin-top: 5px;
}

.message__name span {
  line-height: 1.43;
  color: #6B7280;
}

.message__name p {
  font-weight: 700;
  font-size: 1.43rem;
  line-height: 1.4;
  color: #020817;
}

.message__right {
  width: 64%;
}

.message__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.43rem;
  line-height: 1.5;
  color: #020817;
  margin-bottom: 43px;
}

.message__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #374151;
}

@media (max-width: 767px) {
  .message__wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .message__left,
  .message__right {
    width: 100%;
  }

  .message__left {
    margin: 0;
  }

  .message__image {
    width: 150px;
    height: 150px;
  }

  .message__image img {
    object-fit: cover;
    object-position: top -15px left 0;
    height: 100%;
  }

  .message__title {
    text-align: center;
  }
}

/* About Us Section */
.about-us {
  background: #FFFFFF;
}

.about-us .container {
  max-width: 896px;
  padding: 60px 0;
}

.about-us table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E2E8F0;
}

.about-us table th {
  background: #3739A4;
  border: 1px solid #E2E8F0;
  padding: 20px 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.43rem;
  line-height: 1.5;
  color: #FFFFFF;
  width: 33%;
}

.about-us table td {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 20px 30px;
  font-size: 1.43rem;
  line-height: 1.5;
  color: #020817;
  width: 67%;
}

.about-us table ul>li>ul {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .about-us table tr {
    display: flex;
    flex-direction: column;
  }

  .about-us table th,
  .about-us table td {
    width: 100%;
  }
}

/* Company History Section */
.history {
  background: #FFFFFF;
}

.history .container {
  max-width: 896px;
  padding: 50px 0 60px;
}

.history__list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 45px 70px;
  background: #FFFFFF;
}

.history__item {
  margin: 0;
  position: relative;
  display: flex;
}

.history__item-year {
  font-size: 3.57rem;
  font-family: "Shippori Mincho", serif;
  color: #3739A4;
  text-align: center;
  width: 127px;
  margin-right: 44px;
  flex-shrink: 0;
}

.history__item-text {
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #020817;
  border-left: 1px #9CA3AF solid;
  padding: 18px 0 65px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.history__item-text::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #3739A4;
  position: absolute;
  left: -10px;
  top: 20px;
  border-radius: 100%;
}

@media (max-width: 767px) {
  .history__list {
    padding: 30px 40px;
  }

  .history__item {
    flex-direction: column;
    border-left: 1px #9CA3AF solid;
  }

  .history__item-year {
    padding-left: 44px;
    font-size: 3rem;
  }

  .history__item-year::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #3739A4;
    position: absolute;
    left: -10px;
    top: 15px;
    border-radius: 100%;
  }

  .history__item-text {
    border-left: none;
    padding-top: 10px;
    padding-bottom: 30px;
    line-height: 1.5;
  }

  .history__item-text::before {
    display: none;
  }
}

/* Vision Section */
.vision {
  background: #FFFFFF;
}

.vision .container {
  max-width: 95%;
  padding: 50px 0 80px;
}

.vision__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 2.86rem;
  line-height: 1.7;
  color: #1E40AF;
  text-align: center;
}

.vision__card {
  display: flex;
  flex-direction: row-reverse;
  height: 440px;
}

.vision__card:not(:first-child) {
  margin-top: 10px;
}

.vision__card-description.value {
  text-align: left;
}

@media (max-width: 767px) {
  .vision__card {
    flex-direction: column;
    height: auto;
  }
}

.vision__card-img {
  width: 61%;
  background: #E5E7EB;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 865.5/577;
}

.vision__card-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 767px) {
  .vision__card-img {
    width: 100%;
  }
}

.vision__card-text {
  width: 39%;
  background: #3739A4;
  color: #Fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 29px;
  padding: 2rem 1rem;
}

@media (max-width: 767px) {
  .vision__card-text {
    width: 100%;
  }
}

.vision__card-title {
  font-size: 4.57rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1;
}

.vision__card-description {
  max-width: 368px;
  width: 100%;
  margin: 0 auto;
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
  line-height: 1.5;
}

.vision__card-list {
  text-align: left;
  max-width: 382px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vision__card-item {
  padding-left: 28px;
  background: url(assets/img/vision_arrow.svg) left 0px top 2px no-repeat;
  background-size: 20px 20px;
  font-size: 1.14rem;
  line-height: 1.5;
}

/* Access Section */
.access {
  background: #FFFFFF;
}

.access .container {
  max-width: 1160px;
  padding: 64px 0 80px;
}

.access__wrapper {
  display: flex;
  gap: 60px;
}

.access__left {
  width: 50%;
}

.access__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #020817;
}

.access__right-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.access__adress {
  padding-left: 32px;
  background: url(assets/img/access_adress.svg) no-repeat;
  background-size: 20px 20px;
}

.access__tel {
  padding-left: 32px;
  background: url(assets/img/access_tel.svg) no-repeat;
  background-size: 20px 20px;
}

.access__mail {
  padding-left: 32px;
  background: url(assets/img/access_mail.svg) no-repeat;
  background-size: 20px 20px;
}

.access__time {
  padding-left: 32px;
  background: url(assets/img/access_time.svg) no-repeat;
  background-size: 20px 20px;
}

.access__train-title {
  font-weight: 700;
  font-size: 1.43rem;
  line-height: 1.4;
  margin-bottom: 16px;
}

.access__train {
  padding-left: 32px;
  background: url(assets/img/access_train.svg) left 0px top 2px no-repeat;
  background-size: 20px 20px;
}

@media (max-width: 767px) {
  .access__wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .access__left {
    width: 100%;
    height: 300px;
  }

  .access__right {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}

/* イベント・セミナー */
/* Category Section */
.category {
  background: #FFFFFF;
}

.category .container {
  max-width: 896px;
  padding: 34px 0 40px;
}

.category__wrapper {
  width: 100%;
  background: #F9FAFB;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.category__filter {
  padding-left: 36px;
  background: url(assets/img/filter.svg) no-repeat;
  background-size: 20px 20px;
  line-height: 20px;
  color: #020817;
  flex-shrink: 0;
}

.category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category__item label {
  padding: 4px 10px;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 15px;
  border: 1px solid #E2E8F0;
  border-radius: 100px;
  display: block;
  cursor: pointer;
}
.category__item input {
  display: none;
}

.category__item label:has(input:checked) {
	color: #3739A4;
	font-weight: bold;
  background: #3739A433;
}

/* seminar articles Grid */
.seminar-articles {
  background: #FFFFFF;
}

.seminar-articles .container {
  max-width: 1360px;
  padding: 0 0 95px;
}

.seminar-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.seminar-article-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.seminar-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.seminar-article-card__label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 12px;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 15px;
  color: #FFFFFF;
  z-index: 1;
}

.label-few {
  background: #DC2626;
}

.label-archive {
  background: #9333EA;
}

.seminar-article-card__image {
  width: 100%;
  height: 222px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.seminar-article-card__image img {
  height: 100%;
  object-fit: cover;
}

.seminar-article-card__content {
  padding: 20px 20px 25px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 15px;
}

.seminar-article-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.seminar-article-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.seminar-article-card__tag {
  background: #3739A4;
  color: #FFFFFF;
  padding: 5px 10px;
  font-size: 0.93rem;
}

.seminar-article-card__dates {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 3px;
}

.seminar-article-card__date {
  color: #6B7280;
  font-size: 1rem;
  line-height: 20px;
  padding-left: 24px;
  background: url(assets/img/calendar.svg) no-repeat;
  background-size: 20px 20px;
}

.seminar-article-card__title {
  font-size: 1.29rem;
  font-weight: 700;
  line-height: 1.56;
  color: #020817;
  flex-grow: 1;
}

.seminar-article-card__excerpt {
  font-size: 1rem;
  color: #333333;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 767px) {
  .seminar-articles__grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

/* セミナー・イベント　記事 */
/* Article Section */
.seminar-article {
  background: #FFFFFF;
}

.seminar-article .container {
  padding: 0 0 32px;
}

.seminar-article__date {
  color: #6B7280;
  font-size: 1rem;
  line-height: 20px;
  padding-left: 24px;
  background: url(assets/img/calendar.svg) no-repeat;
  background-size: 20px 20px;
  margin-bottom: 10px;
}

.seminar-article__title {
  font-weight: 700;
  font-size: 1.71rem;
  line-height: 1.17;
  margin-bottom: 30px;
  ;
}

.seminar-article__eyecatch {
  width: 100%;
  margin-bottom: 48px;
}

.seminar-article__body {
  display: flex;
  gap: 50px;
}

.seminar-article__content p {
  font-size: 1.14rem;
  line-height: 2;
  margin-bottom: 15px;
}

.seminar-article__content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seminar-article__content li {
  padding-left: 24px;
  background: url(assets/img/check.svg) left center no-repeat;
  background-size: 16px 16px;
  font-size: 1.14rem;
  line-height: 1.5rem;
}

.seminar-article__supplement {
  max-width: 320px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.seminar-article__plan {
  width: 100%;
  padding: 15px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.43;
  color: #4B5563;
}

.seminar-article__supplement .section__button {
  width: 240px;
}

.seminar-article__plan-address {
  padding-left: 24px;
  background: url(assets/img/article_adress.svg) no-repeat;
  background-size: 16px 16px;
}

.seminar-article__plan-subject {
  padding-left: 24px;
  background: url(assets/img/article_subject.svg) no-repeat;
  background-size: 16px 16px;
}

.seminar-article__plan-theme {
  padding-left: 24px;
  background: url(assets/img/article_theme.svg) no-repeat;
  background-size: 16px 16px;
}

@media (max-width: 767px) {
  .seminar-article__body {
    flex-direction: column;
    align-items: center;
  }

  .seminar-article__supplement {
    gap: 40px;
  }
}

/* Seminar Section */
.seminar-event-article .seminar {
  background: #FFFFFF;
  padding-top: 0;
}

.seminar-event-article .seminar .container {
  padding: 60px 0 50px;
}

/* Consulting Section */
.seminar-event-article .consulting {
  background: #FFFFFF;
  padding-bottom: 0;
}

.seminar-event-article .consulting .container {
  padding: 50px 0 100px;
}

/* お客様の声 */
/* Point Section */
.point {
  background: linear-gradient(112.61deg, #FFFFFF 3.62%, #DBEAFE 94.57%);
}

.point .container {
  padding: 50px 0;
}

.point__list {
  background: #FFFFFF;
  display: flex;
  padding: 30px 0;
  height: 313px;
}

.point__item {
  flex: 1;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.point__item:not(:last-child) {
  border-right: 1px solid #C9C9C9;
}

.point__image {
  height: 60px;
  margin-bottom: 20px;
}

.point__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.43rem;
  color: #020817;
  line-height: 1.4;
  margin-bottom: 10px;
  height: calc(2.8rem + 10px);
}

.point__text {
  font-weight: 400;
  font-size: 1.14rem;
  color: #374151;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .point__list {
    flex-direction: column;
    height: auto;
    padding: 0 20px;
  }

  .point__item {
    width: 100%;
    padding: 30px 0;
  }

  .point__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #C9C9C9;
  }

  .point__title {
    height: auto;
  }
}

/* Voice Section */
section.voice {
  background: #3739A4;
  position: relative;
  z-index: 0;
}
section.voice .section__title,
section.voice .section__subtitle {
  color: #fff;
}


.voice__bg {
  height: 283px;
  width: 100%;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  z-index: -1;
}

section.voice .container {
  max-width: 1375px;
  padding: 50px 0 60px;
}

section.voice .common__tab {
  justify-content: space-evenly;
  gap: 10px;
  padding: 0 10px 20px;
}

section.voice .common__tab span {
  font-size: clamp(18px, 2.4vw, 2.14rem);
}

.voice__list {
  max-width: 1064px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voice__item {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  padding: 25px;
  display: flex;
  gap: 25px;
}

.voice__item-heading {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.voice__item-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

.voice__item-image img {
  object-fit: cover;
  object-position: top;
  height: 100%;
}

.voice__item-who {
  display: flex;
  flex-direction: column;
}

.voice__item-company {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.43rem;
  line-height: 1.2;
  color: #020817;
  margin-bottom: 9px;
}

.voice__item-name {
  font-size: 1.14rem;
  line-height: 1.25;
  color: #6B7280
}

.voice__item-body {
  display: flex;
  flex-direction: column;
}

.voice__item-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 2.14rem;
  line-height: 1.2;
  color: #020817;
  margin-bottom: 34px;
}

.voice__item-text {
  font-size: 1.43rem;
  line-height: 1.2;
  color: #4B5563;
  margin-bottom: 20px;
}

.voice__item-btn {
  align-self: flex-end;
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
  color: #3739A4;
  border: 1px solid #3739A4;
  padding: 10px;
  width: 320px;
  line-height: 1.5;
  margin-top: auto;
  text-align: center;
}

section.voice .pagination {
  background: #FFFFFF;
  padding: 30px 0 60px;
}

@media (max-width: 768px) {
  .voice__bg {
    height: 350px;
  }

  section.voice .common__tab {
    padding: 10px 0 20px;
  }

  section.voice .common__tab::after {
    bottom: 5px;
  }

  .voice__item {
    flex-direction: column;
  }

  .voice__item-heading {
    flex-direction: row;
  }

  .voice__item-image {
    width: 100px;
    height: 100px;
  }

  .voice__item-title {
    margin-bottom: 20px;
  }

  .voice__item-btn {
    width: 100%;
  }
}

/* Case Section */
.case {
  background: #FFFFFF;
}

.case .container {
  max-width: 1358px;
  padding: 40px 0 50px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 50px;
}

.case-card {
  border: 1px solid #E5E7EB;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.case-card__image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-card__image img {
  height: 100%;
  object-fit: cover;
}

.case-card__content {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 10px;
}

.case-card__tag {
  background: #3739A4;
  color: white;
  padding: 5px 10px;
  font-size: 0.93rem;
}

.case-card__title {
  font-size: 1.29rem;
  font-weight: 700;
  line-height: 1.56;
  color: #020817;
}

.case-card__excerpt {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.5;
  flex-grow: 1;
  min-height: 100px;
}

.case-card__button {
  align-self: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
  color: #3739A4;
  border: 1px solid #3739A4;
  padding: 10px;
  width: 320px;
  line-height: 1.5;
  margin-top: auto;
  text-align: center;
}

/* Merit Section */
.voice-page .merit .container {
  max-width: 1210px;
}

.voice-page .merit .merit__list {
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
}

/* お問い合わせ */
/* Contact Form Section */
.cf {
  background: #FFFFFF;
}

.cf .container {
  max-width: 896px;
  padding: 80px 0 30px;
  display: flex;
}

.cf__wrapper {
  display: flex;
  gap: 32px;
  width: 100%;
}

.contact-form {
  width: 70%;
  background: white;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.contact-form__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.71rem;
  font-weight: bold;
  color: #3739A4;
  line-height: 1.33;
  margin-bottom: 24px;
  text-align: left;
}

/* Form Groups */
.form-group {
  margin-bottom: 24px;
}

.form-group--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group__label {
  font-size: 1.29rem;
  font-weight: 500;
  color: #020817;
  line-height: 1.56;
  margin-bottom: 12px;
  display: block;
}

.form-group__required {
  color: #EF4444;
  margin-left: 4px;
}

/* Radio Buttons */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}

.radio-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-group .wpcf7-list-item label input {
  width: 16px;
  height: 16px;
  border: 1px solid #2563EB;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  background: white;
  appearance: none;
  transition: all 0.3s ease;
}

.wpcf7-list-item input:checked {
  border-color: #2563EB;
  background: #FFFFFF;
}

.radio-group .wpcf7-list-item label input:checked::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #2563EB;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-group .wpcf7-list-item label-label {
  font-size: 1rem;
  line-height: 1;
  color: #020817;
  cursor: pointer;
}

/* Input Fields */
.form-input {
  width: 100%;
  padding: 12px;
  border: 2px solid #E2E8F0;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
  background: white;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #2563EB;
}

.form-input--textarea {
  min-height: 150px;
  resize: vertical;
}

/* Checkbox */
.checkbox-group {
  margin-top: 15px;
}

.checkbox-group__label {
  font-size: 1rem;
  font-weight: 500;
  color: #020817;
  line-height: 1.2;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
  color: #020817;
}

.wpcf7-list-item .checkbox__input {
  width: 16px;
  height: 16px;
  border: 1px solid #2563EB;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  background: white;
  appearance: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.wpcf7-list-item .checkbox__input:checked {
  border-color: #2563EB;
  background: #2563EB;
}

.wpcf7-list-item .checkbox__input:checked::after {
  content: '✓';
  color: white;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-option__input {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  background: white;
  appearance: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-option__input:checked {
  border-color: #2563eb;
  background: #2563eb;
}

.checkbox-option__input:checked::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-option__label {
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.checkbox__input+.wpcf7-list-item-label {
  display: block;
  font-size: 1rem;
  color: #020817;
  line-height: 1.2;
}

.checkbox__link {
  color: #2563EB;
}

.privacy-group .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

/* Submit Button */
.submit-button {
  width: 100%;
  max-width: 120px;
  margin: 40px auto 0;
  display: block;
  padding: 13px 30px;
  background: #2563EB;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

.submit-button:active {
  transform: translateY(0);
}

/* Validation Styles */
.form-input--error {
  border-color: #e53e3e;
}

.wpcf7-not-valid-tip{
  color: #e53e3e;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

.contact-form .wpcf7-response-output {
  padding: 20px !important;
  text-align: center;
}

.cf__supplement {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info {
  background: white;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.contact-info__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.29rem;
  line-height: 1.56;
  color: #3739A4;
  margin-bottom: 16px;
}

.contact-info__tel {
  padding-left: 32px;
  background: url(assets/img/contact_tel.svg) no-repeat;
  background-size: 20px 20px;
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #020817;
  margin-bottom: 18px;
}

.contact-info__mail {
  padding-left: 32px;
  background: url(assets/img/contact_mail.svg) no-repeat;
  background-size: 20px 20px;
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #020817;
  margin-bottom: 18px;
}

.contact-info__date {
  padding-left: 32px;
  background: url(assets/img/contact_date.svg) no-repeat;
  background-size: 20px 20px;
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #020817;
}

.contact-info__tel span,
.contact-info__mail span,
.contact-info__date span {
  font-family: "Shippori Mincho", serif;
}

.contact-hurry {
  background: #EFF6FF;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  padding: 25px;
}

.contact-hurry__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.29rem;
  line-height: 1.56;
  color: #020817;
  margin-bottom: 28px;
  ;
}

.contact-hurry p {
  margin-bottom: 33px;
}

.contact-hurry .section__button {
  width: 210px;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cf__wrapper {
    flex-direction: column;
  }

  .contact-form,
  .cf__supplement {
    width: 100%;
  }

  .form-group--half {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .radio-group {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-input--textarea {
    min-height: 120px;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .privacy-group {
    flex-direction: column;
    gap: 8px;
  }

  .submit-button {
    max-width: 100%;
    margin-top: 30px;
  }
}

/* 資料請求 */
/* Feature Section */
.feature {
  background: linear-gradient(112.61deg, #FFFFFF 3.62%, #DBEAFE 94.57%);
}

.feature .container {
  padding: 90px 0 50px;
}

.feature .section__title {
  margin-bottom: 1.43rem;
}

.feature .section__subtitle {
  margin-bottom: 3rem;
}

.feature__list {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 30px 0;
}

.feature__item {
  width: 33.33%;
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.feature__item:not(:last-child) {
  border-right: 1px solid #C9C9C9;
}

.feature__item-num {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 4.57rem;
  line-height: 0.375;
  color: #3739A41A;
}

.feature__item-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.29rem;
  line-height: 2;
  display: flex;
  align-items: center;
}

.feature__item-text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #4B5563;
}
.feature__item-text a {
  color: #3739A4;
}

@media (max-width: 767px) {
  .feature__list {
    flex-direction: column;
    padding: 0 30px;
  }

  .feature__item {
    width: 100%;
    gap: 2rem;
    padding: 30px 0;
  }

  .feature__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #C9C9C9;
  }

  .feature__item-title {
    min-height: auto;
  }
}

/* Request Form Section */
.request-form {
  background: #FFFFFF;
}

.request-form .container {
  max-width: 896px;
  padding: 50px 0 60px;
}

.document-request__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 2.14rem;
  line-height: 1.2;
  color: #3739A4;
  text-align: center;
  margin-bottom: 32px;
}

.document-request {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 25px;
  width: 100%;
}

.document-request .submit-button {
  max-width: 100%;
  font-size: 1.5rem;
}

/* Contact Us Section */
.contact-us {
  background: #FFFFFF;
}

.contact-us .container {
  padding: 50px 0 0;
}

.contact-us__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 2.14rem;
  line-height: 1.2;
  color: #3739A4;
  text-align: center;
  margin-bottom: 32px;
}

.contact-us__text {
  font-size: 1.14rem;
  line-height: 1.5;
  color: #4B5563;
  text-align: center;
  margin-bottom: 60px;
}

.contact-us__content {
  width: 100%;
  background: #3739A4;
  color: #FFFFFF;
  padding: 35px 0;
  display: flex;
}

.contact-us__item {
  width: 50%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-us__item-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 2.14rem;
  line-height: 1;
  margin-bottom: 27px;
}

.contact-us__item-text {
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
  margin-bottom: 17px;
}

.contact-us__item--tel,
.contact-us__item--mail {
  max-width: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FFFFFF;
  padding: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.79rem;
  line-height: 45px;
  margin-bottom: 18px;
}

.contact-us__item--tel img,
.contact-us__item--mail img {
  width: 45px;
  height: 45px;
  margin-right: 30px;
}

.contact-us__item span {
  font-family: "Shippori Mincho", serif;
  font-family: 500;
  font-size: 0.86rem;
  line-height: 1;
}

.contact-us__item:first-child {
  border-right: 1px solid #FFFFFF;
}

.contact-us .section__footer {
  padding: 0 20px 80px;
}

@media (max-width: 767px) {
  .contact-us__content {
    flex-direction: column;
    padding: 0 30px;
  }

  .contact-us__item {
    width: 100%;
    padding: 30px 0;
  }

  .contact-us__item:first-child {
    border-right: none;
    border-bottom: 1px solid #FFFFFF;
  }

  .contact-us__item--tel img,
  .contact-us__item--mail img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }
}

/* 経営のそばに、信頼できる伴走車を */
/* Running Section */
.running-sec {
  margin-top: 110px;
  background: linear-gradient(112.61deg, #FFFFFF 3.62%, #DBEAFE 94.57%);
}

.running-sec .container {
  padding: 110px 0 100px;
  text-align: center;
}

.running__text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.29rem;
  line-height: 1.56;
  color: #4B5563;
  padding: 30px 0;
}

@media (max-width: 767px) {
  .running-sec {
    margin-top: 90px;
  }
}

/* Stars Section */
.stars {
  background: #FFFFFF;
}

.stars .container {
  padding: 110px 0 100px;
}

.stars__text {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.29rem;
  line-height: 1.56;
  color: #4B5563;
}

.stars__text p {
  margin-bottom: 1rem;
}

.stars__text span {
  color: #3739A4;
  font-weight: 900;
}

/* Advisor Sectiohn */
.advisor {
  background: #FFFFFF;
}

.advisor .container {
  max-width: 1147px;
  padding: 80px 0 60px;
}

.advisor-card {
  background: white;
  border: 1px solid #ECECEC;
  border-radius: 20px;
  box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 50px;
  overflow: hidden;
}

.advisor-card__content {
  display: flex;
}

.advisor-card__image {
  max-width: 360px;
  width: 30%;
  position: relative;
  display: flex;
}

.advisor-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.advisor-card__profile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.advisor-card__who {
  background: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
}

.advisor-card__name {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 2.29rem;
  line-height: 1.38;
  color: #020817;
}

.advisor-card__position {
  font-family: "Shippori Mincho", serif;
  font-size: 1.43rem;
  line-height: 1.5;
  color: #4B5563;
}

.advisor-card__rating {
  display: flex;
  justify-content: center;
  height: 45px;
  padding-top: 8px;
}

.star {
  color: #fbbf24;
  font-size: 1.43rem;
}

.advisor-card__body {
  padding: 50px 30px;
  flex: 1;
}

.advisor-card__description {
  font-size: 1.43rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 1rem;
}

.advisor-card__description span {
  font-weight: 700;
}

.advisor-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.advisor-card__tag {
  padding: 5px 10px;
  font-size: 0.93rem;
}

.-blue .advisor-card__tag {
  background: #EFF6FF;
  color: #1E40AF;
}

.-green .advisor-card__tag {
  background: #DCFCE7;
  color: #166534;
}

.-yellow .advisor-card__tag {
  background: #FEF3C7;
  color: #92400E;
}

.-purple .advisor-card__tag {
  background: #F3E8FF;
  color: #6B21A8;
}

@media (max-width: 500px) {
  .advisor-card__content {
    flex-direction: column;
  }

  .advisor-card__image {
    width: 100%;
    max-width: 100%;
    height: 400px;
  }

  .advisor-card__image img {
    object-position: 50% 20%;
  }
}

/*strategic Partner Section */
.strategic {
  background: #F0F6FF;
}

.strategic .container {
  padding: 150px 0 120px;
}

.strategic__text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.29rem;
  line-height: 1.56;
  color: #4B5563;
  padding: 30px 0;
  text-align: center;
  margin-bottom: 70px;
}

.strategic__text p {
  margin-bottom: 1rem;
}

.border__button {
  background: #FFFFFF;
  border: 1px solid #3739A4;
  max-width: 320px;
  width: 100%;
  padding: 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.29rem;
  line-height: 1.11;
  color: #3739A4;
}

/* Strength Section */
.running .compare {
  background: #FFFFFF;
}

.running .compare .container {
  max-width: 1000px;
}

.running .compare__list {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.05);
}

/* 【無料】武蔵野の経営ノウハウ- お役立ちツール集 */
.tool {
  background: #FFFFFF;
}

/* Hero Section */
.tool .hero__title {
  font-size: 2.85rem;
}

.tool .hero__title span {
  font-size: 1.79rem;
  display: block;
}

/* Search Section */
.tool .search {
  background: #FFFFFF;
  padding: 64px 0 55px;
}

.tool .search__container {
  max-width: 702px;
}

.tool .search__form {
  width: 100%;
  max-width: none;
}

/* Grid - Card */
.tool__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  gap: 25px;
}

.tool__card {
  border: 1px solid #E2E8F0;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.1);
  min-height: 500px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}

.tool__card-image {
  width: 100%;
  aspect-ratio: 1 / 0.486;
  background: #e9ecef;
  position: relative;
}

.tool__card-image img {
  height: 100%;
  object-fit: cover;
}

.tool__card-content {
  flex: 1;
  background: #FFFFFF;
  padding: 25px 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tool__card-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.43rem;
  line-height: 1.2;
  color: #020817;
}

.tool__card-text {
  line-height: 1.43rem;
  color: #333333;
}

.tool__card-footer {
  width: 100%;
  max-width: 350px;
  margin-top: auto;
}

.tool__card-button {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  padding: 10px;
  background: #2563EB;
  border-radius: 6px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool__card-button img {
  width: 17.03px;
  height: 17px;
  margin-right: 10px;
}

.tool__card-page {
  justify-self: flex-end;
  font-size: 0.86rem;
  line-height: 1.33;
  color: #6B7280;
}

/* Tool Common Section */
.tool-sec {
  background: #FFFFFF;
}

.tool-sec .container {
  padding: 55px 0 81px;
}

.tool-sec__text {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.29rem;
  line-height: 1.56;
  color: #4B5563;
  margin-bottom: 40px;
}

/* Service Section */
.tool-service {
  margin-top: 55px;
  background: linear-gradient(112.61deg, #FFFFFF 3.62%, #DBEAFE 94.57%);
}

.tool-service .container {
  padding-top: 6.42rem;
}

.tool-service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.tool-service__card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.tool-service__card-text {
  padding: 3.93rem 1.4rem 1.5rem;
}

.tool-service__card-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.71rem;
  font-weight: 500;
  margin-bottom: 9px;
  line-height: 1;
  text-align: center;
}

.tool-service__card-subtitle {
  font-family: "Cormorant", serif;
  font-weight: 500;
  margin-bottom: 4rem;
  line-height: 1;
  text-align: center;
  color: #3739A4;
}

.tool-service__card-description {
  color: #333;
  line-height: 1.5;
}

.tool-service__card-link {
  border-top: 1px solid #D7DEED;
  font-family: "Shippori Mincho", serif;
  padding: 1rem 1.42rem;
  display: inline-block;
  position: relative;
  width: 100%;
}

.tool-service__card-link::after {
  position: absolute;
  content: "";
  background: url(assets/img/button_arrow.svg);
  background-size: contain;
  width: 40.25px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  right: 1.42rem;
}

.tool-service .section__footer {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.tool-service .border__button {
  margin: 0;
}

.border__button.-blue {
  background: #3739A4;
  color: #FFFFFF;
}

/* プライバシーポリシー */
/*Privacy Policy Section */
.pp {
  background: #FFFFFF;
}

.pp .container {
  padding: 120px 0;
}

.pp-box {
  margin-bottom: 80px;
}

.pp-box__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.71rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 30px;
}

.pp-box__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.29rem;
  line-height: 1.56;
  color: #4B5563;
  margin-bottom: 1.5em;
}

.pp-box__text span {
  font-weight: 700;
}

.pp-box__text.copyright {
  margin-top: 3em;
}

/** Article Common **/
.article {
  margin-bottom: 50px;
}

.article__heading {
  margin-bottom: 2.14rem;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article__date {
  font-family: "MinervaModern", "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.14rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #3739A4;
}

.article__category {
  padding: 5px 10px;
  background: #3739A4;
  font-size: 0.93rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.article__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: #020817;
}

.article__eyecatch img {
  margin-bottom: 2.14rem;
  width: 100%;
  height: auto;
}

.article__sns-share {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-bottom: 8px;
  margin-bottom: 2.14rem;
}

.share-item {
  width: 7.86rem;
  height: 3.29rem;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  line-height: 1.14rem;
  color: #FFFFFF;
}

.share-item img {
  width: 1.14rem;
  height: 1.14rem;
}

.share-x {
  background: #000000;
}

.share-fb {
  background: #3B5998;
}

.share-line {
  background: #00C300;
}

.article__read-time {
  width: 100%;
  margin-bottom: 2.14rem;
  padding: 10px 0;
  border-top: 4px solid #F4F5F6;
  border-bottom: 4px solid #F4F5F6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.article__read-time img {
  width: 0.71rem;
}

#toc_container {
  background: #F4F5F6;
  display: block !important;
  font-size: 1.14rem;
  line-height: 2;
  margin: 0 auto 2.14rem;
  padding: 1.23rem 1.92rem;
  width: 80%;
  max-width: 500px;
}

.toc_title {
  font-size: 1.21rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 15px;
}

.toc_toggle {
  font-size: 1.02rem;
  line-height: 1.84rem;
}

.toc_brackets {
  display: none;
}

.toc_list,
.toc_list * {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc_list {
  padding: 0 1.79rem;
  counter-reset: li;
  font-weight: 700;
  color: #3739A4;
}

.toc_list li {
  position: relative;
  padding-left: 1.71rem;
}

.toc_list>li>a:after {
  counter-increment: li;
  content: counter(li)".";
  position: absolute;
  left: 0.36rem;
  top: 0;
}

.toc_list>li>ul>li {
  position: relative;
}

.toc_list>li>ul>li>a:before {
  position: absolute;
  content: "・";
  left: 0.36rem;
  top: 0;
}

.article__body *:first-child {
  margin-top: 0;
}

.article__body h2 {
  margin: 2.14rem 0;
  padding: 1.43rem;
  width: 100%;
  border-bottom: 1px solid #3739A4;
  border-radius: 2px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 2.29rem;
  line-height: 2.14rem;
  color: #3739A4;
}

.article__body h3 {
  margin: 2.14rem 0;
  padding: 1.07rem;
  width: 100%;
  background: #E2E8F0;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.43rem;
  line-height: 1.5;
  color: #3739A4;
}

.article__body p {
  padding: 0 0 1.29rem 10px;
  font-size: 1.29rem;
  line-height: 1.75;
}

.article__body strong {
  font-weight: 500;
  background: linear-gradient(transparent 70%, #F0E1EB 70%);
}

.article__body a {
  color: #3739A4;
  text-decoration: underline;
}

/* Article Author */
.article__author .container {
  padding: 50px 0 0;
}

.article__author-wrapper {
  padding: 33px 25px 25px;
  border: 1px solid #EAEAEA;
  border-radius: 20px;
  box-shadow: 0px 1px 2px 0px #00000040;
  display: flex;
  gap: 20px;
}

.article__author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.article__author-image img {
  height: 100%;
  object-fit: cover;
}

.article__author-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article__author-name {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.43rem;
  color: #3739A4;
}

.article__author-text {
  font-size: 0.93rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .article__author-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .article__author-name {
    text-align: center;
  }
}

/* Article Pagination */
.article__pagination .container {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 10px;
}

.pagination__return {
  justify-self: center;
  background: #3739A4;
  padding: 1.07rem 3.57rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 1.29rem;
  line-height: 1;
  color: #F8FAFC;
}

.pagination__prev {
  justify-self: start;
  text-align: left;
}

.pagination__next {
  justify-self: end;
  text-align: right;
}

/** ニュース＆トピックス **/
/* News Archive Section */
.news-list {
  background: #FFFFFF;
}

.news-archive__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-archive__item {
  background: #E2E8F0;
  border-radius: 5px;
}

.news-archive__link {
  position: relative;
  padding: 15px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.news-archive__link::after {
  position: absolute;
  content: "";
  background: url(assets/img/archive_arrow.svg);
  background-size: contain;
  width: 40.25px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.news-archive__item-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-archive__item-date {
  flex-shrink: 0;
  font-family: "MinervaModern", "Shippori Mincho", serif;
  font-weight: 450;
  font-size: 1.71rem;
  color: #3739A4;
  line-height: 1;
  letter-spacing: 0.05em;
}

.news-archive__item-category {
  flex-shrink: 0;
  padding: 4px 8px;
  background: #3739A4;
  font-weight: 500;
  font-size: 0.86rem;
  line-height: 1;
  color: #FFFFFF;
}

.news-archive__item-title {
  padding-right: 50.25px;
  flex: 1;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 1.43rem;
  line-height: 1.5;
  color: #020817;
}

@media (max-width: 767px) {
  .news-archive__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .news-archive__item-title {
    padding-right: 0;
    padding-bottom: 15px;
  }

  .news-archive__link::after {
    top: auto;
    bottom: 10px;
  }
}

/** ニュース＆トピックス詳細**/
/* News Article Section */
.news-article {
  background: #FFFFFF;
}

.news-post .container {
  padding-bottom: 0;
}

.news-article .article__pagination .container {
  border-top: solid 1px #CCCCCC;
}

/** コラム詳細 **/
/* Column Article Section */
.single-musashinocolumn {
  background: #FFFFFF;
}

.column-post .container {
  padding-bottom: 0;
}

.single-musashinocolumn .seminar {
  background: #F0F6FF;
  padding-top: 0;
}

.single-musashinocolumn .seminar .container {
  padding: 60px 0;
}

/** セミナー会場 **/
.location {
  background: #FFFFFF;
}

/* Tab Section */
.location .common__link-tabs a {
  padding: 8px 15px 35px;
}

@media (max-width: 767px) {
  .location .common__link-tabs:nth-child(1) {
    border-bottom: none;
  }

  .location .common__link-tabs:nth-child(2) {
    border-top: none;
  }

  .location .common__link-tabs:nth-child(1) a:last-child {
    border-bottom: 1px solid #9CA3AF;
  }

  .location .common__link-tabs a {
    padding: 20px 0 30px;
  }
}

/* Seminar Location List Section */
.location-main {
  overflow: hidden;
}

.location-main .container {
  padding: 30px 0 60px;
}

.location__text {
  margin-bottom: 80px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.29rem;
  color: #000000;
}

.location__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.location__title {
  margin-bottom: 40px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: #020817;
}

.location__map {
  display: flex;
}

.location__map-card {
  max-width: 350px;
  min-height: 420px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.location__map-card img {
  aspect-ratio: 350 / 243;
  object-fit: cover;
}

.location__address {
  padding: 0 15px;
  flex: 1;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.43rem;
  line-height: 1.75;
  color: #020817;
}

.location-access {
  background: #F0F6FF;
  padding: 35px 45px 40px;

}

.location-access__heading {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.location-access__title {
  margin: 0 auto 0 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.43rem;
  line-height: 1.5;
  color: #3739A4;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  width: 40.25px;
  height: 6px;
  left: auto;
  right: auto;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
  height: 30px;
  margin: auto;
  width: 40.25px;
}

.swiper-button-prev::after {
  background-image: url(assets/img/article_arrow_prev.svg);
}

.swiper-button-next::after {
  background-image: url(assets/img/article_arrow_next.svg);
}

.swiper {
  overflow: visible;
}

.location-access__slider {
  overflow: hidden;
  position: relative;
  height: 331px;
}

.location-access__step {
  background: #fff;
  width: 259px !important;
}

.location-access__step img {
  aspect-ratio: 259 / 166;
  object-fit: cover;
}

.location-access__text {
  padding: 1.79rem 1.07rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.14rem;
  line-height: 1.75;
  color: #020817;
}

@media (max-width: 767px) {
  .location__map {
    flex-direction: column;
  }

  .location__map iframe {
    height: 300px;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) and (max-width:1279px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 11px;
  }
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3333;
  color: #333;
  font-weight: 400;
  background-color: #EFF1F5;
  touch-action: manipulation;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.8;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.container {
  max-width: 1100px;
  width: 96%;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 7.14rem;
}

[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 90px;
  }
}

@media (max-width: 767px) {
  .-pc {
    display: none;
  }
}

.-sp {
  display: none;
}

@media (max-width: 767px) {
  .-sp {
    display: block;
  }
}

.r-mark {
  vertical-align: sub;
}

.br-inline {
  display: inline-block;
}