/* ───────────────────────────────────
   0. ベース変数 & リセット
─────────────────────────────────── */
:root{
  /* カラーパレット */
  --bg-main:#dddcd7;
  --color-text:#333;
  --color-accent:#9b8f80;

  /* タイポグラフィ */
  --font-head:'游明朝','Yu Mincho',serif;
  --font-body:'游ゴシック','Yu Gothic','YuGothic','Hiragino Kaku Gothic ProN',sans-serif;

  /* レイアウト */
  --content-max:1200px;
  --gap:1.5rem;
}

*,
*::before,
*::after{margin:0;padding:0;box-sizing:border-box;}

img{max-width:100%;height:auto;display:block;}
ul,ol{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.3;}
section:not(.parallax-section):not(#copy):not(#cart-ttl):not(#scent):not(#enter-ttl):not(#confirm){
  max-width:1200px;
  margin: auto;  
}
a{text-decoration:none;color:inherit;}
button{font:inherit;border:none;background:none;cursor:pointer;}
figure{margin:0;}

html{scroll-behavior:smooth;}
body{
  background:var(--bg-main);
  color:var(--color-text);
  font-family:var(--font-body);
  line-height:1.7;
  font-size:16px;
  
}
#checkbox-group{
  padding: 1rem;
  text-align: left;
}
#checkbox-group a{
  line-height: 2.4;
  display: inline-block;
  text-decoration: underline;
  color: royalblue;
  text-align: left;
}
#checkbox-group label{
  display: block;
  padding-bottom: 1rem;
  text-align: left;
}
#Contents {
  margin: 0;

  text-align: center;}
#customConfirm{
 margin: 2rem auto 4rem;
  display: inline-block;
  padding: 1.6rem 3.2rem;
  font-size: 1.4rem;
  font-family: 'Yu Mincho', '游明朝', serif;
  color: #fff;
background: linear-gradient(to right, #c87c70, #dfa095); /* 濃いめローズピンク */
  border: none;
  border-radius: 48px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
  text-shadow: 0 1px 1px rgba(0,0,0,0.05);
  letter-spacing: 0.03em;
}

#customConfirm:disabled {
  background: #ccc;
  color: #eee;
  cursor: not-allowed;
  opacity: 0.5;
}

#customConfirm:hover:not(:disabled) {
  background: linear-gradient(to right, #eecbc2, #f4dad1); /* ホバー時はより明るく柔らかく */
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
/* ───────────────────────────────────
   1. 共通ユーティリティ
─────────────────────────────────── */


/* sectionタイトル */
.section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.section-title {
  font-family:var(--font-head);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #333;
}

.section-header small {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #666;
}


.box {
  background-color: #fff;
  border-radius: 4px;
  padding: 2.5rem 1.5rem;
  margin: 0 auto;
  width: 100%;
  max-width: 960px; /* 統一された横幅 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
@media screen and (min-width: 750px) {
  .spbr{
    display: none;
  }
 }
@media screen and (min-width: 1200px) {
 .box {
    max-width: 1080px;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* ───────────────────────────────────
   1. Hero
ちらつき防止のためインラインでhtmlに記述
─────────────────────────────────── */


  .hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 178vw;
    opacity: 0;
  transition: opacity 0.4s ease;
}
.hero__slider.is-loaded {
  opacity: 1;
}
.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 3s ease;
    visibility: hidden;
}

.hero__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__slide.active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transition: opacity 1s ease;
}

/* ===== レスポンシブ（750px以上はPC） ===== */
@media screen and (min-width: 750px) {
  .hero {
    margin: 0 auto;
  }
.hero__slider {
  height: 49.25vw;
}
  .hero__slide img {
    object-fit: cover;
  }
}
/* ───────────────────────────────────
   2. Concept
─────────────────────────────────── */
/* セクション全体 */
.concept {
  background-color: #dddcd7; /* 画像背景に合わせた色 */
  padding: 3rem 1rem;
  text-align: center;
}

.concept__lead {
  font-family:var(--font-head);
  font-size: 4.4vw;
  line-height: 2.2;
  color: #333;
  font-weight: normal;
}

/* 強調文字 */
.concept__lead strong {
  font-weight: bold;
}

/* 「ツーランク」の前にドットを表示 */
.dot-lead {
  position: relative;
  display: inline-block;
}

.dot-lead::before {
  content: "・・・・・";
  position: absolute;
  left: 0;
  top: -.8em;
  color: #333;
}

/* レスポンシブ：PCでは少し大きく */
@media screen and (min-width: 600px) {
  .concept {
    padding: 6rem 2rem;
  }

  .concept__lead {
    font-size: 1.6rem;
    line-height: 2.6;
  }


}


/* ───────────────────────────────────
   3. Service
─────────────────────────────────── */
/* section全体背景 */
.service {
   position: relative;
  background-color: #dddcd7;
  padding: 3rem 1rem;
  text-align: center;
}
.service::before {
    content: '';
  background: url('https://biz.aromicstyle.com/img/lp/aromict/rm.svg') no-repeat;
  background-size: 80px auto;
  position: absolute;
  top: 2%;
  right: 5%;
  width: 120px;
  height: 250px;
  transform:rotate(10deg);
  opacity: 0.2;
}


