@charset "utf-8";
* {
    font-family: 'Noto Serif JP', serif;
}
html {
  scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
}
.abs {
    position: absolute;
}
.rel {
    position: relative;
}
.mt10 {
    margin-top: 10px;
}
.fcr {
    color: #ff0000;
}
.fcp {
    color: #d28c92;
}
.fcb {
    color: #0047b2;
}
.fcsb {
    color: #0497FF;
}
.fsm {
    font-size: 19px;
}
.fsl {
    font-size: 21px;
}
.fsll {
    font-size: 23px;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}
.tac {
    text-align: center;
}
.bold {
    font-weight: bold;
}
.mark {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%,#ffff00 0%) repeat scroll 0 0;
}
#wrapper{
    margin: auto;
}
img,video {
    width: 100%;
    vertical-align: middle;
    margin-bottom: 10px;
}
p {
  color: #221612;
}
a {
  text-decoration: none;
}

@media only screen and (min-width: 767px){
    .pc {
        display: block;
    }
    .sp {
        display: none !important;
    }
    .pad {
        display: none;
    }
}

/* ▼ PC用（1025px以上） */
@media screen and (min-width: 1025px) {
  .pc {
    display: block;
  }
  .sp {
      display: none !important;
  }
  .pad {
      display: none;
  }
}

/* ▼ iPad用（768px～1024px） */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
  .sp {
      display: none !important;
  }
  .pad {
      display: block;
  }
}

/* ▼ SP用（767px以下） */
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
}
.sp {
    display: block;
}
.pad {
    display: none;
}
}


/*------------------ ヘッダー ------------------*/
header {
    background-color: #221612;
    color: #fff;
    padding: 8px 12px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box; 
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ハンバーガーメニュー */
.header-nav {
    flex: 0 0 auto;
}
.btn-trigger {
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 10px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
#btn01.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
#btn01.active span:nth-of-type(2) {
  opacity: 0;
}
#btn01.active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

/* ロゴ */
.header-logo {
    flex: 1;
    text-align: center;
}
.header-logo img {
    width: 195px;
    margin: 0 auto 3px;
}

/* 予約ボタン */
.beauty_logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  text-decoration: none; /* リンクの下線を消す */
}

.beauty_logo_inner {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.beauty_logo_inner p {
  font-size: 15px;
  color: #e77593;
  font-weight: bold;
  margin: 5px auto;
}

.beauty_logo_inner img {
  width: 25px;
  height: auto;
  margin: 0 auto;
  padding: 3px 0 0;
}

.fv_ttl {
  color: #fff;
  font-size: 4vw;
  line-height: 3.3333333333;
  letter-spacing: .1em;
  text-align: center;
  background: #d28c92;
  position: relative;
  z-index: 2;
  top: 37px;
}

/* ハンバーガーメニュー中身 */
.global-nav {
  position: fixed;
  top: 54px; /* headerの高さ分ずらす */
  left: 0;
  width: 100%;
  background-color: #74615a;
  color: #fff;
  max-height: 0; /* 初期は非表示 */
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 90;
}
.global-nav.open {
  max-height: 400px; /* メニュー展開 */
}
.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-nav ul li a {
  display: block;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.global-nav ul li a:hover {
  background: rgba(255,255,255,0.1);
}
/* 開いたとき */
#btn01.active ~ #g-nav {
  max-height: 300px; /* メニューの高さに合わせて調整 */
}
.global-nav ul .global-sns-btn a {
  padding: 10px 0px 0px 10px;
}
.global-sns-btn {
  display: flex;
  gap: 0px;
}
.global-sns-btn img {
  width: 70%;
  height: auto;
}

/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  header {
    padding: 21px 3%;
  }
  .header-logo img {
    width: 25.5rem;
    margin: 0 auto;
  }
  .btn-trigger {
    width: 40px;
    height: 30px;
  }
  .btn-trigger span {
    height: 4px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 13px;
  }
  #btn01.active span:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
  }
  #btn01.active span:nth-of-type(3) {
    transform: translateY(-13px) rotate(45deg);
  }
  .beauty_logo_inner {
    padding: 5px 10px;
  }
  .beauty_logo_inner p {
    font-size: 25px;
    margin: 3px auto;
  }
  .beauty_logo_inner a img {
    width: 35px;
    margin: -6px auto 3px;
  }
  .fv_ttl {
    font-size: 1.6vw;
    top: 69px;
  }
  .global-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* メニュー同士の間隔 */
    padding: 43px 0 10px;
  }
  /* 各メニュー項目 */
  .global-nav ul li {
    border-bottom: none; /* PCでは区切り線不要 */
  }
  .global-nav ul li a {
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background: none;
    border-bottom: none;
    transition: color 0.3s;
  }
  .global-nav ul li a:hover {
    color: #d3c48f;
    background: none;
  }
  .global-sns-btn {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .global-sns-btn img {
    width: 45px;
    height: auto;
    margin: 0;
  }
}
/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .global-sns-btn img {
    width: 45%;
  }
  .fv_ttl {
    font-size: 2.5vw;
    top: 38px;
  }
}


/*------------------ mv ------------------*/
.mv {
  width: 100%;
  margin-top: 37px;
}
.mv-inner {
  position: relative;
  width: 100%;
}
.mv-content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
.mv-content img {
  margin-bottom: 0px;
}
.mv-bg {
  position: relative;
  left: 0;
  width: 100%;
  z-index: 1;
}
.mv .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を全画面にフィット */
}
.swiper-pagination {
  bottom: 30px !important; /* ドット位置を少し上に */
}
.swiper-pagination-bullet {
  background: #fff; /* 白色のドット */
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
/* フェード中、アクティブ以外を完全非表示 */
.mv-swiper .swiper-slide {
  opacity: 0;
  transition: opacity 1s ease;
}
.mv-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.mv-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  position: relative;
  z-index: 2;
}
/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .swiper {
    z-index: 10 !important;
  }
  .mv {
    width: 100%;
    margin-top: 69px;
  }
}
/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .swiper {
    z-index: 10 !important;
  }
  .mv {
    width: 100%;
    margin-top: 38px;
  }
}

/*------------------ こだわり ------------------*/
.commitment {
    background-image: url("../img/gray_bg.png");
    background-size: 200%;
    background-position: center;
    background-repeat: repeat;
    margin-top: 0;
    padding: 55% 0 17%;
}
.commitment-inner {
    margin: 0 auto;
    margin: 0 7%;
}
.commitment-content {
    width: 100%;
    height: 100%;
}
.ttl {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    flex-direction: column;
}
.commitment-inner .ttl {
  position: relative;
  margin: 0 auto 15%;
  background-color: #433532;
  padding: 6% 0 8%;
  z-index: 1;
  border: solid 1px #fff;
}
/* 額縁SVG */
.commitment-inner .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96%;
  height: 90%;
  background: url("../img/ttl_frame.svg") no-repeat center center;
  background-size: contain; /* SVGの縦横比を保持して拡大縮小 */
  z-index: -1;  /* 背景として配置 */
  opacity: 0.7;
}
.commitment-inner .ttl h2 {
  font-size: 2.7rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.15em;
    margin: 0 auto -5px;
}
.commitment-inner .ttl img {
    width: 65%;
    height: auto;
    margin: 0 auto;
}
.commitment-inner .ttl p {
    font-size: 1.8rem;
    color: #fff;
    margin: -5px auto 0;
    font-family: 'Bodoni MT Condensed', serif;
}

.commitment-text {
  position: relative;
  margin-bottom: 110px;
}
.commitment-text .commitment-photo img {
    width: 105%;
    height: auto;
    margin: 0 auto;
    position: relative;
}
.commitment-box {
  padding: 20px;
  margin: 7% 1%;
  background-color: #fff;
  position: relative;
  border: solid 3px #a79144;
}
/* 見出し */
.commitment-heading {
  font-size: 24px;
  font-weight: bold;
  color: #a79144;
  margin: 0 0 15px;
  text-align: center;
  letter-spacing: 0.12em;
  background-color: #fff;
  padding: 10px 0;
  border: solid 3px #a79144;
}
/* 見出しの下の細ライン */
.commitment-heading::after {
  content: "";
  display: block;
  width: 280px;
  height: 4px;
  margin: 10px auto 0;
  background: url(../img/commitment_ber.png) no-repeat center;
  background-size: contain;
}
/* テキスト */
.commitment-box p {
  font-size: 20px;
  line-height: 1.8;
  color: #433532;
  text-align: left;
}

/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .commitment {
    padding: 9% 12% 12%;
    background-size: 100%;
  }
  .commitment-inner .ttl h2 {
    font-size: 4rem;
  }
  .commitment-inner .ttl img {
    width: 60%;
  }
  .commitment-photo {
    flex: 1;
    max-width: 48%;
  }
  .commitment-heading {
    font-size: 38px;
    margin: 0 18% 5%;
  }
  .commitment-heading::after {
    width: 500px;
  }
  .commitment-box p {
    font-size: 25px;
  }
  .commitment-inner .ttl {
    margin: 0 auto 7%;
    width: 65%;
    padding: 3% 0 4%;
  }
  .commitment-text .commitment-photo img {
    width: 125%;
    max-width: 800px;
    height: auto;
  }
  .commitment-inner {
    overflow: visible;
  }
  .commitment-box {
    max-width: 45%;
    margin: -30% 0 0 47%;
    left: 0;
    width: auto;
    padding: 50px 60px;
  }
  .commitment-text {
    margin-bottom: 10%; /* セクション間の余白 */
    gap: 15px;
  }
}

/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .commitment {
    padding: 8% 8% 16%;
  }
  .commitment-inner {
    overflow: visible;
  }
  .commitment-inner .ttl {
    margin: 0 auto 7%;
  }
  .commitment-inner .ttl img {
    width: 28%;
  }
  .commitment-inner .ttl h2 {
    font-size: 2.3rem;
    margin: 0 auto -5px;
  }
  .commitment-inner .ttl p {
    font-size: 1.5rem;
    color: #fff;
    margin: -5px auto 0;
  }
  .commitment-box {
    max-width: 50%;
    margin: -30% 0 0 50%;
    width: auto;
    padding: 16px;
  }
  .commitment-text {
    margin-bottom: 80px;
  }
  .commitment-heading {
    font-size: 22px;
    margin: 5%;
  }
  .commitment-heading::after {
    margin: 5px auto 0;
    width: 265px;
  }
  .commitment-box p {
    font-size: 18px;
    line-height: 1.8;
    margin: 5px;
  }
  .commitment-text .commitment-photo img {
    width: 60%;
  }
}



