@charset "UTF-8";
:root {
  --color-brand: #6F194C;
  --color-brand-dark: #77153B;
  --color-accent-green: #095C46;
  --color-text: #383838;
  --color-bg: #FFFFFF;
  --color-bg-sub: #F6F6F6;
  --color-bg-dark: #1B1817;
  --color-border: #CCCCCC;
  --color-border-mid: #B3B3B3;
  --color-border-2: #999999;
  --color-food: #E8A33D;
  --color-round: #3A6B35;
  --color-tenji: #8A6D2F;
  --color-muted: #888888;
  --color-muted-2: #666666;
  --ff-en: "Josefin Sans", sans-serif;
  --ff-jp: "Noto Sans JP", sans-serif;
  --space-section: 120px;
}

@media (max-width: 980px) {
  :root {
    --space-section: 64px;
  }
}
.l-container {
  max-width: 1080px;
}

.l-section {
  padding-block: var(--space-section);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-jp);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  font-weight: 400;
  font-size: 1em;
}

main img {
  max-width: 100%;
  display: block;
}

.site_head_re img,
.sp_header img {
  display: inline-block;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding-inline: var(--space-m);
}
@media (max-width: 980px) {
  .l-header__inner {
    height: 56px;
    padding-inline: var(--space-s);
  }
}

.l-header__logo {
  font-family: var(--ff-en);
  font-size: 2.2rem;
  letter-spacing: 0.28em;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.2;
}
.l-header__logo small {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  font-weight: 300;
}
@media (max-width: 980px) {
  .l-header__logo {
    font-size: 1.7rem;
  }
}

.c-floating-cta {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 90;
  background: var(--color-brand);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: background 0.25s, transform 0.2s;
}
.c-floating-cta:hover {
  background: var(--color-brand-dark);
  transform: scale(1.04);
}
@media (max-width: 980px) {
  .c-floating-cta {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0;
    text-align: center;
    font-size: 1.4rem;
    padding: 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.12);
  }
}

.c-sec-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 72px;
}
@media (max-width: 980px) {
  .c-sec-title {
    margin-bottom: 44px;
  }
}

.c-sec-title__en {
  display: block;
  font-family: var(--ff-en);
  font-size: 4rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}
@media (max-width: 980px) {
  .c-sec-title__en {
    font-size: 2.8rem;
  }
}

.c-sec-title__jp {
  display: block;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-muted);
  letter-spacing: 0.2em;
}

.c-sec-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--color-accent-green);
  border-radius: 999px;
  margin-top: 16px;
}

.c-sec-title--white .c-sec-title__en,
.c-sec-title--white .c-sec-title__jp {
  color: #fff;
}
.c-sec-title--white::after {
  background: #fff;
}

