@charset "UTF-8";
/**
 * ===================================================================
 * Variables
 * サイト全体で使用する変数（色、フォント、ブレイクポイントなど）を定義します。
 * ===================================================================
 */
.l-body {
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  overflow-x: hidden;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-body.is-menu-open {
  overflow: hidden;
}

main {
  flex-grow: 1;
}

p {
  line-height: 1.8;
  margin-bottom: 1.5em;
}

a:visited {
  color: inherit;
}

li {
  list-style: none;
}

/*
 * Utility & Animation : ヘルパークラス、アニメーション
 * ------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

[data-animate=fade-in-up] {
  transform: translateY(50px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/**
 * ===================================================================
 * Layout: Header
 * サイト全体のヘッダーのスタイルです。
 * ===================================================================
 */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  z-index: 100;
  transition: height 0.4s ease, background-color 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  transition: height 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease;
  transition: height 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  background-color: transparent;
}
.l-header .l-header__logo a,
.l-header .l-header__nav .l-header__nav-item a {
  color: #ffffff;
}
.l-header .l-header__hamburger span {
  background-color: #ffffff;
}
.l-header .l-header__hamburger.is-active span {
  background-color: #1a1a1a;
}
.l-header.is-scrolled {
  padding: 10px 5%;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.05);
}
.l-header.is-scrolled .l-header__logo a {
  color: #1a1a1a;
}
.l-header.is-scrolled .l-header__nav .l-header__nav-item a {
  color: #1a1a1a;
}
.l-header.is-scrolled .l-header__hamburger span {
  background-color: #1a1a1a;
}
.l-body:not(.home) .l-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.05);
}
.l-body:not(.home) .l-header .l-header__logo a {
  color: #1a1a1a;
}
.l-body:not(.home) .l-header .l-header__nav .l-header__nav-item a {
  color: #1a1a1a;
}
.l-body:not(.home) .l-header .l-header__hamburger span {
  background-color: #1a1a1a;
}
.l-header__logo {
  z-index: 101;
}
.l-header__logo a {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.5s ease, font-size 0.4s ease;
}

.l-header__nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  z-index: 99;
  padding-top: 100px;
}
.is-drawer-active .l-header__nav-wrapper {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .l-header__nav-wrapper {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    transform: none;
    overflow-y: visible;
    padding-top: 0;
  }
}

.l-header__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .l-header__nav-list {
    display: flex;
    gap: 30px;
  }
}

.l-header__nav-item {
  font-weight: 700;
}
.l-header__nav-item a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}
@media (min-width: 1024px) {
  .l-header__nav-item a {
    padding: 10px 0;
    color: #1a1a1a;
    border-bottom: none;
    position: relative;
  }
  .l-header__nav-item a:hover {
    color: #e74c3c;
    background-color: transparent;
  }
}
.l-header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e74c3c;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: left;
}
@media (max-width: 1023px) {
  .l-header__nav-item a::after {
    display: none;
  }
}
.l-header__nav-item a:hover::after {
  transform: scaleX(1);
}

.l-header__hamburger {
  display: block;
  position: relative;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}
@media (min-width: 1024px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  transition: transform 0.4s ease, top 0.4s ease, opacity 0.4s ease;
}
.l-header__hamburger span:nth-child(1) {
  top: 0;
}
.l-header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__hamburger span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.is-drawer-active .l-header__hamburger span {
  background-color: #ffffff;
}
.is-drawer-active .l-header__hamburger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.is-drawer-active .l-header__hamburger span:nth-child(2) {
  opacity: 0;
}
.is-drawer-active .l-header__hamburger span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/**
 * ===================================================================
 * Layout: Footer
 * サイト全体のフッターのスタイルです。
 * ===================================================================
 */
.l-footer {
  background-color: #222;
  color: #ccc;
  padding: 80px 0 20px;
  margin-top: 80px;
  font-size: 0.9rem;
}

.l-footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .l-footer__content {
    grid-template-columns: 3fr 7fr;
    gap: 60px;
  }
}

.l-footer__info {
  text-align: center;
}
@media (min-width: 768px) {
  .l-footer__info {
    text-align: left;
  }
}

.l-footer__logo {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
}

.l-footer__tagline {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #fff;
}

.l-footer__sns {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 768px) {
  .l-footer__sns {
    justify-content: flex-start;
  }
}
.l-footer__sns a {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
}
.l-footer__sns a:hover {
  color: #e74c3c;
}

