
/*
Theme Name: Le Coeur Salon Original
Author: Rayzy Inc@H.H
Description: Le Coeur SalonのオリジナルWordPressテーマです。
Version: 1.0
Text Domain: le_coeur_salon
Domain Path: /languages
Theme Folder: le_coeur_salon
*/


/* ==============================================
統一スタイル
============================================== */
: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: #ffffff;
  --color-glay: #888895;
  --color-lite-glay: #DDDDDD;
  --color-tosai-teal: #00B8A0;
  --deep-charcoal: #15151D;
  --off-Wwhite: #F7F7F5;
  --muted-brass: #B7A06A;
  --river-bed: #44515C;
}

body {
  font-family: "Ubuntu", "Inter",  "Noto Sans JP", sans-serif;
  color: var(--deep-charcoal);
  background: var(--off-Wwhite);
}
.main {
  position: relative;
  overflow: hidden;
}
p {
  font-family: "Inter",  "Noto Sans JP", sans-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: "Inter",  "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
}

.container {
  width: 100%;
  margin: 120px 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;
}

li{
  list-style: none;
}

@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(--deep-charcoal);
  font-family: "Ubuntu", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
}

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

.site__title--left {
  text-align: left;
  width: 85%;
    margin: 0 auto;
}
.under_border{
  border: 0.5px solid var(--deep-charcoal);
    margin-top: 10px;
    margin-bottom: 50px;
}
.site__text--left{
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
.site__text--left.container-flex{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 85%;
  margin: 0 auto;
}

.container-flex li{
  font-weight: bold;
}

img{
  width: 100%;
}

@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: 24px;
  }
}

/* ==============================================
ヘッダー
============================================== */
.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: 0px auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__inner.header__bg{
  background: var(--deep-charcoal);
}

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

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

.header__nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.header__nav ul li 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(7px, -8px);
}

/* 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__overlay ul {
    display: inline-block;
    gap: 35px;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .header__overlay ul li {
    margin: 25px;
  }
}
/* ==============================================
フッター
============================================== */


.cta--container{
  background: var(--deep-charcoal);
  width: 100%;
  margin: 70px auto 0;
}
.cta__title{
  color: var(--color-white);
    padding-top: 50px;
    display: block;
    margin: 0;
    font-size:50px;
}
.cta__sub-title{
  color: var(--color-white);
}
.contact__container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 40px 0;
}
.contact__container img{
  width: 70%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.footer__contact__button img{
  width: 100%;
}
.footer__contact__button{
  display: inline-block;
    margin: 0;
    background-color: var(--deep-charcoal);
    padding: 2% 5%;
    border-radius: 5px;
    border: 1px solid var(--color-white);
    position: relative;
  z-index: 1;
  overflow: hidden;
  transition: border-color 1s;
}
.footer__contact__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-white);
  z-index: -1;
  transition: width 1s ease;
}
.footer__contact__button .button {
  color: var(--color-white);
  text-decoration: none;
  transition: color 1s ease;
  position: relative;
  z-index: 2;
}
.footer__contact__button:hover::before {
  width: 100%;
}

.footer__contact__button:hover .button {
  color: var(--deep-charcoal);
}