/*------------------ メニュー・料金 ------------------*/
.menu {
    background-color: #ffffff;
    background-size: 200%;
    background-position: center;
    background-repeat: repeat;
    margin-top: 0;
    padding: 12% 0;
}
.menu-inner .ttl {
  margin: 10% auto 15%;
}
.menu-inner .ttl h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d28c92;
  letter-spacing: 0.12em;
  margin: 0 auto -5px;
}
.menu-inner .ttl img {
  width: 85%;
  height: auto;
  margin: 0 auto;
}
.menu-inner .ttl p {
  font-size: 1.8rem;
  color: #d28c92;
  margin: -5px auto 0;
  font-family: 'Bodoni MT Condensed', serif;
}

.menu-container {
  margin: 0 5% 2%;
}
.menu-ttl {
  display: flex;
  margin: 4% 0 4% 2%;
}
.menu-container h3 {
  color: #a79144;
  font-size: 26px;
  margin: 0 3% 0;
  display: block;
}
.menu-container p {
  font-size: 20px;
  display: block;
  margin: 6% 2%;
  line-height: 175%;
}
.menu-ttl-left {
  background-color: #a79144;
  color: #fff;
  padding: 3px 6px;
  font-size: 21px;
  font-family: 'Bodoni MT Condensed', serif;
}
.menu-container p::after {
  content: "";
  display: block;
  width: 100%;         /* ラインの幅（装飾画像に合わせて調整） */
  height: 12px;         /* 画像の高さ */
  line-height: 175%;
  margin: 4% 0;
  background: url("../img/menu_ber.png") no-repeat center;
  background-size: contain; /* 横幅にフィットさせる */
}


.price-inner {
  text-align: center;
  margin: 0 auto;
}
/* 価格リスト */
.price-list {
  list-style: none;
  padding: 0;
  margin: -3px 3% 3% 2%;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.6;
  margin-bottom: 15px;
}
.price-list li::before {
  content: "◆";
  color: #422b20;
  font-size: 14px;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}
/* 左側テキスト */
.price-list .label {
  flex: 1;
  text-align: left;
  font-size: 17px;
}
.price-list .price {
  color: #d28c92;
  font-size: 33px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: right;
}
.price-list .price em {
  font-size: 18px;
  font-style: normal;
  margin-left: 2px;
  color: #d28c92;
}
/* 施術の流れボタン */
.flow-btn {
  padding: 12px 50px;
  border: 1px solid #422b20;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin: 0 auto;
  margin: 7% 20% 0;
  display: block;
  text-align: center;
}
.flow-btn:hover {
  background: #f8f8f8;
}
.flow-btn .arrow {
  font-size: 14px;
  margin-left: 6px;
}
.menu-wrap {
  margin-bottom: 12%;
}

/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .menu {
    background-size: 100%;
    padding: 9% 12% 7%;
  }
  .menu-inner .ttl {
    margin: 0% auto 3%;
  }
  .menu-inner .ttl h2 {
    font-size: 4rem;
    letter-spacing: 0.12em;
    margin: 0 auto;
  }
  .menu-inner .ttl img {
    width: 45%;
  }
  .menu-container {
    display: flex;
    align-items: stretch; /* 高さを揃えるポイント */
    gap: 30px; /* 画像とテキストの間隔 */
    margin: 0 5%;
  }
  .menu-container img {
    max-width: 40%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  /* テキスト部分 */
  .menu-text-wrap {
    flex: 1; /* 画像と同じ比率で幅を取る */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 縦方向でスペース調整 */
    padding: 20px 0; /* 内側余白 */
    box-sizing: border-box;
    width: 100%; /* 横幅を常に100%に */
  }
  .price-list {
    margin: 0;
  }
  .price-list .label {
    font-size: 21px;
  }
  /* タイトルや説明文の調整 */
  .menu-ttl {
    margin-bottom: 15px;
  }
  .menu-container h3 {
    font-size: 36px;
  }
  .menu-ttl-left {
    padding: 4px 9px;
    font-size: 34px;
  }
  .menu-container p {
    font-size: 24px;
    line-height: 180%;
    margin: 13px 0 0;
  }
  .menu-container p::after {
    margin: 2% 0;
}
  /* 価格リスト部分 */
  .price-inner {
    margin-top: auto;
    text-align: left;
    width: 100%; /* 親（menu-text-wrap）の幅いっぱいに広げる */
    box-sizing: border-box;
     /* paddingも含めて幅を管理 */
  }
  .price-list .price {
    font-size: 45px;
  }
  .price-list li {
    font-size: 20px;
    line-height: 1.6;
    padding: 0;
    margin-bottom: -8px;
  }
  .flow-btn {
    font-size: 20px;
    margin: 2% 30% 0;
  }
  .menu-wrap {
    margin-bottom: 6%;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1500px) {
  .menu-container h3 {
    font-size: 34px;
  }
  .menu-container p {
    font-size: 22px;
  }
  .price-list .label {
    font-size: 19px;
  }
  .price-list .price {
    font-size: 37px;
  }
  .price-list .price em {
    font-size: 15px;
  }
}
/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu {
    padding: 9% 5% 3%;
  }
  .menu-inner .ttl {
    margin: 0% auto 7%;
    font-size: 1.8rem;
  }
  .menu-inner .ttl h2 {
    font-size: 2.3rem;
}
  .menu-inner .ttl img {
    width: 42%;
  }
  .menu-inner .ttl p {
    font-size: 1.5rem;
    margin: -7px auto 0;
  }
  .menu-container {
    display: flex;
    align-items: stretch;
    gap: 30px;
    margin: 0 5% 4%;
  }
  .menu-container img {
    max-width: 50%; /* 画像の最大幅を50%に制限 */
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: -40px;
  }
  .menu-container h3 {
    font-size: 20px;
  }
  .menu-ttl-left {
    padding: 2px 6px;
    font-size: 19px;
  }
  .menu-container p {
    font-size: 18px;
    line-height: 170%;
  }
  .price-list li {
    font-size: 14px;
    line-height: 1.3;
    padding: 1px 0 0;
  }
  .menu-container p::after {
    margin: 3% 0;
  }
  .flow-btn {
    margin: 0 20%;
  }
}


/* アコーディオン中身 */
.price-acc-ttl {
  margin: 10% 6% 2%;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  color: #a79144;
}
.price-acc-ttl .jp {
  font-size: 21px;
  display: block;
  font-weight: 600;
}
.price-acc-ttl  .en {
  font-size: 18px;
  font-family: 'Bodoni MT Condensed', serif;
  font-weight: 400;
  letter-spacing: .1em;
  position: absolute;
  bottom: -18px;
}
.price-acc-ttl  .en.eyebrow,
.price-acc-ttl  .en.eyelash,
.price-acc-ttl  .en.exfoliation{
  left: 50%;
  transform: translateX(-50%);
}
.price-acc-ttl::before,
.price-acc-ttl::after {
  content: '';
  height: 1px;
  background: #D3C3BB;
  display: block;
  flex-grow: 1;
}
.price-acc-ttl::before {
  margin-right: 30px;
}
.price-acc-ttl::after {
  margin-left: 30px;
}

.step-box {
  margin: 0 3%;
  text-align: left;
  padding: 20px;
  line-height: 1.8;
}
/* STEPラベル */
.step-label {
  display: inline-block;
  background-color: #d28c92; 
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 130px;
  margin-bottom: 8px;
  letter-spacing: 1px;
  margin-right: 10px;
}
/* タイトル */
.step-title {
  font-size: 20px;
  font-weight: bold;
  color: #d28c92;
  margin: 0 0 5px;
  letter-spacing: 1px;
}
.step-sub-title {
  font-weight: bold;
  margin-bottom: 0;
}
.step-title-box {
  display: flex;
  align-items: center;
}
/* 説明文 */
.step-text {
  line-height: 1.9;
  color: #333;
  margin: 0;
  font-size: 19px;
}
.step-box img {
  margin: 5% 3% 5% 0;
}

/* 初期状態は非表示 */
.price-acc01,
.price-acc02,
.price-acc03 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
/* 開いた状態 */
.price-acc01.open,
.price-acc02.open,
.price-acc03.open {
  max-height: 5000px; /* 中身が十分表示される値に設定 */
  opacity: 1;
}
/* ▼矢印の回転アニメーション */
.flow-btn .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.flow-btn.open .arrow {
  transform: rotate(180deg);
}
.anno {
  font-size: 10px;
  color: gray;
  margin-top: -10px;
  display: inline-block;
}

/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .price-acc-ttl {
    margin: 4% 6% 2%;
  }
  .price-acc-ttl .jp {
    font-size: 25px;
    letter-spacing: 0.12em;
  }
  .price-acc-ttl .en {
    font-size: 18px;
  }
  /* step-box：画像がある場合だけ横並び */
  .step-box:has(img) {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    margin: 0 3%;
    padding: 20px;
  }
  /* テキスト部分 */
  .step-box .step-text-wrap {
    flex: 1;
    display: flex;
    flex-direction: column; /* 縦方向に積み重ね */
    align-items: flex-start;
  }
  .step-box {
    margin: 0 3%;
  }
  /* 画像部分 */
  .step-box img {
    flex-shrink: 0;
    width: 40%;
    max-width: 600px;
    height: auto;
    margin: 0;
    object-fit: contain;
    display: block;
  }
  /* ラベルとタイトル */
  .step-label {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .step-title {
    font-size: 27px;
    margin-bottom: 15px;
  }
  .step-text {
    font-size: 23px;
  }
  .step-sub-title {
    font-size: 25px;
  }
}

/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .price-acc-ttl {
    margin: 0 3% 2%;
  }
  .price-acc-ttl .en {
    font-size: 18px;
    left: 46%;
  }
    /* step-box：画像がある場合だけ横並び */
  .step-box:has(img) {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    margin: 0 3%;
    padding: 20px;
  }
  /* テキスト部分 */
  .step-box .step-text-wrap {
    flex: 1;
    display: flex;
    flex-direction: column; /* 縦方向に積み重ね */
    align-items: flex-start;
  }
  .step-box {
    margin: 0 3%;
  }
  /* 画像部分 */
  .step-box img {
    flex-shrink: 0;
    width: 40%;
    max-width: 600px;
    height: auto;
    margin: 0;
    object-fit: contain;
    display: block;
  }
  /* ラベルとタイトル */
  .step-label {
    font-size: 15px;
    margin-bottom: 3px;
    padding: 2px 12px;
  }
  .step-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .step-text {
    line-height: 1.7;
    font-size: 18px;
  }
  .step-sub-title {
    font-size: 15px;
  }
}