.c-btn--brand {
  background: var(--color-brand);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding: 20px 56px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.c-btn--brand:hover {
  background: var(--color-brand-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 18px rgba(111, 25, 76, 0.25);
}
@media (max-width: 980px) {
  .c-btn--brand {
    font-size: 1.5rem;
    padding: 16px 36px;
  }
}

.c-btn--brand-lg {
  font-size: 2.4rem;
  letter-spacing: 0.14em;
  padding: 30px 96px;
  border-width: 1px;
  gap: 14px;
}
@media (max-width: 980px) {
  .c-btn--brand-lg {
    width: 100%;
    justify-content: center;
    padding: 22px 12px;
    font-size: 1.6rem;
  }
}

.c-btn__arrow {
  font-family: var(--ff-en);
}

.c-btn__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.c-btn__sub {
  font-size: calc(1em - 0.5rem);
}

.c-badge {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  margin-bottom: 12px;
  border-radius: 999px;
}

.c-badge--shida {
  background: var(--color-brand);
}

.c-badge--lesson {
  background: var(--color-bg-dark);
}

.c-badge--round {
  background: var(--color-round);
}

.c-badge--tenji {
  background: var(--color-tenji);
}

.c-ph {
  background: linear-gradient(135deg, #e2e2e2, #cfcfcf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #909090;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 8px;
}

.c-fv {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0;
  margin-top: 70px;
  aspect-ratio: 1922/930;
  background-image: url("../images/bg_kv_pc.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 980px) {
  .c-fv {
    margin-top: 56px;
    aspect-ratio: 752/934;
    background-image: url("../images/bg_kv_sp.png");
  }
}

.c-fv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0 30% 0 0;
}
@media (max-width: 980px) {
  .c-fv__inner {
    padding: 0 24px;
    margin: 0;
    min-height: 90%;
  }
}

.c-fv__title-img {
  width: 100%;
  max-width: 560px;
  height: auto;
}
@media (max-width: 980px) {
  .c-fv__title-img {
    max-width: 100%;
  }
}

.c-fv__cta {
  margin-top: 32px;
}
@media (max-width: 980px) {
  .c-fv__cta {
    position: absolute;
    bottom: 3%;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 981px) {
  .u-sp-only {
    display: none !important;
  }
}

.c-intro {
  background: var(--color-brand);
  text-align: center;
}

.c-intro__title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: #fff;
  margin: 0 0 36px;
}

.c-intro__lead {
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2;
  color: #fff;
}

.c-ways-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}
@media (max-width: 980px) {
  .c-ways-grid {
    gap: 18px;
    margin-bottom: 18px;
  }
}

.c-ways-card {
  flex: 0 1 calc((100% - 56px) / 3);
  max-width: calc((100% - 56px) / 3);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 44px 32px;
  text-align: center;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.25s, box-shadow 0.25s;
}
.c-ways-card:nth-child(1) {
  background-image: url("../images/ways_img_01.png");
}
.c-ways-card:nth-child(2) {
  background-image: url("../images/ways_img_02.png");
}
.c-ways-card:nth-child(3) {
  background-image: url("../images/ways_img_03.png");
}
.c-ways-card:nth-child(4) {
  background-image: url("../images/ways_img_04.png");
}
.c-ways-card:nth-child(5) {
  background-image: url("../images/ways_img_05.png");
}
.c-ways-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 980px) {
  .c-ways-card {
    flex-basis: 100%;
    max-width: none;
    padding: 32px 24px;
  }
}

.c-ways-card__num {
  font-family: var(--ff-en);
  font-size: 2.6rem;
  color: var(--color-brand);
  letter-spacing: 0.1em;
}

.c-ways-card__icon {
  width: 56px;
  height: 56px;
  margin: 18px auto;
  border: 3px solid var(--color-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--color-text);
}

.c-ways-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}

.c-ways-card__text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-muted-2);
  max-width: 277px;
  margin-inline: auto;
}

.c-program {
  background: var(--color-bg-sub);
}

.c-prog-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 88px;
  flex-direction: row-reverse;
}
.c-prog-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .c-prog-item {
    flex-direction: column !important;
    gap: 24px;
    margin-bottom: 56px;
  }
  .c-prog-item:nth-child(odd) {
    flex-direction: column-reverse !important;
  }
}

.c-prog-item__media {
  flex: 0 0 52%;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
@media (max-width: 980px) {
  .c-prog-item__media {
    flex: none;
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.c-prog-item__body {
  flex: 1;
}

.c-prog-item__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.c-prog-item__text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.9;
  margin: 0;
}

.c-prog-item__note {
  font-size: 1.3rem;
  color: var(--color-muted);
  margin-top: 10px;
}

.c-prog-note {
  font-size: var(--fz-sm, 1.4rem);
  color: var(--color-muted);
  margin: 32px 0 0;
}

.c-pros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 104px;
}
@media (max-width: 980px) {
  .c-pros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 64px;
  }
}

.c-profile {
  text-align: center;
}

.c-profile__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
@media (max-width: 980px) {
  .c-profile__photo {
    width: 140px;
    height: 140px;
  }
}