.footer__copy{
  position: static;
    color: #ffffff;
    margin: 0 auto;
    text-align: center;
}
.page__footer__copy{
  padding: 10px 0;
}
/* ご予約・お問合せ */
.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__logo img {
  max-width: 170px;
  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: 5px 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;
    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_bg{
  position: absolute;
    display: inline-block;
    top: 13%;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.firstview__catchcopy_bg img{
  max-width: 540px;
  width: 100%;
}

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

.firstview__catchcopy_title h2 {
  font-family: "Ubuntu", sans-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: "Ubuntu", sans-serif;
  font-size: clamp(11px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.contact__button{
  display: inline-block;
    margin: 0 auto;
    background-color: var(--color-tosai-teal);
    padding: 10px 50px;
    border-radius: 5px;
    margin-top: 60px !important;
}

.contact__button .button{
  color: var(--color-white);
}

.firstview__footer__copy {
  position: absolute;
    display: inline-block;
    color: var(--color-white);
    bottom: 3%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

/* 投稿セクション */
.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;
}
.ma_container{
  width: 85%;
    margin: 40px auto;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    justify-content: center;
}
.ma_container_inner{
  display: flex;
  width: 213px;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}
.ma_container_nm{
  color: var(--deep-charcoal);
    font-family: Ubuntu;
    font-size: 55px;
    font-style: normal;
    font-weight: var(--font-weight-700, 700);
    line-height: 76px;
    border-bottom: 2px solid var(--deep-charcoal);
}
.ma_container_txt{
  align-self: stretch;
    color: var(--deep-charcoal);
    text-align: center;
    font-family: 'Inter';
    font-size: var(--font-size-16, 16px);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--line-height-32, 32px);
}

@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: "Inter", sans-serif;
  font-size: min(2.3vw,1.5rem);
  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;
  }
}

/* ==============================================
下層ページタイトル
============================================== */
.section__pageTitle{
  width: 85%;
  margin: 0 auto;
  margin-top: 200px;
}

.pageBeside__line{
  position: absolute;
  display: inline-block;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  margin: 0 auto;
  text-align: center;
  z-index: 0;
}

.pageBeside__line__2{
  position: absolute;
  display: inline-block;
  top: 150%;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  margin: 0 auto;
  text-align: center;
  z-index: 0;
}

.pageBeside__line__3{
  position: absolute;
  display: inline-block;
  top: 196%;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  margin: 0 auto;
  text-align: center;
  z-index: 0;
}

.pageBeside__line__4{
  position: absolute;
  display: inline-block;
  top: 196%;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  margin: 0 auto;
  text-align: center;
  z-index: 0;
}



.pageTitle__container {
  width: 100%;
  height: 100%;
}
.pageTitle__img img{
  width: 100%;
}

.pageTitle__container.blend{
  position: relative; 
  border-radius: 20px;
  width: 85%;
    margin: 0 auto;
}

.pageTitle__container.blend::before {
  -webkit-appearance: none;
  appearance: none;
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  fill: rgba(255, 255, 255, 0.01);
  stroke-width: 1px;
  stroke: rgba(255, 255, 255, 0.25);
  mix-blend-mode: plus-lighter;
  box-shadow: 2.286px 2.13px 9.84px 0 rgba(255, 255, 255, 0.08) inset, 1.357px 1.264px 4.92px 0 rgba(255, 255, 255, 0.08) inset;
  filter: drop-shadow(-1.858px -1.732px 12px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(10.279999732971191px);
  border-radius: inherit;
  z-index: -1; /* 文字より背面に配置 */
  }

.pageTitle__contents.blend_inner{
  isolation: isolate;
  color: var(--deep-charcoal);
  display: flex;
  max-width: 1198px;
  width: 90%;
    padding: 30px 0;
    margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.pageTitle__img{
  position: absolute;
    display: inline-block;
    top: 20%;
    right: 0;
    margin: 0 auto;
    text-align: center;
    z-index: -1;
    width: 100%;
    max-width: 600px;
}

.pageTitle__contents {
  color: var(--deep-charcoal);
  width: 60%;
  display: flex;
  max-width: 675px;
  flex-direction: column;
  align-items: flex-start;
  gap: 51px;
}

.pageTitle__contents__inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}


.pageTitle__contents__inner.box{
  width: 100%;
  text-align: center;
  align-items: center;
}

.pageTitle__contents__inner.box p{
  font-weight: bold;
}

ul.custom-list{
  display: flex;
  align-items: center;
  gap: 23px;
  align-self: stretch;
}

ul.custom-list li{
  list-style: none;
  color: var(--deep-charcoal);
  font-size: 16.266px;
  font-style: normal;
  line-height: 26.025px;
}
.custom-list-box{
  display: flex;
    width: 33%;
    padding: 25px 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: #ffffff;
}

.pageTitle__contents__txt_inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  align-self: stretch;
}
@media screen and (max-width: 1303px) {
  ul.custom-list {
    width: 60%;
    flex-wrap: wrap;
    margin: 0 auto;
}
.custom-list-box {
  display: flex;
  width: 100%;
  text-align: left;
}
}
@media screen and (max-width: 768px) {
  ul.custom-list {
    width: 100%;
}
.pageTitle__contents {
  width: 100%;
}

}

.pageTitle__sub{
  color: var(--color-glay);
  font-family: "Ubuntu", sans-serif;
  font-size: 33.85px;
  font-style: normal;
  font-weight: 500;
  line-height: 41.8px;
}

.pageTitle__mini{
  color: var(--deep-charcoal);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.025px;
}

.pageTitle__contents h2 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(58px, 6vw, 80px);
  color: var(--deep-charcoal);
  line-height: 1;
  letter-spacing: 0.05em;
}

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

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

