@charset "UTF-8";
button {
  border-style: none;
  background: none;
}

a {
  display: block;
}
a .contact__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 250px;
  width: 100%;
  height: 100%;
  color: white;
  background-color: #b79576;
  padding: 6px 16px;
  border-radius: 3px;
}
a span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 4px;
}
a p {
  text-align: center;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
}

/* オーバーレイ（背景フィルター） */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  -webkit-clip-path: polygon(0 0, 70% 0, 100% 20%, 100% 100%, 30% 100%, 0 80%);
          clip-path: polygon(0 0, 70% 0, 100% 20%, 100% 100%, 30% 100%, 0 80%);
  z-index: 10; /* ナビより下に出す */
}

/* active状態 */
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ついでにbodyのスクロール禁止用 */
body.noscroll {
  overflow: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.header__nav {
  display: none;
  position: relative;
  z-index: 20;
}
.header__nav--logo {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .header__nav--logo {
    display: none;
  }
}
.header__nav.active {
  position: absolute;
  inset: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0);
  width: 90vw;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav.active .header__nav--item {
  font-size: 20px;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
}
.header__nav--item {
  opacity: 0;
  transform: translateY(-2px);
}
.header__nav--item a {
  color: white;
}
@media screen and (min-width: 960px) {
  .header__nav--item a {
    color: #333;
  }
}
@media screen and (min-width: 960px) {
  .header__nav {
    display: block;
    flex-basis: 50%;
  }
  .header__nav--list {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__nav--item {
    opacity: 1;
    letter-spacing: 0.1rem;
    transition: all 0.4s ease;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  .header__nav--item:hover {
    opacity: 0.6;
  }
}

.mobile__menu--btn {
  cursor: pointer;
  margin-left: 10%;
  padding: 8px 5px;
}
.mobile__menu--btn span {
  transition: all 0.4s;
  display: block;
  width: 40px;
  height: 1px;
  background-color: #b79576;
  margin-bottom: 8px;
}
.mobile__menu--btn span:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .mobile__menu--btn {
    display: none;
  }
}
/* ハンバーガーボタンのアニメーション（オプション） */
.mobile__menu--btn.active span:first-child {
  transition: all 0.4s;
  transform: rotate(45deg) translate(0px, 0px);
}

.mobile__menu--btn.active span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
  transition: all 0.4s;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden; /* 見えない部分を隠す */
}

.map {
  width: 100%;
  height: 100%;
  border: none;
}

.overlay-gray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #808080; /* 完全なグレー（透明ではない） */
  transform: translateX(0); /* 最初は画面いっぱいに広がっている */
  transition: transform 0.8s cubic-bezier(0.26, 1.01, 0.32, 0.96); /* 左から右にスライド */
}

.overlay-gray.is-hidden {
  transform: translateX(100%); /* スクロールで右に消える */
}

.anime {
  opacity: 0;
  filter: blur(8px);
  transition: all 0.7s ease-out;
}

.anime.is-show {
  opacity: 1;
  filter: blur(0);
}

