/* rassic トップページCSS(home.blade.php のインライン<style>から外部化 / 2026-07-26 趙)
   HTMLサイズ削減 + ブラウザキャッシュを効かせるため。読み込み位置は元のインラインと
   同じ場所に置き、カスケードの順序を変えないこと。 */

.modern-steps-section {
  padding: 100px 20px 5rem;
  background: #fff;
}

.modern-steps-inner {
  width: 75vw;
  margin: 0 auto;
}

.modern-steps-heading {
    text-align: center;
    margin-bottom: 56px;
    text-align: left;
}

.modern-steps-kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border: 1.5px solid #111;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #fff;
}

.modern-steps-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

/* 見出しと同じ行に一覧ボタン(2026-07-25 趙) */
.movie-category-heading--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.movie-category-heading--row h2 {
  margin: 0;
}
.movie-category-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border: 1.5px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.movie-category-more:hover {
  background: #111;
  color: #fff;
}

.modern-steps-lead {
  width: 100%;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
}

.modern-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.modern-step-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
  overflow: hidden;
}

.modern-step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.modern-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.modern-step-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    height: 45px;
    padding: 0 18px;
    margin-bottom: 20px;
    background: #fff;
    border: 2px solid #111;
    border-radius: 14px;
    font-size: 0.94rem;
    font-weight: 800;
    color: #111;
}

.modern-step-visual {
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-step-visual img {
    width: 32%;
    max-width: 100px;
    height: auto;
    display: block;
    transition: transform 0.45s ease;
}

.modern-step-card:hover .modern-step-visual img {
  transform: scale(1.05);
}

.bg-yellow {
  background: #f3d633;
}

.bg-pink {
  background: #ed72a4;
}

.bg-mint {
  background: #47ccb7;
}

.modern-step-body {
  padding: 24px 6px 8px;
}

.modern-step-body h3 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

.modern-step-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* タブレット */
@media (max-width: 1024px) {
  .modern-steps-section {
    padding: 80px 20px;
  }

  .modern-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .modern-step-card:last-child {
    grid-column: 1 / -1;
  }

  .modern-step-visual {
    min-height: 240px;
  }
}

/* スマホ */
@media (max-width: 767px) {
    .modern-steps-inner {
  width: 85vw;
  margin: 0 auto;
}
  .modern-steps-section {
    padding: 64px 16px;
  }

  .modern-steps-heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .modern-steps-lead {
    margin: 0;
  }

  .modern-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modern-step-card {
    padding: 16px;
    border-radius: 22px;
  }

  .modern-step-card:last-child {
    grid-column: auto;
  }

  .modern-step-label {
    min-width: 100px;
    height: 48px;
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .modern-step-visual {
    min-height: 200px;
    border-radius: 18px;
  }

  .modern-step-visual img {
    width: 70%;
  }

  .modern-step-body {
    padding: 20px 2px 4px;
  }

  .modern-step-body h3 {
    font-size: 1.8rem;
  }

  .modern-step-body p {
    font-size: 0.96rem;
    line-height: 1.8;
  }
}
.faq-section {
  padding: 0px 20px 140px;
  background: #fff;
}

.faq-inner {
  width: 70vw;
  margin: 0 auto;
}

.faq-heading {
  width: 100%;
  margin: 0 auto 44px;
  text-align: left;
}

.faq-kicker {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111;
  line-height: 1;
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #111;    margin: 0 0 14px;
}

.faq-list {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #d9d9d9;
}

.faq-item {
  border-bottom: 1px solid #d9d9d9;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.faq-question:hover {
  opacity: 0.7;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 48px 24px 0;
  font-size: 1rem;
  line-height: 1.95;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 240px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 10px 0px 100px;
  }
section#faq {
        margin:0!important;
    }
  .faq-inner {
    width: 85%;
  }

  .faq-heading {
    width: 100%;
    margin-bottom: 32px;
  }

  .faq-heading h2 {
    font-size: 1.6rem;
  }

  .faq-list {
    width: 100%;
  }

  .faq-question {
    padding: 20px 0;
    font-size: 0.95rem;
    align-items: flex-start;
  }

  .faq-answer p {
    padding: 0 32px 20px 0;
    font-size: 0.92rem;
    line-height: 1.85;
  }
}
.overview-section {

  padding: 110px 20px 110px;
}

