@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  list-style: none;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote before,
blockquote after,
q before,
q after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
a {
  text-decoration: none;
}
html {
  scroll-padding-top: 4.5rem; /* ヘッダーの高さを入力 */
  scroll-behavior: smooth;
}
:root {
  --design-w: 440;
  --design-ww: 1280;
}
body {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: #000000;
  /* 背景設定 */
  background-image: url(../images/bg_pc.png);
  background-size: 40%;
  aspect-ratio: 202 / 209;
  background-repeat: repeat;
  background-color: #5b85f7;
  background-attachment: fixed;
  z-index: 1;
  transition: 0.7s;
  scroll-padding-top: 4.5rem; /* ヘッダーの高さを入力 */
  scroll-behavior: smooth;
}

/* ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ 3カラムレイアウトの親 ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ */
.body_inner {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;

  display: grid;
  grid-template-columns: 1fr minmax(auto, 80rem) 1fr; /* 左・中央・右 */
  min-height: 100vh;
  position: relative;
}
/* ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ 3カラムレイアウトの親 ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ */

/* ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ 左側nav ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ */
.nav_wrapper {
  grid-column: 1;
  position: fixed;
  z-index: 5;
  height: auto;
  top: 57%;
  left: calc(50% - (80rem / 2) - -2rem); /* 中央基準から左にずらす */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央 */
  align-items: flex-end; /* 中央コンテンツに寄せる */
  padding-right: 2rem;
  .nav_list {
    /* position: absolute; */
    /* bottom: 12.5rem; */
    /* transform: translateY(-50%); */
    left: 6.25rem;
    z-index: 5;
    display: grid;
    gap: 1rem;
    li {
      a {
        display: inline-block;
        font-weight: 900;
        font-size: 1.25rem;
        color: #fff;
        text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000,
          1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000,
          1px 0 0 #000, 2px 2px 0 #000;
        /* -webkit-text-stroke: 1px #000; */
        font-family: "Zen Kaku Gothic New";
        font-style: normal;
        line-height: 1.3; /* 130% */
      }
    }
  }
  @media screen and (max-width: 1200px) {
    display: none;
  }
}
.nav_wrapper img {
  margin-top: 8rem;
  width: 14.4rem;
}
.nav_item::before {
  content: "⚫︎";
  font-size: 0.5rem;
  margin-right: 1rem;
  display: inline-block;
  transform: translateY(-3px); /* 上下方向の位置を微調整する */
  color: #000;
}
.current {
  background-color: #fa8072 !important;
  a {
    color: #fff !important;
  }
}
/* ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ 左側 nav ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ */

/* ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ 中央コンテンツ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ */
.article {
  max-width: 27.5rem;
  margin: 0 auto;
  position: relative;
  background-color: #4270ed;
  border: 2px solid #000;
  grid-column: 2;
  z-index: 1;
  @media screen and (max-width: 768px) {
    /* max-width: none; */
    width: 100vw;
  }
}
/* ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ 中央コンテンツ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ */

/* ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ 右側topic ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ */
.topic_wrapper {
  grid-column: 3;
  position: fixed;
  top: 50%;
  right: calc(50% - (27.5rem / 2) - 27rem); /* 中央基準から右にずらす */
  transform: translateY(-50%);

  display: flex;
  flex-direction: column; /* 上下に積む */
  justify-content: center; /* 縦方向中央寄せ */
  align-items: flex-start; /* 左寄せ（中央コンテンツに向かう） */

  z-index: 5;

  @media screen and (max-width: 1200px) {
    display: none;
  }
}

.topic_list {
  display: grid;
  gap: 1.687rem; /* li 間隔 */
}
.topic_item a {
  display: flex;
  gap: 1rem;
  font-weight: 700;
  color: #000;
}