.scroll-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 960px) {
  .scroll-wrapper {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.scroll-track {
  display: flex;
  gap: 16px; /* 画像間のスペース */
  will-change: transform;
}

.scroll-track img {
  height: 100%;
  width: 260px;
  max-width: 100%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}

/* ローディングアニメーション */
.spinner {
  border: 6px solid #eee;
  border-top: 6px solid #b79576;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ロード完了時に非表示にする */
#loading.hide {
  opacity: 0;
  visibility: hidden;
}

* {
  font-style: normal;
}

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

a {
  text-decoration: none;
  color: #333;
  display: block;
  cursor: pointer;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Lora", "Noto Serif JP", serif;
}

.mb-sm {
  margin-bottom: 16px !important;
}

.mb-md {
  margin-bottom: 24px !important;
}

.mb-lg {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .mb-lg {
    margin-bottom: 150px !important;
  }
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-md {
  padding-bottom: 40px !important;
}

.pb-lg {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .pb-lg {
    padding-bottom: 150px !important;
  }
}

.content-width {
  width: 90%;
  margin: 0 auto;
  max-width: 1070px;
}

.flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.en__sub--title, .page__menu--en, .section__title, .top__about--concept, .top__news--time, .top__blog--time, .page__blog--time, .page__news--time {
  font-size: 16px;
  letter-spacing: 0.3em;
  line-height: 1.8;
  font-weight: normal;
  color: #7c624a;
}

.subtitleStyle, .top__menu--subtitle, .top__menuY--subtitle, .footer__title {
  font-size: 20px;
  letter-spacing: 0.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: normal;
}

.mainTextStyle, .page__top--descripsion, .page__404--text, .page__section--text, .page__main--sub, .page__blog--content, .page__news--title, .page__news--content, .page__menu--title, .page__menu--text, .page__menu--table th, .page__menu--table tr, .page__menu--table td, .page__menu--supplement, .section__desc, .top__about--text, .top__news--text > h2, .top__menu--text, .top__menuY--text, .top__access--right, .top__contact--text, .top__sns--text, .top__blog--time, .top__blog--category p, .top__blog--title, .top__blog--text, .footer__name, .footer address, .footer__wrap, .footer__copywriter, .page__blog--time, .page__blog--title, .page__news--text > h2 > h2 {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  font-weight: normal;
}

.more__btn,
.news__btn,
.blog__btn {
  display: flex;
  justify-content: flex-end;
}
.more__btn--style,
.news__btn--style,
.blog__btn--style {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 150px;
  padding: 6px 10px;
  background: #857f76;
  color: white;
  letter-spacing: 0.1em;
  border-radius: 3px;
  transition: all 0.4s ease;
}
.more__btn--style:hover,
.news__btn--style:hover,
.blog__btn--style:hover {
  color: #857f76;
  background: transparent;
  border: 1px solid #857f76;
}

.font-sm {
  font-size: 12px;
}
@media screen and (min-width: 960px) {
  .font-sm {
    font-size: 14px;
  }
}

.font-md {
  font-size: 14px;
}
@media screen and (min-width: 960px) {
  .font-md {
    font-size: 16px;
  }
}

.font-lr {
  font-size: 18px;
}
@media screen and (min-width: 960px) {
  .font-lr {
    font-size: 20px;
  }
}

.font-lg, .copy-container > .sub-title {
  font-size: 24px;
}
@media screen and (min-width: 960px) {
  .font-lg, .copy-container > .sub-title {
    font-size: 30px;
  }
}

.top-page {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-circle a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #333;
  margin: 0 5px;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.pagination-circle a:hover {
  opacity: 0.7;
}

.pagination-circle a.active {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.pagination-circle a:hover:not(.active) {
  background-color: #eee;
}

.pagination__area {
  display: flex;
  justify-content: space-around;
}
.pagination__btn {
  display: block;
}
.pagination__btn a {
  display: block;
  transition: opacity 0.4s ease;
}
.pagination__btn a:hover {
  opacity: 0.7;
}

/* ページネーションの汎用スタイル */
.nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 45px;
}

.nav-links li > *:not(.dots) {
  width: 45px;
  border-radius: 50%;
  color: #000000;
  background: #efefef;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li > .current,
.nav-links li > a:hover {
  color: #ffffff;
  background: #000000;
}

/*    --- ヘッダースタイル  --- */
.header {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  max-width: 1000px;
  height: 100px;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .header {
    margin: 0 auto;
  }
}
.header__left img {
  width: 50px;
  height: auto;
}
.header__rigth {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .header__rigth {
    flex-basis: auto;
  }
}

/*    メインースタイル  */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.main-bg {
  height: 100vh;
  background: linear-gradient(270deg, #ffffff, #fffaf8, #fff5f0, #fffaf8, #ffffff);
  background-size: 1000% 1000%;
  animation: gradientMove 25s ease infinite;
}

.copy-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.copy-container > .center__logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}
.copy-container > .sub-title {
  color: #7c624a;
  width: 100%;
  background-color: rgba(242, 240, 234, 0.8);
  text-align: center;
  padding-top: 5%;
}
.copy-container .main-title {
  width: 100%;
  font-size: 42px;
  font-weight: normal;
  background-color: rgba(242, 240, 234, 0.8);
  text-align: center;
  color: #7c624a;
  padding-bottom: 5%;
}

.section__first {
  position: relative;
  height: auto; /* セクションの高さ */
}
.section__first::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-image: url(/wp-content/themes/salon-testsite/imgs/main_bg.jpg);
  background-size: cover;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  z-index: -4;
}
.section__inner {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (min-width: 960px) {
  .section__inner {
    max-width: 1000px;
  }
}
.section__inner .scroll-wrapper > .scroll-track {
  height: 250px;
}
.section__inner .scroll-wrapper > .scroll-track > img {
  width: 160px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__title {
  margin-bottom: 10px;
  margin-left: 5%;
}
.section__sub {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.3em;
  color: #333;
  font-weight: normal;
  margin-left: 5%;
}
.section__sub::after {
  content: url(/wp-content/themes/salon-testsite/imgs/Line.svg);
  display: block;
  margin: 30px 0 30px 30px;
}
.section__desc {
  margin-bottom: 150px;
  padding: 0 5%;
}

.top__section--title {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.1rem;
  font-weight: normal;
  color: #b79576;
  margin-bottom: 12px;
}
.top__section--title.left {
  margin-left: 5%;
}
@media screen and (min-width: 960px) {
  .top__section--title.left {
    max-width: 1000px;
    margin: 0 auto 12px;
  }
}
.top__section--title.center {
  text-align: center;
}
.top__section--name {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.1rem;
  color: rgba(51, 51, 51, 0.6);
  display: flex;
  align-items: center;
}
.top__section--name.left {
  margin-left: 5%;
  margin-bottom: 80px;
}
@media screen and (min-width: 960px) {
  .top__section--name.left {
    max-width: 1000px;
    margin: 0 auto 40px;
  }
}
.top__section--name.center {
  display: block;
  text-align: center;
  margin-bottom: 80px;
}
.top__section--name.center::after {
  content: "";
  display: block;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: rgba(51, 51, 51, 0.6);
}
.top__about, .top__menu, .top__news, .top__access, .top__contact, .top__sns {
  width: 100%;
  margin: 0 auto;
}
.top__about {
  padding: 60px 0 100px;
  background: #f3f1e7;
}
.top__about--inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .top__about--inner {
    padding: 0;
  }
}
.top__about--inner .more__btn {
  justify-content: start;
}
@media screen and (min-width: 960px) {
  .top__about--inner .more__btn {
    justify-content: flex-start;
  }
}
.top__about--wrap {
  height: auto;
  margin: 40px auto;
}
@media screen and (min-width: 960px) {
  .top__about--wrap {
    display: flex;
    justify-content: center;
  }
}
.top__about--left {
  width: 100%;
  max-width: 300px;
  max-height: 360px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-radius: 6px; /* 角を少し丸めるとより柔らかい印象に */
}
@media screen and (min-width: 960px) {
  .top__about--left {
    padding: 0;
    margin: auto;
  }
}
.top__about--left img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 960px) {
  .top__about--left {
    flex: 1 1 30dvw;
    height: auto;
  }
}
.top__about--img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .top__about--right {
    flex: 1 1 70vw;
    padding: 5% 0 5% 5%;
    margin-left: 10%;
    border-left: 1px solid #b79576;
    height: auto;
  }
}
.top__about--concept {
  display: block;
  margin-bottom: 10px;
}
.top__about--subtitle {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.3em;
  color: #333;
  font-weight: normal;
  margin-bottom: 24px;
}
.top__about--text {
  font-size: 14px;
  margin-bottom: 30px;
}
.top__news {
  padding: 60px 0 100px;
}
.top__news--inner {
  height: auto;
  max-width: 1000px;
  margin: 0 auto;
}
.top__news--bg {
  width: 100%;
  height: auto;
  background-image: url(/wp-content/themes/salon-testsite/imgs/top-news-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.top__news--list {
  margin-bottom: 40px;
}
.top__news--item, .page__news--item {
  padding: 16px 0;
  margin: 0 auto;
  border-bottom: 1px dotted #333;
}
@media screen and (min-width: 600px) {
  .top__news--item, .page__news--item {
    display: flex;
    width: 70%;
  }
}
.top__news--item:last-child, .page__news--item:last-child {
  border-bottom: 1px dotted #333;
}
.top__news--card {
  display: block;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .top__news--card {
    width: 100%;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
  }
  .top__news--card:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
.top__news--time, .page__news--time {
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #333;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .top__news--time, .page__news--time {
    flex-basis: 30%;
  }
}
.top__news--text > h2, .page__news--text > h2 > h2 {
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  margin-bottom: 0;
}
.top__news--btn {
  justify-content: center;
}
.top__menu {
  padding: 60px 0 100px;
  background-color: #f2f0ea;
  max-width: 1480px;
}
@media screen and (min-width: 960px) {
  .top__menu.sec {
    padding-top: 40px;
  }
}
@media screen and (min-width: 960px) {
  .top__menu--inner {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
  .top__menu--inner.revers {
    flex-direction: row-reverse;
  }
}
.top__menu--inner .more__btn {
  justify-content: flex-start;
}
.top__menu--video {
  width: 100vw;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__menu--left {
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .top__menu--left {
    flex-basis: 50vw;
  }
}
.top__menu--right, .top__menuY--right {
  padding: 0 5%;
}
@media screen and (min-width: 960px) {
  .top__menu--right, .top__menuY--right {
    flex-basis: 50vw;
  }
}
.top__menu--text {
  margin-bottom: 30px;
}
.top__menuY--text {
  margin-bottom: 30px;
}
.top__access {
  padding: 60px 0;
  background-color: #f2f0ea;
}
.top__access--inner {
  padding: 0 5%;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .top__access--inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
  }
}
.top__access--left {
  width: 100%;
  min-height: 300px;
  max-height: 400px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .top__access--left {
    flex-basis: 50vw;
    padding-right: 5%;
  }
}
.top__access--left iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.618/1;
}
.top__access--right {
  padding: 30px 0;
}
@media screen and (min-width: 960px) {
  .top__access--right {
    flex-basis: 50vw;
    padding-left: 5%;
  }
}
.top__access--area {
  margin-bottom: 30px;
}
.top__contact {
  padding: 60px 0;
  background-color: #f2f0ea;
}
.top__contact--inner {
  padding: 3% 5% 3%;
}
@media screen and (min-width: 960px) {
  .top__contact--inner {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
  }
}
.top__contact--icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 40px 0;
  margin-bottom: 30px;
}
.top__contact--icon::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
}
.top__contact--icon img {
  width: 30px;
  height: 30px;
  z-index: 2;
}
.top__contact--right {
  padding: 20px 0 40px;
  flex-basis: 50vw;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}
@media screen and (min-width: 960px) {
  .top__contact--right {
    padding: 20px 5% 40px;
    border-bottom: none;
  }
}
.top__contact--left {
  flex-basis: 50vw;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
  padding-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .top__contact--left {
    padding: 0 5%;
    border-bottom: none;
  }
}
.top__contact--text {
  max-width: 28em;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .top__contact--text {
    width: 100%;
    text-align: left;
    margin: 0 auto;
  }
}
.top__tel--call {
  display: block;
  width: 16em;
  margin: 10px auto 0;
  text-decoration: underline;
  color: #333;
}
.top__sns {
  background-color: #f2f0ea;
  padding: 60px 0;
}
.top__sns--inner {
  padding: 0 5%;
}
.top__sns--icon1 {
  display: block;
  width: 50px;
}
.top__sns--icon2 {
  display: block;
  width: 65px;
}
.top__sns--wrap {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-top: 1px solid rgba(51, 51, 51, 0.3);
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
  padding: 60px 0;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .top__sns--wrap {
    max-width: 600px;
    margin: 0 auto 40px;
  }
}
.top__sns--text {
  text-align: center;
  margin-bottom: 50px;
}
.top__blog {
  padding-bottom: 80px;
  width: 100%;
  max-width: 1480px;
  background-color: #f2f0ea;
}
.top__blog--inner {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 0 5%;
}
@media screen and (min-width: 600px) {
  .top__blog--inner {
    display: flex;
    flex-wrap: wrap;
  }
}
.top__blog--area, .page__blog--area {
  width: 100%;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}
@media screen and (min-width: 960px) {
  .top__blog--area, .page__blog--area {
    flex-basis: 50%;
  }
}
.top__blog--card, .page__blog--card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 5% 0;
}
.top__blog--card .more__btn, .page__blog--card .more__btn {
  justify-content: start;
}
.top__blog--img {
  flex: 1 1 30%;
  max-width: 200px;
  width: 100%;
  height: 120px;
}
.top__blog--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top__blog--main {
  flex: 2 2 70%;
  padding: 5%;
}
.top__blog--wrap, .page__blog--wrap {
  display: flex;
  align-items: center;
}
.top__blog--time, .page__blog--time {
  display: block;
  font-size: 12px;
  margin-right: 8px;
}
.top__blog--category {
  display: inline-block;
  font-size: 12px;
  background-color: white;
  padding: 6px 12px;
  color: #b79576;
}
.top__blog--category > a {
  display: inline-block;
}
.top__blog--categorise {
  display: flex;
  align-items: baseline;
}
.top__blog--catarea {
  margin-left: 12px;
}
.top__blog--title, .page__blog--title {
  font-size: 15px;
  margin-bottom: 12px;
}
.top__blog--btn {
  display: flex;
}
.top__blog--style {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 150px;
  height: 30px;
  border: 1px solid #857f76;
  color: #857f76;
  letter-spacing: 0.1em;
  font-size: 14px;
  border-radius: 5px;
  transition: border-radius 1.2s cubic-bezier(0.6, 0.05, 0.2, 1), background-color 0.4s ease, color 0.4s ease;
}
.top__blog--style:hover {
  background-color: #857f76;
  color: white;
  border-radius: 80px;
}
.top__blog--archive {
  display: flex;
  justify-content: center;
}

.footer {
  border-top: 1px solid #f3f1e7;
  padding-top: 50px;
}
.footer__inner {
  padding-left: 5%;
}
@media screen and (min-width: 960px) {
  .footer__inner {
    padding-left: 0;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.footer__left {
  margin-bottom: 30px;
}
.footer__img {
  max-width: 100px;
  height: auto;
}
.footer__img img {
  max-width: 100%;
  height: auto;
}
.footer__name {
  margin-bottom: 0;
  color: #7c624a;
}
.footer__title {
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  color: #7c624a;
  margin-bottom: 30px;
}
.footer address {
  font-style: normal;
}
.footer__right {
  margin-bottom: 20px;
}
.footer__wrap {
  width: 12em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.footer__holiday {
  margin-right: 3.8em;
}
.footer__nav--list {
  display: flex;
  justify-content: space-between;
}
.footer__copywriter {
  background-color: rgba(238, 233, 220, 0.9);
  text-align: center;
  font-size: 13px;
}

.detail__page {
  max-width: 1480px;
  height: auto;
  margin: 0 auto;
  background: #f3f1e7;
}

.page__top {
  padding-top: 120px;
  max-width: 1000px;
  margin: 0 auto;
}
.page__top--area {
  width: 90%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .page__top--area {
    width: 100%;
  }
}
.page__top--img {
  width: 100px;
  height: auto;
}
.page__top--title {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-weight: normal;
  color: #7c624a;
  margin-bottom: 10px;
}
.page__top--sub {
  display: block;
  font-size: 14px;
}
.page__top--descripsion {
  font-size: 14px;
  margin-top: 8px;
}
.page__top--inner {
  width: 100%;
  margin: 0 auto;
}
.page__top--yoshimenu {
  display: inline-block;
  text-decoration: underline;
}

.page__top--title.found, .page__top--sub.found {
  text-align: center;
}

.page__404--text {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .page__404--text {
    text-align: center;
  }
}

.page__404--a {
  display: inline-block;
  text-decoration: underline;
  transition: all 2s ease;
}
.page__404--a:hover {
  opacity: 0.6;
}

.page__about {
  max-width: 1000px;
  margin: 0 auto;
}

.page__section {
  max-width: 1000px;
  margin: 0 auto;
}
.page__section--wrap::before {
  content: "";
  display: block;
  position: sticky;
  background-image: url(/wp-content/themes/salon-testsite/imgs/about-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  inset: 0;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .page__section--wrap::before {
    max-width: 1000px;
    height: 100vh;
    margin: 0 auto;
    background-size: contain;
  }
}
.page__section--title {
  line-height: 1;
  letter-spacing: 0.1rem;
  font-weight: normal;
  color: #b79576;
  margin-bottom: 12px;
  font-size: 16px;
}
.page__section--area {
  padding: 10% 5% 40px;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 960px) {
  .page__section--area {
    width: 65%;
    margin-left: auto;
  }
}
.page__section--area.second {
  padding-bottom: 100px;
}
.page__section--text {
  color: #eee;
  font-size: 14px;
}

.page__main {
  width: 100%;
  height: 100%;
}
.page__main--inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 40px;
}
.page__main--sub.yoshi {
  margin-left: 5%;
  margin-bottom: 40px;
  max-width: 1000px;
}
@media screen and (min-width: 960px) {
  .page__main--sub.yoshi {
    margin: 0 auto 40px;
  }
}

.page__blog--area {
  margin-bottom: 40px;
}
.page__blog--area > img {
  width: auto;
  max-height: 250px;
}
.page__blog--card {
  flex-direction: column;
  align-items: flex-start;
  max-width: 1000px;
}
.page__blog--img {
  max-height: 400px;
  margin-bottom: 20px;
}
.page__blog--img img {
  max-width: 100%;
  height: auto;
}
.page__blog--category a {
  font-size: 12px;
  background-color: #eee;
  padding: 4px 8px;
}
.page__blog--title {
  padding: 5% 0;
  font-size: 20px;
}
.page__blog--content {
  max-width: 600px;
}

.page__news--item.single {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .page__news--item {
    width: 60%;
    margin: 0 auto;
  }
}
.page__news--card {
  width: 100%;
  transition: opacity 0.4s ease;
}
.page__news--card:hover {
  opacity: 0.7;
}
@media screen and (min-width: 960px) {
  .page__news--card {
    width: 600px;
    margin: 0 auto;
  }
}
.page__news--time {
  font-size: 12px;
}
.page__news--title {
  font-size: 20px;
  margin-bottom: 40px;
}
.page__news--text > h2 {
  font-size: 15px;
  font-weight: normal;
  max-width: 600px;
}
.page__menu--area {
  width: 100%;
  height: 100%;
  margin-bottom: 80px;
}
.page__menu--inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .page__menu--inner {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
}
@media screen and (min-width: 960px) {
  .page__menu--wrap {
    flex-basis: 50%;
  }
}
.page__menu--img {
  display: block;
  margin-bottom: 30px;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 5px;
}
@media screen and (min-width: 960px) {
  .page__menu--img {
    max-height: 400px;
  }
}
.page__menu--title {
  font-size: 20px;
  margin-bottom: 24px;
}
.page__menu--text {
  margin-bottom: 20px;
}
.page__menu--table {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .page__menu--table {
    flex-basis: 40%;
  }
}
.page__menu--table th, .page__menu--table tr, .page__menu--table td {
  display: block;
}
@media screen and (min-width: 960px) {
  .page__menu--table th, .page__menu--table tr, .page__menu--table td {
    padding-left: 5%;
  }
}
.page__menu--table th {
  width: 100%;
  text-align: left;
  padding-left: 0;
}
.page__menu--table th strong {
  color: #b79576;
}
.page__menu--table td strong {
  color: #b79576;
}
.page__menu--table tbody tr {
  border-bottom: 2px dotted rgba(51, 51, 51, 0.3);
  padding: 5% 0;
}
.page__menu--table tbody tr:last-child {
  border-bottom: transparent;
}
.page__menu--tr {
  border-bottom: 2px dotted rgba(51, 51, 51, 0.3);
  padding-bottom: 2%;
}
.page__menu--supplement {
  width: 90%;
  margin: 0 auto;
}
.page__menu--customer {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .page__menu--wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.page__menu--custom {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .page__menu--custom {
    max-width: 400px;
    margin-right: 40px;
  }
}

td.time {
  display: inline-block;
  width: 30%;
  text-align: left;
  margin-bottom: 12px;
}
@media screen and (min-width: 600px) {
  td.time {
    width: 30%;
  }
}
td.time.last {
  margin-bottom: 0;
}

td.price {
  display: inline-block;
  width: 60%;
  max-width: 800px;
  margin-bottom: 12px;
}
@media screen and (min-width: 600px) {
  td.price {
    width: 60%;
  }
}
td.price:last-child {
  margin-bottom: 0;
}

td.text {
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */