:root {
  --background-white: #f9f4ea;
  --font-white: #fffcfb;
  --main-color: #B19563;
  --white: #ffffff;
  --black: #333333;
  --yellow: #fcee09; 
  --gray: #6c757d;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-shuei-mincho: "dnp-shuei-mincho-pr6", sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2l: 24px;
}
html{
  font-size: 62.5%;
  height: 100%;
}

body{
  background: var(--white);
  color: var(--font-white);
  font-family: var(--font-family-shuei-mincho);
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-family-shuei-mincho);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  font-weight: 500;
}

p {
  line-height: 1.6;
  letter-spacing: 0.28em;
}

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

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* 縦中横（縦書き内の数字を正立表示） */
.tcy {
  text-combine-upright: all;
}

/* 縦書き内の数字を1字ずつ正立表示 */
.vert-num {
  text-orientation: upright;
}

/* ************************************ */
/* ヘッダー */
/* ************************************ */
header {
  background: var(--black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* スクロール時のヘッダー */
header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.hide {
  transform: translateY(-100%);
}

/* TOPページ: PCではヘッダーを初期状態で非表示にし、スクロール後に出現 */
@media (min-width: 1200px) {
  body.home header {
    transform: translateY(-100%);
    background: var(--black);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  body.home header.scrolled-in {
    transform: translateY(0);
  }
}

/* ===================================
 TOPページ 縦書きナビ
=================================== */
.front-vertical-nav {
  display: none;
}

@media (min-width: 1200px) {
  .front-vertical-nav {
    display: block;
    position: fixed;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .front-vertical-nav.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .front-vertical-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .front-vertical-nav-menu li a {
    text-decoration: none;
    color: var(--font-white);
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
  }

  .front-vertical-nav-menu li a:hover {
    color: var(--main-color);
  }
}

.header-container {
  margin: 0 auto;
  padding: 2rem 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  column-gap: 50px;
}

.header-inner .logo-link {
  text-decoration: none;
  cursor: pointer;
}

.header_logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_logo--img {
  margin: 0;
  max-width: 120px;
}

/* ロゴ */
.logo {
  letter-spacing: 0.15rem;
}

.header_logo {
  margin: 0;
}

/* PCナビゲーション */
.header-nav-menu {
  display: flex;
  list-style: none;
  gap: 50px;
}

.header-nav-menu li a {
  text-decoration: none;
  color: var(--font-white);
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.header-nav-menu li a:hover {
  color: var(--main-color);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ハンバーガーメニューボタン */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger-img {
  width: 30px;
  height: auto;
}

.hamburger span {
  display: none;
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active .hamburger-img {
  display: none;
}

.hamburger.active span {
  display: block;
}

.hamburger.active span:nth-child(2) {
  transform: rotate(-45deg) translate(-6px, 7px);
}

.hamburger.active span:nth-child(3) {
  opacity: 0;
}

.hamburger.active span:nth-child(4) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(51, 51, 51, 0.9);
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 100px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-menu ul li {
  padding: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  color: var(--font-white);
  font-size: 1.4rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.mobile-menu ul li a:hover {
  background-color: #f8f9fa;
  color: var(--main-color);
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .header_recruit .main-title {
    font-size: 2.2rem;
  }

  .header_logo--img {
    max-width: 85px;
  }
}
/* ************************************ */
/* フッター */
/* ************************************ */
.footer {
  background: var(--black);
  padding: 40px 0 0;
  top: 100vh;
  width: 100%;
  z-index: 1;
}

.footer-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;
}

/* フッターロゴ */
.footer-inner .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer_logo img {
  width: 80px;
}



/* フッターナビゲーション */
.footer-nav {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 40px;
  padding-left: 0;
}

@media (min-width: 769px) {
  .footer-nav-menu {
    justify-content: center;
    flex-direction: row-reverse;
  }

  .footer-nav-menu li a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}

.footer-nav-menu li a {
  text-decoration: none;
  color: var(--font-white);
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-nav-menu li a:hover {
  color: var(--main-color);
}

/* SNSリンク */
.footer-sns-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 30px 0 10px;
}

.footer-sns-link {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-sns-link:hover {
  opacity: 1;
}

.footer-sns-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* copyright */
.copyright {
  text-align: center;
  padding: 5px 0 20px;
  color: var(--font-white);
  font-size: 1rem;
}

.copyright-link {
  color: var(--font-white);
  text-decoration: none;
  margin-bottom: 1rem;
}

.copyright p {
  margin: 0;
}

/* ************************************ */
/* メインコンテンツ（front-page.php） */
/* ************************************ */
#front_page {
  padding-top: 0!important;
}

main {
  background-image: url('../images/kuromikage.jpg');
  background-repeat: repeat;
  background-size: auto;
  padding: 8rem 0 0;
  position: relative;
  z-index: 0;
}

.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  /* padding: 0 20px; */
}

.section_title {
  text-align: center;
  position: relative;
}

.content-section {
  padding: 80px 40px;
}

.sectionWrapper {
  padding: 90px 40px 80px;
  position: relative;
  overflow: hidden;
}

.section_title h2 {
  margin:0 0 5rem;
}

/* ===================================
 MVスライダー (Swiper)
=================================== */
.mainVisual-wrapper {
  position: relative;
  overflow: hidden;
}

.mv-swiper {
  width: 100%;
  height: 100svh;
}

.mv-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.mv-swiper .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.mv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.5s ease;
  width: 290px;
}

.mv-logo--hidden {
  opacity: 0;
  pointer-events: none;
}

.mv-logo-title {
  margin: 0;
}

.mv-logo-title img {
  width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .mv-swiper {
    height: 100svh;
  }

  .mv-logo {
    width: 280px;
  }

  /* .mv-logo-title img {
    width: 160px;
  } */
}


/* ************************************ */
/* TOP info セクション */
/* ************************************ */
.top-info-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.top-info-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: start;
  font-size: 36px;
  letter-spacing: 0.2em;
  margin: -8rem 0 0;
  flex-shrink: 0;
}

.top-info-content {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .top-info-inner {
    flex-direction: column;
    gap: 60px;
  }

  .top-info-title {
    writing-mode: horizontal-tb;
    font-size: 24px;
    margin-top: 0;
    text-align: center;
    width: 100%;
  }

}

.top-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.top-info-link {
  display: block;
  text-decoration: none;
}

.top-info-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 12px;
}

.top-info-thumb img,
.top-info-thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.top-info-thumb-placeholder {
  background: rgba(255, 255, 255, 0.1);
}

.top-info-link:hover .top-info-thumb img {
  transform: scale(1.05);
}

.top-info-date {
  display: block;
  font-size: 1.2rem;
  color: var(--main-color);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.top-info-item-title {
  font-size: 1.5rem;
  color: var(--font-white);
  margin: 0;
  line-height: 1.6;
  writing-mode: horizontal-tb;
}

/* アーカイブボタン */
.top-info-btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.top-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--font-white);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

.top-info-btn img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.top-info-btn:hover img {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .top-info-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .top-info-inner {
    padding: 0;
  }

  .top-info-btn-wrap {
    justify-content: center;
  }
}

/* ************************************ */
/* TOP store セクション */
/* ************************************ */
.top-store {
  overflow: hidden;
  background-image: url('../images/store/store-mito.jpg');
  background-repeat: no-repeat;
  background-size: auto 65%;
  background-position: right center;
}

.top-store-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 0;
}

.top-store-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: start;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  margin: -8rem 0 0;
  flex-shrink: 0;
}

.top-store-content {
  flex: 1;
  min-width: 0;
}

.top-store-body {
  width: 100%;
}

.top-store-body p {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 0 1.5em;
}

.top-store-body p:last-child {
  margin-bottom: 0;
}

.top-store-btn-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 32px;
}