.overview-inner {
  width: 75vw;
  margin: 0 auto;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.overview-main {
  min-width: 0;
}

.overview-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1.5px solid #111;
  border-radius: 999px;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #111;
}

.overview-copy {
  margin: 0 0 28px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: -0.03em;
  color: #111;
}

.overview-text {
  max-width: 100%;
  margin-top: 5%;
}

.overview-text p {
    margin: 0 0 16px;
    font-size: clamp(0.9rem, 1.2vw, 0.96rem);
    line-height: 2;
    color: #000000;
}

.overview-text p:last-child {
  margin-bottom: 0;
}

.overview-side {
  min-width: 0;
}

.overview-card {
  position: sticky;
  top: 32px;
  padding: 28px 28px 26px;
  border: 1px solid #e7e7e7;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.overview-card-label {
  display: inline-block;
  margin: 0 0 18px;
  padding-left: 12px;
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #111;
}

.overview-card-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f0c419;
}

.overview-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.overview-points li {
  position: relative;
  margin: 0;
  padding: 0 0 18px 18px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
  border-bottom: 1px solid #ececec;
}

.overview-points li:not(:first-child) {
  padding-top: 18px;
}

.overview-points li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.overview-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111;
}

@media (max-width: 1024px) {
  .overview-section {
    padding: 90px 20px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .overview-text {
    max-width: 100%;
  }

  .overview-card {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .overview-section {
    padding: 72px 16px 80px;
  }

  .overview-kicker {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .overview-copy {
    margin-bottom: 22px;
  }

  .overview-card {
    padding: 22px 20px 20px;
    border-radius: 22px;
  }

  .overview-points li {
    font-size: 0.92rem;
    line-height: 1.8;
  }
}
.overview-section {

  padding: 60px 20px 100px;
}

.overview-inner {
  width: 75vw;
  margin: 0 auto;
}

.overview-heading {
    margin-bottom: 1rem;
    margin-top: 4rem;
}

.overview-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border: 1.5px solid #111;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.overview-heading h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #111;
}

/* コピー（主役） */
.overview-copy {
  margin: 0 0 28px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: -0.03em;
  color: #111;
}

/* 本文 */
.overview-text {
  max-width: 100%;
  margin-top: 5%;
}

.overview-text p {
    margin: 0 0 16px;
    font-size: clamp(0.9rem, 1.2vw, 0.96rem);
    line-height: 2;
    color: #000000;
}
.kensyu.bcon {
    width: 93vw;
    max-width: calc(95vw);
    margin-left: 5vw;
    border-radius: 6.865103vw 0 0 6.865103vw;
    background-color: #ffd8004d;
    padding: 6vw 0 6vw;
    margin-top: 0%;
}
/* スマホ */
@media (max-width: 768px) {
.overview-inner {
  width: 85vw;
  margin: 0 auto;
}
  .overview-section {
    padding: 80px 16px;
  }


}
.movie-section {
  background: #fff;
  padding: 110px 20px 120px;
}

.movie-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.movie-heading {
  margin-bottom: 40px;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.movie-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  opacity: 0.92;
}

.movie-card-image {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #eee;
  margin-bottom: 12px;
}

.movie-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.movie-card:hover .movie-card-image img {
  transform: scale(1.04);
}

.movie-card-title {
    margin: 0;
    font-size: clamp(0.9rem, 1.2vw, 0.96rem);
    line-height: 1.8;
    font-weight: 600;
    color: #111;
}

/* tablet */
@media (max-width: 1024px) {
  .movie-section {
    padding: 90px 20px 100px;
  }

  .movie-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .movie-section {
    padding: 72px 16px 80px;
  }

  .movie-heading {
    margin-bottom: 28px;
  }

  .movie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .movie-card-image {
    border-radius: 20px;
    margin-bottom: 10px;
  }

  /* サイズは上のクランプ指定に一本化(固定値で上書きしない) */
}
.movie-category-section {
    background: #eeeeee85;
    padding: 5rem 20px 6rem;
}

.movie-category-inner {
  width: 75vw;
  margin: 0 auto;
}

.movie-category-heading {
  margin-bottom: 48px;
}

.movie-category-block + .movie-category-block {
  margin-top: 56px;
}

.movie-category-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
}

.movie-category-head h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

.movie-category-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #000;
}

