@charset "UTF-8";
/*
Theme Name: My Original Theme12
Theme URI: https://example.com/
Author: Yuta Kusumoto
Author URI: https://example.com/
Description: オリジナルテーマです
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-original-theme
*/
/* =========================================================
   Base / Reset
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", Georgia, serif;
  line-height: 1.9;
  color: #2b2b2b;
  background: #fefcfa;
}

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

a {
  color: #2b2b2b;
  text-decoration: none;
}

a:hover {
  opacity: 0.75;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.sp-none {
  display: block;
}
@media (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none !important;
  }
}

/* =========================================================
   Layout helpers
========================================================= */
.container {
  max-width: 900px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.between {
  justify-content: space-between;
}

.center {
  align-items: center;
}

.py-xl {
  padding: 56px 0;
}

.py-xxl {
  padding: 80px 0;
}

/* =========================================================
   Header
========================================================= */
.site-header {
  position: absolute;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.site-header .brand {
  max-width: 209px;
  width: 100%;
}
.site-header {
  width: 100%;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.site-header .link-group {
  padding-left: 49px;
  display: flex;
  max-width: 575px;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .site-header .link-group {
    padding-left: 18px;
  }
}
.site-header .right-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 250px;
  width: 100%;
}
.site-header .language-group {
  display: flex;
  opacity: 1;
}
.site-header .language-group a {
  width: 45px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #25393b solid 1px;
}
.site-header .language-group p {
  width: 100%;
  text-align: center;
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 12px;
  height: 100%;
  padding-top: 2px;
}
.site-header .language-group .jp {
  background-color: #fff;
}
.site-header .language-group .en {
  background-color: #25393b;
  color: #ffffff;
}
.site-header .sns-group {
  display: flex;
  max-width: 112px;
  width: 100%;
  justify-content: space-between;
}
.site-header .sns-group a {
  width: 24px;
  height: 24px;
}

.sp-drawer .language-group {
  display: flex;
  opacity: 1;
}
.sp-drawer .language-group a {
  width: 45px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #25393b solid 1px;
}
.sp-drawer .language-group p {
  width: 100%;
  text-align: center;
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 12px;
  height: 100%;
  padding-top: 2px;
}
.sp-drawer .language-group .jp {
  background-color: #fff;
}
.sp-drawer .language-group .en {
  background-color: #25393b;
  color: #ffffff;
}

.site-header .container {
  height: 80px;
  gap: 20px;
  width: 100%;
  max-width: 1248px;
  padding-right: 46px;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .site-header {
    display: none;
  }
  .sp-header {
    display: block;
  }
}
.sp-header {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
}
.sp-header .sp-menu-btn {
  display: block;
  width: 60px;
  height: 60px;
}
.sp-header .sp-menu-btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   Hero (Swiper)
   - 高さは画面幅に追従（PCで最大520px）
========================================================= */
.hero {
  width: 100%;
}

.hero .swiper {
  width: 100%;
  height: 706px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero .swiper {
    height: 500px;
  }
}

.hero .swiper-slide {
  width: 100%;
  height: 100%;
  transition: opacity 2s ease-in-out !important;
}

.hero .swiper-slide img {
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hero-fixed {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center; /* 中央固定。左上にしたいならここ変える */
  pointer-events: none;
}

.hero-fixed img {
  max-width: 287px;
  height: auto;
}
@media (max-width: 768px) {
  .hero-fixed img {
    max-width: 140px;
  }
}

/* =========================================================
   Section title
========================================================= */
.sp-logo-area {
  display: none;
}
@media (max-width: 768px) {
  .sp-logo-area {
    display: block;
    max-width: 212px;
    width: 100%;
    height: 36px;
    margin: 0 auto;
    margin-top: 60px;
  }
}

.section-title {
  color: #25393b;
}

.container_product {
  margin-top: 122px;
}
@media (max-width: 1024px) {
  .container_product {
    margin-top: 73px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 520px;
  }
}
.container_product .section-title {
  font-family: "Shippori Mincho";
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  position: relative;
  color: #25393b;
}
@media (max-width: 768px) {
  .container_product .section-title {
    margin-top: 86px;
  }
}
.container_product .section-title img {
  max-width: 147px;
}
@media (max-width: 768px) {
  .container_product .section-title img {
    max-width: 88px;
  }
}
.container_product .section-title::after {
  content: "";
  background-color: #acacac;
  height: 1px !important;
  width: 100%;
  max-width: 729px;
  position: absolute;
  right: 0;
  top: 50%;
}
@media (max-width: 1024px) {
  .container_product .section-title::after {
    max-width: 65.5%;
    height: 2px !important;
  }
}
.container_product .news-grid {
  margin-top: 87px;
}
@media (max-width: 1024px) {
  .container_product .news-grid {
    margin-top: 42px;
    gap: 41px;
  }
}
.container_product .news-grid .news-card {
  max-width: 275px;
  width: 100%;
}
@media (max-width: 1024px) {
  .container_product .news-grid .news-card {
    max-width: 314px;
  }
}
.container_product .news-grid .news-card .thumb {
  width: 100%;
  height: 196px;
}
@media (max-width: 1024px) {
  .container_product .news-grid .news-card .thumb {
    max-width: 275px;
    margin: 0 auto;
  }
}
.container_product .news-grid .news-card .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.container_product .news-grid .news-card .meta time {
  margin-top: 8px;
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 170%;
  color: #25393b;
}
@media (max-width: 768px) {
  .container_product .news-grid .news-card .meta time {
    font-size: 16px;
  }
}
.container_product .news-grid .news-card .title-jp {
  margin-top: 16px;
  color: #25393b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* ← ここが3行指定 */
  overflow: hidden;
  word-break: break-word;
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-style: "Regular";
  font-size: 18px;
  leading-trim: NONE;
  line-height: 170%;
  letter-spacing: 6%;
  text-align: center;
}
@media (max-width: 768px) {
  .container_product .news-grid .news-card .title-jp {
    font-size: 14px;
  }
}
.container_product .news-grid .news-card .title-en {
  margin-top: 17px;
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-style: "Regular";
  font-size: 18px;
  leading-trim: NONE;
  line-height: 170%;
  letter-spacing: 1px;
  text-align: center;
}
.container_product .news-grid {
  /* タブレットで2列にしたい場合（任意） */
}
@media (max-width: 1024px) {
  .container_product .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.container_product .news-grid {
  /* SP：1列＋中央寄せ */
}
@media (max-width: 1024px) {
  .container_product .news-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    /* 代替: place-items: start center; でもOK */
  }
}
.container_product .read-more-area {
  margin-top: 77px;
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 20px;
  line-height: 230%;
  letter-spacing: 0%;
  max-width: 344px;
  position: relative;
}
@media (max-width: 768px) {
  .container_product .read-more-area {
    font-size: 16px;
    padding-left: 4px;
    margin-top: 42px;
    max-width: 264px;
    margin-left: 17px;
  }
}
.container_product .read-more-area a {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

/* =========================================================
   News
========================================================= */
.section-news {
  padding-bottom: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.news-card .thumb {
  aspect-ratio: 1/1;
  background: #e9e9e9;
  overflow: hidden;
}

.news-card .thumb .ph {
  width: 100%;
  height: 100%;
}

.news-card .meta {
  display: flex;
  gap: 10px;
  color: #8a8a8a;
  font-size: 12px;
  margin: 10px 0;
}

.news-title {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* =========================================================
   Plan
========================================================= */
.section-plan .plan-banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .section-plan .plan-banners {
    margin-top: 43px;
    gap: 31px;
  }
}

.plan-banner {
  position: relative;
  display: block;
  overflow: hidden;
}

.plan-banner img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: contrast(0.95) saturate(0.9);
}

.container_story {
  margin-top: 150px;
}
@media (max-width: 1024px) {
  .container_story {
    margin: 0 auto;
    max-width: 520px;
    margin-top: 122px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.container_story .section-title {
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
  position: relative;
}
@media (max-width: 1024px) {
  .container_story .section-title {
    font-size: 24px;
  }
}
.container_story .content-group {
  margin-top: 81px;
}
@media (max-width: 768px) {
  .container_story .content-group {
    margin-top: 37px;
  }
}
.container_story .content-group__single {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .container_story .content-group__single {
    margin-bottom: 25px;
  }
}
.container_story .content-group__single {
  position: relative;
}
.container_story .content-group__single a {
  display: block;
  position: relative;
}
.container_story .content-group__text {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Shippori Mincho";
  /* font-size: 28px; */
  max-width: 277px;
  width: 100%;
  letter-spacing: 0.05em;
}
.container_story .content-group__text_history {
  max-width: 163px;
}
.container_story .content-group__text span {
  position: relative;
  padding: 0 20px;
}

.container_experience {
  margin-top: 160px;
  margin-bottom: 161px;
}
@media (max-width: 1024px) {
  .container_experience {
    margin: 0 auto;
    max-width: 520px;
    margin-top: 73px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 120px;
  }
}
.container_experience .section-title {
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
  position: relative;
}
@media (max-width: 1024px) {
  .container_experience .section-title {
    font-size: 24px;
  }
}
.container_experience .content-group {
  margin-top: 81px;
}
@media (max-width: 768px) {
  .container_experience .content-group {
    margin-top: 36px;
  }
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
  background-color: #d7dede;
  padding-top: 59px;
  padding-bottom: 60px;
}
@media (max-width: 1024px) {
  .site-footer {
    padding-top: 66px;
  }
}
.site-footer .footer-area {
  max-width: 1160px;
  margin: 0 auto;
  margin-bottom: 72px;
}
@media (max-width: 1024px) {
  .site-footer .footer-area {
    margin-left: 32px;
    margin-bottom: 60px;
  }
}
@media (max-width: 1024px) and (min-width: 454px) {
  .site-footer .footer-area {
    max-width: 310px;
    margin: 0 auto;
  }
}
.site-footer .footer-area .footer-sns {
  max-width: 219px;
  width: 100%;
}
@media (max-width: 1024px) {
  .site-footer .footer-area .footer-sns {
    margin-top: 60px;
  }
}
@media (max-width: 1240px) and (min-width: 1024px) {
  .site-footer .footer-area .footer-sns {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.site-footer .footer-area .footer-sns .icon-group {
  max-width: 168px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-top: 82px;
  margin-left: 4px;
}
@media (max-width: 1024px) {
  .site-footer .footer-area .footer-sns .icon-group {
    margin-left: initial;
  }
}
.site-footer .footer-area .footer-sns .icon-group a {
  width: 36px;
  height: 36px;
}
.site-footer .footer-area .footer-sns .icon-group a img {
  width: 100%;
}
.site-footer .footer-logo {
  width: 219px;
  height: 36px;
  margin-left: 4px;
}
@media (max-width: 1024px) {
  .site-footer .footer-logo {
    width: 215.75px;
    height: 47px;
    margin-left: -3px;
  }
}
@media (max-width: 1240px) and (min-width: 1024px) {
  .site-footer .footer-logo {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.site-footer .sp-none-footer {
  display: block;
}
@media (max-width: 1024px) {
  .site-footer .sp-none-footer {
    display: none !important;
  }
}
.site-footer .pc-none-footer {
  display: block;
}
@media (min-width: 1024px) {
  .site-footer .pc-none-footer {
    display: none !important;
  }
}
.site-footer .footer-grid {
  margin-top: 40px;
  max-width: 1160px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 6px;
}
@media (max-width: 1024px) {
  .site-footer .footer-grid {
    flex-direction: column;
    max-width: 310px;
    margin-top: 0px;
    padding-left: initial;
  }
}
.site-footer .footer-grid .footer-col {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
@media (max-width: 1240px) and (min-width: 1024px) {
  .site-footer .footer-grid .footer-col {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 1024px) {
  .site-footer .footer-grid .footer-col {
    flex-direction: column;
    padding: initial;
    margin-top: 22px;
  }
}
.site-footer .footer-grid .footer-col .footer-col__single {
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #25393b;
}
@media (max-width: 1024px) {
  .site-footer .footer-grid .footer-col .footer-col__single {
    margin-bottom: 32px;
  }
}
.site-footer .footer-grid .footer-col .footer-col__single .item-group {
  margin-top: 30px;
}
.site-footer .footer-grid .footer-col .footer-col__single .item-group__single {
  padding-left: 10px;
  position: relative;
  height: 20px;
  display: block;
  margin-bottom: 20px;
}
.site-footer .footer-grid .footer-col .footer-col__single .item-group__single:last-child {
  margin-bottom: 0px;
}
@media (max-width: 1024px) {
  .site-footer .footer-grid .footer-col .footer-col__single .item-group__single {
    padding-left: 17px;
  }
}
.site-footer .footer-grid .footer-col .footer-col__single .item-group__single::before {
  content: "";
  background-color: #25393b;
  height: 1px;
  width: 5px;
  position: absolute;
  left: 0;
  top: 50%;
}
@media (max-width: 1024px) {
  .site-footer .footer-grid .footer-col .footer-col__single .item-group__single::before {
    width: 9px;
  }
}
.site-footer .footer-under-image {
  max-height: 266px;
}
@media (max-width: 1024px) {
  .site-footer .footer-under-image {
    max-height: 466px;
    height: 266px;
    margin-top: 62px;
  }
  .site-footer .footer-under-image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 62% center;
       object-position: 62% center;
  }
}

/* =========================================================
   Article
========================================================= */
.entry-title {
  font-size: 28px;
  margin: 16px 0;
}

.entry-content {
  color: #404040;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-title::after {
    width: 180px;
  }
  .plan-banner .banner-text {
    left: 8%;
    bottom: 10%;
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .site-header .container {
    height: 56px;
  }
  .primary-nav {
    display: none;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* =========================================================
   768px以下でPCヘッダーを隠しSPヘッダー表示 
========================================================= */
/* ===== Drawer 基本 ===== */
.sp-drawer {
  position: fixed;
  inset: 0;
  background: #d3dddd;
  z-index: 100001;
  padding: 72px 28px 28px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s;
}

.sp-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s;
}

body.no-scroll {
  overflow: hidden;
}

/* ===== メニュー見た目 ===== */
.sp-drawer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  color: #233136;
}

.sp-drawer__menu > li {
  margin: 18px 0;
  font-size: 20px;
  letter-spacing: 0.06em;
}

.sp-drawer__menu > li > a,
.sp-drawer__menu > li > span {
  text-decoration: none;
  color: #233136;
}

.sp-drawer__menu li ul {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0 0 0 14px;
}

.sp-drawer__menu li ul li {
  margin: 10px 0;
  font-size: 18px;
  opacity: 0.9;
}

/* 行頭の黒丸を確実に消す（ブラウザ差異対策） */
.sp-drawer__menu li {
  list-style-type: none;
}

.sp-drawer__menu li::marker {
  content: "";
}

/* ===== 閉じるボタン（右上のX） ===== */
.sp-drawer__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.sp-drawer__close::before,
.sp-drawer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #5a6a6a;
  transform-origin: center;
}

.sp-drawer__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sp-drawer__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ===== SNS ===== */
.sp-drawer__sns {
  left: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  max-width: 300px;
}
.sp-drawer__sns .sns-group {
  display: flex;
  gap: 29px;
  align-items: center;
}

.sp-drawer__sns a {
  display: inline-block;
  width: 36px;
  height: 36px;
}

.sp-drawer__sns img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .site-header {
    display: none;
  }
  .sp-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px;
    z-index: 100001;
  }
}
@media (min-width: 769px) {
  .sp-header,
  .sp-drawer {
    display: none !important;
  }
}
/* ============================
   PCヘッダー：ドロップダウン
   (.site-header .link-group に既存合わせ)
============================ */
.site-header .link-group__single.has-sub {
  position: relative;
}

/* 初期は非表示 */
.site-header .link-group__single .dropdown {
  position: absolute;
  left: 50%;
  top: 55px;
  transform: translateX(-17%);
  min-width: 220px;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 1000;
  white-space: nowrap;
}

.site-header {
  isolation: isolate;
}

.site-header .link-group__single .dropdown a {
  display: block;
  padding: 6px 2px;
  line-height: 1.6;
  color: #25393b;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.menuitem-top {
  margin-top: -43px;
}

/* 親をホバー or キーボードフォーカスで表示 */
.site-header .link-group__single.has-sub:hover .dropdown,
.site-header .link-group__single.has-sub:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-17%);
  transition-delay: 0s;
}

/* PCのみ有効。既存SPヘッダー/ドロワーには出さない */
@media (max-width: 1024px) {
  .site-header .link-group__single .dropdown {
    display: none !important;
  }
}
.com12 {
  width: 100px;
}

.story-fv {
  position: relative;
}
.story-fv .main-image {
  width: 100%;
  display: block;
}
@media (max-width: 1024px) {
  .story-fv .main-image {
    height: 500px;
  }
}
.story-fv img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.story-fv .fv-title {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 722px;
}
@media (max-width: 768px) {
  .story-fv .fv-title {
    width: 90%;
    top: 70%;
  }
}
.story-fv .fv-title img {
  width: 100%;
  height: auto;
  display: block;
}

.history-fv .fv-title {
  max-width: 472px;
}
@media (max-width: 768px) {
  .history-fv .fv-title {
    width: 65%;
    top: 70%;
  }
}

.container-story-main {
  width: 100%;
  margin-top: 154px;
  margin-bottom: 123px;
}
@media (max-width: 1024px) {
  .container-story-main {
    max-width: 520px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 31px;
    margin-top: 95px;
    margin-bottom: 120px;
  }
}
.container-story-main .content {
  max-width: 903px;
  width: 100%;
  margin: 0 auto;
}
.container-story-main .content .title {
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  position: relative;
  color: #25393b;
}
@media (max-width: 1024px) {
  .container-story-main .content .title {
    font-size: 24px;
  }
}
.container-story-main .content .title::after {
  content: "";
  background-color: #25393b;
  height: 1px !important;
  width: 100%;
  max-width: 645px;
  position: absolute;
  right: 0;
  top: 50%;
}
@media (max-width: 1024px) {
  .container-story-main .content .title::after {
    max-width: 55%;
  }
}
.container-story-main .content .text {
  margin-top: 40px;
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.56px;
  color: #25393b;
}
@media (max-width: 1024px) {
  .container-story-main .content .text {
    font-size: 14px;
    line-height: 220%;
    letter-spacing: 0.8px;
  }
}
.container-story-main .content-group {
  color: #25393b;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .container-story-main .content-group {
    margin-top: 49px;
  }
}
.container-story-main .content-group__single {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .container-story-main .content-group__single {
    margin-top: 37px;
    margin-bottom: 0;
  }
}
.container-story-main .content-group__single__first .content-title {
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0%;
}
@media (max-width: 1024px) {
  .container-story-main .content-group__single__first .content-title {
    margin-top: 37px;
    line-height: 195%;
    font-size: 18px;
  }
}
.container-story-main .content-group__single__first .content-text {
  margin-top: 30px;
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 16px;
  line-height: 219%;
  letter-spacing: 1px;
}
@media (max-width: 1024px) {
  .container-story-main .content-group__single__first .content-text {
    margin-top: 9px;
    font-family: "Shippori Mincho";
    font-weight: 400;
    font-size: 13px;
    line-height: 238%;
    letter-spacing: 1.35px;
  }
}
@media (max-width: 1024px) {
  .container-story-main .content-group__single:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
.container-story-main .content-group__single:nth-child(odd) .content-group__single__first {
  /* 奇数用 */
  max-width: 375px;
  width: 100%;
}
@media (max-width: 1024px) {
  .container-story-main .content-group__single:nth-child(odd) .content-group__single__first {
    max-width: 460px;
  }
}
.container-story-main .content-group__single:nth-child(odd) .content-group__single__second {
  /* 奇数用 */
  max-width: 460px;
  width: 100%;
}
@media (max-width: 1024px) {
  .container-story-main .content-group__single:nth-child(odd) .content-group__single__second {
    max-width: 460px;
    margin: 0 auto;
  }
}
.container-story-main .content-group__single:nth-child(odd) .content-group__single__second .content-group__single__second__1 {
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .container-story-main .content-group__single:nth-child(odd) .content-group__single__second .content-group__single__second__1 {
    margin-bottom: 21px;
  }
}
.container-story-main .content-group__single:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .container-story-main .content-group__single:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.container-story-main .content-group__single:nth-child(even) .content-group__single__first {
  /* 偶数用 */
  max-width: 455px;
  width: 100%;
}
.container-story-main .content-group__single:nth-child(even) .content-group__single__second {
  /* 偶数用 */
  max-width: 380px;
  width: 100%;
}
@media (max-width: 1024px) {
  .container-story-main .content-group__single:nth-child(even) .content-group__single__second {
    margin: 0 auto;
  }
}
.container-story-main .content-group .last-group {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .container-story-main .content-group .last-group {
    margin-bottom: 34px;
  }
}
.container-story-main .content-group .link-image-area a {
  position: relative;
  display: block;
}
.container-story-main .content-group .base-img {
  width: 100%;
  display: block;
}
.container-story-main .content-group .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 400px;
}

.container-cuisine {
  background: url("./assets/images/story-cuisine.png");
  height: 445px;
  background-size: cover;
}
@media (max-width: 1024px) {
  .container-cuisine {
    height: 248px;
    background: url("./assets/images/story-cuisine-sp.png");
    background-size: cover;
  }
}

.container-tamba {
  background: url("./assets/images/story-tamba.png");
  height: 445px;
  background-size: cover;
}
@media (max-width: 1024px) {
  .container-tamba {
    height: 248px;
    background: url("./assets/images/story-tamba-sp.png");
    background-size: cover;
  }
}

.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 48px 0 0;
  margin-top: 120px;
  margin-bottom: 120px;
}

.pagination a,
.pagination span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-family: "Noto Serif JP";
  font-size: 14px;
  color: #25393b;
  border-radius: 4px;
}

.pagination .current {
  background: #25393b;
  color: #fff;
}

.pagination a.prev,
.pagination a.next {
  width: auto;
  padding: 0 10px;
}

.section-news-details {
  padding-top: 29px;
}
.section-news-details .section-title {
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  position: relative;
}
@media (max-width: 1024px) {
  .section-news-details .section-title {
    font-size: 24px;
  }
}
.section-news-details .section-title::after {
  content: "";
  background-color: #acacac;
  height: 1px;
  width: 100%;
  max-width: 79%;
  position: absolute;
  right: 0;
  top: 50%;
}
@media (max-width: 1024px) {
  .section-news-details .section-title::after {
    max-width: 62%;
  }
}
.section-news-details .news-grid {
  margin-top: 81px !important;
}

.ws-single {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #25393b;
}

.ws-title {
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  color: #25393b;
  margin-top: 120px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .ws-title {
    font-size: 28px;
    margin-top: 80px;
    margin-bottom: 60px;
  }
}

.ws-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.ws-content {
  margin-top: 24px;
}

.ws-cta {
  margin-top: 24px;
}

.ws-cta .book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 54px;
  background: #d7dede;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.0666666667);
}

.ws-nav {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 100px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .ws-nav {
    margin-top: 80px;
    margin-bottom: 60px;
  }
}
.ws-nav .prevnext {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.ws-nav .prev {
  margin-left: 20px;
}
.ws-nav .prev a {
  text-align: -webkit-right;
}
.ws-nav .next {
  margin-right: 20px;
}
.ws-nav__button {
  max-width: 264px;
  width: 100%;
  max-height: 46px;
}
@media (max-width: 768px) {
  .ws-nav__button .ws-title {
    max-height: initial;
  }
}
.ws-nav__button img {
  height: 100%;
}

.back-link {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .ws-title {
    font-size: 26px;
  }
}
.pd-title-section .title {
  margin: 0 auto;
  margin-top: 200px;
  max-width: 431px;
  width: 100%;
}
@media (max-width: 1024px) {
  .pd-title-section .title {
    margin: 0 auto;
    margin-top: 120px;
    max-width: 272px;
    width: 100%;
  }
}

.pd-content-section {
  max-width: 902px;
  width: 100%;
  margin: 0 auto;
  margin-top: 90px;
}
@media (max-width: 1024px) {
  .pd-content-section {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 80px;
    max-width: 600px;
  }
}
.pd-content-section__single {
  margin-bottom: 55px;
}
.pd-content-section__single .section-title {
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-size: 24px;
  line-height: 230%;
  letter-spacing: 0%;
  position: relative;
}
@media (max-width: 1024px) {
  .pd-content-section__single .section-title {
    font-size: 24px;
  }
}
.pd-content-section__single .section-title::after {
  content: "";
  background-color: #acacac;
  height: 1px !important;
  width: 100%;
  max-width: 636px;
  position: absolute;
  right: 0;
  top: 50%;
}
@media (max-width: 1024px) {
  .pd-content-section__single .section-title::after {
    max-width: 52.5%;
    height: 2px !important;
  }
}
@media (max-width: 590px) {
  .pd-content-section__single .section-title::after {
    max-width: 25.5%;
    height: 2px !important;
  }
}
@media (max-width: 450px) {
  .pd-content-section__single .section-title::after {
    max-width: 15.5%;
    height: 2px !important;
  }
}
@media (max-width: 350px) {
  .pd-content-section__single .section-title::after {
    max-width: 5.5%;
    height: 2px !important;
  }
}
.pd-content-section__single:nth-of-type(1) .section-title::after {
  max-width: 638px;
}
@media (max-width: 1024px) {
  .pd-content-section__single:nth-of-type(1) .section-title::after {
    max-width: 52.5%;
    height: 2px !important;
  }
}
@media (max-width: 590px) {
  .pd-content-section__single:nth-of-type(1) .section-title::after {
    max-width: 30.5%;
    height: 2px !important;
  }
}
@media (max-width: 450px) {
  .pd-content-section__single:nth-of-type(1) .section-title::after {
    max-width: 15.5%;
    height: 2px !important;
  }
}
@media (max-width: 350px) {
  .pd-content-section__single:nth-of-type(1) .section-title::after {
    max-width: 5.5%;
    height: 2px !important;
  }
}
.pd-content-section__single:nth-of-type(2) .section-title::after {
  max-width: 720px;
}
@media (max-width: 1024px) {
  .pd-content-section__single:nth-of-type(2) .section-title::after {
    max-width: 62.5%;
    height: 2px !important;
  }
}
@media (max-width: 590px) {
  .pd-content-section__single:nth-of-type(2) .section-title::after {
    max-width: 48.5%;
    height: 2px !important;
  }
}
@media (max-width: 450px) {
  .pd-content-section__single:nth-of-type(2) .section-title::after {
    max-width: 35.5%;
    height: 2px !important;
  }
}
@media (max-width: 350px) {
  .pd-content-section__single:nth-of-type(2) .section-title::after {
    max-width: 25.5%;
    height: 2px !important;
  }
}
.pd-content-section__single:nth-of-type(3) .section-title::after {
  max-width: 790px;
}
@media (max-width: 1024px) {
  .pd-content-section__single:nth-of-type(3) .section-title::after {
    max-width: 72.5%;
    height: 2px !important;
  }
}
@media (max-width: 590px) {
  .pd-content-section__single:nth-of-type(3) .section-title::after {
    max-width: 69.5%;
    height: 2px !important;
  }
}
@media (max-width: 450px) {
  .pd-content-section__single:nth-of-type(3) .section-title::after {
    max-width: 61.5%;
    height: 2px !important;
  }
}
@media (max-width: 350px) {
  .pd-content-section__single:nth-of-type(3) .section-title::after {
    max-width: 55.5%;
    height: 2px !important;
  }
}
.pd-content-section__single:nth-of-type(4) .section-title::after {
  max-width: 790px;
}
@media (max-width: 1024px) {
  .pd-content-section__single:nth-of-type(4) .section-title::after {
    max-width: 72.5%;
    height: 2px !important;
  }
}
@media (max-width: 590px) {
  .pd-content-section__single:nth-of-type(4) .section-title::after {
    max-width: 65.5%;
    height: 2px !important;
  }
}
@media (max-width: 450px) {
  .pd-content-section__single:nth-of-type(4) .section-title::after {
    max-width: 55.5%;
    height: 2px !important;
  }
}
@media (max-width: 350px) {
  .pd-content-section__single:nth-of-type(4) .section-title::after {
    max-width: 50.5%;
    height: 2px !important;
  }
}
.pd-content-section__single:nth-of-type(5) .section-title::after {
  max-width: 686px;
}
@media (max-width: 1024px) {
  .pd-content-section__single:nth-of-type(5) .section-title::after {
    max-width: 52.5%;
    height: 2px !important;
  }
}
@media (max-width: 590px) {
  .pd-content-section__single:nth-of-type(5) .section-title::after {
    max-width: 45.5%;
    height: 2px !important;
  }
}
@media (max-width: 450px) {
  .pd-content-section__single:nth-of-type(5) .section-title::after {
    max-width: 25.5%;
    height: 2px !important;
  }
}
@media (max-width: 350px) {
  .pd-content-section__single:nth-of-type(5) .section-title::after {
    max-width: 15.5%;
    height: 2px !important;
  }
}
.pd-content-section__single .title-text {
  margin-bottom: 60px;
  margin-top: 19px;
  font-family: "Shippori Mincho";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%; /* 35.2px */
  letter-spacing: 0.96px;
}
@media (max-width: 1024px) {
  .pd-content-section__single .title-text {
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 220%; /* 30.8px */
    letter-spacing: 0.84px;
    margin-top: 23px;
  }
}
.pd-content-section__single .news-grid {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .pd-content-section__single .news-grid {
    margin-top: 42px;
    gap: 41px;
  }
}
.pd-content-section__single .news-grid .news-card {
  max-width: 275px;
  width: 100%;
  min-height: 305px;
}
@media (max-width: 1024px) {
  .pd-content-section__single .news-grid .news-card {
    max-width: 314px;
  }
}
.pd-content-section__single .news-grid .news-card .thumb {
  width: 100%;
  height: 183px;
}
@media (max-width: 1024px) {
  .pd-content-section__single .news-grid .news-card .thumb {
    max-width: 275px;
    margin: 0 auto;
  }
}
.pd-content-section__single .news-grid .news-card .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.pd-content-section__single .news-grid .news-card .meta time {
  margin-top: 8px;
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 170%;
  color: #25393b;
}
@media (max-width: 768px) {
  .pd-content-section__single .news-grid .news-card .meta time {
    font-size: 16px;
  }
}
.pd-content-section__single .news-grid .news-card .title-jp {
  margin-top: 16px;
  color: #25393b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* ← ここが3行指定 */
  overflow: hidden;
  word-break: break-word;
  font-family: "Shippori Mincho";
  font-weight: 400;
  font-style: "Regular";
  font-size: 18px;
  leading-trim: NONE;
  line-height: 170%;
  letter-spacing: 6%;
  text-align: center;
}
@media (max-width: 768px) {
  .pd-content-section__single .news-grid .news-card .title-jp {
    font-size: 14px;
  }
}
.pd-content-section__single .news-grid .news-card .title-en {
  margin-top: 14.5px;
  color: #25393b;
  text-align: center;
  font-family: "Shippori Mincho";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 30.6px */
  letter-spacing: 1.08px;
}
.pd-content-section__single .news-grid {
  /* タブレットで2列にしたい場合（任意） */
}
@media (max-width: 1024px) {
  .pd-content-section__single .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.pd-content-section__single .news-grid {
  /* SP：1列＋中央寄せ */
}
@media (max-width: 1024px) {
  .pd-content-section__single .news-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    /* 代替: place-items: start center; でもOK */
  }
}/*# sourceMappingURL=style.css.map */