/*
Theme Name: Hair Salon Theme
Author: STARTRE Co,.Ltd. @ S&A
Description: 美容室サイトのオリジナルWordPressテーマです。
Version: 1.0
*/



/* ==============================================
統一スタイル
============================================== */
:root {
  --max-width: 1150px;
  --transition: 0.3s;
  --color-primary: #e7e1d5;
  --color-primary-rgb: 231, 225, 213;
  --color-bg: #fbf9f5;
  --color-text: #121212;
  --color-text-rgb: 18, 18, 18;
  --color-white: #f9f9f9;
  --color-glay: #8a8a8a;
}

body {
  font-family: "Zen Old Mincho", "EB Garamond", "Oooh Baby", serif;
  color: var(--color-text);
  background: var(--color-bg);
}
p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 15px;
  }
}

a {
  text-decoration: none;
  color: var(--color-text);
}

h3,
h4,
h5,
h6 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
}

.container {
  max-width: var(--max-width);
  width: 90%;
  margin: 150px auto 0;
}

.site--btn {
  margin-top: 50px;
  text-align: right;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--color-text);
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  transition: var(--transition);
}

.button:hover {
  color: var(--color-primary);
}

.button__icon {
  width: 1.8em;
  height: auto;
}

@media screen and (max-width: 768px) {
  .site--btn {
    margin-top: 20px;
  }
}

/* h2共通タイトル */
.site__subTitle {
  color: var(--color-text);
  font-family: "EB Garamond", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 2px;
}

.site__title {
  color: var(--color-text);
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.7px;
  margin-top: 5px;
}

.site__title--color {
  color: var(--color-white);
}

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

@media screen and (max-width: 768px) {
  .container {
    max-width: var(--max-width);
    width: 84%;
    margin: 60px auto 0;
  }

  .site__subTitle {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .site__title {
    font-size: 11px;
    letter-spacing: 0.2em;
  }
}

/* ==============================================
ヘッダー
============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition) ease, top var(--transition) ease;
}

.header--scrolled {
  background: rgba(var(--color-text-rgb), 0.6);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

.header__inner {
  max-width: 100%;
  margin: 10px auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .header__logo--img {
  width: 130px;
  height: auto;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  gap: 35px;
  list-style: none;
}

.header__nav-item a {
  color: var(--color-white);
  text-decoration: none;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.header__nav-item a:hover {
  color: var(--color-glay);
}

/* ハンバーガー */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
.header__toggle span {
  display: block;
  height: 3px;
  background: var(--color-white);
  transition: all var(--transition) ease;
}

/* アニメーション */
.header__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__toggle--active span:nth-child(2) {
  opacity: 0;
}
.header__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* SPオーバーレイナビ */
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(var(--color-text-rgb), 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.header__overlay-list {
  list-style: none;
  text-align: center;
}
.header__overlay-item {
  margin: 25px 0;
}
.header__overlay-item a {
  font-size: 16px;
  color: var(--color-white);
  text-decoration: none;
}

.header__overlay-item a:current {
  color: var(--color-primary-light);
}
.header__overlay--active {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header__toggle {
    display: flex;
  }

  .header__logo--img {
    width: 85px;
  }

  .header__inner {
    height: 65px;
    padding: 0 20px;
    margin: 0 auto;
  }

  .header__nav-list {
    display: inline-block;
    gap: 35px;
    list-style: none;
    text-align: center;
  }
  li.header__nav-item {
    margin: 25px;
  }
}
/* ==============================================
フッター
============================================== */
/* ご予約・お問合せ */
.footer__cnt--container {
  background-color: var(--color-primary);
  margin-top: 150px;
}

.footer__cnt--box {
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
}

.footer__cnt--contents {
  padding: 10%;
  text-align: center;
  position: relative;
}

.button-column {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  gap: 30px;
}

.button-column__item {
  flex: 1 1 calc((100% - 90px) / 3);
  display: contents;
}

.footer__button {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  border: solid 1px var(--color-text);
  padding: 18px 80px;
  transition: var(--transition);
}

.footer__button:hover {
  color: rgba(var(--color-text-rgb), 0.2);
  border: solid 1px rgba(var(--color-text-rgb), 0.2);
}

.footer__button--icon {
  margin-left: 15px;
}

.contact__tel {
  font-family: "Shippori Mincho";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 40px 0;
}

.tel_fontsize {
  font-size: 0.5em;
}

.contact__inner {
  margin-top: 50px;
}

/* サイトマップ */
.sitemap {
  position: relative;
  z-index: 0;
}

.sitemap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-text-rgb), 0.6);
  z-index: -1;
  pointer-events: none;
}