/*------------------ お客様の声 ------------------*/
.voice {
  background-color: #fff1f0;
  background-size: 200%;
  background-position: center;
  background-repeat: repeat;
  margin-top: 0;
  padding: 22% 7% 19%;
}
.voice-inner .ttl {
  margin: 0 auto 15%;
}
.voice-inner .ttl h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #d28c92;
  letter-spacing: 0.15em;
  margin: 0 auto -5px;
}
.voice-inner .ttl img {
  width: 97%;
  height: auto;
  margin: 0 auto;
}
.voice-inner .ttl p {
  font-size: 1.8rem;
  color: #d28c92;
  margin: -5px auto 0;
  font-family: 'Bodoni MT Condensed', serif;
}


.voice-content {
  background-color: #fff;
  border-radius: 20px 0;
  margin: 0 auto 12%;
  padding: 6%;
  position: relative;
}
.voice-content::before {
  content: "";
  width: max(30px, 1.3333333333vw);
  height: max(30px, 1.3333333333vw);
  background: linear-gradient(to top right, #857626 50%, transparent 50%);
  position: absolute;
  bottom: -5px;
  left: -5px;
}
.voice-content::after {
  content: "";
  width: max(30px, 1.3333333333vw);
  height: max(30px, 1.3333333333vw);
  background: linear-gradient(to bottom left, #857626 50%, transparent 50%);
  position: absolute;
  top: -5px;
  right: -5px;
}
.voice-icon {
  width: 28%;
}
.voice-lead {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.voice-list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.voice-list-bottom p {
  margin: 9px auto;
}
.voice-list-head {
  border: 2px solid #a79144;
  border-radius: 40px;
}
.voice-list-head P {
  color: #a79144;
  margin: 5px 15px;
  font-weight: 600;
}
.voice-text {
  padding: 0 6%;
  line-height: 175%;
  font-size: 20px;
}
.voice-text::before {
  content: "";
  display: block;
  width: 245px;
  height: 6px;
  margin: 4px auto 0;
  background: url(../img/voice_ber.png) no-repeat center;
  background-size: contain;
}

/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .voice {
    padding: 11% 12% 13%;
    background-size: 100%;
    background-position: top;
  }
  .voice-inner .ttl {
    margin: 0 auto 5%;
  }
  .voice-inner .ttl h2{
    font-size: 4rem;
  }
  .voice-inner .ttl img {
    width: 30%;
  }
  .voice-icon {
    width: 24%;
  }
  .voice-list-head P {
    font-size: 20px;
  }
  .voice-list-bottom p {
    font-size: 20px;
  }
  .voice-text {
    font-size: 23px;
    line-height: 180%;
  }
  .voice-content-wrap {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch; /* 高さを揃えるポイント */
  }
  .voice-content {
    flex: 1 1 0; /* 均等分配しつつgap分の余白を調整 */
    margin: 0; /* 縦並び用の余白をリセット */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 中身を上下で均等に */
    padding: 2%;
  }
  .voice-text::before {
    width: 80%;   /* 固定pxではなく%指定に */
    max-width: 320px; /* 上限を残すと綺麗 */
  }
}

/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice {
    padding: 13% 7%;
  }
  .voice-inner .ttl h2 {
    font-size: 2.3rem;
  }
  .voice-inner .ttl {
    margin: 0 auto 5%;
  }
  .voice-content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;   /* 下段の1つを中央寄せにする */
  }
  .voice-content {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(80% - 20px);
    margin: 0 auto 6%;
    padding: 3%;
  }
  .voice-inner .ttl img {
    width: 38%;
  }
  .voice-inner .ttl p {
    font-size: 1.5rem;
  }
  .voice-icon {
    width: 14%;
  }
  .voice-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3%;
    width: 65%;
  }
  .voice-text::before {
    width: 440px;
  }
  .voice-text {
    font-size: 18px;
  }
}



/*------------------ 化粧品 ------------------*/
.cosmetics {
  background-color: #ffffff;
  background-size: 200%;
  background-position: center;
  background-repeat: repeat;
  margin-top: 0;
  padding: 20% 7%;
}
.cosmetics-inner .ttl {
  margin: 0 auto 15%;
}
.cosmetics-inner .ttl h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #d28c92;
  letter-spacing: 0.15em;
  margin: 0 auto -5px;
}
.cosmetics-inner .ttl img {
  width: 57%;
  height: auto;
  margin: 0 auto;
}
.cosmetics-inner .ttl p {
  font-size: 1.8rem;
  color: #d28c92;
  margin: -5px auto 0;
  font-family: 'Bodoni MT Condensed', serif;
}

.cosmetics-treatment {
  max-width: 800px; /* コンテンツ幅 */
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.cosmetics-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #a79144; /* テキスト色 */
  display: flex;
  align-items: center;
  gap: 12px; /* 文字とラインの間隔 */
  margin: 8% auto 3%;
  font-size: 28px;
}
.cosmetics-heading::after {
  content: "";
  flex: 1; /* 余白いっぱいに線を伸ばす */
  height: 1px; /* 線の太さ */
  background: #a79144; /* ライン色 */
}
.cosmetics-text {
  font-size: 19px;
  display: block;
  line-height: 175%;
}
.cosmetics-image {
  margin: 1.5em 0;
  text-align: center;
}
.cosmetics-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* 角丸が不要なら削除 */
}

