@charset "utf-8";

html {
  scroll-padding-top: 104px;
  @media screen and (max-width: 767px) {
    scroll-padding-top: 72px;
  }
}

/* ------------------
 グローバル変数
------------------ */
:root {
  /* 色 */
  --light-gray: #EAEAEA;
  --middle-gray: #D7D7D7;
  --dark-gray: #999;
  --var-color: #222;
  --light-beige: #EFEFEC;
  --middle-beige: #F0E9E1;
  --dark-beige: #CFCFC3;

  --sr26-red: #ed1c2a;
  --sr25-orange: #f79428;
  --sr24-yellow: #e7c915;
  --sr23-green: #8fb607;
  --sr22-blue: #77aad3;
  --sr21-violet: #6864ae;
  --sr20-purple: #bc6fae;
  --sr19-red: #FC3B39;
  --sr-general: #707070;

  --culture-green: #359A47;
  --culture-cyan: #37B6BF;
  --culture-red: #D34B4C;
  --culture-orange: #DB913C;
  --culture-lime: #A8BF37;
  --culture-blue: #6585C0;
  --culture-purple: #B473BA;

  /* 文字サイズ */
  --font-64: 6.4rem;
  --font-50: 5rem;
  --font-40: 4.2rem;
  --font-32: 3.2rem;
  --font-24: 2.4rem;
  --font-20: 2rem;
  --basic-txt: 1.6rem;

  /* 行間 */
  --letter-64: 6.4px;
  --letter-48: 4.8px;
  --letter-40: 4px;
  --letter-12: 1.2px;

  /* フォント種類 */
  --font-en: "Open Sans";

  /* 余白 */
  --space-65: 65px;
  --space-45: 45px;
  --space-30: 30px;
}
@media screen and (max-width: 767px) {
  :root {
    /* 文字サイズ */
    --font-64: 4.2rem;
    --font-50: 3.2rem;
    --font-40: 2.8rem;
    --font-32: 2.2rem;
    --font-24: 1.8rem;
    --font-20: 1.7rem;
    --basic-txt: 1.5rem;

    /* 行間 */
    --letter-64: 3.2px;
    --letter-48: 2.4px;
    --letter-40: 2px;
    --letter-12: 0.6px;

    /* 余白 */
    --space-65: 40px;
    --space-45: 30px;
    --space-30: 20px;
  }
}

/* ------------------
 フォント
------------------ */
body {
  position: relative;
  font-family: 'BIZ UDPGothic','Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-size: var(--basic-txt);
  line-height: 1.8;
  @media screen and (max-width: 1279px) {
    width: 1280px;
  }
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}

/* ------------------
 共通パーツ
------------------ */
.sp_block {display: none;}
section {position: relative;}

.dashed {
  margin: 10px 0 20px;
  &.sr-normal {border-block-start: 2px dashed var(--var-color);}
  &.sr-general {border-block-start: 2px dashed var(--sr-general);}
}

:where(a) {
  color: #000;
  letter-spacing: 0.8px;
  &:hover {
    opacity: 0.8;
  }
}

/* レイアウト */
.cmn_container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}
.cmn_section {
  width: 90%;
  max-width: 1240px;
  padding: var(--space-65) 0;
  margin: 0 auto;
  &.pt_none {padding-top: 0;}
  &.pt_30 {padding-top: var(--space-30);}
  &:has(.swiper-outer) {
    padding-bottom: 160px;
  }
  @media screen and (max-width: 767px) {
    &.pt_none {padding-top: var(--space-65);}
    &:has(.swiper-outer) {padding-bottom: 120px;}
  }
}
.cmn_section--item {
  &:not(:last-child) {
    margin-bottom: 3em;
  }
  &.bg_white {background: #fff;}
  &.bg_beige {background: var(--light-beige);}
  &.space-65:has(.cmn_container) {padding: var(--space-65) 0;}
}
.bg_container {
  padding: var(--space-65) 5%;
  background: var(--middle-gray);
}

/* 内部の要素をスクロール */
.scroll {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  overflow: auto;
}

/* 余白 */
@media screen and (max-width: 767px) {
  .cmn_spacer {
    &[style="height:65px"] {height: 40px!important;}
    &[style="height:45px"] {height: 25px!important;}
    &[style="height:30px"] {height: 20px!important;}
  }
}

/* dlリスト */
.cmn_dl {
  display: flex;
  gap: 1em;
  &.note {
    gap: 1em;
  }
  dt {
    width: 100%;
    max-width: max-content;
  } 
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    gap: 0 1em;
    dt {font-weight: bold;}
  }
}