.text-upright {
  text-orientation: upright;
}

@media (max-width: 1100px) {
  .top-store-inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 0;
  }

  .top-store-title {
    writing-mode: horizontal-tb;
    text-align: center;
    margin-top: 0;
  }

  
  .top-store {
    background-size: 100% auto;
    background-position: bottom center;
    padding-bottom: 55vw;
  }

  .top-store-content {
    width: 100%;
  }

  .top-store-body {
    width: 100%;
    padding: 0;
  }

  .top-store-btn-wrap {
    justify-content: center;
    padding: 0 20px 20px;
    margin-top: 16px;
  }
}
/* 768px以下 */
@media (max-width: 768px) {
  .top-store-title {
    font-size: 2.4rem;
  }

  .top-store-body p {
    font-size: 1.5rem;
  }

}

/* ************************************ */
/* TOP gallery セクション */
/* ************************************ */
.top-gallery {
  padding: 120px 0;
}

.top-gallery-inner {
  position: relative;
}

/* タイトル: スライダー左上にオーバーレイ */
.top-gallery-title {
  position: absolute;
  top: -80px;
  left: max(40px, calc((100% - 1400px) / 2));
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: start;
  font-size: 36px;
  letter-spacing: 0.2em;
  margin: 0;
  z-index: 10;
}

