/*
Theme Name: beauty_wp_theme
*/
@charset "utf-8";
/* * {
	outline: 1px solid magenta;
} */
body.logged-in .slideshow {
  top: 32px !important;
}

/* register */
.register {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.register-icon img {
  width: 42px;
}
.register-btn,
.register-btn-pc
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: #736C63;
  color: #fff;
  text-decoration: none;
  border-radius: 20px 0 0 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}
.register-btn:hover,
.register-btn-pc:hover
{
  color: #fff;
  opacity: 0.7; 
}
.register-btn-sp {
  display: none;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal-content {
  position: relative;
  background: #fff;
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}
.modal-content p {
  line-height: 1.6;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.modal-tel {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: #9E8474;
}
.modal-tel img {
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .register {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    flex-direction: row;
    gap: 0;
  }
  .register-icon img {
    width: 30px;
  }
  .register-btn-pc {
    display: none;
  }
  .register-btn,
  .register-btn-sp
   {
    width: 100%;
    height: 100px;
    border-radius: 0;
    font-size: 16px;
  }
  .register-btn-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background-color: #736C63;
    color: #fff;
    text-decoration: none;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    border-radius: 0;
  }
  .register-btn-sp:hover
  {
    color: #fff;
    opacity: 0.7; 
  }
  .register a:nth-child(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

/* header */
header {
  display: flex;
  height: 750px;
  background-size: cover;
  text-align: center;
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  position: relative;
}
.header-inner {
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  max-width: 1000px;
  gap: 50px;
}

#header-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  font-size: 18px;
  gap: 50px;
}
.menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.menu-link a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 0;
  transition: color 0.3s ease;
}
.menu-link a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: translateY(-10px); /* ← 初期位置を10px下にずらす */
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-link a:hover::after {
  transform: translateY(0);   /* ← hoverで元の位置に戻る（上がる） */
  opacity: 1;
}
.logo-area {
  display: none;
}
.hamburger {
  display: none;
}
.logo img {
  opacity: 0;
  transform: translateY(20px) rotateY(180deg);
  animation: logoIn 1s ease-out forwards;
  animation-delay: 0.3s;
  transform-origin: center center; /* 回転の軸を中央に */
}
.header-txt {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #fff;
  font-size: 32px;
  font-style: normal;
  line-height: 1.3;
}

@keyframes logoIn {
  0% {
    opacity: 0;
    transform: translateY(20px) rotateY(180deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateY(0deg);
  }
}

@media (max-width: 1024px) {
  header {
    height: 550px;
  }
  .header-inner {
    top: 10px; 
    gap: 30px;
  }
  .logo-area {
    display: block;
  }
  .logo-area img {
    width: 50%;
  }
#header-menu{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    background-color: rgba(158, 148, 136, 0.96);
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    gap: 0;
    display: flex;
    flex-direction: column;
  }
  .menu-link {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    margin-top: 3vh;
  }
  #header-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .menu-link {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
    align-items: center;s
  }

  .menu-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25vw;
    height: 25vw;
    border-radius: 50%;       /* 円形にする */
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 3.8vw;
    font-family: "Urbanist", sans-serif;
    font-weight: 300;
    transition: background-color 0.3s ease;
  }

  .menu-link a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .menu-link a::after {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1002;
    gap: 8px;
  }
  .hamburger span {
    height: 3px;
    width: 30px;
    background-color: #fff;
    margin: 0 0;
    transition: 0.3s;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  .logo img {
    width: 250px;
  }
  .header-txt {
    font-size: 26px;
  }
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 750px;
  overflow: hidden;
  z-index: 3;
}
.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  -webkit-animation-name: kenburns;
  animation-name: kenburns;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  opacity: 1;
  transform: scale(1.2);
}
.slideshow-image::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* ← 10%の黒 */
  z-index: 1;
}

.custom-shape-divider-bottom-1747027661 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg) scale(-1, 1);
    z-index: 5;
}

.custom-shape-divider-bottom-1747027661 svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1747027661 .shape-fill {
    fill: #FFFFFF;
}

@media (max-width: 1024px) {
.custom-shape-divider-bottom-1747027661 svg {
    height: 80px;
}

}

.slideshow-image:nth-child(1) {
  -webkit-animation-name: kenburns-1;
  animation-name: kenburns-1;
  z-index: 3;
}

.slideshow-image:nth-child(2) {
  -webkit-animation-name: kenburns-2;
  animation-name: kenburns-2;
  z-index: 2;
}

.slideshow-image:nth-child(3) {
  -webkit-animation-name: kenburns-3;
  animation-name: kenburns-3;
  z-index: 1;
}

.slideshow-image:nth-child(4) {
  -webkit-animation-name: kenburns-4;
  animation-name: kenburns-4;
  z-index: 0;
}

