@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #5a4d45;
  background-color: #fdfcf8;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

ul {
  list-style: none;
}

.text-center {
  text-align: center;
}

.is-pc {
  display: flex;
}
@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

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

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}
.header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  z-index: 210;
  border-bottom: 1px solid rgba(212, 163, 115, 0.2);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 20px;
  }
}
.header__logo {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  line-height: 1;
}
.header__logo a {
  display: block;
  color: #5a4d45;
}
.header__logo-en {
  font-size: 0.9rem;
  display: block;
  color: #d4a373;
}
@media (max-width: 768px) {
  .header__logo-en {
    font-size: 0.65rem;
  }
}
.header__logo-jp {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}
@media (max-width: 768px) {
  .header__logo-jp {
    font-size: 1.1rem;
  }
}
.header__nav {
  align-items: center;
  gap: 30px;
}
.header__list {
  display: flex;
  gap: 24px;
}
.header__link {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #5a4d45;
  transition: 0.3s;
}
.header__link:hover::after {
  width: 100%;
}
.header__link-jp {
  font-size: 0.7rem;
  font-family: "Noto Sans JP", sans-serif;
}

body.admin-bar .header {
  top: 32px;
}
@media (max-width: 768px) {
  body.admin-bar .header {
    top: 46px;
  }
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 201;
}
.hamburger__line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #5a4d45;
  transition: 0.4s;
  left: 0;
}
.hamburger__line:nth-of-type(1) {
  top: 0;
}
.hamburger__line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__line:nth-of-type(3) {
  bottom: 0;
}
.hamburger--active .hamburger__line:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
.hamburger--active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger--active .hamburger__line:nth-of-type(3) {
  top: 50%;
  transform: rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #d4a373;
  z-index: 200;
  transform: translateY(-100%);
  transition: 0.4s;
  padding: 0;
  padding-top: 80px;
  padding-bottom: 70px;
}
@media (max-width: 768px) {
  .drawer {
    padding-top: 60px;
  }
}
.drawer {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  overflow-y: auto;
}
.drawer::before {
  content: "";
  position: absolute;
  bottom: 100px;
  right: -20px;
  font-family: "Noto Serif JP", serif;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}
.drawer--active {
  transform: translateY(0);
}
.drawer__nav {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 0;
}
.drawer__list {
  margin-bottom: 24px;
}
.drawer__item {
  margin-bottom: 10px;
}
.drawer__link {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 20px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .drawer__link {
    font-size: 1.2rem;
    padding: 5px 16px;
  }
}
.drawer__link-jp {
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .drawer__link-jp {
    font-size: 0.7rem;
  }
}

.body--fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.header__btn,
.drawer__btn {
  background-color: #06c755;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.header__btn:hover,
.drawer__btn:hover {
  background-color: rgb(8.4341463415, 247.5658536585, 106.3170731707);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.header__btn .fa-line,
.drawer__btn .fa-line {
  font-size: 1.3em;
  transform: translateY(-1px);
}

.drawer__btn {
  margin: 10px auto 0;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #ffffff;
  color: #d4a373;
}
.drawer__btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #d4a373;
}

.header__btn {
  font-size: 0.9rem;
}

.footer {
  background-color: #5a4d45;
  color: rgba(255, 255, 255, 0.6);
  padding: 30px 0;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .footer {
    padding: 24px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
}
.footer__nav {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer__nav {
    margin-bottom: 20px;
  }
}
.footer__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 12px;
  }
}
.footer__item a {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .footer__item a {
    font-size: 0.8rem;
  }
}
.footer__item a:hover {
  opacity: 0.7;
}
.footer__sub-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .footer__sub-list {
    flex-direction: row;
    gap: 16px;
    font-size: 0.7rem;
  }
}
.footer__sns {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.footer__sns a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s, transform 0.3s;
}
.footer__sns a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  opacity: 1;
}
@media (max-width: 768px) {
  .footer__sns {
    display: none;
  }
}