/* 白い箱＋リーフ背景 */
.box {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  padding: 3rem 1.4rem;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* 葉っぱ画像（共通） */
.leaf {
  position: absolute;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

.leaf--top {
  top: -25px;
  left: -30px;
  width: 180px;
}

.leaf--bottom {
  bottom: -25px;
  left: -25px;
  width: 180px;
}

/* テキスト前面に */
.box p {
  position: relative;
  z-index: 1;
  font-family: 'Yu Mincho', '游明朝', serif;
  color: #333;
}

/* リード文（強調） */
.box p.service__lead {
  font-weight: normal;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-size: 4.6vw;
  padding-top: 5vw;
  padding-bottom: 1vw;

}
.box p.service__detail {
  font-family: var(--font-body);    
  line-height: 2.4;
  font-size: 3.6vw;
  padding-bottom: 5vw;
}
.service__lead strong {
  color: #c87c70;
  font-weight: bold;
}

/* 下のテキスト強調 */
.box p strong{
  position: relative;
}
.box p strong::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1.4px; /* 下にずらす距離（好みで調整） */
  width: 100%;
  height: 1px;   /* 線の太さ */
  background-color: currentColor; /* 文字と同じ色に */
}
@media screen and (min-width: 400px) {
  .leaf--top {
  top: -25px;
  left: -25px;
}

.leaf--bottom {
  bottom: -25px;
  left: -25px;
}

}
/* レスポンシブ調整 */
@media screen and (min-width: 750px) {
  .box {
    padding: 4rem 3rem;
  }

.box p.service__lead {
    font-size: 2rem;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.4;
  }
.box p.service__detail {
  font-size: 1rem;
  padding-bottom: 0;
}


  .leaf--top {
    width: 260px;
  }

  .leaf--bottom {
    width: 220px;
  }
  
  .service::before {
  background-size: 150px auto;
  top: -15%;
  right: 15%;
  width: 160px;
    height: 400px;

}
}

/* ───────────────────────────────────
   5. Set Contents
─────────────────────────────────── */
.set {
  background-color: #dddcd7;
  padding: 3rem 1rem;
  position: relative;
  text-align: center;

}

/* 背景に葉っぱSVG（さりげなく） */
.set::before {
    content: '';
  background: url('https://biz.aromicstyle.com/img/lp/aromict/mint2.svg') no-repeat;
  background-size: 80px auto;
  position: absolute;
  top: 2%;
  left: 15%;
  width: 120px;
  height: 250px;
  transform:rotate(-40deg);
  opacity: 0.1;
}


.set .box {
  display: flex;
  background-color: #fff;
  border-radius: 4px;
  padding: 3rem 2rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* 横並び */
.set__figure {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  
}

.set__img {
  margin-top: 2rem;
  max-width: 50%;
  height: auto;
}

/* テキスト部分 */
.set__caption {
  text-align: left;
  font-family: var(--font-body);  
}

.set__caption ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: disc;
  padding-left: 1.2em;
  font-size: 4vw;
  color: #333;
}
.set__caption ul li{
  line-height: 1.2;
  list-style: disc;
  padding: .4rem 0;
  
}
.set__price {
  display: block;
  font-size: 5vw;
  margin-top: 0.5rem;
  color: #c87c70;
}

.set__price strong {
  font-size: 1.8em;
}

.shipping__price {
  font-size: 4vw;
  color: #666;
}
@media screen and (min-width: 500px) {
  .set__caption ul {
    font-size: 1.2rem;
  }
  .set__price {
    font-size: 1.2rem;
  }
  .shipping__price {
    font-size: 1.2rem;
  }
}
/* レスポンシブ：PCでは横並び */
@media screen and (min-width: 750px) {
  .set .box{
    padding: 4rem 2rem;
  }
  .set__figure {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap:4rem;
  }

  .set__caption {
    max-width: 60%;
  }
  .set__caption ul {
    margin: 0 0 2rem;
  }
  .set__img {
    max-width: 150px;
  }

  .set__price {
    font-size: 1.4rem;
  }
  
  
  .set::before {
  background-size: 100px auto;
  top: -6%;
  left: 15%;
  width: 140px;
  
}

}

/* ───────────────────────────────────
   6. Mechanism
─────────────────────────────────── */
#mechanism {
      padding: 3rem 1rem;
  margin: 0 auto;
  text-align: left;
  }

.section-header {
  margin-bottom: 30px;
}


.section-header small {
  display: block;
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}


.highlight {
  position: relative;
  padding: 0 4px;
}
.highlight::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0; /* 文字の中央～下に調整 */
  width: 100%;
  opacity: .3;
  line-height: 1.8;
  height: 0.6em;  /* 太さ */
  background-color: #95963d;
  z-index: -1;    /* 文字の下に敷く */
  border-radius: 4px; /* 丸みでやわらかさ */
}
@media screen and (min-width: 750px) {
  .highlight::before {
bottom: .6rem; 
    
  }
}

.intro__image {
  display: block;
  margin: 2rem auto;
  width: 30vw;
  max-width: 150px;
  height: auto;
}

.mechanism__intro{
  background-color: #fff;
}

.mechanism__steps {
  list-style: none;
  padding: 0;
}

.mechanism__step {
    background-color: #fff;
}

.mechanism__step figure {
  margin: 0;
}

.mechanism__step img {
  width: 300px;
  max-width: 100%;
  height: auto;
  margin: 2rem auto 3rem;
}

.mechanism__step figcaption{
  
  margin: 0 auto;
}

.mechanism__step figcaption h3 {
  font-size: 4.8vw;
  margin-bottom: 1rem;
    font-family:var(--font-head);
}

.mechanism__step figcaption p {
  font-size: 3.6vw;
  line-height: 1.7;
  color: #555;
  text-align: left;
  font-family: var(--font-body);  
}