@-webkit-keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  1.5625% {
    opacity: 1;
  }
  23.4375% {
    opacity: 1;
  }
  26.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
  98.4375% {
    opacity: 0;
    transform: scale(1.2117647059);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  1.5625% {
    opacity: 1;
  }
  23.4375% {
    opacity: 1;
  }
  26.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
  98.4375% {
    opacity: 0;
    transform: scale(1.2117647059);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  26.5625% {
    opacity: 1;
  }
  48.4375% {
    opacity: 1;
  }
  51.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  26.5625% {
    opacity: 1;
  }
  48.4375% {
    opacity: 1;
  }
  51.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  51.5625% {
    opacity: 1;
  }
  73.4375% {
    opacity: 1;
  }
  76.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  51.5625% {
    opacity: 1;
  }
  73.4375% {
    opacity: 1;
  }
  76.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  76.5625% {
    opacity: 1;
  }
  98.4375% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
    transform: scale(1);
  }
}
@keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  76.5625% {
    opacity: 1;
  }
  98.4375% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 550px;
    overflow: hidden;
    z-index: 3;
  } 
}

/* section */
section { 
  padding: 80px 0; 
  box-sizing: border-box;
}

@media (max-width: 1024px) {
    section {
      padding: 50px 0;
    }
  }

