@charset "UTF-8";
/*
common 
*/
img {
  max-width: 100%;
}

figure {
  position: relative;
}

figure::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

figure img {
  pointer-events: none;
}

.sec_close {
  margin-top: 0;
}

.mt20 {
  margin-top: 20px;
}

.wrap__col {
  margin-top: 0;
}

@media only screen and (min-width: 768px) and (min-width: 768px), print {
  .wrap__col {
    padding-top: 0;
  }
}
/* 全幅背景レイヤー */
.lp__full {
  font-family: "Noto Sans JP";
}

/* SP：1カラム（中央だけ見せる） */
.lp__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "main" "right" "left"; /* SPで下に回すなら。完全非表示なら不要 */
}

/* 中央（白紙面） */
.lp__paper {
  width: 100%;
  margin-inline: auto;
  background: #fff;
}

@media (min-width: 768px) {
  .lp__paper {
    width: 584px;
  }
}
/* PC：3カラム（見た目は 左｜中央584｜右） */
@media (min-width: 768px) {
  .lp__grid {
    grid-template-columns: minmax(0, 1fr) 584px minmax(0, 1fr);
    grid-template-areas: "left main right";
    gap: 0; /* 画像のようにベタなら0、余白欲しければ付ける */
    align-items: stretch;
  }
  .lp__side--left,
  .lp__side--right {
    align-items: flex-start;
  }
  .lpSideInner--right,
  .lpSideInner--left {
    position: sticky;
    top: 120px;
  }
}
/* Gridエリア割当（DOM順とは独立） */
.lp__main {
  grid-area: main;
}

.lp__side--right {
  grid-area: right;
}

.lp__side--left {
  grid-area: left;
}

/* SPで左右は非表示（要件：コンテンツのみ表示） */
@media (max-width: 767px) {
  .lp__side--left,
  .lp__side--right {
    display: none;
  }
}
/* 左右はSPでは隠す（要件：SPは中央のみ） */
.lp__side {
  display: none;
}

@media (min-width: 768px) {
  .lp__side {
    display: flex;
    padding: 25px 9.8039215686%;
  }
  .lp__side--left {
    justify-content: flex-end;
    padding-top: 100px;
  }
  .lp__side--right {
    justify-content: flex-start;
  }
}
.lpSideInner {
  width: 100%;
  max-width: 340px;
}

/*.lpSideInner--right{ width: 200px; } /* ボタンに合わせて調整 */
.lp__paper .inner {
  padding: 30px;
}

.lp__list__title {
  color: #fff;
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px;
}

.lp__list__button {
  display: block;
  margin-top: 20px;
}

.lp__copyright {
  padding: 40px 0;
  text-align: center;
  line-height: 1;
}
.lp__copyright img {
  aspect-ratio: 513/16;
}

@media (max-width: 767px) {
  .lp__copyright {
    padding: 20px 10px;
  }
}
.supple__text p {
  font-family: "Zen Maru Gothic";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.supple__text p.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* =========================
   右：画像ボタン（縦並び）
========================= */
.lpMenuImg {
  display: block;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  outline: none;
  transform: translateZ(0); /* 描画のチラつき軽減 */
}

.lpMenuImg img {
  display: block;
  width: 100%;
  height: auto;
}

/* hover / focus */
@media (hover: hover) {
  .lpMenuImg:hover {
    filter: brightness(1.02);
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.18);
  }
}
.lpMenuImg:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* active（現在ページ） */
.lpMenuImg.is-active {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85), 0 10px 16px rgba(0, 0, 0, 0.18);
}

/* =========================
   メイン-ボタン
========================= */
.lp .button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 9.8039215686%;
  background-color: #fff;
}

@media (max-width: 767px) {
  .lp .button--search {
    position: sticky;
    bottom: 0;
  }
}
:root {
  --path-weight: 1px;
}

.lp a:link {
  color: black;
}
.lp .button__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.lp .button__caption::before, .lp .button__caption::after {
  content: "";
  width: 1.4rem;
  background-color: black;
  aspect-ratio: 14/26;
}
@media (max-width: 767px) {
  .lp .button__caption::before, .lp .button__caption::after {
    width: 1.1rem;
  }
}
.lp .button__caption::before {
  clip-path: polygon(0 var(--path-weight), var(--path-weight) 0, 100% calc(100% - var(--path-weight)), calc(100% - var(--path-weight)) 100%);
}
.lp .button__caption::after {
  clip-path: polygon(calc(100% - var(--path-weight)) 0, 100% var(--path-weight), var(--path-weight) 100%, 0 calc(100% - var(--path-weight)));
}
.lp .button__caption span {
  font-family: "Zen Maru Gothic";
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.6rem;
}
@media (max-width: 767px) {
  .lp .button__caption span {
    font-size: 1.6rem;
  }
}
.lp .button__link {
  display: flex;
  border-radius: 9999px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.lp .button--search .button__link {
  border: 4px solid #9C9C9C;
  background: #FFF;
  height: 8.8rem;
  gap: 2.2rem;
}
@media (max-width: 767px) {
  .lp .button--search .button__link {
    height: 4.8rem;
    gap: 1.2rem;
  }
}
.lp .button--search .button__link::before {
  content: "";
  background: url("../img/common/ic_location.svg") center/contain no-repeat;
  width: 27px;
  aspect-ratio: 27/36;
}
@media (max-width: 767px) {
  .lp .button--search .button__link::before {
    width: 20px;
  }
}
.lp .button--search .button__link span {
  color: black;
  font-family: "Zen Maru Gothic";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.6rem;
}
@media (max-width: 767px) {
  .lp .button--search .button__link span {
    font-size: 2rem;
  }
}
.lp .button--list {
  padding-bottom: 0;
}

/* SP: 検索ボタンを初期非表示 → スクロール開始で表示 */
@media (max-width: 767px) {
  .lp .button--search {
    /* 既存: position: sticky; bottom: 0; は維持 */
    opacity: 0;
    transform: translateY(110%);
    pointer-events: none;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
    will-change: opacity, transform;
  }
  .lp .button--search.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  /* 端末の設定で「動きを減らす」の場合 */
}
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .lp .button--search {
    transition: none;
  }
}
/* =========================
   メイン-リスト
========================= */
.lp ul.dot {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp ul.dot li {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 400;
}
.lp ul.dot li a {
  font-weight: 400;
}
.lp ul.dot li::before {
  content: "・";
}
.lp ul.indent {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
}
.lp ul.indent li {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 400;
}
.lp .benefit {
  text-align: center;
  margin-bottom: 10px;
}
.lp .benefit span {
  font-family: "Zen Maru Gothic";
  font-size: 1.7rem;
  font-weight: 700;
}
.lp .benefit_sub {
  line-height: 1.2;
  margin-bottom: 5px;
}
.lp .benefit_sub span {
  font-size: 1.4rem;
  font-weight: 700;
}
.lp ul + .benefit_sub {
  margin-top: 1em;
}/*# sourceMappingURL=common.css.map */