@charset "UTF-8";
.f-cta-area{
    display: none;
}
.en-typo{
        font-family: "Libre Caslon Display", serif;
}
.ja-typo{
        font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}
.page-template-page_lp_artmake{
    background-color: #F4F2EE;
}
:root {
  --text-color: #4B4640;
  --background-color: #F4F2EE;
  --sub-background-color: #EEE9E3;
  --border-color: #D5D1C8;
  --card-bg-color: #F8F7F3;
  --main-color: #8E8578;
  --secondary-color: #A5A093;
  --accent-color: #A68A63;
  --header-bg: #ffffff;
}

a{
    text-decoration: none!important;
}

.lp-wrap{
      background-color: var(--background-color);
}
/* Base Styles (BEM: l-header) */
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.l-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
h1.l-header__logo{
    margin-bottom: 0;
}
h1.l-header__logo img{
    width: 133px;
    height: 54px;
    margin-bottom: 4px;
}
.l-header__logo-link {
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
}

.l-header__logo-link .en-typo {
  font-size: 28px;
  line-height: 1;
}

.l-header__logo-sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Navigation */
.l-header__nav {
  margin-left: auto;
  margin-right: 40px;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}

.l-header__list {
  display: flex;
  list-style: none;
  gap: 16px;
}

.l-header__link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
  transition: opacity 0.3s;
  position: relative;
}

.l-header__link:hover {
  opacity: 0.7;
}

.l-header__item:not(:last-child)::after {
  content: "/";
  margin-left: 16px;
  color: var(--border-color);
  font-weight: 300;
}

/* Reserve Button */
.l-header__btn-reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none;
  width: 180px;
  height: 60px;
  border-radius: 12px;
  transition: background-color 0.3s;
  font-size: 18px;
  line-height: 1.4;
}

.l-header__btn-reserve:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.l-header__btn-sub {
  font-size: 12px;
  margin-bottom: 0px;
}

/* Hamburger (Hidden on Desktop) */
.l-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 110;
}

.l-header__hamburger-bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--main-color);
  margin: 5px 0;
  transition: 0.3s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .l-header__nav {
    margin-right: 20px;
  }
  .l-header__list {
    gap: 15px;
  }
  .l-header__item:not(:last-child)::after {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .l-header__inner {
    height: 70px;
  }
  
  .l-header__nav,
  .l-header__action {
    display: none;
  }

  .l-header__hamburger {
    display: block;
  }
  h1.l-header__logo img{
    width: 103px;
    height: 42px;
    margin-bottom: 4px;
}
.l-header__btn-reserve {
  width:240px;
  height: 60px;
}
}
/* --- ドロワーの基本スタイル --- */
.l-drawer {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態は画面外 */
  width: 100%;
  height: 100vh;
  background-color: var(--background-color);
  z-index: 90;
  transition: right 0.4s ease;
  padding-top: 100px; /* ヘッダー分空ける */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-drawer.is-open {
  right: 0; /* 表示状態 */
}

/* --- ハンバーガーのアニメーション (×印への変化) --- */
.l-header__hamburger.is-active .l-header__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.l-header__hamburger.is-active .l-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-active .l-header__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- ドロワー内のメニュー（必要に応じて） --- */
.l-drawer__nav {
  width: 100%;
  text-align: center;
}

.l-drawer__list {
  list-style: none;
  padding: 0;
}

.l-drawer__item {
  margin: 25px 0;
}
.l-drawer__item a{
      font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}

.l-drawer__link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 18px;
  display: block;
}


.p-fv {
  width: 100%;
  height: 700px; 
  background-color: var(--background-color);
  background-image: url('../images/artmake-lp/fv-pc.jpg');
  background-size:cover;
  background-position: center center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.p-fv__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns:1.2fr 0.8fr;
  gap: 40px;
}

/* --- Content Styles --- */
.p-fv__sub-lead {
  display: inline;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 16px;
  font-size: clamp(14.00px, calc(1.28vw + 9.22px), 19.00px);
  color: var(--main-color);
  margin-bottom: 24px;
  width: 100%;
    text-align: center;
}

header.p-fv__header {
    text-align: center;
}

.p-fv__main-lead {
font-size: clamp(32.00px, calc(9.69vw + -4.35px), 70.00px);
  line-height: 1.3;
  color: var(--text-color);
    margin-top: 40px !important;
    margin-bottom: 60px;
  text-align: center;
}
.p-fv__main-lead img{
margin-inline: auto;
}
.p-fv__main-lead span{
font-size: clamp(24.00px, calc(6.12vw + 1.04px), 48.00px);
}
@media (min-width: 1024px) and (max-width: 1439px) {
.p-fv__inner{
        grid-template-columns: 0.6fr 0.4fr;
}
}
/* 特徴リスト */
.p-fv__features {
  display: grid;
  /* 3カラムのグリッドを作成 */
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
  max-width: 560px;
  margin-inline: auto;
}

