:root{
  --slider-max-w: 980px;
  --aspect: 16/9;
  --side-scale: .80;
  --edge-peek: min(200px, 15vw);/* スライダー覗き幅 */
  --gap: 16px;
  --radius: 50px;
  --transition: 360ms cubic-bezier(.22,.61,.36,1);
  --btn-size: 44px;
  --dot-size: 15px;
  --dot-gap: 30px;
  --dot-color: #fff;
  --background-color-blue:#0F5FA6;
  --background-color-beige:#f0eee5;
  --text-color:#251f1d;
  --color-tab1:#0F5FA6;
  --color-tab2:#b34b29;
  --color-tab3:#048558;
}

*{ box-sizing: border-box; }

html, body{
  max-width: 100%;
  overflow-x: clip;
      word-break: break-all;
}
@supports not (overflow: clip){
  html, body{ overflow-x: hidden; }
}

/*common*/
.pc{display:block;}
.sp{display:none;}

@media (max-width: 768px){
.pc{display:none;}
.sp{display:block;}

}

.wrap{
    background:var(--background-color-beige);
}

.inner {
    width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1200px){
    .inner{
        width:100%;
        padding:0 30px;
    }
}

:root{
  --header-h: 100px;
}

a{ color:inherit; text-decoration:none; }
a:focus-visible{ outline: 3px solid #9cc6ff; outline-offset: 2px; }

/* ===== Header ===== */
.header{
  position: relative; /* 通常は固定しない */
  width: 100%;
  background: var(--background-color-beige);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}
.header__inner{
  max-width: 1200px;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
}

/* ロゴ */
.header__logo{
    display: inline-flex;
    gap: 10px;
    min-width: 0;
    height: 100%;
    align-items: flex-start;
}

.header__logo .header-logo-l {
    width: 175px;
    margin-right: 15px;
}

.header__logo .header-logo-r {height: 100%;display: flex;align-items: center;padding: 15px 0;width: 70px;}

.logo-text{
  font-weight: 700; font-size: 20px; letter-spacing: .02em;
}

/* メニュー（PC） */
.nav{ display: block; }
.nav__list{
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 24px;
      font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--color-tab1);
    font-weight: 500;
}
.nav__item{ position: relative; }
.nav__link{
display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.25em 1em;
    border-radius: 8px;
    transition: background .2s 
ease, color .2s 
ease;
    background: #fff;
}
.nav__link:hover{ background: #f5f7ff;}
.nav__chev{ width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ハンバーガー（SP） */
.header__menu-btn{
  display: none;
  appearance: none; border: none; background: transparent; padding: 10px; margin-right: -6px;
  border-radius: 10px;
}
.header__menu-btn:focus-visible{ outline: 3px solid #9cc6ff; }
.menu-btn__bar{ display: block; width: 24px; height: 2px;
    background: var(--color-tab1); margin: 5px 0; border-radius: 2px; }

/* ===== Sticky after #slider ===== */
.header.is-fixed{
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--background-color-beige);;
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  animation: headerDrop .24s ease both;
}
@keyframes headerDrop{
  from{ transform: translateY(-100%); opacity: 0.6; }
  to{ transform: translateY(0); opacity: 1; }
}

.lower-head-height .wrap {
    padding-top: var(--header-h);
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  :root{ --header-h: 80px; }

  .header__menu-btn{ display: inline-flex; }
  .nav{
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    translate: 0;
    border-top: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open{
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .nav__list{
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 12px;
  }
  .nav__link{ padding: 14px 12px; border-radius: 10px; }

  /* サブメニュー（SP：折りたたみ） */
  .nav__item--has-sub .nav__sub{
    position: static; border: none; box-shadow: none; padding: 4px 0 8px;
    opacity: 1; transform: none; pointer-events: auto; display: none;
  }
  .nav__item--has-sub.is-open .nav__sub{ display: block; }
  .nav__sub-link{ padding-left: 20px; }
}

/* 動きを控えたい人向け */
@media (prefers-reduced-motion: reduce){
  .header.is-fixed{ animation: none; }
  .nav, .nav.is-open{ transition: none; }
}

/* ▼ PC時のサブメニューを中央寄せ＋上向き吹き出しに */
@media (min-width: 901px){
  .nav__item--has-sub{
    position: relative;
  }

  /* “橋”でホバーを切らさない（トリガー→サブ間） */
  .nav__item--has-sub::after{
    content:"";
    position:absolute;
    left:-12px;
    right:-12px;
    top:100%;
    height:14px; /* トリガー直下からサブの上端（矢印手前）までの橋 */
  }

  .nav__item--has-sub > .nav__sub{
        position: absolute;
        left: 50%;
        top: calc(100% + 14px);
        transform: translate(-50%, -6px);
        min-width: 180px;
        background: var(--background-color-blue);
        color: #fff;
        border: 1px solid var(--border);
        box-shadow: 0 14px 28px rgba(0, 0, 0, .10);
        list-style: none;
        margin: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity .15s ease, transform .15s ease;
        z-index: 30;
        text-align: center;
  }

  .nav__item--has-sub > .nav__sub::before,
  .nav__item--has-sub > .nav__sub::after{
    content:"";
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    pointer-events: none;
  }

  .nav__item--has-sub > .nav__sub::before{
    top: -11px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 11px solid var(--border);
  }

  .nav__item--has-sub > .nav__sub::after{
    top: -10px;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 10px solid var(--background-color-blue);
  }

  .nav__item--has-sub:hover > .nav__sub,
  .nav__item--has-sub:focus-within > .nav__sub,
  .nav__item--has-sub.is-open > .nav__sub{
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  .nav__sub-link{
    display: block;
    padding: 12px 14px;
  }
  ul.nav__sub li{
    border-bottom: 1px solid #fff;
  }
  ul.nav__sub li:last-child{
    border-bottom:0;
  }

  .nav__sub-link:hover{
    opacity:.5;
  }
}

@media (max-width: 900px){
  .nav__item--has-sub .nav__sub{
    position: static;
    border: none;
    box-shadow: none;
    padding: 4px 0 8px;
  }
  .header__logo .header-logo-l{
    width:150px;
  }
  .header__logo .header-logo-r{
    width: 55px;
  }
  /* ボタン内のバーをアニメ可能に */
.header__menu-btn {
  position: relative;
  width: 44px;         /* お好みで */
  height: 44px;
}
.menu-btn__bar{
  display: block;
  position: absolute;
  left: 10px;          /* 既存の padding と合わせて微調整 */
  right: 10px;
  height: 2px;
  background: var(--background-color-blue);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, width .25s ease;
  transform-origin: center;
}
/* 3本を縦に配置 */
.header__menu-btn .menu-btn__bar:nth-child(1){ top: 14px; }
.header__menu-btn .menu-btn__bar:nth-child(2){ top: 21px; }
.header__menu-btn .menu-btn__bar:nth-child(3){ top: 28px; }

/* 開いた時（.is-active）に×へ変形 */
.header__menu-btn.is-active .menu-btn__bar:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.header__menu-btn.is-active .menu-btn__bar:nth-child(2){
  opacity: 0; transform: scaleX(0.4);
}
.header__menu-btn.is-active .menu-btn__bar:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* 低モーション設定の端末向け */
@media (prefers-reduced-motion: reduce){
  .menu-btn__bar{ transition: none; }
}
}

footer {
    background: var(--background-color-blue);
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding-bottom: 30px;
}

.footer-image img {
    width: 100%;
}

footer .policy {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
}

footer .policy a {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    transition: .3s;
    text-decoration: underline;
}

footer .policy a:hover {
    opacity: .5;
}

footer .accessibility {
    padding: 25px 45px;
    border: 2px solid;
    margin-bottom: 15px;
}

footer .accessibility h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}

footer .accessibility p {
    line-height: 1.5;
    font-size: 16px;
}

footer .accessibility p a {
    color: #fff;
    transition: .3s;
    text-decoration: underline;
}

footer .accessibility p a:hover {
    opacity: .5;
}

footer .address {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
}

footer .address p.copy {
    font-size: 0.8em;
}

footer .sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

footer .sns img {
    width: 40px;
}

.scroll-box {
    width: 100%;
    height:150px;
    padding: 1em 2em;
    overflow-y: scroll;
    box-sizing: border-box;
    background-color: #5a93c5;
    margin-top: 30px;
}

.sns-policy .head {
    font-weight: bold;
    margin-bottom: 0.15em;
}

.sns-policy .title {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 0.5em;
}

.sns-policy ul {
    margin-left: 1.5em;
}

.sns-policy li {
    margin-bottom: 0.15em;
}

.sns-policy section {
    margin-bottom: 1.5em;
}

.sns-policy section:last-child {
    margin: 0;
}

.sns-policy p a {
    text-decoration: underline;
    opacity: 1;
    transition: .3s;
}

.sns-policy p a:hover {
    opacity: .5;
}

/* スクロールバーの見た目を調整（任意） */
.scroll-box::-webkit-scrollbar {
  width: 8px;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: #5f5f5f;
}

.scroll-box::-webkit-scrollbar-track {
  background: #5a93c5;
}


@media (max-width: 768px){
footer .policy a {
    font-size: 16px;
}

footer .accessibility {
    padding: 15px 30px;
}

footer .accessibility h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

footer .accessibility p {
    font-size: 14px;
}

footer .address {
    flex-direction: column;
    gap: 10px;
}
}

/*topへ*/
.to-top {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 15px;
    background-color: #1f72bb;
    color: #fff;
    border: none;
    border-radius: 9em;
    cursor: pointer;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 75px;
    height: 75px;
    box-shadow: 0 0 5px #00000054;
}

.to-top img {
    display: block;
    width: 25px;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}


/*スライダー*/
.slider{
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
    contain: layout paint;
    max-width: 100vw;
    background:var(--background-color-blue);
}

.slider__stage{
    position: relative;
    padding: 100px 0;
    overflow: visible;
}

.slider__viewport{
    position: relative;
    margin: 0 auto;
    width: min(100%, var(--slider-max-w));
    aspect-ratio: var(--aspect);
    overflow: visible;
    touch-action: pan-y;
}

.slide{
    position: absolute;
    left: 50%;
    top: calc(50% - var(--vh, 0px) / 2);
    width: var(--vw, 0px);
    height: var(--vh, 0px);
    display: grid;
    place-items: center;
    transition: transform var(--transition), opacity var(--transition), z-index var(--transition);
    pointer-events: none;
    will-change: transform;
    z-index: 2;
    margin:0;
}

.slide__frame{
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f5f5f5;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.slide__frame>img{
    width:100%; height:100%; object-fit:cover; display:block;
}

/* 配置（translateX(-50%) を基準に JS でpx移動を加算） */
.slide.is-center{
  transform: translateX(-50%) scale(1);
  z-index: 3;
  pointer-events: auto;
}
.slide.is-left,
.slide.is-right{
  opacity: 1;
  pointer-events: auto;
}
.slide.is-hidden{
  opacity: 0;
  transform: translateX(-50%) scale(.9);
  z-index: 1;
}

/* 共通 */
.decor{
  position: absolute;
  pointer-events: none;
  z-index: 4;
  width: 5vw;
  height: auto;
}

/* 左上 */
.decor--top{
    top: 0;
    left: 0;
    transform: translate(-40%,-40%);
}

/* 右下 */
.decor--bottom{
    bottom: 0;
    right: 0;
    transform: translate(40%,40%);
}

.slider__nav{
  position: absolute;
  top: calc(50% - var(--vh, 0px) / 2);
  left: 50%;
  width: var(--vw, 0px);
  height: var(--vh, 0px);
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}

.navbtn{
  all: unset;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--btn-size);
  height: var(--btn-size);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
}

.navbtn--prev{ left: -75px; }
.navbtn--next{ right: -75px; }

.navbtn img{
  display: block;
}

.slider__dots{
    display: flex;
    gap: var(--dot-gap);
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: 45px;
}
.dot{
  width:var(--dot-size);
  height:var(--dot-size);
  border-radius:9em;
  background:var(--dot-color);
  border:none;
  padding:0;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
.dot[aria-current="true"]{
    border:2px solid var(--dot-color);
    background:var(--background-color-blue);
}

@media (max-width: 1400px){

  :root{
    --slider-max-w: 900px;
    --edge-peek: min(180px, 9vw);
    --side-scale: .78;
    --gap: 14px;
    --btn-size: 40px;
    --radius: 24px;
    --dot-size: 9px;
  }

  .slider__viewport{
    width: min(96vw, var(--slider-max-w));
  }

.navbtn--prev{ left: -50px; }
.navbtn--next{ right: -50px; }
}

@media (max-width: 1100px){

  :root{
    --edge-peek: 0px;
    --side-scale: 1;
    --gap: 0;
  }


  .slider__viewport{
    width: 100%;
  }

.slide__frame {
    width: 80%;
    height: 80%;
}

.slider__stage{
    padding:65px 0;
}

  .slide.is-left,
  .slide.is-right{
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) scale(0.9) !important;
    z-index: 1 !important;
  }

.decor--top {
    top: 25px;
    left: 50px;
}

.decor--bottom {
    bottom: 25px;
    right: 50px;
}

.navbtn--prev{ left: 15px; }
.navbtn--next{ right: 15px; }
}

/* モーダル */
.modal{
  position:fixed; inset:0; background:rgb(9 66 117 / 80%);
  display:none; align-items:center; justify-content:center; padding:24px; z-index:999;
}
.modal.is-open{ display:flex; }
.modal__inner{
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

#modalContent {
    text-align: center;
}
.modal__inner iframe {
    width: 80%;
    aspect-ratio: 16 / 9;
}
.modal__inner img{ display:block; width:100%; height:100%; object-fit:contain; background:#000; }

.modal__close{
    position:absolute;
    top: 0;
    right: 3vw;
    width:40px;
    height:40px;
    border-radius:9em;
    border:none;
    background:rgba(255,255,255,.9);
    font-weight:700;
    cursor:pointer;
}

/* 念のため：外側で隠れないよう */
.wrap{ overflow: visible; }



/*lead*/
#lead {
    padding-top: 100px;
    padding-bottom: 150px;
    background-position: bottom center;
    background-size: contain;
}

.lead-box {
    position:relative;
    height: 700px;
    background-size: cover;
}

.lead--text-box {
    position: absolute;
    width: 100%;
    top: 34%;
    text-align: center;
    padding: 0 10%;
}

.lead--text-box h2 {
    margin-bottom:30px;
}

.lead--text-box h2 img {
    width: 100%;
}

.lead--text-box p{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 23px;
    line-height: 1.75em;
    padding: 0 2.75em;
    text-align: justify;
    color: var(--text-color);
}

@media (max-width: 1200px){
#lead {
    padding-bottom: 30px;
}

.lead-box {
    background-size: contain;
}

.lead--text-box {
    top: 17vw;
    padding: 0 12%;
}

.lead--text-box h2 {
    margin-bottom: 15px;
}

.lead--text-box h2 img {
    width: 88%;
}

.lead--text-box p {
    font-size: 20px;
}
}

@media (max-width: 1000px){
#lead {
    padding-top: 8vw;
    padding-bottom: 10vw;
}    

    .lead-box {
        background-position: center;
        max-height: 67vw;
    }

    .lead--text-box {
    top: 17vw;
    }

    .lead--text-box p {
        font-size: 2.5vw;
        padding: 0 2em;
    }

    .lead--text-box h2 {
        width: 100%;
        margin-bottom: 1.5vw;
        text-align: center;
    }

    .lead--text-box h2 img {
        width: 80%;
    }
}

@media (max-width: 768px){   
.lead--text-box {
    top: 14vw;
}

.lead--text-box h2.sp {
    display: inline-block;
    width: 85%;
    text-align: center;
    margin-bottom: 5px;
}

.lead-box {
    max-height: 70vw;
}
}

/*n-action*/
#n-action {
    padding-top: 120px;
    padding-bottom: 15vw;
    background: #fff;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

#n-action .title {
    text-align: center;
    margin-bottom: 50px;
}

#n-action .title h2 img {
    max-width: 800px;
    padding: 0 30px;
}