.footer__info {
  display: flex;
  gap: 20px;
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
  padding: 150px 0 90px;
}

.footer__store {
  width: 32%;
}

.footer .footer__logo img {
  max-width: 170px;
  height: auto;
  margin-bottom: 50px;
}

.footer__address,
.footer__tel,
.footer__store-detail p {
  margin: 10px 0;
  color: var(--color-white);
  line-height: 1.5em;
}

.footer__sns {
  margin-top: 50px;
}

.footer__sns a {
  font-size: 18px;
  margin-right: 10px;
  color: var(--color-white);
  transition: color var(--transition);
}

.footer__map {
  width: 68%;
}

.footer__sitemap-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__sitemap-item a {
  color: var(--color-white);
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

.footer__copy p {
  padding: 50px 0;
  text-align: center;
  font-size: 12px;
  color: var(--color-white);
}

nav.footer__sitemap {
  max-width: 90%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer__info {
    flex-direction: column;
    gap: 40px;
    padding: 50px 0 40px;
  }

  .footer__cnt--container {
    margin-top: 60px;
  }

  .footer__cnt--contents {
    padding: 12% 8%;
  }

  .footer__store,
  .footer__map {
    width: 100%;
    text-align: center;
  }

  .footer__logo img {
    max-width: 140px;
    height: auto;
    margin-bottom: 10px;
  }

  .footer__sns {
    margin-top: 30px;
  }

  .footer__sitemap-list {
    align-items: center;
    gap: 20px;
  }

  .footer__sitemap-item a {
    font-size: 18px;
  }

  .footer__copy p {
    padding: 30px 0;
    font-size: 10px;
  }

  .contact__tel {
    font-size: 28px;
    margin: 30px 0;
  }

  .footer__button {
    width: 100%;
    padding: 18px 0;
  }
  .button-column {
    margin: 0 auto 10px;
    gap: 10px;
  }

  .contact__inner {
    margin-top: 30px;
  }
}

/* ==============================================
トップページ
============================================== */
/* ファーストビュー */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.section__firstview--slider {
  position: relative;
  z-index: 1;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(var(--color-text-rgb), 0.3) 0%, rgba(var(--color-primary-rgb), 0) 100%);
  pointer-events: none;
}

.firstview__catchcopy_title {
  position: absolute;
  display: inline-block;
  color: var(--color-white);
  top: 38%;
  right: 0;
  left: 5%;
  margin: 0 auto;
  text-align: left;
  z-index: 2;
}

.firstview__catchcopy_title h2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(25px, 5vw, 50px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: normal;
}

.firstview__catchcopy_title div {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(11px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

/* 投稿セクション */
.section__news--container {
  border: 1px solid var(--color-text);
  padding: 4.3%;
}

.news__container--article {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(var(--color-text-rgb), 0.1);
  padding: 15px 0;
}

.news__container--articleTitle {
  color: var(--color-text);
  width: 80%;
  text-align: left;
  transition: var(--transition);
}

.news__container--article:hover .news__container--articleTitle {
  color: var(--color-primary);
}

.news__container--articleDate {
  color: var(--color-text);
  width: 20%;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .news__container--article {
    display: block;
    justify-content: space-between;
  }

  .news__container--articleTitle {
    width: 100%;
  }

  .news__container--articleDate {
    width: 100%;
  }
}

/* ◯◯について */
.about {
  overflow: hidden;
}
.about__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about__content {
  flex: 1;
  margin-right: 5%;
}

.about__images {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 170px;
}

.about__images::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -180px;
  width: 120%;
  aspect-ratio: 1 / 1;
  background: var(--color-primary);
  z-index: -1;
}

.about__image {
  z-index: 1;
}

.about__image img {
  width: 100%;
  display: block;
}

.about__image--center {
  align-self: flex-end;
  max-width: 70%;
}
.about__image--center img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__image--left {
  align-self: flex-start;
  max-width: 52%;
}

.about__image--left img {
  aspect-ratio: 1;
  object-fit: cover;
  margin-top: -140px;
}

.about__heading {
  color: var(--color-text);
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 2px;
  margin: 50px 0 40px;
}

p.about__text {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .about__container {
    flex-direction: column;
  }
  .about__image {
    width: 100%;
  }

  .about__heading {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin: 40px 0 30px;
  }

  .about__content {
    margin-right: 0;
  }

  .about__image--center {
    align-self: center;
    max-width: 56%;
  }

  .about__image--left {
    max-width: 32%;
    margin-top: -60px;
  }

  .about__image--left img {
    aspect-ratio: 1;
    object-fit: cover;
    margin-top: -20px;
  }

  .about__images {
    padding-bottom: 120px;
    margin-top: 50px;
  }

  .about__images::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: -40px;
    width: 65%;
    aspect-ratio: 1 / 1;
    background: var(--color-primary);
    z-index: -1;
  }

  p.about__text {
    margin-bottom: 0;
  }
}