.movie-card-grid {
  display: grid;
  gap: 4rem;
}

.movie-card-grid--animals {
  grid-template-columns: repeat(3, 1fr);
}

.movie-card-grid--system {
  grid-template-columns: repeat(3, 1fr);
}

.movie-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  opacity: 0.92;
}

.movie-card-image {
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #efefef;
    margin-bottom: 12px;
}

.movie-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.movie-card:hover .movie-card-image img {
  transform: scale(1.04);
}

.movie-card-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: #111;
}

@media (max-width: 1024px) {
  .movie-category-section {
    padding: 90px 20px 100px;
  }

  .movie-card-grid--animals {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .movie-category-section {
    padding: 72px 16px 80px;
  }
.movie-category-inner {
  width: 85vw;
  margin: 0 auto;
}

  .movie-category-heading {
    margin-bottom: 34px;
  }

  .movie-category-block + .movie-category-block {
    margin-top: 42px;
  }

  .movie-category-head {
    margin-bottom: 18px;
  }

  .movie-category-head h3 {
    font-size: 1.15rem;
  }

  .movie-card-grid--animals,
  .movie-card-grid--system {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .movie-card-image {
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .movie-card-title {
        font-size: 0.92rem;
        line-height: 1.4;
        font-weight: 500;
  }
}
.modern-step-visual {
    border-radius: 2rem;
    padding: 2.5rem 1.5rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modern-step-visual-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.modern-step-visual-icon {
    display: block;
    width: min(78%, 320px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.modern-step-visual-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 30px;
    padding: 0 1.6rem;
    border: 1.5px solid rgba(17, 17, 17, 0.9);
    border-radius: 999px;
    background: rgb(255 255 255 / 72%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #111;
    font-size: 0.94rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.modern-step-visual-btn:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.modern-step-visual-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.modern-step-visual-btn:focus-visible {
    outline: 2px solid #111;
    outline-offset: 4px;
}

.bg-yellow {
    background: #ead12f;
}

.bg-pink {
    background: #de6d9f;
}

.bg-green {
    background: #4fc3b5;
}

@media (max-width: 1024px) {
    .modern-step-visual {
        min-height: 270px;
        padding: 2rem 1.25rem;
        border-radius: 1.75rem;
    }

    .modern-step-visual-icon {
        width: min(76%, 260px);
    }

    .modern-step-visual-btn {
        min-width: 168px;
        height: 50px;
        font-size: 0.96rem;
    }
}

@media (max-width: 767px) {
    .modern-step-visual {
        min-height: auto;
        padding: 1.75rem 1rem;
        border-radius: 1.5rem;
    }

    .modern-step-visual-inner {
        gap: 1.1rem;
    }

    .modern-step-visual-icon {
        width: min(72%, 220px);
    }

    .modern-step-visual-btn {
        width: 100%;
        max-width: 220px;
        min-width: 0;
        height: 48px;
        font-size: 0.95rem;
    }
}
.main-visual {
  width: 100%;
  height: auto;
}

/* スマホ */
@media (max-width: 768px) {
.s-section1__mainv.section1 {
    width: 100%;
    transform: translate(0px, 0px);
    top: 5rem;
    left: 0px;
    border-radius: 0px;
}
    .sp-only {
        display: block !important;
    }
        .overview-section {
        padding: 80px 16px 60px;
    }
}


.s-section1 .textbox {
    position: absolute;
    top: calc(50% + 30px);
    left: 6%;
    transform: translateY(-50%);
}
.s-section1__h1 img.topoverlay {
  display: block;
  max-width: 39rem;
  width: 100%;
  height: auto;
}
.modern-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.modern-step-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.modern-step-thumb {
  overflow: hidden;
  border-radius: 20px;
  background: #f5f5f5;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.modern-step-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.35s ease;
}


/* PC時のマウスオン */
.modern-step-link:hover .modern-step-thumb {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.modern-step-link:hover .modern-step-image {
  transform: scale(1.03);
  opacity: 0.96;
}

/* タブレット以下は1カラム */
@media screen and (max-width: 1024px) {
  .modern-steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .modern-steps-grid {
    gap: 18px;
  }

  .modern-step-thumb {
    border-radius: 16px;
  }
}



/* ローカルを旅する セクション(フルブリード+白背景 / 2026-07-25 趙)*/
.photo-gallery-section {
    position: relative;
    padding: 5rem 0 7rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);     /* 親 wrapper があってもフルブリード化 */
    background: #fff;
    color: #111;
    overflow: hidden;
}

.gallery-head {
  width: 75vw;
  margin: 0 auto 56px;
  position: relative;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(240, 232, 216, 0.5);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: transparent;
  color: #f0e8d8;
}

.gallery-title {
  margin: 22px 0 14px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111;
}

.gallery-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: #555;
  letter-spacing: 0.05em;
}

.gallery-slider-wrap {
  position: relative;
  width: 75vw;
  margin: 0 auto;
}

.gallery-viewport {
  overflow: hidden;
  width: 100%;    margin-top: 2rem;
}

.gallery-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.gallery-card {
    flex: 0 0 calc((100% - -180px) / 3);
}

.gallery-item-btn {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #f3f3f3;
  aspect-ratio: 4 / 3;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04) inset;
  transform: none;
  transition: box-shadow 0.3s ease;
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  transform: scale(1);
  transition: transform 0.45s ease, opacity 0.35s ease, filter 0.35s ease;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: rgba(255,255,255,0);
  transition: background 0.35s ease;
}

.gallery-item-btn:hover .gallery-thumb {
  transform: none;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.gallery-item-btn:hover .gallery-thumb img {
  transform: scale(1.035);
  filter: saturate(1.02);
}

.gallery-item-btn:hover .gallery-thumb::after {
  background: rgba(255,255,255,0.1);
}

/* 写真上に重ねる左右ボタン */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: #111;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(6px);
}

.gallery-nav-prev {
  left: 16px;
}

.gallery-nav-next {
  right: 16px;
}

.gallery-nav span {
  font-size: 2rem;
  line-height: 1;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.96);
}

.gallery-nav.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ライトボックス */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
}

.gallery-lightbox-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  height: min(88vh, 920px);
  margin: 4vh auto 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
}

.gallery-lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.gallery-lightbox-stage img {
  max-width: 90%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  background: #fff;
}

.gallery-lightbox-nav,
.gallery-lightbox-close {
  border: none;
  color: #111;
  cursor: pointer;
}

.gallery-lightbox-nav {
    width: 64px;
    height: 100px;
    border-radius: 999px;
    font-size: 6rem;
}

.gallery-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .gallery-head,
  .gallery-slider-wrap {
    width: min(100%, calc(100% - 32px));
  }

  .gallery-track {
    gap: 16px;
  }

  .gallery-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .gallery-thumb,
  .gallery-thumb img,
  .gallery-thumb::after {
    border-radius: 22px;
  }

  .gallery-nav {
    width: 52px;
    height: 52px;
  }

  .gallery-nav-prev {
    left: 10px;
  }

  .gallery-nav-next {
    right: 10px;
  }

  .gallery-lightbox-inner {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    width: min(1000px, calc(100% - 24px));
  }

  .gallery-lightbox-nav {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .photo-gallery-section {
        padding: 10px 16px 50px;
  }

.gallery-title {
  margin: 16px 0 10px;
}

  .gallery-head,
  .gallery-slider-wrap {
        width: 85vw;
        margin: 0 auto;
  }

  .gallery-track {
    gap: 12px;
  }

  .gallery-card {
    flex: 0 0 60%;
  }

  .gallery-thumb,
  .gallery-thumb img,
  .gallery-thumb::after {
    border-radius: 18px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-nav span {
    font-size: 1.45rem;
  }

  .gallery-nav-prev {
    left: 8px;
  }

  .gallery-nav-next {
    right: 8px;
  }

  .gallery-lightbox-inner {
    width: calc(100% - 16px);
    height: 88vh;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .gallery-lightbox-stage img {
    border-radius: 16px;
  }

  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .gallery-lightbox-close {
    top: -6px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
.s-section1 .textbox {
    position: absolute;
    top: calc(50% + 30px);
    left: 2%;
    transform: translateY(-50%);
}
}

/* TOP ヒーロー スライドショー(fade / 中央ドット / autoplay) 2026-05-25 林 */
.hero-swiper { width: 100%; height: 100%; overflow: hidden; position: relative; }
.hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide { height: 100%; }
.hero-swiper .swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-pagination-pc, .hero-pagination-sp {
  position: absolute; bottom: 18px; left: 0; width: 100%;
  text-align: center; z-index: 10;
}
.hero-swiper .swiper-pagination-bullet {
  width: 10px; height: 10px; margin: 0 6px; background: #fff;
  opacity: 0.55; box-shadow: 0 0 4px rgba(0,0,0,.35); transition: opacity .3s;
}
.hero-swiper .swiper-pagination-bullet-active { opacity: 1; }

/* home.blade.php の残りインライン<style>から外部化(2026-07-28 趙 / CSP準備) */

  /* イベント 3カラムバナー(2026-05-22 趙) */
  .modern-steps-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
  .event-card {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .event-card__thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f1ea;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .event-card__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
  }
  .event-card:hover .event-card__thumb {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  }
  .event-card:hover .event-card__thumb img { transform: scale(1.04); }
  .event-card__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9f5ed 0%, #ece4d3 100%);
  }
  .event-card__placeholder-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: #b9a98a;
  }
  .event-card__body {
    padding: 18px 4px 0;
  }
  .event-card__date {
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #ed8936;
    margin: 0 0 6px;
  }
  .event-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.55;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.03em;
  }
  .event-card__sub {
    font-size: 0.88rem;
    color: #777;
    margin: 4px 0 0;
    letter-spacing: 0.04em;
  }
  .event-card--soon { pointer-events: none; cursor: default; opacity: 0.78; }
  @media (max-width: 1024px) {
    .modern-steps-grid--3 { grid-template-columns: 1fr; gap: 22px; }
  }


  /* === News セクション(シンプルフラット / 旧 FAQ 置換 / 2026-05-21 趙)=== */
  .news-section {
    padding: 0 20px 140px;
    background: #fff;
  }
  .news-inner {
    width: 75vw;
    margin: 0 auto;
  }
  .news-heading {
    margin: 0 auto 44px;
    text-align: left;
  }
  .news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #fff;
  }
  .news-item {
    border-bottom: 1px solid #fff;
  }
  .news-link {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 22px 4px;
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.2s ease;
  }
  .news-link:hover { opacity: 0.7; }
  .news-date {
    flex: 0 0 110px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #666;
  }
  .news-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    color: #1a1a1a;
    letter-spacing: 0.03em;
  }
  .news-arrow {
    flex: 0 0 1.6rem;
    color: #ed8936;
    font-size: 1.1rem;
    text-align: right;
  }
  .news-more {
    margin-top: 32px;
    text-align: right;
  }
  .news-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    font-size: 0.92rem;
  }
  .news-empty {
    padding: 2.5rem 0;
    color: #888;
    font-size: 0.95rem;
    text-align: center;
  }
  @media (max-width: 768px) {
    .news-inner { width: 85%; }
    .news-link { flex-wrap: wrap; padding: 18px 0; gap: 8px 24px; }
    .news-date { flex: 0 0 auto; font-size: 0.82rem; }
    .news-arrow { display: none; }
  }