@media (max-width: 767.98px){
  #n-action .title h2 img {
    width: 100%;
}

#n-action .title {
    padding: 0 3em;
    margin-bottom: 5vw;
}

#n-action {
    padding-top: 12vw;
    padding-bottom: 20vw;
}
}

/*n-action carousel*/
#carousel.mode-vw{
  --card-vw: 25vw;
  --gap-vw:  3vw;
  --peek-vw: 6vw;
  --ad-radius: 14px;
}

.ad-carousel{
    position:relative;
    width:100%;
    max-width:100%;
    margin:0 auto;
    padding:24px 0;
}

.ad-carousel__viewport{
  overflow:hidden;
  width:100%;
  background:#fff;
}

.ad-carousel__track{
  display:flex;
  align-items:stretch;
  gap:0 !important;
  padding-inline: var(--peek-vw);
  will-change:transform; transition:transform .6s ease;
}

.ad-carousel__slide{
    flex: 0 0 var(--card-vw);
    margin-inline: calc(var(--gap-vw) / 2);
    border-radius:var(--ad-radius);
    overflow:hidden;
    background:#faf8f5;
    display:flex;
    flex-direction:column;
    min-width:0;
    cursor: pointer;
}

.ad-carousel__slide img{
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

.caption{
    padding: 15px 25px;
}

.caption h3{
    font-size: 20px;
    color: var(--color-tab3);
    margin-bottom: 0.25em;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.caption span.category {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    background: #fff;
    color:var(--color-tab3);
    border: 2px solid;
    padding: 0.15em 1em;
    border-radius: 9em;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-left: -0.5em;
}

.caption p{
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    margin:0;
    font-size:16px;
    color:var(--text-color);
    line-height:1.75;
}

/* ナビ */
.ad-carousel__nav{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    pointer-events:none;
}

.ad-carousel__btn{
  pointer-events:auto;
  border:0;
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  color:#fff;
  cursor:pointer;
  transition:.2s ease;
  user-select:none;
}

.ad-carousel__btn:hover{
    opacity:.5;
}

.ad-carousel__btn.is-prev{
    margin-left:15px;
}

.ad-carousel__btn.is-next{
    margin-right:15px;
}

.no-select{ user-select:none; }

@media (max-width: 1119.98px){
#carousel.mode-vw{
        --card-vw: 45vw;
        --gap-vw: 5vw;
        --peek-vw: 25vw;
    --ad-radius: 14px;
}
}

@media (max-width: 767.98px){
  #carousel.mode-vw{
    --card-vw: calc(100vw - 150px);
    --gap-vw:  0vw;
    --peek-vw: 0vw;
  }
  /* 念のための完全固定（端チラ見え防止） */
  #carousel.mode-vw .ad-carousel__track{ padding-inline: 0 !important; }
  #carousel.mode-vw .ad-carousel__slide{
    flex: 0 0 100% !important; width: 100% !important; min-width: 100% !important;
    margin: 0 !important; border: 0 !important;
  }

#carousel.mode-vw {
    padding: 0 75px;
}
}

/*info*/
#info {
    margin: 75px 0;
}

.info-box {
    background: #fff;
    border: 5px solid var(--background-color-blue);
    padding: 30px 100px;
    border-radius: 15px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.info-box h2 {
    text-align: center;
    letter-spacing: 5px;
    color: var(--background-color-blue);
    font-weight: 600;
    margin-bottom: 0.5em;
    font-size: 26px;
}

.info-box li {
    display:flex;
    list-style: none;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 17px;
}

.info-box li span.date {
    width: 17%;
    color: var(--background-color-blue);
}

.info-box li span.title{
    width:83%;
}

.info-box li a{
    opacity:1;
    transition:.3s;
}

.info-box li a:hover{
    opacity:.5;
}

@media (max-width: 767.98px){
#info {
    margin: 50px 0;
}

.info-box {
    padding: 30px;
}

.info-box h2 {
    font-size: 22px;
}

.info-box li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.info-box li span.date {
    width: 100%;
}

.info-box li:last-child {
    margin-bottom: 0;
}

}

/*a-action*/
.a-action-title {
    margin-bottom: 30px;
}


.tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 0 75px;
}

.tab {
    flex: 1;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 23px;
    line-height: 1.75em;
    border-radius: 15px 15px 0 0;
    padding: 0.5em 1em;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    background: #fff;
    border-bottom: none;
    transition: .3s;
    opacity: 1;
}