.top-gallery-slider-wrap {
  position: relative;
  overflow: hidden;
}

.gallery-swiper {
  width: calc(100% - 100px);
  margin: 0 50px;
  overflow: visible !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* チラ見せ帯 + 矢印ボタン */
.gallery-peek {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s ease;
}

.gallery-peek:hover {
  background: rgba(255, 255, 255, 0.3);
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

.gallery-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  transition: border-color 0.3s ease;
}

.gallery-peek:hover .gallery-arrow {
  border-color: #333;
}

.gallery-arrow-prev {
  transform: rotate(-135deg) translateX(-2px);
}

.gallery-arrow-next {
  transform: rotate(45deg) translateX(-2px);
}

@media (max-width: 768px) {
  .top-gallery {
    padding: 160px 0 0;
  }

  .top-gallery-title {
    font-size: 20px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: horizontal-tb;
    white-space: nowrap;
  }

  .gallery-swiper {
    width: 100%;
    margin: 0;
  }

  .top-gallery-inner {
    min-height: inherit;
  }

  .gallery-peek {
    top: 0;
    bottom: 0;
    width: 40px;
    height: auto;
    border-radius: 0;
    background: transparent;
    transform: none;
  }

  .gallery-slide img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

/* ************************************ */
/* TOP access セクション */
/* ************************************ */
.top-access-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 0;
}

.top-access-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: start;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  margin: -8rem 0 0;
  flex-shrink: 0;
}

.top-access-content {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 100px;
  row-gap: 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.top-access-store {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  row-gap: 0;
  align-content: start;
}

.top-access-store-name {
  color: var(--main-color);
  font-size: 2rem;
  letter-spacing: 0.3em;
  margin: 0 0 1.6rem;
}

.top-access-info {
  color: var(--font-white);
  margin: 0 0 2.4rem;
}

.top-access-info-row p{
  font-size: 1.5rem;
  margin: 5px 0;
}

.top-access-img {
  margin: 0;
}

.top-access-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .top-access-inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
  }

  .top-access-title {
    writing-mode: horizontal-tb;
    font-size: 2.4rem;
    text-align: center;
    margin: 0;
  }

  .top-access-store-name {
    margin-bottom: 0;
  }

  .top-access-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
  }

  .top-access-store {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    gap: 16px;
  }

  .top-access-info {
    margin: 0;
  }

  .top-access-info-row p{
    font-size: 1.5rem;
  }
}

/* ************************************ */
/* TOP item セクション */
/* ************************************ */
.top-item-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 0;
}

.top-item-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: start;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  margin: -8rem 0 0;
  flex-shrink: 0;
}

.top-item-content {
  flex: 1;
  min-width: 0;
}

.top-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.top-item-link {
  display: block;
  text-decoration: none;
}

.top-item-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 16px;
}

.top-item-thumb img,
.top-item-thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.top-item-thumb-placeholder {
  background: rgba(255, 255, 255, 0.1);
}

.top-item-link:hover .top-item-thumb img {
  transform: scale(1.05);
}

.top-item-caption {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 1.5rem;
  color: var(--main-color);
  line-height: 1.4;
  text-align: right;
  letter-spacing: 0.3em;
}

.top-item-name {
  font-size: 2rem;
  color: var(--font-white);
  text-align: left;
  margin: 0 0 8px;
  letter-spacing: 0.3em;
  line-height: 1.4;
}