.fixed-nav {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.14);
}
.fixed-nav__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 106px;
  background-color: #06c755;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  letter-spacing: 0.02em;
  transition: background-color 0.25s ease, transform 0.25s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.fixed-nav__link:first-child {
  border-top: none;
}
.fixed-nav__link:hover {
  background-color: #04b049;
  transform: translateX(-4px);
  opacity: 1;
}
.fixed-nav__link:nth-child(3) {
  background-color: #e4405f;
}
.fixed-nav__link:nth-child(3):hover {
  background-color: #cc2d4c;
  transform: translateX(-4px);
  opacity: 1;
}
.fixed-nav__link:nth-child(4) {
  background-color: #fff;
  color: #5a4d45;
}
.fixed-nav__link:nth-child(4):hover {
  background-color: #f5f5f0;
  transform: translateX(-4px);
  opacity: 1;
}
.fixed-nav__link:nth-child(4) i {
  color: #4285f4;
}
.fixed-nav__link i {
  font-size: 1.75rem;
  margin-bottom: 6px;
  line-height: 1;
}
@media (max-width: 768px) {
  .fixed-nav {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    transform: none;
    flex-direction: row;
    gap: 0;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.12);
  }
  .fixed-nav__link {
    flex: 1;
    height: 64px;
    border-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.58rem;
    line-height: 1.35;
    transform: none;
  }
  .fixed-nav__link:first-child {
    border-left: none;
  }
  .fixed-nav__link:hover {
    transform: none;
    background-color: #04b049;
    opacity: 1;
  }
  .fixed-nav__link i {
    font-size: 1.45rem;
    margin-bottom: 3px;
  }
  .fixed-nav__link:nth-child(3) {
    background-color: #e4405f;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  .fixed-nav__link:nth-child(3):hover {
    background-color: #cc2d4c;
    opacity: 1;
    transform: none;
  }
  .fixed-nav__link:nth-child(4) {
    background-color: #fff;
    color: #5a4d45;
    border-left: 1px solid rgba(90, 77, 69, 0.15);
  }
  .fixed-nav__link:nth-child(4):hover {
    background-color: #f5f5f0;
    opacity: 1;
    transform: none;
  }
  .fixed-nav__link:nth-child(4) i {
    color: #4285f4;
  }
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #5a4d45;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.page-top::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: 5px;
  margin-bottom: 2px;
}
.page-top::after {
  content: "TOP";
  font-size: 9px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.page-top:hover {
  background-color: #d4a373;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.4);
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .page-top {
    bottom: 84px;
    width: 46px;
    height: 46px;
    right: 10px;
  }
}

.cta-area {
  text-align: center;
  margin-top: 60px;
  background-color: #d4a373;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h10v20H0z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
  color: #ffffff;
  padding: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}
@media (max-width: 768px) {
  .cta-area {
    margin-top: 30px;
    padding: 28px 20px;
    border-radius: 8px;
  }
}
.cta-area p {
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .cta-area p {
    margin-bottom: 20px;
    font-size: 0.88rem;
    line-height: 1.8;
  }
}
.cta-area p strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cta-area p strong {
    font-size: 1rem;
    margin-bottom: 6px;
  }
}
.cta-area .btn--primary {
  background-color: #ffffff;
  color: #d4a373;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .cta-area .btn--primary {
    padding: 14px 32px;
    font-size: 0.9rem;
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
}
.cta-area--center {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(212, 163, 115, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 163, 115, 0);
  }
}
.cta-news-float {
  position: fixed;
  bottom: 50px;
  right: 96px;
  z-index: 99;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background-color: #d4a373;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.25s ease;
  animation: cta-pulse 2.6s ease-out infinite;
}
.cta-news-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 28px rgba(212, 163, 115, 0.55);
  background-color: #c8935e;
  animation: none;
  opacity: 1;
}
.cta-news-float__icon {
  font-size: 2.2rem;
  line-height: 1;
}
.cta-news-float__text {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .cta-news-float {
    width: 76px;
    height: 76px;
    bottom: 148px;
    right: 10px;
    gap: 2px;
    padding: 6px;
    box-shadow: 0 4px 14px rgba(212, 163, 115, 0.4);
  }
  .cta-news-float__icon {
    font-size: 1.15rem;
    line-height: 1;
  }
  .cta-news-float__text {
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}
@media (max-width: 768px) {
  .btn {
    padding: 14px 32px;
    min-width: auto;
    font-size: 0.9rem;
  }
}
.btn--primary {
  background-color: #06c755;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}
.btn--white {
  background-color: #ffffff;
  color: #5a4d45;
}
.btn--outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  margin-left: 16px;
}
@media (max-width: 768px) {
  .btn--outline {
    margin-left: 0;
    margin-top: 16px;
  }
}
.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--back {
  border: 1px solid #5a4d45;
  color: #5a4d45;
  background-color: transparent;
}
.btn--back:hover {
  background-color: #5a4d45;
  color: #ffffff;
  opacity: 1;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cta-area {
  text-align: center;
  margin-top: 60px;
  background-color: #d4a373;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h10v20H0z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
  color: #ffffff;
  padding: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}
.cta-area p {
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 2;
}
.cta-area p strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}
.cta-area--center {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #5a4d45;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(var(--vh, 1vh) * 80);
    padding: 60px 0;
  }
}
.hero__content {
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 50px 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .hero__content {
    padding: 24px 20px;
    margin: 0 16px;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  background-size: cover;
  background-position: center;
  z-index: -1;
  background-image: url("/assets/img/index/hero-1.jpg");
}
.hero__name {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(90, 77, 69, 0.4);
  display: inline-block;
  padding-top: 10px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .hero__name {
    font-size: 0.75rem;
    padding-top: 6px;
  }
}
.hero__catchcopy {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero__catchcopy {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}
.hero__catchcopy-en {
  font-size: 1.2rem;
  display: block;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero__catchcopy-en {
    font-size: 0.75rem;
    margin-top: 4px;
  }
}
.hero__info {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(90, 77, 69, 0.15);
  display: inline-block;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 8px;
}
@media (max-width: 768px) {
  .hero__info {
    font-size: 0.8rem;
    padding: 12px 16px;
    width: 90%;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.hero__info-date {
  font-size: 3rem;
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .hero__info-date {
    font-size: 1.4rem;
    margin-bottom: 2px;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 50px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hero__scroll {
    bottom: 16px;
  }
}
.hero__scroll span {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateX(-50%) rotate(45deg);
  animation: bounce 3.5s infinite; /* Animation duration increased for slower movement */
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0) rotate(45deg);
  }
  40% {
    transform: translateX(-50%) translateY(-10px) rotate(45deg); /* Reduced bounce height */
  }
  60% {
    transform: translateX(-50%) translateY(-5px) rotate(45deg); /* Reduced bounce height */
  }
}
.section {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
.section__head {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .section__head {
    margin-bottom: 40px;
  }
}
.section__en {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 4.5rem;
  color: rgba(212, 163, 115, 0.2);
  line-height: 1;
  margin-bottom: -15px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section__en {
    font-size: 3rem;
    margin-bottom: -20px;
  }
}
.section__jp {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  color: #5a4d45;
  font-weight: 700;
  position: relative;
  z-index: 1;
  display: inline-block;
}
@media (max-width: 768px) {
  .section__jp {
    font-size: 1.3rem;
  }
}
.section__jp::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4a373;
  margin: 20px auto 0;
}
@media (max-width: 768px) {
  .section__jp::after {
    width: 40px;
    margin: 12px auto 0;
  }
}
.section__body {
  max-width: 1000px;
  margin: 0 auto;
}
.section__body p {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section__body p {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
}
.section--concept .section__body p {
  font-size: 1.05rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .section--concept .section__body p {
    font-size: 0.9rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
  .section--concept .section__body p br {
    display: none;
  }
}
.section__lead {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .section__lead {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
}

.recruit-badge {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffffff;
  background-color: #d4a373;
  border-radius: 100px;
  padding: 12px 36px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(212, 163, 115, 0.35);
  animation: badge-pulse 2.5s ease-in-out infinite;
}
@media (max-width: 768px) {
  .recruit-badge {
    font-size: 0.8rem;
    padding: 10px 24px;
    letter-spacing: 0.08em;
  }
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(212, 163, 115, 0.35);
  }
  50% {
    box-shadow: 0 4px 24px rgba(212, 163, 115, 0.6);
  }
}
.section--concept {
  background-color: #ffffff;
}
.section--salon-image {
  background-color: #f5f5f0;
  position: relative;
}
.section--salon-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  transform: translateY(-99%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.section--guest {
  background-color: #f5f5f0;
}
.section--stylist {
  background-color: #ffffff;
}
.section--profile {
  background-color: #f5f5f0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4c8be' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.section--access {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cccccc' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M0 0h20v1H0zM0 4h20v1H0zM0 8h20v1H0zM0 12h20v1H0zM0 16h20v1H0z'/%3E%3C/g%3E%3C/svg%3E");
  position: relative;
}
.section--access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  transform: translateY(-99%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f5f5f0'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.section--privacy {
  background-color: #fdfcf8;
  opacity: 1;
  transform: none;
}
.section--privacy .news-article__content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 60px 80px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .section--privacy .news-article__content {
    padding: 30px 20px;
  }
}
.section--privacy .news-article__content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  margin: 48px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4a373;
  color: #5a4d45;
}
.section--privacy .news-article__content h2:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .section--privacy .news-article__content h2 {
    font-size: 1.2rem;
    margin: 32px 0 16px;
  }
}
.section--privacy .news-article__content h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 3px solid #d4a373;
}
@media (max-width: 768px) {
  .section--privacy .news-article__content h3 {
    font-size: 1rem;
    margin: 24px 0 10px;
  }
}
.section--privacy .news-article__content p {
  margin-bottom: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  .section--privacy .news-article__content p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}
.section--privacy .news-article__content ul, .section--privacy .news-article__content ol {
  margin: 16px 0;
  padding-left: 0;
}
.section--privacy .news-article__content ul li, .section--privacy .news-article__content ol li {
  margin-bottom: 8px;
  line-height: 1.8;
  list-style: none;
}

.parallax-image {
  width: 100%;
  height: 450px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .parallax-image {
    height: 250px;
    background-attachment: scroll;
  }
}

.profile-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
    gap: 24px;
  }
}
.profile-card__image {
  flex: 0 0 360px;
}
@media (max-width: 768px) {
  .profile-card__image {
    flex: auto;
    width: 80%;
    max-width: 300px;
  }
}
.profile-card__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 12px 12px 0 rgba(212, 163, 115, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .profile-card__image img {
    box-shadow: 8px 8px 0 rgba(212, 163, 115, 0.15);
  }
}
.profile-card__image:hover img {
  box-shadow: 16px 16px 0 rgba(212, 163, 115, 0.2);
  transform: translate(-2px, -2px);
}
.profile-card__content {
  flex: 1;
}
@media (max-width: 768px) {
  .profile-card__content {
    text-align: center;
  }
}
.profile-card__name {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 1px solid #d4a373;
  padding-bottom: 10px;
  display: inline-block;
}
@media (max-width: 768px) {
  .profile-card__name {
    font-size: 1.4rem;
  }
}
.profile-card__role {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  margin-left: 15px;
  color: #d4a373;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .profile-card__role {
    font-size: 0.8rem;
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}
.profile-card__desc {
  line-height: 2.2;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .profile-card__desc {
    text-align: left;
    font-size: 0.88rem;
    line-height: 2;
  }
  .profile-card__desc br {
    display: none;
  }
}
.profile-card__sns {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .profile-card__sns {
    margin-top: 20px;
  }
}
.profile-card__sns .btn--primary {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}
.profile-card__sns .btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.guest-card {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-direction: row;
  max-width: 1000px;
  margin: 0 auto;
}
.guest-card:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .guest-card {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .guest-card:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.guest-card__img {
  flex: 1.3;
  width: 55%;
}
@media (max-width: 768px) {
  .guest-card__img {
    width: 100%;
  }
}
.guest-card__text {
  flex: 1;
  width: 45%;
}
@media (max-width: 768px) {
  .guest-card__text {
    width: 100%;
  }
}
.guest-card__text h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .guest-card__text h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    text-align: center;
  }
}
.guest-card__text p {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .guest-card__text p {
    margin-bottom: 16px;
    font-size: 0.9rem;
  }
}
.guest-card__text ul {
  list-style: none;
  padding-left: 0;
}
.guest-card__text ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
}
.guest-card__text ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.guest-card__img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}
.guest-card__img:hover img {
  transform: scale(1.02);
}
.guest-card--spaced {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .guest-card--spaced {
    margin-top: 50px;
  }
}