/* スライダー */

.slider {
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  touch-action: none;
  margin-top: -30px;
  padding-bottom: 280px;
}

.slider__track {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.slider__item {
  flex: 0 0 calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}

/* 画像は交互に130px下げる */
.slider__item:nth-child(odd) {
  transform: translateY(130px);
}
.slider__item:nth-child(even) {
  transform: translateY(0);
}

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

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 768px) {
  .slider {
    margin-top: -30px;
    padding-bottom: 150px;
  }

  .slider__track {
    gap: 15px;
  }

  .slider__item {
    flex: 0 0 calc((100% - 30px) / 3);
    max-width: calc((100% - 30px) / 3);
  }

  .slider__item:nth-child(odd) {
    transform: translateY(60px);
  }
}

/* こんなお悩みありませんか */
.approach {
  color: var(--color-white);
  position: relative;
  padding: 150px 0;
  text-align: center;
}

.approach__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 90%;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-text-rgb), 0.6);
  z-index: -1;
}

.approach__list {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 50px auto;
  text-align: left;
}

.approach__item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.approach__item i {
  margin-right: 8px;
  font-size: 1.4em;
}

.approach__text {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .approach {
    padding: 60px 0;
  }

  .approach__list {
    margin: 30px auto;
    width: 85%;
  }

  .approach__item {
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .approach__item i {
    margin-right: 5px;
    margin-top: 3px;
    font-size: 1.2em;
  }
}

/* サービス */
.service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3%;
  margin-top: 60px;
}

.service__item {
  flex: 0 0 calc((100% - 6%) / 3);
  margin-bottom: 5%;
  box-sizing: border-box;
}

.service__image {
  width: 100%;
  aspect-ratio: 36 / 25;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
}

.service__title {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.service__text {
  margin-top: 20px;
}

.service__number {
  color: var(--color-glay);
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .service__item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service__image {
    width: 100%;
    height: auto;
  }

  .service__list {
    margin-top: 30px;
  }

  .service__item {
    margin-bottom: 30px;
  }
}

/* コンセプト */
.concept__item {
  margin: 50px 0 100px;
}

.concept__image {
  width: 100%;
  aspect-ratio: 23 / 12;
  object-fit: cover;
  display: block;
  margin-bottom: 100px;
}

.concept__content {
  display: flex;
}

.concept__left {
  flex: 1;
  margin-right: 5%;
}

.concept__right {
  flex: 1;
}

.concept__number {
  font-size: 28px;
}

.concept__subtitle {
  color: var(--color-text);
  font-family: "Zen Old Mincho", serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: 0.05em;
  margin: -50px 0 0 50px;
}

.concept__number {
  color: var(--color-primary);
  font-family: "Oooh Baby", sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 5px;
  margin-top: -50px;
}

@media screen and (max-width: 768px) {
  .concept__content {
    flex-direction: column;
  }

  .concept__item {
    margin: 30px 0 50px;
  }
  .concept {
    margin-top: 30px;
  }

  .concept__number {
    font-size: 50px;
  }

  .concept__subtitle {
    margin: -30px 0 0 0;
  }
  .concept__subtitle {
    font-size: 17px;
    margin-top: -20px;
  }
  .concept__image {
    margin-bottom: 70px;
  }
  .concept__left {
    margin-right: 0;
  }
  .concept__right {
    margin-top: 20px;
  }
}

/* コンテンツ */
.contents__inner {
  display: flex;
  align-items: stretch;
  margin-top: 40px;
}

.contents__image-wrap {
  flex: 1;
  margin-right: 9%;
}

.contents__buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contents__image {
  width: 100%;
  aspect-ratio: 9 / 11;
  object-fit: cover;
  display: block;
}

.contents__button .button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-family: "EB Garamond", serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

.borderbutton {
  margin: 0;
  border-bottom: 1px solid var(--color-text);
  padding: 3%;
  display: inline-block;
}

@media (max-width: 768px) {
  .contents__inner {
    flex-direction: column;
    margin-right: 0;
    margin-top: 30px;
  }

  .contents__image-wrap {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .contents__buttons {
    width: 100%;
  }
  .contents__button .button {
    font-size: 20px;
  }
}

/* ブログ */
.blog__inner {
  display: flex;
}

.blog__left {
  flex: 0 0 33%;
}

.blog__right {
  flex: 0 0 67%;
  text-align: right;
}

.blog__list {
  display: flex;
  flex-direction: column;
}

.blog__item {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(var(--color-text-rgb), 0.2);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.blog__image-wrap {
  flex: 0 0 20%;
  position: relative;
}

.blog__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
}

.blog__article {
  flex: 1;
}

.blog__articleTitle {
  text-align: left;
}

.blog__articleDate {
  margin-top: 5px;
}
.blog__articleDate p {
  font-size: 0.875rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog__articleDate i {
  font-size: 0.9em;
  color: var(--color-text);
  margin-top: 3px;
}

.blog--btn .button__icon {
  margin-left: 8em;
}

.blog--btn {
  margin-top: 50px;
}

.blog__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-text-rgb), 0);
  transition: var(--transition) ease;
}