/* ロゴコンテンツ */
.logo-scroll {
  overflow-x: auto; /* 横スクロール可能に */
  -webkit-overflow-scrolling: touch; /* スマホでスムーズスクロール */
  padding: 10px 0;
}
.logo-track {
  display: flex;
  gap: 10px; /* 画像の間隔 */
  min-width: max-content; /* 子要素の幅に応じて広がる */
}
.logo-track img {
  height: 75px; /* ロゴサイズ調整 */
  width: auto;
}
/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .cosmetics {
    background-size: 100%;
    padding: 11% 13% 15%;
  }
  .cosmetics-inner .ttl img {
    width: 35%;
  }
  .cosmetics-inner .ttl h2 {
    font-size: 4rem;
  }
  .cosmetics-inner .ttl {
    margin: 0px auto 5%;
  }
  .cosmetics-heading {
    font-size: 33px;
    margin: 5% auto 5%;
  }
  .cosmetics-row {
    display: flex;
    margin: 40px 0;
    flex-direction: row;
    align-content: flex-start;
    gap: 40px;
  }
  .cosmetics-col {
    flex: 1;
  }
  .cosmetics-text {
    font-size: 25px;
    line-height: 185%;
    margin: 6% 2% 0 0;
  }
  .cosmetics-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .logo-track img {
    height: 115px;
  }
}

/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cosmetics {
    padding: 13% 7%;
  }
  .cosmetics-inner .ttl h2 {
    font-size: 2.3rem;
  }
  .cosmetics-inner .ttl img {
    width: 30%;
  }
  .cosmetics-inner .ttl p {
    font-size: 1.5rem;
  }
  .cosmetics-inner .ttl {
    margin: 0 auto;
  }
  .cosmetics-heading {
    font-size: 20px;
  }
  .cosmetics-row {
    display: flex;
    margin: 11px 0;
    flex-direction: row;
    align-content: flex-start;
    gap: 40px;
  }
  .cosmetics-text {
    font-size: 18px;
  }
  .cosmetics-col {
    flex: 1;
  }
}



/*------------------ カフェ ------------------*/
.cafe {
  background-image: url(../img/gray_bg.png);
  background-size: 200%;
  background-position: center;
  background-repeat: repeat;
  margin-top: 0;
  padding: 20% 7%;
  overflow: hidden;
}
.cafe-inner .ttl {
  margin: 0 auto 15%;
  position: relative;
  margin: 0 auto 15%;
  background-color: #433532;
  padding: 6% 0 8%;
  z-index: 1;
  border: solid 1px #fff;
}
/* 額縁SVG */
.cafe-inner .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96%;
  height: 90%;
  background: url("../img/ttl_frame.svg") no-repeat center center;
  background-size: contain; /* SVGの縦横比を保持して拡大縮小 */
  z-index: -1;  /* 背景として配置 */
  opacity: 0.7;
}
.cafe-inner .ttl h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.15em;
  margin: 0 auto -5px;
}
.cafe-inner .ttl img {
  width: 65%;
  height: auto;
  margin: 0 auto;
}
.cafe-inner .ttl p {
  font-size: 1.8rem;
  color: #fff;
  margin: -5px auto 0;
  font-family: 'Bodoni MT Condensed', serif;
  letter-spacing: 0.05em;
}
.cafe-images {
  display: flex;
  transform: translate(-17%, -8%);
  width: 158%;
  margin-top: 27%;
}
.cafe-images figure {
  margin: 0;
}
.cafe-images figure img {
  width: 100%;
}
.cafe-text {
  padding: 20px;
  margin: 7% auto;
  background-color: #fff;
  position: relative;
  border: solid 3px #a79144;
}
.float-icon {
  float: left;
  width: 101px;
  margin: 10px 21px 15px 0;
  position: relative;
  z-index: 1;
  left: 6px;
}
.logo-overlay {
  position: absolute;
  top: 74px;
  left: 0px;
  width: 54px;
  z-index: 2;    /* 花束より上 */
}
.cafe-text p {
  line-height: 180%;
  color: #422b20;
  font-size: 20px;
  margin: 0;
}
/* ボタン */
.cafe-btn {
  display: block;
  text-align: center;
  background: #433532;
  padding: 4%;
  margin: 6% 3%;
  border-radius: 100px;
  position: relative;
  border: solid 1px #fff;
}
.cafe-btn::before {
  content: "";
  width: 14%;
  height: 1px;
  background: #422b20;
  position: absolute;
  right: -5%;
  top: 50%;
}
.cafe-btn:after {
  content: "";
  width: 11%;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
}
.cafe-btn p {
  font-family: 'Bodoni MT Condensed', serif;
  font-size: 30px;
  color: #ffffff;
  margin: 0;
}