.mechanism__catch {
  font-size: 5.4vw;
  text-align: center;
  line-height: 1.8;
  background-color: #FFF;
}
@media screen and (min-width: 480px) {
  .mechanism__step figcaption{
    padding: .2rem;
    max-width: 480px;}
  .mechanism__catch {
    font-size: 1.6rem;}
  .mechanism__step figcaption h3 {
    font-size: 1.4rem;}
  .mechanism__step figcaption p {
    font-size: 1rem;}
}

@media screen and (min-width: 750px) {
  .mechanism__catch {
    line-height: 2.2
  }
  .mechanism__intro {
    position: relative;
    margin-bottom: 10rem;
  }
  .mechanism__intro img{
    position: absolute;
    max-width: 240px;
    width: 240px;
    top: 75%; 
    right: 9%; 
    z-index: 2;  
    }

  .mechanism__catch .highlight {
    display: inline-block;
  }

  .mechanism__steps {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }

  .mechanism__step {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
  }

  .mechanism__step:nth-child(even) {
    flex-direction: row-reverse;
  }

  .mechanism__step figure {
    margin: 0 auto;
    display: flex;
    max-width: 680px;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
  }



  .mechanism__step figcaption {
    flex: 1;
    text-align: left;
  }

  .mechanism__step figcaption h3 {
    line-height: 1.8;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .mechanism__step figcaption p {
    font-size: .9rem;
  }

  .intro__image {
    width: 160px;
    margin: 0;
  }
}

/* ───────────────────────────────────
   7. Parallax
─────────────────────────────────── */

section.parallax-section{
  margin: 3rem 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.parallax-bg{
  position: absolute;
  top: 42%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-image: url('https://biz.aromicstyle.com/img/lp/aromict/parallaxSP.jpg'); /* ←★SP画像 */
  transform: translate(-50%, -50%);
  will-change: transform;
}
.parallax-content{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#fff;
  text-align:center;
}

/* ===== スマホ（〜750px） ===== */
@media(max-width:750px){
  .parallax-section{height:400px;}
}

/* ===== PC（751px〜） ===== */
@media(min-width:751px){
  .parallax-section{height:600px;}
  /* PC用画像に差し替え */
  .parallax-bg{
    background-image:url('https://biz.aromicstyle.com/img/lp/aromict/parallaxPC.jpg'); /* ←★PC画像 */
  }
}
/* ───────────────────────────────────
   8. Fragrance
─────────────────────────────────── */

/* ========== 共通 ========== */
:root {
  --green: #009688;
  --orange: #efb64b;
  --pink: #d79aa7;
}
#fragrance .box {
  padding: 0
}
.fragrance {
  position: relative;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}


.fragrance::before {
    content: '';
  background: url('https://biz.aromicstyle.com/img/lp/aromict/mint.svg') no-repeat;
  background-size: 130px auto;
  position: absolute;
  top: 2%;
  right: 8%;
  width: 120px;
  height: 250px;
  transform:rotate(10deg);
  opacity: 0.2;
}
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title {
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.section-header small {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.4rem;
}

/* --- リスト基本 --- */
.fragrance__list {
  list-style: none;
  margin: 0;
  padding: 3rem 0 1rem;
  background-color: #fff;
}
.fragrance__item {
  margin-bottom: 1rem;
}
 .fragrance__item img{
    width: 90%;
    max-width: 500px;
   display: block;
  }
.fragrance__item--herb img{
  
}
.fragrance__item--citrus img{
  text-align: right;
  margin: 0 0 0 auto;
}
.fragrance__item--floral img{
  
}
.fragrance__wrap {
  background: #fff;
  padding: 1rem 1.2rem 1rem;
  position: relative;

} 
.fragrance__item--citrus .fragrance__wrap{
  margin: 0 0 0 auto;
}



.fragrance__txt img{
  display: none;
}


[class^="fragrance__item"]{
  background-color: #fff;
}

.fragrance__item--herb   .fragrance__name { background: var(--green);  }
.fragrance__item--citrus .fragrance__name { background: var(--orange); }
.fragrance__item--floral .fragrance__name { background: var(--pink);   }

/* --- 説明文 --- */
.fragrance__desc,
.included {
  text-align: left;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
}
.fragrance__desc{
  font-family:var(--font-head);
 font-size: 1rem;
  
}
.included {
 font-size: .9rem;
  
}

/* --- 画像 (スマホでは上下) --- */

.fragrance__img img {
  display: none;
  max-width: 160px;
  height: auto;
}
@media screen and (min-width: 480px) {
  .fragrance__wrap{
    max-width: 500px
  }
}
/* ==========  PC (751px〜) ========== */
@media (min-width: 751px) {

  .fragrance {   /* PCは少し広げる */
    padding: 3rem 2rem 6rem;
  }
  .fragrance::before {
  background-size: 180px auto;
  top: -1%;
  right: 15%;
  width: 160px;
  height: 250px;
 }
.fragrance__item img{
   display: none;
  }
  .fragrance__img{
    display:flex;              
  align-items:center;    
  justify-content:center;    
  height:100%;    
  }
  .fragrance__img img {
    max-width:100%;
  height:auto;
    display: block;}
 

  /* --- 左右 2 カラム --- */
  .fragrance__wrap {
    display: flex;
    align-items:center; 
    gap: 4rem;
    padding: 1rem 0 3rem;
    max-width: 100%;
  }

  .fragrance__item--citrus .fragrance__wrap {
    flex-direction: row-reverse;
  }

  .fragrance__txt{
max-width: 60%  }
.fragrance__txt img{
  display: block;
  margin-bottom: 2rem;
  }
  .fragrance__txt p{
    padding: .2rem 3rem;
    
  }
  
  /* 説明文フォントサイズアップ */
  .fragrance__desc,
  .box p.included {
    font-size: .9rem;
    font-family: var(--font-body); 
  }

  /* 画像サイズ調整 */
  .fragrance__img img {
    max-width: 250px;
  }
}

/* ========== カラー別英字アクセント (任意) ========== */
.f1 { color: var(--green);  }
.f2 { color: var(--orange); }
.f3 { color: var(--pink);   }


/* ───────────────────────────────────
   9. Point
─────────────────────────────────── */
/**************************
* 1. 共通（モバイル基準）
**************************/
#point{
  position: relative;
  margin: 0 auto;
}
#point::before {
    content: '';
  background: url('https://biz.aromicstyle.com/img/lp/aromict/rm2.svg') no-repeat;
  background-size: 70px auto;
  position: absolute;
  top: -2%;
  left: 15%;
  width: 120px;
  height: 250px;
  transform:rotate(-30deg);
  opacity: 0.1;
}
/* ----- カード全体 ----- */
.point__card{
  position: relative;      
}