.blog__item:hover .blog__articleTitle {
  color: var(--color-primary);
}

.blog__item:hover .blog__image-wrap::after {
  background: rgba(var(--color-text-rgb), 0.2);
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-text-rgb), 0.6);
  z-index: 0;
}

@media (max-width: 768px) {
  .blog__inner {
    flex-direction: column;
  }

  .blog__left,
  .blog__right {
    flex: 1 1 100%;
  }

  .blog__item {
    flex-direction: column;
    margin-top: 10px;
  }

  .blog__image-wrap {
    width: 100%;
  }

  .blog--btn {
    margin-top: 30px;
  }

  .blog--btn .button__icon {
    margin-left: 3em;
  }
}

/* ==============================================
下層ページタイトル
============================================== */
.pageTitle__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.pageTitle__bg img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.pageTitle__bg {
  height: 450px;
}

.pageTitle__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-text-rgb), 0.3);
  pointer-events: none;
}

.pageTitle__contents {
  position: absolute;
  display: inline-block;
  color: var(--color-white);
  top: 38%;
  left: 10%;
  z-index: 2;
  margin: 0 auto;
}

.pageTitle__contents h2 {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(28px, 5vw, 50px);
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 0.1em;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  justify-content: left;
  color: var(--color-white);
  font-size: clamp(13px, 2vw, 16px);
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.05em;
}

.breadcrumb__list a {
  color: var(--color-white);
}

.breadcrumb__item {
  margin-right: 0.5em;
}

.breadcrumb__item:not(:last-child)::after {
  content: "-";
  margin-left: 0.5em;
}

@media screen and (max-width: 768px) {
  .pageTitle__bg img {
    height: 250px;
  }
  .pageTitle__bg {
    height: 250px;
  }
}

/* ==============================================
MENU
============================================== */
/* 代表メッセージ */
.message__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 0 auto;
  width: 80%;
  margin-top: 40px;
}

.message__image {
  flex: 0 0 auto;
  aspect-ratio: 3 / 4;
  width: 300px;
  overflow: hidden;
}

.message__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message__content {
  flex: 1;
}

.message__name {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  margin: 10px 0 20px;
}

.message__divider {
  border: none;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.8);
  margin-bottom: 1.5em;
}

.message__text {
  line-height: 1.8;
}

.message--title {
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
}

.message__storeName {
  color: var(--color-glay);
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.05em;
}

.message__name span {
  font-size: 0.8em;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .message__inner {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
  }

  .message__image {
    width: 100%;
  }

  .message--title {
    font-size: 18px;
    line-height: 28px;
  }
}

/* メニュー01 */
.menu__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.menu__item {
  border-bottom: 1px solid rgba(var(--color-text-rgb), 0.1);
  padding: 15px 0 20px;
}

.menu__name {
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  text-align: left;
  letter-spacing: 0.05em;
}

.menu__name--left {
  width: 80%;
}

.menu__name--right {
  width: 20%;
}

.price__value {
  text-align: right;
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.menu__name--right {
  width: 20%;
}

.menu__desc {
  color: var(--color-glay);
  font-size: 12px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6em;
  letter-spacing: 0.05em;
}

.menu__contents {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .menu__inner--img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .menu__header {
    display: block;
    justify-content: space-between;
  }

  .menu__name--left {
    width: 100%;
  }

  .price__value {
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }
  .menu__desc {
    font-size: 13px;
  }

  .menu__contents {
    margin-top: 10px;
  }
}

/* メニュー02 */
.menu2__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 50px;
  margin: 60px auto 0;
}

.menu2__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.menu2__contents {
  display: flex;
  flex-direction: column;
}
.menu2__inner--img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 47 / 30;
}