.l-footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .l-footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-footer__nav-group {
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .l-footer__nav-group:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
  }
}

.l-footer__nav-title {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-size: 1rem;
}

.l-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.l-footer__nav-list li {
  margin-bottom: 10px;
}
.l-footer__nav-list li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}
.l-footer__nav-list li a:hover {
  color: #fff;
  text-decoration: underline;
}

.l-footer__bottom {
  padding-top: 20px;
  border-top: 1px solid #444;
  text-align: center;
}

.l-footer__copyright {
  font-size: 0.8rem;
  color: #888;
}

.p-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  border: 2px solid #e74c3c;
  color: #e74c3c;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.p-btn:hover {
  background-color: #e74c3c;
  color: #ffffff;
}
.p-btn--insta {
  border: 2px solid transparent;
  background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.p-btn--insta:hover {
  background-clip: border-box;
  color: #ffffff;
}

.p-hamburger {
  display: none;
}
@media (max-width: 1023px) {
  .p-hamburger {
    display: block;
    position: relative;
    z-index: 110;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .p-hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s;
  }
  .p-hamburger span:nth-child(1) {
    top: 0;
  }
  .p-hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .p-hamburger span:nth-child(3) {
    bottom: 0;
  }
  .p-hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .p-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .p-hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
}

.p-form__group {
  margin-bottom: 30px;
}
.p-form__label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}
.p-form__required {
  color: #e74c3c;
  margin-left: 5px;
}
.p-form__input, .p-form__textarea {
  width: 100%;
  padding: 15px;
  background-color: #ffffff;
  border: 1px solid rgb(0.5, 0.5, 0.5);
  color: #1a1a1a;
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}
.p-form__input:focus, .p-form__textarea:focus {
  outline: none;
  border-color: #e74c3c;
}
.p-form__input::-moz-placeholder, .p-form__textarea::-moz-placeholder {
  color: #bdbdbd;
}
.p-form__input::placeholder, .p-form__textarea::placeholder {
  color: #bdbdbd;
}
.p-form__submit {
  text-align: center;
  margin-top: 40px;
}

.p-news__list {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e0e0e0;
}

.p-news__item {
  border-bottom: 1px solid #e0e0e0;
}

.p-news__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px 20px;
  text-decoration: none;
  color: #1a1a1a;
  transition: background-color 0.3s ease;
  position: relative;
}
.p-news__link::after {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.p-news__link:hover {
  background-color: #fafafa;
}
.p-news__link:hover .p-news__title {
  text-decoration: underline;
}
.p-news__link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.p-news__img-wrapper {
  width: 80px;
  height: 65px;
  border-radius: 4px;
  overflow: hidden;
}
.p-news__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.p-news__date {
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 0.05em;
}

.p-news__title {
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}

.p-breadcrumb {
  margin-bottom: 20px;
}
.p-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.p-breadcrumb li {
  display: flex;
  align-items: center;
}
.p-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 0.8em;
  color: #b3b3b3;
}
.p-breadcrumb a {
  color: gray;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-breadcrumb a:hover {
  color: #1a1a1a;
}
.p-breadcrumb span {
  color: #1a1a1a;
}

.p-profile-section {
  margin-bottom: 100px;
}

.p-profile__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 768px) {
  .p-profile__card {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .p-profile__card:nth-of-type(even) .p-profile__img {
    grid-column: 2;
    grid-row: 1;
  }
  .p-profile__card:nth-of-type(even) .p-profile__text {
    grid-column: 1;
    grid-row: 1;
  }
}

.p-profile__img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.p-profile__text {
  text-align: center;
  color: #1a1a1a;
}
.p-profile__text h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.p-profile__sns {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.p-profile__sns a {
  font-size: 1.8rem;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.p-profile__sns a:hover {
  color: #e74c3c;
}

.p-member-list {
  margin-bottom: 100px;
}
.p-member-list__title {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}
.p-member-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}
@media (min-width: 768px) {
  .p-member-list__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-member-card {
  text-align: center;
}
.p-member-card__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 15px;
}
.p-member-card__name {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.p-member-card__role {
  font-size: 0.9rem;
  color: #666;
}

/**
 * ===================================================================
 * Component: To Top Button
 * ページトップへ戻るボタンのスタイルです。
 * ===================================================================
 */
.p-to-top {
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #e74c3c;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(26, 26, 26, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 500;
}
.p-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.p-to-top:hover {
  background-color: rgb(213.698630137, 43.8356164384, 26.301369863);
}

/**
 * ===================================================================
 * Page: Home
 * トップページ固有のスタイルです。
 * ===================================================================
 */
.p-home-hero {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100vw;
}
@media (min-width: 1024px) {
  .p-home-hero {
    flex-direction: row;
  }
}

.p-home-hero__left {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 60vh;
}
@media (min-width: 1024px) {
  .p-home-hero__left {
    flex-basis: 70%;
    min-height: auto;
  }
}

.p-home-hero__right {
  flex-basis: 30%;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 30px 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
@media (min-width: sp) {
  .p-home-hero__right {
    padding: 20px;
    min-height: 80vh;
  }
}
.p-home-hero__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.6);
  z-index: 1;
}

.p-home-hero__right-header {
  text-align: center;
  margin-bottom: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.p-home-hero__right-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.p-home-hero__right-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 20px;
  flex-shrink: 0;
}

.p-home-hero__right .p-btn {
  background-color: #e74c3c;
  color: #ffffff;
  border-color: #e74c3c;
  border-radius: 5px;
  display: block;
  width: 80%;
  margin: 20px auto;
  text-align: center;
}
.p-home-hero__right .p-btn:hover {
  background-color: rgb(213.698630137, 43.8356164384, 26.301369863);
  border-color: rgb(213.698630137, 43.8356164384, 26.301369863);
}

.l-hero-section {
  height: 100vh;
  overflow: hidden;
  padding: 0;
  background-color: #fff;
}

.l-hero-section__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-hero-section__bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: scale(1.1);
}
.l-hero-section__bg-slide.is-active {
  opacity: 1;
  animation: hero-zoom-in 8s ease-out forwards;
}
.l-hero-section__bg-slide.is-exiting {
  opacity: 0;
  transform: scale(1);
}
.l-hero-section__bg-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

@keyframes hero-zoom-in {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.l-hero-section__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}
.l-hero-section__content .l-hero-section__title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
}

