@charset "shift_jis";

/* -----------------------------------------------------------
 共通タグ
----------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; }

a{outline: none; text-decoration: none;}
a:focus{outline:none;}
img{
	vertical-align:bottom;
	border: none;
	}
.page__inner{
    width: 100%!important;
}

#pro_wrapper{
	width:100%;
	font-size:12px;
-webkit-text-size-adjust: 100%;	
font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}
p, dl, dt, dd, ul li{
	margin: 0px;
	padding: 0px;
}
h4, h5{
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

    :root {
      --maroon: #993366;
      --maroon-dark: #5a1430;
      --maroon-light: #9e2550;
      --gold: #c8871a;
      --gold-bright: #e09b20;
      --cream: #fff8f2;
      --white: #ffffff;
      --gray-light: #f5f5f5;
      --gray: #888;
      --text: #222;
      --red-accent: #c0392b;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      font-size: 15px;
    }

    /* ===== MV ===== */
.mv {
  width: 100%;
  line-height: 0;
}
.mv img {
  width: 100%;
  height: auto;
  display: block;
}

/* PC/SP出し分け対応：MVのimgタグをpc/spクラスで制御 */
.mv img.pc,
.mv-placeholder.pc {
  display: block;
}
.mv img.sp,
.mv-placeholder.sp {
  display: none;
}

/* PC用MV：100%幅・グラデーション背景・画像は1024px固定・センター寄せ */
.mv.pc-wrap {
  background: linear-gradient(to right, #8d1c51, #ba2430);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.mv img.pc {
  width: 1024px;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.mv-placeholder.pc {
  height: 400px;
  max-width: 1024px;
  margin: 0 auto;
}
.mv-pc-inner {
  position: relative;
  width: 1024px;
  max-width: 100%;
  height: 400px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
@media screen and (min-width: 350px) and (max-width: 768px) {
  .mv img.pc,
  .mv-placeholder.pc {
    display: none !important;
  }
  .mv img.sp,
  .mv-placeholder.sp {
    display: block;
  }
  .mv.pc-wrap {
    background: none;
    min-height: unset;
    display: block;
  }
}

/* MV画像未設定時のプレースホルダー */
.mv-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(to right, #8a3563, #bc1c2f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .mv-placeholder {
    height: 220px;
  }
}
    .container {
      max-width: 980px;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }

    .header-inner {
      max-width: 980px;
      width: 90%;
      margin: 0 auto;
      padding: 24px 0 0;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      position: relative;
    }

    .header-logo-msd {
      position: absolute;
      top: 16px;
      right: 24px;
    }
    .header-logo-msd img {
      height: 32px;
      width: auto;
      filter: brightness(0) invert(1);
    }
    /* MSD text fallback */
    .msd-badge {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 4px;
      padding: 4px 10px;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    /* ===== read SECTION ===== */
    .read {
      background: var(--white);
      text-align: center;
      padding: 56px 0 40px;
    }

    .read-catch {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 22px;
      color: var(--maroon);
      font-weight: 700;
      line-height: 1.8;
      margin-bottom: 6px;
    }
    .read-catch sup {
      font-size: 14px;
      vertical-align: super;
    }
    .read-catch em {
      font-style: normal;
      color: var(--gold);
    }

    .read-sub {
      font-size: 22px;
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--maroon);
      font-weight: 700;
      margin-bottom: 32px;
    }

    .notes {
      font-size: 11px;
      color: var(--gray);
      margin-top: 12px;
      text-align: center;
    }

    /* ===== BUTTON ===== */
    .btn-purchase {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
      color: #fff!important;
      font-size: 17px;
      font-weight: 700;
      width: min(500px, 90vw);
      padding: 16px 24px;
      border-radius: 50px;
      text-decoration: none;
      /*box-shadow: 0 4px 20px rgba(200,135,26,0.35);*/
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.5px;
    }
    .btn-purchase:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(200,135,26,0.45);
      text-decoration: none;
    }
    .btn-purchase .arrow {
      font-size: 20px;
      font-weight: 900;
    }
.btn-youtube {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border:1px solid #993366;
      color: #993366!important;
      font-size: 14px!important;
      font-weight: 700;
      width: min(300px, 90vw);
      padding: 8px 20px!important;
    margin-top: 20px;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.5px;
    }
    .btn-youtube:hover {
      text-decoration: none;
      background: #cf5e97;
      color: #FFFFFF!important;
      border:1px solid #cf5e97;
}
    .btn-youtube .arrow {
      font-size: 20px;
      font-weight: 900;
    }
.btn-attent{
    padding-top:0.5rem;
    margin:0 auto;
     color:var(--gray);
}
.btn-youtube-cont{
    text-align:center;  
}
@media screen and (max-width: 768px) {
  .btn-youtube {
    width: 100%;
    padding:8px 0 !important;
  }
}
    /* ===== FEATURES SECTION ===== */
    .features {
      background: linear-gradient(160deg, #8b2050 0%, #993366 50%, #6a1535 100%);
      padding: 56px 0;
      position: relative;
      overflow: hidden;
    }
    .features::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 55%);
      pointer-events: none;
    }

    .features .section-title {
      color: #fff;
    }
    .features .section-title::after {
      background: rgba(255,255,255,0.5);
    }

    .section-title {
      text-align: center;
      /*font-family: 'Noto Serif JP', serif;*/
      font-size: clamp(24px, 3vw, 28px);
      color: var(--maroon);
      font-weight: 700;
      margin-bottom: 36px;
      position: relative;
    }
   /* .section-title::after {
      content: '';
      display: block;
      width: 48px;
      height: 3px;
      background: var(--gold);
      margin: 12px auto 0;
      border-radius: 2px;
    }*/

    .features-icons {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 36px;
    }
    .features-icons .img-placeholder {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 11px;
      text-align: center;
      border: 2px dashed rgba(255,255,255,0.35);
    }

    .features-list {
      max-width: 680px;
      width: 90%;
      margin: 0 auto;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .features-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      background: transparent;
      border-left: none;
      border-radius: 0;
      padding: 10px 0;
      box-shadow: none;
      font-size: clamp(13px, 2vw, 15px);
      font-weight: 500;
      line-height: 1.6;
      color: #fff;
      text-align: left;
    }

    .features-list li::before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 8px 0 8px 14px;
      border-color: transparent transparent transparent var(--gold-bright);
      flex-shrink: 0;
      font-size: 10px;
      margin-top: 4px;
      flex-shrink: 0;
    }

    /* ===== DOSAGE SECTION ===== */
    .dosage {
      background: var(--white);
      padding: 56px 0 0 0;
    }

    .dosage-inner {
      max-width: 980px;
      width: 90%;
      margin: 0 auto;
    }

    .product-info-wrap {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      margin-bottom: 40px;
    }

 .product-img-col {
  flex-shrink: 0;
  min-width: 0;
}