.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;
  }
}

/* ==============================================
ABOUT
============================================== */

/* Regional Opportunities */
/* .container__about__regional{

} */

.about__regional__location{
  color: var(--color-tosai-teal);
  font-weight: bold;
}

/* ==============================================
デザイン表（プロフィール・仕様）
============================================== */

.table-container {
  width: 100%;
  margin: 40px auto;
  border: 1px solid var(--color-lite-glay);
  border-radius: 8px;
  overflow: hidden; 
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table th, 
.profile-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-lite-glay);
  font-size: 16px;
  line-height: 1.5;
}

.profile-table th {
  width: 30%;
  background-color: var(--color-white);
  color: var(--deep-charcoal);
  font-weight: 700;
}

.profile-table td {
  background-color: var(--color-white);
  color: var(--deep-charcoal);
}

.profile-table tbody tr:last-child th,
.profile-table tbody tr:last-child td {
  border-bottom: none;
}


/* === スマートフォン表示 (ブレイクポイント: 768px以下) === */
@media screen and (max-width: 768px) {
  .table-container {
      border: none; /* スマホでは外枠を消す */
      border-radius: 0;
  }
  .profile-table,
  .profile-table tbody,
  .profile-table tr,
  .profile-table th,
  .profile-table td {
      display: block; /* すべてブロック要素にし、縦積みにする */
      width: 100%;
  }

  /* 各項目をカードのように見せる */
  .profile-table tr {
      margin-bottom: 10px;
      border: 1px solid var(--color-glay);
      border-radius: 8px;
      overflow: hidden;
  }

  /* ヘッダーセル（項目名）のスタイル（スマホ時） */
  .profile-table th {
      border-right: none;
      border-bottom: 1px solid var(--color-glay);
      background-color: var(--color-tosai-teal); /* **強調色**を使用して目立たせる */
      color: var(--color-white);
      text-align: center; 
      font-size: 14px;
      padding: 10px;
  }

  /* データセル（内容）のスタイル（スマホ時） */
  .profile-table td {
      border-bottom: none;
      background-color: var(--color-white);
  }
}

/* ご予約・お問い合わせ */
.info__cnt--container {
  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);
}

/* ==============================================
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;
  }
}

.page__sub__title__mini{
  color: var(--deep-charcoal);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: 700;
}

.page__sub__title{
  color: var(--deep-charcoal);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.site__text--left.container-flex.page__li{
  gap: 3px;
}

.container__w85{
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin: 0 auto;
}


/* コンタクト */
/* 基本設定 */
/* フォームの外枠 */
.form-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.form-container {
  background-color: #fff;
  padding: 60px 50px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* 各入力グループ */
.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.required {
  color: #e67e22; /* オレンジがかった赤（アスタリスク用） */
  margin-left: 4px;
}

/* 入力フィールド共通 */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: border-color 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #57b8a4;
}

