@charset "UTF-8";

/*-----------------------------------
    リセット・ベース
-----------------------------------*/
:root {
  --color-bg: #fcfbf9;
  --color-bg-cream: #fcfbf9;
  --color-bg-blob1: #f2efe6;
  --color-bg-blob2: #fef4e8;
  --color-border: #f0eee5;
  --color-text: #111111;
  --color-text-sub: #111111;
  --color-text-dark: #111111;
  --color-primary: #525EA3;
  --color-accent: #DFA2CB;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--color-text);
  background: var(--color-bg);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.75;
}

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

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  body {
    font-size: 13px;
    line-height: 1.6;
  }
}

/*-----------------------------------
    ユーティリティ
-----------------------------------*/
.contents_inner {
  max-width: 75vw;
  margin: 0 auto;
}

.pc {
  display: block;
}

.tab {
  display: none;
}

.sp {
  display: none;
}



.text_left {
  text-align: left;
}

.text_center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.row_box {
  display: flex;
  align-items: center;
  gap: 4vw;
}

.row_reverse {
  flex-direction: row-reverse;
}

.bg_gray {
  background: var(--color-bg-cream);
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スクロールフェードインアニメーション */
.wow {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.wow.fadeInUp {
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.wow.fadeIn.is_animated,
.wow.fadeInUp.is_animated {
  opacity: 1;
  transform: translateY(0);
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .contents_inner {
    max-width: 85vw;
  }
}

/*-----------------------------------
    レスポンシブ: コンテンツ幅調整 (max-width: 1100px)
-----------------------------------*/
@media screen and (max-width: 1100px) {
  .contents_inner {
    width: 90%;
    max-width: 100%;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .pc {
    display: none;
  }

  .tab {
    display: block;
  }

  .row_box {
    flex-direction: column;
    gap: 8vw;
  }

  .row_reverse {
    flex-direction: column;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .sp {
    display: block;
  }
}

/*-----------------------------------
    共通コンポーネント
-----------------------------------*/
h1,
h2,
h3 {
  font-weight: 500;
  color: var(--color-text-dark);
}

.title_box {
  margin-bottom: 1.8vw;
}

.h2_style span {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  /* 追加 */
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  /* 追加 */
}

.h2_style h2 {
  font-size: 48px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  /* 追加 */
  font-weight: 500;
}

.h2_style span.point_eyebrow {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-sub);
  opacity: 0.7;
}

.btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  width: fit-content;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(180deg,
      var(--color-primary) 0%,
      var(--color-primary) 35%,
      color-mix(in srgb, var(--color-primary), var(--color-accent) 30%) 65%,
      color-mix(in srgb, var(--color-primary), var(--color-accent) 70%) 90%,
      var(--color-accent) 100%);
  box-shadow: 0 10px 25px rgba(226, 186, 213, 0.25);
}

.btn_primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(226, 186, 213, 0.35);
  opacity: 1;
}

.btn_primary.btn_primary {
  /* 詳細度を上げて確実に優先させる場合の書き方の一例 */
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.btn_small {
  padding: 12px 40px;
  font-size: 16px;
  width: fit-content;
  margin: 0 auto;

}

.btn_large {
  padding: 22px 56px;
  font-size: 17px;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;

}



.link_arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

.link_arrow span {
  transition: transform 0.3s;
}

.link_arrow:hover span {
  transform: translateX(4px);
}

/* ダミービジュアル(実写素材差し替え前提の暫定装飾) */
.dummy_img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  color: var(--color-primary);
  overflow: hidden;
}

.dummy_img svg {
  width: 28%;
  height: 28%;
  opacity: 0.55;
}

.dummy_col_04 {
  background: linear-gradient(135deg, #f4f1e9, #ecd9c8);
}

.dummy_col_05 {
  background: linear-gradient(135deg, #fef0e6, #fadfc2);
}

.dummy_col_06 {
  background: linear-gradient(135deg, #f2ece0, #e4dcc6);
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .h2_style h2 {
    font-size: 26px;
  }

}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .btn_primary {
    padding: 16px 20px;
  }

  .btn_large {
    padding: 18px 20px;
    font-size: 15px;
  }

  .dummy_img {
  border-radius: 1.2rem;

}

}

/*-----------------------------------
    ヘッダー
-----------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(252, 251, 249, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90vw;
  height: 84px;
}

#header_logo a {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: var(--color-text-dark);
}

#header_nav ul {
  gap: 28px;
}

#header_nav a {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 600;
}

#header_nav a:hover {
  color: var(--color-primary);
  opacity: 1;
}

#header_cta {
  padding: 13px 30px;
  font-size: 13px;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .header_inner {
    height: 64px;
  }

  #header_logo a {
    font-size: 17px;
  }

  #header_cta {
    display: none;
  }
}

/*-----------------------------------
    ハンバーガーメニュー
-----------------------------------*/
#drawer_btn {
  position: relative;
  z-index: 200;
  width: 32px;
  height: 22px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

#drawer_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-text-dark);
  transition: transform 0.3s, opacity 0.3s;
}

#drawer_btn span:nth-child(1) {
  top: 0;
}

#drawer_btn span:nth-child(2) {
  top: 10px;
}

#drawer_btn span:nth-child(3) {
  top: 20px;
}