.l-hero-section__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}
.l-hero-section__nav:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.l-hero-section__nav--prev {
  left: 30px;
}
.l-hero-section__nav--next {
  right: 30px;
}

.l-hero-section__indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 15px;
}

.l-hero-section__indicator {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}
.l-hero-section__indicator:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.l-hero-section__indicator.is-active {
  background-color: #fff;
  cursor: default;
}

.p-news__list--hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  border-top: none;
  overflow-y: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: sp) {
  .p-news__list--hero {
    grid-template-columns: 1fr;
  }
}

.p-news-card--hero {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #333333;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.p-news-card--hero:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.95);
}
.p-news-card--hero .p-news__date,
.p-news-card--hero .p-news__title {
  color: #333333;
}
.p-news-card--hero .p-news-card__img-wrapper {
  height: 100px;
}

.p-news-section {
  padding: 80px 0;
}

.p-news__list--home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  border-top: none;
}
@media (min-width: 768px) {
  .p-news__list--home {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.p-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.05);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-news-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.12);
}
.p-news-card:hover .p-news-card__img-wrapper img {
  transform: scale(1.05);
}

.p-news-card__img-wrapper {
  width: 100%;
  height: 130px;
  overflow: hidden;
}
.p-news-card__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.p-news-card__text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.p-news-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.p-news-card__text .p-news__title {
  margin-top: auto;
}

.p-profile {
  padding: 100px 0;
}

.l-main-content {
  background-color: #fff;
}

.home .l-main-section {
  display: block;
  padding: 80px 0;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .home .l-main-section {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) 2fr;
    align-items: center;
    gap: 60px;
    padding: 120px 5%;
  }
}
.home .l-main-section:first-child {
  background-color: transparent;
  padding: 0;
}

.p-program__inner,
.p-event-showcase__inner,
.p-seminar-workshop__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .p-program__inner,
  .p-event-showcase__inner,
  .p-seminar-workshop__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.p-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p-gallery__highlight {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
}
.p-gallery__highlight img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.4s ease;
}

