@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500&family=Noto+Sans+JP:wght@100..900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, summary {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* common */
*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
:root {
  --primary: #004386;
  --primary-pale: #96b1cc;
  --primary-light: #e5effa;
  --accent: #E7336E;
  --accent-pale: #efa6be;
  --bg: #F1F5F8;
  --text: #454545;
  --white: #fff;
}

.section-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent);
  position: relative;
  padding-inline: 0.75em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
.section-heading::before, .section-heading::after {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--accent-pale);
  border-radius: 1px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-20deg);
}
.section-heading::after {
  left: initial;
  right: 0;
  transform: rotate(20deg);
}

.section-heading2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}
.section-heading2 span {
  font-size: clamp(0.75rem, 0.0288461538rem + 3.0769230769vw, 0.875rem);
  background: var(--primary);
  padding: 0.2em 0.75em 0.3em;
  border-radius: 4px;
  color: #fff;
}
.section-heading2 h2 {
  text-align: center;
  font-size: clamp(1.375rem, 0.6538461538rem + 3.0769230769vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent);
}

.section-heading3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  padding-left: 0.5em;
  border-left: 4px solid var(--accent);
}

.section-lead {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.2;
  font-weight: 600;
  color: var(--primary);
  background: url(../images/bg-marker.webp) no-repeat center/contain;
  padding-block: 0.5em;
}

.parts-heading {
  font-size: 1.5rem;
  line-height: 1.4;
}

.card-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.text-l {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--primary);
}

.lead {
  font-size: 1rem;
  line-height: 2.4;
  color: var(--primary);
  letter-spacing: 0.1em;
}

.text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text);
}

.note {
  font-size: 0.75rem;
  line-height: 1.5;
}

