@charset "Shift_JIS"; /**/
/* BASE */
:root{
--fs-base:clamp(14px, 2vw, 18px);
--fs-h2:clamp(20px, 3vw, 32px);
--fs-h3:clamp(18px, 3vw, 22px);
--fs-attention:clamp(12px, 2.0vw, 13px);
--fs-point:clamp(18px, 2.0vw, 20px);
--color-txt-cp:#e83f76;
--circle-bg: #fde7ee;   /* ピンクの円 */
--circle-fg: #222;      /* 文字色 */
--ring: #f7cfdc;        /* 枠の色(薄め) */

}
.body_sph .contents_main{margin: 0;}
.visually-hidden{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); /* 古いブラウザ用 */
    clip-path: inset(50%); /* 新しいブラウザ用 */
    border: 0;
    white-space: nowrap; /* 複数行でも崩れ防止 */
}

/* Top Page */
#freeshipping {
  text-align: center;
  background-color: #FFFFFF;
  font-family: "icomoon", "Noto Sans JP", sans-serif;
}

/* ====== FV ====== */
section.fv h2{
    margin-bottom: 4%;
}
section.fv p{
    text-align: left;
    font-size: var(--fs-base);
    margin: 2% 5%;
}
/* ====== NAV ====== */
section.nav {
    margin: 10% 0;
}
section.nav h3{
    font-size: var(--fs-h3);
    padding-bottom: 1%;
}
section.nav h3 span{
    font-size: var(--fs-h3) !important;
    font-weight: bold !important;
    margin-left: 0em !important;
}


/* ====== Circle Nav styles ====== */


.circle-nav {
  margin: 10px auto 32px;
  padding: 0 12px;
}

.circle-nav ul{
  list-style: none;
display: flex;
    flex-wrap: wrap;
justify-content: center;
  gap: 14px;
  grid-auto-flow: column;
  grid-auto-columns: 32%;
  overflow-x: auto;
  padding: 0% 10%;
  margin: 0;
  scroll-snap-type: x mandatory;
}
.circle-nav li{ scroll-snap-align: start; }

.circle-nav a{
  --size: clamp(80px, 2.5vw, 110px);
  display: grid;
  place-items: center;
  gap: 6px;
  width: var(--size);
  aspect-ratio: 1/1;
  margin: 0 auto;
  text-decoration: none;
  color: var(--circle-fg);
  background: var(--circle-bg);
  border-radius: 50%;
  border: 1px solid var(--ring);
  position: relative;
  transition: transform .12s ease;
    align-items: stretch;
    align-content: center;
}
.circle-nav a::after{
  content: "▼";                    /* ちいさな▽ */
  position: absolute;
  bottom: 2px;
  font-size: 10px;
  opacity: .6;
}

.circle-nav .icon{
  font-size: clamp(30px, 7.0vw, 45px); 
  line-height: 1;
  margin-top: 10px;
    color: #554c4f;
}
.circle-nav .icon.svg{
    width: clamp(18px, 5.0vw, 24px);
    height: clamp(30px, 7.0vw, 45px);
    opacity: 0.8;
}
.circle-nav .label{
  font-size: 12px;
  font-weight: 700;
    padding-bottom: 20px;
}

/* ホバー/フォーカス */
.circle-nav a:hover,
.circle-nav a:focus-visible{
  transform: translateY(-2px);
  outline: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.08), inset 0 0 0 1px #fff;
}

/* PCでは4×2のグリッドに */
@media (min-width: 780px){
  .circle-nav ul{
    grid-auto-flow: initial;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    overflow: visible;
    gap: 18px 28px;
  }
  .circle-nav a{ --size: 110px; }
}

/* スムーズスクロール（ユーザーが無効化してる場合は尊重） */
html:focus-within { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html:focus-within { scroll-behavior: auto; }
  .circle-nav a{ transition: none; }
}