/* concept */
.concept {
  width: 100%;
  max-width: 1000px;  
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  gap: 50px;
}
.concept-img {
  width: 350px;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-shrink: 0;
}
.concept-img-front {
  position: relative;
  top: 160px;
  right: 76px;
  z-index: 2;
}
.concept-img-back {
  position: relative;
  top: 0;
  left: 76px;
  z-index: 1;
}
.concept-title {
  font-size: 80px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.concept-sub {
  font-size: 28px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
}
.concept-txt {
  margin-top: 20px;
}
.concept-btn {
  margin-top: 30px;
}
.btn-viewmore {
  display: inline-block;
  background-color: #736C63; 
  padding: 4px 60px;
  color: #fff;
  border-radius: 30px; 
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.btn-viewmore:hover {
  opacity: 0.8;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 1024px) {
  .concept {
    width: 90%;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
  }
  .concept-img {
    width: 80%;
    height: auto;  
    max-height: none; 
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .concept-img-front {
    position: relative;
    top: 130px;
    right: 2vw;
    z-index: 2;
  }
  .concept-img-back {
    position: relative;
    top: 0vh;
    left: 2vw;
    z-index: 1;
  }
  .concept-img-front img
  {
    width: 100%;
  }
  .concept-img-back img
  {
    width: 100%;
  }
  .concept-title {
    font-size: 46px;
  }
  .concept-sub {
    font-size: 20px;
  }
}

/* menu */
.menu {
  background: #F9F5F3;
}
.menu-head {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 0 auto;
  gap: 50px;
}
.menu-title {
  font-size: 80px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.menu-sub {
  font-size: 28px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
}
.menu-detail {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 50px auto;
  gap: 50px;
}
.menu-slider {
  width: 600px;
  height: 350px;
  flex-shrink: 0;
}
.menu-slider img {
  width: 200px;
  height: 350px;
  object-fit: cover;
}
.menu-btn {
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .menu-head {
    width: 90%;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .menu-title {
    font-size: 46px;
  }
  .menu-sub {
    font-size: 20px;
  }
  .menu-detail {
    width: 90%;
    flex-direction: column-reverse;
    margin: 30px auto;
    gap: 30px;
  }
  .menu-slider {
    width: 96%;
    height: auto;
    flex-shrink: 0;
  }
  .menu-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .menu-btn {
    margin-top: 30px;
  }
}

/* staff */
.staff {
  width: 100%;
  max-width: 1000px;  
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 50px;
}
.staff-title {
  font-size: 80px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.staff-sub {
  font-size: 28px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
}
.staff-txt {
  margin-top: 20px;
}
.staff-btn {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .staff {
    width: 90%;
    flex-direction: column;
  }
  .staff-title {
    font-size: 46px;
  }
  .staff-sub {
    font-size: 20px;
  }
  .staff-img {
    margin: 30px auto 0;
    text-align: center;
  }
  .staff-img img {
    width: 90%;
  }
}

/* salon */
.salon {
  background: #F9F5F3;
}
.salon-title {
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  text-align: center;
}
.salon-title h2 {
  font-size: 46px;
  line-height: 1.3;
}
.salon-title h3 {
  font-size: 24px;
  line-height: 1.3;
}
.salon-list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}
.salon-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.salon-card:nth-child(even) {
  flex-direction: row-reverse;
}
.salon-img {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.salon-img {
  position: relative;
  overflow: hidden;
  width: 360px;
  height: 280px;
  flex-shrink: 0;
}
.salon-bg-animation {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2;
  visibility: hidden;
  animation: slide-bg 1s ease-in-out forwards, fade-out 1s ease-in-out 0.8s forwards;
  animation-play-state: paused;
}
@keyframes slide-bg {
  0%   { left: -100%; }
  100% { left: 100%; }
}
@keyframes fade-out {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
.salon-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 1;
}
.salon-image.visible {
  opacity: 1;
  transform: scale(1);
}
.salon-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.salon-number {
  font-size: 130px;
  color: #9E8474;  
  line-height: 0;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}
.salon-sub {
  font-size: 28px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
}
.salon-txt {
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .salon-title h2 {
    font-size: 26px;
  }
  .salon-title h3 {
    font-size: 18px;
  }
  .salon-list {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }
  .salon-card {
    flex-direction: column;
    gap: 50px;
  }
  .salon-card:nth-child(even) {
    flex-direction: column;
  }
  .salon-img {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .salon-img {
    position: relative;
    overflow: hidden;
    width: 90%;
    max-width: 360px;
    aspect-ratio: 9 / 7;
    height: auto;  
    flex-shrink: 0;
    margin: 0 auto; /* 中央寄せしたい場合 */
  }
  .salon-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .salon-number {
    font-size: 80px;
  }
  .salon-sub {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
  }
  .salon-txt {
    margin-top: 15px;
  }
}

/* gallery */
.gallery-title {
  font-size: 64px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.gallery-sub {
  font-size: 24px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.gallery-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔄 4列に変更 */
  grid-auto-rows: 320px;                /* 1マスの高さ */
  gap: 12px;
  max-width: 1000px;
  margin: 50px auto;
}
.gallery-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.h1 { grid-row: span 1; } /* 通常の1マス */
.h2 { grid-row: span 2; } /* ← 縦長にしたい画像にはこれを使う */

@media (max-width: 1024px) {
  .gallery-title {
    font-size: 42px;
  }
  .gallery-sub {
    font-size: 18px;
  }
  .gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔄 4列に変更 */
    grid-auto-rows: 150px;                /* 1マスの高さ */
    gap: 12px;
    width: 90%;
    margin: 30px auto;
  }
}

/* blog */
.blog {
  background: #F9F5F3;
}
.blog-title {
  font-size: 64px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.blog-sub {
  font-size: 24px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.blog-list {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列 */
  gap: 40px;
}
.blog-img {
  width: 300px;
  height: 200px;
  margin: 0 auto;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.blog-day {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 48px;
  color: #9E8474; 
  line-height: 0.8;
  text-align: center;
}
.blog-day span {
  font-size: 18px;
  display: block;
}
.blog-headline {
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;
  font-size: 18px;
  color: #9E8474;
  line-height: 1.3;
  text-align: left;
}
.blog-btn {
  margin-top: 10px;
  text-align: right;
}
.blog-viewmore {
  display: inline-block;
  background-color: #736C63; 
  padding: 4px 30px;
  color: #fff;
  border-radius: 30px; 
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.blog-viewmore:hover {
  opacity: 0.8;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 1024px) {
  .blog-title {
    font-size: 42px;
  }
  .blog-sub {
    font-size: 18px;
  }
  .blog-list {
    width: 90%;
    margin: 30px auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-card {
    text-align: center;
  }
}

/* lifehair */
.lifehair {
  background-image: url(img/lifehair-bg.jpg);
  background-size: cover;
  position: relative;
  height: 800px;
  display: flex;
  align-items: center;
}
.lifehair::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* ← 10%の黒 */
  z-index: 1;
}
.lifehair-inner {
  width: 100%;
  max-width: 700px;
  color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.lifehair-sub {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  line-height: 1.3;  
}
.lifehair-title {
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;  
  font-size: 32px;
  text-align: center; 
  line-height: 1.5;  
}
.lifehair-txt {
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .lifehair {
    height: auto;
  }
  .lifehair-inner {
    width: 86%;
  }
  .lifehair-sub {
    font-size: 18px;
  }
  .lifehair-title {
    font-size: 20px;
  }
  .lifehair-txt {
    margin-top: 30px;
  }
}

/* recruit */
.recruit {
  width: 100%;
  max-width: 1000px;  
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  gap: 50px;
  padding-top: 120px;
}
.recruit-img {
  width: 400px;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-shrink: 0;
}
.recruit-img-front {
  position: relative;
  top: 135px;
  right: 50px;
  z-index: 2;
}
.recruit-img-back {
  position: relative;
  top: 0;
  left: 50px;
  z-index: 1;
}
.recruit-title {
  font-size: 80px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.recruit-sub {
  font-size: 24px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
}
.recruit-txt {
  margin-top: 20px;
}
.recruit-btn {
  margin-top: 30px;
  text-align: center; 
}
.recruit-viewmore {
  display: inline-block;
  background-color: #736C63; 
  padding: 4px 100px;
  color: #fff;
  border-radius: 30px; 
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;
}
.recruit-viewmore:hover {
  opacity: 0.8;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 1024px) {
  .recruit {
    width: 90%;
    flex-direction: column-reverse;
    margin: 0 auto;
    gap: 30px;
    padding-top: 60px;
  }
  .recruit-img {
    width: 80%;
    height: auto;  
    max-height: none; 
    margin: 0 auto;
    padding-bottom: 60px;
  }
  .recruit-img-front {
    position: relative;
    top: 60px;
    right: 2vw;
    z-index: 2;
  }
  .recruit-img-back {
    position: relative;
    top: 0vh;
    left: 2vw;
    z-index: 1;
  }
  .recruit-img-front img,
  .recruit-img-back img
  {
    width: 100%;
    height: 100%;
  }
  .recruit-title {
    font-size: 46px;
  }
  .recruit-sub {
    font-size: 18px;
  }
  .recruit-txt {
    margin-top: 10px;
  }
  .recruit-viewmore {
    padding: 4px 50px;
  }
}

/* access */
.access {
  padding-top: 0;
  padding-bottom: 0;
}
.access-map {
  width: 100%;
  max-width: 1000px;
  height: 450px;
  margin: 0 auto;
}
.access-detail {
  width: 100%;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.access-img {
  width: 350px;
  flex-shrink: 0;
}
.access-title {
  font-size: 64px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.access-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
}
.access-table th {
  text-align: left;
  vertical-align: top;
  padding: 10px 15px;
  font-weight: 600;
  width: 100px;
  white-space: nowrap;
  font-weight: normal;
}
.access-table td {
  padding: 10px 15px;
}
.access-btn {
  margin-top: 30px;
}
.btn-viewmore {
  display: inline-block;
  background-color: #736C63; 
  padding: 4px 60px;
  color: #fff;
  border-radius: 30px; 
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.btn-viewmore:hover {
  opacity: 0.8;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 1024px) {
.access-map {
  width: 90%;
  height: 450px;
}
.access-detail {
  width: 90%;
  margin: 30px auto;
  flex-direction: column;
  gap: 30px;
}
.access-img {
  display: none;
}
.access-title {
  font-size: 46px;
}
.access-table {
  width: 100%;
}
.access-table th {
  text-align: left;
  vertical-align: top;
  padding: 10px 15px;
  font-weight: 600;
  width: 100px;
  white-space: nowrap;
  font-weight: normal;
}
.access-table td {
  padding: 10px 15px;
}
.access-btn {
  margin-top: 30px;
}  
}

/* pagetop */
.pagetop-wrapper {
  text-align: center;
}
.pagetop {
  display: inline-block;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  line-height: 1.6;
}
.pagetop:hover {
  color: #9E8474;
}
.pagetop-arrow {
  display: block; 
  width: 10px;
  height: 10px;
  border-top: 2px solid #9E8474;
  border-left: 2px solid #9E8474;
  transform: rotate(45deg);
  margin: 0 auto 4px;
}

/* footer */
footer {
  background: #736C63;
  width: 100%;
  box-sizing: border-box;
  padding: 70px 0px;
  gap: 50px;
  color: #fff;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
}
.footer-inner {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.footer-logo img {
  width: 200px;
}
.footer-link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
.footer-link-item a {
  color: #fff;
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  position: relative;
  padding: 0;
  transition: color 0.3s ease;
}
.footer-link-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: 10px;
  opacity: 0; 
  transition: bottom 0.3s ease, opacity 0.3s ease; 
}
.footer-link-item a:hover {
  color: #fff;
}
.footer-link-item a:hover::after {
  bottom: 0px; 
  opacity: 1; 
}
.footer-sns {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}
.footer-sns img {
  vertical-align: middle;
}
.footer-sns-icon img {
  height: 20px;
}

@media (max-width: 1024px) {
  footer {
    background: #fff;
    padding: 0 0 120px;
    gap: 50px;
    color: #736C63;
  }
  .footer-inner {
    flex-direction: column;
    width: 90%;
    align-items: center;
  }
  .footer-logo img {
    width: 150px;
  }
  .footer-link-item a {
    color: inherit;
    display: inline;
    justify-content: normal;
    text-decoration: none;
    position: static;
    padding: 0;
    transition: none;
    color: #736C63;
  }
  .footer-link-item a::after {
    content: none;
    opacity: 0;
    transition: none;
  }
  .footer-link-item a:hover {
    color: #736C63;
  }
  .footer-sns {
    margin-top: 20px;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
  }
  .footer-sns-icon img {
    height: 20px;
  }
  .footer-copy {
    margin-top: 20px;
    text-align: center;
  }
}

@media (max-width: 825px) {
  .footer-link {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    gap: 0 25px;
    font-size: 18px;
  }
}

/* page-header  */
.page-header {
  display: flex;
  height: 580px;
  background-size: cover;
  text-align: center;
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  position: relative;
  background: url(img/page-header-bg.jpg);
  background-position: center;
  background-size: cover;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* ← 10%の黒 */
  z-index: 1;
}

@media (max-width: 1024px) {
  .page-header {
    height: 380px;
  }
}

/* page-section */
.colored {
  background: #F9F5F3;
}
.page-section-title {
  font-size: 32px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.page-section-txt {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
}

@media (max-width: 1024px) {
  .page-section-title {
    font-size: 24px;
  }
  .page-section-txt {
    width: 90%;
  }
}

/* page-concept */
.page-content {
  width: 100%;
  max-width: 1000px;  
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  gap: 50px;
}
.page-content-img {
  flex-shrink: 0;
}
.page-content-img img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: center left;
}
.page-content-title {
  font-size: 80px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.page-content-sub {
  font-size: 28px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
}
.page-content-txt {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .page-content {
    width: 90%;
    max-width: 1000px;  
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 auto;
    gap: 30px;
  }
  .page-content-img {
    text-align: center;
    margin: 0 auto;
    width: 90%;
    height: 300px;
  }
  .page-content-img img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    object-position: center left;
  }
  .page-content-title {
    font-size: 42px;
  }
  .page-content-sub {
    font-size: 20px;
  }
  .page-content-txt {
    margin-top: 20px;
  }
}

/* .page-concept */
.page-concept-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 60px auto;
  width: 100%;
  max-width: 1000px;  
}
.page-concept-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.page-concept-card-title {
  font-size: 28px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.3;
}
.page-concept-card-txt {
  margin-top: 15px;
}
.page-concept-card:nth-child(even) {
  flex-direction: row-reverse;
}
.page-concept-slider {
  width: 100%;
  margin: 30px auto;
  padding: 30px 0;
}
.page-concept-slider-item {
  margin: 0 10px;
}
.page-concept-slider-item img {
  width: 500px;
  height: 350px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .page-concept-list {
    margin: 30px auto;
    width: 90%;
  }
  .page-concept-card {
    gap: 10px;
    flex-direction: column;
  }
  .page-concept-card-title {
    font-size: 20px;
  }
  .page-concept-card-txt {
    margin-top: 15px;
  }
  .page-concept-card:nth-child(even) {
    flex-direction: column;
  }
  .page-concept-slider {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
  }
  .page-concept-slider-item {
    margin: 0 10px;
  }
  .page-concept-slider-item img {
    width: 300px;
    height: 250px;
  }
}

/* slick */
.slick-dots li {
  width: 25px !important;
}

.slick-dots li button:before {
  font-size: 25px !important;
}

/* page-menu */
.page-menu {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto;
  border: 1px solid #D9D9D9;
  padding: 50px;
  background: #fff;
}
.page-menu-list {
  margin-top: 30px;
}
.page-menu-title {
  text-align: center;
  font-size: 36px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;  
}
.page-menu-item {
  border-bottom: 1px solid #D9D9D9;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.page-menu-item:first-of-type {
  border-top: 1px solid #D9D9D9;
}
.page-menu-type {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #9E8474;
  line-height: 1.3;
}
.page-menu-description {
  font-size: 12px;
  margin-top: 5px;
}
.page-menu-price {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #9E8474;
  white-space: nowrap; 
}

@media (max-width: 1024px) {
  .page-menu {
    width: 90%;
    margin: 30px auto;
    padding: 20px;
  }
  .page-menu-list {
    margin-top: 10px;
  }
  .page-menu-title {
    font-size: 24px;
  }
  .page-menu-item {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .page-menu-price {
    padding-top: 10px;
    align-self: flex-end;
  }
}

/* page-staff */
.page-staff-list {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  margin: 60px auto 0;
}
.page-staff-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  transition: transform 0.4s ease;
}
.page-staff-item:hover img {
  transform: scale(0.9); 
}
.page-staff-name {
  font-size: 20px;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;  
}
.page-staff-title {
  font-size: 64px;
  line-height: 1;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-weight: 400; 
  color: #9E8474;   
}
.assistant {
  margin-top: 80px;
}
.page-staff-member {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 100px;
}
.page-staff-card,
.page-staff-assistant-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
.page-staff-assistant-card {
  flex-direction: row-reverse;
}
.page-staff-card:nth-child(even) {
  flex-direction: row-reverse;
}
.page-staff-assistant-card:nth-child(even) {
  flex-direction: row;
}
.page-staff-card-head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 30px;
  line-height: 1;
}
.page-staff-card-head-name {
  font-size: 32px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
.page-staff-card-head-name span {
  font-size: 24px;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  margin-left: 20px;
}
.page-staff-card-head-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.page-staff-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  line-height: 1.8;
}
.page-staff-table th,
.page-staff-table td {
  padding: 12px 10px;
  vertical-align: top;
  text-align: left;
}
.page-staff-table th {
  width: 30%;
  font-weight: normal;
  white-space: nowrap;
}
.page-staff-table tr {
  border-bottom: 1px solid #D9D9D9;
}
.page-staff-table-aassistant {
  margin-top: 20px;
}

@media (max-width: 1024px) {
.page-staff-list {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 0;
  margin: 30px auto 0;
}
.page-staff-item {
  text-align: center;
}
.page-staff-item img {
  width: 120px;
  height: 120px;
}
.page-staff-name {
  font-size: 16px;
}
.page-staff-title {
  font-size: 38px;
}
.assistant {
  margin-top: 80px;
}
.page-staff-member {
  gap: 80px;
  margin-top: 60px;
}
.page-staff-card,
.page-staff-assistant-card {
  width: 90%;
  flex-direction: column;
  gap: 30px;
}
.page-staff-assistant-card {
  flex-direction: column;
}
.page-staff-card:nth-child(even) {
  flex-direction: column;
}
.page-staff-assistant-card:nth-child(even) {
  flex-direction: column;
}
.page-staff-card-img {
  margin: 0 auto;
}

.page-staff-card-head-name {
  font-size: 24px;
}
.page-staff-card-head-name span {
  font-size: 16px;
}
.page-staff-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  line-height: 1.8;
}
.page-staff-table th,
.page-staff-table td {
  padding: 12px 10px;
  vertical-align: top;
  text-align: left;
}
.page-staff-table th {
  width: 30%;
  font-weight: normal;
  white-space: nowrap;
}
.page-staff-table tr {
  border-bottom: 1px solid #D9D9D9;
}
.page-staff-table-aassistant {
  margin-top: 20px;
}
}

/* page-gallery */
.page-gallery {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.page-gallery-title {
  font-size: 64px;
  line-height: 1;
  font-family: "Urbanist", sans-serif;
  font-weight: 400; 
  color: #9E8474;   
}
.page-gallery-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; 
  margin-top: 60px;
}
.page-gallery-item {
  aspect-ratio: 1 / 1; /* 枠自体も正方形に */
  overflow: hidden;     /* 拡大ではみ出さないように */
  position: relative;
}
.page-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block; 
}
.page-gallery-item:hover img {
  transform: scale(1.2); 
}

@media (max-width: 1024px) {
  .page-gallery {
    width: 90%;
  }
  .page-gallery-title {
    font-size: 42px;
  }
  .page-gallery-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; 
    margin-top: 30px;
  }
}

/* page-blog */
.page-blog {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;   
  gap: 50px;
}
.page-blog-title {
  font-size: 64px;
  line-height: 1;
  font-family: "Urbanist", sans-serif;
  font-weight: 400; 
  color: #9E8474;   
}
.page-blog-main {
  flex: 1;
  max-width: 700px;
}
.page-blog-sidebar {
  width: 250px;
  flex-shrink: 0;
}
.page-blog-list {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 30px;
}
.page-blog-card {
  width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.page-blog-detail {
  flex: 1;
}
.page-blog-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}
.page-blog-day {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #9E8474; 
  line-height: 0.8;
}
.page-blog-headline {
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;
  font-size: 18px;
  color: #9E8474;
  line-height: 1.3;
  margin-top: 6px;
}
.page-blog-txt {
  margin-top: 10px;
  line-height: 1.6;
}
.page-blog-btn {
  margin-top: 20px;
  text-align: right;
}
.page-blog-viewmore {
  display: inline-block;
  background-color: #736C63; 
  padding: 4px 30px;
  color: #fff;
  border-radius: 30px; 
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.page-blog-viewmore:hover {
  opacity: 0.8;
  cursor: pointer;
  color: #fff;
}
.page-blog-sidebar-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #9E8474; 
  line-height: 0.8;
}
.page-blog-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.page-blog-sidebar-list-day {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.page-blog-sidebar-list-headline {
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .page-blog {
    width: 90%;
    flex-direction: column;
    gap: 50px;
    margin: 0 auto;
  }
  .page-blog-title {
    font-size: 42px;
  }
  .page-blog-main {
    width: 100%;
  }
  .page-blog-sidebar {
    width: 100%;
  }
  .page-blog-list {
    margin-top: 30px;
  }
  .page-blog-card {
    width: 100%;
    flex-direction: column;
  }
  .page-blog-detail {
    width: 100%;
  }
  .page-blog-img {
    width: 100%;
    height: 200px;
  }
  .page-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* page-item */
.page-item {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.page-item-title {
  font-size: 64px;
  line-height: 1;
  font-family: "Urbanist", sans-serif;
  font-weight: 400; 
  color: #9E8474;   
}
.page-item-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; 
  margin-top: 60px;
}
.page-item-img {
  aspect-ratio: 1 / 1; /* 枠自体も正方形に */
  overflow: hidden;     /* 拡大ではみ出さないように */
  position: relative;
}
.page-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block; 
}
.page-item-card:hover img {
  transform: scale(1.2); 
}
.page-item-headline {
  line-height: 1.3;
  margin-top: 10px;
}
.page-item-btn {
  margin-top: 20px;
  text-align: center;
}
.page-item-viewmore {
  display: inline-block;
  background-color: #736C63; 
  padding: 4px 30px;
  color: #fff;
  border-radius: 30px; 
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.page-item-viewmore:hover {
  opacity: 0.8;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 1024px) {
  .page-item {
    width: 90%;
  }
  .page-item-title {
    font-size: 42px;
  }
  .page-item-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; 
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-item-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* page-recruit */
.page-recruit-list {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px; 
}
.page-recruit-card {
  text-align: center;
}
.page-recruit-card-number {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 48px;
  color: #9E8474;
  line-height: 1;
  margin-top: 30px;
}
.page-recruit-card-sub {
  font-size: 22px;
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;
  color: #9E8474;
}
.page-recruit-card-txt {
  line-height: 1.5;
  text-align: left;
  margin-top: 6px;
}
.page-recruit-flow {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-recruit-flow-card {
  width: 180px;
  text-align: center;
}
.page-recruit-flow-step {
  font-size: 16px;
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;
  color: #9E8474; 
  line-height: 1.3;
  margin-top: 15px;
}
.page-recruit-flow-sub {
  font-size: 24px;
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;
  color: #9E8474; 
  line-height: 1.3;  
}
.page-recruit-flow-txt {
  line-height: 1.5;
  text-align: left;
  margin-top: 15px;
}
.page-recruit-conditions {
  max-width: 950px;
  margin: 60px auto;
  background: #fff;
  padding: 50px;
  border: 1px solid #D9D9D9;
}
.page-recruit-conditions-title {
  font-size: 32px;
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
  color: #9E8474; 
}
.page-recruit-conditions-tb {
  width: 100%;
  border-collapse: collapse;
}
.page-recruit-conditions-tb tr {
  border-top: 1px solid #ddd;
}

.page-recruit-conditions-tb tr:last-of-type {
  border-bottom: 1px solid #ddd;
}

.page-recruit-conditions-tb th,
.page-recruit-conditions-tb td {
  text-align: left;
  padding: 20px 10px;
  vertical-align: top;
}
.page-recruit-conditions-tb th {
  font-weight: normal;
  width: 150px;
  white-space: nowrap;
}
.page-recruit-video {
  margin: 60px auto;
  text-align: center;
  width: 1000px;
  height: 570px;
}
.page-recruit-contact {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: #F9F5F3;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
}
.page-recruit-contact-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
.page-recruit-contact-txt {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;  
  color: #9E8474;
  line-height: 1.6;
}
.page-recruit-contact-info {
  font-size: 28px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  color: #9E8474; 
}
.page-recruit-contact-info {
  margin-top: 15px;
}
.page-recruit-contact-info img {
  margin-right: 10px;
  vertical-align: top;
}
.page-recruit-contact-tel,
.page-recruit-contact-mail
{
  line-height: 1;
}

@media (max-width: 1024px) {
  .page-recruit-list {
    width: 90%;
    margin: 30px auto 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-recruit-card-number {
    font-size: 36px;
  }
  .page-recruit-card-sub {
    font-size: 20px;
  }
  .page-recruit-flow {
    width: 90%;
    max-width: 900px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-recruit-flow-card {
    width: 160px;
  }
  .page-recruit-flow-sub {
    font-size: 20px;
  }
  .page-recruit-flow-txt {
    margin-top: 10px;
    text-align: left;
  }
  .page-recruit-conditions {
    max-width: 90%;
    margin: 30px auto;
    padding: 20px;
  }
  .page-recruit-conditions-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .page-recruit-conditions-tb th,
  .page-recruit-conditions-tb td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .page-recruit-conditions-tb th {
    padding: 10px;
    font-size: 18px;
    font-family: "Zen Old Mincho", serif; 
    font-weight: 400;  
    color: #9E8474;
    font-weight: normal;
    width: 100%;
  }
  .page-recruit-conditions-tb td {
    padding: 0 10px 20px;
  }
  .page-recruit-video {
    position: relative;
    width: 90%;
    max-width: 1000px;
    padding-top: 56.25%; 
    margin: 30px auto;
    height: 0; 
  }
  .page-recruit-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .page-recruit-list {
    display: flex;
    flex-direction: column;
  }
  .page-recruit-flow {
    width: 90%;
    margin: 30px auto 0;
    flex-direction: column;
    gap: 30px;
  }
  .page-recruit-flow-card {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  } 
  .page-recruit-flow-txt {
    text-align: center;
  } 
  .page-recruit-contact {
    width: 80%;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  .page-recruit-contact-txt {
    font-size: 16px;
  }
  .page-recruit-contact-info {
    font-size: 20px;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .page-recruit-contact-info img {
    margin-right: 5px;
    height: 20px;
  }  
}

/* page-access */
.page-access {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.page-access-title {
  font-size: 64px;
  line-height: 1;
  font-family: "Urbanist", sans-serif;
  font-weight: 400; 
  color: #9E8474;   
}
.page-access-map {
  width: 100%;
  max-width: 1000px;
  height: 450px;
  margin: 60px auto 0;
}
.page-access-detail {
  width: 100%;
  max-width: 800px;
  margin: 50px auto 0;
}
.page-access-detail-title {
  font-size: 48px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.page-access-detail-title span {
  font-size: 24px;
  margin-left: 30px;
}
.page-access-table {
  width: 100%;
  max-width: 800px;
  margin: 30px auto 0;
  border-collapse: collapse;
  line-height: 1.6;
}
.page-access-table th {
  text-align: left;
  vertical-align: top;
  padding: 10px 0;
  font-weight: 600;
  width: 140px;
  white-space: nowrap;
  font-weight: normal;
}
.page-access-table td {
  padding: 10px 15px;
}

@media (max-width: 1024px) {
  .page-access {
    width: 90%;
  }
  .page-access-title {
    font-size: 42px;
  }
  .page-access-map {
    height: 450px;
    margin: 30px auto 0;
  }
  .page-access-detail {
    width: 100%;
    max-width: 800px;
    margin: 50px auto 0;
  }
  .page-access-detail-title {
    font-size: 30px;
  }
  .page-access-detail-title span {
    font-size: 18px;
    margin-left: 10px;
  }
  .page-access-table {
    margin: 10px auto 0;
  }
  .page-access-table tr {
    border-top: 1px solid #ddd;
  }
  .page-access-table tr:last-of-type {
    border-bottom: 1px solid #ddd;
  }
  .page-access-table th,
  .page-access-table td {
    display: block;
  }
  .page-access-table th {
    font-size: 18px;
    font-family: "Zen Old Mincho", serif; 
    font-weight: 400; 
    color: #9E8474;
    padding: 10px;
  }
  .page-access-table td {
    padding: 0 10px 20px;
  }
  .page-access-table td {
    font-size: 16px!important;
  }
  .table-access-hint::after {
    content: "⇠ 横にスクロールできます ⇢";
    display: block;
    font-size: 13px;
    text-align: center;
    padding-top: 10px;
  }
}


/* single-gallery */
.single-gallery {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.single-gallery-img {
  width: 300px;
  height: 400px;
  flex-shrink: 0;
}
.single-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-gallery-detail {
  flex: 1;
}
.single-gallery-sub {
  font-size: 24px;
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;    
}
.single-gallery-table {
  width: 100%;
  max-width: 800px;
  margin: 30px auto 0;
  border-collapse: collapse;
  line-height: 1.6;
}
.single-gallery-table th {
  text-align: left;
  vertical-align: top;
  padding: 10px 0;
  font-weight: 600;
  width: 140px;
  white-space: nowrap;
  font-weight: normal;
}
.single-gallery td {
  padding: 10px 15px;
}

@media (max-width: 1024px) {
  .single-gallery {
    flex-direction: column;
    width: 90%;
    margin: 30px auto 0;
    gap: 30px;
  }
  .single-gallery-img {
    width: 100%;
    max-width: 300px;
    height: auto;   
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
    overflow: hidden;
    margin: 0 auto;
  }
  .single-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .single-gallery-sub {
    font-size: 20px;

  }
  .single-gallery-table {
    margin: 10px auto 0;
  }
  .single-gallery-table th {
    width: 100px;
  }
}

/* single-blog */
.single-blog {
  margin-top: 60px;
}
.single-blog-day {
  font-size: 18px;
  color: #9E8474;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.single-blog-headline {
  font-size: 24px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;
  line-height: 1.6;
}
.single-blog-img {
  width: 700px;
  height: 400px;
  margin-top: 30px;
  flex-shrink: 0;
}
.single-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-blog-txt {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .single-blog {
    margin-top: 30px;
  }
  .single-blog-day {
    font-size: 16px;
  }
  .single-blog-headline {
    font-size: 20px;
  }
  .single-blog-img {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    margin: 30px auto;
  }
}

/* single-item */
.single-item {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.single-item-img {
  width: 500px;
  height: 500px;
  flex-shrink: 0;
}
.single-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-item-headline {
  font-size: 24px;
  color: #9E8474;
  font-family: "Zen Old Mincho", serif; 
  font-weight: 400;
  line-height: 1.3;
}
.single-item-txt {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .single-item {
    width: 90%;
    margin: 30px auto 0;
    flex-direction: column;
    gap: 30px;
  }
  .single-item-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
  .single-item-headline {
    font-size: 20px;
  }
  .single-item-txt {
    margin-top: 20px;
  }
}

/* page-list-btn */
.page-list-btn {
  margin-top: 60px;
  text-align: center;
}
.page-list-viewmore {
  display: inline-block;
  background-color: #736C63; 
  padding: 4px 80px;
  color: #fff;
  border-radius: 30px; 
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.page-list-viewmore:hover {
  opacity: 0.8;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 1024px) {
  .page-list-btn {
    margin-top: 30px;
  }
  .page-list-viewmore {
    padding: 4px 50px;
    color: #fff;
  }
}

/* animations */
.animation-title
{
	transition-duration:1.5s;
	opacity: 0;
	transform: translateY(1rem);
}
.animation-title.active
{
	opacity: 1.0;
	transform: translateY(0rem);
}
.animation-slide-left
{
	transition-duration:2.5s;
	opacity: 0;
	transform: translateX(-4rem);
}
.animation-slide-left.active
{
	opacity: 1.0;
	transform: translateX(0rem);
}
.animation-slide-right
{
	transition-duration:2.5s;
	opacity: 0;
	transform: translateX(4rem);
}
.animation-slide-right.active
{
	opacity: 1.0;
	transform: translateX(0rem);
}
.animation-fadein-01
{
	transition-duration:1.5s;
	opacity: 0;
	transform: translateY(4rem);
}
.animation-fadein-01.active
{
	opacity: 1.0;
	transform: translateY(0rem);
}
.animation-fadein-02
{
	transition-duration:1.5s;
	opacity: 0;
	transform: translateY(4rem);
  transition-delay: 0.5s;
}
.animation-fadein-02.active
{
	opacity: 1.0;
	transform: translateY(0rem);
}

@media (max-width: 1024px) {
  .animation-slide-left
  {
    transition-duration:2.5s;
    opacity: 0;
    transform: translateY(-1rem);
  }
  .animation-slide-left.active
  {
    opacity: 1.0;
    transform: translateY(0rem);
  }
  .animation-slide-right
  {
    transition-duration:2.5s;
    opacity: 0;
    transform: translateY(1rem);
  }
  .animation-slide-right.active
  {
    opacity: 1.0;
    transform: translateY(0rem);
  }
}

/* 投稿カスタマイズ */

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.single-blog-txt strong {
  font-weight: bold;
}

/* 番号なしリスト（ul） */
.single-blog-txt ul {
    list-style-type: disc; /* 丸型のマーカー */
    margin: 20px 0; /* 上下の余白 */
}

.single-blog-txt ul li {
    color: #333; /* テキストカラー */
    font-size: 16px; /* フォントサイズ */
    line-height: 1.6; /* 行間 */
}

.single-blog-txt ul ul {
    list-style-type: circle; /* サブリストのマーカー */
    margin-top: 10px;
}

/* 番号付きリスト（ol） */
.single-blog-txt ol {
    list-style-type: decimal; /* 数字のスタイル */
    margin: 20px 0;
    padding-left: 40px;
}

.single-blog-txt ol li {
    color: #444; /* テキストカラー */
    font-size: 16px;
    line-height: 1.8; /* 行間 */
}

.single-blog-txt ol ol {
    list-style-type: lower-alpha; /* サブリストのスタイル（アルファベット） */
    margin-top: 10px;
}

/* 引用（blockquote） */
.single-blog-txt blockquote {
    font-style: italic; /* 斜体 */
    color: #666; /* テキストカラー */
    border-left: 4px solid #ccc; /* 左側の線 */
    margin: 20px 0; /* 上下の余白 */
    padding: 10px 20px; /* 内側の余白 */
    background-color: #f9f9f9; /* 背景色 */
}

.single-blog-txt blockquote p {
    margin: 0; /* 段落の余白を削除 */
}

.single-blog-txt blockquote cite {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}