.c-profile__name {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.c-profile__role {
  font-size: 1.3rem;
  color: var(--color-brand);
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.c-profile__bio {
  font-size: 1.3rem;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.c-map-box {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 8px;
  overflow: hidden;
}

.c-map-area {
  aspect-ratio: 1064/698;
  width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 980px) {
  .c-map-area {
    aspect-ratio: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.c-food__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 980px) {
  .c-food__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.c-food-col {
  border: 2px solid var(--color-brand);
  border-radius: 4px;
  padding: 48px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.c-food-col--menu {
  border-color: var(--color-food);
}
@media (max-width: 980px) {
  .c-food-col {
    padding: 36px 24px;
  }
}

.c-food-col__ribbon {
  display: inline-flex;
  background: var(--color-brand);
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.14em;
  padding: 8px 28px;
  white-space: nowrap;
  border-radius: 999px;
}
.c-food-col--menu .c-food-col__ribbon {
  background: var(--color-food);
}

.c-food-col__photo {
  aspect-ratio: 720/400;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-food-col__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
}

.c-food-col__text {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

.c-food-col__caption {
  font-size: 1.2rem;
  color: var(--color-muted-2);
  line-height: 1.2;
  text-align: left;
  width: 100%;
}

.c-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  width: 100%;
}
.c-menu-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px dashed var(--color-food);
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1.6rem;
}
.c-menu-list li span {
  font-size: 2.2rem;
}

.c-menu-ticket {
  background: var(--color-food);
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1.5rem;
  width: 100%;
}

.c-info {
  background: var(--color-bg-sub);
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 64px;
}
@media (max-width: 980px) {
  .c-table {
    margin-bottom: 48px;
  }
}
.c-table th, .c-table td {
  border: 1px solid var(--color-border);
  padding: 20px 28px;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.7;
  vertical-align: top;
}
@media (max-width: 980px) {
  .c-table th, .c-table td {
    padding: 14px;
    font-size: 1.3rem;
  }
}
.c-table th {
  background: var(--color-brand);
  color: #fff;
  width: 200px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 980px) {
  .c-table th {
    width: 110px;
  }
}
.c-table td a {
  color: var(--color-text);
  text-decoration: underline;
}
.c-table small {
  color: var(--color-muted);
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
}

.c-sub-head {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brand);
  margin: 0 0 40px;
}

.c-apply {
  text-align: center;
  margin-bottom: 64px;
}

.c-apply__head {
  margin-bottom: 24px;
}

.c-apply__lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9;
  margin: 0 auto 24px;
  max-width: 760px;
}

.c-apply__shot {
  aspect-ratio: 588/309;
  max-width: 588px;
  width: 100%;
  margin: 0 auto 24px;
  border: 1px solid var(--color-border-2);
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 980px) {
  .c-apply__shot {
    aspect-ratio: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.c-apply__note {
  font-size: 1.2rem;
  color: var(--color-muted-2);
  line-height: 1.9;
  margin: 0;
}

.c-schedule {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
}
@media (max-width: 980px) {
  .c-schedule {
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
  }
}

.c-schedule-step {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 28px 36px;
  text-align: center;
  flex: 0 1 320px;
}
@media (max-width: 980px) {
  .c-schedule-step {
    width: 100%;
    flex: none;
  }
}

.c-schedule-step__date {
  font-family: var(--ff-en);
  font-weight: 600;
  color: var(--color-brand);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
}

.c-schedule-step__text {
  font-size: 1.4rem;
  margin-top: 6px;
}

.c-schedule-arrow {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--color-border-mid);
  font-size: 2.4rem;
}
@media (max-width: 980px) {
  .c-schedule-arrow {
    transform: rotate(90deg);
    justify-content: center;
    padding: 8px 0;
  }
}

.c-faq {
  max-width: 840px;
  margin: 0 auto;
}

.c-accordion {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
}
.c-accordion:last-child {
  margin-bottom: 0;
}

.c-accordion__trigger {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  font-weight: 700;
  font-size: 1.6rem;
}
.c-accordion__trigger::-webkit-details-marker {
  display: none;
}
.c-accordion__trigger::before {
  content: "Q";
  font-family: var(--ff-en);
  color: var(--color-brand);
  font-size: 2rem;
  flex-shrink: 0;
}
.c-accordion__trigger::after {
  content: "＋";
  margin-left: auto;
  color: var(--color-brand);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-sub);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-accordion[open] .c-accordion__trigger::after {
  content: "−";
}

.c-accordion__body {
  background: var(--color-bg-sub);
  padding: 24px 28px 28px;
  font-size: 1.5rem;
  font-weight: 300;
  display: flex;
  gap: 18px;
}
.c-accordion__body::before {
  content: "A";
  font-family: var(--ff-en);
  color: var(--color-border-mid);
  font-size: 2rem;
  font-weight: 400;
  flex-shrink: 0;
}

.c-final-cta {
  background-color: var(--color-bg-dark);
  background-image: linear-gradient(rgba(27, 24, 23, 0.5), rgba(27, 24, 23, 0.5)), url("../images/bg_c-final.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}

.c-final-cta__title {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 0 0 20px;
}

.c-final-cta__note {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  letter-spacing: 0.06em;
}

.l-footer {
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
}
@media (max-width: 980px) {
  .l-footer {
    padding-bottom: 120px;
  }
}

.l-footer__logo {
  font-family: var(--ff-en);
  font-size: 2rem;
  letter-spacing: 0.28em;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.l-footer__copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
}/*# sourceMappingURL=fourteen_festa.css.map */