.tab:hover {
    opacity:.5;
}


.tab.active {color:#fff;}

.tab1.active {
    background:var(--color-tab1);
}

.tab2.active {
    background:var(--color-tab2);
}

.tab3.active {
    background:var(--color-tab3);
}

.tab-content {
    padding: 50px 100px;
    display: none;
    background:#fff;
    scroll-margin-top: var(--header-h);
}

.tab-content.active {
    display: block;
}

#a-action .tab-contents .catch {
    text-align: center;
    margin-bottom: 50px;
}

#a-action h3 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
}

#a-action #tab-1 h3{
    color: var(--color-tab1);
    display: inline-block;
    background: #eaeff4;
    padding: 0.25em 1.5em;
    margin-bottom: 1em;
}

#a-action #tab-2 h3{
    color: var(--color-tab2);
}

#a-action .tab-content .catch p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5em;
}

#a-action #tab-1 .catch p{
    color: var(--color-tab1);
}

#a-action #tab-2 .catch p{
    color: var(--color-tab2);
}

#a-action #tab-3 .catch p{
    color: var(--color-tab3);
}

.col2 {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.col2 div {
    width: 50%;
}

.col2 .img img {
    width: 100%;
}

#tab-1 .col2 .txt h4{
    color: var(--color-tab1);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 21px;
    line-height: 1.5em;
    margin-bottom: 15px;
}

#tab-1 .col2 .txt p{
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:var(--text-color);
    font-size:18px;
    line-height: 1.75em;
}

.btn-tab3-wrap.tab1-btn {
    width: 100%;
    margin-top: 1.5em;
}

.btn-tab3-wrap.tab1-btn a {
    width: 100%;
    justify-content: center;
    position: relative;
    background: var(--color-tab1);
}

.btn-tab3-wrap.tab1-btn a img {
    position: absolute;
    right: 30px;
}

#a-action .tab-content dl {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-top:15px;
    font-size: 18px;
}

#a-action .tab-content dt{
    display: inline-block;
    width: 4em;
    padding: 0.25em;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-right: 10px;
}

#a-action #tab-1 dt {
    background: var(--color-tab1);
}

#a-action .tab-content dd {
    display: inline-block;
    width: calc(100% - 5em);
}

#a-action #tab-1 dd {
    color:var(--color-tab1);
}

.com-d-img {
    transition: .3s;
    cursor: pointer;
}

.com-d-img:hover {
    opacity:.5;
}

.col2-movie-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 30px;
    justify-content: center;
}

.col2-movie {
    width: calc(50% - 50px);
    text-align: center;
    cursor:pointer;
    transition:.3s;
}

.col2-movie:hover{
    opacity:.5;
}

