.body {
  max-width: 1000;
  width: 100%;
  font-family: "Noto Sans JP", "Open Sans", sans-serif;
}

.inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* スマホ用とPC出し入れ */

.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

/* スマホ用 */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: inline !important;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: 335px;
    width: 100%;
    margin: 0 auto;
  }

  .spline {
    display: block;
  }
}

.spline {
  display: none;
}

/* FV */
.fv {
  width: 100%;
}

.fv-img {
  width: 100%;
}

.fv-img2 {
  width: 100%;
}

/* contents03 */
.contents03 {
  background-color: #f1f1f1;
}

.pic {
  background: #fff;
  color: #dc1d2c;

  /* transform: skew(-20deg); */
  padding: 5px;
  font-size: 52px;
  position: relative;
  margin: 0 10px;
}

.maintxt-03 {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
}

.sub-txt03 {
  text-align: center;
  padding-bottom: 0px;
  font-size: 24px;
}

.picr {
  color: #dc1d2c;
}

.triangle-img {
  padding-top: 60px;
  margin: 0 auto;
  margin: 0 auto 20px;
  width: 222px;
}

@media screen and (max-width: 768px) {
  .contents03 {
    background-color: #f1f1f1;
    padding: 30px 22px;
  }

  .triangle-img {
    width: 130px;
    padding-top: 0px;
    margin: 0 auto;
    margin: 0 auto 20px;
  }

  .maintxt-03 {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
  }

  .pic {
    background: #fff;
    color: #dc1d2c;
    /* transform: skew(-20deg); */
    padding: 5px;
    font-size: 32px;
    position: relative;
    margin: 0 10px;
  }

  .sub-txt03 {
    text-align: center;
    padding-bottom: 0px;
    font-size: 16px;
    margin-top: 12px;
  }
}

/* contents04 */

.contents04 {
  padding: 40px 0;
  background-color: #f1f1f1;
}

.slider-box04 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.slider-box {
  justify-content: center;
  align-items: center;
}

.slider {
  position: relative;
  width: calc((800px * 3) + (34px * 2)); /* ✅ 3枚分の幅＋gap */
  overflow: hidden;
  border-radius: 10px;
  width: 100%; /* ✅ 画面幅に合わせる */
  max-width: 1200px; /* ✅ 最大幅を設定（必要に応じて調整） */

  margin: 0 auto; /* ✅ 中央揃え */
}

.slides {
  display: flex;
  gap: 34px;
  transition: transform 0.5s ease; /* ✅ アニメーション追加 */
}

.slides img {
  width: 800px;
  height: 400px;
  object-fit: cover;
}

/* 矢印とドットのコンテナ */
.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 46px;
  position: relative;
}

/* 矢印ボタン */
.arrow {
  background: #fff;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* ドット */
.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  display: block;
  cursor: pointer;
}

.dots .active {
  background: #ff5555; /* アクティブな点の色 */
}