/* FAQ項目 */
.faq_item {
  position: relative;
  &::before,
  &::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--var-color);
    top: 52px;
    right: 30px;
    margin: auto;
    transition: transform .1s ease;
    z-index: 1;
  }
  &::before {transform: rotate(45deg) translate(-4px, 4px);}
  &::after {transform: rotate(-45deg) translate(4px, 4px);}
  &:has(.faq_question[aria-pressed="true"])::before {transform: rotate(45deg);}
  &:has(.faq_question[aria-pressed="true"])::after {transform: rotate(-45deg);}

  &:has(+ .faq_item) {margin-bottom: var(--space-30);}
  &:has(+ .cmn_black--box) {margin-bottom: var(--space-30);}
  &:has(+ .cmn_normal--ttlMain) {margin-bottom: var(--space-65);}
  @media screen and (max-width: 767px) {
    &::before, &::after {display: none;}
  }
}
.faq_question {
  position: relative;
  font-size: var(--font-20);
  font-weight: bold;
  letter-spacing: var(--letter-12);
  padding: var(--space-30);
  padding-right: 60px;
  background: var(--middle-gray);
  display: flex;
  align-items: center;
  gap: 1.5em;
  &:hover {
    cursor: pointer;
  }
  &::before {
    content: 'Q';
    width: 44px;
    min-width: 44px;
    height: 44px;
    background: var(--var-color);
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-en);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    padding-inline: 5%;
    padding-right: calc(5% + 36px);
    gap: 0.75em;
    &::before {
      width: 36px;
      min-width: 36px;
      height: 36px;
    }
    &::after {
      content: '';
      position: absolute;
      background: url(../img/sp_faq_icon01.png)no-repeat center;
      background-size: contain;
      width: 22px;
      height: 13px;
      top: 0;
      bottom: 0;
      margin: auto;
      right: 5%;
    }
    &[aria-pressed="true"]::after {
      background: url(../img/sp_faq_icon02.png)no-repeat center;
      background-size: contain;
      width: 22px;
      height: 22px;
    }
  }
}
.faq_answer {
  position: relative;
  display: none;
  font-size: var(--basic-txt);
  letter-spacing: var(--letter-12);
  padding: var(--space-30);
  background: var(--light-gray);
  &::before {
    content: 'A';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 44px;
    min-width: 44px;
    height: 44px;
    border: 1px solid var(--var-color);
    border-radius: 50%;
    color: var(--var-color);
    font-size: var(--font-20);
    font-weight: bold;
    font-family: var(--font-en);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  &:has(.faq_answer--txt[aria-hidden="false"]) {
    display: block;
    margin-top: 4px;
  }
  & > * {margin-left: 75px;}
  .scroll {width: calc(100% - 75px);}
  .cmn_table--2rows {
    width: calc(100% - 75px)!important;
    margin-right: 0;
    th + th {width: auto!important;}
    tr:not(:has(+ tr)) td {background: var(--middle-gray);}
  }
  @media screen and (max-width: 767px) {
    padding-inline: 5%;
    gap: 0.75em;
    &::before {
      width: 36px;
      min-width: 36px;
      height: 36px;
    }
    & > * {margin-left: 48px;}
    .scroll,
    .cmn_table--2rows {width: calc(100% - 48px)!important;}
  }
}
.faq_answer--txt:has(+ *) {
  margin-bottom: var(--space-30);
}
.faq_answer--txt:has(+ .indent_list) {
  margin-bottom: 0;
}

/* 画像2枚横並び */
.cmn_img--w {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-inline: auto;
  figcaption {text-align: center;}
  &:not(:has(+ .cmn_spacer)) {margin-bottom: var(--space-30);}
  &:not(:has(+ *)) {margin-bottom: 0!important;}
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    gap: 10px;
  }
}
/* 画像3枚横並び */
.cmn_img--t {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  figcaption {text-align: center;padding-top: 1em;}
  &:not(:has(+ .cmn_spacer)) {margin-bottom: var(--space-30);}
  &:not(:has(+ *)) {margin-bottom: 0!important;}
  &:not(:has(.mt-figure:nth-child(3))) {
    justify-content: flex-start;
    .mt-figure:nth-child(2) + p {display: none;}
  }
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    gap: 10px;
    & > p {
      width: calc(50% - 5px);
    }
  }
}
/* 枠線付きボックス */
.cmn_border--box {
  border: 1px solid #ccc;
  padding: var(--space-30) var(--space-65);
  &:not(:last-child) {margin-bottom: var(--space-30);}
  &:not(:has(+ .cmn_border--box)) {margin-bottom: 0;}
  @media screen and (max-width: 767px) {
    padding-inline: 5%;
  }
}
/* 背景黒ボックス */
.cmn_black--box {
  width: 90%;
  max-width: 720px;
  margin-inline: auto;
  background: var(--var-color);
  padding: var(--space-30) var(--space-65);
  &:has(+ .cmn_black--box) {
    margin-bottom: var(--space-30);
  }
  *,
  .txt_link {color: #fff;}
  .txt_link::after {display: none!important;}
  @media screen and (max-width: 767px) {
    padding-inline: 5%;
  }
}
.mt-be-column .cmn_black--box {width: 100%;}


/* ------------------
 テキスト
------------------ */
.paragraph {
  margin-bottom: var(--space-45);
}
.sentence {
  &:not(:has(+ .cmn_spacer)),
  &:not(:last-child) {
    margin-bottom: var(--space-30);
  }
  &:last-child {margin-bottom: 0;}
  &.has-border {
    border: 1px solid #ccc;
    padding: 1.5em;
  }

  a {
    text-decoration: underline;
    &:hover {text-decoration: none;}
  }
}
.js_email a {
  text-decoration: underline;
  &:hover {text-decoration: none;}
}
.pt_1 {padding-top: 1em;}
.pb_1 {padding-bottom: 1em;}
.center_txt {
  text-align: center;
  img {
    margin: auto;
  }
  img + figcaption {margin-top: 1em;}

  &:has(.asset) a {display: inline-block;}
}
div.center_txt:not(:has(+ .cmn_spacer)) {
  margin-bottom: var(--space-30);
}
.right_txt {
  text-align: right;
  img {
    margin-inline: auto;
    margin-right: 0;
  }
}
.left_txt {
  text-align: left;
  img {
    margin-inline: auto;
    margin-left: 0;
  }
}
.bold_txt {
  font-weight: bold;
}
.red_txt {
  color: var(--sr26-red);
}
.yellow_marker {
  background: #ffea00;
}
.txt_link {
  color: var(--var-color);
  text-decoration: underline;
  &:hover {
    text-decoration: none;
  }
  &[rel="noopener"]::after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../img/icon_window.webp) no-repeat center center;
    background-size: contain;
    margin-left: 3px;
    transform: translateY(-4px);
    margin-right: 5px;
  }
  /* &[href$=".pdf"]::after {
    content: "";
    width: 22px;
    height: 25px;
    display: inline-block;
    background: url(../img/icon_pdf.webp) no-repeat center center;
    background-size: contain;
    margin-left: 5px;
    transform: translateY(8px);
    margin-top: -8px;
    margin-right: 5px;
  } */
}
p.txt_link {
  text-decoration: none;
  a {text-decoration: underline;}
  a:hover {text-decoration: none;}
}
.gray_link {
  &:not(:last-child) {
    margin-bottom: 1em;
  }
  a {
    background: var(--light-gray);
    color: var(--var-color);
    font-size: var(--basic-txt);
    letter-spacing: var(--letter-12);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    font-weight: bold;
    padding: 0.5em 1.5em;
    &[target="_blank"]::after {
      content: '';
      display: inline-block;
      background: url(../img/icon_window.png)no-repeat center;
      background-size: contain;
      width: 16px;
      height: 16px;
    }
  }
}
.black_link {
  &:not(:last-child) {margin-bottom: 1em;}
  &:not(:has(+ .black_link)) {margin-bottom: 0;}
  a {
    background: var(--var-color);
    color: #fff;
    font-size: var(--basic-txt);
    letter-spacing: var(--letter-12);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    font-weight: bold;
    padding: 0.5em 1.5em;
    &[target="_blank"]::after {
      content: '';
      display: inline-block;
      background: url(../img/icon_window_white.png)no-repeat center;
      background-size: contain;
      width: 16px;
      height: 16px;
    }
  }
}
.white_link {
  text-align: center;
  &:not(:last-of-type) {
    margin-bottom: 1em;
  }
  a {
    border-radius: 100px;
    background: #fff;
    color: var(--var-color);
    font-size: var(--basic-txt);
    letter-spacing: var(--letter-12);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    font-weight: bold;
    padding: 0.5em 3em;
  }
}

/* 箇条書き、インデント関連 */
.indent_list {
  padding-left: 1em;
  li {
    list-style: disc;
  }
}
.indent_txt {
  padding-left: 1em;
  text-indent: -1em;
}
.indent_num {
  padding-left: 1.25em;
  text-indent: -1.25em;
  &.two-digit {
    padding-left: 1.95em;
    text-indent: -1.95em;
  }
}

/* 横並び要素（2カラム）*/
.flex_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  &:not(:last-of-type) {margin-bottom: var(--space-45);}
  & > * {
    width: 100%;
    max-width: calc(50% - 10px);
  }
  &:has(+ .flex_box) {margin-bottom: 40px;}
  @media screen and (max-width: 767px) {
    gap: 20px;
    & > * {
      max-width: 100%;
    }
    &:has(+ .flex_box) {margin-bottom: 20px;}
  }
}
/* 横並び要素（3カラム）*/
.flex_box.column3 {
  &:not(:last-of-type) {
    margin-bottom: var(--space-45);
  }
  & > * {
    max-width: calc(100% / 3 - 40px / 3);
  }
  @media screen and (max-width: 767px) {
    & > * {
      max-width: 100%;
    }
  }
}

/* FVアンカーリンク（背景黒） */
.cmn_fv--anchor {
  width: 100%;
  background: var(--var-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em 3em;
  margin-bottom: var(--space-65);
  &.double {
    padding: var(--space-30) 80px;
    li {width: calc(50% - 1.5em);}
  }
  &.triple {
    padding: var(--space-30) var(--space-65);
    li {width: calc(33.3% - 3em);}
  }
  & ~ * {
    width: 90%!important;
    margin-inline: auto;
  }
  li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: #fff;
    &::before {
      content: '';
      display: inline-block;
      width: 20px;
      min-width: 20px;
      height: 1px;
      background: var(--light-gray);
    }
  }
  li a {
    position: relative;
    color: var(--light-gray);
    font-size: var(--basic-txt);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }
  li a::after {
    content: '';
    display: inline-block;
    background: url(../img/hd_arrow_white.png)no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
  }
  @media screen and (max-width: 767px) {
    gap: 0.5em 1em;
    &.double, &.triple {
      padding-inline: var(--space-30);
      li {width: 100%;}
    }
    & ~ * {width: 100%!important;}
  }
}
/* FVアンカーリンク（背景グレー） */
.cmn_fv--anchorGrayOuter {
  position: relative;
  background: var(--light-gray);
  padding: 1em;
  margin-bottom: var(--space-65);
}
.cmn_fv--anchorGray {
  width: 100%;
  max-width: 945px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75em;
  a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25em;
    background: #fff;
    padding: 0.5em 1em;
    font-weight: bold;
    letter-spacing: 3.2px;
  }
}


/* youtube埋め込み */
.cmn_video {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* 大見出し：英字＋日本語 */
.cmn_heading--grayOuter {
  background: var(--light-gray);
  padding-bottom: 1em;
  .cmn_heading {margin-bottom: 0!important;}
  @media screen and (max-width: 767px) {
    padding: 5px 0 var(--space-30);
    .cmn_heading {margin-top: 0!important;}
  }
}
.cmn_heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-weight: 700;
  margin-bottom: var(--space-30);
  &.w90 {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto var(--space-30);
  }
  &:has(.cmn_heading--sub:empty) {
    min-height: 115px;
  }
  @media screen and (max-width: 767px) {
    flex-wrap: initial;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    &.w90 {margin-top: var(--space-30);}
    &:has(.cmn_heading--sub:empty) {min-height: initial;}
  }
}
.cmn_heading--main {
  font-size: var(--font-24);
  letter-spacing: var(--letter-48);
}
.cmn_heading:has(.cmn_heading--sub:empty) .cmn_heading--main {
  font-size: var(--font-50);
}
.cmn_heading--sub {
  font-size: var(--font-64);
  font-family: var(--font-en);
  @media screen and (max-width: 767px) {
    line-height: 1.2;
    margin-bottom: 0.25em;
  }
}