/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .cafe {
    padding: 11% 18% 12%;
    background-size: 100%;
  }
  .cafe-inner .ttl h2 {
    font-size: 4.2rem;
  }
  .cafe-inner .ttl img {
    width: 35%;
  }
  .cafe-images {
    transform: translate(0%, -15%);
    width: 100%;
    margin-top: 23%;
  }
  .cafe-images figure img {
    width: 110%;
  }
  .cafe-images figure {
    margin: 0 6%;
  }
  .cafe-box {
    display: flex;
    gap: 3%;
    max-width: 1200px;
    margin: 0 auto 4%;
  }
  .cafe-text p {
    font-size: 26px;
    line-height: 200%;
  }
  .float-icon {
    width: 150px;
    margin: 10px 65px 10px 0;
    left: 25px;
    top: -20px;
  }
  .logo-overlay {
    top: 100px;
    width: 80px;
    left: 25px;
  }
  .cafe-text {
    padding: 25px;
    margin: 0 auto;
    display: block;
    flex: 1;
  }
  .cafe-img {
    flex: 1; /* 50%幅 */
    text-align: center;
  }
  .cafe-img img {
    max-width: 100%;
    height: auto;
  }
  .cafe-btn {
    padding: 2%;
    margin: 6% 23% 0;
    border-radius: 100px;
    position: relative;
  }
  .cafe-btn p {
    font-family: 'Bodoni MT Condensed', serif;
    font-size: 38px;
  }
  .cafe-btn::before {
    background: #ffffff;
  }
  .cafe-inner .ttl {
    margin: 0 auto 7%;
    width: 65%;
    padding: 3% 0 4%;
  }
}
/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cafe {
    padding: 13% 7%;
  }
  .cafe-inner .ttl h2 {
    font-size: 2.3rem;
  }
  .cafe-inner .ttl img {
    width: 30%;
  }
  .cafe-images figure img {
    width: 100%;
  }
  .cafe-images figure {
    margin: 0;
  }
  .cafe-images {
    transform: translate(1%, -17%);
    width: 100%;
  }
}



/*------------------ コンセプト ------------------*/
.concept {
  background-color: #fff1f0;
  background-size: 200%;
  background-position: center;
  background-repeat: repeat;
  margin-top: 0;
  padding: 22% 7% 19%;
}
.concept-inner .ttl {
  margin: 0 auto 10%;
}
.concept-inner .ttl h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #d28c92;
  letter-spacing: 0.15em;
  margin: 0 auto -5px;
  text-align: center;
  line-height: 110%;
}
.concept-inner .ttl span {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}
.concept-inner .ttl img {
  width: 95%;
  height: auto;
  margin: 0 auto;
}
.concept-inner .ttl p {
  font-size: 1.8rem;
  color: #d28c92;
  margin: -5px auto 0;
  font-family: 'Bodoni MT Condensed', serif;
}
.concept-box {
  position: relative;
  padding: 35px 30px 55px;
  background: url(../img/concept_frame.svg) no-repeat center center / contain;
}
.concept-text {
  font-size: 19px;
  line-height: 175%;
}
.concept-text::after {
  content: "";
  display: block;
  width: 265px;
  height: 12px;
  margin: 10px auto 15px;
  background: url("../img/concept_ber.png") no-repeat center;
  background-size: contain; /* 横幅にフィットさせる */
}
/* スライダー本体 */
.concept-slide {
  position: relative; /* ページネーションの基準にする */
  padding-bottom: 80px; /* ページネーション用の余白を確保 */
}
/* ページネーション */
.concept-slide .swiper-pagination {
  position: absolute;
  bottom: 0; /* スライドの下端に配置 */
  left: 50%;
  transform: translateX(-50%); /* 横中央に */
  text-align: center;
  z-index: 10;
}
/* ◆のデザイン */
.swiper-pagination-bullet {
  background: none !important;
  color: #a59d9b;
  font-size: 13px;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  padding: 7px;
  margin-top: 10px;
}

/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .concept {
    padding: 11% 12% 12%;
    background-size: 100%;
  }
  .concept-inner .ttl {
    margin: 0 auto 10%;
  }
  .concept-inner .ttl h2 {
    font-size: 4rem;
    font-weight: bold;
    color: #d28c92;
    letter-spacing: 0.15em;
    margin: 0 auto -5px;
    text-align: center;
    line-height: 110%;
  }
  .concept-inner .ttl span {
    font-size: 1.8rem;
  }
  .concept-inner .ttl img {
    width: 48%;
  }
  .concept-inner .ttl p {
    font-size: 1.8rem;
    color: #d28c92;
    margin: -5px auto 0;
    font-family: 'Bodoni MT Condensed', serif;
  }
  .concept-box {
    position: relative;
    padding: 35px 30px 55px;
    background: url(../img/concept_frame_pc.svg) no-repeat center center / contain;
  }
  .concept-box {
    display: flex;
    gap: 3%;
    padding: 5% 5% 6% 6%;
    align-items: center;
  }
  .concept-box img { 
    width: auto;
  }
  .concept-text {
    flex: 1;
    font-size: 25px;
    line-height: 200%;
  }
  .concept-text::after {
    content: none;
  }
  .concept-slide {
    flex: 1;
    margin: 20px;
  }
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: 83% !important;
    left: 68% !important;
    width: 10% !important;
}

}