.p-fv__feature-item {
  /* 共通設定 */
  width: 100%; /* gridの子要素として幅一杯に */
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(13.00px, calc(0.77vw + 10.13px), 16.00px);
  line-height: 1.5;
  background-color: var(--card-bg-color);
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
  color: var(--main-color);
  padding: 16px 8px;
  min-height: 80px;
}


/* アクションエリア */
.p-fv__action{
        max-width: 560px;
    margin-inline: auto;
}
.p-fv__action-lead {
  text-align: center;
  margin-bottom: 24px;
  margin-top: 40px;
    line-height: 1.5;
  color: var(--text-color);
  font-size: clamp(21.00px, calc(1.28vw + 16.22px), 26.00px);
}

.p-fv__buttons {
  display: flex;
  gap: 16px;
}

.p-fv__btn {
  flex: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 15px;
  font-size: clamp(18.00px, calc(0.51vw + 16.09px), 20.00px);
  transition: transform 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.p-fv__btn:hover {
  transform: translateY(-2px);
}
.p-fv__btn-icon{
    margin-right: 8px;
}
.p-fv__btn--reserve {
  background-color: var(--main-color);
  color: #fff;
  
}
.p-fv__btn--reserve:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.p-fv__btn--tel {
  background-color: var(--card-bg-color);
  color: var(--text-color);
  border: 1px solid var(--main-color);
  letter-spacing: 2px;
}

.p-fv__image-spacer {
  display: none;
}

/* --- Responsive (SP) --- */
@media (max-width: 768px) {
  .p-fv {
    background-image: url('../images/artmake-lp/top-sp.jpg');
    background-position: top center;
         background-size: contain;
        background-repeat: no-repeat;
    align-items: flex-start;
        height: auto;
  }
.p-fv__feature-item {
    border-radius: 12px;
    padding: 12px 8px;
    min-height: auto;
    font-size: 13px;
  }
  .p-fv__inner {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
    gap: 0;
  }
.p-fv__sub-lead{
    margin-bottom: 16px;
    max-width: 500px;
        display: block;
        margin-inline: auto;
}
.p-fv__main-lead{
    margin-bottom: 16px;
    line-height: 1.4;
}
  .p-fv__image-spacer {
    display: block;
    height: 30vh;
  }

  .p-fv__content {
    padding: 30px 20px;
    margin: 0 -20px;
  }

.p-fv__features {
    gap: 8px;
    margin-bottom: 24px;
  }

  .p-fv__buttons {
flex-direction: row;
  }
  
  .p-fv__empty-space {
    display: none;
  }
  .p-fv__btn--tel{
    letter-spacing: normal;
  }

}

/* 特徴紹介セクション */
.p-feature {
  padding: 120px 0 80px 0;
  background-color: var(--sub-background-color);
}


/* セクション見出し */
.p-feature__head {
  text-align: center;
 font-size: clamp(28.00px, calc(4.59vw + 10.78px), 46.00px);
  color: var(--text-color);
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-feature__head-sub {
 font-size: clamp(22.00px, calc(5.36vw + 1.91px), 43.00px);
  color: var(--secondary-color);
  margin-bottom: 8px;
  line-height: 1;
}

/* 個別アイテム */
.p-feature__item {
  margin-bottom: 80px;
}

.p-feature__item-title-group {
  display: flex;
     align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.p-feature__item-number {
font-size: clamp(70.00px, calc(9.69vw + 33.65px), 108.00px);
  line-height: 1;
  color: var(--accent-color);
}

.p-feature__item-title {
font-size: clamp(21.00px, calc(3.83vw + 6.65px), 36.00px);
  line-height: 1.4;
  color: var(--text-color);
  margin-top: 10px;
  margin-bottom: 0!important;
}

/* コンテンツボディ（横並びエリア） */
.p-feature__item-body {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 反転用モディファイア */
.p-feature__item--reverse .p-feature__item-body {
  flex-direction: row-reverse;
}

.p-feature__item-image {
  flex: 0 0 41%;
  border-radius: 40px 0px 0 0px;
  overflow: hidden;
}

.p-feature__item--reverse .p-feature__item-image{
        border-radius: 0 40px 0px 0;
    }


.p-feature__item-content {
  flex: 1;
}

.p-feature__item-lead {
  font-size: clamp(16.00px, calc(2.04vw + 8.35px), 24.00px);
  color: var(--text-color)!important;
  margin-top: 0!important;
  margin-bottom: 20px!important;
  line-height: 1.6;
  border-bottom: 0!important;
  padding-bottom: 0!important;
}
.p-feature__item-lead span{
    color: var(--accent-color);
}


.p-feature__item-text {
 font-size: clamp(14.00px, calc(1.02vw + 10.17px), 18.00px);
  color: var(--text-color);
  margin-bottom: 0;
}

/* --- Responsive (SP) --- */
@media (max-width: 768px) {
  .p-feature {
    padding: 60px 0 40px 0;
  }
.p-feature__head{
    align-items: flex-start;
    margin-bottom: 60px;
}
  .p-feature__item {
    margin-bottom: 40px;
  }

  .p-feature__item-body,
  .p-feature__item--reverse .p-feature__item-body {
    flex-direction: column;
    gap: 0;
  }

  .p-feature__item-image {
    flex: 0 0 auto;
    width: 100%;
   border-radius: 40px 0px 0 0px;
  }
.p-feature__item-image img {
    width: 100%;
}
  .p-feature__item-content {
    background-color: var(--card-bg-color);
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
    width: 100%;
  }

.p-feature__item-lead{
text-align: center;
}
}

/* case */
.p-case {
  position: relative;
  width: 100%;
  background-color: var(--background-color); /* 背景色 #F4F2EE */
}

.p-case__hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('../images/artmake-lp/case-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;

}

/* 下部の斜め区切りパーツ */
.p-case__hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* clip-pathで右肩上がりの斜めを表現 */
  height: 100px;
  background-color: var(--background-color);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.p-case__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  position: relative;
  z-index: 2; /* 三角形より上に配置 */
}

/* キャッチコピー帯 */
.p-case__label-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 120px;
}

.p-case__label {
  background-color: var(--main-color); /* #8E8578 */
  color: #ffffff;
  padding: 8px 24px;
  font-size: clamp(18.00px, calc(2.04vw + 10.35px), 26.00px);
  letter-spacing: 0.05em;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}
.obi-big{
    font-size: clamp(18.00px, calc(3.83vw + 3.65px), 33.00px);
}
@media (min-width: 1024px) {
.p-case__label-group{
    margin-top: -40px;
}
}
/* タイトル */
.p-case__title-group {
  color: var(--text-color);
}

.p-case__sub-title {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 4px;
  line-height: 1;
  font-size: clamp(22.00px, calc(5.36vw + 1.91px), 43.00px);
}

.p-case__main-title {
 font-size: clamp(28.00px, calc(4.59vw + 10.78px), 46.00px);
  letter-spacing: 0.1em;
  margin-top: 0!important;
}

/* --- Responsive (SP) --- */
@media (max-width: 768px) {
  .p-case__hero {
    height: auto;
    min-height: 275px;
    padding: 40px 0 0px;
    display: block;
    background-image: url('../images/artmake-lp/case-bg-sp.jpg');
  }

  .p-case__inner {
    padding: 0; /* ラベルを端に寄せるため一旦リセット */
  }

  /* SP時：帯をウィンドウ左端に固定 */
  .p-case__label-group {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
  }

  .p-case__label {
    font-size: 14px;
    padding: 6px 16px;
  }

  /* タイトルだけ元のインナー幅に合わせる */
  .p-case__title-group {
    padding: 120px 20px 0; 
  }

  .p-case__sub-title {
    font-size: 24px;
  }

  .p-case__main-title {
    font-size: 28px;
  }

  .p-case__hero::after {
    height: 40px; 
  }
}

.p-menu {
  padding: 80px 0;
}

.p-menu__inner {
  max-width: 1024px;
  margin: 60px auto 0 auto;
  padding: 0 20px;
}

/* 見出し */
.p-menu__head {
  text-align: center;
  font-size: clamp(20.00px, calc(1.02vw + 16.17px), 24.00px);
  color: var(--text-color);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 24px;
}

/* 見出し下の線 */
.p-menu__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
}

/* グリッドレイアウト */
.p-menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.p-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  height: 44px;
  background-color: var(--card-bg-color);
  border: 1px solid var(--secondary-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  position: relative;
  font-size: 14px;
}

.p-menu__link:hover {
  background-color: #fff;
  border-color: var(--main-color);
  transform: translateY(-2px);
}

.p-menu__link::before {
  content: "";
background-image: url(../images/artmake-lp/case-menu-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 19px;
  margin-right: 6px;
}

/* 右側の矢印 */
.p-menu__link::after {
  content: "▼";
color: var(--main-color);
  margin-left: 0px;
}

.p-menu__label {
  flex: 1;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* --- Responsive (SP) --- */
@media (max-width: 1024px) {
  .p-menu__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .p-menu {
    padding: 60px 0;
  }
.p-menu__inner{
    margin: 24px auto 0 auto;
}
  .p-menu__head {
    font-size: 20px;
  }

  .p-menu__list {
    grid-template-columns: 1fr; /* 縦積み */
    gap: 12px;
    margin-top: 0px;
  }

  .p-menu__link {
    height: 44px;
    padding: 0 15px;
  }
  
  .p-menu__label {
    font-size: 13px;
  }
}

/* 症例詳細 */

.p-case-detail {
  padding: 100px 0;
  background-color: var(--background-color);
  overflow: hidden; /* 背景英字のハミ出し対策 */
}

.p-case-detail__item,.p-case-detail__item--reverse {
  margin-bottom: 80px;
}

/* ヘッダーエリア */
.p-case-detail__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 120px;
}

.p-case-detail__title {
  font-size: clamp(21.00px, calc(3.83vw + 6.65px), 36.00px);
  color: var(--text-color);
  position: relative;
  z-index: 2;
  margin-bottom: 0!important;
}

.p-case-detail__title-accent {
  color: var(--accent-color);
  margin-right: 0.2em;
  font-size: clamp(35.00px, calc(4.34vw + 18.74px), 52.00px);
}

/* 背後の大きな英字 */
.p-case-detail__title-bg {
  position: absolute;
  right: -5%;
  top: 0;
  transform: translateY(-50%);
  font-size: clamp(92.00px, calc(17.09vw + 27.91px), 159.00px);
  color: #f1ede8; 
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

/* ボディ（画像とテキスト） */
.p-case-detail__body {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  align-items: center;
}
.p-case-detail__image img {
    width: 100%;
}
/* 反転用 */
.p-case-detail__item--reverse .p-case-detail__body {
  flex-direction: row-reverse;
}

.p-case-detail__item--reverse .p-case-detail__image {
border-radius: 40px 0px 0 0px;
}

.p-case-detail__image {
  flex: 0 0 55%;
  border-radius: 0px 40px 0 0px;
  overflow: hidden;
}

.p-case-detail__content {
  flex: 1;
}

/* 茶色の帯見出し */
.p-case-detail__lead-badge {
  background-color: var(--accent-color);
  color: #fff!important;
  padding: 12px 20px 9px 19px!important;
  font-size: clamp(18.00px, calc(1.28vw + 13.22px), 23.00px);
  text-align: center;
  margin-bottom: 24px!important;
  font-weight: normal;
  margin-top: 0!important;
}

.p-case-detail__sub-lead {
  font-size: clamp(16.00px, calc(1.02vw + 12.17px), 20.00px);
  color: var(--accent-color);
  margin-bottom: 20px;
  text-align: center;
    font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}

.p-case-detail__text {
font-size: clamp(12.00px, calc(1.02vw + 8.17px), 16.00px);
  line-height: 2;
  color: var(--text-color);
  margin-bottom: 0;
}

/* --- Responsive (SP) --- */
@media (max-width: 768px) {
  .p-case-detail {
    padding: 60px 0;
  }

  .p-case-detail__head {
    margin-bottom: 30px;
    margin-top: 60px;
  }

  .p-case-detail__title-bg {
    right: -10px;
  }

  .p-case-detail__body,
  .p-case-detail__item--reverse .p-case-detail__body {
    flex-direction: column;
    gap: 0;
  }
.p-case-detail__text{
    line-height: 1.6;
}
  .p-case-detail__image {
    width: 100%;
    margin-bottom: 0;
    border-radius: 0px 40px 0 0;
  }

  .p-case-detail__content {
    width: 100%;
  }

  .p-case-detail__lead-badge {
    margin-top: 0;
    font-size: 16px;
    padding: 15px;
  }

  .p-case-detail__sub-lead {
    margin-top: 16px;
    margin-bottom: 16px;

  }

  .p-case-detail__text-box {
    padding: 0 10px;
  }
  .p-case-detail__item,.p-case-detail__item--reverse {
  margin-bottom: 40px;
}
}

.p-case-sub__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* アイテム内レイアウト */
.p-case-sub__item {
  display: flex;
  flex-direction: column;
}

.p-case-sub__title {
  font-size: clamp(20.00px, calc(1.02vw + 16.17px), 24.00px);
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 0px!important;
  margin-top: 0!important;
}

/* 見出し下の装飾線 */
.p-case-sub__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background-color: var(--accent-color);
}

.p-case-sub__image {
  width: 100%;
  background-color: #ddd;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}

.p-case-sub__text {
font-size: clamp(12.00px, calc(1.02vw + 8.17px), 16.00px);
  line-height: 1.8;
  color: var(--text-color);
  text-align: justify;
}

/* --- Responsive (SP) --- */
@media (max-width: 768px) {
  .p-case-sub__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .p-case-sub__head-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .p-case-sub__title {
    flex: 1;
    text-align: left;
    margin-bottom: 0!important;
    padding-bottom: 0;
    order: 2;
    letter-spacing: 0!important;
  }

  .p-case-sub__title::after {
    display: none; /* SP時は線を消す */
  }

  .p-case-sub__image {
    flex: 0 0 170px; /* 画像の幅を固定 */
  
    margin-bottom: 0;
    order: 1; /* 画像を左に */
  }
  .p-case-sub__image img{
    object-fit: cover;

  }

  .p-case-sub__text {
    font-size: 13px;
    margin-bottom: 0;
  }
}

/* artist */
.p-artist {
  position: relative;
  padding-bottom: 120px;
    background-color: var(--sub-background-color);
    margin-top: 120px;
    padding-top: 120px;
}

/* 上部の斜め区切り */
.p-artist__slope {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--sub-background-color);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}


/* セクションタイトル */
.p-artist__head {
  text-align: center;
  margin-bottom: 80px;
}

.p-artist__head-title {
  position: relative;
font-size: clamp(28.00px, calc(4.59vw + 10.78px), 46.00px);
  margin-bottom: 24px;
}

.p-artist__head-bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
font-size: clamp(141.00px, calc(4.59vw + 123.78px), 159.00px);
  opacity: 0.07;
  color: var(--accent-color);
  line-height: 1;
}

.p-artist__head-lead {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 24px;
font-size: clamp(16.00px, calc(1.53vw + 10.26px), 22.00px);
}

/* リストレイアウト */
.p-artist__list {
    max-width: 1080px;
  display: flex;
  gap: 100px;
  margin-inline: auto;
}

.p-artist__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}