@media screen and (max-width: 768px) {
  .contents04 {
    padding: 28px 0 50px;
    background-color: #f1f1f1;
  }

  .slider {
    width: 100%; /* 画面の90% */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .slides {
    gap: 15px; /* スライド間の隙間 */
    transition: transform 0.5s ease;
    padding: 0; /* paddingでずれる場合は消す */
  }

  .slides img {
    width: 100%; /* 1枚が80%幅 */
    height: auto;
    margin: 0 auto; /* 画像を中央寄せ */
    border-radius: 10px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-520%);
    z-index: 10;
    color: #fff;
    background: rgba(0, 0, 0, 0.8); /* 半透明の白背景 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }
}

/* ボタン追従 */

.btn-box-cv {
  position: fixed; /* 画面に固定 */
  bottom: 0; /* 下にピッタリ固定 */
  left: 0;
  width: 100%; /* 画面幅いっぱい */
  background: #fff; /* 背景色を付けて下のコンテンツと分ける */
  z-index: 9999; /* 最前面に */
  display: flex;
  justify-content: center; /* ボタンを中央揃え */
  gap: 15px; /* ボタン間の余白 */
  padding: 10px 15px; /* 上下左右の余白 */
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2); /* 上側に影 */
}

body {
  padding-bottom: 120px; /* 追従ボタン分のスペースを確保 */
}

@media screen and (max-width: 768px) {
  .btn-box-cv {
    gap: 4px; /* ボタン間の余白をさらに狭く */
    padding: 4px; /* 内側の余白も縮小 */
  }

  .btn-box-cv a {
    flex: none; /* 均等高さを解除 */
    width: 32%; /* 横幅は均等に */
    height: 50px; /* ✅ 高さを固定 */
    font-size: 12px; /* 文字サイズを小さく */
    line-height: 1.2; /* 行間を詰める */
    padding: 0; /* 余白をリセット */
    text-align: center; /* テキスト中央揃え */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px; /* 角丸を少しだけ */
  }

  .btn-box-cv img {
    max-width: 14px; /* アイコンを縮小 */
    margin: 0 4px; /* 横並びで少し余白 */
  }
}

/* contents05 */

.contents05 {
  background: #dc1d2c;
  padding: 30px 60px 60px;
  background-image: url(../img/05-000.png), url(../img/05-00.png);
}

.main-05 {
  background-color: #fff;
  width: 522px;
  margin: 0 auto;
  padding: 21px 40px;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
  position: relative;
  top: 50px;
  z-index: 1;
}

.main-05::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 35px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.main-05::before {
  content: "";
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 25px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.main-05-txt {
  font-size: 36px;
  font-weight: 700;
}

.box-list {
  position: relative;
  z-index: 0;
}

.box-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 1);
  z-index: -1;
  width: 100%;

  margin: 0 auto;
}

.sub-txt05 {
  text-align: center;
  padding-top: 85px;
  font-size: 24px;
  font-weight: 700;
}

.btn-box {
  display: flex;
  justify-content: center;
  padding: 14px 25px 35px;
  gap: 25px;
}