/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept {
    padding: 13% 7%;
  }
  .concept-inner .ttl img {
    width: 50%;
  }
  .concept-box {
    position: relative;
    padding: 35px 30px 55px;
    background: url(../img/concept_frame_pc.svg) no-repeat center center / contain;
  }
  .concept-box {
    display: flex;
    gap: 3%;
    padding: 5% 5% 6% 6%;
    align-items: center;
  }
  .concept-box img { 
    width: auto;
  }
  .concept-text {
    flex: 1;
    line-height: 200%;
  }
  .concept-text::after {
    content: none;
  }
  .concept-slide {
    flex: 1;
    margin: 20px;
  }
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: 87% !important;
    left: 67% !important;
    width: 15% !important;
}
}



/*------------------ お問い合わせ ------------------*/
.contact {
  background-size: 200%;
  background-position: center;
  background-repeat: repeat;
  margin-top: 0;
  padding: 12% 0;
}
.contact-inner .ttl {
  margin: 0 auto 8%;
}
.contact-inner .ttl h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #d28c92;
  letter-spacing: 0.15em;
  margin: 0 auto -5px;
}
.contact-inner .ttl img {
  width: 88%;
  height: auto;
  margin: 0 auto;
}
.contact-inner .ttl p {
  font-size: 1.8rem;
  color: #d28c92;
  margin: -5px auto 0;
  font-family: 'Bodoni MT Condensed', serif;
}
.contact-btn {
  display: block;
  text-align: center;
  border: 1px solid #422b20;
  padding: 2%;
  margin: 6% 8%;
  border-radius: 100px;
  position: relative;
}
.contact-btn p {
  color: #422b20;
  font-weight: bold;
  font-size: 20px;
  margin: 10px;
}
.contact-btn ::after {
  content: "";
  width: 18%;
  height: 1px;
  background: #422b20;
  position: absolute;
  right: -6%;
  top: 50%;
}

/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .contact {
    padding: 9% 0;
}
  .contact-inner .ttl {
    margin: 0 auto 2%;
  }
  .contact-inner .ttl h2 {
    font-size: 4rem;
  }
  .contact-inner .ttl img {
    width: 32%;
  }
  .contact-inner .ttl p {
    font-size: 1.8rem;
    color: #d28c92;
    margin: -5px auto 0;
    font-family: 'Bodoni MT Condensed', serif;
  }
  .contact-btn p {
    font-size: 30px;
  }
  .contact-btn {
    border: 2px solid #a59d9b;
    padding: 1%;
    margin: 3% 35%;
  }
  .contact-btn ::after {
    content: "";
    width: 18%;
    height: 2px;
    background: #a59d9b;
    position: absolute;
    right: -10%;
    top: 50%;
  }
}

/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-inner .ttl {
    margin: 0 auto 2%;
  }
  .contact-inner .ttl img {
    width: 45%;
  }
  .contact-btn {
    border: 1px solid #a59d9b;
    padding: 1%;
    margin: 4% 23%;
  }
}




/*------------------ アクセス ------------------*/
.access {
  background-color: #cdc1af;
  padding: 12% 7%;
}
.access-inner .ttl {
  margin: 0 auto 15%;
}
.access-inner .ttl h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.15em;
  margin: 0 auto -5px;
}
.access-inner .ttl img {
  width: 65%;
  height: auto;
  margin: 0 auto;
}
.access-inner .ttl p {
  font-size: 1.8rem;
  color: #fff;
  margin: -5px auto 0;
  font-family: 'Bodoni MT Condensed', serif;
  letter-spacing: 0.05em;
}

.map iframe {
  width: 100%;
  height: 300px;
}
.access-text {
  background-color: #f5f3ef;
  padding: 6%;
  margin: 8% 0;
}
.access-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.access-lead {
  line-height: 180%;
  margin: 5px 0 15px;
}
.access-lead a {
  color: #221612;
}

/* ▼ PC用 */
@media screen and (min-width: 1025px) {
  .access {
    padding: 12%;
  }
  .access-inner .ttl {
    margin: 0 auto 7%;
  }
  .access-inner .ttl h2 {
    font-size: 4rem;
  }
  .access-inner .ttl img {
    width: 30%;
  }
  .access-box {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 高さを揃える */
    gap: 4%; /* 地図とテキストの間に余白 */
  }

  .map {
    flex: 1; /* 地図を伸縮可能に */
  }
  .map iframe {
    width: 100%;
    height: 100%; /* access-text と高さを揃える */
  }

  .access-text {
    flex: 1; /* テキストも同じ比率で伸縮 */
    padding: 4%;
    margin: 0;
    background-color: #f5f3ef;
  }

  .access-title {
    font-size: 25px;
  }
  .access-lead {
    margin: 5px 0 20px;
    font-size: 20px;
  }
}
/* ▼ iPad用 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .access {
    padding: 12%;
  }
  .access-inner .ttl {
    margin: 0 auto 7%;
  }
  .access-inner .ttl h2 {
    font-size: 2.3rem;
  }
  .access-inner .ttl img {
    width: 30%;
  }
  .access-box {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 高さを揃える */
    gap: 4%; /* 地図とテキストの間に余白 */
  }
  .map {
    flex: 1; /* 地図を伸縮可能に */
  }
  .map iframe {
    width: 100%;
    height: 100%; /* access-text と高さを揃える */
  }

  .access-text {
    flex: 1; /* テキストも同じ比率で伸縮 */
    padding: 4%;
    margin: 0;
    background-color: #f5f3ef;
  }

  .access-title {
    font-size: 20px;
  }
  .access-lead {
    margin: 5px 0 20px;
    font-size: 15px;
  }
}