#drawer_btn.is_active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

#drawer_btn.is_active span:nth-child(2) {
  opacity: 0;
}

#drawer_btn.is_active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/*-----------------------------------
    ドロワーメニュー
-----------------------------------*/
#drawer_menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  padding: 100px 40px 40px;
  background: #fff;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

#drawer_menu.is_active {
  transform: translateX(0);
}

#drawer_menu ul li {
  border-bottom: 1px solid var(--color-border);
}

#drawer_menu ul li a {
  display: block;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
}

#drawer_menu .btn_primary {
  width: 100%;
  margin-top: 32px;
}

/*-----------------------------------
    フッター
-----------------------------------*/
footer {
  padding: 50px 0 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
}

footer .company {
  font-weight: 500;
  margin-bottom: 10px;
}

footer span {
  display: block;
}

.footer_inner .btn_primary {
  background: #FE2D17 !important;
  margin-top: 20px;
}

.footer_inner {
  display: grid;
  grid-template-columns: 1.3fr 0.5fr;
  gap: 60px;
  padding-bottom: 20px;
}

#footer_logo {
  margin-bottom: 16px;
  width: 90%;
  max-width: 120px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
}

.footer_brand_desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.footer_col_title {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #bbbbbb;
}

.footer_info_list li {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.8;
}

.footer_info_list li:last-child {
  margin-bottom: 0;
}

.footer_info_list strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.footer_link_list li {
  margin-bottom: 14px;
  font-size: 13px;
}

/*-----------------------------------
    フッター内コンポーネント
-----------------------------------*/
#footer_copy {
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

#footer_copy small {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #b3b3b3;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  footer {
    padding: 60px 0 0;
  }

  .footer_inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }
}

/*-----------------------------------
    固定UI(ページTOP)
-----------------------------------*/
#pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

#pagetop.is_show {
  opacity: 1;
  visibility: visible;
}

#pagetop:hover {
  transform: translateY(-4px);
  opacity: 1;
}

#pagetop span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: translate(-50%, -30%) rotate(-45deg);
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  #pagetop {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/*-----------------------------------
    追従:Amazon購入ボタン(丸型)
-----------------------------------*/
.btn_float_amazon {
  position: fixed;
  right: 30px;
  bottom: 96px;           /* #pagetop(bottom:30px, height:48px)の上に重ならない位置 */
  z-index: 91;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: 0 10px 25px rgba(226, 186, 213, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn_float_amazon:hover {
  transform: translateY(-4px) scale(1.05);
  opacity: 1;
  box-shadow: 0 14px 30px rgba(226, 186, 213, 0.45);
}

.btn_float_amazon_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.btn_float_amazon_icon svg {
  width: 22px;
  height: 22px;
}

.btn_float_amazon_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.02em;
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .btn_float_amazon {
    right: 16px;
    bottom: 76px;    /* #pagetop(bottom:16px, height:42px)の上に重ならない位置 */
    width: 90px;
    height: 90px;
  }
  .btn_float_amazon_icon svg {
    width: 18px;
    height: 18px;
  }
  .btn_float_amazon_text {
    font-size: 13px;
    font-weight: 500;
  }
}