.menu2__header {
  padding: 15px 0 20px;
}

.section__menu--container {
  background: var(--color-primary);
  padding: 8% 4.3%;
}

@media screen and (max-width: 768px) {
  .menu2__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px auto 0;
  }
}

/* ==============================================
INFORMATION
============================================== */
/* ご予約・お問い合わせ */
.info__cnt--container {
  background-color: var(--color-primary);
  margin-top: 0;
}

.info__cnt--contents {
  padding: 6% 10%;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .info__cnt--contents {
    padding: 10%;
  }
}

/* 会社概要 */
.information__inner {
  max-width: 80%;
  margin: 60px auto 50px;
}

.information__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.information__title {
  width: 30%;
  padding: 20px;
  font-weight: bold;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(var(--color-text-rgb), 0.3);
}

.information__content {
  width: 70%;
  padding: 20px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(var(--color-text-rgb), 0.1);
}

.information__title {
  color: var(--color-text);
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.information__content {
  color: var(--color-text);
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.information__content a {
  color: var(--color-text);
}

.site-map__inner {
  margin-top: 50px;
}

/* faq */
.faq__item {
  border-bottom: 1px solid rgba(var(--color-text-rgb), 0.1);
  padding: 20px;
}
.faq__inner {
  max-width: 80%;
  margin: 0 auto 50px;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-align: left;
  color: var(--color-text);
}

.faq__question-text,
.faq__answer-text {
  flex: 1;
  color: var(--color-text);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.faq__icon {
  margin-left: auto;
  transition: transform var(--transition) ease;
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition) ease;
  padding: 0;
}

.faq__item--active .faq__answer {
  max-height: 500px;
  padding-top: 10px;
}
.faq__item--active .faq__icon {
  transform: rotate(180deg);
}
.faq__item--active .faq__question-text,
.faq__item--active .faq__icon {
  color: var(--color-glay);
}

@media screen and (max-width: 768px) {
  .information__inner {
    max-width: 100%;
    margin: 10px auto;
  }

  .information__title {
    width: 25%;
  }

  .information__content {
    width: 75%;
  }

  .information__title,
  .information__content {
    padding: 0 0 12px;
  }

  .information__row {
    padding: 12px 0 0;
  }

  .information__title {
    font-size: 13px;
  }
  .information__content {
    font-size: 14px;
  }
  .site-map__inner {
    margin-top: 30px;
  }
  .faq__inner {
    max-width: 100%;
    margin: 30px auto;
  }
  .faq__item {
    padding: 15px 8px;
  }

  .faq__question-text,
  .faq__answer-text {
    font-size: 15px;
  }
}

/* ==============================================
Blog
============================================== */
.blog__lowerPage {
  max-width: 775px;
  margin: 0 auto;
}

.blog__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.blog__pagination-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-text);
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: var(--color-text);
  transition: background-color var(--transition) ease, color var(--transition) ease;
}

.blog__pagination-prev,
.blog__pagination-next {
  width: auto;
  padding: 0 30px;
}

.blog__pagination-link:hover {
  background-color: rgba(var(--color-text-rgb), 0.05);
}

/* WordPress Pagination Styles */
.navigation.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}
.nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-text);
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  color: var(--color-text);
  transition: background-color var(--transition) ease, color var(--transition) ease;
}

/* ==============================================
POST PAGE
============================================== */

.post__inner {
  margin: 0 auto;
  width: 80%;
  text-align: center;
}

.post__contents {
  position: absolute;
  display: inline-block;
  color: var(--color-white);
  top: 38%;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 80%;
  text-align: left;
  z-index: 2;
}

.post__contents h2 {
  font-size: 28px;
  color: var(--color-white);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5em;
}

.post__meta {
  color: var(--color-white);
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.post__thumbnail img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.post__content {
  margin-top: 60px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .post__inner {
    width: 100%;
  }

  .post__thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .post__content {
    margin-top: 30px;
  }

  .post__meta {
    font-size: 14px;
  }

  .post__contents h2 {
    font-size: 18px;
  }
}

/* ==============================================
エラー404
============================================== */

.error404 {
  margin-bottom: -150px;
}

.error404__bg {
  position: relative;
}

.error404 img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
}

.error404 {
  height: 100svh;
}

.error404__inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  z-index: 2;
}

.error404__code {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.error404__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.error404__message {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .error404 {
    margin-bottom: -60px;
  }
  .error404__code {
    font-size: 80px;
  }

  .error404__title {
    font-size: 14px;
  }

  .error404__message {
    margin-top: 30px;
  }
}