/* 普通の見出し：font-32 */
.cmn_normal--ttlMain {
  color: var(--var-color);
  font-size: var(--font-32);
  letter-spacing: var(--letter-64);
  font-weight: 700;
  margin-bottom: var(--space-30);
  &.has-line {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-65);
    gap: 0.5em;
    white-space: nowrap;
    &::after {
      content: '';
      display: block;
      background: var(--light-gray);
      width: 100%;
      height: 5px;
    }
  }
  &.has-underline {
    border-bottom: 1px solid var(--var-color);
    padding-bottom: 0.5em;
  }
  @media screen and (max-width: 767px) {
    &.has-line {
      white-space: initial;
      &::after {display: none;}
    }
  }
}
/* 普通の見出し：font-24 */
.cmn_normal--ttlSub {
  font-size: var(--font-24);
  letter-spacing: var(--letter-48);
  font-weight: 700;
  margin-bottom: 1em;
  &.has-num {
    padding-left: 1.74em;
    text-indent: -1.74em;
  }
  @media screen and (max-width: 767px) {
    &.has-num {
      padding-left: 1.6em;
      text-indent: -1.6em;
    }
  }
}
.cmn_normal--ttlSmall {
  font-size: var(--font-20);
  letter-spacing: var(--letter-40);
  font-weight: 700;
  margin-bottom: 1em;
  &.has-line {
    display: flex;
    align-items: center;
    gap: 0.5em;
    /* white-space: nowrap; */
    &::before {
      content: '';
      display: block;
      background: var(--var-color);
      width: 20px;
      min-width: 20px;
      height: 1px;
    }
  }
  &.has-underline {
    border-bottom: 1px solid var(--middle-gray);
    padding-bottom: 0.5em;
  }
}


/* ナナイロぷらす 共通箇所 */
.nanairo_gray--outer {
  position: relative;
  background: var(--middle-gray);
  padding: var(--space-45) 0;
  @media screen and (max-width: 767px) {
    min-height: 250px;
    display: flex;
    align-items: center;
  }
}
.nanairo_gray--ttlBlock {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  max-width: 68px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0.5em;
  background: var(--var-color);
  color: #fff;
  z-index: 1;
  @media screen and (max-width: 767px) {
    max-width: 56px;
    gap: 6px;
  }
}
.nanairo_gray--ttl {
  min-height: 88px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: var(--font-24);
  letter-spacing: var(--letter-48);
}
.nanairo_gray--icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
}
.nanairo_gray--furigana {
  min-height: 24px;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  @media screen and (max-width: 767px) {
    font-size: 0.7rem;
  }
}
.nanairo_gray--color {
  width: 24px;
  height: 24px;
  &.sr26-red {background: var(--sr26-red);}
  &.sr25-orange {background: var(--sr25-orange);}
  &.sr24-yellow {background: var(--sr24-yellow);}
  &.sr23-green {background: var(--sr23-green);}
  &.sr22-blue {background: var(--sr22-blue);}
  &.sr21-violet {background: var(--sr21-violet);}
  &.sr20-purple {background: var(--sr20-purple);}
  &.sr19-red {background: var(--sr19-red);}
}
.nanairo_gray--inner {
  position: relative;
  max-width: 1024px;
  background: #fff;
  padding: 0;
}
.nanairo_gray--innerLink {
  padding: var(--space-30) var(--space-65);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  &:hover {opacity: 0.6;}
  @media screen and (max-width: 767px) {
    padding: var(--space-30) 56px;
    gap: 56px;
  }
}
.nanairo_gray--subttl {
  font-weight: 700;
  font-size: var(--font-32);
  letter-spacing: var(--letter-64);
  span {
    display: block;
    font-size: var(--font-24);
    letter-spacing: var(--letter-12);
  }
  @media screen and (max-width: 767px) {
    width: calc(50% - 32px);
    font-size: min(3.2rem, 3.6vw);
    span {
      font-size: min(2.4rem, 3.2vw);
    }
  }
}
.nanairo_gray--fig {
  position: relative;
  @media screen and (max-width: 767px) {
    width: calc(50% - 32px);
  }
}
.nanairo_gray--figCap {
  position: absolute;
  top: -1em;
  right: -1em;
  @media screen and (max-width: 767px) {
    top: -1.5em;
    right: -0.5em;
    width: 40px;
    aspect-ratio: 80 / 71;
  }
}
.nanairo_gray--prev,
.nanairo_gray--next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--var-color);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: var(--font-24);
  letter-spacing: var(--letter-48);
  font-weight: 700;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.nanairo_gray--prev {
  left: -8%;
  &::before {
    content: '←';
    writing-mode: initial;
    text-orientation: initial;
  }
  @media screen and (max-width: 767px) {
    left: 0;
  }
}
.nanairo_gray--next {
  right: -8%;
  &::after {
    content: '→';
    writing-mode: initial;
    text-orientation: initial;
  }
  @media screen and (max-width: 767px) {
    right: 0;
  }
}

/* テーブル */
.each_station--outer {
  background: var(--light-gray);
  &.sr19-red {margin-bottom: var(--space-65);}
}
.each_station--table {
  width: 1240px;
  margin: 0 auto;
  th, td {
    width: calc(1240px / 9);
    vertical-align: middle;
    text-align: center;
    font-size: var(--basic-txt);
    font-weight: 400;
    background: #fff;
    color: var(--var-color);
    padding: 0.5em;
  }
  thead th {
    position: relative;
    border-bottom: 2px solid var(--light-gray);
    &::before {
      content: '';
      display: inline-block;
      margin: auto;
      margin-right: 4px;
      width: 16px;
      height: 16px;
    }
  }
  thead th.sr26-red {&::before{background: var(--sr26-red);}}
  thead th.sr25-orange {&::before {background: var(--sr25-orange);}}
  thead th.sr24-yellow {&::before{background: var(--sr24-yellow);}}
  thead th.sr23-green {&::before{background: var(--sr23-green);}}
  thead th.sr22-blue {&::before{background: var(--sr22-blue);}}
  thead th.sr21-violet {&::before{background: var(--sr21-violet);}}
  thead th.sr20-purple {&::before{background: var(--sr20-purple);}}
  thead th.sr19-red {&::before{background: var(--sr19-red);}}

  tbody th,
  th:not(:last-of-type),
  td:not(:last-of-type) {
    border-right: 2px solid var(--light-gray);
  }

  tbody tr:not(:last-child) th,
  tbody tr:not(:last-child) td {
    border-bottom: 2px solid var(--light-gray);
  }
}