/* ビジュアルエリア（画像 + 氏名） */
.p-artist__visual {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.p-artist__image {
  width: 100%;
  border-radius: 0px 40px 0 0px;
  overflow: hidden;
}

.p-artist__item--reverse .p-artist__image{
border-radius: 40px 0px 0 0px;
}

/* 氏名（縦書き） */
.p-artist__name-group {
  position: absolute;
    top: 40px;
    right: 16px;
  writing-mode: vertical-rl; /* 縦書き設定 */
  display: flex;
      flex-direction: column-reverse;
  color: var(--text-color);

}

.p-artist__item--reverse .p-artist__name-group {
  right: auto;
  left: 20px;
}


.p-artist__name {
font-size: clamp(16.00px, calc(5.10vw + -3.13px), 36.00px);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.p-artist__name-en {
font-size: clamp(10.00px, calc(2.55vw + 0.43px), 20.00px);
  color: var(--secondary-color);
  margin-right: 10px;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-left: 0px;
}
.p-artist__item--reverse .p-artist__name-en{
    margin-right: 0px;
}
/* ボタン・注釈 */
.p-artist__info {
  width: 100%;
  text-align: center;
}

.p-artist__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  max-width: 90%;
  margin-inline: auto;
}

.p-artist__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 15px;
  padding: 8px 8px;
font-size: clamp(12.00px, calc(1.53vw + 6.26px), 18.00px);
}
.p-artist__btn--ig{
    flex-basis: 40%;
}
.p-artist__btn--ig span{
    position: relative;
        display: flex;
    gap: 8px;
    align-items: center;
}
.p-artist__btn--ig span:before{
    content: "";
    background-image: url('../images/artmake-lp/icon-ig.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 25px;
    height: 25px;
}
.p-artist__btn--line{
    flex-basis: 60%;
}
.p-artist__btn--line span{
    position: relative;
        display: flex;
    gap: 8px;
    align-items: center;
}
.p-artist__btn--line span:before{
    content: "";
    background-image: url('../images/artmake-lp/icon-line.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 25px;
    height: 25px;
}
.p-artist__btn--ig {
  background-color: #fff;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}
.p-artist__btn--line:hover{
    color: #fff;
    opacity: 0.8;
}

.p-artist__btn--line {
  background-color: var(--main-color);
  color: #fff;
}

.p-artist__note {
  font-size: 11px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 0;
}
  .p-artist__item--reverse .p-artist__name-group {
    flex-direction: column;
  }
@media (min-width: 1024px) {
.p-artist__item.p-artist__item--reverse{
margin-top: 60px;
}
}
.p-artist__ftxt{
    text-align: center;
    font-size: clamp(18.00px, calc(0.51vw + 16.09px), 20.00px);
    margin-top: clamp(52.00px, calc(7.14vw + 25.21px), 80.00px);
}

/* --- Responsive (SP) --- */
@media (max-width: 768px) {
    .p-artist {
  padding-bottom: 80px;
    margin-top: 80px;
    padding-top: 80px;
}

.p-artist__head-bg{
    white-space: nowrap;
}
.p-artist__slope{
top: -30px;
    height: 30px;
}
.p-artist__head {
    margin-bottom: 32px;
}
  .p-artist__list {
  /*  flex-direction: column; */
  gap: 20px;
  }

  .p-artist__visual {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .p-artist__image {
width: 86%;
  }
  .p-artist__image img {
    width: 100%;
}

  /* SP時の氏名：画像からはみ出す配置 */
  .p-artist__name-group {
        top:-8px;
right: 2vw;
  }

  .p-artist__item--reverse .p-artist__name-group {
    left: 2vw;
  }
.p-artist__item--reverse .p-artist__visual{
justify-content: flex-end;
}
  .p-artist__name {
  margin-bottom: 0;
  }
.p-artist__name-en{
    margin-right: 0;
    margin-bottom: 0;
    white-space: nowrap;
}
  .p-artist__btns {
    align-items: center;
        max-width: 100%;
        gap: 12px;
        flex-direction: column;
  }

  .p-artist__btn {
    max-width: 240px;
    width: 100%;
  }
  .p-artist__btn--ig span:before{
    width: 20px;
    height: 20px;
}
.p-artist__btn--line span:before{
    width: 20px;
    height: 20px;
}
.p-artist__list-2nd{
  margin-top: 12px;
}
.p-artist__visual{
  margin-bottom: 16px;
}
}

@media (min-width: 449px) and (max-width: 1024px) {
    .p-artist__image {
        width: 95%;
    }
}

/* price */
.p-price {
  padding-bottom: 60px;
}

/* 料金ヘッダー帯 */
.p-price__head {
  background-color: var(--accent-color); /* #A68A63 */
  color: #fff;
  text-align: center;
  padding: 40px 0;
  position: relative;
  margin-bottom: 80px;
}

/* 下向き三角形の装飾 */
.p-price__head::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 20px solid var(--accent-color);
  z-index: 1;
}

.p-price__head-en {
  display: block;
font-size: clamp(20.00px, calc(2.55vw + 10.43px), 30.00px);
  margin-bottom: 4px;
    line-height: 1;
    color: var(--border-color);
}

.p-price__head-title {
font-size: clamp(24.00px, calc(3.57vw + 10.61px), 38.00px);
  letter-spacing: 0.1em;
  margin-top: 0!important;
  margin-bottom: 0!important;
}

.p-price__lead {
  text-align: center;
font-size: clamp(14.00px, calc(1.02vw + 10.17px), 18.00px);
font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
  color:#756F67;
  margin-bottom: 60px;
  line-height: 1.6;
}

/* アーティスト導入エリア */
.p-price__artist-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: transparent;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dotted var(--border-color);
}
.p-price__artist-intro.second,
.p-price__artist-intro.third,
.p-price__artist-intro.fourth{
    margin-top: 60px;
}
.smb-accordion__item__title{
    font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}
.smb-accordion{
    margin-bottom: 16px;
}

.p-price__artist-icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-image: url('../images/artmake-lp/nagamori.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.p-price__artist-intro.second .p-price__artist-icon {
  background-image: url('../images/artmake-lp/inoue.jpg');
}

.p-price__artist-intro.third .p-price__artist-icon {
  background-image: url('../images/artmake-lp/segawa.jpg');
}

.p-price__artist-intro.fourth .p-price__artist-icon {
  background-image: url('../images/artmake-lp/yamaguchi.jpg');
}

.p-price__artist-info {
  margin-right: 20px;
  text-align: left;
}

.p-price__artist-role {
font-size: clamp(14.00px, calc(0.77vw + 11.13px), 17.00px);
  color: var(--secondary-color);
  margin-bottom: 0px;
}

.p-price__artist-name {
font-size: clamp(21.00px, calc(1.02vw + 17.17px), 25.00px);
  color: var(--text-color);
  margin-bottom: 0;
}

.p-price__artist-action .p-artist__btn{
font-size: clamp(14.00px, calc(0.51vw + 12.09px), 16.00px);
width: 300px!important;
}

.p-price__btn-line:hover {
  opacity: 0.8;
}
  .p-price__artist-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.smb-accordion__item__body{
padding: 18px 0!important;
}
/* --- Responsive (SP) --- */
@media (max-width: 768px) {
  .p-price__head {
    padding: 16px 0;
    margin-bottom: 40px;
  }

  .p-price__artist-intro {
    flex-direction: column; /* 縦積み */
    gap: 20px;
    text-align: center;
  }

.p-price__lead{
    margin-bottom: 40px;
}
  .p-price__artist-info {
    margin-right: 0;
  }

  .p-price__artist-icon {
    width: 85px;
    height: 85px;
  }
.p-price__artist-action .p-artist__btn{
    width: 180px;
}

}




/* faq */
#p-faq .p-price__head{
    background-color: var(--card-bg-color);
}
#p-faq .p-price__head-title{
    color: var(--text-color);
    letter-spacing: 0;
}
#p-faq .p-price__head::after{
border-top: 20px solid var(--card-bg-color);
}