.guest-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .guest-heading {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.feature-list {
  display: flex;
  gap: 30px;
  flex-direction: row;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .feature-list {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
}
.feature-list__item {
  flex: 1;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-list__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .feature-list__item {
    flex-direction: row;
    align-items: center;
  }
  .feature-list__item:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
}
.feature-list__item p {
  padding: 20px;
  margin-bottom: 0;
  flex-grow: 1;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .feature-list__item p {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}
.feature-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  background-color: rgba(212, 163, 115, 0.1);
  color: #d4a373;
  font-size: 2.4rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .feature-list__icon {
    width: 80px;
    height: auto;
    min-height: 70px;
    font-size: 1.8rem;
  }
}

.guest-gallery {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .guest-gallery {
    margin-top: 40px;
  }
}
.guest-gallery__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  color: rgba(212, 163, 115, 0.5);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .guest-gallery__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
.guest-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .guest-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.guest-gallery__item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.guest-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.guest-gallery__item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .guest-gallery__item img {
    height: 160px;
  }
}
.guest-gallery__item:hover img {
  transform: scale(1.05);
}
.guest-gallery__item p {
  padding: 15px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .guest-gallery__item p {
    padding: 10px;
    font-size: 0.8rem;
  }
}

.stylist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
}
@media (max-width: 768px) {
  .stylist-grid {
    grid-template-columns: 1fr;
  }
}