.top-item-term {
  font-size: 1.5rem;
  color: var(--font-white);
  margin: 0;
  line-height: 1.6;
}

.top-item-btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .top-item-inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 60px 0 0;
  }

  .top-item-title {
    writing-mode: horizontal-tb;
    font-size: 2.4rem;
    text-align: center;
    width: 100%;
    margin-top: 0;
  }

  .top-item-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .top-item-caption {
    font-size: 1.5rem;
  }

  .top-item-name {
    font-size: 1.8rem;
  }

  .top-item-term {
    font-size: 1.5rem;
  }

  .top-item-btn-wrap {
    justify-content: center;
  }
}

/* ************************************ */
/* TOP about セクション */
/* ************************************ */
.top-about-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 80px 0;
  max-width: 650px;
  margin: 0 auto;
}

/* PC縦書き */
.top-about-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: start;
  font-size: 36px;
  letter-spacing: 0.2em;
  margin: 0;
}

.top-about-body {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.top-about-body p {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 1.5em 0 0;
}

.top-about-body p:first-child {
  margin-right: 0;
}

@media (max-width: 1200px) {
  .top-about-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 60px 0 0;
  }

  .top-about-body {
    writing-mode: horizontal-tb;
  }

  .top-about-title {
    writing-mode: horizontal-tb;
    margin-bottom: 40px;
  }

  .top-about-body p {
    margin: 0 0 1.5em;
  }

  .top-about-body p:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .top-about-title {
    font-size: 2.4rem;
    text-align: center;
    width: 100%;
  }

  .top-about-body p {
    font-size: 1.5rem;
  }
}

/* ************************************ */
/* button */
/* ************************************ */



/* ************************************ */
/* breadcrumb */
/* ************************************ */
.breadcrumb {
  margin: 0;
  padding: 20px 0;
  font-size: 1.2rem;
  border-top: solid 1px #B19563;
  background: var(--background-white);
}

.breadcrumb-list {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  max-width: 1400px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: var(--black);
  font-weight: 400;
}

.breadcrumb-item a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--main-color);
}

.breadcrumb-item.current {
  min-width: 0;
}

.breadcrumb-item.current span {
  color: var(--main-color);
  font-weight: 500;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .breadcrumb {
      font-size: 1rem;
  }
  
  .breadcrumb-item:not(:last-child)::after {
      margin: 0 4px;
  }
}


/* =========================== */

/* page-about */

/* =========================== */


/* =========================== */

/* about-test */