/* 画像は常に全幅 */
.point__card picture img{
  width: 100%;
  height: auto;
  display: block;
}
.brPCM{
  display: none;
}
/* ----- テキストボックス (SP) ----- */
.point__card figcaption{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 90vw;
  height: 80vw;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  text-align: left;
}
.point__heading{
   font-family:var(--font-head);
  text-align: center;  
padding: .2rem 0;
  font-size: 4.6vw;
  margin: 0 0 1rem;
  line-height: 2;
}
.point__card figcaption p{
  text-align: left;
  font-size: 4.1vw;
  line-height: 1.8;
}
#double.point__card figure::after{
      content: '';
  background: url('https://biz.aromicstyle.com/img/lp/aromict/double.png') no-repeat;
  position: absolute;
  bottom: 13%;
  right: 15%;
  width: 400px;
  height: 578px;
  transform: scale(0.15);
  transform-origin: bottom right;}

#refill.point__card figure::after{
      content: '';
  background: url('https://biz.aromicstyle.com/img/lp/aromict/refill.png') no-repeat;
  position: absolute;
  bottom: 12%;
  right: 15%;
  width: 269px;
  height: 156px;
  transform: scale(0.4); 
  transform-origin: bottom right;}

@media screen and (min-width: 360px) {
  #double.point__card figure::after{  transform: scale(0.18);}
  #refill.point__card figure::after{  transform: scale(0.5);}
}
@media screen and (min-width: 420px) {
  .point__heading{
  font-size: 1.2rem;
 padding: .4rem 0;
}
  .point__card figcaption p{
  font-size: 1rem;
  }
  .point__card figcaption{ 
  width: 86vw;
  height: 74vw;
    padding: 2rem;}
  
}
@media screen and (min-width: 480px) {
   #double.point__card figure::after{  transform: scale(0.22);}
  #refill.point__card figure::after{  transform: scale(0.7);}
  .point__heading{
  font-size: 1.4rem;
 padding: .5rem 0;
}
  .point__card figcaption p{
  font-size: 1.1rem;
  }
}

@media screen and (min-width: 600px) {
    .point__heading{
 padding: .4rem 0 1.6rem;
}
     #double.point__card figure::after{
       transform: scale(0.26);  
       bottom: 15%;
       right: 15%;}
  #refill.point__card figure::after{  
    transform: scale(0.7);
    bottom: 16%;
    right: 15%;}
 .point__card figcaption{ 
    padding: 4rem;}
}


/**************************
* 2. PC (751px 以上)
**************************/
@media (min-width: 751px){
#point::before {
background-size: 120px auto;
  top: -3%;
  left: 15%;
  width: 120px;
  height: 250px;
  transform:rotate(-30deg);
  opacity: 0.1;
}
  /* 画像を最大 1 200px に制限して中央寄せ */
  .point__card figure{
    max-width: 960px;
    margin: 0 auto;
    position: relative;
  }

  /* テキストボックス：幅 40%・上下中央寄せ */
  .point__card figcaption{
    height: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 52%;
    padding: 2rem;
    background-color: transparent;
    box-shadow: none;
  }


  /* 偶数カード＝左寄せ、奇数カード＝右寄せ */
  .point__card:nth-child(odd)  figcaption{ left: 0;   right: auto;  }
  .point__card:nth-child(even) figcaption{ right: 0;  left: auto; }
  .point__heading{
    letter-spacing:0.1rem;
  text-align: left;} 
  .point__card figcaption p{
  font-size: 0.9rem;
    text-align: left;
  }
  .point__heading{ 
    font-size: 1.2rem;
    padding: .4rem 0 2rem;
  }
     #double.point__card figure::after{
       transform: scale(0.18);  
       bottom: 10%;
       left: 25%;
  right: auto;
  transform-origin: bottom left; }
  #refill.point__card figure::after{  
    transform: scale(0.5);
    bottom: 10%;
    left: 15%;
  right: auto;
  transform-origin: bottom left;}
  #refill figcaption{
  color: #fff
}
}

@media screen and (min-width: 850px) {
  .point__card figcaption{ 
    padding: 2rem 3rem;
  }}