.cmn_table {
  width: 1240px;
  margin: 0 auto;
  th {
    vertical-align: middle;
    text-align: center;
    font-size: var(--basic-txt);
    background: #404040;
    color: #fff;
    border-bottom: 2px solid #fff;
  }
  th.bd-right,
  th:not(:last-child) {
    border-right: 2px solid #fff;
  }
  tbody tr:nth-child(odd) {
    background: var(--light-gray);
    &:has(td + th:nth-child(3)) td:nth-child(-n + 2),
    &:has(td + th:nth-child(5)) td:nth-child(-n + 4),
    &:has(td + th:nth-child(7)) td:nth-child(-n + 6) {
      background: var(--middle-gray);
    }
  }
  tbody tr.bg-dark {background: var(--middle-gray);}
  tbody tr:nth-child(even) {
    background: var(--middle-gray);
    &:has(td + th:nth-child(2)) td:nth-child(n + 3),
    &:has(td + th:nth-child(4)) td:nth-child(n + 5),
    &:has(td + th:nth-child(6)) td:nth-child(n + 7) {background: var(--light-gray);}
  }
  tbody tr.bg-light {background: var(--light-gray);}
  th, td {
    padding: 0.6em 10px;
    text-align: center;
    &.bg-dark {background: var(--middle-gray);}
  }
  td.bd-right,
  td:not(:last-child) {
    border-right: 2px solid #fff;
  }
  tr:not(:last-child) td {
    border-bottom: 2px solid #fff;
  }
  @media screen and (max-width: 767px) {
    /* width: 750px!important; */
    width: max-content!important;
    min-width: 440px;
    th {
      width: auto!important;
      background: #5C65BB;
      font-size: 1.2rem;
    }
    th.sp-nowrap {white-space: nowrap;}
    td {font-size: 1.2rem;}
    td:first-child {
      /* width: 25%; */
      width: auto;
    }
    &.sp-auto td:first-child {width: auto;}
  }
}
.cmn_table--2rows {
  width: 100%;
  margin: 0 auto;
  tr {border-bottom: 2px solid #fff;}
  th {
    width: 20%;
    padding: 0.75em 15px;
    background: #404040;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    border-right: 2px solid #fff;
  }
  &:has(td + td) {
    th {
      width: auto;
    }
  }
  td {
    padding: 1em var(--space-45);
  }
  tr:nth-child(odd) td {background: var(--light-gray);}
  tr:nth-child(even) td {background: var(--middle-gray);}

  &.type02 {
    border-top: 1px solid var(--var-color);
    tr {border-bottom: 1px solid var(--var-color);}
    th {
      background: var(--dark-beige);
      color: var(--var-color);
    }
    td {background: transparent!important;}
  }

  &.type03 {
    /* border-collapse: separate;
    border-spacing: 10px; */
    tr {border: none!important;}
    th {
      position: relative;
      padding: 0.5em 15px;
      text-align: left;
      color: var(--var-color);
      background: transparent;
      font-weight: 400;
      border-right: none;
      border-bottom: 1px solid var(--var-color);
      width: 25%;
    }
    th::before {
      content: '';
      position: absolute;
      right: 0;
      bottom: -1px;
      background: var(--light-beige);
      width: 10px;
      height: 1px;
    }
    td {
      padding: 0.5em 15px;
      border-bottom: 1px dashed var(--var-color);
    }
    tbody tr:nth-child(odd) td,
    tbody tr:nth-child(even) td {background: none;}
  }
  @media screen and (max-width: 767px) {
    /* font-size: 1.2rem; */
    th {
      display: block;
      width: 100%;
      border-right: 0;
      background: #5C65BB;
      &:first-child {
        width: 100%;
      }
    }
    td {
      display: block;
      width: 100%!important;
      padding: 1em 15px;
    }
    tr:has(td + td) {
      th + td,
      td:first-child {padding-bottom: 0;}
      td + td {padding-top: 0;}
    }

    &.type03 {
      th {
        border-bottom: 1px dashed var(--var-color);
        font-weight: bold;
        width: 100%;
      }
      th::before {display: none;}
      td {
        border-bottom: 1px solid var(--var-color);
      }
    }
  }
}

/* 遅延証明書トップ（delay） */
.delay_table {
  td a {
    text-decoration: underline;
    &:hover {text-decoration: none;}
  }
}

.delay_detail--outer {
  width: 90%;
  max-width: 1240px;
  margin: var(--space-45) auto 0;
  border: 1px solid var(--var-color);
  padding: var(--space-65) 5%;
}
.delay_detail--rightTxt {
  text-align: right;
  margin-bottom: var(--space-30);
}
.delay_detail--ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  font-size: var(--font-40);
  letter-spacing: var(--letter-64);
  margin-bottom: var(--space-45);
}
.delay_detail--outer .cmn_table--2rows {
  width: 560px;
  margin-bottom: var(--space-45);
  th {
    width: 40%;
    font-weight: 400;
    font-size: var(--font-20);
    letter-spacing: 1px;
  }
  td {
    width: 60%;
    font-weight: 400;
    font-size: var(--font-20);
    letter-spacing: 1px;
    padding: 0.75em var(--space-30);
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    width: 100%;
    th, td {width: 100%;}
  }
}
.delay_detail--note {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
.delay_detail--print {
  background: #404040;
  color: #fff;
  border-radius: 100px;
  width: 100%;
  max-width: 240px;
  height: 48px;
  margin: var(--space-45) auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  @media print {display: none;}
}

/* 一覧のリスト（ticket 他） */
.overview_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  @media screen and (max-width: 767px) {
    gap: 16px;
  }
}
.overview_list--child {
  width: calc(50% - 16px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  @media screen and (max-width: 767px) {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.overview_list--item {
  background: var(--light-gray);
  width: 100%;
  max-width: 240px;
  height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  div:has(figure:nth-child(2)) {
    display: flex;
    figure:first-child {margin-right: -5px;}
    figure:last-child {margin-left: -5px;}
  }
  figure {
    background: var(--var-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  figure + p.center_txt {
    font-size: var(--basic-txt);
    line-height: 1.5;
  }
  @media screen and (max-width: 767px) {
    max-width: 112px;
    height: auto;
    gap: 6px;
    padding: 1em 0.25em;
    figure {
      min-width: 44px;
      min-height: 44px;
    }
  }
}
.overview_list--des {
  width: calc(100% - 260px);
  @media screen and (max-width: 767px) {
    width: calc(100% - 122px);
  }
}

/* 問い合わせへのボタン */
.cont_note {
  width: 100%;
  max-width: 850px;
  margin: var(--space-65) auto 0;
  border: 1px solid #ccc;
  padding: 2em var(--space-45);
  @media screen and (max-width: 767px) {
    padding: 2em 5%;
  }
}
.cont_note--txt {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: var(--letter-12);
  margin-bottom: 1em;
  text-align: center;
}

/* 詳細ボタン */
.more_btn {
  position: relative;
  padding: 0.5em var(--space-45);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: var(--var-color);
  color: #fff;
  font-weight: 700;
  min-width: 176px;
  @media screen and (max-width: 767px) {
    min-width: initial;
  }
}
.more_btn.type02 {
  padding: 0.25em var(--space-45);
  background: transparent;
  color: var(--var-color);
  border-radius: 50px;
  border: 1px solid var(--var-color);
}

/* ------------------
 header
------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  padding: 0 var(--space-65);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  z-index: 999;
  &.rev {
    background: rgba(34, 34, 34, 0.8);
  }
  @media screen and (max-width: 767px) {
    height: 72px;
    padding: 0 2em;
  }
}
.hd_left {
  display: flex;
  align-items: flex-start;
  gap: 2em;
  @media screen and (max-width: 767px) {
    width: 100%;
    justify-content: space-between;

  }
}
.hd_logo {
  position: relative;
  z-index: 1;
  @media screen and (max-width: 767px) {
    a {
      height: 48px;
      display: flex;
      align-items: center;
    }
    a img {height: 100%;}
  }
}
.hd_right {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8em;
  z-index: 1;
  @media screen and (max-width: 767px) {
    display: none;
  }
}
.hd_right--sns {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 検索窓 */
.hd_right--search {
  position: relative;
}
.js-search-toggle {
  border: 1px solid #fff;
  width: 42px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  &:hover img {
    opacity: 0.6;
  }
}
.search-wrap {
  position: absolute;
  bottom: -3em;
  right: -3px;
  &[aria-hidden="true"] {display: none;}
  &[aria-hidden="false"] {display: block;}
}
#cse-search-box input {
  &[type="text"] {
    display: flex;
    width: 280px;
    height: 45px;
    border-radius: 5px;
    padding: 5px;
    background: rgb(255, 255, 255) url("https://www.google.com/cse/static/images/1x/ja/branding.png") left 9px top 50% no-repeat;
    &:focus,
    &:not(:placeholder-shown) {
      background: #fff;
    }
  }
  &[type="submit"] {
    width: 40px;
    height: 35px;
    position: absolute;
    right: 5px;
    top: 4px;
    background: url(../img/hd_search.png)no-repeat center var(--var-color);
    padding: 3px 10px;
    border-radius: 5px;
    border: 0 none;
    color: transparent;
  }
}
.gsc-control-cse {
  padding: 0!important;
}
/* Englishボタン */
.hd_right--global {
  border: 1px solid #fff;
  a {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 0.25em;
    color: #fff;
    padding: 0 0.5em;
    font-size: var(--basic-txt);
    &:hover {opacity: 0.6;}
  }
}
/* ------------------
  メニュー
------------------ */
.hdNav_btn {
  position: relative;
  display: block;
  width: 48px;
  height: 36px;
  border: 1px solid #fff;
  transition: all 0.5s;
  z-index: 1;
  &::after {
    color: #fff;
    position: absolute;
    font-weight: bold;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 2em);
    font-size: 1.1rem;
    width: 100%;
  }
  span {position: absolute;display: block;height: 2px;background: #fff;margin: auto;}
  
  /* 閉じた状態 */
  &[aria-pressed="false"]::after {content: 'MENU';}

  &[aria-pressed="false"] span {width: 30px;transition: all 0.5s;}
  &[aria-pressed="false"] span:nth-child(1) {top: 9px;left: 0;right: 0;}
  &[aria-pressed="false"] span:nth-child(2) {top: 50%;left: 0;right: 0; transform: translateY(-50%);}
  &[aria-pressed="false"] span:nth-child(3) {bottom: 9px;left: 0;right: 0;}
  
  /* 開いた状態 */
  &[aria-pressed="true"]::after {content: 'CLOSE';}

  &[aria-pressed="true"] span {width: 30px;transition: all 0.5s;}
  &[aria-pressed="true"] span:nth-child(1) {transform: rotate(30deg);width: 28px;left: calc(50% - 14px);top: 17px;}
  &[aria-pressed="true"] span:nth-child(2) {display: none;}
  &[aria-pressed="true"] span:nth-child(3) {transform: rotate(-30deg);width: 28px;left: calc(50% - 14px);top: 17px;}

  @media screen and (max-width: 767px) {
    &::after {
      font-size: 1.2rem;
    }
  }
}
.hdNav_panel {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100dvh;
  transition: all 0.6s;
  pointer-events: none;
  &::before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: transparent;
    transition: .6s;
    transition-delay: .2s;
  }
  
  /* パネルが閉じている状態 */
  /* &[aria-hidden="true"] {} */

  /* パネルが開いている状態 */
  &[aria-hidden="false"] {
    overflow-y: auto;
    &::before {
      width: 100%;
      height: 100%;
      background: var(--var-color);
      border-radius: 0;
      transition-delay: 0s;
    }

    .hdPanel_inner {
      pointer-events: all;
      transition-delay: .3s;
      opacity: 1;
    }
  }
  @media screen and (max-width: 767px) {
    &[aria-hidden="false"] {overflow-y: initial;}
  }
}
/* メニューパネル内の項目 */
.hdPanel_inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 104px 0 var(--space-45);
  pointer-events: none;
  transition: .3s;
  opacity: 0;
  @media screen and (max-width: 767px) {
    width: 95%;
    height: 100dvh;
    padding-top: 0;
    padding-bottom: 120px;
    margin-top: 72px;
    overflow-y: auto;
  }
}
.hdPanel_sec--childItem {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: var(--font-40);
  font-family: var(--font-en);
  color: var(--light-gray);
  span {
    font-size: var(--font-24);
  }
  @media screen and (max-width: 767px) {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    &:has(img[src = "/common/img/hd_arrow_white.png"]) {
      padding-right: 30px;
    }
    img[src = "/common/img/hd_arrow_white.png"] {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      margin: auto;
    }
  }
}
.hdPanel_sec--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 1em;
    
  }
}
.hdPanel_sec--flexItem {
  width: 100%;
  &:first-of-type {max-width: 630px;}
  &:last-of-type {max-width: 600px;}
}
.hdPanel_subList {
  width: 72%;
  margin: 1em auto 0;
  @media screen and (max-width: 767px) {
    width: 90%;
  }
}
.hdPanel_subList.wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--space-65);
  margin-top: 4em;
  &.sp_block {display: none;}
  @media screen and (max-width: 767px) {
    flex-wrap: initial;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
    &.sp_block {display: flex;}
    &.pc_block {display: none;}
  }
}
.hdPanel_subList.wrap .hdPanel_subList--item {
  width: calc(50% - 32.5px);
  &:nth-child(3) {margin-bottom: 0;}
  @media screen and (max-width: 767px) {
    width: 100%;
    &:nth-child(3) {margin-bottom: 0.75em;}
  }
}
.hdPanel_subList--item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  &:not(:last-child) {
    margin-bottom: 0.75em;
  }
  &::before {
    content: '';
    display: inline-block;
    width: 20px;
    min-width: min-width;
    height: 1px;
    background: var(--light-gray);
  }
  a {
    color: var(--light-gray);
    font-size: var(--basic-txt);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1em;
  }
  @media screen and (max-width: 767px) {
    a {
      gap: 10px;
    }
  }
}
@media screen and (max-width: 767px) {
  .hdPanel_subList li.sp_block:has(div.hdPanel_subList--item) {
    width: 80%;
    margin: 0 auto 0.75em;
  }
  .hd_ruby {
    min-width: 64px;
  }
  .hd_rt {
    min-width: 104px;
    font-size: 80%;
  }
}