/* セレクトボックスの背景色調整 */
select {
  background-color: #eff7fa; /* 画像に合わせた薄い水色の背景 */
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* メッセージエリア */
textarea {
  resize: vertical; /* 縦方向のみリサイズ可 */
}

/* プライバシーポリシー */
.privacy-policy {
  margin-top: 30px;
  font-size: 14px;
  color: #333;
}

.privacy-policy a {
  color: #57b8a4;
  text-decoration: underline;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-container input {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

/* 送信ボタン */
.submit-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.submit-btn {
  background-color: var(--color-tosai-teal); /* ターゲットのティール（エメラルドグリーン） */
  color: #fff;
  padding: 14px 60px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #46a390;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .form-container {
      padding: 30px 20px;
  }
}

.process_img{
  width: 100%;
}
.process_img.sp_only {
  width: 70%;
  margin: 0 auto;
}

.container-flex-f{
  display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 30px;
}
.container-flex-f-txt{
  width: 50%;
    align-items: center;
    text-align: center;
    color: var(--deep-charcoal);
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}
.container-flex-f img{
  width: 50%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.container-flex-f.flex-reverse {
  flex-direction: row-reverse;
}
.container-flex-f:nth-child(2)>.container-flex-f-txtbox>.container-flex-f-txt{
  width: 100%;
}
.container-flex-f:nth-child(3)>.container-flex-f-txtbox>.container-flex-f-txt{
  width: 100%;
}
.container-flex-f-txtbox{
  width: 50%;
}
.container-flex-f p{
  text-align: center;
}

/* ニュース */
.site__text--left.container-flex.news_container_gap{
  display: flex;
padding: 26px;
flex-direction: column;
align-items:flex-start;
gap: 10px;
border-radius: 5px;
background: var(--color-white-solid, #FFF);
}
.site__text--left.container-flex.news_container_gap.article{
background: none;
}
.site__text--left.container-flex.article{
  width: 100%;
}
.news_container{
  display: flex;
  align-self: stretch;
  align-items: flex-start;
  gap: 14px;
}
.news_category{
  display: flex;
    height: 24px;
    padding: 2px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    color: var(--color-white);
}
.news_category.ma{
  background: var(--color-tosai-teal);
}
.news_category.recruiting{
  background: var(--muted-brass);
}
.news_category.consulting{
  background: var(--river-bed);
}
.news_date{
  color: var(--Natural-Gray, var(--color-grey-53, #8A8884));
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: var(--font-size-14, 14px);
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
}
.news__list__title{
  color: var(--deep-charcoal);
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: var(--font-size-20, 20px);
    font-style: normal;
    font-weight: var(--font-weight-700, 700);
}
/* 記事リンク用 */
.news-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

/* ページネーション */
:root {
  --color-active: #56b39d;    /* アクティブ時のグリーン */
  --color-border: #e2e2e2;    /* 枠線の薄いグレー */
  --color-bg-light: #f9f9f9;  /* 背景の極薄いグレー */
  --color-text: #1a1a1a;      /* 文字色 */
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  justify-content: center;
  margin: 50px;
}

/* 各アイテムの共通スタイル */
.pagination__item,
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;               /* 高さ */
  padding: 0 16px;            /* 左右の余白 */
  text-decoration: none;
  color: var(--color-text);
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.2s ease;  /* ホバー時の動きを滑らかに */
}

/* 数字ボタン（1, 2, 3など）の幅を一定にする */
.pagination__item:not(.pagination__arrow),
.pagination .page-numbers:not(.prev):not(.next) {
  min-width: 44px;
  padding: 0;
}

/* アクティブ（現在地）のスタイル */
.pagination__item.is-active,
.pagination .page-numbers.current {
  background-color: var(--color-active);
  border-color: var(--color-active);
  color: #ffffff;
  pointer-events: none;       /* クリック不可にする場合 */
}

/* ホバー時の挙動（アクティブ以外） */
.pagination__item:hover:not(.is-active),
.pagination .page-numbers:hover:not(.current) {
  background-color: #f0f0f0;
  border-color: #d0d0d0;
}

/* 矢印アイコンの微調整（必要であれば） */
.pagination__arrow,
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-weight: 400;
}
.site__text--left.container-flex.news_container_gap:hover{
  box-shadow: 0 0 30px 0 rgba(223, 212, 212, 0.1);
  cursor: pointer;
}
.container.section__about--container.news{
  margin: 70px auto 0;
}


/* コンタクト */
.section__pageTitle.contact__section{
  margin: 70px auto;
}
.contact__container.other{
  justify-content: center;
  gap: 30px;
  align-items: center;
}
.contact__container.other .mail__container{
  background-color: var(--color-white);
    width: 50%;
    text-align: center;
    border-radius: 7px;
    padding: 40px 0;
}
.hours{
  color: var(--color-white);
  text-align: center;
}
.mail__container__w{
  color: var(--deep-charcoal);
  text-align: center;
  font-size: 17.305px;
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
}
.mail__container__w__num{
  color: var(--color-tosai-teal);
  line-height: 2rem;
}

.site__text--left.container-flex.office_container{
  display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row;
}
.office_container_inner{
  display: flex;
    width: 33%;
    flex-direction: column;
    align-items: center;
    gap: 37px;
}
.office_container_inner img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.office_container_inner.office{
  color: var(--deep-charcoal);
  text-align: center;
  font-family: Ubuntu;
  font-size: 25px;
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  width: 100%;
}
.office_container_inner_txt{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.office_container_inner_txt p{
  color: var(--deep-charcoal);
    text-align: center;
    font-size: var(--font-size-16, 16px);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
}
@media screen and (max-width: 768px) {
  .contact__container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact__container img{
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .pageTitle__contents h2 {
    font-size:45px;
  }
  .breadcrumb__list {
    font-size: 16px;
  }
  .pageTitle__sub {
    font-size: 22.85px;
    line-height: 33.8px;
  }
  .container {
    margin: 70px auto 0;
  }
  .custom-list-box {
    justify-content: flex-start;
    padding: 15px 5px;
  }
  p {
    line-height: 1.35;
  }
  .table-container {
    margin: 0px auto;
  }
  .cta__title {
    padding-top: 30px;
    padding-bottom: 15px;
    font-size: 26px;
}

.pageBeside__line {
  top: 12%;
}
.section__pageTitle {
  margin-top: 130px;
}
.contact__container.other {
  gap: 10px;
}
.contact__container.other .mail__container {
  width: 48%;
  max-height: 175px;
}
.mail__container__w {
  font-size: 15.305px;
  margin-top: 5px;
}
.mail__container__w__num {
  font-size: 11px;
}
p {
  font-size: 13px;
}
.hours {
  padding-bottom: 30px;
}
.site__text--left.container-flex.office_container {
  flex-wrap: wrap;
}
.office_container_inner {
  gap: 22px;
  width: 100%;
}
.office_container_inner.office {
  font-size: 18px;
}
.office_container_inner_txt {
  gap: 10px;
}
.office_container_inner_txt p {
  font-size: 13px;
}

.header__toggle {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 30px; /* ボタンの横幅 */
  display: flex;
  flex-direction: column;
  gap: 6px; /* 線と線の間の隙間 */
}

.header__toggle span {
  display: block;
  width: 100%; /* 親（button）の幅いっぱいに広げる */
  height: 3px;
  background: var(--color-white);
  /* 変数が効かない時のためのフォールバック */
  background-color: #ffffff; 
  transition: all 0.3s ease;
}
}



@supports (-webkit-touch-callout: none) {
  .pageTitle__container.blend::before {
    mix-blend-mode: normal !important;
    background-blend-mode: normal !important;
  }
}


.category-tag {
  display: inline-block;
  background-color: #5bb8a4;
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 3px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 15px 0;
  color: #1a1a1a;
}

.post-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
}


/* 画像プレースホルダー */
.main-image-placeholder {
  width: 70%;
    margin: 0 auto;
  margin-bottom: 40px;
}

/* 本文スタイル */
.post-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.post-content p {
  margin-bottom: 20px;
}

.support-list {
  margin-bottom: 30px;
  padding-left: 20px;
}

.support-list li {
  margin-bottom: 10px;
  position: relative;
}

/* SNSボタン */
.social-share {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 50px 0 40px 0;
}

.share-btn {
  text-decoration: none;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  min-width: 80px;
  text-align: center;
}

.x-btn { background-color: #000; }
.linkedin-btn { background-color: #3b7bb3; }
.facebook-btn { background-color: #4a80dc; }

/* 記事ナビゲーション */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 50px;
}

.nav-box {
  text-decoration: none;
  color: inherit;
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.nav-box:hover {
  background-color: #efefef;
}

.nav-label {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 8px;
}

.nav-title {
  display: block;
  font-weight: bold;
  font-size: 0.9rem;
}

.next { text-align: right; }

/* 戻るボタン */
.back-to-news {
  text-align: center;
}

.btn-dark {
  display: inline-block;
  background-color: #1a1a1e;
  color: white;
  text-decoration: none;
  padding: 15px 80px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* スマホ対応調整 */
@media (max-width: 600px) {
  .article-nav {
      grid-template-columns: 1fr;
  }
  h1 {
      font-size: 1.5rem;
  }
  .btn-dark {
      width: 100%;
      box-sizing: border-box;
  }
  .main-image-placeholder {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
}
}

.sp_only{
  display: none;
}
.pc_only{
  display: block;
}



/* ==========================================================================
   Mobile Styles (max-width: 768px)
   ========================================================================== */

   @media (max-width: 768px) {
    /* M&A Support (01-05のボックス) */
    .ma_container {
      display: flex;
        flex-wrap: wrap;
    }
  
    .ma_container_inner {
      display: flex;
      align-items: center;
      background-color: #f9f9f9;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 4px;
    }
  
    .ma_container_nm {
      font-size: 1.5rem;
      font-weight: bold;
      margin-right: 0px;
      opacity: 0.6;
    }
  
    .ma_container_txt {
      font-size: 0.95rem;
      line-height: 1.4;
      margin: 0;
    }
    .pc_only{
      display: none;
    }
    .sp_only{
      display: block;
    }
    .section__pageTitle {
      margin: 170px auto 0 !important;
  }

  }

.pageVertical__line {
  position: absolute;
  display: inline-block;
  top: 0;
  bottom: 0;
  left: 3%;
  width: 1px;
  background: var(--deep-charcoal);
  margin: 0 auto;
  text-align: center;
  z-index: 0;
}

.section__pageTitle {
  position: relative;
  width: 85%;
  margin: 200px auto 0;
}

.pageBeside__line {
  position: absolute;
  top: -85px; 
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: #000;
  z-index: 0;
}




/* Common Sub-title */
.sub-title {
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}
.sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 2px;
  background: var(--accent-color);
}

/* About Section */
.top-about {
  padding: 100px 0;
}

.container_aboutsection {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 白いカード部分 */
.about-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 60px 60px 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

/* ハミ出している画像 */
.about-image {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

/* テキストコンテンツ */
.about-content {
  width: 100%;
}

/* タイトル部分の装飾 */
.section-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--deep-charcoal);
}
.section-title.white{
  color:var(--color-white);
}

.section-title .line {
  width: 40px;
  height: 1px;
  background-color: #333;
  margin-right: 15px;
}

.section-title .accent {
  color: var(--color-tosai-teal);
  margin-right: 2px;
}

.about-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

/* ボタン */
.about-btn {
  display: inline-block;
  border: 1.5px solid #333;
  padding: 12px 60px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #333;
  color: #fff;
}

/* レスポンシブ対応（スマホ表示用） */
@media (max-width: 992px) {
  .about-card {
    padding: 120px 30px 40px;
    margin-top: 50px;
  }
  .about-image {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  .about-content {
    text-align: center;
  }
  .section-title {
    justify-content: center;
  }
  .section-title.left{
    justify-content: left;
  }
  
  .about-content h2 {
    font-size: 1.3rem;
  }
  .about-content p {
    font-size: 13px;
  }
}



/* News Section */
.news-section {
  padding: 80px 0;
}
.news-item {
  border-bottom: 1px solid #ddd;
}
.news-meta {
  margin-bottom: 10px;
}
.category {
  font-size: 0.7rem;
  padding: 3px 10px;
  color: #fff;
  margin-right: 15px;
  font-weight: bold;
}
.cat-ma { background: var(--accent-color); }
.cat-recruiting { background: #b09e86; }
.date { color: #999; font-size: 0.85rem; }
.news-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.news-item p {
  color: #666;
  font-size: 0.9rem;
}

:root {
  --accent-mint: #26c6da;
  --service-brown: #8b735b;
}

/* サービスセクション専用のコンテナ */
.container_servicesection {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- Service Main --- */
.service-main {
  position: relative;
  background-color: var(--deep-charcoal);
  color: #fff;
  padding-top: 80px;
  overflow: hidden;
}

.main-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-text-content {
  width: 50%;
  padding-bottom: 80px;
  z-index: 2;
}

.section-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 30px;
}

.section-title .line {
  width: 40px;
  height: 1px;
  background-color: var(--deep-charcoal);
  margin-right: 15px;
}

.section-title .accent { color:var(--color-tosai-teal); }

.main-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 700;
}

.black-box-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 500px;
}

.btn-white-border {
  display: inline-block;
  color: var(--color-white);
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-white);
  border-image: initial;
  padding: 12px 50px;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 5px;
}

.btn-white-border:hover {
  background: var(--color-white);
  color: #000;
}

/* メイン画像 */
.service-main-image {
  width: 45%;
}

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

/* --- Service Grid --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

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

.card-image {
  border-radius: 4px;
  margin-bottom: 25px;
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-no {
  font-size: 0.8rem;
  color: #888;
  display: block;
  margin-bottom: 10px;
}

.service-no::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #ccc;
  margin: 10px auto;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-top: 10px;
  font-weight: bold;
}
.section-title .line.white {
  background: var(--color-white) !important;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .main-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-text-content, .service-main-image {
    width: 100%;
  }
  .service-text-content {
    padding-bottom: 40px;
    
  }
  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 50px;
  }
  .main-heading { font-size: 1.3rem; }
  .service-main { 
    margin-bottom: 50px;
    padding-bottom: 40px;
   }
   .black-box-content p {
    font-size: 13px;
   }
}

.container_newssection{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

:root {
  --accent-mint: #26c6da;
  --bg-gray: #f9f9f9;
  --text-main: #1a1a1a;
  --text-sub: #888;
}

.process-section {
  padding: 100px 0;
  background-color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.container_process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title Style */
.section-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.section-title .line {
  width: 40px;
  height: 1px;
  background-color: var(--text-main);
  margin-right: 15px;
}

.process-main-heading {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

/* Process Flow Layout */
.process-flow {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.process-item {
  flex: 1;
  position: relative;
  text-align: center;
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.process-item:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: #eee;
}

/* Step Number Styling */
.step-num {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--color-tosai-teal);
  margin-bottom: 15px;
  display: block;
  letter-spacing: 0.1em;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  line-height: 1.3;
}

/* Connector Arrows (Desktop) */
.process-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: #ddd;
  font-size: 1rem;
  z-index: 10;
}



/* Smartphone (Vertical List) */
@media (max-width: 1024px) {
  .process-flow {
    flex-direction: column;
  }
  .process-item {
    flex: 0 0 100%;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    text-align: left;
  }
  .step-num {
    margin-bottom: 0;
    margin-right: 25px;
    font-size: 1.1rem;
    min-width: 30px;
  }
  .step-content h3 {
    font-size: 1.1rem;
  }
  
  /* Connector Arrows (Mobile) */
  .process-item:not(:last-child)::after {
    display: block;
    content: "↓";
    bottom: -25px;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
  }
}