.p-gallery__thumbnails {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-gallery__thumbnails img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.p-gallery__thumbnails img:hover:not(.is-active) {
  opacity: 0.8;
  transform: translateY(-3px);
}
.p-gallery__thumbnails img.is-active {
  opacity: 1;
}

.p-program__text,
.p-event-showcase__text,
.p-seminar-workshop__text {
  order: 1;
}
@media (min-width: 768px) {
  .p-program__text,
  .p-event-showcase__text,
  .p-seminar-workshop__text {
    order: 0;
  }
}

.p-event-showcase__visual,
.p-seminar-workshop__visual {
  width: 100%;
  height: auto;
}

.p-section-title--bg {
  text-align: left;
  font-size: clamp(60px, 20vw, 250px);
  font-weight: 900;
  line-height: 1;
  color: #333333;
  writing-mode: initial;
  margin: 0;
  padding: 0;
}
@media (min-width: sp) {
  .p-section-title--bg {
    font-size: 3rem;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .p-section-title--bg {
    pointer-events: none;
  }
}

.p-home-section__title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  writing-mode: initial;
  color: #e74c3c;
}

.p-home-section__subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e74c3c;
  margin-bottom: 1.5em;
}

.l-parallax-spacer {
  height: 30vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (min-width: 1024px) {
  .l-parallax-spacer {
    height: 40vh;
  }
}

/**
 * ===================================================================
 * Page: Sub-pages
 * 下層ページ共通のスタイルです。
 * ===================================================================
 */
.p-filterable-content {
  margin-bottom: 60px;
}

.p-page__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
}
.p-page__header .p-section-title {
  margin-bottom: 0;
}

.p-page__header--centered {
  margin-bottom: 20px;
  flex-direction: column;
  align-items: center;
}

.p-filter-control__select {
  padding: 8px 12px;
  border: 1px solid rgb(214.5, 214.5, 214.5);
  border-radius: 4px;
  font-size: 0.9rem;
  min-width: 200px;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.p-filter-control__select:focus {
  outline: none;
  border-color: #e74c3c;
}

.p-filter-control {
  display: flex;
  gap: 10px;
}

.p-filter-control__button {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  background-color: #e74c3c;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.p-filter-control__button:hover {
  background-color: rgb(213.698630137, 43.8356164384, 26.301369863);
}
.p-filter-control__button--clear {
  background-color: #7f8c8d;
}
.p-filter-control__button--clear:hover {
  background-color: rgb(102.2231404959, 113.8801652893, 114.7768595041);
}

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

.article-page .l-container {
  padding-top: 150px;
}

.p-article-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 1024px) {
  .p-article-container {
    grid-template-columns: 1fr 300px;
  }
}

@media (max-width: 1023px) {
  .p-article-sidebar {
    order: 1;
  }
}
.p-article-sidebar__widget {
  background-color: rgb(247.65, 247.65, 247.65);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.p-article-sidebar__widget h4 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.p-article-sidebar__widget dl dt {
  font-weight: bold;
  color: #666;
  font-size: 0.9rem;
  margin-top: 15px;
}
.p-article-sidebar__widget dl dd {
  margin-left: 0;
}

.p-archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-archive-list li {
  border-bottom: 1px solid #f0f0f0;
}
.p-archive-list li:first-child {
  border-top: 1px solid #f0f0f0;
}
.p-archive-list li a {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  color: #1a1a1a;
  transition: background-color 0.3s ease;
}
.p-archive-list li a:hover {
  background-color: rgb(234.9, 234.9, 234.9);
}

.p-post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}
.p-post-navigation a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.p-post-navigation a:hover {
  background-color: #f0f0f0;
}
.p-post-navigation__archive {
  border: 1px solid #f0f0f0;
}
@media (max-width: 479px) {
  .p-post-navigation__prev, .p-post-navigation__next {
    display: none;
  }
}

.p-simple-page {
  padding-top: 150px;
  text-align: center;
}
.p-simple-page .p-btn {
  margin-top: 40px;
}

.p-page-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.p-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  writing-mode: initial;
}
@media (min-width: 768px) {
  .p-section-title {
    font-size: 3.5rem;
  }
}

.p-page-lead {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.8;
}

.p-page h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.p-page ul {
  list-style: disc;
  padding-left: 20px;
}

.p-radio-intro {
  margin: 60px 0;
}

.p-radio-intro__section {
  margin-bottom: 60px;
}
.p-radio-intro__section h4 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-radio-intro__section h4 i {
  color: #e74c3c;
}