.col2-movie img {
    width: 100%;
}


.tab2-massage {
    margin-top: 50px;
}

.tab2-massage .title {
    text-align: center;
    margin-bottom: 20px;
}

#a-action .tab2-massage .title h3 {
    font-size: 26px;
}

.tab2-massage-btn-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

img.pre-btn {
    cursor: pointer;
    opacity: 1;
    transition: .3s;
    width: calc(20% - 12px);
}

img.pre-btn:hover {
    opacity: .5;
}

.modal--prebtn .modal-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/*pre-btn-modal*/
.modal--prebtn .modal__inner {
    width: 1200px;
    margin: auto;
    padding: 30px;
    background: var(--color-tab3);
}

.modal--prebtn .modal-card .modal-card__body {
    padding-right: 3.5vw;
    color: #fff;
    text-align: left;
    font-family: "Zen Maru Gothic", sans-serif;
    font-style: normal;
}

.modal--prebtn .modal-card .modal-card__body h2.modal-card__title {
    font-size: 28px;
    margin-bottom: 15px;
}

.modal--prebtn .modal__close {
    top: 1.5vw;
}

.modal--prebtn .modal-card .modal-card__body p.modal-card__subtitle {
    display: inline;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(transparent 75%, #e19e00 75%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 0 4px;
}

.modal--prebtn .modal-card .modal-card__image img {
    width: 500px;
}

.modal--prebtn .modal-card .modal-card__body .modal-card__text {
    margin-top:15px;
    margin-bottom: 30px;
    text-align: justify;
}

a.modal-card__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #fff;
    position: relative;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

/* 疑似要素で「>」を追加 */
a.modal-card__btn::after {
  content: '›'; /* シンプルな右矢印。別文字やSVGにも変更可 */
  position: absolute;
  right: 16px;
  top: 40%;
  transform: translateY(-50%);
  font-size: 2em;
  color: inherit; /* 親の色を継承 */
  transition: transform 0.3s;
}

/* hover時に少し動くアニメーション */
a.modal-card__btn:hover::after {
  transform: translateY(-50%) translateX(4px);
}

a.modal-card__btn:hover {
    background: #fff;
    color: var(--color-tab3);
}

.modal--prebtn .modal-card__text .akrostic {
  margin: 1em 0;
}
.modal--prebtn .modal-card__text .akrostic div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.3em;
}
.modal--prebtn .modal-card__text .akrostic dt {
    flex: 0 0 1.8em;
    font-weight: 700;
    font-size: 1.25em;
}
.modal--prebtn .modal-card__text .akrostic dd {
  margin: 0;
  flex: 1 1 auto;
  line-height: 1.7;
}
.modal--prebtn .modal-card__text .akrostic dd p {
  margin: 0;
}

.btn-tab3-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn-tab3-wrap a {
    background: var(--color-tab3);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 32%;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 1em 1.25em;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    transition: .3s;
    border-radius: 9em;
    box-shadow: 0px 4px #c0c0c0;
}

.btn-tab3-wrap a img {
    width: 0.75em;
}

.btn-tab3-wrap a:hover {
    opacity: .7;
}

.btn-action-wrap {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-action-wrap a {
    text-decoration: none;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    transition: .3s;
    color: var(--color-tab3);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid;
    padding: 0.75em 3em;
    border-radius: 15px;
    gap: 7px;
    box-shadow: 0px 4px #c0c0c0;
}

.btn-action-wrap a span.arrow {
    display: inline-flex;
    background: var(--color-tab3);
    width: 1.5em;
    height: 1.5em;
    align-items: center;
    justify-content: center;
    border-radius: 9em;
}

.btn-action-wrap a span.arrow img {
    width: 0.5em;
}

.btn-action-wrap a:hover {
    opacity: .5;
}

.col2-action-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.col2-action {
    text-align: center;
    width: calc(50% - 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.col2-action h3 {
    color: var(--color-tab3);
    margin-bottom: 5px;
}

.col2-action h3.line2{
    display: flex;
    align-items: center;
    height: 2.85em;
}

.col2-action p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 17px;
    color: var(--text-color);
}

.tab3-year {
    margin-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px dotted var(--color-tab3);
}

.tab3-year .title {
    color: var(--color-tab3);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5em;
    text-align: center;
    margin-bottom: 30px;
}

.tab3-year:last-child {
    border: 0;
    padding: 0;
}

.bubble {
    width: 390px;
    height: 260px;
    position: relative;
    margin-top: 15px;
    background-size: contain;
    background-position: center;
    transition:.3s;
}

.bubble:hover{
    opacity:.5;
}

.bubble img {
    position: absolute;
    width: 280px;
    top: 33px;
    left: calc(50% - 140px);
}

@media (max-width: 1199.98px){
    .modal--prebtn .modal-card .modal-card__image {width: 45%;}

    .modal--prebtn .modal-card .modal-card__image img {
        width: 100%;
    }

    .modal--prebtn .modal-card .modal-card__body {
        width: 55%;
    }

    .btn-tab3-wrap.tab1-btn a img {
        position: static;
    }

    .btn-tab3-wrap.tab1-btn a {
        gap: 1em;
    }

    .btn-tab3-wrap a{
    width: calc(50% - 15px);
    font-size:14px;
    }
    
    .bubble{
        width:100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .bubble img {position: unset;width: 80%;padding-bottom: 8%;}
}

@media (max-width: 999.98px){
    .bubble{height:190px;}
    img.pre-btn {width: calc(33% - 8px);}
}

@media (max-width: 767.98px){
.tabs {
    padding: 0;
    gap: 10px;
}

.tab {
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-content {
    padding: 30px;
}

#a-action .tab-content .catch p {
    font-size: 18px;
}

#a-action .tab-content .catch p br{
    display:none;
}

#a-action h3 {
    font-size: 18px;
}

#a-action .tab-contents .catch {
    margin-bottom: 1.75em;
}

.col2 {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.col2:last-child{
    margin-bottom:0;
}

.col2 div {
    width: 100%;
}

#tab-1 .col2 .txt h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

#tab-1 .col2 .txt p {
    font-size: 15px;
}

#a-action .tab-content dl {
    font-size: 16px;
    margin-top: 10px;
}