.hdPanel_sec--recruit {
  background: var(--light-gray);
  padding: var(--space-30) var(--space-65);
  display: flex;
  justify-content: flex-start;
  gap: var(--space-65);
  margin-top: var(--space-30);

  .hdPanel_sec--child {
    width: 100%;
    max-width: max-content;
    margin-top: -0.5em;
  }
  .hdPanel_sec--childItem {color: var(--var-color);}
  .hdPanel_subList {
    display: flex;
    flex-wrap: wrap;
    gap: 0 var(--space-65);
    width: 100%;
    max-width: 620px;
    margin: 0;
  }
  .hdPanel_subList--item {
    width: calc(50% - 32.5px);
    &::before {background: var(--var-color);}
    a {color: var(--var-color);}
  }
  @media screen and (max-width: 767px) {
    padding: var(--space-30) 5%;
    flex-direction: column;
    gap: 10px;

    .hdPanel_subList {
      flex-wrap: initial;
      flex-direction: column;
    }
    .hdPanel_subList--item {width: 100%;}
  }
}
@media screen and (max-width: 767px) {
  .hdPanel_sec {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}


/* ------------------
お知らせ
------------------ */
.news_list {
  max-height: 480px;
  overflow-y: auto;
  &.sub-page {
    max-height: initial;
    overflow-y: initial;
  }
  &:has(+ p.center_txt) {
    margin-bottom: var(--space-45);
  }
  @media screen and (max-width: 767px) {
    max-height: 360px;
  }
}
.news_item {
  padding: 1em;
	display: flex;
  flex-wrap: wrap;
	align-items: flex-start;
	gap: 5px 20px;
  border-top: 1px solid var(--var-color);
  &:last-child {
    border-bottom: 1px solid var(--var-color);
  }
  a {
    text-decoration: underline;
  }
  a:hover {
    text-decoration: none;
  }
  @media screen and (max-width: 767px) {
    padding-top: 2.5em;
    flex-direction: column;
    gap: 0.5em;
  }
}
.news_status {
  position: relative;
	display: flex;
	align-items: center;
	gap: 1em;
  white-space: nowrap;
  time.new_mark {
    display: flex;
    align-items: center;
    gap: 1em;
    white-space: nowrap;
  }
  time.new_mark::after {
    content: 'NEW';
    color: var(--sr26-red);
    font-size: var(--basic-txt);
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    gap: 0.5em;
    time {
      position: absolute;
      top: -2em;
    }
  }
}
.news_label {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-gray);
  font-size: var(--basic-txt);
  font-weight: bold;
  border: 1px solid var(--dark-gray);
  padding: 0 1em;
  &.sr26-red {
    color: #fff;
    background: var(--sr26-red);
    border: 1px solid var(--sr26-red);
  }
  &.sr25-orange {
    color: #fff;
    background: var(--sr25-orange);
    border: 1px solid var(--sr25-orange);
  }
  &.sr24-yellow {
    color: #fff;
    background: var(--sr24-yellow);
    border: 1px solid var(--sr24-yellow);
  }
  &.sr23-green {
    color: #fff;
    background: var(--sr23-green);
    border: 1px solid var(--sr23-green);
  }
  &.sr22-blue {
    color: #fff;
    background: var(--sr22-blue);
    border: 1px solid var(--sr22-blue);
  }
  &.sr21-violet {
    color: #fff;
    background: var(--sr21-violet);
    border: 1px solid var(--sr21-violet);
  }
  &.sr20-purple {
    color: #fff;
    background: var(--sr20-purple);
    border: 1px solid var(--sr20-purple);
  }
  &.sr19-red {
    color: #fff;
    background: var(--sr19-red);
    border: 1px solid var(--sr19-red);
  }
}
.news_ttl {
  width: 100%;
  font-size: var(--basic-txt);
  font-weight: 400;
  padding: 0.5em 0 0;
}