.text-s {
  font-size: 0.625rem;
  line-height: 1.2;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.bold {
  font-weight: 600;
}

.marker {
  background: linear-gradient(to top, var(--marker) 50%, transparent 50%);
}

.number {
  font-family: "Barlow Semi Condensed", sans-serif;
}

.large {
  font-size: 1.5em;
}

.c-primary {
  color: var(--primary);
}

.c-accent {
  color: var(--accent);
}

.c-white {
  color: var(--white);
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.kome {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.kome::before {
  content: "※";
}

.w85 {
  width: 85%;
  margin-inline: auto;
}

.bg-white {
  background: var(--white);
}

.header {
  width: min(430px, 100%);
  height: 50px;
  margin-inline: auto;
  background: var(--primary);
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 99;
  transition: all 0.3s ease-out;
}
.header.is-scroll {
  top: 0;
}

.gnav {
  height: 100%;
  display: flex;
  justify-content: cnter;
  align-items: center;
  gap: 20px;
}
.gnav > a {
  color: var(--white);
  display: grid;
  place-items: center;
  height: 100%;
  font-size: clamp(0.75rem, 0.0288461538rem + 3.0769230769vw, 0.875rem);
}

.list-normal > li {
  position: relative;
  padding-left: 1em;
}
.list-normal > li::before {
  content: "";
  width: 1em;
  height: 1lh;
  background: radial-gradient(var(--text) 0.2em, transparent 0.2em) no-repeat center/1em 1em;
  position: absolute;
  inset: 0;
}

.list-counter {
  counter-reset: list-counter;
}
.list-counter > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 1em;
}
.list-counter > li::before {
  content: counter(list-counter) ". ";
  position: absolute;
  inset: 0;
}

.link-text {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.link-text.arrow {
  padding-left: 1em;
  position: relative;
}
.link-text.arrow::before {
  content: "";
  width: 0.5em;
  height: 0.8em;
  background: var(--accent);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: calc(0.5lh - 0.5em);
  left: 0;
}

.btn {
  background: #fff;
  border: 1px solid var(--primary);
  padding: 1em;
  width: 80%;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 99px;
}
.btn.outer span {
  padding-right: 1em;
  position: relative;
}
.btn.outer span::after {
  content: "";
  width: 0.8em;
  aspect-ratio: 1;
  background: url(../images/ico-newtab.svg) no-repeat center/contain;
  position: absolute;
  top: calc(0.5lh - 0.4em);
  right: 0;
}
.btn.pdf span {
  padding-right: 2em;
  position: relative;
}
.btn.pdf span::after {
  content: "";
  width: 1.6em;
  aspect-ratio: 1;
  background: url(../images/ico-pdf.svg) no-repeat center/contain;
  position: absolute;
  top: calc(0.5lh - 0.8em);
  right: 0;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.flex {
  display: flex;
}

.flex-block {
  display: flex;
  flex-direction: column;
}

.jc-center {
  justify-content: center;
}

.al-center {
  align-items: center;
}

.flex1 {
  flex: 1;
}

.gap48 {
  gap: 48px;
}

.gap32 {
  gap: 32px;
}

.gap24 {
  gap: 24px;
}

.gap16 {
  gap: 16px;
}

.gap8 {
  gap: 8px;
}

.mt96 {
  margin-top: 96px;
}

.mt80 {
  margin-top: 80px;
}

.mt64 {
  margin-top: 64px;
}

.mt48 {
  margin-top: 48px;
}

.mt40 {
  margin-top: 40px;
}

.mt32 {
  margin-top: 32px;
}

.mt24 {
  margin-top: 24px;
}

.mt16 {
  margin-top: 16px;
}

.mt8 {
  margin-top: 8px;
}

.mt4 {
  margin-top: 4px;
}

.tab-primary {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--text);
}
.tab-primary > li {
  flex: 1 1 auto;
  cursor: pointer;
}

.tab-primary-content > li {
  display: none;
}
.tab-primary-content > li.is-active {
  display: initial;
}

.js-accordion {
  cursor: pointer;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-out;
}
.accordion-content.open {
  grid-template-rows: 1fr;
}
.accordion-content > div {
  overflow: hidden;
}

html.lock {
  overflow: hidden;
}

body {
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.15;
  font-optical-sizing: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  overflow-x: clip;
  background: url(../images/bg.webp) no-repeat top center/cover fixed;
  color: var(--text);
}

.wrapper {
  width: min(430px, 100%);
  margin-inline: auto;
  min-height: 100vh;
  background: var(--bg);
  box-shadow: 0 0 32px rgba(0, 67, 134, 0.2);
}

.bg-texture {
  position: relative;
  overflow: hidden;
}
.bg-texture::before {
  content: "";
  width: 240px;
  aspect-ratio: 1;
  background: url(../images/bg-texture-red.webp) no-repeat center/contain;
  position: absolute;
  top: 30%;
  left: -180px;
}
.bg-texture::after {
  content: "";
  width: 200px;
  aspect-ratio: 1;
  background: url(../images/bg-texture-blue.webp) no-repeat center/contain;
  position: absolute;
  bottom: 0px;
  right: -150px;
}

.fv {
  width: 100%;
  padding: 24px 0 32px;
  position: relative;
  overflow: hidden;
}
.fv::before {
  content: "";
  width: 160px;
  aspect-ratio: 1;
  background: url(../images/bg-texture-red.webp) no-repeat center/contain;
  position: absolute;
  top: -120px;
  right: -20px;
}
.fv::after {
  content: "";
  width: 240px;
  aspect-ratio: 1;
  background: url(../images/bg-texture-red.webp) no-repeat center/contain;
  position: absolute;
  top: 32%;
  left: -150px;
}

.fv-icon {
  position: absolute;
  aspect-ratio: 1;
}
.fv-icon.icon-cloth {
  width: 60px;
  background: url(../images/icon-cloth.webp) no-repeat center/contain;
  transform: rotate(0deg);
  top: 18px;
  left: -10px;
}
.fv-icon.icon-kogu {
  width: 70px;
  background: url(../images/icon-kogu.webp) no-repeat center/contain;
  top: 32px;
  right: -4px;
}
.fv-icon.icon-hari {
  width: 48px;
  background: url(../images/icon-hari.webp) no-repeat center/contain;
  top: 200px;
  left: 4px;
}
.fv-icon.icon-hasami {
  width: 60px;
  background: url(../images/icon-hasami.webp) no-repeat center/contain;
  top: 200px;
  right: -10px;
}

.headcopy {
  position: relative;
  margin-inline: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 16px;
  background: var(--text);
  border-radius: 99px;
  color: #fff;
}
.headcopy p {
  font-size: clamp(0.8125rem, 0.0913461538rem + 3.0769230769vw, 0.9375rem);
}

.logo {
  width: 64%;
  margin-inline: auto;
  margin-top: 24px;
}

.fv-image-wrap {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.fv-image-wrap .fv-copy-wrap {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fv-image-wrap .fv-copy-wrap .maincopy,
.fv-image-wrap .fv-copy-wrap .subcopy span {
  background: #fff;
  padding: 2px 8px 3px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: clamp(0.875rem, -0.5673076923rem + 6.1538461538vw, 1.125rem);
  font-weight: 600;
  color: var(--primary);
}
.fv-image-wrap .fv-copy-wrap .maincopy {
  font-size: clamp(1.5rem, 0.0576923077rem + 6.1538461538vw, 1.75rem);
}
.fv-image-wrap .fv-copy-wrap .subcopy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fv-image-wrap figure {
  width: 82%;
  aspect-ratio: 35/40;
  margin-left: auto;
  border-top-left-radius: 90px;
  border-bottom-left-radius: 90px;
  overflow: hidden;
}
.fv-image-wrap figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.date-wrap {
  background: var(--primary);
  padding: 24px 24px 64px;
  margin-top: -50px;
}

.event-date-label {
  background: var(--accent);
  padding: 4px 8px 5px;
  color: #fff;
  font-size: 0.875rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.event-date {
  margin-top: 8px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(2.1875rem, -1.7788461538rem + 16.9230769231vw, 2.875rem);
  font-weight: 500;
  color: #fff;
}
.event-date span {
  font-size: clamp(1.5rem, 0.7788461538rem + 3.0769230769vw, 1.625rem);
}

.event-date-sub {
  color: #fff;
  display: flex;
  gap: 8px;
}
.event-date-sub .time {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(1.625rem, 0.1826923077rem + 6.1538461538vw, 1.875rem);
  font-weight: 500;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.event-date-sub .date-note {
  flex: 1;
  font-size: clamp(0.625rem, -0.0961538462rem + 3.0769230769vw, 0.75rem);
  font-weight: 400;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}

.place-flex {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  align-items: flex-start;
  gap: 16px;
}

.place-label {
  font-size: clamp(1.25rem, -0.1923076923rem + 6.1538461538vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.point-wrap {
  margin-top: -48px;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.container {
  width: calc(100% - 48px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.sec {
  padding-block: 64px;
  position: relative;
}
.sec.-hr::after {
  content: "";
  width: 100%;
  aspect-ratio: 400/30;
  background: url(../images/section-hr.webp) no-repeat center/cover;
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 10;
}
.sec.menfis1::before {
  content: "";
  width: 80px;
  aspect-ratio: 1/2;
  background: url(../images/bg-texture-blue.webp) left center/cover;
  position: absolute;
  right: 0;
  top: -45px;
}

.anchor-wrap {
  width: 92%;
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.25em;
}
.anchor-wrap > a {
  flex: 1;
  height: 60px;
  border: 1px solid var(--primary);
  background: #fff;
  border-radius: 8px;
  padding: 0 0.125rem;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--primary);
}
.anchor-wrap > a span {
  padding-bottom: 1em;
  position: relative;
}
.anchor-wrap > a span::before {
  content: "";
  width: 1em;
  aspect-ratio: 2/1;
  background: var(--primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5em);
}

.event-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
}
.event-list > li {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 0.75em;
  gap: 16px;
}
.event-list > li figure {
  width: 60px;
  margin-inline: auto;
  aspect-ratio: 1;
}
.event-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.event-list > li .text-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.flow-table {
  border-top: 1px solid var(--primary);
}
.flow-table > li {
  padding: 1em;
  border-bottom: 1px solid var(--primary);
  background: #fff;
  font-size: 0.875rem;
  line-height: 1.5;
}
.flow-table .list-mark {
  position: relative;
  padding-left: 2em;
  text-indent: -1em;
}
.flow-table .list-mark::before {
  content: "■";
}

.table-summary {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.5;
  border-top: 1px solid var(--primary);
}
.table-summary tr {
  border-bottom: 1px solid var(--primary);
}
.table-summary th, .table-summary td {
  padding: 0.75em 0.5em;
  vertical-align: middle;
}
.table-summary th {
  background: var(--primary-light);
  width: 9em;
  text-align: left;
  font-weight: 600;
}
.table-summary td {
  background: #fff;
}

.map-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--primary);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
}

.sns-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25em;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.sns-wrap li {
  display: flex;
  min-width: 0;
}
.sns-wrap a, .sns-wrap button {
  width: 100%;
  font-size: 0.875rem;
  letter-spacing: 0;
  padding: 0.75em 1em;
  border-radius: 8px;
  text-align: center;
  color: var(--white);
}
.sns-wrap a.x, .sns-wrap button.x {
  background: #333;
}
.sns-wrap a.ig, .sns-wrap button.ig {
  background: linear-gradient(135deg, #741AFA, #FF30C4, #FF5D21, #FFD735);
}
.sns-wrap a.fb, .sns-wrap button.fb {
  background: #0866FF;
}
.sns-wrap a.line, .sns-wrap button.line {
  background: #00C84A;
}
.sns-wrap button {
  width: 100%;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.sns-share-status {
  min-height: 1.5em;
  margin-top: 0.75em;
  color: var(--primary);
  font-size: 0.75rem;
  text-align: center;
}
.sns-share-status:empty {
  display: none;
}

.htag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}
.htag-wrap > span {
  background: #fff;
  border: 1px solid var(--primary-pale);
  color: var(--primary-pale);
  font-size: 0.6875rem;
  line-height: 1;
  padding: 0.5em 0.75em;
  border-radius: 99px;
  display: inline-block;
}

.address-info {
  display: grid;
  grid-template-columns: 5em 1fr;
}

.footer {
  background: var(--primary);
  padding: 64px 24px;
}

.f-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Barlow Semi Condensed", sans-serif;
  color: #fff;
}

.w70 {
  width: 70%;
  margin-inline: auto;
}

.w60 {
  width: 60%;
  margin-inline: auto;
}

.ib {
  display: inline-block;
}

.pagetop {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: fixed;
  bottom: 48px;
  right: 16px;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  z-index: 90;
  transition: all 0.3s ease-out;
}
.pagetop.is-show {
  pointer-events: all;
  opacity: 1;
}
.pagetop::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: #fff;
  -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
          clip-path: polygon(50% 0, 0 100%, 100% 100%);
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 8px);
}

.program-list {
  position: relative;
}

.program-card {
  width: calc(50% - 4px);
  margin-right: 4px;
  margin-bottom: 8px;
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--primary);
  border-top: 5px solid var(--primary);
  background: #fff;
  padding-bottom: 0.5rem;
}
.program-card .program-cate-wrap {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.program-card .program-cate-wrap .program-cate {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  border: 1px solid var(--primary);
  padding: 2px 8px;
  border-radius: 99px;
}
.program-card .program-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.program-card .program-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.program-card .program-logo {
  width: 120px;
  height: 60px;
  overflow: hidden;
  margin: 0.5rem auto;
}
.program-card .program-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.program-card .text-box {
  padding: 0 0.5rem 1rem;
}
.program-card .text-box .heading {
  font-weight: 700;
  color: var(--primary);
  font-size: clamp(0.75rem, 0.3894230769rem + 1.5384615385vw, 0.8125rem);
  margin-top: 1rem;
}
.program-card .text-box .note-box {
  background: var(--bg);
  padding: 0.75rem;
  border-radius: 8px;
  margin-top: 0.5rem;
}
.program-card .text-box .note-box P:first-child {
  margin-top: 0 !important;
}
.program-card .modal-area {
  width: 90%;
  margin: auto auto 0;
}
.program-card .modal-area .modal-btn {
  border: 1px solid var(--primary);
  border-radius: 99px;
  height: 1.5rem;
  text-align: center;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: clamp(0.75rem, 0.0288461538rem + 3.0769230769vw, 0.875rem);
  cursor: pointer;
  position: relative;
}
.program-card .modal-area .modal-btn::before {
  content: "+";
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 0.65em);
}

.card-title {
  margin-top: 0.5rem;
  font-size: clamp(1rem, 0.2788461538rem + 3.0769230769vw, 1.125rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  border-bottom: 1px dashed var(--accent);
  padding-bottom: 0.25rem;
}

.program-place {
  font-size: clamp(0.6875rem, 0.3269230769rem + 1.5384615385vw, 0.75rem);
  margin-top: 8px;
  line-height: 1.4;
}

.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-content {
  width: min(380px, 90%);
  max-height: 100dvh;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  z-index: 110;
  transition: all 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal-content.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modal-content .close-btn {
  width: 2rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  background: #fff;
  border: 1px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
}
.modal-content .close-btn::before {
  content: "×";
  line-height: 1;
  color: var(--primary);
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
}

.modal-link {
  border: 1px solid var(--primary-pale);
  padding: 0.5rem 1rem;
  text-align: center;
  color: var(--primary);
  font-size: clamp(0.75rem, 0.0288461538rem + 3.0769230769vw, 0.875rem);
  border-radius: 8px;
}
.modal-link span {
  padding-right: 1.5em;
  position: relative;
}
.modal-link span::after {
  content: "";
  width: 1em;
  aspect-ratio: 1;
  background: url(../images/ico-newtab.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: calc(0.5lh - 0.25em);
}

.program-detail h1, .program-detail h2, .program-detail h3, .program-detail h4, .program-detail h5, .program-detail h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.program-detail h1 {
  font-size: clamp(1.125rem, 0.7644230769rem + 1.5384615385vw, 1.1875rem);
}
.program-detail h2 {
  font-size: clamp(1rem, 0.6394230769rem + 1.5384615385vw, 1.0625rem);
}
.program-detail h3 {
  font-size: clamp(0.875rem, 0.5144230769rem + 1.5384615385vw, 0.9375rem);
}
.program-detail h4 {
  font-size: clamp(0.75rem, 0.3894230769rem + 1.5384615385vw, 0.8125rem);
}
.program-detail h5 {
  font-size: clamp(0.625rem, 0.2644230769rem + 1.5384615385vw, 0.6875rem);
}
.program-detail h6 {
  font-size: clamp(1.125rem, 4.0096153846rem - 12.3076923077vw, 0.625rem);
}
.program-detail p {
  font-size: clamp(0.8125rem, 0.0913461538rem + 3.0769230769vw, 0.9375rem);
  line-height: 1.7;
}
.program-detail p + p {
  margin-top: 0.5rem;
}
.program-detail strong {
  font-weight: 700;
}
.program-detail ul {
  margin-block: 0.5rem;
  list-style: disc;
  padding-left: 1.5rem;
}
.program-detail ul li {
  line-height: 1.6;
}
.program-detail ol {
  margin-block: 0.5rem;
  list-style: decimal;
  padding-left: 1.5rem;
}
.program-detail ol li {
  line-height: 1.6;
}
.program-detail blockquote {
  font-style: italic;
  padding: 1rem;
}
.program-detail a {
  text-decoration: underline;
  text-underline-offset: 0.1em;
  color: var(--primary);
}

.program-switch {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.program-switch input {
  display: none;
}
.program-switch li {
  border: 1px solid var(--primary);
  border-radius: 4px;
  overflow: hidden;
}
.program-switch li label {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.6875rem, 0.3269230769rem + 1.5384615385vw, 0.75rem);
  cursor: pointer;
  padding: 4px 8px;
}
.program-switch li label:has(:checked) {
  background: var(--primary);
  color: #fff;
}

.plan-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 0.5rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--primary);
  border-top: 5px solid var(--primary);
  background: #fff;
  padding-bottom: 0.5rem;
}
.plan-card .plan-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.plan-card .plan-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.plan-card .plan-logo {
  width: 120px;
  height: 60px;
  overflow: hidden;
  margin: 0.5rem auto;
}
.plan-card .plan-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.plan-card .text-box {
  padding: 0 0.5rem 1rem;
}
.plan-card .text-box .heading {
  font-weight: 700;
  color: var(--primary);
  font-size: clamp(0.75rem, 0.3894230769rem + 1.5384615385vw, 0.8125rem);
  margin-top: 1rem;
}
.plan-card .text-box .note-box {
  background: var(--bg);
  padding: 0.75rem;
  border-radius: 8px;
  margin-top: 0.5rem;
}
.plan-card .text-box .note-box P:first-child {
  margin-top: 0 !important;
}
.plan-card .modal-area {
  width: 90%;
  margin: auto auto 0;
}
.plan-card .modal-area .modal-btn {
  border: 1px solid var(--primary);
  border-radius: 99px;
  height: 1.5rem;
  text-align: center;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: clamp(0.75rem, 0.0288461538rem + 3.0769230769vw, 0.875rem);
  cursor: pointer;
  position: relative;
}
.plan-card .modal-area .modal-btn::before {
  content: "+";
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 0.65em);
}
/*# sourceMappingURL=style.css.map */