@charset "UTF-8";
:root {
  --font-base: Noto Sans JP, system-ui, -apple-system, sans-serif;
  --font-gothic: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic Medium, 游ゴシック, Yu Gothic, sans-serif;
  --font-en: Montserrat, system-ui, -apple-system, sans-serif;
  --color-text: #101010;
  --color-main: #b10c15;
  --color-accent: #E94D96;
  --color-green: #82CCD2;
  --color-black: #000;
  --color-yellow: #FFF9B9;
  --color-pink: #F8DFEC;
  --content-width: 1100px;
  --content-width-sm: 1000px;
  --content-width-l: 1400px;
  --z-header: 1000;
  --z-overlay: 2000;
  --shadow: 10px 10px 0px var(--color-main);
  --shadow-pink: 10px 10px 0px var(--color-accent);
  --shadow-pink--sm: 5px 5px 0px var(--color-accent);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  color: #101010;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

/* デフォルトのタイポグラフィ */
h1,
h2,
h3 {
  line-height: 1.3;
  text-align: left;
}

h1 {
  font-size: clamp(28px, 4vw, 40px);
}

h2 {
  font-size: clamp(22px, 3vw, 28px);
}

h3 {
  font-size: clamp(18px, 2.5vw, 22px);
}

p {
  font-size: 16px;
  color: #101010;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  height: auto;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
[id] {
  scroll-margin-top: 98px; /* 固定ヘッダーの高さに合わせる */
}
@media screen and (max-width: 768px) {
  [id] {
    scroll-margin-top: 64px;
  }
}

/* よく使うユーティリティ */
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

[data-sp-only] {
  display: none !important;
}
@media screen and (max-width: 768px) {
  [data-sp-only] {
    display: block !important;
  }
}

[data-pc-only] {
  display: block !important;
}
@media screen and (max-width: 768px) {
  [data-pc-only] {
    display: none !important;
  }
}

.l-container {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}

.l-container--sm {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.l-container--l {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.l-header p {
  font-family: var(--font-en);
  font-weight: bold;
}

.c-btn {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.25em;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid blue;
  background: blue;
  color: #fff;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.05s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.05s ease;
  transition: transform 0.05s ease, opacity 0.2s ease;
  transition: transform 0.05s ease, opacity 0.2s ease, -webkit-transform 0.05s ease;
}
.c-btn:hover {
  opacity: 0.9;
}
.c-btn:active {
  -webkit-transform: translateY(1px) scale(0.99);
          transform: translateY(1px) scale(0.99);
}
.c-btn--arrow {
  position: relative;
  padding: 12px 50px;
  font-size: 16px;
}
.p-service .c-btn--arrow {
  width: min(352px, 100%);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-btn--arrow {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 374px) {
  .c-btn--arrow {
    font-size: 14px;
  }
}
.c-btn--arrow::after {
  content: "";
  width: 22px;
  height: 5px;
  -webkit-mask-image: url(../../assets/img/common/nav_arrow02.svg);
          mask-image: url(../../assets/img/common/nav_arrow02.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-btn--arrow::after {
    width: 16px;
  }
}
@media (any-hover: hover) {
  .c-btn--arrow:hover {
    background: #fff;
    color: #b10c15;
  }
  .c-btn--arrow:hover:after {
    background-color: #b10c15;
  }
}

.c-btn--ghost {
  min-width: 240px;
  width: 100%;
  color: #b10c15;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #fff;
  padding: 12px 40px;
  border-radius: calc(infinity * 1px);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-btn--ghost::after {
  content: "";
  width: 22px;
  height: 5px;
  -webkit-mask-image: url(../../assets/img/common/nav_arrow02.svg);
          mask-image: url(../../assets/img/common/nav_arrow02.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #b10c15;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn--ghost img {
  width: 24px;
  display: block;
  margin-left: 10px;
}

@media (any-hover: hover) {
  .c-btn--ghost:hover {
    background: #b10c15;
    color: #fff;
  }
  .c-btn--ghost:hover:after {
    background-color: #fff;
  }
}
.c-btn--confirm {
  width: min(240px, 100%);
  margin-inline: auto;
  border-radius: calc(infinity * 1px);
  border: 1px solid #b10c15;
}
.c-btn--confirm[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.c-btn--back {
  width: min(240px, 100%);
  margin-inline: auto;
  border-radius: calc(infinity * 1px);
  border: 1px solid #dcdcdc;
  color: #707070;
}
.c-btn--back:after {
  display: none;
}
@media (any-hover: hover) {
  .c-btn--back:hover {
    background: #707070;
  }
}

/* アイコン用 */
/* フォーム用 */
/* テキスト表現用 */
/* ナビ用 */
/* 画像用 */
/* リスト用 */
/* テーブル用 */
/* 罫線用 */
/* ビデオ用 */
/* スライド用 */
.c-card {
  display: block;
  border: 1px solid #BCBCBC;
}
.c-card__img-wrap {
  width: 100%;
}
.c-card__img {
  width: 100%;
  height: auto;
}
.c-card__txt-area {
  padding: clamp(12.8px, 0px + 1.6666666667vw, 20px);
}
@media screen and (max-width: 768px) {
  .c-card__txt-area {
    padding: 10px 20px 10px;
  }
}
.c-card__ttl {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 700;
  color: #b10c15;
  margin-bottom: clamp(9.6px, 0px + 1.25vw, 15px);
}
@media screen and (max-width: 768px) {
  .c-card__ttl {
    font-size: 18px;
    line-height: 1.7777777778;
    letter-spacing: 0em;
  }
}
.c-card__txt {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .c-card__txt {
    font-size: 14px;
    line-height: 1.7142857143;
    letter-spacing: 0em;
  }
}

/* その他 */
.c-floating-button {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-floating-button {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    z-index: 100;
  }
  .c-floating-button__list {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .c-floating-button svg {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.c-floating-button .c-floating-button__list__item {
  width: 50%;
  display: block;
}
.c-floating-button .c-floating-button__list__item a {
  padding: 16px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
.c-floating-button .c-floating-button__list__item--login a {
  border-radius: revert;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #03A8E2;
  border: 1px solid #03A8E2;
  color: #fff;
  padding-left: 22px;
  padding-right: 22px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
}
.c-floating-button .c-floating-button__list__item--contact a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #004BDC;
  border: 1px solid #004BDC;
  color: #fff;
  padding-left: 25px;
  padding-right: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
}

@media screen and (max-width: 768px) {
  body:has(.c-floating-button) footer {
    padding-bottom: 80px;
  }
}
/* ==========================================================
 * c-amazon-button - 下部固定Amazonボタン
 * ========================================================== */
.c-amazon-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  translate: -50% 0;
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.c-amazon-button.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.c-amazon-button a {
  display: block;
}
@media (any-hover: hover) {
  .c-amazon-button a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  .c-amazon-button img {
    width: 66.1333333333vw;
  }
}