/* CTA */
.p-cta {
  padding: 120px 0;
  background-color: #EDE7E0;
  margin-top: 120px;
}

.p-cta__inner {

}

.p-cta__head {
  text-align: center;
  margin-bottom: 60px;
}

.p-cta__title {
font-size: clamp(23.00px, calc(1.28vw + 18.22px), 28.00px);
  color: var(--text-color);
  margin-bottom: 15px;
}

.p-cta__sub-title {
 font-size: clamp(14.00px, calc(0.51vw + 12.09px), 16.00px);
  color: var(--secondary-color);
}

/* カードレイアウト (PC) */
.p-cta__artist-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  max-width: 1056px;
    margin-inline: auto;
}

.p-cta__artist-card {
  background-color: #F2EEEA;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
}

.p-cta__artist-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 auto 16px;
  overflow: hidden;
}
.p-cta__artist-icon img{
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.p-cta__artist-name {
  font-size: 20px;
  margin-bottom: 20px;
}

.p-cta__btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 44px;
  border-radius: 15px;
  font-size: 16px;
  transition: opacity 0.3s;
}
.p-cta__btn-line:hover {
  opacity: 0.8;
color: #fff;
}
.p-cta__btn-line span{
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}
.p-cta__btn-line span:before{
    content: "";
    background-image: url('../images/artmake-lp/icon-line.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 25px;
    height: 25px;
}

/* 共通アクション */
.p-cta__common {
  text-align: center;
  position: relative;
  padding-top: 0px;
}

/* 横線装飾 */
@media (min-width: 1024px) {
.p-cta__common-lead::before {
  content: "";
  position: absolute;
     top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  z-index: 1;
}
}
.p-cta__common-lead{
  position: relative;
  margin-bottom: 32px;
}
.p-cta__common-lead span{
  font-size: 20px;
  margin-bottom: 30px;
  background: #EDE7E0;
  padding: 0 20px;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
  z-index: 2;
    position: relative;
}

.p-cta__common-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.p-cta .p-fv__btn {
font-size: clamp(22.00px, calc(1.02vw + 18.17px), 26.00px);
}
.cta-min{
    font-size: clamp(16.00px, calc(0.51vw + 14.09px), 18.00px);
    margin-right: 8px;
}

.p-cta__common-btn--web {
  background-color: var(--main-color);
  color: #fff;
}

.p-cta__common-btn--tel {
  background-color: #fff;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.p-cta__common-btn-sub {
  font-size: 12px;
  margin-bottom: 4px;
}

/* --- Responsive (SP) --- */
@media (max-width: 768px) {
  .p-cta__title {
 padding: 0 20px;
  }
.p-cta {
    padding: 80px 0;
    margin-top: 80px;
}
  .p-cta__artist-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .p-cta__common-lead{
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
  }
.p-cta__artist-list{
    margin-bottom: 60px;
}
  /* SP時は横並びカード形式 */
  .p-cta__artist-card {
    display: flex;
    align-items: center;
    padding: 15px;
    text-align: left;
  }

  .p-cta__artist-icon {
    width: 90px;
    height: 90px;
    margin: 0 20px 0 0;
  }

  .p-cta__artist-info {
    flex: 1;
  }

  .p-cta__artist-name {
    margin-bottom: 10px;
  }

  .p-cta__common-btns {
    flex-direction: column;
    align-items: center;
  }
.p-cta__common .p-fv__buttons{
    flex-direction: column;
    gap: 12px;
}
.p-cta__common .p-fv__buttons a{
    padding: 12px 0;
    border-radius: 20px;
}
.p-cta__common .p-fv__btn--tel{
    font-size: 18px!important;
}
}

/* access */
.p-access {
  padding-bottom: 100px;
}

/* アクセス用ヘッダー背景 */
.p-access__head {
  height: 300px;
  background-image: url('../images/artmake-lp/access-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
.p-access__head__inner .p-price__head-en,
.p-flow__inner .p-price__head-en{
    color: var(--secondary-color);
}
.p-access__head__inner {
    text-align: center;
}

.p-access__body {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* 情報エリア */
.p-access__info {
  flex: 1;
}

.p-access__clinic-name {
  font-size: 22px;
  color: var(--accent-color);
  margin-bottom: 30px;
  line-height: 1.4;
}

.p-access__details {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.p-access__note {
  display: inline-block;
  border: 1px solid var(--main-color);
  padding: 12px 30px;
  font-size: 15px;
  color: var(--main-color);
}
.p-access__map-frame{
    position: relative;
}
.p-access__map-frame iframe {
    filter: grayscale(1);
}
.p-access__map-frame:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
        top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
    background: #948266;
}
.p-access__details p{
    margin-bottom: 0.2rem;
}
/* マップエリア */
.p-access__map {
  flex: 1;
}

.p-access__map-frame {
  width: 100%;
  background-color: #e0e0e0;
  border: 1px solid var(--border-color);
}

/* --- Responsive (SP) --- */
@media (max-width: 768px) {
  .p-access {
    padding-bottom: 60px;
  }

  .p-access__head {
    height:160px;
    margin-bottom: 40px;
  }

  .p-access__body {
    flex-direction: column;
    gap: 40px;
  }

  .p-access__clinic-name {
font-size: clamp(18.00px, calc(0.51vw + 16.09px), 20.00px);
    margin-bottom: 24px;
  }

  .p-access__details {
    margin-bottom: 24px;
  }

  .p-access__note {
    display: block;
    text-align: center;
    padding: 15px;
  }

  .p-access__map {
    width: 100%;
  }

}

/* flow */
.p-flow {
  padding: 20px 0 80px 0;
  background-color: var(--background-color);
}

.p-flow__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-flow__head {
  text-align: center;
  margin-bottom: 80px;
}

/* リスト構造 */
.p-flow__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-flow__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* ステップ番号と縦線 */
.p-flow__step-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 80px;
}

.p-flow__number {
font-size: clamp(46.00px, calc(4.85vw + 27.82px), 65.00px);
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.8;
}

.p-flow__line {
  width: 1px;
  height: 100px; /* コンテンツ量に応じて調整、またはflexで伸ばす */
  background-color: var(--border-color);
  margin: 10px 0;
}

/* コンテンツ */
.p-flow__content {
  flex: 1;
  padding-top: 15px;
}

.p-flow__step-title {
font-size: clamp(20.00px, calc(1.02vw + 16.17px), 24.00px);
  color: var(--accent-color);
  margin-bottom: 20px;
}

.p-flow__text {
font-size: clamp(14.00px, calc(0.51vw + 12.09px), 16.00px);
  line-height: 1.8;
  color: var(--text-color);
  text-align: justify;
}

/* --- Responsive (SP) --- */
@media (max-width: 768px) {

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

  .p-flow__item {
    gap: 20px;
  }

  .p-flow__step-group {
    flex: 0 0 50px;
  }

  .p-flow__line {
    height: 170px;
  }

  .p-flow__content {
    padding-top: 10px;
    padding-bottom: 0px;
  }

  .p-flow__step-title {
    margin-bottom: 15px;
  }

  .p-flow__text {
    font-size: 14px;
  }
}

/* mayu-flow */
.p-art-flow{
  padding: 120px 0 0px 0;

}
.p-art-flow .p-feature__head{
font-size: clamp(24.00px, calc(4.08vw + 8.69px), 40.00px);
}
.p-flow-sub{
  font-size: clamp(12.00px, calc(1.53vw + 6.26px), 18.00px);
  margin-top: 12px;
}

.p-flow-swiper__inner {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
    padding: 0 0px 40px 60px;
}


/* --- Responsive (SP) --- */
@media (max-width: 768px) {
.p-art-flow{
  padding: 80px 0 0px 0;

}

}

.accordion-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid var(--secondary-color);
      border-radius: 15px;
padding: 8px 24px;
    font-size: 14px;
    margin-inline: auto;
}
.accordion-toggle-btn::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
  transform: rotate(45deg); /* 下向き矢印 */
  transition: transform 0.3s;
}

.accordion-toggle-btn.is-open::after {
  transform: rotate(-135deg);
}
.accordion-content {
max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-out, opacity 0.3s ease;
}
.accordion-content.is-open {
  max-height: 2000px;
  opacity: 1;
  margin-top: 20px;
}

#footer{
  margin-top: 0!important;
}

/* mayuflow */
.art-flow__num{
  font-size: 85px;
  line-height: 1;
  color: var(--secondary-color);
}
.art-flow__num__title{
  font-size: clamp(20.00px, calc(1.53vw + 14.26px), 26.00px);
  margin-bottom: 0;
}
.art-flow__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.art-flow__item p{
  font-size: clamp(14.00px, calc(0.51vw + 12.09px), 16.00px);
}
.art-flow-stepitem{
    margin-inline: auto;
    margin-bottom: 24px;
}


.art-flow__item.item-bg {
  position: relative;
  z-index: 0;
  padding: 80px 0 60px 0;
    margin-top: 80px;
    margin-bottom: 80px;
}

.art-flow__item.item-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);

  background: #F7F5F2;
  z-index: -1;
}

@media (max-width: 768px) {
.art-flow-stepitem{
    max-width: 600px;
}
.art-flow__item p{
      margin-block-start: 16px;
    }
.art-flow__item.item-bg {
  padding: 40px 0 30px 0;
    margin-top: 60px;
    margin-bottom: 40px;
}
}

.item-bg.last{
  margin-bottom: 0px;
}