.btn-box01 {
  display: flex;
  text-align: center;

  background: linear-gradient(to bottom, #64d794 50%, #06c655 50%);
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 13px;
  box-shadow: 0px 7px 0px 0px #008e3a;
  border-radius: 4px;

  justify-content: center;
}

.btn-box01-txt {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.box01-subtxt {
  font-size: 30px;
  font-weight: 800;
  color: #fdff93;
}

.img-05 {
  width: 37px;
  height: 37px;
}

.btn-box02 {
  display: flex;
  text-align: center;

  background: linear-gradient(to bottom, #3faed6 50%, #07a1d9 50%);
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 13px;
  box-shadow: 0px 7px 0px 0px #00688d;
  border-radius: 4px;

  justify-content: center;
}

.btn-box02-txt {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.box02-subtxt {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.btn-box03 {
  display: flex;
  text-align: center;

  background: linear-gradient(to bottom, #fc9d3e 50%, #ff8000 50%);
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 13px;
  box-shadow: 0px 7px 0px 0px #a95500;
  border-radius: 4px;

  justify-content: center;
}

.pcline {
  display: none;
}

.btn-box01:hover,
.btn-box02:hover,
.btn-box03:hover {
  box-shadow: none;
  transform: translateY(3px); /* 少し下げると押し込んだ感じになる */
}

@media screen and (max-width: 768px) {
  .contents05 {
    background: #dc1d2c;
    padding: 40px 20px;
    background-image: url(../img/05-000.png), url(../img/05-00.png);
  }
  .main-05-txt {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
  }

  .main-05 {
    background-color: #fff;
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    position: relative;
    top: 50px;
    z-index: 1;
    margin-top: -46px;
  }
  .main-05::before {
    content: "";
    position: absolute;
    bottom: -53px;
    left: 51%;
    transform: translateX(-50%);
    border-width: 25px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
  }

  .pcline {
    display: inline;
  }

  .btn-box {
    display: flex;
    justify-content: center;
    padding: 14px 25px 35px;
    gap: 25px;
    flex-direction: column;
  }

  .sub-txt05 {
    text-align: center;
    padding-top: 85px;
    font-size: 20px;
    font-weight: 700;
  }

  .btn-box01 {
    display: flex;
    width: 100%;
    text-align: center;
    background: linear-gradient(to bottom, #64d794 50%, #06c655 50%);
    display: flex;
    padding: 7px;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 7px 0px 0px #008e3a;
    border-radius: 4px;
    justify-content: center;
  }

  .box01-subtxt {
    font-size: 24px;
    font-weight: 800;
    color: #fdff93;
  }

  .btn-box02 {
    display: flex;
    text-align: center;
    background: linear-gradient(to bottom, #3faed6 50%, #07a1d9 50%);
    display: flex;
    padding: 7px;
    align-items: center;
    gap: 3px;
    box-shadow: 0px 7px 0px 0px #00688d;
    border-radius: 4px;
    justify-content: center;
  }

  .box02-subtxt {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
  }

  .btn-box03 {
    display: flex;
    text-align: center;
    background: linear-gradient(to bottom, #fc9d3e 50%, #ff8000 50%);
    display: flex;
    padding: 4px;
    align-items: center;
    gap: 7px;
    box-shadow: 0px 7px 0px 0px #a95500;
    border-radius: 4px;
    justify-content: center;
  }

  .btn-box01:active,
  .btn-box02:active,
  .btn-box03:active {
    box-shadow: none;
    transform: translateY(3px); /* タップ時も押し込み感 */
  }
}

/* contents06 */

.contents06 {
  background-color: #f1f1f1;
  padding: 60px;
}

.en-txt {
  text-align: center;
  background: #000;
  width: 18%;
  margin: 0 auto;
  font-size: 24px;
  color: #fff;
  padding: 4px 14px;
  font-weight: bold;
  transform: skew(-10deg); /* ✅ 背景を少し斜めに */
}

.en-txt::after {
  content: "";
  position: absolute;
  bottom: -10px; /* 三角の高さ分下に */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #000; /* ✅ 背景色と同じ黒 */
}

.h2-txt {
  text-align: center;
  margin-top: 10px;
  font-size: 40px;
  transform: skew(-10deg); /* ✅ 背景を少し斜めに */
}

.strength-box01 {
  background: #fff;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
}

.strength-box02 {
  background: #fff;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
}

.strength-box03 {
  background: #fff;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
}

.strength-box01::before {
  content: "01";
  position: absolute;
  font-size: 48px;
  left: 10px;
  top: -40px;
  color: #fff; /* 文字色を白 */
  -webkit-text-stroke: 2px #dc1d2c; /* 赤い外線 */
  font-size: 48px;
  font-weight: bold;
  letter-spacing: -5px;
}

.strength-box02::before {
  content: "02";
  position: absolute;
  font-size: 48px;
  left: 10px;
  top: -40px;
  color: #fff; /* 文字色を白 */
  -webkit-text-stroke: 2px #dc1d2c; /* 赤い外線 */
  font-size: 48px;
  font-weight: bold;
}

.strength-box03::before {
  content: "03";
  position: absolute;
  font-size: 48px;
  left: 10px;
  top: -40px;
  color: #fff; /* 文字色を白 */
  -webkit-text-stroke: 2px #dc1d2c; /* 赤い外線 */
  font-size: 48px;
  font-weight: bold;
}

.strength-box {
  margin-top: 55px;
  display: flex;
  justify-content: space-around;
  gap: 50px;
}

.strength-box-txt {
  color: red;
  background: linear-gradient(-15deg, #d61828 50%, #be1423 50%);
  padding: 15px 30px;
  font-size: 24px;
  text-align: center;
  color: #fff;
}

.strength-txt {
  color: #dc1d2c;
  padding: 22px 22px 12px;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
}

.sub-txt {
  text-align: left;
  padding: 0px 20px 20px;
  font-size: 16px;
  font-weight: 700;
}

.pici {
  color: #fdff93;
}

.picb {
  color: #307894;
}

.strength-box-txt03 {
  color: red;
  background: linear-gradient(-15deg, #d61828 50%, #be1423 50%);
  padding: 33px 30px;
  font-size: 24px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .contents06 {
    background-color: #f1f1f1;
    padding: 52px 37px;
  }

  .en-txt {
    text-align: center;
    background: #000;
    width: 80%;
    margin: 0 auto;
    font-size: 20px;
    color: #fff;
    padding: 4px 14px;
    font-weight: bold;
    transform: skew(-10deg);
  }

  .strength-box {
    margin-top: 55px;
    display: flex;
    justify-content: space-around;
    gap: 50px;
    flex-direction: column;
    align-items: center;
  }
}

/* contents07 */

.contents07 {
  background-color: #fff;
  padding: 60px;
}

.h2-txt-07 {
  text-align: center;
  margin-top: -10px;
  font-size: 40px;
  transform: skew(-10deg);
}

.pic-07-01 {
  font-size: 70px;
  color: red;
  background: linear-gradient(-25deg, #d61828 45%, #be1423 55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pic-0702 {
  color: red;
  background: linear-gradient(-15deg, #d61828 50%, #be1423 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.step-box {
  display: flex;
  gap: 14px;
  margin-top: 60px;
}

.step-box-01 {
  width: 240px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
}

.step-circle {
  position: absolute;
  top: -30px;
  left: -30px;
  color: red;
  background: linear-gradient(-15deg, #d61828 50%, #be1423 50%);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 0 0 5px #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.step-label {
  font-size: 10px; /* STEPのサイズ */
  font-weight: bold;
  margin-bottom: -7px;
}

.step-number {
  font-size: 25px; /* 01のサイズ */
  font-weight: bold;
  margin-top: 2px;
}

/* カウンター初期化 */
.step-box {
  counter-reset: step;
}

.step-title {
  background: #dc1d2c;
  color: #fff;
  padding: 10px 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.step-txt {
  font-size: 16px;
  padding: 24px 20px 48px;
  font-weight: 700;
}

.pic-07 {
  font-size: 15px;
  font-weight: 500;
  margin-top: 6px;
}

@media screen and (max-width: 768px) {
  .contents07 {
    background-color: #fff;
    padding: 40px 0;
  }

  .h2-txt-07 {
    line-height: 1;
    text-align: center;
    margin-top: 15px;
    font-size: 32px;
    transform: skew(-10deg);
  }

  .step-img {
    width: 100%;
  }

  .step-box {
    display: flex; /* 横並び */
    overflow-x: auto; /* 横スクロール */
    scroll-snap-type: x mandatory; /* カードごとにスナップ */
    -webkit-overflow-scrolling: touch; /* iOSスムーズスクロール */
    gap: 16px; /* カード間の隙間 */
    padding: 0 16px; /* 左右余白 */
  }

  .step-box-01 {
    flex: 0 0 85%; /* カード幅は画面の85% */
    scroll-snap-align: center; /* 中央スナップ */
    overflow: visible; /* STEP丸が切れない */
    box-sizing: border-box;
  }

  .step-circle {
    top: -3px; /* スマホ用調整 */
    left: -1px;
    transform: scale(0.9); /* 少し小さく */
  }
}

/* contents08 */

.contents08 {
  padding: 60px;
  background-color: #ffeeef;
  background-image: url("../img/08-01.png");
}

.review-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  row-gap: 40px;
}

.review-box-01 {
  width: 324px;
  padding: 32px 30px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.list-08 {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.review-title {
  background: #dc1d2c;
  text-align: center;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.review-txt {
  font-size: 18px;
  color: #dc1d2c;
  font-weight: 700;
}

.review-comment {
  font-size: 16px;
  font-weight: 600;
}

.more-btn-wrap {
  display: none;
}

@media screen and (max-width: 768px) {
  .contents08 {
    padding: 30px 25px;
  }

  .review-box {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    row-gap: 40px;
    align-content: center;
  }
  /* 4件目以降は最初は非表示 */
  .review-box-01.hidden {
    display: none; /* 空白を消す */
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .review-box-01.show {
    display: block; /* 表示 */
    opacity: 1;
  }

  .more-btn-wrap {
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .more-btn {
    /* background: #dc1d2c; */
    color: #dc1d2c;
    font-weight: 900;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .more-btn:hover {
    background: #b81a26;
  }
}

/* contents09 */

.contents09 {
  padding: 60px;
  background: #fff;
}

.en-txt09 {
  text-align: center;
  background: #000;
  width: 23%;
  margin: 0 auto;
  font-size: 24px;
  color: #fff;
  padding: 4px 14px;
  font-weight: bold;
  transform: skew(-10deg); /* ✅ 背景を少し斜めに */
}

.en-txt09::after {
  content: "";
  position: absolute;
  bottom: -10px; /* 三角の高さ分下に */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #000; /* ✅ 背景色と同じ黒 */
}

.necessaries-box {
  background: #f1f1f1;
  padding: 50px 70px;
  margin-top: 30px;
}

.necessaries-list {
  display: flex;
  gap: 45px;
}

.necessaries-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  column-gap: 0px;
  padding: 51px 27px;
  position: relative;
  z-index: 1;
}

.necessaries-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 1);
  z-index: -1;
  width: 406px;
  margin: 0 auto;
}

.necessaries-item-list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
}

.necessaries-txt {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .contents09 {
    padding: 30px 25px;
    background: #fff;
  }

  .en-txt09 {
    text-align: center;
    background: #000;
    width: 70%;
    margin: 0 auto;
    font-size: 20px;
    color: #fff;
    padding: 4px 14px;
    font-weight: bold;
    transform: skew(-10deg);
  }

  .h2-txt {
    text-align: center;
    margin-top: 10px;
    font-size: 32px;
    transform: skew(-10deg);
  }

  .necessaries-list {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }

  .necessaries-box {
    background: #f1f1f1;
    padding: 30px 22px;
    margin-top: 30px;
  }

  .necessaries-item-list {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    font-weight: 700;
  }

  .necessaries-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    column-gap: 0px;
    padding: 20px 13px;
    position: relative;
    z-index: 1;
  }

  .necessaries-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 1);
    z-index: -1;
    width: 100%;
    margin: 0 auto;
  }
}

/* .contents10 */

.contents10 {
  background-color: #ffeeef;
  padding: 60px;
}

.faq-question {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  background-color: #dc1d2c;

  padding: 25px 35px;
  align-items: center;
}

.faq-item-01 {
  display: flex;
  align-items: center;
  gap: 24px;
}

.question-txt {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.faq-answer {
  padding: 25px 35px;
  display: flex;
  align-items: center;
  background: #fff;
  gap: 24px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer.open {
  max-height: 500px; /* 十分大きい値に設定 */
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .contents10 {
    background-color: #ffeeef;
    padding: 30px 25px;
  }

  .question-txt {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
  }

  .faq-question {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    background-color: #dc1d2c;
    padding: 16px;
    align-items: center;
  }

  .faq-img {
    width: 20px;
    margin-left: 3px;
  }

  .faq-item-01 {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .faq-answer {
    padding: 16px;
    display: flex;
    align-items: center;
    background: #fff;
    gap: 24px;
  }
}

/* contents11 */

.contents11 {
  padding: 60px;
  background-image: url(../img/11-01.png);
  background-repeat: no-repeat;
  background-size: 1716px;
}

.shop-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 173px;
}

.shop-contents {
  margin-top: 30px;
}

.shop-list {
  align-items: center;
  display: flex;
  gap: 60px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: solid 2px #99998c;
  padding-bottom: 16px;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .contents11 {
    padding: 30px 25px;
    background-image: url(../img/11-02.png);
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .shop-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 27px 20px;
  }

  .shop-list {
    align-items: center;
    display: flex;
    gap: 60px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: solid 1px #99998c;
    padding-bottom: 16px;
    margin-top: 16px;
  }
}

/* contents12 */

.contents12 {
  background-color: #f1f1f1;
  padding: 60px;
}

.shop-txt012 {
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.shop-sub-txt {
  text-align: center;
  font-size: 18px;
  margin-top: 32px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .contents12 {
    background-color: #f1f1f1;
    padding: 30px 20px;
  }

  .shop-txt012 {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }

  .shop-sub-txt {
    text-align: center;
    font-size: 12px;
    margin-top: 32px;
    font-weight: 500;
  }
}

/* footer */

.footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
}

.footer-txt {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .footer {
    background: #000;
    color: #fff;
    padding: 30px 20px;
  }
}

/* ボタン追従 */

.btn-box-cv {
  position: fixed; /* 画面に固定 */
  bottom: 0; /* 下にピッタリ固定 */
  left: 0;
  width: 100%; /* 画面幅いっぱい */
  background: #fff; /* 背景色を付けて下のコンテンツと分ける */
  z-index: 9999; /* 最前面に */
  display: flex;
  justify-content: center; /* ボタンを中央揃え */
  gap: 15px; /* ボタン間の余白 */
  padding: 10px 15px; /* 上下左右の余白 */
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2); /* 上側に影 */
}

body {
  padding-bottom: 120px; /* 追従ボタン分のスペースを確保 */
}

@media screen and (max-width: 768px) {
  .btn-box-cv {
    gap: 4px; /* ボタン間の余白をさらに狭く */
    padding: 4px; /* 内側の余白も縮小 */
  }

  .btn-box-cv a {
    flex: none; /* 均等高さを解除 */
    width: 32%; /* 横幅は均等に */
    height: 50px; /* ✅ 高さを固定 */
    font-size: 12px; /* 文字サイズを小さく */
    line-height: 1.2; /* 行間を詰める */
    padding: 0; /* 余白をリセット */
    text-align: center; /* テキスト中央揃え */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px; /* 角丸を少しだけ */

    white-space: nowrap; /* ✅ 折り返し禁止 */
  }

  .btn-box-cv img {
    max-width: 14px; /* アイコンを縮小 */
    margin: 0 4px; /* 横並びで少し余白 */
  }
}

/* 追従 */

.contents05 {
  background: #dc1d2c;
  padding: 30px 60px 60px;
  background-image: url(../img/05-000.png), url(../img/05-00.png);
}

.main-05 {
  background-color: #fff;
  width: 522px;
  margin: 0 auto;
  padding: 21px 40px;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
  position: relative;
  top: 50px;
  z-index: 1;
}

.main-05::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 35px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.main-05::before {
  content: "";
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 25px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.main-05-txt {
  font-size: 36px;
  font-weight: 700;
}

.box-list {
  position: relative;
  z-index: 0;
}

.box-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 1);
  z-index: -1;
  width: 100%;

  margin: 0 auto;
}

.sub-txt05 {
  text-align: center;
  padding-top: 85px;
  font-size: 24px;
  font-weight: 700;
}

.btn-box {
  display: flex;
  justify-content: center;
  padding: 14px 25px 35px;
  gap: 25px;
}

.btn-box01 {
  display: flex;
  text-align: center;

  background: linear-gradient(to bottom, #64d794 50%, #06c655 50%);
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 13px;
  box-shadow: 0px 7px 0px 0px #008e3a;
  border-radius: 4px;

  justify-content: center;
}

.btn-box01-txt-cv {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.box01-subtxt-cv {
  font-size: 30px;
  font-weight: 800;
  color: #fdff93;
}

.img-05 {
  width: 37px;
  height: 37px;
}

.btn-box02 {
  display: flex;
  text-align: center;

  background: linear-gradient(to bottom, #3faed6 50%, #07a1d9 50%);
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 13px;
  box-shadow: 0px 7px 0px 0px #00688d;
  border-radius: 4px;

  justify-content: center;
}

.btn-box02-txt {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.box02-subtxt-cv {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.box01-subtxt2-cv {
  font-size: 18px;
}

.box02-subtxt {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.btn-box03 {
  display: flex;
  text-align: center;

  background: linear-gradient(to bottom, #fc9d3e 50%, #ff8000 50%);
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 13px;
  box-shadow: 0px 7px 0px 0px #a95500;
  border-radius: 4px;

  justify-content: center;
}

.pcline {
  display: none;
}

.btn-box01:hover,
.btn-box02:hover,
.btn-box03:hover {
  box-shadow: none;
  transform: translateY(3px); /* 少し下げると押し込んだ感じになる */
}

@media screen and (max-width: 768px) {
  .btn-box01-txt-cv {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: flex;
    flex-direction: column;
  }

  .box01-subtxt-cv {
    font-size: 15px;
    font-weight: 800;
    color: #fdff93;
  }

  .box02-subtxt-cv {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
  }

  .box01-subtxt2-cv {
    font-size: 11px;
  }

  .contents05 {
    background: #dc1d2c;
    padding: 40px 20px;
    background-image: url(../img/05-000.png), url(../img/05-00.png);
  }
  .main-05-txt {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
  }

  .btn-box02-txt {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
  }

  .main-05 {
    background-color: #fff;
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    position: relative;
    top: 50px;
    z-index: 1;
    margin-top: -46px;
  }
  .main-05::before {
    content: "";
    position: absolute;
    bottom: -53px;
    left: 51%;
    transform: translateX(-50%);
    border-width: 25px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
  }

  .pcline {
    display: inline;
  }

  .btn-box {
    display: flex;
    justify-content: center;
    padding: 14px 25px 35px;
    gap: 25px;
    flex-direction: column;
  }

  .sub-txt05 {
    text-align: center;
    padding-top: 85px;
    font-size: 20px;
    font-weight: 700;
  }

  .btn-box01 {
    display: flex;
    width: 100%;
    text-align: center;
    background: linear-gradient(to bottom, #64d794 50%, #06c655 50%);
    display: flex;
    padding: 7px;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 7px 0px 0px #008e3a;
    border-radius: 4px;
    justify-content: center;
  }

  .box01-subtxt-cv {
    font-size: 15px;
    font-weight: 800;
    color: #fdff93;
  }

  .box02-subtxt2-cv {
    font-weight: 600;
    color: #fff;
    font-size: 18px;
  }

  .btn-box02 {
    display: flex;
    text-align: center;
    background: linear-gradient(to bottom, #3faed6 50%, #07a1d9 50%);
    display: flex;
    padding: 7px;
    align-items: center;
    gap: 11px;
    box-shadow: 0px 7px 0px 0px #00688d;
    border-radius: 4px;
    justify-content: center;
  }

  .box02-subtxt {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
  }

  .btn-box03 {
    display: flex;
    text-align: center;
    background: linear-gradient(to bottom, #fc9d3e 50%, #ff8000 50%);
    display: flex;
    padding: 4px;
    align-items: center;
    gap: 7px;
    box-shadow: 0px 7px 0px 0px #a95500;
    border-radius: 4px;
    justify-content: center;
  }

  .btn-box01:active,
  .btn-box02:active,
  .btn-box03:active {
    box-shadow: none;
    transform: translateY(3px); /* タップ時も押し込み感 */
  }

  /* 丸い画像を非表示にする */
  .btn-box-cv img {
    display: none;
  }

  /* ボタン全体をスマホ最適化 */
  .btn-box-cv {
    gap: 6px; /* ボタン間の隙間を少し縮める */
    padding: 10px;
  }

  .btn-box-cv > div {
    flex: 1; /* 3つ横並び */
    height: 50px; /* ボタン高さを固定してコンパクトに */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
  }

  .btn-box01-txt,
  .btn-box02-txt-cv,
  .btn-box01-txt-cv {
    font-size: 13px; /* 文字サイズを少し小さく */
    text-align: center; /* 文字中央寄せ */
    line-height: 1.3;
  }

  .box01-subtxt-cv,
  .box02-subtxt-cv,
  .box02-subtxt2-cv {
    font-size: 12px; /* サブテキストも縮小 */
  }

  .btn-box02-cv,
  .btn-box03-cv {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px !important;
    margin: 0 !important;
    line-height: 1.2;
  }

  .box02-subtxt-cv,
  .box02-subtxt2-cv {
    font-size: 12px;
  }
}