/* ====== QA ====== */
section.qa-accordion {
    text-align: left;
}
.qa {
  border: 2px solid #CCC;
  margin: 12px 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

/* Q行 */
.qa > summary {
    list-style: none;
    cursor: pointer;
    padding: 2% 3.5em 2%;
    font-weight: 600;
    position: relative;
    user-select: none;
    font-size: var(--fs-base);
}
/* Q行 */
.qa > summary span img {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    left: 1em;
    width: 30px;
    vertical-align: middle;
}
/* フォーカスリング（アクセシビリティ） */
.qa > summary:focus { outline: none; }
.qa > summary:focus-visible {
  outline: 2px solid #7aa7ff;
  outline-offset: 2px;
}

/* 右端の“横線”（常に表示） */
.qa > summary::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 18px;        /* 横線の長さ */
  height: 2px;        /* 線の太さ */
  background: #333;
  transform: translateY(-50%);
}

/* 右端の“縦線”（閉時のみ見える＝十字） */
.qa > summary::before {
  content: "";
  position: absolute;
  right: 22px;        /* 横線の中心に重なるよう調整 */
  top: 50%;
  width: 2px;
  height: 18px;
  background: #333;
  transform-origin: 50% 50%;
  /* 初期は縦：回転0°・スケール1 */
  transform: translateY(-50%) rotate(0deg) scaleX(1);
  /* 回転して重なり → 最後にスケールで一本化（フェードは使わない） */
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}

/* 開いたとき：縦線が90°回転して横線と重なり、同時に縮んで一本化 */
.qa[open] > summary::before {
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

/* Aの本文 */
.qa .answer {
    position: relative;
    padding: 1em 4em 1em;
    color: #333;
    line-height: 1.8;
}

.qa .answer a:link {
    color: #0058AA;
    text-decoration: underline;
}
.qa .answer a:visited {
    color: #0058AA;
    text-decoration: none;
}
/* Q行 */
.qa .answer .answer span {
    position: relative;
    display: inline-block;
    width: 30px;
}
.qa .answer span img {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0.7em;
    left: 1.2em;
    vertical-align: middle;
    padding-right: 1%;
}
/*========= カテゴリ ===============*/
section.category .info{
    padding-top: 5%;
}
section.category {
    margin-bottom: 15%;
}
section.category h2 {
  font-family: "icomoon", "Noto Sans JP", sans-serif !important;
    color: #c43060;
    font-size: var(--fs-h2);
    border-top: 2px solid;
    border-bottom: 2px solid;
    padding: 1.0%;
    margin: 0% 4%;
    font-weight: bold;
}
section.category h2[class^="icon-"]:before{
    display: inline-block;
    font-size: clamp(30px, 4vw, 40px);
    vertical-align: sub;
    font-weight: normal;
}
section.category h2 span.svg {
    width: clamp(18px, 5.0vw, 20px);
    height: clamp(33px, 6vw, 40px);
    margin: 0;
    padding-right: 1%;
    opacity: 0.8;
    filter: brightness(10%) saturate(100%) invert(20%) sepia(46%) saturate(5580%) hue-rotate(327deg) brightness(70%);
}
section.category .caption{
    text-align: left;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    padding: 3% 3% 10%;
    margin: 5% 0% 2% 2%;
}
section.category#cleansing .caption{background-image: url(image/bg_category_01.png);}
section.category#facewash .caption{background-image: url(image/bg_category_02.png);}
section.category#uv .caption{background-image: url(image/bg_category_03.png);background-position: 90% 0%;}
section.category#supplement .caption{background-image: url(image/bg_category_04.png);background-color: rgba(255, 255, 255, 0.5);}
section.category#diet .caption{background-image: url(image/bg_category_05.png);}
section.category#hair .caption{background-image: url(https://www.dhc.co.jp/goods/23338/image.png);background-color: rgba(255, 255, 255, 0.7);background-blend-mode: lighten;}
section.category#hair > img{margin: 5% auto;width: 90%;}
section.category#medicine> img{margin: 0 auto 5%;width: 90%;}
section.category#fashion> a img{margin: 5% auto;width: 90%;}
section.category#medicine .caption{background-image: url(https://www.dhc.co.jp/goods/40532/image.png);background-color: rgba(255, 255, 255, 0.7);background-blend-mode: lighten;}
img.r_img.r_detail.lazyloaded {
    position: absolute;
    bottom: -20%;
    right: 15%;
    width: 36%;
}
#cs_health.contact_us .phone a {
    color: #060;
    text-decoration: none;
}
section.category .caption h3{
font-family: "icomoon", "Noto Sans JP", sans-serif !important;
    font-size: clamp(24px, 5vw, 33px);
    font-feature-settings: "palt";
    line-height: 1.4;
    padding-bottom: 3%;
}
section.category#uv .caption h3{
    font-size: clamp(21px, 4vw, 35px);
}
section.category .caption p{
    font-weight: normal;
    font-size: clamp(16px, 3.5vw, 20px);
    line-height: 1.3;
    width: 53%;
}
section.category .info h4{
    font-size: var(--fs-h3);
    font-weight: normal;
    padding-bottom: 3%;
}
section.category .info .info_banner ul{
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-bottom: 3%;
}
section.category .info .info_banner ul li{
    width: 25%;
}
/*========= 商品インクルード ===============*/

 .cta{
    position: relative;
}
.cart{
    display: flex;
    margin: 0%;
    background-color: #FFF;
    padding: 0% 0% 3% 10%;
    border-radius: 15px;
}
section.category#hair .cart .img_box img {
    height: 145px;
}
.cart .img_box{
    position: relative;
    flex: 0.6;
    padding-right: 3%;
}
.cart .name {
    font-weight: 500;
    font-size: 1.0em;
}
.cart .copy {
    display: none;
}
.cart .name_box {
    margin-bottom: 0.5em;
}
.cart .price2{
color: var(--color-txt-cp);
}
.cart .cp_discount{
background-color: var(--color-txt-cp);
}
.cart .cp_limit {
    font-size: 0.8em;
}
.cart .price_box {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}
.cart .icon_box img {
    margin: 1px;
    height: 1em;
    font-size: clamp(16px, 4vw, 20px);
    filter: hue-rotate(326deg);
}
.cart .txt_box {
    font-size: 1.1em;
    flex: 2;
    text-align: left;
}