/* =========================== */
.kodawari-wrapper {
  padding: 120px 40px;
}
.new-kodawari-wrapper {
  padding: 120px 40px;
  margin: 200px 0;
}
.new-kodawari-wrapper.new-kodawari05 {
  margin-bottom: 0;
}
.new-kodawari-wrapper .container {
  display: flex;
  justify-content: flex-start;
}
.new-kodawari-wrapper.new-kodawari03 .container,
.new-kodawari-wrapper.new-kodawari05 .container {
  justify-content: flex-end;
}
.new-kodawari01 {
  background-image: url('../images/about/kodawari01.jpg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.new-kodawari02 {
  background-image: url('../images/about/kodawari02.jpg'),url('../images/about/kodawari_back_01.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.new-kodawari03 {
  background-image: url('../images/about/kodawari03.jpg'),url('../images/about/kodawari_back_02.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.new-kodawari04 {
  background-image: url('../images/about/kodawari04.jpg'),url('../images/about/kodawari_back_01.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.new-kodawari05 {
  background-image: url('../images/about/kodawari05.jpg'),url('../images/about/kodawari_back_02.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.new-kodawari-wrapper .kodawari-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.2rem;
  color: var(--font-white);
}
.new-kodawari-wrapper .kodawari-title {
  writing-mode: vertical-rl;
  text-align: start;
  letter-spacing: 0.2em;
  margin: 0;
}

.new-kodawari-wrapper .kodawari-body {
  writing-mode: vertical-rl;
}

.kodawari-title {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
  margin: 0 0 2.4rem;
}

.kodawari-body p {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 0 1.2em;
}

.kodawari-body p:last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .kodawari-wrapper .kodawari-text {
    color: var(--black);
  }
  .new-kodawari02 .kodawari-body p,
  .new-kodawari03 .kodawari-body p,
  .new-kodawari04 .kodawari-body p,
  .new-kodawari05 .kodawari-body p {
    margin: 0 0 0 2em;
  }
  .new-kodawari02 .kodawari-body p:last-child,
  .new-kodawari03 .kodawari-body p:last-child,
  .new-kodawari04 .kodawari-body p:last-child,
  .new-kodawari05 .kodawari-body p:last-child {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .kodawari-wrapper {
    padding: 120px 0 180px;
  }
  .kodawari-wrapper .container {
    padding: 0 20px;
  }
  .kodawari-wrapper .kodawari-text {
    color: var(--font-white);
  }
  /* new-kodawari */
  .new-kodawari-wrapper {
    padding: 150px 0 200px;
    margin: 0;
  }
  .new-kodawari-wrapper .container {
    padding: 0 20px;
    justify-content: flex-start;
  }
  .new-kodawari-wrapper.new-kodawari05 {
    padding-bottom: 200px;
  }
  .new-kodawari01,
  .new-kodawari02,
  .new-kodawari03,
  .new-kodawari04,
  .new-kodawari05 {
    background-position: center bottom;
  }
  .new-kodawari02,
  .new-kodawari03,
  .new-kodawari04,
  .new-kodawari05 {
    background-attachment: scroll;
  }
  .new-kodawari01 {
    border-top: solid 1px #c9caca;
  }
  .new-kodawari-wrapper .kodawari-text {
    writing-mode: horizontal-tb;
    flex-direction: column;
    gap: 0;
  }
  .new-kodawari-wrapper .kodawari-title {
    writing-mode: horizontal-tb;
    text-align: center;
    margin: 0 auto 4rem;
  }
  .new-kodawari-wrapper .kodawari-body {
    writing-mode: horizontal-tb;
  }
  .kodawari-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 4rem;
  }
  .kodawari-body p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}




/* =========================== */

/* about-message */

/* =========================== */

.about-message {
  background-color: var(--background-white);
  padding: 80px 0;
}

.about-message-inner {
  text-align: center;
}

.about-message-title {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
  color: var(--main-color);
  margin: 0 0 2.4rem;
}

.about-message-body p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--black);
  margin: 0 0 1.2em;
}

.about-message-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-message {
    padding: 60px 0;
  }

  .about-message-title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}


/* =========================== */

/* archive-items */

/* =========================== */

.archive-items .items-section {
  background-color: var(--background-white);
  padding: 0;
}

.archive-items .items-special-section {
  background-color: var(--background-white);
  padding: 0 0 80px;
}


.archive-items .items-category-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--black);
}

/* グリッド */
.items-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.items-grid--center {
  grid-template-columns: 1fr;
  max-width: 320px;
  margin: 0 auto;
}

.archive-items .items-special-section .items-grid--center {
  max-width: 640px;
}

/* カード */
.items-card {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.items-card:hover {
  opacity: 0.85;
}

/* サムネイル */
.items-card-thumb {
  position: relative;
  overflow: hidden;
}

.items-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.items-card-thumb-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: #e0d8cc;
}

.items-card-caption {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 1.5rem;
  color: var(--main-color);
  line-height: 1.4;
  text-align: right;
  letter-spacing: 0.3em;
}

/* メタ */
.items-card-meta {
  padding: 10px 0 0;
}

.items-card-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  margin: 0 0 8px;
  letter-spacing: 0.3em;
  line-height: 1.4;
}

.items-card-term {
  font-size: 1.5rem;
  color: var(--black);
  margin: 0;
}

/* ポップアップモーダル */
.items-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.items-modal.is-open {
  display: flex;
}

.items-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.items-modal-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 90%;
  background: var(--white);
  padding: 40px 32px 32px;
  text-align: center;
}

.items-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
  padding: 0;
}

.items-modal-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.items-modal-title {
  font-size: 2rem;
  color: var(--black);
  letter-spacing: 0.15em;
  margin: 16px 0 8px;
}

.items-modal-term {
  font-size: 1.5rem;
  color: var(--black);
  letter-spacing: 0.15em;
  margin: 0;
}

.archive-items .items-special-section .sectionWrapper {
  padding-top: 40px;
}