.product-img-col .img-placeholder {
  width: 350px;
  height: 255px;
  background: #f5f5f5;
  border: 2px dashed #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 12px;
  text-align: center;
}

.product-img-col img {
  width: 100%;
  max-width: 350px;
  height: 255px;
  object-fit: cover;
  border-radius: 8px;
}

    .product-info-table {
      flex: 1;
    }

    table.info-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;

    }
    table.info-table th,
    table.info-table td {
      border: 1px solid #e0d0d6;
      padding: 12px 16px;
      vertical-align: top;
      text-align: left;
    }
    table.info-table th {
      background: var(--maroon);
      color: #fff;
      font-weight: 700;
      width: 140px;
      white-space: nowrap;
    }
    table.info-table tr:nth-child(even) td {
      background: #fdf5f8;
    }

    /* Used items */
    .used-items-wrap {
      display: flex;
      gap: 32px;
      align-items: flex-start;
      background: #fdf5f8;
      border: 1px solid #e8d0d9;
      border-radius: 10px;
      padding: 24px;
      margin-bottom: 40px;
    }

    .used-items-text {
      flex: 1;
        text-align: left;
    }
    .used-items-text h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--maroon);
      margin-bottom: 12px;
      padding-left: 12px;
      border-left: 3px solid var(--maroon);
      display: block;
    }
     .used-items-boxtext {
         margin-left: 1rem;
    }
    .used-items-list {
      list-style: none;
      font-size: 16px;
      line-height: 2;
    }
    .used-items-list li span.label {
      display: inline-block;
      width: 20px;
      font-weight: 700;
      color: var(--maroon);
    }

    .used-items-img {
      flex-shrink: 0;
    }
    .used-items-img .img-placeholder,
    .used-items-img img {
      width: 450px;
      height: auto;
      object-fit: cover;
    }
    .used-items-img .img-placeholder {
      background: #eee;
      border: 2px dashed #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 12px;
      text-align: center;
    }

    /* ===== CAUTION ===== */
    .caution {
      background: var(--white);
      padding: 0 0 56px 0;
    }

    .caution-inner {
      max-width: 980px;
      width: 90%;
      margin: 0 auto;
    }

    .caution-title {
      background: var(--maroon);
      color: #fff;
      font-size:18px;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: 6px 6px 0 0;
      margin-bottom: 0;
      text-align: left;
    }

    .caution-box {
      border: 1px solid var(--maroon);
      border-top: none;
      border-radius: 0 0 6px 6px;
      padding: 20px;
      background: var(--white);
      font-size: 16px;
      margin-bottom: 10px;
    }

    .caution-box ul {
      list-style: none;
      font-size: 16px;
    }
    .caution-box ul li {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
      line-height: 1.6;
      text-align: left;
    }
    .caution-box ul li .note-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 5px;
      object-fit: contain;
      display: block;
    }
    .caution-note {
      font-size: 12px;
      color: var(--gray);
      text-align: right;
      margin-bottom: 24px;
    }

    /* Weight-dose table + steps */
    .dosage-grid {
      display: grid;
      grid-template-columns: 4fr 6fr;
      gap: 32px;
    }

    .dosage-table-wrap h4,
    .steps-wrap h4 {
      background: var(--maroon);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      padding: 10px 16px;
      border-radius: 6px 6px 0 0;
      margin-bottom: 0;
      text-align: left;
    }

    table.dose-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 16px;
      table-layout: fixed;
    }
    table.dose-table th,
    table.dose-table td {
      border: 1px solid #e0d0d6;
      padding: 8px 12px;
      text-align: center;
      width: 50%;
    }
    table.dose-table th {
      background: #f5e8ed;
      font-weight: 700;
      color: var(--maroon);
    }
    table.dose-table tr:nth-child(even) td {
      background: #fdf5f8;
    }

    .steps-wrap {
      border: 1px solid var(--maroon);
      border-radius: 6px;
      overflow: hidden;
    }

    .steps-content {
      padding: 20px;
      border: 1px solid #e0d0d6;
      border-top: none;
      border-bottom: none;
      text-align: left;
    }

    .steps-content ol {
      padding-left: 2em;
      font-size: 16px;
      list-style: decimal!important;
    }
    .steps-content ol li {
      margin-bottom: 14px;
      line-height: 1.7;
      list-style: decimal;
    }

    .steps-notes {
      margin-top: 16px;
      border-top: 1px solid #e8d0d9;
      padding-top: 16px;
    }
    .steps-notes h5 {
      font-size: 16px;
      color: var(--maroon);
      font-weight: 700;
      margin-bottom: 10px;
    }
    .steps-notes ul {
      list-style: none;
      font-size: 16px;
    }
    .steps-notes ul li {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
      line-height: 1.6;
    }
    .steps-notes ul li .note-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 5px;
      object-fit: contain;
      display: block;
    }

    /* ===== ACCORDION (dose table) ===== */
    .accordion-toggle {
      width: 100%;
      background: #f5e8ed;
      border: none;
      border-top: 1px solid #e0d0d6;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-size: 13px;
      font-weight: 700;
      color: var(--maroon);
      font-family: 'Noto Sans JP', sans-serif;
      transition: background 0.2s;
    }
    .accordion-toggle:hover {
      background: #edd5df;
    }
    .accordion-toggle .acc-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--maroon);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 900;
      flex-shrink: 0;
      transition: transform 0.3s;
      line-height: 1;
    }
    .accordion-toggle.is-open .acc-icon {
      transform: rotate(45deg);
    }
    .accordion-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease;
    }
    .accordion-body.is-open {
      max-height: 1000px;
    }


    .cta-section {
      background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
      padding: 56px 24px;
      text-align: center;
    }

    /* ===== FAQ ===== */
    .faq {
      background: var(--white);
      padding: 56px 0;
    }

    .faq-inner {
      max-width: 980px;
      width: 90%;
      margin: 0 auto;
      text-align: left;
    }

    .faq-section-title {
      text-align: center;
      /*font-family: 'Noto Serif JP', serif;*/
      font-size: clamp(24px, 3.5vw, 30px);
      color: var(--maroon);
      font-weight: 700;
      margin-bottom: 40px;
    }

    .faq-item {
      border: none;
      border-radius: 0;
      margin-bottom: 0;
      overflow: visible;
      border-bottom: 1px solid #e0d0d6;
      padding: 24px 0;
    }
    .faq-item:first-of-type {
      border-top: 1px solid #e0d0d6;
    }

    .faq-q {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 0;
      background: transparent;
      cursor: default;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.6;
      transition: none;
      margin-bottom: 10px;
      color: var(--text);
    }
    .faq-q:hover { background: transparent; }

    .faq-q .q-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      font-size: 15px;
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 2px;
      background: var(--maroon);
      color: #fff;
    }

    .faq-a {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 0;
      background: transparent;
      font-size: 16px;
      line-height: 1.8;
      border-top: none;
      color: var(--text);
    }

    .faq-a .a-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      font-size: 15px;
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 2px;
      background: var(--gold);
      color: #fff;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--maroon-dark);
      color: rgba(255,255,255,0.6);
      text-align: center;
      padding: 24px;
      font-size: 12px;
    }

    /* ===== IMAGE PLACEHOLDER HELPER ===== */
    .img-placeholder {
      position: relative;
    }
    .img-placeholder::after {
      content: attr(data-label);
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #aaa;
      text-align: center;
      padding: 8px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .product-info-wrap {
        flex-direction: column;
      }
     
      .product-img-col {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .product-img-col .img-placeholder,
  .product-img-col img {
    width: 500px;
    max-width: 100%;
    height: auto;
  }
      .used-items-wrap {
        flex-direction: column;
        gap:12px!important;
        
      }
      .used-items-img .img-placeholder,
      .used-items-img img {
        width: 100%;
        height: auto;
      }

      .dosage-grid {
        grid-template-columns: 1fr;
      }

      .dosage-table-wrap {
        border: 1px solid var(--maroon);
        border-radius: 6px;
        overflow: hidden;
      }

      table.info-table th {
        width: 110px;
      }
    }

    @media (max-width: 480px) {
      .btn-purchase {
        padding: 14px 32px;
        font-size: 15px;
      }
        .btn-youtube {
        padding: 14px 32px;
        font-size: 15px;
      }
      .features-list li {
        font-size: 16px;
      }
    }
      /*PCとSPで出しわける用*/
.pc {
    display: block;
  }
  .sp {
    display: none;
  }
  
@media screen and (min-width: 350px) and (max-width: 768px){
    .pc {
      display: none;
    }
    .sp {
      display: block;
    }
  }

/*PCとSPで出しわける用*/
.pc {
    display: block;
  }
  .sp {
    display: none;
  }
  
@media screen and (min-width: 350px) and (max-width: 768px){
    .pc {
      display: none;
    }
    .sp {
      display: block;
    }
  }
@media screen and (min-width: 350px) and (max-width: 768px){

   .dosimeter-img-wrap img {
      width: 100%!important;
    }
	/*お問い合わせ*/
.btn-bg{
	background-color: #fde7f6;
	width: 100%;
}
.btn-box{
	margin: 0 auto;
	padding: 2rem 0;
}
.btn a {
  position: relative;
  display: block;
  width: 300px;
  background-color: #de51af;
  border-radius: 60px;
  font-size: 1rem;;
   font-weight: 700;
  color: #FFFFFF!important;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
}
.btn a:link{
	color: #FFFFFF!important;
	text-decoration: none;
}
.btn a:hover{
	color: #FFFFFF!important;
	text-decoration: none;
}
.btn-long a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 90px;
  background-color: #de51af;
  border-radius: 60px;
  font-size: 1rem;;
   font-weight: 700;
  color: #FFFFFF!important;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
}
.btn-long a:link{
	color: #FFFFFF!important;
	text-decoration: none;
}
.btn-long a:hover{
	color: #FFFFFF!important;
	text-decoration: none;
}
.btn-box{
	margin: 0 auto;
	padding: 1rem 0;
}
.btn-box-orange{
	margin: 0 auto;
	padding: 2rem 0;
}
.btn-orange a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 50px;
  background-color: #eb8029;
  border-radius: 60px;
  font-size: 1rem;;
   font-weight: 700;
  color: #FFFFFF!important;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
}
.btn-orange a:link{
	color: #FFFFFF!important;
	text-decoration: none;
}
.btn-orange a:hover{
	color: #FFFFFF!important;
	text-decoration: none;
}


/* アイコンのスタイル */
.btn-arrow-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  box-sizing: border-box;
}
/* -----------------------------------------------------------
 ↑↑↑↑↑ CSSの追記はここまで ↑↑↑↑↑
----------------------------------------------------------- */



/* for IE7 only */
*:first-child+html div,
*:first-child+html ul,
*:first-child+html ol,
*:first-child+html dl,
*:first-child+html .clearfix{
height:1%;
}