.btn_wapper {
    display: flex;
    gap: 5px;
    width: 80%;
}
.btn_wapper .btn:first-of-type{
    border: 1px solid #333;
    background-color: #FFF;
}
.cart .btn:first-of-type p{color: #333;}
.cart .btn:first-of-type p::after{-webkit-text-stroke: 1px #fff;}
.cart .btn {
    width: 70%;
    margin-left: auto;
    margin-top: 0.5em;
    background-color: #333;
    border-radius: 50px;
    position: relative;
    transition: 0.2s;
}
#supplement .cart .btn a div p{
    margin-bottom: 0;
    color: #fff !important;
    text-align: center;
    padding: 4% 20% 5% 4%;
    font-size: 1.0em;
}
#supplement .cart .btn:first-of-type p::after{-webkit-text-stroke: 1px #333 !important;}
#supplement .cart .btn {
    width: 100%;
    margin-left: auto;
    margin-top: 0.5em;
    background-color: #333;
    border-radius: 50px;
    position: relative;
    transition: 0.2s;
}
#supplement .cart .btn_wapper:last-of-type .btn{
    color: #333 !important;
    background-color: #fff;
    border: 1px solid #333;
}
#supplement .cart .btn_wapper:last-of-type .btn p{
    color: #333 !important;
    padding: 4% 5% 5% 4%;
    font-size: 0.8em;
}
#supplement .cart .btn_wapper:last-of-type .btn p::after{
        top: 25%;
    -webkit-text-stroke: 0px #fff !important;
}