/* SP */
@media (max-width: 768px) {
  .archive-items .items-section {
    padding: 0;
  }

  .archive-items .items-special-section {
    padding: 0 0 40px;
  }

  .archive-items .items-special-section .sectionWrapper {
    padding-bottom: 20px;
  }

  .items-card-caption {
    font-size: 1.5rem;
    right: 6px;
  }

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

  .items-grid--center {
    grid-template-columns: 1fr;
  }

  .items-card-title {
    font-size: 1.5rem;
  }

  .items-card-term {
    font-size: 1.5rem;
  }

  .items-modal-content {
    padding: 36px 20px 24px;
  }

  .items-modal-title {
    font-size: 1.8rem;
  }

}



/* =========================== */

/* archive-information */

/* =========================== */
.archive-information {
  background-color: var(--background-white);
}

/* .archive-information .sectionWrapper {
  padding: 60px 0;
} */

/* レイアウト（PC: 投稿3カラム + サイドバー） */
.info-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
  align-items: start;
}

/* 投稿グリッド */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.info-card-link:hover .info-card-title {
  opacity: 0.7;
  transition: opacity 0.2s;
}

/* サムネイル（正方形） */
.info-card-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.info-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #e1e1e1;
}

.info-card-meta {
  margin-top: 10px;
}

.info-card-date {
  display: block;
  font-size: 1.5rem;
  color: var(--main-color);
  margin-bottom: 6px;
  letter-spacing: 0.28em;
}

.info-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.28em;
  line-height: 1.6;
  margin: 0;
}

.info-no-posts {
  font-size: 1.5rem;
  color: var(--black);
}

/* ページネーション */
.info-pagination {
  margin-top: 50px;
  text-align: center;
}

.info-pagination ul.page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.info-pagination .page-numbers li a.page-numbers,
.info-pagination .page-numbers li span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  font-size: 1.4rem;
  color: var(--black);
  text-decoration: none;
  border: 1px solid #d8d8d8;
  transition: background 0.2s, color 0.2s;
}

.info-pagination .page-numbers li span.current {
  background: var(--main-color);
  color: var(--white);
  border-color: var(--main-color);
}

.info-pagination .page-numbers li a.page-numbers:hover {
  background: var(--color-section-bg);
}

.info-pagination .page-numbers li span.dots {
  border: none;
  min-width: auto;
}

/* サイドバー */
.info-sidebar {
  position: sticky;
  top: 100px;
  align-self: normal;
}

.info-archive-heading {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  margin: 0 0 0;
}

.info-archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-archive-list li {
  border-bottom: 1px solid #e1e1e1;
}

.info-archive-list li a {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  color: var(--black);
  text-decoration: none;
  padding: 10px 4px;
  transition: color 0.2s;
}

.info-archive-list li a:hover {
  color: var(--main-color);
}

.info-archive-list li.current a {
  color: var(--main-color);
  font-weight: 600;
}

.info-date-heading {
  font-size: 1.5rem;
  color: var(--black);
  margin: 0 0 24px;
}


/* SP */
@media (max-width: 768px) {
  .info-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .info-card-date {
    font-size: 1.5rem;
  }

  .info-card-title {
    font-size: 1.5rem;
  }

  .info-sidebar {
    position: static;
  }
}

/* =========================== */

/* single-information */

/* =========================== */

.single-information {
  background-color: var(--background-white);
}

.single-information .sectionWrapper {
  padding-bottom: 120px;
}

.single-information .container {
  max-width: 1000px;
}

/* PC: 2カラムレイアウト */
.single-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 750px) 170px;
  gap: 60px;
  align-items: start;
}

/* 投稿ヘッダー */
.single-info-date {
  display: block;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 12px;
}

.single-info-title {
  font-size: 1.8rem;
  color: var(--black);
  font-weight: 600;
  margin: 0 0 40px;
  line-height: 1.6;
  border-bottom: solid 1px #eee;
  padding-bottom: 1em;
}

/* 投稿本文 */
.single-info-content {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 1.8;
}

.single-info-content p {
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 1em;
}

.single-info-content img {
  max-width: 100%;
  height: auto;
}

/* 一覧に戻るボタン */
.single-info-back {
  margin-top: 80px;
}