.news_filter {
  background: var(--var-color);
  color: #fff;
  padding: 0.5em;
  margin-bottom: var(--space-30);
  option {
    background: #fff;
    color: var(--var-color);
  }
}
.news_pagenation {
  position: relative;
  margin-top: var(--space-30);
}
.news_pagenation--list,
.area_wrapCont--pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  li {
    width: 32px;
    height: 32px;
    background: #fff;
    color: var(--var-color);
    border: 1px solid var(--var-color);
    border-radius: 50%;
  }
  li.prev, li.next {
    border: none;
    border-radius: initial;
  }
  li[aria-current = "page"] {
    background: var(--var-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


.news_head {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  color: var(--var-color);
}
.news_head--ttl {
  font-size: var(--var-color);
  font-size: var(--font-32);
  font-weight: 700;
  letter-spacing: var(--letter-48);
  padding-bottom: var(--space-30);
  margin-bottom: var(--space-65);
  border-bottom: 1px solid var(--var-color);
}
.news_cont + .center_txt .more_btn {margin-top: var(--space-65);}

/* ------------------
swiper箇所
------------------ */
.swiper-event,
.swiper-tokaiinaka,
.swiper-station,
.swiper-cultureschool {
  width: 100%;
  max-width: 784px;
}
.swiper-event--item,
.swiper-tokaiinaka--item,
.swiper-station--item,
.swiper-cultureschool--item {
  a {
    position: relative;
    display: block;
  }
  figure {
    background: var(--middle-gray);
    height: 128px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  figure img {
    width: auto;
    max-height: 100%;
  }
  @media screen and (max-width: 767px) {
    figure {
      height: auto;
      aspect-ratio: 181 / 128;
    }
  }
}
.swiper-event--ex,
.swiper-tokaiinaka--ex,
.swiper-station--ex,
.swiper-cultureschool--ex {
  height: 148px;
  background: #fff;
  padding: 1em 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.4;
  &.bg_gray {
    background: var(--light-gray);
  }
  p:first-child {
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    span {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-line-clamp: 2;
    }
  }
  p:last-child {
    margin-top: 0.4em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
  }
}
.swiper-event--labelOuter,
.swiper-tokaiinaka--labelOuter,
.swiper-station--labelOuter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 6px;
  &:has(.open),
  &:has(.close) {
    margin-top: 0;
    margin-bottom: 6px;
  }
}
.swiper-event--label,
.swiper-tokaiinaka--label,
.swiper-station--label {
  width: 56px;
  height: 24px;
  color: var(--var-color);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  text-align: center;
  font-size: 1.1rem;
  &.sr26-red {background: var(--sr26-red);color: #fff;}
  &.sr25-orange {background: var(--sr25-orange);}
  &.sr24-yellow {background: var(--sr24-yellow);}
  &.sr23-green {background: var(--sr23-green);}
  &.sr22-blue {background: var(--sr22-blue);color: #fff;}
  &.sr21-violet {background: var(--sr21-violet);color: #fff;}
  &.sr20-purple {background: var(--sr20-purple);color: #fff;}
  &.sr19-red {background: var(--sr19-red);}
  &.sr-general {background: var(--sr-general);color: #fff;}

  &.open {background: #EA5511;color: #fff;}
  &.close {background: var(--sr-general);color: #fff;width: 84px;}
}
/* swiper-pagination */
.swiper-outer {
  position: relative;
  &:not(:first-of-type) {
    margin-top: 144px;
  }
  @media screen and (max-width: 767px) {
    &:not(:first-of-type) {
      margin-top: 120px;
    }
  }
}
.swiper-button-next,
.swiper-button-prev {color: var(--var-color);}
.swiper-button-next {
  top: auto;
  right: 0;
  bottom: -30px;
  left: 160px;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 1px solid #bbb;
  border-radius: 50%;
  &::after {
    font-size: 0.8rem;
  }
}
.swiper-button-prev {
  top: auto;
  right: 160px;
  bottom: -30px;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 1px solid #bbb;
  border-radius: 50%;
  &::after {
    font-size: 0.8rem;
  }
}
.swiper-navigation-icon {display: none;}

.swiper-pagination {
  max-width: 144px;
  white-space: nowrap;
  overflow: hidden;
  right: 0;
  left: 0;
  margin: auto;
}
.swiper-pagination-bullet {
  background: none;
  border: 1px solid var(--var-color);
  opacity: 1;
  &.swiper-pagination-bullet-active {
    background: var(--var-color);
  }
}
.swiper-pagination + p.center_txt:has(.more_btn) {
  margin-top: 3em;
  position: absolute;
  right: 0;
  left: 0;
}

/* エリアインフォメーション共通 */
.area_bnr--outer {
  background: var(--middle-beige);
  padding: 1em 0;
  @media screen and (max-width: 767px) {
    padding: var(--space-30) 0;
  }
}
.area_bnr {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.area_bnr--item {
  width: 242px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media screen and (max-width: 767px) {
    width: calc(50% - 5px);
    max-width: 242px;
  }
}
.area_bnr--itemImage {
  width: 100%;
  background: #fff;
  padding: 0.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  @media screen and (max-width: 767px) {
    min-height: 56px;
  }
}
.area_bnr--itemTxt {
  font-size: 1.4rem;
}

/* area_wrap */
.area_wrap {
  width: 90%;
  max-width: 1028px;
  margin: 0 auto;
  padding: var(--space-30) 0 var(--space-45);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  @media screen and (max-width: 767px) {
    padding: var(--space-45) 0;
    gap: 0;
  }
}
.area_stationLink {
  width: 217px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  @media screen and (max-width: 767px) {
    display: none;
  }
}
.area_stationLink--child {
  position: relative;
  background: #fff;
  width: 100%;
  height: 88px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 0.5em;
  cursor: pointer;
  &:has(a) {
    display: block;
    a {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 8px;
    }
  }
  &.sr-general {
    padding-left: 1.5em;
    border: 6px solid var(--sr-general);
  }
  &.sr26-red {border: 6px solid var(--sr26-red);}
  &.sr25-orange {border: 6px solid var(--sr25-orange);}
  &.sr24-yellow {border: 6px solid var(--sr24-yellow);}
  &.sr23-green {border: 6px solid var(--sr23-green);}
  &.sr22-blue {border: 6px solid var(--sr22-blue);}
  &.sr21-violet {border: 6px solid var(--sr21-violet);}
  &.sr20-purple {border: 6px solid var(--sr20-purple);}
  &.sr19-red {border: 6px solid var(--sr19-red);}
  &::after {
    content: '→';
    position: absolute;
    top: 0;
    right: 0.25em;
    bottom: 0;
    margin: auto;
    color: var(--var-color);
    font-size: var(--font-20);
    font-weight: bold;
    display: flex;
    align-items: center;
  }
  &.sr-active {
    background: #333;
    color: #fff;
    &::after {color: #fff;}
    .area_stationLink--ttl {color: #fff;}
  }
}
.area_stationLink--fig {
  border-radius: 50%;
  background: #fff;
  width: 34px;
  height: 34px;
}
.area_stationLink--ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--var-color);
  font-weight: 700;
  line-height: 1.5;
}
.area_stationLink--ttlMain {
  font-size: var(--font-24);
}
.area_stationLink--ttlSub {
  font-size: 1rem;
}
.area_wrapCont {
  width: calc(100% - 241px);
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}
.area_wrapCont--list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px 20px;
  margin-bottom: var(--space-45);
  .swiper-slide {
    width: calc(25% - 15px);
    max-width: 181px;
  }
  @media screen and (max-width: 767px) {
    gap: 20px 10px;
    .swiper-slide {
      width: calc(50% - 5px);
    }
  }
}

/* 駅カル タイトル部分 */
.culture_intro--block {
  position: relative;
  margin-bottom: var(--space-45);
  z-index: 1;
  @media screen and (max-width: 767px) {
    padding-top: var(--space-45);
  }
}
.flag_fig--left {
  position: absolute;
  top: -65px;
  left: 0;
  @media screen and (max-width: 767px) {
    height: 64px;
    top: -40px;
    img {
      width: auto;
      height: 100%;
    }
  }
}
.flag_fig--right {
  position: absolute;
  top: -65px;
  right: 0;
  @media screen and (max-width: 767px) {
    height: 64px;
    top: -40px;
    img {
      width: auto;
      height: 100%;
    }
  }
}
.culture_intro--ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  & + figure {
    position: relative;
    margin-top: -1.5em;
    z-index: -1;
  }
}
.culture_intro--ttlInner {
  position: relative;
  margin-right: -28px;
}

.cmn_area--inner {
  width: calc(100% - 2em);
  margin: 0 auto;
  background: #fff;
}
.area_event--outer {
  padding: 1em 0;
  background: var(--middle-beige);
}
.area_tokaiinaka--outer {
  padding: 1em 0;
  background: linear-gradient(180deg, #D2F4F5 0%, #99C4E3 100%);
  &.pd_none {padding: 0;}
}
.area_culture--outer {
  padding: 1em 0;
  background: var(--light-beige);
}
/* ------------- */


.cmn_area--ttlMain {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-30) 3em;
  border-top: 2px dashed var(--dark-beige);
  border-bottom: 2px dashed var(--dark-beige);
  margin-bottom: var(--space-45);
  &:has(img[src = "/common/img/btn_01.png"]) {
    justify-content: space-between;
    gap: 0.5em;
  }
  &::before,
  &::after {
    content: '';
    position: absolute;
    background: var(--dark-beige);
    width: 100%;
    height: 2px;
    top: -8px;
    right: 0;
    left: 0;
    margin: auto;
  }
  &::after {
    top: auto;
    bottom: -8px;
  }
  
  &.sr-26red {
    border-top: 2px dashed var(--sr26-red);
    border-bottom: 2px dashed var(--sr26-red);
    &::before, &::after {background: var(--sr26-red);}
  }
  @media screen and (max-width: 767px) {
    padding: var(--space-30) 0.5em;
    img[src = "/common/img/btn_01.png"],
    img[src = "/common/img/btn_02.png"] {
      width: 40px;
    }
  }
}
.cmn_area--ttlMain .cmn_area--ttl {
  font-size: var(--font-32);
  letter-spacing: var(--letter-64);
}

/* -------------
タイトル：下線2本（実線・破線）＋左線1本 
-------------*/
.cmn_dashed--ttlOuter {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-30);
  padding-bottom: 8px;
  margin-bottom: var(--space-30);
  /* 左線の記述 */
  &::before {
    content: '';
    width: 5px;
    height: 52px;
  }
  &:has(br)::before {height: 72px;}
  /* 下線（破線）の記述 */
  &::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 2px;
  }
  /* 真緑 */
  &.culture-green {
    border-bottom: 2px dashed var(--culture-green);
    &::before,
    &::after {background: var(--culture-green);}
  }
  /* シアン */
  &.culture-cyan {
    border-bottom: 2px dashed var(--culture-cyan);
    &::before,
    &::after {background: var(--culture-cyan);}
  }
  /* 赤 */
  &.culture-red {
    border-bottom: 2px dashed var(--culture-red);
    &::before,
    &::after {background: var(--culture-red);}
  }
  /* オレンジ */
  &.culture-orange {
    border-bottom: 2px dashed var(--culture-orange);
    &::before,
    &::after {background: var(--culture-orange);}
  }
  /* 黄緑 */
  &.culture-lime {
    border-bottom: 2px dashed var(--culture-lime);
    &::before,
    &::after {background: var(--culture-lime);}
  }
  /* 青 */
  &.culture-blue {
    border-bottom: 2px dashed var(--culture-blue);
    &::before,
    &::after {background: var(--culture-blue);}
  }
  /* 紫 */
  &.culture-purple {
    border-bottom: 2px dashed var(--culture-purple);
    &::before,
    &::after {background: var(--culture-purple);}
  }
  /* 黒 */
  &.culture-general {
    gap: 0.5em;
    border-bottom: 2px dashed var(--sr-general);
    &::before {background: transparent;}
    &::after {background: var(--sr-general);}
  }
  /* ベージュ */
  &.dark-beige {
    border-bottom: 2px dashed var(--dark-beige);
    &::before,
    &::after {background: var(--dark-beige);}
  }

  /* 各駅の色 */
  &.sr26-red {
    border-bottom: 2px dashed var(--sr26-red);
    &::before,
    &::after {background: var(--sr26-red);}
  }
  &.sr25-orange {
    border-bottom: 2px dashed var(--sr25-orange);
    &::before,
    &::after {background: var(--sr25-orange);}
  }
  &.sr24-yellow {
    border-bottom: 2px dashed var(--sr24-yellow);
    &::before,
    &::after {background: var(--sr24-yellow);}
  }
  &.sr23-green {
    border-bottom: 2px dashed var(--sr23-green);
    &::before,
    &::after {background: var(--sr23-green);}
  }
  &.sr22-blue {
    border-bottom: 2px dashed var(--sr22-blue);
    &::before,
    &::after {background: var(--sr22-blue);}
  }
  &.sr21-violet {
    border-bottom: 2px dashed var(--sr21-violet);
    &::before,
    &::after {background: var(--sr21-violet);}
  }
  &.sr20-purple {
    border-bottom: 2px dashed var(--sr20-purple);
    &::before,
    &::after {background: var(--sr20-purple);}
  }
  &.sr19-red {
    border-bottom: 2px dashed var(--sr19-red);
    &::before,
    &::after {background: var(--sr19-red);}
  }
  
  /* 左線1本のみ */
  &.bd_none {
    border-bottom: none;
    padding-bottom: 0;
    &::after {display: none;}
  }
}
.cmn_dashed--ttl {
  line-height: 1.7;
  &.font-32 {
    font-size: var(--font-32);
    letter-spacing: var(--letter-64);
  }
  &.font-24 {
    font-size: var(--font-24);
    letter-spacing: var(--letter-48);
  }
}



.cmn_dashed--ttlDes {
  margin-left: 35px;
  @media screen and (max-width: 767px) {
    margin-right: 25px;
    margin-left: 25px;
  }
}

/* 【C-4-●】共通 */
.tokaiinaka_first--block {
  position: relative;
  margin-bottom: 144px;
  &:has(+ p.pStart) {margin-bottom: var(--space-65);}
  @media screen and (max-width: 767px) {
    margin-bottom: var(--space-65);
  }
}
.tokaiinaka_first--fig {
  margin-bottom: var(--space-65);
  display: flex;
  justify-content: center;
  align-items: center;
  @media screen and (max-width: 767px) {
    margin-bottom: var(--space-45);
  }
}
.tokaiinaka_first--ttl {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tokaiinaka_first--block .cloud_fig--left {
  position: absolute;
  bottom: -80px;
  left: -30px;
  @media screen and (max-width: 767px) {
    display: none;
  }
}
.tokaiinaka_first--block .cloud_fig--right {
  position: absolute;
  bottom: 240px;
  right: -30px;
  @media screen and (max-width: 767px) {
    display: none;
  }
}

.tokaiinaka_art--list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  &:has(+ *) {margin-bottom: var(--space-65);}
  & > div {
    width: calc(33.3% - 16px);
  }
  & > div * {width: 100%;}

  @media screen and (max-width: 767px) {
    gap: 10px;
    & > div {
      width: 100%;
    }
  }
}
.tokaiinaka_art--cont {
  min-height: 260px;
  background: var(--light-gray);
  padding: 1em;
  & *:not(:last-child) {margin-bottom: 0.5em!important;}
  @media screen and (max-width: 767px) {
    min-height: initial;
  }
}
.tokaiinaka_art--dlItem {
  display: flex;
  gap: 0.5em;
  dt, dd {width: auto;}
  dt {min-width: 56px;}
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 0;
    dt {min-width: initial;}
  }
}
.tokaiinaka_gray--remarks {
  border: 3px solid var(--light-gray);
  padding: var(--space-45) 5%;
}
.tokaiinaka_gray--remarksItem:not(:last-child) {margin-bottom: 2em;}



.culture_label--flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 10px;
}
.culture_label {
  padding: 0.25em 0.75em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  text-align: center;
  &.culture-green {background: var(--culture-green);}
  &.culture-cyan {background: var(--culture-cyan);}
  &.culture-red {background: var(--culture-red);}
  &.culture-orange {background: var(--culture-orange);}
  &.culture-lime {background: var(--culture-lime);}
  &.culture-blue {background: var(--culture-blue);}
  &.culture-purple {background: var(--culture-purple);}
}
.culture_art {
  background: #fff;
  a {
    display: block;
    padding: 20px;
  }
}
.culture_art--ttl {
  font-size: var(--font-20);
  letter-spacing: var(--letter-40);
  margin-bottom: 10px;
}
.culture_art--flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding-top: calc(20px + calc(1em - var(--basic-txt) / 2));
  margin-top: 20px;
  border-top: 2px dashed var(--sr-general);
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
  }
}
.culture_art--fig {
  width: 180px;
}
.culture_art--cont {
  width: calc(100% - 190px);
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}
.culture_art--item {
  display: flex;
  flex-wrap: wrap;
}


/* カルチャースクール詳細 共通 */
.culture_intro--blockOnly {
  width: 90%;
  max-width: 1240px;
  padding-top: var(--space-65);
  margin: 0 auto;
  .culture_intro--block {
    margin-bottom: 0;
  }
}
.beige_bg--outer {
  background: var(--light-beige);
}

.culture_detail--item {
  background: #fff;
  padding: var(--space-65);
  &:not(:last-child) {
    margin-bottom: var(--space-30);
  }
  a {
    text-decoration: underline;
    &:hover {text-decoration: none;}
  }
  @media screen and (max-width: 767px) {
    padding: var(--space-65) 5%;
  }
}
.culture_detail--item .culture_label--flex {
  margin-bottom: var(--space-30);
}
.culture_detail--beige {
  background: var(--light-beige);
  padding: var(--space-45);
  margin-bottom: var(--space-45);
  @media screen and (max-width: 767px) {
    padding: var(--space-45) 5%;
  }
}
.culture_detail--txt {
  &:not(:last-child) {
    margin-bottom: var(--space-30);
  }
  &.sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.75em;
  }
}

.culture_detail--teacher {
  background: #fff;
  padding: var(--space-30) 5%;
  margin-top: var(--space-30);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  @media screen and (max-width: 767px) {
    flex-direction: column;
  }
}
.culture_detail--teacherTtl {
  min-width: 128px;
}
.culture_detail--teacherFlex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  @media screen and (max-width: 767px) {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.teacher_pic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.culture_teacher--btn {
  position: relative;
  display: block;
  background: #F6F6E7;
  padding: 20px;
  padding-bottom: 10px;
  text-decoration: none!important;
  @media screen and (max-width: 767px) {
    padding-bottom: 64px;
  }
}
.culture_teacher--ttl {
  color: #34130A;
  font-weight: bold;
  font-size: var(--font-24);
  letter-spacing: var(--letter-48);
  text-align: center;
}
.culture_teacher--arrow01 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  @media screen and (max-width: 767px) {
    height: 56px;
    img {
      height: 100%;
      display: block;
      object-position: left;
      object-fit: contain;
    }
  }
}
.culture_teacher--arrow02 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  @media screen and (max-width: 767px) {
    height: 56px;
    img {
      height: 100%;
      display: block;
      object-position: right;
      object-fit: contain;
    }
  }
}
.culture_teacher--btnLink {
  position: absolute;
  top: 20px;
  right: 3em;
  @media screen and (max-width: 767px) {
    top: auto;
    right: 0;
    bottom: 10px;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: center;
  }
}
/* Googleカレンダー */
.googlecal {
  iframe {
    width: 100%;
    height: 1000px;
  }
  @media screen and (max-width: 767px) {
    overflow: auto;
    iframe {
      width: 765px;
      height: 800px;
    }
  }
}