.cart .btn:hover {
    opacity: 0.7;
}
.cart .btn p{
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    padding: 4% 20% 5% 4%;
    font-size: 1.0em;
}
.cart .btn p::after {
    content: '\e96a';/*矢印アイコン*/
    font-size: 1.5em;
    position: absolute;
    top: 10%;
    right: 5%;
    -webkit-text-stroke: 1px #333;/*背景と同じ色で線を付けて細く見せる*/
}
 .cta a.cta_link{
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 540px;
    height: 100px;
    background-color: transparent;
    transition: background-color 0.2s ease;
}
 .cta a.cta_link:hover{
    background-color: rgba(255, 255, 255, 0.3);
}
 #fv a.cta_detail{
    position: absolute;
    bottom: 8%;
    left: 30%;
    width: 270px;
    height: 420px;
    background-color: transparent;
}
 .cta a.cta_detail {
    position: absolute;
    bottom: 67%;
    left: 3%;
    width: 30%;
    height: 20%;
    background-color: transparent;
}
 .cta a.cta_detail:hover{
    background-color: rgba(255, 255, 255, 0.3);
}
 .cart div.cart--link23566{
    text-align: right;
}
.cpattention{
    text-align: left;
    padding: 0% 3% 3%;
}
button {
    padding: 4% 12% !important;
    color: #fff;
    background: #e83f76;
    border: none;
    display: inline-block;
    font-size: var(--fs-h3);
}
/*================
以下スマホ用
==================*/
@media screen and (max-width:768px){
.pB3{padding-bottom: 5%;}
.pB7{padding-bottom: 5%;}
.w60{width: 60%;}
.w85{width: 85%;}
.w90{width: 90%;}
p.attention{font-size: 0.6em;}
.cart {padding: 0% 3% 8% 2%;}
.cart .name_box {margin-bottom: 0.2em;}
.cart .name {font-size: 0.8em;}
.cart .btn p {font-size: 0.7em;padding: 4% 15% 4% 4%;}
.cart .btn {width: 85%;margin-top: 0.5em;}
.cart .price_box{font-size: 1.1em;margin-bottom: 0em;}
 .cta a.cta_link {
    bottom: 0%;
    width: 80%;
    height: 55px;
}
 .cta a.cta_link {
    bottom: 0%;
    width: 80%;
    height: 55px;
}
.cart .img_box {flex: 0.8;}
.circle-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    grid-auto-flow: column;
    grid-auto-columns: 33%;
    overflow-x: auto;
    padding: 2% 0%;
    margin: 0;
    scroll-snap-type: x mandatory;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.btn_wapper {width: 100%;}
.qa {margin: 2%;}
.qa > summary span img {width: 25px;}
.qa > summary::before {width: 1px;right: 21px;height: 15px;}
.qa > summary::after {right: 14px;top: 50%;width: 15px;height: 1px;}
.qa .answer {
    padding: 1em 2em 1em 4em;
    font-size: 0.8em;
    line-height: 1.6;
}
.qa .answer span img {top: 0.7em;left: 1.1em;}
section.category .info{padding-top: 0%;}
section.category .caption{
    padding: 7% 2%;
    background-color: rgba(255,255,255,0.2);
    background-blend-mode: lighten;
        background-size: contain;
}
section.category .caption p{
    line-height: 1.3;
    width: 75%;
}
    section.category .info .info_banner ul li{width: 30%;}
section.category#facewash .caption{background-image: url(image/bg_category_02.png);background-size: contain;background-position: right top;}
#supplement .cart .btn a div p {
    font-size: 0.8em;
    padding: 4% 15% 5% 4%;
}
#supplement .cart .btn_wapper{
    flex-wrap: wrap;
}
#supplement .cart .btn_wapper:last-of-type .btn p {
    font-size: 0.6em;
}
#supplement .cart .btn_wapper:last-of-type .btn {
    margin-top: 0em;
}
    #supplement .cart .btn_wapper:last-of-type{
        margin-top: 2%;
    }
    #supplement .cart .btn_wapper:last-of-type .btn p::after{    top: 20%;}
}