.stylist-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .stylist-item {
    padding: 24px 20px;
  }
}
.stylist-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.stylist-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: rgba(212, 163, 115, 0.1);
  border-radius: 50%;
  font-size: 2.2rem;
  color: #d4a373;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.stylist-item:hover .stylist-item__icon {
  background-color: #d4a373;
  color: #ffffff;
}
.stylist-item h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.stylist-item ul {
  text-align: left;
  display: inline-block;
}
.stylist-item ul li {
  margin-bottom: 8px;
  padding-left: 1.2em;
  position: relative;
}
.stylist-item ul li::before {
  content: "•";
  color: #d4a373;
  position: absolute;
  left: 0;
}

.access-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f5f5f0;
  padding: 40px 50px;
  border-radius: 12px;
  border: 1px solid rgba(212, 163, 115, 0.15);
}
@media (max-width: 768px) {
  .access-info {
    padding: 24px 20px;
  }
}
.access-info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 24px;
  align-items: baseline;
}
@media (max-width: 768px) {
  .access-info dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.access-info dl dt {
  font-family: "Noto Serif JP", serif;
  color: #d4a373;
  font-size: 1rem;
  font-weight: 700;
}
.access-info dl dd {
  font-size: 1rem;
  margin-bottom: 10px;
}
.access-info__highlight {
  font-weight: bold;
  border-bottom: 2px solid #d4a373;
  display: inline-block;
}
.access-info .access-link {
  margin-top: 40px;
}
.access-info .access-link a {
  border-bottom: 1px solid #5a4d45;
  padding-bottom: 4px;
}

.access-environment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .access-environment {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}
.access-environment__item {
  text-align: center;
}
.access-environment__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .access-environment__item img {
    height: 160px;
  }
}
.access-environment__item p {
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .access-environment__item p {
    font-size: 0.85rem;
  }
}