.p-radio-personality {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .p-radio-personality:nth-of-type(even) .p-radio-personality__img {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (min-width: 480px) {
  .p-radio-personality {
    grid-template-columns: 150px 1fr;
    gap: 30px;
  }
}
.p-radio-personality__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .p-radio-personality__img {
    width: 150px;
    height: 150px;
  }
}
.p-radio-personality__text h5 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-radio-personality__text p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.p-member-list {
  margin-top: 80px;
}

.p-member-list__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.p-member-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  .p-member-list__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-member-card {
  text-align: center;
}

.p-member-card__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 15px;
}

.p-radio-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.p-radio-features__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  align-items: center;
}
@media (min-width: 480px) {
  .p-radio-features__item {
    grid-template-columns: 150px 1fr;
    gap: 20px;
  }
}
.p-radio-features__img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 480px) {
  .p-radio-features__img {
    height: 100px;
  }
}
.p-radio-features__text h6 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-radio-features__text p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.p-radio-info {
  background-color: rgb(253.3561643836, 242.7397260274, 241.6438356164);
  border-left: 5px solid #e74c3c;
  padding: 30px;
  border-radius: 0 8px 8px 0;
  text-align: center;
}
.p-radio-info p {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 20px 0;
}

.p-concept-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .p-concept-block {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media (min-width: 768px) {
  .p-concept-block:nth-of-type(even) .p-concept-block__img {
    grid-column: 2;
    grid-row: 1;
  }
  .p-concept-block:nth-of-type(even) .p-concept-block__text {
    grid-column: 1;
    grid-row: 1;
  }
}
.p-concept-block__img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.p-concept-block .p-btn {
  margin-top: 20px;
}

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

.p-page-main-visual {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  border-radius: 8px;
}

.p-definition-list {
  margin-bottom: 40px;
  border-top: 1px solid #f0f0f0;
}
.p-definition-list dt,
.p-definition-list dd {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}
@media (min-width: 480px) {
  .p-definition-list {
    display: grid;
    grid-template-columns: 180px 1fr;
  }
  .p-definition-list dt,
  .p-definition-list dd {
    border-bottom: 1px solid #f0f0f0;
  }
}
.p-definition-list dt {
  font-weight: bold;
  background-color: rgb(245.1, 245.1, 245.1);
}

.p-table-wrapper {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 600px;
  margin-bottom: 40px;
}

.p-radio-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.9rem;
  white-space: nowrap;
}
.p-radio-table th,
.p-radio-table td {
  border: 1px solid rgb(227.25, 227.25, 227.25);
  padding: 12px 15px;
  text-align: left;
  vertical-align: middle;
}
.p-radio-table thead th {
  background-color: rgb(245.1, 245.1, 245.1);
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1;
}
.p-radio-table tbody tr:nth-child(even) {
  background-color: rgb(247.65, 247.65, 247.65);
}
.p-radio-table__ellipsis {
  text-align: center !important;
  font-style: italic;
  color: gray;
  background-color: #fff !important;
}

.p-recruitment-banner {
  padding: 30px;
  margin-bottom: 80px;
  text-align: center;
  border: 2px solid #e74c3c;
  border-radius: 8px;
}
.p-recruitment-banner p {
  font-weight: bold;
  margin-bottom: 20px;
}

.p-sponsor-rank {
  margin-bottom: 60px;
}