.col2-movie-wrap {
    flex-direction: column;
}

.col2-movie {
    width: 100%;
}

#a-action .tab2-massage .title h3 {
    font-size: 22px;
}

.tab2-massage-btn-wrap {
    gap: 1vw;
    justify-content: center;
}

img.pre-btn {
    width: 30%;
}

.modal--prebtn .modal-card {
    flex-direction: column;
}

.modal--prebtn .modal-card .modal-card__image,.modal--prebtn .modal-card .modal-card__body {
    width: 100%;
}

.modal--prebtn .modal-card .modal-card__body {
    padding: 0;
}

.btn-tab3-wrap a {
    width: 100%;
    font-size: 15px;
}

.btn-action-wrap a {
    font-size: 18px;
    padding: 15px;
    gap:10px;
}

.btn-action-wrap {
    margin-top: 30px;
}

.btn-action-wrap a span.txt {
    width: calc(100% - 40px);
}

.btn-action-wrap a span.arrow {
    width: 30px;
    height: 30px;
}

.btn-action-wrap a span.arrow img {
    width: 7px;
}
.col2-action-wrap {
    flex-direction: column;
    gap: 30px;
}

.col2-action {
    width: 100%;
}
.bubble {
    max-width: 500px;
    height: 260px;
}

.bubble img {
    width: 60%;
}

.col2-action h3.line2{
    height:auto;
}
}

@media (max-width: 520px) {
    .bubble {
    height: 200px;
}

    .bubble img{width:70%;}
}

/*message*/
#message {
    padding: 100px 0;
}

.message-box {
    position:relative;
    height: 555px;
    background-size: cover;
}

.message--text-box {
    position: absolute;
    width: 100%;
    top: 28%;
    text-align: center;
    padding: 0 15%;
}

.message--text-box h2 {
    margin-bottom:30px;
}

.message--text-box h2 img {
    width: 80%;
}

.message--text-box p{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 23px;
    line-height: 1.75em;
    padding: 0 2.75em;
    text-align: justify;
    color: var(--text-color);
}

@media (max-width: 1200px){
.message-box {
    background-size: contain;
}

.message--text-box {
    top: 12vw;
    padding: 0 12%;
}

.message--text-box h2 {
    margin-bottom: 15px;
}

.message--text-box h2 img {
    width: 88%;
}

.message--text-box p {
    font-size: 20px;
}
}

@media (max-width: 1000px){
    .message-box {
        background-position: center;
        max-height: 67vw;
    }

    .message--text-box {
    top: 17vw;
    }

    .message--text-box p {
        font-size: 2.5vw;
        padding: 0 2em;
    }

    .message--text-box h2 {
        width: 100%;
        margin-bottom: 1.5vw;
        text-align: center;
    }

    .message--text-box h2 img {
        width: 80%;
    }
}

@media (max-width: 768px){
#message{
    padding:15vw 0;
}
.message--text-box {
    top: 20vw;
}

.message--text-box h2 {
line-height:0;
}

.message-box {
    max-height: 70vw;
}
}


/*lower*/
.lower .title img {
    width: 1em;
}

.lower .title h2 {
    background: var(--color-tab3);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    padding: 1em 3.5em;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    border-radius: 9em;
}