.access-map {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .access-map {
    margin-top: 30px;
  }
}
.access-map iframe {
  width: 100%;
  vertical-align: bottom;
  filter: grayscale(0.2);
}
@media (max-width: 768px) {
  .access-map iframe {
    height: 300px;
  }
}

/* News Tab */
.news-tab {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.news-tab__item {
  padding: 10px 30px;
  border: 1px solid #d4a373;
  color: #d4a373;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 0.9rem;
}
.news-tab__item:hover, .news-tab__item.is-active {
  background-color: #d4a373;
  color: #fff;
}

/* News Section Grid Layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 1.5rem;
}
@media (min-width: 769px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.news-card {
  /* 投稿日から7日以内の記事にNEWラベルを表示 */
}
.news-card.is-new::after {
  content: "NEW";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #c53030;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
}
.news-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 0;
  background-color: #f5f5f5;
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card {
  /* カード全体ホバー時に画像を拡大 */
}
.news-card:hover .news-card__thumb img {
  transform: scale(1.05);
}
.news-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .news-card__body {
    padding: 14px 16px;
  }
}
.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
}
.news-card__category {
  font-size: 0.7rem;
  font-weight: 500;
  color: #fff;
  background-color: #888;
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.news-card__category.category-news {
  background-color: #555;
}
.news-card__category.category-blog {
  background-color: #a08e7e;
}
.news-card__category.category-hairsalon {
  background-color: #b07d62;
}
.news-card__category.category-sharesalon {
  background-color: #7a9e9f;
}
.news-card__date {
  display: block;
  font-size: 0.78rem;
  color: #999;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .news-card__date {
    margin-top: 6px;
  }
}
.news-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-card__title {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
.news-card__title[href]:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.news-card__title {
  /* リンク範囲をカード全体に拡張 */
}
.news-card__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.news-card__excerpt {
  display: none;
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .news-card__excerpt {
    display: block;
  }
}
.news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.news-card__tags a {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #888;
  background-color: #f5f5f0;
  padding: 2px 10px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}
.news-card__tags a:hover {
  background-color: #d4a373;
  color: #fff;
}
.news-card {
  /* フィルタリング時のアニメーション */
}
.news-card.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Page Header (Archive Page) */
.page-header {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: 80px;
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: -1;
}
.page-header__title {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.page-header__subtitle {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  letter-spacing: 0.1em;
}
.page-header__title-en {
  color: #ffffff;
  margin-bottom: 0;
}
.page-header__title-jp {
  color: #ffffff;
  font-size: 2rem;
}
.page-header__title-jp::after {
  display: none;
}
@media (max-width: 768px) {
  .page-header {
    height: 220px;
    margin-top: 60px;
  }
  .page-header__title {
    font-size: 2rem;
  }
}

/* Pagination */
.pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.pagination__item:hover, .pagination__item.current {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* Table of Contents */
.toc {
  margin: 0 0 30px;
  background-color: #f5f5f0;
  border: 1px solid rgba(212, 163, 115, 0.2);
  border-radius: 12px;
  overflow: hidden;
}
.toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #5a4d45;
  transition: background-color 0.2s;
}
@media (max-width: 768px) {
  .toc__toggle {
    padding: 14px 18px;
    font-size: 0.9rem;
  }
}
.toc__toggle:hover {
  background-color: rgba(212, 163, 115, 0.06);
}
.toc__title {
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
.toc__title i {
  color: #d4a373;
  margin-right: 8px;
}
.toc__icon {
  font-size: 0.8rem;
  color: #999;
  transition: transform 0.3s;
}
.toc__body {
  padding: 0 24px 20px;
}
@media (max-width: 768px) {
  .toc__body {
    padding: 0 18px 16px;
  }
}
.toc__list {
  counter-reset: toc-counter;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.toc__item {
  counter-increment: toc-counter;
  margin-bottom: 4px;
}
.toc__item > a {
  display: block;
  padding: 8px 12px 8px 36px;
  color: #5a4d45;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 6px;
  position: relative;
  transition: background-color 0.2s;
}
@media (max-width: 768px) {
  .toc__item > a {
    font-size: 0.88rem;
    padding: 6px 10px 6px 30px;
  }
}
.toc__item > a::before {
  content: counter(toc-counter);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: #d4a373;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .toc__item > a::before {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    left: 4px;
  }
}
.toc__item > a:hover {
  background-color: rgba(212, 163, 115, 0.08);
}
.toc__sublist {
  list-style: none;
  padding-left: 36px;
  margin: 4px 0 0;
}
@media (max-width: 768px) {
  .toc__sublist {
    padding-left: 30px;
  }
}
.toc__subitem {
  margin-bottom: 2px;
}
.toc__subitem a {
  display: block;
  padding: 5px 10px;
  color: #666;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.5;
  border-radius: 4px;
  border-left: 2px solid rgba(212, 163, 115, 0.3);
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .toc__subitem a {
    font-size: 0.82rem;
    padding: 4px 8px;
  }
}
.toc__subitem a:hover {
  background-color: rgba(212, 163, 115, 0.08);
  border-left-color: #d4a373;
  color: #5a4d45;
}

/* News Single Page */
.news-article {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 60px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .news-article {
    padding: 20px;
    border-radius: 8px;
  }
}
.news-article__header {
  margin-bottom: 36px;
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
}
.news-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #888;
}
.news-article__meta time {
  font-family: "Noto Sans JP", sans-serif;
}
.news-article__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .news-article__title {
    font-size: 1.4rem;
  }
}
.news-article__share {
  margin-top: 20px;
  margin-bottom: 30px;
}
.news-article__share-list {
  display: flex;
  gap: 10px;
}
.news-article .share-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s;
}
.news-article .share-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.news-article .share-btn--x {
  background-color: #000;
}
.news-article .share-btn--fb {
  background-color: #1877f2;
}
.news-article .share-btn--line {
  background-color: #06c755;
}
.news-article__thumb {
  margin-bottom: 40px;
}
.news-article__thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.news-article__content {
  margin-bottom: 60px;
  line-height: 2;
}
@media (max-width: 768px) {
  .news-article__content {
    margin-bottom: 40px;
    line-height: 1.9;
    font-size: 0.9rem;
  }
}
.news-article__content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  margin: 48px 0 20px;
  padding: 12px 20px;
  border-left: 4px solid #d4a373;
  background-color: rgba(212, 163, 115, 0.06);
  border-radius: 0 6px 6px 0;
}
@media (max-width: 768px) {
  .news-article__content h2 {
    font-size: 1.2rem;
    margin: 32px 0 16px;
    padding: 10px 14px;
  }
}
.news-article__content h3 {
  font-size: 1.2rem;
  margin: 36px 0 16px;
  font-weight: 700;
  padding-left: 15px;
  border-left: 4px solid #a08e7e;
}
@media (max-width: 768px) {
  .news-article__content h3 {
    font-size: 1.05rem;
    margin: 24px 0 12px;
  }
}
.news-article__content a {
  color: #d4a373;
  text-decoration: underline;
}
.news-article__content a:hover {
  text-decoration: none;
}
.news-article__content p {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .news-article__content p {
    margin-bottom: 16px;
  }
}
.news-article__content img {
  margin: 24px 0;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .news-article__content img {
    margin: 16px 0;
  }
}
.news-article__content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid #d4a373;
  background-color: #f5f5f0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #666;
}
@media (max-width: 768px) {
  .news-article__content blockquote {
    padding: 16px 18px;
    margin: 16px 0;
  }
}
.news-article__content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 12px;
}
@media (max-width: 768px) {
  .news-article__content h4 {
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.news-article__content ol {
  margin: 20px 0;
  padding-left: 0;
  counter-reset: ol-counter;
  list-style: none;
}
@media (max-width: 768px) {
  .news-article__content ol {
    margin: 16px 0;
  }
}
.news-article__content ol li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  line-height: 1.8;
  counter-increment: ol-counter;
}
.news-article__content ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 24px;
  height: 24px;
  background-color: #d4a373;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.news-article__content ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .news-article__content ul {
    margin: 16px 0;
  }
}
.news-article__content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.8;
}
.news-article__content ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background-color: #d4a373;
  border-radius: 50%;
}
.news-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .news-article__content table {
    font-size: 0.85rem;
    margin: 16px 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.news-article__content table th,
.news-article__content table td {
  padding: 14px 18px;
  border: 1px solid #e0ddd8;
  text-align: left;
  line-height: 1.6;
  vertical-align: top;
}
@media (max-width: 768px) {
  .news-article__content table th,
  .news-article__content table td {
    padding: 10px 12px;
  }
}
.news-article__content table th {
  background-color: #d4a373;
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
}
.news-article__content table tbody tr:nth-child(even) {
  background-color: #f5f5f0;
}
.news-article__content table tbody tr {
  transition: background-color 0.2s;
}
.news-article__content table tbody tr:hover {
  background-color: rgba(212, 163, 115, 0.08);
}
.news-article__content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
  margin: 40px 0;
}
@media (max-width: 768px) {
  .news-article__content hr {
    margin: 28px 0;
  }
}
.news-article__content figure {
  margin: 24px 0;
}
@media (max-width: 768px) {
  .news-article__content figure {
    margin: 16px 0;
  }
}
.news-article__content figure img {
  margin: 0;
}
.news-article__content figure figcaption {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .news-article__content figure figcaption {
    font-size: 0.75rem;
  }
}
.news-article__content pre {
  background-color: #2d2d2d;
  color: #f8f8f2;
  padding: 20px 24px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .news-article__content pre {
    padding: 14px 16px;
    font-size: 0.8rem;
    margin: 16px 0;
  }
}
.news-article__content code {
  background-color: #f5f5f0;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #c7254e;
}
.news-article__content pre code {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
}
.news-article__content .wp-block-gallery {
  margin: 24px 0;
  gap: 8px;
}
.news-article__content .wp-block-columns {
  margin: 24px 0;
  gap: 24px;
}
@media (max-width: 768px) {
  .news-article__content .wp-block-columns {
    gap: 16px;
  }
}
.news-article__content strong {
  font-weight: 700;
  color: #5a4d45;
}
.news-article__content em {
  font-style: italic;
}
.news-article__content mark {
  background: linear-gradient(transparent 60%, rgba(212, 163, 115, 0.3) 60%);
  padding: 0 2px;
}
.news-article__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 0;
}
.news-article__tags-label {
  font-size: 0.75rem;
  color: #888;
  margin-right: 2px;
  display: flex;
  align-items: center;
}
.news-article__tags-label i {
  margin-right: 4px;
}
.news-article__tags a {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #5a4d45;
  background-color: #f5f5f0;
  padding: 3px 10px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}