.single-info-back a {
  font-size: 1.5rem;
  color: var(--main-color);
  letter-spacing: 0.3em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-info-back a:hover {
  opacity: 0.7;
}

/* SP */
@media (max-width: 768px) {
  .single-info-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-info-title {
    font-size: 1.6rem;
  }

  .single-info-content,
  .single-info-content p {
    font-size: 1.5rem;
  }

  .info-sidebar {
    position: static;
  }

  .single-info-back {
    margin-top: 60px;
    text-align: center;
  }
}

/* =========================== */






/* =========================== */

/* page-store-info */

/* =========================== */

.page-store-info .store-section {
  background-color: var(--background-white);
  padding: 80px 0;
}

.page-store-info .container {
  max-width: 1200px;
}

.store-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.store-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

/* 店舗情報（左側） */
.store-title {
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--main-color);
  letter-spacing: 0.1em;
  margin: 0 0 24px;
  line-height: 1.4;
}

.store-title-en {
  font-size: 3.6rem;
  letter-spacing: 0.08em;
}

.store-detail {
  margin-bottom: 32px;
}

.store-detail p {
  font-size: 1.5rem;
  color: var(--black);
  margin: 0;
}

.store-img {
  margin: 0;
  max-width: 500px;
}

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

/* マップ（右側） */
.store-map {
  width: 100%;
}

.store-map iframe {
  width: 100%;
  height: 560px;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .page-store-info .store-section {
    padding: 0 0 60px;
  }

  .store-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }

  .store-title {
    font-size: 2.8rem;
  }

  .store-title-en {
    font-size: 2rem;
  }

  .store-detail p {
    font-size: 1.5rem;
  }

  .store-map {
    order: 1;
  }

  .store-info {
    order: 0;
  }

  .store-img {
    max-width: 100%;
  }

  .store-map iframe {
    height: 300px;
  }
}




/* =========================== */

/* page-for-business */

/* =========================== */
.page-for-business {
  background-color: var(--background-white);
}