@media screen and (min-width: 900px){
  .brPCM{
  display: block;
  }
  .point__card figcaption{ 
    
    padding: 2rem 4rem;
  }
  #double.point__card figure::after{
       transform: scale(0.24);  
       bottom: 10%;
       left: 30%;
 }
  #refill.point__card figure::after{  
    transform: scale(0.6);
    bottom: 10%;
    left: 25%;
  }
  .point__card:nth-child(even) figcaption{
    width: 45%;
  padding: 2rem 0 2rem 4rem;
  }

}
  
/* ───────────────────────────────────
   10. FAQ
─────────────────────────────────── */
/* 背景と中央寄せ */
#faq {
  padding: 40px 12px 6rem;
  justify-content: center;
}

/* 中央の白いカード */

/* セクションヘッダ */
#faq .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#faq .section-title {
  font-family: "Yu Mincho", serif;
  font-size: 28px; /* モバイルサイズ */
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
#faq .section-header small {
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 0.12em;
}

/***************
  アコーディオン
***************/
#faq .accordion {
  margin: auto;
  max-width: 450px;
  line-height: 1.4;
  padding: 1.5rem 0; /* 上下スペース */
  border-top: 1px solid #d2d2d0;
}
#faq .accordion:last-child {
  border-bottom: 1px solid #d2d2d0; /* 最後の区切り */
}

/* summary 部（質問行） */
#faq .accordion summary {
  width: 90%;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  outline: none;
  position: relative;
  padding-left: 2em; /* Q ラベル分 */
   font-family:var(--font-head);
}

/* Q ラベルと開閉アイコン */
#faq .accordion summary::before {
  content: "Q:";
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 16px;
  color: #444;
}
#faq .accordion summary::after {
  content: "＋";
  position: absolute;
  right: -1.4rem;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
  color: #395144;
}
#faq .accordion[open] summary::after {
  content: "－";
}

/* summary マーカー無効化 */
#faq .accordion summary::-webkit-details-marker {
  display: none;
}

/* 答え部分 */
#faq .accordion > *:not(summary) {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  padding: 0 1rem; /* A ラベル分 */
  position: relative;
}


#faq .accordion small {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

#faq .accordion img {
  margin-top: 24px;
  max-width: 100%;
  height: auto;
  display: block;
}

/****************************************
  751px 以上: PC / タブレット拡張スタイル
****************************************/
@media screen and (min-width: 751px) {
  /* コンテナを広げ、余白を増やす */
  #faq {
    padding: 3rem 1rem 5rem;
  }
  #faq .faq {
    max-width: 960px;
    padding: 56px 48px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  }
#faq .accordion {
  max-width: 650px;}
  /* タイトルサイズアップ */
  #faq .section-title {
    font-size: 34px;
  }

  /* summary（質問） */
  #faq .accordion summary {
    font-size: 18px;
    padding-left: 3em;
  }
  #faq .accordion summary::before {
    font-size: 18px;
  }
  #faq .accordion summary::after {
    font-size: 20px;
  }

  /* 答え部分 */
  #faq .accordion > *:not(summary) {
    font-size: 16px;
    padding: 0 3.2rem;
  }
  #faq .accordion > *:not(summary)::before {
    font-size: 17px;
  }
}

/* ───────────────────────────────────
   11. Form
─────────────────────────────────── */

#cart-ttl picture{
  display: block;
  margin: auto;
  width: 80%;
  margin-bottom: 2rem;
}

.section-header h2.form-title{
   font-family:var(--font-head);
  font-size: 1.2rem;
}


/*==============================
	cart
==============================*/

section#cart-ttl,section#scent,section#enter-ttl{
  max-width: 400px;
  margin: auto;
}

body .formlp-front-section *{
  max-width: 600px;
    font-family:var(--font-body); 
}
section h2#orderDetailsInput::after {
content:none}
#Contents h2.ttlA{
  margin: 20px auto 0;
  border-bottom:none;
}

#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upOwnerUpdatePanel dt{
  font-size:18px
}
#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upOwnerUpdatePanel dd{
  font-size:18px;}
#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upOwnerUpdatePanel dd p{
  text-align: left;
}
#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upOwnerUpdatePanel select{
  font-size:18px;
    padding:10px 0
}
#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upOwnerUpdatePanel dd input{
  width:200px;
  height: 30px;
  padding: 16px 4px;
  
}
#CartList dd.com-name,#CartList dd.com-name-kana{
  line-height: 1.5;
}
.formlp-front-section--header-inner{
  max-width:900px;
  margin:20px auto;
}
#CartList .productList,#CartList .btmbtn.above.cartstep{
  display:none;
}

#Contents div.columnLeft{
  margin:auto;
}
#Contents div.columnRight{
  display: none;
}
.dt-class-12,.dd-class-15,.dt-class-20,.dd-class-23,.dt-class-21,.dd-class-24,.dt-class-23,.dd-class-26,.dt-class-24,.dd-class-27{
  display:none;
}
.formlp-front-section-form div.submain{
  width:auto !important;
  margin:auto;
}
.formlp-front-section-form .columnLeft div.column{
  width: auto !important;
}

.formlp-front-section-form .columnLeft div.column p{
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: .4em;
  line-height: 1.5;
}

.formlp-front-section-form .columnLeft div.column p span.loginid{
  color: #d02929;
}
.formlp-front-section-form .columnLeft div.column h2 img{
display: none;  
}
.formlp-front-section-form .columnLeft{
  width:auto !important;
}
.btmbtn {
    display: flex;
    justify-content: center;
    align-items: center;
}

#CartList dt.com-name{
  content: "";
}