.lower .title {
    text-align: center;
    padding: 50px 0;
}

.com-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 35px;
    justify-content: center;
    margin-bottom: 75px;
}

.com-list a {
    display: flex;
    flex-direction: column;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    justify-content: flex-end;
    gap: 15px;
    width: 20%;
    transition: .3s;
}

.com-list a p {
    display: block;
}

.com-list a:hover {
    opacity: .5;
}

.com-detail .com-icon {
    position: absolute;
    max-width: 200px;
    top: -50px;
    right: -50px;
}

.com-detail .com-d-title{
    text-align:center;
}

.com-detail .com-d-title h3 {
    color: var(--color-tab3);
    font-size: 32px;
    margin-bottom: 20px;
}

.com-detail .com-d-title h4 {
    display: inline-block;
    color: var(--text-color);
    font-size: 22px;
    border-bottom: 7px solid #ffff66;
    padding: 0 1em;
}

.com-detail {
    width: calc(100% - 50px);
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    position: relative;
    padding: 100px;
    font-family: "Zen Maru Gothic", sans-serif;
    margin-bottom: 100px;
}

.com-bubble {
    width: 100%;
    background-position: top left, bottom left, left center;
    background-repeat: no-repeat, no-repeat, repeat-y;
    padding:100px 50px 35px 50px;
}

.com-d-movie {
    text-align: center;
    margin: 45px 0;
}

.com-d-movie img {
    width: 100%;
    cursor: pointer;
    transition: .3s;
}

.com-d-movie img:hover {
    opacity:.5;
}

.com-bubble p.catch {
    font-size: 20px;
    line-height: 1.75em;
    word-break: break-all;
    color: var(--text-color);
}

.catch-img {
    margin: 30px 0;
    display: flex;
    gap: 15px;
}

.catch-img img {
    width: calc(50% - 15px);
}

.more-wrap {
    text-align: center;
}

.more-wrap.top.hidden {
  display: none;
}

button.com-d-toggle {
    color: var(--color-tab3);
    font-size: 20px;
}

.com-d-toggle .arrow {
    display: inline-flex;
    background: var(--color-tab3);
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 9em;
}

.com-d-toggle .arrow img {
    width: 16px;
    height: 16px;
}

.com-d-hidden {
  display: none; /* 初期は非表示 */
}

.com-d-hidden.open {
  display: block; /* 開いたとき表示 */
}

.com-d-toggle .arrow img {
  transition: transform 0.25s ease;
}

.more-wrap.end .com-d-toggle .arrow img {
  transform: rotate(180deg);
}

.com-d-box h5 {
    font-size: 19px;
    color: var(--color-tab3);
    margin-bottom: 14px;
}

.com-d-box .col2 {
    flex-direction: row-reverse;
    gap: 20px;
    margin-bottom: 45px;
}

.com-d-box .col2 div.txt {
    width: 55%;
    color: var(--text-color);
}

.com-d-box .col2 div.img {
    width: 45%;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.com-d-box .col2.col1 {
    flex-direction: row;
}

.com-d-box .col2.col1 div.txt {
    width: 100%;
}

.other-title {
    text-align: center;
    margin-bottom: 15px;
}

.other-title img {
    max-width: 600px;
}

.com-d-box .caption {
    text-align: center;
    margin-top: -7px;
    font-size: 0.8em;
    padding:0;
}

@media (max-width: 768px){
.lower .inner {
    padding: 0 15px;
}

.lower .title h2 {
font-size: 16px;
}

.com-list {
    column-gap: 5%;
    row-gap: 3vw;
}

.com-list a {
        width: 45%;
        font-size: 14px;
}

.com-detail .com-icon {
    max-width: 100px;
    right: -15px;
}

.com-detail {
    padding: 30px;
    padding-top: 50px;
    width: calc(100% - 15px);
    margin-bottom: 80px;
}

.com-detail .com-d-title h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.com-detail .com-d-title h4 {
    font-size: 16px;
}

.com-d-movie {
    margin: 25px 0;
}

.com-bubble {
    padding: 8vw 5vw 3vw 5vw;
}

.com-bubble p.catch {
    font-size: 16px;
}

.catch-img {
    flex-direction: column;
}

.catch-img img {
    width: 100%;
}

.com-d-box h5 {
    font-size: 17px;
}

.com-d-box .col2 {
    flex-direction: column;
}

.com-d-box .col2 div.img {
    width: 100%;
}

.com-d-box .col2 div.txt {
    width: 100%;
}

button.com-d-toggle {
    font-size: 18px;
}

.com-d-toggle .arrow {
    padding: 5px;
}

.com-d-toggle .arrow img {
    width: 12px;
    height: 12px;
}

.other-title img {
    width: 100%;
}

}