/* =========================== */
/* new-houjin */
/* =========================== */
.new-houjin-wrapper {
  padding: 120px 0;
}
.new-houjin-wrapper.houjin01 {
  padding: 60px 0;
}
.new-houjin-wrapper.houjin02,
.new-houjin-wrapper.houjin03,
.new-houjin-wrapper.houjin04 {
  padding: clamp(40px, 7vw, 100px) 0;
}
.new-houjin-wrapper .container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0 40px;
}
.new-houjin-wrapper.houjin01 .kodawari-text {
  writing-mode: horizontal-tb;
}
.new-houjin-wrapper .kodawari-text,
.new-houjin-wrapper .kodawari-body {
  color: var(--black);
}
.houjin01 {
  background-image: url('../images/business/houjin01.jpg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.houjin02 {
  background-image: url('../images/business/houjin02.jpg'),url('../images/business/houjin_back_01.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.houjin03 {
  background-image: url('../images/business/houjin03.jpg'),url('../images/business/houjin_back_02.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.houjin04 {
  background-image: url('../images/business/houjin04.jpg'),url('../images/business/houjin_back_03.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .new-houjin-wrapper.houjin01 .kodawari-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.2em;
  }
  .new-houjin-wrapper.houjin03 .kodawari-text {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .new-houjin-wrapper.houjin01 {
    padding: 80px 0 0;
  }
  .new-houjin-wrapper.houjin02,
  .new-houjin-wrapper.houjin03,
  .new-houjin-wrapper.houjin04 {
    padding: 60px 0 0;
  }
  .new-houjin-wrapper .container {
    padding: 0 30px;
  }
  .houjin01,
  .houjin02,
  .houjin03,
  .houjin04 {
    background: none;
  }
  .houjin01::after {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    background-image: url('../images/business/houjin01.jpg');
    background-size: 120%;
    background-position: center right;
    background-repeat: no-repeat;
  }
  .houjin02::after {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    background-image: url('../images/business/houjin02.jpg');
    background-size: 130%;
    background-position: center right;
    background-repeat: no-repeat;
  }
  .houjin03::after {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    background-image: url('../images/business/houjin03.jpg');
    background-size: 150%;
    background-position: center left;
    background-repeat: no-repeat;
  }
  .houjin04::after {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    background-image: url('../images/business/houjin04.jpg');
    background-size: 110%;
    background-position: center right;
    background-repeat: no-repeat;
  }
}

/* business-flow */
.business-flow {
  background-color: var(--background-white);
  padding: 0 0 60px;
}

.business-flow-title {
  margin-bottom: 4rem;
  color: var(--black);
}

.business-flow-img {
  margin-bottom: 1.6rem;
}

.business-flow-img img {
  width: 80%;
  margin: 0 auto;
}

.business-flow-lead {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--black);
  text-align: right;
  margin: 0 0 10rem;
  letter-spacing: 0.1em;
}

.business-flow-body {
  text-align: center;
  color: var(--black);
}

@media (max-width: 768px) {
  .business-flow {
    padding: 0 0 60px;
  }

  .business-flow-lead {
    text-align: center;
    margin-bottom: 4rem;
  }

  .business-flow-title {
    text-align: center;
  }

  .business-flow-img img {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
}



/* ************************************ */

/* 404.php */

/* ************************************ */
.page-404 {
  background-color: var(--background-white);
  text-align: center;
  height: 80vh;
}

.page-404,
.page-404 h1,
.page-404 p {
  color: var(--black);
}

.page-404 h1 {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}

.page-404 p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

.page-404 .return-link {
  color: var(--main-color);
  font-size: 1.5rem;
}

/* =========================== */

/* contact-btn */

/* =========================== */
.contact-btn-wrap .contact-btn-title {
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0;
}

.contact-btn-wrap p {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 400;
}

.contact-btn-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-btn-link .btn-link {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--main-color);
  padding: 7px 0;
  text-align: center;
  outline: none;
  transition: color 0.3s ease;
  width: 100%;
  color: var(--main-color);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 10px 0 0;
  letter-spacing: 0.3em;
}

.contact-btn-link .btn-link::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  transition: top 0.3s ease;
  z-index: 0;
}

.contact-btn-link .btn-link:hover::before {
  top: 0;
}

.contact-btn-link .btn-link:hover {
  color: var(--font-white);
}

.contact-btn-link .btn-link span {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .contact-btn-title {
    font-size: 1.6rem;
  }

  .contact-btn-wrap p {
    font-size: 1.4rem;
  }

  .contact-btn-link .btn-link {
    font-size: 1.2rem;
  }
}


/* ************************************ */

/* page-fv.php */

/* ************************************ */
.page-fv-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/kuromikage.jpg');
  background-repeat: repeat;
  background-size: auto;
  padding: 80px 40px 60px;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 200px;
}

.page-fv-header__title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 0;
  color: var(--font-white);
}

/* テキストエリア */
.page-fv-header__text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-fv-header {
    padding: 0 20px;
    min-height: 150px;
  }

  .page-fv-header__title {
    writing-mode: horizontal-tb;
    font-size: 2rem;
    line-height: 1.6;
  }

  .page-fv-header__text {
    padding-bottom: 24px;
  }
}


/* ************************************ */
/* レスポンシブデザイン */
/* ************************************ */
@media (max-width: 1250px) {
  /* ***** header ***** */
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-container {
    padding: 0 30px;
    justify-content: space-between;
  }

  .nav_entry {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }

  main {
    padding: 8rem 0 0;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 1.5rem;
  }
  
  .pc-only {
    display: none;
  }
  
  .sp-only {
    display: block;
  }

  /* ***** footer ***** */
  /* フッターモバイル対応 */
  .footer-container {
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 15px;
  }

  .footer-nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    padding-top: 1rem;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  .footer-nav-menu li {
    width: 100%;
  }

  .footer-nav-menu li a {
    display: block;
    padding: 5px 0;
  }

  .footer-copyright {
    margin-top: 20px;
  }

  .sectionWrap {
    padding: 10px 0 0;
  }

  .sectionWrapper {
    padding: 60px 30px;
  }

  .section_title {
    font-size: 2.4rem;
  }

}


/* ========== SCROLL ANIMATION ========== */
.js-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-up--delay-1 { transition-delay: 0.12s; }
.js-fade-up--delay-2 { transition-delay: 0.24s; }