/* サイト内検索 */
.gsc-results-wrapper-nooverlay.gsc-results-wrapper-visible > * {width: 100%;max-width: initial;}


/* ------------------
footer
------------------ */
.footer {
  width: 100%;
  background: var(--light-gray);
}
.ft_inner {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-65) 0;
  background: var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 28px;
  }
}
.ft_left {
  width: 100%;
  max-width: 125px;
}
.ft_logo {
  margin-bottom: 28px;
}
.ft_left--icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  a {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.ft_nav {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em 0;
  li {width: 25%;}
  @media screen and (max-width: 767px) {
    max-width: 340px;
    li {width: 50%;}
  }
}

.copyright {
  width: 100%;
  padding: 0.5em 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--var-color);
  color: #fff;
  letter-spacing: 0.04em;
}


/* ------------------
Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 50px;
  border-radius: 50%;
  background: var(--var-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -10;
  &::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-25%) rotate(-45deg);
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
  }
  &.active {
    opacity: 1;
    visibility: visible;
    z-index: 99;
  }
}


/* ------------------
下層ページ共通
------------------ */
/* パンくずリスト */
.breadcrumb {
  position: relative;
  width: 100%;
  z-index: 1;
  &::after {
    content: '';
    position: absolute;
    background: var(--light-gray);
    width: 100%;
    height: 5px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
  }
  &:has(.breadcrumb_item.type02) {
    background: var(--light-gray);
    &::after {
      background: #fff;
    }
  }
}
.breadcrumb_list {
  width: 90%;
  max-width: 1240px;
  margin: auto;
  padding: 1em 0;
  display: flex;
  align-items: center;
  gap: 0 1.5em;
  overflow: auto;
  white-space: nowrap;
}
.breadcrumb_item {
  background: #fff;
  &.type02 {
    background: var(--light-gray);
  }
  a {
    color: var(--var-color);
    text-decoration: underline;
    &:hover {text-decoration: none;}
  }
  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 8px;
  }
  &[aria-current = "page"] {
    letter-spacing: 0.8px;
  }
}