.topic_ttl {
  display: inline-block;
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000,
    1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000,
    2px 2px 0 #000;
  /* -webkit-text-stroke: 1px #000; */
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  line-height: 1.3;
}
.topic_no {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
}
.topic_no .sub {
  width: 3rem;
  margin: 0 auto;
}
.topic_no .no {
  color: var(--Black, #000);
  text-shadow: 3px 2px 0 #fff;
  font-family: Futura;
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: 23.55px; /* 61.973% */
}
/* ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ 右側topic ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ */

.pcheader {
  position: fixed;
  width: 100vw;
  padding: 1.875rem 3rem;
  z-index: 2;
  @media screen and (max-width: 1200px) {
    display: none;
  }
}
.pcheader_inner {
  max-width: 80rem;
    margin: 0 auto;
}
.pcheader_logo img {
  width: 7.5rem;
}

/* SP header ハンバーガー */
.spheader_wrap {
  display: none;
  @media screen and (max-width: 1200px) {
    display: block;
  }
}
.spheader {
  padding: 1.25rem 1rem 1.25rem 1.6875rem;
  border: #000 solid 1px;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
  background-color: #5985fb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  width: 100%;
  max-width: 27.5rem; /* .article と同じ幅に */
  margin: 0 auto;
  z-index: 1000;
  box-sizing: border-box;
  @media screen and (max-width: 768px) {
    /* max-width: none; */
    width: 100%;
  }
}
.spheader_logo {
  width: 7.5rem;
  flex-shrink: 0; /* ロゴが縮まないように */
}

/* ハンバーガーボタンのスタイル */
.hamburger {
  position: relative;
  width: 30px;
  cursor: pointer;
  z-index: 20;
  flex-shrink: 0; /* ロゴが縮まないように */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

/* バツ印に変化 */
.hamburger.active span:nth-child(1) {
  transform: rotate(30deg) translate(4px, 4px);
}
.hamburger.active span:nth-child(2) {
  transform: rotate(-30deg) translate(3px, -3px);
}

/* メニューのスタイル */
.menu {
  position: fixed;
  top: 0;
  max-width: calc(27.5rem - 4px); /* .article の枠線の内側と同じ幅 */
  width: 100%;
  background-color: #4270ed;
  padding: 9rem 2.812rem 0;
  box-sizing: border-box;
  z-index: 5;
  /* 初期状態（非表示） */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.8s ease, opacity 0.4s ease;
  @media screen and (max-width: 768px) {
    /* max-width: none; */
    width: 100%;
  }
}
.menu ul {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
.menu ul li a {
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 136.364% */
  letter-spacing: -1.54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: #fff solid 2px;
}

/* メニューが表示される時 */
.menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 99;
  height: 100vh;
}
.menu ul li img {
  width: 1.125rem;
}
.menu_ig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: fit-content;
  margin: 1.875rem auto 1.25rem;
}
.menu_ig img {
  width: 1rem;
}
.menu_ig p {
  color: #fff;
  font-family: "Avenir Next";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.237px; /* 157.732% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.menu_ctaline {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 21.25rem; */
  margin: 1.75rem auto 0;
  border-radius: 4rem;
  padding: 1rem 2rem;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 3px 3px 0 0 #000;
}
.menu_ctaline img {
  width: 2.125rem;
  height: 2.125rem;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  margin-right: 0.312rem;
}
.menu_ctaline p {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.14px;
}
/* SP header ハンバーガー */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝MV＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.mv {
  margin: 0 auto;
  @media screen and (max-width: 1200px) {
    margin: 4.5rem auto 0;
  }
}
.mv_inner {
  padding: 5rem 2.19rem 2.8rem;
  display: grid;
}
.mv_text {
  color: #ffffff;
  text-align: center;
  margin-bottom: -20px;
  z-index: 1;
}
.subcatch_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 23.55px;
  position: relative;
  padding-bottom: 8px;
}
@media only screen and (max-width: 439px) {
  .subcatch_wrap {
    font-size: 16px;
  }
}
.subcatch_wrap::before {
  content: "";
  display: inline-block;
  width: 132px;
  height: 42px;
  background-image: url("../images/kyubo.svg");
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -38px;
  left: -10px;
}
.subcatch_wrap img {
  width: 2.5rem;
}
.mv_text span {
  font-size: 80px;
}
.mv_img {
  position: relative;
}
.cta_line {
  position: absolute;
  right: -3%;
  top: 70%;
  stroke-width: 0.938px;
  stroke: #000;
  filter: drop-shadow(0 0 4.688px rgba(0, 0, 0, 0.4));
  width: 33%;
}
.cta_line img {
  width: 100%;
}
.mv_cta img {
  width: 100%;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝MV＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝HELPUS＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.helpus {
  overflow: hidden;
  position: relative;
}
.wrapper01 {
  display: flex;
  position: absolute;
  width: 100%;
  overflow: hidden;
  background-color: #feec6c;
  border: 1px solid #000;
  transform: rotate(-5deg);
  margin-top: 4.625rem;
  width: 120%; /* ← 100%より大きめに広げる */
  margin-left: -10%; /* ← 左右を画面外に押し出す */
  z-index: 1;
}
.wrapper02 {
  display: flex;
  position: absolute;
  width: 100%;
  overflow: hidden;
  background-color: #ff5363;
  border: 1px solid #000;
  transform: rotate(4.5deg);
  margin-top: 6.9rem;
  width: 120%; /* ← 100%より大きめに広げる */
  margin-left: -10%; /* ← 左右を画面外に押し出す */
  z-index: 0;
}
.wrapper03 {
  display: flex;
  position: absolute;
  width: 100%;
  overflow: hidden;
  background-color: #feec6c;
  border: 1px solid #000;
  transform: rotate(-5deg);
  top: 40.875rem;
  width: 120%; /* ← 100%より大きめに広げる */
  margin-left: -10%; /* ← 左右を画面外に押し出す */
}
.loop_text01,
.loop_text03 {
  font-family: "avenir-next-lt-pro",  sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 25.237px; /* 180.266% */
  flex: 0 0 auto;
  white-space: nowrap;
  color: #4270ed;
}
.loop_text02 {
  font-family: "avenir-next-lt-pro",  sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 25.237px; /* 180.266% */
  flex: 0 0 auto;
  white-space: nowrap;
  color: #fff;
}
.loop_text01:nth-child(odd),
.loop_text02:nth-child(odd),
.loop_text03:nth-child(odd),
.loop_text04:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}
.loop_text01:nth-child(even),
.loop_text02:nth-child(even),
.loop_text03:nth-child(even),
.loop_text04:nth-child(even) {
  animation: loop2 50s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.helpus_contents {
  flex-direction: column;
  /* border: 1px solid #000; */
  margin: 12rem 2rem 7.875rem;
  border-radius: 2rem;
  border: 1px solid #000;
  background: var(--White, #fff);
  box-shadow: 3px 3px 0 0 #000;
}
.helpus_bg {
  border-bottom: solid 1px #000;
  position: relative;
}
.helpusbg_check {
  border-radius: 2rem 2rem 0 0;
}
.sorry {
  position: absolute;
  bottom: 0; /* ← 下端を .helpus_bg に合わせる */
  left: 50%; /* ← 中央寄せしたいなら */
  transform: translateX(-50%); /* ← 左右中央揃え */
  z-index: 2; /* ← 背景やテキストより前に出す */
}
.helpus_textwrap {
  background-color: #efe8d0;
  padding: 1.875rem 1.5rem;
  border-radius: 0 0 2rem 2rem;
}
.helpus_title {
  color: #000;
  font-family: "Dela Gothic One";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 125% */
  margin-bottom: 12px;
}
.helpus_title span {
  color: #fff;
  background-color: #000;
  padding: 0 0.1rem 0 0.5rem;
  margin-right: 0.2rem;
}
.helpus_text {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝HELPUS＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝CAMPAIGN＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.campaign {
  padding-top: 4.375rem;
  background-color: #ffe331;
}
.campaign_bubblewrap {
  width: 100%;
  height: auto;
}
.campaign_bubble {
  background-image: url("../images/offer_bubble.svg");
  /* background-size: 95%; */
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 4.5rem 0 5.5rem;
  background-size: contain; /* 画像のサイズを指定    */
  width: 100%; /* 横幅のサイズを指定    */
  position: relative;
}
.campaign_bubbletext {
  width: 75%;
  margin: 0 auto;
}
.campaign_bubbletext span {
  text-shadow: 3px 3px 0 #000;
  font-size: 42px;
}
.campaign_bubbletext_sub {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px; /* 193.333% */
}
.dot_001 {
  position: absolute;
  left: 0;
  right: 0;
  top: 17rem;
  width: 60%;
  margin: 0 auto;
}

.campaign_contents {
  margin: 4.187rem 1.25rem 4.375rem;
  border-radius: 2rem;
  border: 1px solid #000;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.campaign_imagewrap {
  border-radius: 2rem 2rem 0 0;
  border-bottom: 1px solid #000;
}
.asterisk {
  padding-left: 1rem;
}

.asterisk::before {
  content: "※";
  margin-left: -1rem;
}

.campaign_textwrap {
  padding: 1.875rem;
  color: var(--Black, #000);
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
}
.campaign_intro span {
  color: var(--Red, #ff3a5b);
  font-family: Inter;
  font-style: normal;
}
.campaign_intro .sub {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
  padding-top: 0.625rem;
}
.campaign_sec01,
.campaign_sec02,
.campaign_sec03,
.campaign_sec04 {
  margin-top: 1.562rem;
}
.campaign h5 {
  margin-bottom: 0.312rem;
  font-weight: 700;
}
.campaign_sec02_text {
  gap: 0.312rem;
  display: grid;
  margin-bottom: 0.625rem;
}
.campaign_sec02 .asterisk {
  font-size: 14px;
}
.campaign_sec03 a {
  color: var(--Blue, #4270ed);
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.campaign_ctaline {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17.5rem;
  margin: 1.75rem auto 1.875rem;
  border-radius: 4rem;
  padding: 1rem 0;
  border: 2px solid #000;
  background: #06c755;
  box-shadow: 3px 3px 0 0 #000;
}
.campaign_ctaline img {
  width: 2.125rem;
  height: 2.125rem;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}
.campaign_ctaline p {
  color: var(--White, #fff);
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.14px;
}

.wrapper04 {
  display: flex;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  /* width: 120%; 
  margin-left: -10%;  */
}
.loop_text04 {
  font-family: "avenir-next-lt-pro",  sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 25.237px; /* 180.266% */
  flex: 0 0 auto;
  white-space: nowrap;
  color: #fff;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝CAMPAIGN＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝FLOW＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.flow {
  background-color: #ff6d37;
  padding-top: 2.5rem;
}
.flow_wrap {
  padding: 0 3.125rem 4.375rem;
  margin-top: 1.25rem;
  display: grid;
  gap: 1.125rem;
}
.triangle {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 16px solid #fff;
  margin: 0 auto;
}
.step {
  position: relative;
}
.step_no {
  color: var(--White, #fff);
  font-family: "Avenir Next";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.237px; /* 114.714% */
  letter-spacing: 0.66px;
  border-bottom: solid 2px #fff;
  position: absolute;
  transform: rotate(90deg);
  top: 2rem;
  left: -3.9rem;
}
.step_no span {
  font-weight: 900;
  margin-left: 0.25rem;
}
.step_textwrap {
  color: var(--Black, #000);
  font-family: "Zen Kaku Gothic New";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px; /* 100% */
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: -5rem auto 0;
  line-height: 29px;
}
.step_title {
  margin: 0 auto -1rem;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid #000;
  background: var(--Beige, #efe8d0);
  padding: 0.5rem 0;
  width: 15rem;
  position: relative;
  line-height: 17px;
}
.step_text {
  margin: 0 auto;
  border-radius: 1rem;
  border: 1px solid #000;
  background-color: #fff;
  padding: 2rem 1.562rem 1.562rem;
}
.step_text .asterisk {
  margin-top: 0.625rem;
  color: var(--Black, #000);
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
}
.step .is-4 {
  position: relative;
}
.dot_flow {
  width: 6.375rem;
  position: absolute;
  bottom: -1rem;
  right: -3rem;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝FLOW＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ANY＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.any {
  padding: 4.375rem 0;
}
.any h4 {
  width: 85%;
  margin: 0 auto;
}
.any_contentswrap {
  padding: 5.44rem 4.187rem 3.75rem;
  display: grid;
  gap: 3.562rem;
  color: var(--Black, #000);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px; /* 145% */
  position: relative;
}
.any_contents {
  position: relative;
}
.any_dot {
  position: absolute;
  z-index: 0;
  width: 8.375rem;
  top: -1rem;
  right: 5.625rem;
}
.any_text {
  margin: 0 auto;
  text-align: center;
  border-radius: 4rem;
  border: 1px solid #000;
  background-color: #fff;
  padding: 0.125rem 0;
  width: 63%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1rem;
}

.any_ctaline {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.25rem;
  margin: 1.75rem auto 0;
  border-radius: 4rem;
  padding: 1rem 0;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 3px 3px 0 0 #000;
}
.any_ctaline img {
  width: 2.125rem;
  height: 2.125rem;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  margin-right: 0.312rem;
}
.any_ctaline p {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.14px;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ANY＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝QA＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 768px) {
  #qa {
    margin-top: -4.5rem;
    padding-top: 4.5rem;
  }
}
#qa2::before {
  content: "";
  display: block;
  height: 4.5rem; /* ヘッダーの高さ */
  margin-top: -4.5rem;
}
.qa {
  position: relative;
  z-index: 1;
  scroll-padding-top: 4.5rem; /* ← ヘッダーの高さ */
}
.qa_inner {
  background-color: #15dc69;
  /* border: #000 solid 1px;
  border-radius: 2rem; */
  padding: 1.25rem 0 2rem;
  color: var(--Black, #000);
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
  position: relative;
  z-index: 1;
}
.qa_contents {
  padding: 0 3.125rem;
}
.qa_contents.is-1 {
  margin-bottom: 3.75rem;
}
.qa_contents.is-2 {
  margin: 3.75rem 0 2.5rem;
}
.q {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
}
.a {
  margin-top: 1.562rem;
}
.a p {
  margin-top: 0.812rem;
}

.qa_mid {
  background-color: #15dc9d;
  background-image: url(../images/qa_mid.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.75rem 3.125rem;
}
.qa_mid_text p {
  margin: 0.5rem 0 1.875rem;
}
.qa_ex {
  color: var(--Black, #000);
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px; /* 161.111% */
}
.qa_ex p {
  margin-bottom: 0.625rem;
}
.splide__slide img {
  border-radius: 0.875rem;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝QA＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝STORE＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.store {
  background-color: #efe8d0;
  padding: 8.125rem 0 3.75rem;
  margin-top: -5rem;
  position: relative;
  z-index: 0;
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
}
#store::before {
  content: "";
  display: block;
  height: 9.5rem; /* ヘッダーの高さ */
  margin-top: -9.5rem;
}
.store h4 {
  width: 10rem;
  margin: 0 auto 1.625rem;
}
.store_inner {
  padding: 0 3.125rem;
}
.store_intro {
  display: flex;
  flex-direction: column;
  gap: 1.562rem;
}
/* .store_img {
  position: relative;
} */
.store_textwrap {
  position: relative;
}
.store_intro p {
  margin-bottom: 2.1875rem;
}
.dot_006 {
  position: absolute;
  width: 4.375rem;
  filter: drop-shadow(0 0 23px #fff);
  top: -10.5rem;
  right: -1.187rem;
}
.store_map {
  margin: 0 auto;
  width: 100%;
}
.store_map iframe {
  margin: 0 auto 1.25rem;
  width: 100%;
  height: 25vh;
}

table {
  border-collapse: collapse; /* セル間の境界線を結合 */
  margin-bottom: 1.625rem;
}
tr {
  height: 4rem;
  border-bottom: 2px solid transparent; /* 下線を引くために、あらかじめ透明な線を設定 */
  background-image: linear-gradient(
    to right,
    #000000 4px,
    transparent 4px
  ); /* 点線 (例: 4pxの点と4pxの間隔) */
  background-size: 9px 2px; /* 点線と間隔の合計幅 */
  background-repeat: repeat-x; /* 横に繰り返し */
  background-position: left bottom; /* 下端に位置を合わせる */
}
th {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
  width: 30%;
  text-align: left;
}
th,
td {
  padding: 1.25rem 0.625rem;
}
.table_address {
  display: grid;
  gap: 0.75rem;
}

.store_ig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: fit-content;
  margin: 0 auto 1.25rem;
}
.store_ig img {
  width: 1rem;
}
.store_ig p {
  color: var(--Black, #000);
  font-family: "Avenir Next";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.237px; /* 157.732% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.store_ctaline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.75rem auto 1.875rem;
  border-radius: 4rem;
  padding: 1rem 0;
  border: 2px solid #000;
  background: #06c755;
  box-shadow: 3px 3px 0 0 #000;
  margin-bottom: 3.75rem;
}
.store_ctaline img {
  width: 2.125rem;
  height: 2.125rem;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}
.store_ctaline p {
  color: var(--White, #fff);
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.14px;
}

.shop {
  padding: 0 1.25rem;
}
.shop_inner {
  background-color: #fff;
  border: #000 solid 1px;
  border-radius: 2rem;
  padding: 2.5rem 1.875rem 3.125rem;
}
.shop h5 {
  color: var(--Black, #000);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px; /* 170% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 1.25rem;
}
.shop_text {
  margin-bottom: 2.5rem;
}
.shop_ctawrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.official,
.amazon,
.rakuten {
  border-radius: 0.375rem;
}
.official {
  background-size: cover;
  flex-direction: column;
  background-image: url(../images/official.png);
  text-align: center;
  padding: 0.8125rem 0 0.25rem;
}
.official img {
  width: 9.5rem;
}
.official p {
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 290.909% */
}
.amazon {
  background: #f90;
  color: #fff;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 145.455% */
}
.rakuten {
  background: #bf0112;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 145.455% */
}
.amazon,
.rakuten {
  text-align: center;
  padding: 1rem;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝STORE＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝FOOTER＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
footer {
  background-color: #000;
  padding: 3.125rem 1.25rem 4.375rem;
  text-align: center;
}
.footer_logo {
  width: 7.5rem;
}
.footer_sns {
  width: 100%;
  display: flex;
  gap: 1.25rem;
  margin: 1.87rem auto 0;
  justify-content: center;
  padding: 1.56rem 0;
  border-top: solid #555555 1px;
  border-bottom: solid #555555 1px;
}
.ig img,
.hp img {
  width: 2rem;
}
.ig p,
.hp p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.5rem;
  line-height: 1rem;
  color: #fff;
}
.footer_address {
  font-size: 0.68rem;
  color: #fff;
  padding-top: 1.56rem;
  line-height: 2.4;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝FOOTER＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