#CartList div.btmbtn{
  border:none
}
#CartList div.btmbtn .btn-success{
  width:400px;
  position: relative;
    color: transparent !important;
  text-shadow: none;
    text-decoration: none;
  padding: 25px 50px;
  background-color: #d02929;
  border-radius: 10em;
  background-image: none;
}

#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upOwnerUpdatePanel select {
width:200px;
    line-height: 1.2;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    -webkit-rtl-ordering: logical;
    cursor: text;
    background-color: field;
        border-width: 2px;
    border-style: solid;
    border-image: initial;
  border-width: thin;
  padding: 6px 0;

}
.hidden-element,.com_name2,.dep_name2,.telephone2,.none {
  display: none;
}

.zip .fred .error_inline{
  text-align: left;
  font-size: 15px;
  
  
}
#enter-ttl .section-header{
margin:4rem auto 0;  
}
#scent .section-header{
margin:4rem auto 2rem; 
}

/*==============================
	login
==============================*/
#dvUserContents .unit{
  
  width: 780px;
  padding: 20px 50px 10px;
  margin: 50px auto 20px;
}

#CartList .dvLoginLogin div,#CartList .dvLoginLogin p{
  line-height: 1.4;
  margin-bottom: .4em;
} 
#CartList .dvLoginLogin p span.loginid{
  color: #d02929;
}
.dvLoginLogin>p{
  font-size: 1.1em;
  font-weight: bold;
}
#CartList .dvLoginLogin #ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_lbLogin{
  padding: .4em 1em;
  margin: 1em 2em 1em 0;
}

#CartList .dvLoginLogin div a p{
  font-size: .9em;
  display: inline-block;
  text-decoration: underline;
  margin-left: 1em;
}

@media screen and (max-width: 390px) {
  .radio-container .radio-wrapper .label-container span {
    font-size: 0.9em;
  }
}

/*==============================
	member
==============================*/




 .formlp-front-section-form .columnLeft .userBox{
   background:none;
}

 .formlp-front-section-form .columnLeft .userBox div.top{
   background:none;
}
.formlp-front-section-form .columnLeft .userBox div.bottom{
   background:none;
}

/* タイトルエリア */
.formlp-front-section-form #CartList .formlp-front-section-form{
background-color: #fafafa}


.formlp-front-section-form .columnLeft div.column p.notes{
  font-size: 0.8em;
  text-align: left;
}


.formlp-front-section-form .intro-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* セクションボックス */
.formlp-front-section-form .form-section {
  background: #fff;
  padding: 24px 20px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* ラベル＋フィールド構成 */
.formlp-front-section-form .order-unit .order-form dt {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
  background-color: var(--bg-main);
  border-radius: 4px;
}

.formlp-front-section-form dd {
  margin-bottom: 5px;
}
.formlp-front-section-form dd.email1{
 margin-bottom: 0;
}
/* 入力フィールド */
.formlp-front-section-form input[type="text"],
.formlp-front-section-form input[type="email"],
.formlp-front-section-form input[type="password"],
.formlp-front-section-form input[type="tel"],
.formlp-front-section-form select,
.formlp-front-section-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  background: #fff;
  transition: border-color 0.3s ease;
}

.userBox dt{
  padding-top: 10px;
}
.order-form .require,.fred.required{
  display: inline-flex;
  font-size: .6em;
  padding: 2px 6px;
  border: #E31515 solid 1px;
  border-radius: 2px;
   align-items: center;
  justify-content: center;
  line-height: 1; 
  vertical-align: middle; 
}
.order-form .name small,.order-form .com-name small{
  font-size: .9rem;
}
.order-form .mail .msg{
  font-size: .9rem;
}

.formlp-front-section-form input:focus,
.formlp-front-section-form select:focus,
.formlp-front-section-form textarea:focus {
  border-color: #000;
  outline: none;
}

/* ラジオ・チェックボックス */
.formlp-front-section-form input[type="radio"],
.formlp-front-section-form input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 6px;
  accent-color: #000;
}

/* サブメッセージ */
.formlp-front-section-form .formCaution,
.formlp-front-section-form .notes {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

/* エラーメッセージ */
.formlp-front-section-form .error_inline {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

/* ボタン */
.formlp-front-section-form .form-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.formlp-front-section-form .btn,
.formlp-front-section-form input[type="submit"] {
  padding: 8px 30px;
  font-size: 16px;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin: 0 10px;
}

.formlp-front-section-form .btn.confirm {
  background: #000;
  color: #fff;
}

.formlp-front-section-form .btn.confirm:hover {
  background: #444;
}

.formlp-front-section-form .btn.cancel {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.formlp-front-section-form .btn.cancel:hover {
  border-color: #999;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
/*  .formlp-front-section-form {
    padding: 40px 16px;
  }*/

  .formlp-front-section-form .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  .formlp-front-section-form .btn {
    width: 100%;
  }
}
#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upOwnerUpdatePanel .order-form .zip .btn-add-search{
  font-size: .9rem;
  width: 100%;
  background-color: #5c5b52;
}

/*==============================
	terms sp
==============================*/

#dvUserBox h3{
  margin-top: 2em;
}
#dvUserBox #dvUserRegistRegulation p.terms-intro{
  font-size: .8em;  
}
/*==============================
	terms PC
==============================*/

#dvUserBox h4{
  margin-top: 1.4em;
}
#dvUserBox #dvUserRegistRegulation li{
  font-size: .8em; 
}
#dvUserBox #dvUserRegistRegulation li{
  font-size: .8em; 
}
#dvUserBox #dvUserRegistRegulation .inquiry{
  font-size: .8em; 
  font-weight: 500;
}
/*==============================
	cart sp
==============================*/



