@charset "UTF-8";

/* ==========================================================================
   リカバリーウェア特集 LP
   設計: FLOCSS + BEM
   Layer:
     #Foundation  リセット・base
     #Layout      l-*   ページ全体のレイアウト枠
     #Object
       #Component c-*   再利用可能なUIパーツ
       #Project   p-*   このLP固有のブロック
       #Utility   u-*   汎用ユーティリティ
   ========================================================================== */


/* ==========================================================================
   #Foundation
   ========================================================================== */
main {
  overflow-x: hidden;
}

html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

body {
  color: #062662;
  line-height: 1;
  background: #fff;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.l-main p,
.l-main li {
  color: #062662;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}


/* ==========================================================================
   #Layout
   ========================================================================== */
.l-main {
  font-size: 16px;
  color: #062662;
}

/* コンテンツ幅の共通ラッパー */
.l-inner {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* パンくず */
.l-breadcrumb {
  padding: 16px 0;
}


/* ==========================================================================
   #Object - #Component
   ========================================================================== */

/* --- パンくず ------------------------------------------------------------ */
.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  color: #666;
}

.c-breadcrumb__item {
  position: relative;
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: ">";
  margin: 0 8px;
  color: #aaa;
}

.c-breadcrumb__item a:hover {
  text-decoration: underline;
}

/* --- セクション見出し ----------------------------------------------------- */
.c-heading {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

/* --- 白パネル（枠つきカード） --------------------------------------------- */
.c-panel {
  background: #fff;
  border: 1px solid #d8dde5;
  padding: 32px;
  text-align: center;
}

.c-panel--plain {
  text-align: left;
}

.c-panel__title {
  font-size: 24px;
  font-weight: bold;
  color: #062663;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #062663;
}

.c-panel__subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
}

.c-panel__lead {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  color: #062663;
  margin-bottom: 24px;
  border-bottom: 1px solid #062663;
  padding-bottom: 20px;
}

.c-panel__text {
  font-size: 15px;
  line-height: 1.5;
  color: #062662;
  text-align: left;
}

.c-panel__note {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin-top: 16px;
  text-align: left;
}

.c-panel__figure {
  margin: 20px 0 0;
}

/* --- ボタン --------------------------------------------------------------- */
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 32px 12px 20px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
  transition: opacity 0.3s;
}

.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.c-btn:hover {
  opacity: 0.8;
}

.c-btn--blue {
  background: #062663;
}

.c-btn--black {
  background: #1a1a1a;
  max-width: 400px;
  margin: 0 auto;
  color: #fff !important;
}


/* ==========================================================================
   #Object - #Project
   ========================================================================== */

/* --- メインビジュアル ----------------------------------------------------- */
.p-mv {
  width: 100%;
}

.p-mv__img {
  width: 100%;
  display: block;
}

/* --- リード文 ------------------------------------------------------------- */
.p-lead {
  padding: 72px 0;
}

.p-lead__body {
  text-align: center;
}

.p-lead__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* PCは1行（brを無効化）、SPは2行（brを表示） */
.p-lead__br {
  display: none;
}

.p-lead__text {
  font-size: 16px;
  line-height: 2;
  color: #062662;
}

/* --- 3枚並び画像 ---------------------------------------------------------- */
.p-gallery {
  width: 100%;
}

.p-gallery__inner {
  width: 100%;
}

.p-gallery__img {
  width: 100%;
  display: block;
}

/* --- こんな方におすすめ --------------------------------------------------- */
.p-recommend {
  padding: 80px 0;
}

.p-recommend__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.p-recommend__item {
  width: calc((100% - 80px) / 5);
  background: #fff;
  border: 1px solid #d8dde5;
  border-radius: 6px;
  padding: 24px 16px;
  text-align: center;
}

.p-recommend__num {
  font-size: 20px;
  font-weight: bold;
  color: #062663;
  margin-bottom: 14px;
}

.p-recommend__icon {
  margin-bottom: 14px;
}

.p-recommend__icon img {
  width: 80px;
  height: 80px;
}

.p-recommend__label {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.p-recommend__desc {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

/* --- タイプ選択ボタン ----------------------------------------------------- */
.p-typenav {
  padding: 0 0 120px;
}

.p-typenav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.p-typenav__item {
  width: calc((100% - 40px) / 3);
  max-width: 300px;
}

.p-typenav__link {
  display: block;
  transition: opacity 0.3s;
}

.p-typenav__link:hover {
  opacity: 0.85;
}

.p-typenav__link img {
  width: 100%;
  display: block;
}

/* --- ブランドセクション共通 ----------------------------------------------- */
.p-brand {
  padding-bottom: 80px;
}

.p-brand__head {
  text-align: center;
  color: #fff;
  padding: 22px 0;
  margin-bottom: 48px;
  background: radial-gradient(circle, #426f9d 0%, #003770 100%);
}

.p-brand__head-en {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.p-brand__head-ja {
  font-size: 26px;
  font-weight: bold;
  margin-left: 8px;
}

/* NANOMIX 使用素材（左:テキスト+バッジ / 右:画像2枚） */
.p-yokuneru__detail-body {
  display: flex;
  align-items: center;
  gap: 24px;
}
.p-yokuneru__detail-left{
  width: 40%;
}
.p-yokuneru__detail-text {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  flex-shrink: 0;
}

.p-yokuneru__detail-text .c-panel__text {
  flex: 1;
  text-align: left;
  font-size: 14px;
}
.p-yokuneru__detail-text img{
  width: 88px;
}

.p-yokuneru__detail-imgs {
  display: flex;
  gap: 16px;
  flex: 1;
}

.p-yokuneru__detail-img {
  width: calc((100% - 16px) / 2);
}

.p-yokuneru__detail-img img {
  width: 100%;
}

/* 楽天ランキングバナー */
.p-brand__rank {
  margin-top: 40px;
  text-align: center;
}

.p-brand__rank img {
  width: 100%;
}

/* --- 商品カード ----------------------------------------------------------- */
.p-product {
  margin: 40px auto;
}

.p-product__card {
  display: flex;
  gap: 56px;
  background: #fff;
  border-radius: 6px;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.p-product__card + .p-product__card {
  margin-top: 56px;
}

.p-product__img {
  width: 45%;
  flex-shrink: 0;
}

.p-product__img img {
  width: 100%;
  display: block;
}

/* ダミー枠（データ待ち） */
.p-product__img--dummy {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
}

.p-product__dummy-label {
  font-size: 16px;
  color: #666;
}

.p-product__body {
  flex: 1;
  text-align: left;
}

.p-product__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #002255;
  font-weight: bold;
  font-family: sans-serif;
  line-height: 1.3;
}

/* 「男女兼用」の丸バッジ部分 */
.p-product__unisex {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 72px;
  height: 72px;
  border: 1.5px solid #002255;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

/* 右側テキストの調整 */
.p-product__brand {
  font-size: 26px;
  margin-bottom: 32px;
}

.p-product__spec {
  margin-bottom: 32px;
  height: 80px;
}

.p-product__spec img{
    height: 100%;
    width: auto;
}


.p-product__colors {
  margin-bottom: 32px;
  height: 56px;
}

.p-product__colors img {
  height: 100%;
  width: auto;
}

.p-product__buy-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.p-product__buy-row:last-child {
  margin-top: 24px;
}

.p-product__name {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

.p-product__price {
  grid-area: price;
  font-size: 32px;
  font-weight: bold;
  color: #062663;
  white-space: nowrap;
}

.p-product__price span {
  font-size: 14px;
  font-weight: bold;
}

.p-product__buy-row .c-btn {
  width: 240px;
  color: #fff;
}


/* --- AddElm 固有 ---------------------------------------------------------- */
.p-addelm__lead {
  display: flex;
  gap: 56px;
  align-items: stretch;
}

.p-addelm__lead-img {
  width: 45%;
  flex-shrink: 0;
}

.p-addelm__lead-img img {
  width: 100%;
}

.p-addelm__lead .c-panel--plain {
  flex: 1;
}

.p-addelm__def {
  border: 1px solid #062663;
  padding: 16px;
  margin-bottom: 20px;
}

.p-addelm__def-title {
  font-size: 15px;
  font-weight: bold;
  color: #062663;
  margin-bottom: 8px;
  text-align: center;
  border-bottom: 1px solid #062663;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.p-addelm__def-text {
  font-size: 13px;
  line-height: 1.5;
  color: #062662;
}

.p-addelm__research {
  text-align: left;
}

.p-addelm__research-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: #062662;
}

.p-addelm__research-img {
  width: 35%;
  flex-shrink: 0;
}

.p-addelm__research-img img {
  width: 100%;
}

.p-addelm__performance {
  display: flex;
  gap: 40px;
  align-items: center;
}

.p-addelm__performance-img {
  width: 35%;
  flex-shrink: 0;
}

.p-addelm__performance-img img {
  width: 100%;
}

.p-addelm__performance-icon {
  display: flex;
  gap: 6%;
  justify-content: center;
}

.p-addelm__performance-icon img {
  width: 44%;
}

.p-addelm__2column{
  margin-top: 56px;
  display: flex;
  gap: 40px;
}

/* --- YOKURAKU 固有 -------------------------------------------------------- */
.p-yokuraku__lead {
  width: calc(50% - 20px);
}

.p-yokuraku__lead img {
  width: 100%;
}

.p-yokuraku__icons {
  width: 90%;
  margin: 0 auto 24px;
}

.p-yokuraku__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.p-yokuraku__cols .c-panel {
  width: calc(50% - 20px);
}

.p-yokuneru__detail{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.p-yokuneru__detail--01{
    width: calc(50% - 20px);
}
.p-yokuneru__detail--01 img{
  width: 80%;
}
.p-yokuneru__detail--02{
    width: calc(50% - 20px);
}
.p-yokuneru__detail--03{
    width: 100%;
}


/* --- 関連リンク ----------------------------------------------------------- */
.p-links {
  padding: 40px 0 60px;
}

.p-links__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.p-links__item {
  width: calc((100% - 40px) / 3);
  max-width: 320px;
}

.p-links__link {
  display: block;
  transition: opacity 0.3s;
}

.p-links__link:hover {
  opacity: 0.85;
}

.p-links__link img {
  width: 100%;
  display: block;
}

/* --- メンズトップに戻る --------------------------------------------------- */
.p-backtop {
  padding: 0 0 80px;
}


/* ==========================================================================
   #Object - #Utility
   ========================================================================== */

/* スクロールフェードイン（main.js の js-scroll-trigger と連動） */
.u-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.u-fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

.u-pc-only {
  display: block;
}

.u-sp-only {
  display: none;
}


/* ==========================================================================
   Responsive - SP (max-width: 767px)
   ========================================================================== */
@media screen and (max-width: 767px) {

  .l-inner {
    width: 100%;
    padding: 0 16px;
  }

  .u-pc-only {
    display: none;
  }

  .u-sp-only {
    display: block;
  }

  /* 見出し */
  .c-heading {
    font-size: 22px;
    margin-bottom: 28px;
  }

  /* パネル */
  .c-panel {
    padding: 20px 16px;
  }

  .c-panel__title {
    font-size: 18px;
  }

  .c-panel__lead {
    font-size: 17px;
    text-align: center;
  }

  /* リード文 */
  .p-lead {
    padding: 48px 0;
  }

  .p-lead__title {
    font-size: 21px;
  }

  .p-lead__br {
    display: inline;
  }

  .p-lead__text {
    font-size: 15px;
    line-height: 1.9;
  }

  /* おすすめ */
  .p-recommend {
    padding: 56px 0;
  }

  .p-recommend__list {
    gap: 8px;
  }

  .p-recommend__item {
    width: calc((100% - 24px) / 3);
    padding: 16px 8px;
  }

  .p-recommend__num {
    font-size: 15px;
  }

  .p-recommend__icon img {
    width: 52px;
    height: 52px;
  }

  .p-recommend__label {
    font-size: 13px;
  }

  .p-recommend__desc {
    font-size: 11px;
  }

  /* タイプナビ */
  .p-typenav {
    padding-bottom: 56px;
  }

  .p-typenav__list {
    gap: 12px;
  }

  .p-typenav__item {
    width: calc(50% - 6px);
  }

  /* ブランド見出し */
  .p-brand {
    padding-bottom: 56px;
  }

  .p-brand__head {
    padding: 16px 0;
    margin-bottom: 32px;
  }

  .p-brand__head-en {
    font-size: 20px;
  }

  .p-brand__head-ja {
    font-size: 13px;
    display: block;
    margin: 4px 0 0;
  }

  .p-brand__material {
    flex-direction: column;
    gap: 12px;
  }

  .p-brand__material-img {
    width: 100%;
  }

  /* 商品カード */

  .p-product__card {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .p-product__img {
    width: 90%;
  }

  .p-product__brand {
    font-size: 22px;
    margin-bottom: 24px;
    justify-content: center;
  }
  .p-product__spec{
    height: 64px;
    text-align: center;
    margin-bottom: 24px;
  }
  .p-product__colors{
    margin-bottom: 24px;
    height: 48px;
    text-align: center;
  }

  .p-product__price {
    font-size: 18px;
  }

  /* yokuneru*/
  .p-yokuneru__detail{
    gap: 16px;
  }
  .p-yokuneru__detail--01{
    width: 100%;
  }
  .p-yokuneru__detail--02{
    width: 100%;
  }
  .p-yokuneru__detail-body{
    flex-wrap: wrap;
  }
  .p-yokuneru__detail-left{
    width: 100%;
  }
  .p-yokuneru__detail-text{
    gap: 8px;
  }
  .p-yokuneru__detail-text img{
    width: 80px;
  }

  /*楽天バナー*/
  .p-brand__rank{
    margin-top: 0;
  }

  /* AddElm */
  .p-addelm__lead {
    flex-direction: column;
    gap: 20px;
  }

  .p-addelm__lead-img {
    width: 100%;
  }

  .p-addelm__research {
    flex-direction: column;
    gap: 16px;
  }

  .p-addelm__research-img {
    width: 100%;
  }

  .p-addelm__performance {
    flex-direction: column;
    gap: 16px;
  }

  .p-addelm__performance-img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .p-addelm__2column{
    flex-wrap: wrap;
    margin-top: 40px;
  }

  /* YOKURAKU */
  .p-yokuraku__icons {
    gap: 32px;
  }

  .p-yokuraku__icon img {
    width: 52px;
    height: 52px;
  }

  .p-yokuraku__cols {
    flex-direction: column;
    gap: 16px;
  }
  .p-yokuraku__lead{
    width: 100%;
  }
  .p-yokuraku__cols .c-panel{
    width: 100%;
  }

}