.news-article__tags a:hover {
  background-color: #d4a373;
  color: #fff;
}
.news-article__footer {
  border-top: 1px solid #eee;
  padding-top: 40px;
}
.news-article__nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .news-article__nav {
    flex-direction: column;
    gap: 16px;
  }
}
.news-article__nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #5a4d45;
  max-width: 48%;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: #f5f5f0;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .news-article__nav-link {
    max-width: 100%;
    padding: 12px 16px;
  }
}
.news-article__nav-link:hover {
  opacity: 1;
  background-color: rgba(212, 163, 115, 0.1);
  transform: translateY(-2px);
}
.news-article__nav-link i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #d4a373;
  font-size: 1rem;
  transition: all 0.3s;
  flex-shrink: 0;
}
.news-article__nav-link:hover i {
  background-color: #d4a373;
  color: #ffffff;
}
.news-article__nav-link.next {
  text-align: right;
  justify-content: flex-end;
  margin-left: auto;
}
.news-article__nav-content {
  display: flex;
  flex-direction: column;
}
.news-article__nav-label {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.news-article__nav-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

/* 投稿詳細・アーカイブ系セクションのフェードイン無効化 */
.section--news-single,
.section--news-archive,
.section--related {
  opacity: 1;
  transform: none;
}

/* Related Posts Section */
.section--related {
  background-color: #f5f5f0;
}
.section--related .container {
  max-width: 1100px;
}

/* News Section Button */
.section--news .btn--outline {
  color: #5a4d45;
  border-color: #5a4d45;
  margin-left: 0;
  background-color: transparent;
}
.section--news .btn--outline:hover {
  background-color: #5a4d45;
  color: #fff;
  opacity: 1;
}
.section--news {
  background-color: #ffffff;
  position: relative;
}
.section--news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  transform: translateY(-99%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1200,120 L0,120 Z' fill='%23f5f5f0'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* ----------------------------------
  Wide Container for 3-column cards
---------------------------------- */
/* NEWSセクションとFor Guestセクションのコンテナ幅を拡張し、カード幅を統一 */
#news .container,
#guest .container {
  max-width: 1500px;
}