.cart-unit #ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upProductListUpdatePanel,.shipping,.order-unit.order-payment{
  display: none;
}
.wrap-order{
  margin: 0 auto;
  max-width: 600px;
  padding:0 1em 1em;
}
#ctl00_ContentPlaceHolder1_ucInputForm_upCartListItemsCount{
 display: none; 
}
.order-unit .order-form dd input {
  margin-top: 0;
}

.order-unit h2{
  background-color: #fff;
  color:#333;
  text-align: center;
  font-size: 1.2em;
}
.order-unit .order-form dt {
  background-color: #fafafa;
  padding: .4em 0 0;
}
.order-unit .order-form dd{
  padding: 0;
}
.order-form .zip .btn-add-search{
  display: inline-block;
  width:auto;
  line-height: 0.6;
  vertical-align: middle;
  border-radius: 50px;
  background-color: #333;

  
}
.order-unit .owner{
  margin: auto;
  max-width: 500px;
    padding: 1.2em .8em;
    margin-bottom: 24px;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
  background-color: #fafafa;
}

.order-unit .owner p{
line-height: 1.2;
}
.order-unit .owner p .loginid{
   color: #d02929;
    font-weight: bold;

}

.order-footer .button-next #ctl00_ContentPlaceHolder1_ucInputForm_UpdatePanel1 .btn {
  margin: 0 auto;
  max-width: 400px;
  position: relative;
  text-shadow: none;
  text-decoration: none;
  padding: 30px 40px;
  background-color: #d02929;
  border-radius: 10em;
font-size: 1.4em;
  background-image:none;
color: transparent !important;
}
.order-footer .button-next #ctl00_ContentPlaceHolder1_ucInputForm_UpdatePanel1 .btn::after{
font-size: 1.4em;
line-height: 1.2;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
padding: 15px 20px;
color:#ffffff;  
content:"お申し込み";
white-space: pre-wrap;
}

@media (max-width: 400px) {
  .order-unit .order-form dd.com-name input,  .order-unit .order-form dd.name input  {
    display: block;
    width:100%;
    margin-bottom: .2em;
  }
}

#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_dvUserPassword .order-unit .regulation p,#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_dvUserPassword .order-unit .regulation h4{
text-align: left;  
}
.order-unit .regulation li{
  margin: 0 auto 0 0;
  text-align: left;
}

#CartList div.btmbtn ul{
  position: relative;
  margin-bottom: 6em;
}

#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_tbUserPassword{
  margin-bottom: .2em;
}

section#confirm{
  margin: auto;
  max-width: 500px;
}
/* ───────────────────────────────────
   12. PCレイアウト  (min-width: 750px)
─────────────────────────────────── */

/*==============================
	フォーム　削除
==============================*/

#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_dvUserPassword .order-unit{
  display: none;
}

div#ctl00_ContentPlaceHolder1_ucInputForm_upProductList{
  display: none;
}
#ctl00_ContentPlaceHolder1_ucInputForm_upCartListUpdatePanel>.owner>p{
  display: none;
}

#ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upFixedPurchaseFutureOrder{
  display: none;
}

.order-footer{
  display: none;
}
.submain.clearFix .columnLeft .column>h2,.submain.clearFix .columnLeft .column>p{
  display: none;
}
#dvUserBox #dvUserRegistRegulation,.formlp-front-section-form{
  display: none;
}
#ctl00_ContentPlaceHolder1_ucInputForm_upCartListUpdatePanel{
  display: none;
}
#confirm .section-header,#confirm #checkbox-group{
  display:none;
}
#cart-ttl,#enter-ttl{
  display: none;
}
/*==============================
	footer
==============================*/
#lp-footer{
  position: relative;
}

#lp-footer p { text-align:center; }
#lp-footer h3 { margin-bottom:1em; padding:.8em 1em; text-align:center; font-size:1.06em; font-weight:500; letter-spacing:1px; background:#eee; }
#lp-footer h3:nth-of-type(n+2) { margin-top:2em; }

#lp-footer .contact { padding:3em 0; }
#lp-footer .contact p { line-height:1.6em; }
#lp-footer .contact p:first-of-type { font-size:1.1em; letter-spacing:.1em; }
#lp-footer .contact p:nth-of-type(n+2) { margin-top:1em; }
#lp-footer .contact p a { padding:0 .1em; text-decoration:underline; color:var(--link); }
#lp-footer .contact p a[href*='tel'] { display:inline-block; margin:.2em auto; text-decoration:none; font-size:1.4em; letter-spacing:.1em; color:var(--text); }
#lp-footer .contact button { display:block; margin:1em auto; background:none; border:none; }
#lp-footer .contact button a { display:block; padding:.8em 1.6em; font-size:1.06em; background:#eee; border-radius:10em; }

#lp-footer .store { margin:auto; padding:0 1em; overflow-x:auto; white-space:nowrap; }
#lp-footer .store li { display:inline-block; width:12em; vertical-align:top; white-space:normal; }
#lp-footer .store li:nth-of-type(n+2) { margin-left:.6em; }
#lp-footer .store img { display:block; width:100%; margin:.4em auto; }
#lp-footer .store img + p { text-align:left; font-size:.9em; line-height:1.4em; }
#lp-footer .store a { position:relative; margin-left:4px; text-decoration:underline; color:var(--link); }