/* ページ上部 ・ ページタイトル */
.page_head {
  width: 100%;
  height: 190px;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media screen and (max-width: 767px) {
    &:has(img[src="/common/img/page_head_tix.png"]) img {object-position: 35%;}
  }
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}


/* 各駅案内・時刻表・運賃 リンク */
.trains_list {
  position: relative;
  height: 224px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  @media screen and (max-width: 767px) {
    max-width: calc(256px + 4em);
    height: auto;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 1em;
  }
}
.trains_list--item {
  position: relative;
  width: 64px;
  height: 100%;
  a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 0.5em 0.1em;
    background: var(--var-color);
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    width: calc(25% - 1em);
    max-width: 64px;
  }
}
.trains_list--ttl {
  min-height: 96px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: var(--font-20);
  letter-spacing: var(--letter-40);
}
.trains_list--icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
}
.trains_list--furigana {
  min-height: 24px;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
}
.trains_list--color {
  width: 24px;
  height: 24px;
  &.sr26-red {background: var(--sr26-red);}
  &.sr25-orange {background: var(--sr25-orange);}
  &.sr24-yellow {background: var(--sr24-yellow);}
  &.sr23-green {background: var(--sr23-green);}
  &.sr22-blue {background: var(--sr22-blue);}
  &.sr21-violet {background: var(--sr21-violet);}
  &.sr20-purple {background: var(--sr20-purple);}
  &.sr19-red {background: var(--sr19-red);}
}

/* 各駅案内・時刻表・運賃 リンク（nav近辺） */
.trains_list--navOuter {
  position: relative;
  height: 126px;
  @media screen and (max-width: 767px) {
    display: none;
  }
}
.trains_list.nav {
  position: absolute;
  height: 196px;
  justify-content: flex-end;
  gap: 1.25em;
  width: 90%;
  max-width: 1240px;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: 0 auto;
  .trains_list--item {
    width: 48px;
    z-index: 1;
  }
  .trains_list--ttl {
    min-height: 80px;
    font-size: var(--basic-txt);
  }
  .trains_list--furigana {
    font-size: 0.6rem;
  }
  .trains_list--color {
    width: 16px;
    height: 16px;
  }
}

/* 各駅案内・時刻表・運賃 第4階層 特有 */
.station_head {
  padding: 0.75em 0;
  &.sr26-red {background: var(--sr26-red);}
  &.sr25-orange {background: var(--sr25-orange);}
  &.sr24-yellow {background: var(--sr24-yellow);}
  &.sr23-green {background: var(--sr23-green);}
  &.sr22-blue {background: var(--sr22-blue);}
  &.sr21-violet {background: var(--sr21-violet);}
  &.sr20-purple {background: var(--sr20-purple);}
  &.sr19-red {background: var(--sr19-red);}
  @media screen and (max-width: 767px) {
    padding: 0.75em;
  }
}
.station_head--inner {
  position: relative;
  width: 90%;
  max-width: 868px;
  margin: 0 auto;
  background: #333;
  padding: 0.5em;
  @media screen and (max-width: 767px) {
    width: 100%;
    padding-bottom: 4.5em;
  }
}
.station_head--ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.station_head--ttlMain {
  display: flex;
  align-items: center;
  gap: 0.25em;
  letter-spacing: var(--letter-12);
  font-size: var(--font-50);
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: 2.8rem;
    img {
      width: 40px;
      height: 40px;
    }
  }
}
.station_head--ttlSub {
  font-size: var(--font-24);
  font-weight: 400;
  @media screen and (max-width: 767px) {
    font-size: 1.4rem;
  }
}

.station_head--prevttl {
  position: absolute;
  left: 0.5em;
  bottom: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  line-height: 1.3;
  padding-left: 2em;
  &::before {
    content: '←';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    font-size: var(--font-24);
    font-weight: bold;
    display: flex;
    align-items: center;
  }
}
.station_head--prevttlMain {
  letter-spacing: var(--letter-12);
  font-size: var(--font-32);
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: 1.8rem;
  }
}
.station_head--nextttl {
  position: absolute;
  right: 0.5em;
  bottom: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
  line-height: 1.3;
  padding-right: 2em;
  &::after {
    content: '→';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    font-size: var(--font-24);
    font-weight: bold;
    display: flex;
    align-items: center;
  }
}
.station_head--nextttlMain {
  letter-spacing: var(--letter-12);
  font-size: var(--font-32);
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .station_head--prevttlSub,
  .station_head--nextttlSub {
    min-height: 36px;
    display: flex;
    align-items: center;
    line-height: 1.3;
    font-size: 1.3rem;
  }
}

/* station_info */
.station_info--flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-30);
  @media screen and (max-width: 767px) {
    justify-content: center;
  }
}
.station_info--list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  li {
    display: flex;
    gap: 0.25em 1em;
    color: var(--var-color);
  }
  @media screen and (max-width: 767px) {
    li {
      flex-direction: column;
      gap: 0;
    }
    li:not(:last-child) {
      margin-bottom: 6px;
    }
  }
}
.station_info--listHd {
  min-width: 128px;
  @media screen and (max-width: 767px) {
    font-weight: bold;
  }
}
.station_info--fig {
  width: 100%;
  max-width: 328px;
}

.station_info--anchorOuter {
  position: relative;
  width: 100%;
  background: var(--light-gray);
  padding: 0.5em 1em;
}
.station_info--anchor {
  width: 100%;
  max-width: 945px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75em;
}
.station_info--anchorItem {
  a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25em;
    background: #fff;
    padding: 0.5em 1em;
  }
}

/* barrier_free */
.barrier_free--list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  @media screen and (max-width: 767px) {
    gap: 2em 6px;
  }
}
.barrier_free--listFig {
  position: relative;
  background: var(--var-color);
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  figcaption {
    position: absolute;
    font-size: 1rem;
    bottom: -2em;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    width: calc(33.3% - 4px);
    max-width: 72px;
  }
}

.map_link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* 独自CSS */
.minumatanbo-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: var(--space-30);
  p {
    width: 100%;
    max-width: 150px;
  }
}


/* ------------------
 レスポンシブ対応
------------------ */
@media screen and (max-width: 767px) {
	/* スマホのみ表示する要素を表示、PCのみ表示する要素を非表示 */
  .sp_block {display: block;}
  .pc_block, .pc_nav {display: none;}
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px!important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  .header {
    position: absolute;
  }
  .cmn_table {
    width: 100%;
  }
}
@page {
  size: A4;
  margin: 5px;
}