.p-sponsor-list--gold {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.p-sponsor-list--silver {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .p-sponsor-list--silver {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-sponsor-list--silver {
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-sponsor-list--silver .p-sponsor-card {
  height: auto;
  justify-content: center;
}
.p-sponsor-list--personal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 30px;
}
@media (min-width: 480px) {
  .p-sponsor-list--personal {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-sponsor-list--personal {
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-sponsor-list--personal .p-sponsor-card {
  height: auto;
  justify-content: center;
}
.p-sponsor-list--personal .p-sponsor-card__name {
  font-size: 1rem;
  margin-bottom: 0;
}

.p-sponsor-card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  text-decoration: none;
  color: #1a1a1a;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-sponsor-card__inner {
  display: flex;
  flex-direction: column;
  align-items: column;
}
@media (min-width: 480px) {
  .p-sponsor-card__inner {
    flex-direction: row;
  }
}
.p-sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.1);
}
.p-sponsor-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-sponsor-card__body {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
}

.p-sponsor-card__name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.p-sponsor-card__details {
  font-size: 0.9rem;
}
.p-sponsor-card__details dt {
  font-weight: bold;
  margin-top: 10px;
  color: gray;
}
.p-sponsor-card__details dd {
  margin-left: 0;
}

/*
 * Event List
 * ------------------------------------------------- */
.p-event {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 480px) {
  .p-event {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-event {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-event__card {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-event__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.1);
}
.p-event__card:hover .p-event__img-wrapper img {
  transform: scale(1.05);
}

.p-event__img-wrapper {
  overflow: hidden;
}
.p-event__img-wrapper img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.p-event__body {
  padding: 20px;
}

.p-event__title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.p-event__date {
  font-size: 0.9rem;
  color: #666;
}

.p-article h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.p-article__header {
  margin-bottom: 50px;
  text-align: center;
}

.p-article__title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.4;
}

.p-article__main-visual {
  margin-bottom: 50px;
}

.p-article__body-img {
  width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 8px;
}

/*
 * Category Label
 * ------------------------------------------------- */
.p-category-label {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #7f8c8d;
  border-radius: 4px;
}
.p-category-label--event {
  background-color: #3498db;
}
.p-category-label--radio {
  background-color: #e67e22;
}
.p-category-label--seminar {
  background-color: #9b59b6;
}

.p-pagination {
  margin-top: 60px;
}
.p-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.p-pagination .page-numbers {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #1a1a1a;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-pagination .page-numbers:hover {
  background-color: #f0f0f0;
}
.p-pagination .page-numbers.current {
  background-color: #e74c3c;
  color: #ffffff;
  border-color: #e74c3c;
  pointer-events: none;
}

.p-news__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}

.p-news__title {
  font-size: 1rem;
  font-weight: bold;
}

.p-event__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}

.p-news__img-wrapper {
  transition: transform 0.3s ease;
}

.p-news__link:hover .p-news__img-wrapper {
  transform: translate(-5px, -5px);
}

/*
 * Modal
 * ------------------------------------------------- */
/*
 * Modal
 * ------------------------------------------------- */
.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-modal.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.7);
  cursor: pointer;
}
.p-modal__content {
  position: relative;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.p-modal.is-visible .p-modal__content {
  transform: scale(1);
}
.p-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2.5rem;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.p-modal__close:hover {
  color: #1a1a1a;
}
.p-modal__logo {
  height: 100px;
  margin-bottom: 30px;
}
.p-modal__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-modal__name {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 15px;
}
.p-modal__desc {
  margin-bottom: 30px;
  line-height: 1.7;
}
.p-modal__details {
  text-align: left;
  background-color: rgb(247.65, 247.65, 247.65);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.p-modal__details dt {
  font-weight: bold;
  color: #666;
  font-size: 0.9rem;
  margin-top: 15px;
}
.p-modal__details dt:first-child {
  margin-top: 0;
}
.p-modal__details dd {
  margin-left: 0;
}

.p-recruitment-section {
  margin-bottom: 60px;
}
.p-recruitment-section h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.p-recruitment-list {
  list-style: disc;
  padding-left: 20px;
}
.p-recruitment-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.p-plan-table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
}

.p-plan-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  text-align: center;
}
.p-plan-table th,
.p-plan-table td {
  padding: 20px 15px;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
}
.p-plan-table thead th {
  font-size: 1.2rem;
  font-weight: 900;
  border-bottom-width: 3px;
  border-bottom-color: #f0f0f0;
  background-color: #fff;
}
.p-plan-table tbody th {
  background-color: #fff;
  font-weight: bold;
  text-align: left;
  border-right: 1px solid #f0f0f0;
}
.p-plan-table tbody td {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e74c3c;
}
.p-plan-table tbody tr:nth-child(even) {
  background-color: rgb(247.65, 247.65, 247.65);
}
.p-plan-table__head--platinum {
  background-color: #e5e4e2;
  color: #555;
  border-bottom-color: rgb(192.8363636364, 190.4454545455, 185.6636363636);
}
.p-plan-table__head--gold {
  background-color: #ffd700;
  color: #555;
  border-bottom-color: rgb(178.5, 150.5, 0);
}
.p-plan-table__head--silver {
  background-color: #c0c0c0;
  color: #ffffff;
  border-bottom-color: rgb(153.75, 153.75, 153.75);
}

.p-recruitment-cta {
  margin-top: 80px;
  padding: 40px;
  background-color: rgb(247.65, 247.65, 247.65);
  text-align: center;
  border-radius: 8px;
}
.p-recruitment-cta p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.l-container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.l-container--narrow {
  max-width: 800px;
}/*# sourceMappingURL=style.css.map */