#lp-footer > dl { display:flex; flex-wrap:wrap; align-items:stretch; width:calc(100% - 1em); max-width:56em; margin:1em auto; text-align:left; font-feature-settings:'palt'; }
#lp-footer > dl > * { padding:1em; }
#lp-footer > dl > *:nth-child(n+3) { margin-top:.2em; }
#lp-footer > dl dt { width:8em; background:#f5f5f5; }
#lp-footer > dl dd { width:calc(100% - 8em); background:#fafafa; }
#lp-footer > dl dd * { text-align:left; font-size:.9em; line-height:1.6em; }
#lp-footer > dl dd p { text-align:left; }
#lp-footer > dl a { text-decoration:underline; color:var(--link); }

#lp-footer .link { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; border-top:1px solid; }
#lp-footer .link a { display:block; padding:1.2em .2em; text-align:center; color:var(--text); }

#copy {position: relative;margin:auto;	padding:1.4em 0;	text-align:center;	font-size:.9em;	color:#444444;	;	box-sizing:border-box; }
#copy ul { display:flex; justify-content:center; margin: 0 auto; }
#copy li:nth-of-type(n+2) { border-left:1px solid; }
#copy li a { margin:0 1em; color:#444444; }
#copy span { font-family:var(--font-logo); }
#copy::after {
  content: '';
  background: url('https://biz.aromicstyle.com/img/lp/aromict/footer.svg') no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left:0;
  right :0;
  width: 100%;
  height: 400px;
  opacity: 0.1;
  z-index: -1;
}
#copy .flexbox{
width: auto;    
  }
#scent{
    position: relative;
}
.scent-selector {

  overflow: visible;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-radius: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease;
}

.image-fade {
  position: absolute;
  bottom:-20%;
  right: -5%;
  width: 460px;
  height: 560px;
  transform: scale(0.35);
  z-index: -1;
    transform-origin: bottom right;
}


.scent-img {
  position: absolute;

  opacity: 0;
  transition: opacity 0.5s ease;
  transform-origin: bottom right;
}
.scent-img.active {
  opacity: 0.7;
}


.circle-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  justify-items: center;
  align-items: center;
  position: relative;
  width: 170px; /* 適宜調整 */
  margin-right: 40px;
  font-family:var(--font-head);

}
.circle-buttons .circle:nth-child(1) {
  grid-column: 1 / 3; /* 中央に1つ */
}

.circle-buttons .circle:nth-child(2) {
  grid-column: 1;     /* 左下 */
}

.circle-buttons .circle:nth-child(3) {
  grid-column: 2;     /* 右下 */
}
.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
  outline: none;
  -webkit-tap-highlight-color: transparent; /* モバイル端末用 */
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;

}
.circle.mh{
  background-color: #8ea7a5;
} 
.circle.co{
    background-color: #dccab6;
} 
.circle.fl{
    background-color: #d5c4c9;
} 
.circle.mh.active{
  background-color: #4da8a0;
} 
.circle.co.active{
  background-color: #f8bc48;
} 
.circle.fl.active{
  background-color: #dca5b3;
} 


.circle:focus {
  outline:none;
  box-shadow: none;
  
}
@keyframes blink-border {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }
  50% {
    border-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
}
.circle:hover,
.circle.active {
    color: #fff;
   border: 5px solid rgba(255, 255, 255, 0.6);
  animation: blink-border 4s infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  transform: scale(1.06) translateY(-4px);
}

#scent-dropdown {
  padding: 10px;
  font-size: 16px;
}

@media screen and (min-width:400px){
  .image-fade {
  bottom:-25%;
  right: 5%;
  width: 460px;
  height: 560px;
  transform: scale(0.4);
  }
  

}
@media screen and (min-width: 750px) {
  .circle-buttons {
    width: 180px;
  }
  
  .circle-buttons .circle{
    font-size: 1.1rem;
    line-height: 1.1;
  }
 section#cart-ttl,section#scent,section#enter-ttl{
   max-width: 500px;
  margin: 1rem auto 2rem}
  
  #scent .section-header{
    padding: 2rem 0 0;}
  
  #scent .section-header h2,#enter-ttl .section-header h2,#confirm .section-header h2{
    font-size: 1.4rem;
  }
  .circle {
  width: 100px;
    height: 100px;}
  .circle-buttons{
    gap:1.2rem;
  }
  .image-fade {
  transform: scale(0.55);
}
  
  #ctl00_ContentPlaceHolder1_ucInputForm_rCartList_ctl00_upOwnerUpdatePanel dt{
  font-weight:500;
    padding-left:1rem;
    background-color:var(--bg-main);
    margin-bottom: .2rem;
}

 
}

/*本申し込み用*/
#aspnetForm section:not(#scent){
  padding-bottom:3rem;
}
#aspnetForm section h2{
  text-align: left;
  font-size: 1.1rem;
  }

#aspnetForm section p{
  font-size: .9rem;
  margin-bottom: 1rem;
}


#section3 button#cartButton {
margin: 2rem auto 4rem;
    display: inline-block;
    padding: 1.6rem 3.2rem;
    font-size: 1.4rem;
    font-family: 'Yu Mincho', '游明朝', serif;
    color: #fff;
    background: linear-gradient(to right, #d8a9a0, #e8c3b6);
    border: none;
    border-radius: 48px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.03em;
}

#section3 button#cartButton.enabled {
    background: linear-gradient(to right, #c87c70, #dfa095);
}

#calendar{
  display: none;
}
#index-footer #contact i{
      background: rgba(0, 0, 0, .3);
}
#index-footer .nav-link{
  background: rgba(var(--biz-gr-gb), .16);
}
