/* =========================================================
   Foundation
   ========================================================= */
:root {
  --c-green: #00b577;
  --c-green-deep: #189a64;
  --c-green-darkest: #007c36;
  --c-green-section: #20bb86;
  --c-cream: #fcfff0;
  --c-cream-2: #f3f8e3;
  --c-white: #ffffff;
  --c-orange: #f67d04;
  --c-yellow: #fff15d;
  --c-pink: #f4a0bc;
  --c-blue: #6fb6e4;
  --c-text: #2c2c2c;
  /* --c-text: #4d534e; */
  --c-border: #dfe9d8;

  --container-width: 1266px;
  --header-height-pc: 86px;
  --header-height-sp: 60px;

  --font-heading: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  --font-body:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    --icon-arrow-next: url('arrow-next.svg'); 
}





* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-sp);
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: var(--header-height-pc);
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-text);
  background-color: var(--c-cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
figure {
  margin: 0;
}

button {
  /* font-family: inherit; */
  cursor: pointer;
}

/* =========================================================
   Layout
   ========================================================= */
.ly-main {
  overflow: hidden;
}

.ly-container {
  width: 100%;
  max-width: var(--container-width);
  min-width: 335px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .ly-container {
    padding: 0;
  }
}

/* =========================================================
   Component
   ========================================================= */
/* c-logo */
.c-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-logo__mark {
  width: 130px;
}

@media (min-width: 768px) {
  .c-logo__mark {
    width: 170px;
  }
}

.c-logo__sub {
  display: none;
  font-size: 10px;
  color: var(--c-text);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .c-logo__sub {
    display: block;
  }
}

/* c-button */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 auto;
  padding-left: 20px;
  padding-bottom: 3px;
  width: 100%;
  max-width: 460px;
  height: 50px;
  border-radius: 999px;
  background: var(--c-white);
  color: var(--c-orange);
  font-weight: 700;
  font-size: 22px;
  border: none;
  box-shadow: 0 5px 0 #208554;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .c-button {
    font-size: 31px;
    padding: 22px 40px;
    gap: 22px;
    height: 74px;
  }
}

.c-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-orange);
  color: var(--c-white);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .c-button__icon {
    width: 38px;
    height: 38px;
  }
}

.c-button:hover {
  transform: translateY(3px);
  /* box-shadow: 0 1px 0 #c8530d; */

  color: var(--c-white);
  background: var(--c-orange);
  border-color: var(--c-orange);
}

.c-button:hover .c-button__icon {
  color: var(--c-orange);
  background: var(--c-white);
}

.c-button__icon svg {
  width: 16px;
  height: 16px;
}

/* c-loginbtn (header contract-holder button) */
.c-loginbtn {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--c-cream-2);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
}

@media (min-width: 768px) {
  .c-loginbtn {
    display: inline-flex;
  }
}

.c-loginbtn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-white);
}

/* c-menubtn (hamburger) */
.c-menubtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 72px;
  height: 100%;
  background: var(--c-green-darkest);
  color: var(--c-white);
  border: none;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .c-menubtn {
    width: 96px;
  }
}

.c-menubtn__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.c-menubtn__label {
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* c-heading: section heading with eyebrow */
.c-heading {
  text-align: center;
}

.c-heading__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-green);
  /* border-bottom: 2px dotted var(--c-green); */
  /* padding-bottom: 4px; */
  margin-bottom: 12px;
}

.c-heading__eyebrow--white {
  color: var(--c-white);
  /* border-color: var(--c-white); */
}

.c-heading__text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-text);
  /* line-height: 1.4; */
}

@media (min-width: 768px) {
  .c-heading__text {
    font-size: 34px;
  }
}

.c-heading__text--white {
  color: var(--c-white);
}

.c-heading__text--yellow {
  color: var(--c-yellow);
}

.c-heading__accent {
  display: block;
  color: var(--c-yellow);
  line-height: 1.2;
}

/* c-card: white rounded card (used for reasons / case studies) */
.c-card {
  background: var(--c-white);
  border-radius: 16px;
  /* padding: 28px 24px; */
  /* box-shadow: 0 8px 20px rgba(0, 60, 30, 0.06); */
}

/* c-badge: numbered square badge */
.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--c-green);
  color: var(--c-white);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 5.33px;
  font-family: "Roboto", sans-serif;
}

@media (min-width: 768px) {
  .c-badge {
    width: 29px;
    height: 29px;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 9.5px;
  }
}

/* c-tag: label chip (低圧 / 高圧・特別高圧) */
.c-tag {
  position: absolute;
  display: inline-block;
  top: -4px;
  left: -4px;
  padding: 7px 20px;
  border-radius: 10px 0 10px 0;
  background: var(--c-green);
  color: var(--c-white);
  font-weight: 600;
  font-size: 20px;
}

@media (min-width: 768px) {
  .c-tag {
    border-radius: 20px 0 20px 0;
    font-size: 22px;
  }
}

/* c-check: check icon bullet used in worry list */
.c-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-green);
  color: var(--c-white);
  flex-shrink: 0;

  margin-top: -36px;
}

.c-check svg {
  width: 14px;
  height: 14px;

  transform: scale(1.4);
  transform-origin: center;
}

/* c-wave-divider: decorative rounded top for green sections */
.c-wave-top {
  position: relative;
}

.c-wave-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--c-cream);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: scaleX(1.4);
}

/* =========================================================
   Project
   ========================================================= */

/* ---- p-mv: hero ---- */
.p-mv {
  position: relative;
  background: #18a675;

  padding-bottom: 6px;
  text-align: center;
  overflow: hidden;
}

.p-mv__inner {
  position: relative;
}

.p-hero__img{
margin: auto;
}

.p-mv__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -20px;
  /* margin-inline: auto; */
  width: 100%;
  height: 130px;
}
.p-mv__cta .c-heading__text {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 6px;
}
.p-mv__cta .c-button {
  width: 300px;
}
@media (min-width: 768px) {
  .p-mv__cta {
    height: 170px;
    margin-top: -46px;
    padding-bottom: 2px;
  }
  .p-mv__cta .c-heading__text {
    font-size: 30px;
  }
  .p-mv__cta .c-button {
    padding: 35px 0;
    width: 440px;
    padding-left: 18px;
  }
}

/* ---- p-worry ---- */
.p-worry {
  position: relative;
  padding: 42px 0 30px;
  background: #f5f8e7;

  z-index: 1;
}

@media (min-width: 768px) {
  .p-worry {
    padding: 68px 0 67px;
  }
}

.p-worry__heading {
  position: relative;
  width: 202.42px;
  margin-bottom: 20px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .p-worry__heading {
    width: 473px;
    margin-bottom: 23px;
  }
}

.p-worry__illust {
  position: absolute;
  z-index: 3;
  height: auto;
}

/* 左上：女性 */
.p-worry__illust--woman {
  top: -77px;
  left: -26px;
  width: 84px;
}
@media (min-width: 768px) {
  .p-worry__illust--woman {
    top: 33px;
    left: -213px;
    width: 225px;
    z-index: 1;
  }
}

/* 右上：グラフ */
.p-worry__illust--graph {
  top: -84px;
  right: -20px;
  width: 79px;
}

/* 右下：男性 */
.p-worry__illust--man {
  right: -33px;
  top: 169px;
  width: 102.27px;
}
@media (min-width: 768px) {
  .p-worry__illust--man {
    right: -187px;
    top: -116px;
    bottom: 0;
    width: 232px;
    z-index: 3;
  }
}

.p-worry__body {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  max-width: 400px;
}
@media (min-width: 768px) {
  .p-worry__body {
    max-width: 806.48px;
  }
}

.p-worry__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 13px;

  margin-inline: auto;
}

@media (min-width: 768px) {
  .p-worry__list {
    position: relative !important;
    height: 179.48px !important; /* 左側3つ＋隙間の合計高さ */
    max-width: 806.48px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;

    z-index: 2;
  }
}

.p-worry__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  border-radius: 10px;
  padding: 23px 0 18px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.333;
}

.p-worry__item--pc {
  position: absolute !important;
  width: calc(
    50% - 12px
  ) !important; /* 左右50%指定（横gap 24pxの半分を引く） */
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .p-worry__item--pc {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    padding: 0;
  }

  /* -------------------------------------
   * 左列（奇数要素）：幅50%-12px / 左端配置(left:0)
   * ------------------------------------- */
  /* 1番目：一番上 (top: 0) */
  .p-worry__item--pc:nth-child(1) {
    top: 0;
    left: 0;
    height: 51.28px !important;
  }

  /* 3番目：2番目の位置 (51.28px + 隙間12.82px = 64.1px) */
  .p-worry__item--pc:nth-child(3) {
    top: 64.1px;
    left: 0;
    height: 51.28px !important;
  }

  /* 5番目：3番目の位置 (64.1px + 51.28px + 隙間12.82px = 128.2px) */
  .p-worry__item--pc:nth-child(5) {
    top: 128.2px;
    left: 0;
    height: 51.28px !important;
  }

  /* -------------------------------------
   * 右列（偶数要素）：幅50%-12px / 右端配置(right:0)
   * ------------------------------------- */
  /* 2番目：一番上 (top: 0) */
  .p-worry__item--pc:nth-child(2) {
    top: 0;
    right: 0;
    height: 82.75px !important;
  }

  /* 4番目：2番目の位置 (82.75px + 隙間12.82px = 95.57px) */
  .p-worry__item--pc:nth-child(4) {
    top: 95.57px;
    right: 0;
    height: 82.75px !important;
  }
}

.p-worry__item--full {
  grid-column: 1 / -1;
  width: 72.54%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-worry__item--full {
    max-width: 60%;
  }
}

@media (min-width: 768px) {
  /* チェック部分 */
  .p-worry__check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: stretch; /* テキストが2行になっても高さを自動追従 */
    width: 47.78px;
    min-height: 51px;
    background-color: #18a675;
  }

  .p-worry__check svg {
    width: 28px;
    height: 28px;
    padding: 5px; /* 内側の余白でチェックのサイズ調整 */
    background-color: #ffffff;
    border-radius: 50%;
    color: #18a675;
    box-sizing: border-box;
  }

  /* テキスト */
  .p-worry__text {
    flex: 1; /* 残りの横幅を全て占有 */
    display: flex;
    justify-content: center; /* 左右中央揃え */
    align-items: center; /* 上下中央揃え */
    text-align: center;
    padding: 12px 16px; /* 上下左右の余白 */
    font-size: 20px;
    font-weight: 700; /* 太字 */
    color: #222222;
    line-height: 1.4; /* 改行時の行間 */
    margin: 0;
  }
}

/* ---- p-reasons ---- */
.p-reasons {
  position: relative;
  background: var(--c-green-section);
  padding-bottom: 23px;
}

.p-reasons__intro {
  text-align: center;
  margin: 0 0 10px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: 2;
}

.p-reasons__intro .c-heading__eyebrow {
  width: 139.25px;
  margin-bottom: -6px;
  margin-top: 18px;
}

@media (min-width: 768px) {
  .p-reasons__intro .c-heading__eyebrow {
    width: 211.15px;
    padding-top: 20px;
  }
}

.p-reasons__intro .c-heading__text {
  font-size: 18px;
}

@media (min-width: 768px) {
  .p-reasons__intro .c-heading__text {
    font-size: 30px;
  }
}

.p-reasons__intro .c-heading__accent {
  font-size: 28px;
  margin-top: -10px;
}

@media (min-width: 768px) {
  .p-reasons__intro .c-heading__accent {
    font-size: 46px;
  }
}

.p-reasons__intro .c-heading__accent strong {
  font-family: "MuseoModerno", sans-serif;
  font-size: 46px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .p-reasons__intro .c-heading__accent strong {
    font-size: 74px;
  }
}

.p-reasons__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  /* max-width: 980px; */
  /* margin: 0 auto; */
  width: clamp(335px, 30vw, 430px);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .p-reasons__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 27px;

    min-width: 1266px;
  }
}

/* 六角形(上) */
.p-reasons__list::before {
  content: "";
  position: absolute;
  top: -164px;
  left: -23px;
  width: 100px;
  height: 90px;
  background-image: url("../images/hexagon.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  rotate: -45deg;
  z-index: 99;
}

@media (min-width: 768px) {
  .p-reasons__list::before {
    content: "";
    position: absolute;
    width: 164px;
    height: 147px;
    top: -174px;
    left: -10px;
    background-image: url("../images/hexagon.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    z-index: 99;
    rotate: inherit;
  }
}

/* 六角形(下) */
.p-reasons__list::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 112px;
  bottom: -113px;
  right: 0px;
  left: -44px;
  background-image: url("../images/hexagon.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  transform: scaleX(-1);
  z-index: 99;
}

@media (min-width: 768px) {
  .p-reasons__list::after {
    content: "";
    position: absolute;
    width: 164px;
    height: 147px;
    bottom: -64px;
    right: 0px;
    left: 1180px;
    background-image: url(../images/hexagon.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    transform: scaleX(1);
    z-index: 99;
  }
}

.p-reasons__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 68px 14px 21px;
  overflow: hidden;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .p-reasons__card {
    border-radius: 16px;
    padding: 37.5px 50px 23px 34px;
  }
}

.p-reasons__card::before {
  position: absolute;
  content: "";
  top: -30px;
  right: -12px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--c-yellow);
}

@media (min-width: 768px) {
  .p-reasons__card::before {
    top: -49px;
    right: -21px;
    width: 206px;
    height: 206px;
  }
}

.p-reasons__figure {
  position: absolute;
  top: 0px;
  right: 0px;
}

.p-reasons__figure--01 {
  top: 2px;
  width: 115px;
}

@media (min-width: 768px) {
  .p-reasons__figure--01 {
    width: 185.49px;
  }
}

.p-reasons__figure--02 {
  right: -1px;
  width: 120px;
}

@media (min-width: 768px) {
  .p-reasons__figure--02 {
    width: 188px;
  }
}

.p-reasons__figure--03 {
  width: 120px;
}

@media (min-width: 768px) {
  .p-reasons__figure--03 {
    width: 188px;
  }
}

.p-reasons__figure--04 {
  top: 5px;
  right: 9px;
  width: 84px;
}

@media (min-width: 768px) {
  .p-reasons__figure--04 {
    width: 140.88px;
  }
}

.p-reasons__figure--05 {
  top: 13px;
  right: 11px;
  width: 87px;
}

@media (min-width: 768px) {
  .p-reasons__figure--05 {
    top: 16px;
    right: 18px;
    width: 135px;
  }
}

.p-reasons__figure--06 {
  top: 19px;
  right: 20px;
  width: 60px;
}

@media (min-width: 768px) {
  .p-reasons__figure--06 {
    right: 30px;
    width: 97.9px;
  }
}

.p-reasons__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-green);
  margin-bottom: 8px;
  line-height: 1.278;
}

@media (min-width: 768px) {
  .p-reasons__title {
    font-size: 24px;
    margin-bottom: 26px;
    line-height: 1.167;
  }
}

.p-reasons__text {
  font-size: 12px;
  line-height: 1.417;
}

@media (min-width: 768px) {
  .p-reasons__text {
    font-size: 14px;
    /* margin-top: auto; */
  }

  .p-reasons__card:nth-of-type(6) .p-reasons__text {
    margin-top: auto;
  }
}

.p-reasons__note {
  display: block;
  margin-top: 16px;
  font-size: 10px;
}

/* 半円背景 */
.clip-path-container {
  width: 100%;
  /* height: 346px; */
  height: 146px;
  background-color: #f5f8e7;
  /* overflow: hidden; */

  position: relative;
}
@media (min-width: 768px) {
  .clip-path-container {
    height: 246px;
  }
}

.curved-bg-clip {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #20bb86;
  /* 二次ベジェ曲線で円弧を作成 */
  clip-path: ellipse(68% 100% at 50% 100%);
}
@media (min-width: 768px) {
  .curved-bg-clip {
    height: 240%;
  }
}

/* ---- p-cta ---- */
.p-cta {
  width: 100vw;
  /* height: 431px; */
  position: relative;
  background: var(--c-green-section) url("../images/cta_bg01_sp.png") no-repeat
    center top / cover;
  text-align: center;
  overflow: hidden;
  background-size: auto 100%;
}

@media (min-width: 768px) {
  .p-cta {
    background: var(--c-green-section) url("../images/cta_bg01.png") no-repeat
      center top / cover;
      background-size: auto 100%;
  }
}

.p-cta--02 {
  background: #00b577 url("../images/cta_bg01_sp.png") no-repeat center top /
    cover;
}

@media (min-width: 768px) {
  .p-cta--02 {
    background: #00b577 url("../images/cta_bg02.png") no-repeat center top /
      cover;
    text-align: left;
    background-size: auto 100%;
  }
}

.p-cta .c-heading__text {
  line-height: 1.385;
}

.p-cta__inner {
  padding: 25px 0 213px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .p-cta__inner {
    padding: 20px 0 64px;
  }
}

.p-cta--02 .p-cta__inner {
  padding: 21px 0 213px;
}
@media (min-width: 768px) {
  .p-cta--02 .p-cta__inner {
    max-width: 700px;
    padding: 47px 0 48px;
  }
}

.p-cta__lead {
  font-size: 14px;
  color: var(--c-white);
  margin-top: 15px;
}

@media (min-width: 768px) {
  .p-cta__lead {
    margin-top: 10px;
  }
}

.p-cta__button {
  display: flex;
  justify-content: center;
  width: 300px;
  margin: 12px auto 0;
}

@media (min-width: 768px) {
  .p-cta__button {
    margin-top: 24px;
    width: 460px;
  }
  .p-cta__button .c-button {
    padding: 30px 0;
  }
  .p-cta__button .c-button {
    font-size: 30px;
  }
  /* .p-cta--02 {
    width: 330px;
  } */
  .p-cta--02 .p-cta__button {
    margin-top: 24px;
    margin: 24px auto 0 0;
    width: 420px;
  }
}

/* ---- p-flow ---- */
.p-flow {
  position: relative;
  padding: 32.45px 0 0;
}

@media (min-width: 768px) {
  .p-flow::before {
    position: absolute;
    content: "";
    top: 110px;
    left: 0;
    width: 100%;
    height: 200px;
    background: url(../images/flow_bg.png) no-repeat center / contain;
  }
}

@media (min-width: 768px) {
  .p-flow {
    padding: 67px 0 0;
  }
}

.p-flow__intro {
  position: relative;
  text-align: center;
  margin-bottom: 4px;
  margin-inline: auto;
  max-width: 400px;
}

@media (min-width: 768px) {
  .p-flow__intro {
    margin-bottom: 30px;
    max-width: 600px;
  }
}

.p-flow__intro .c-heading__eyebrow {
  width: 161.27px;
  margin-bottom: -3px;
}

@media (min-width: 768px) {
  .p-flow__intro .c-heading__eyebrow {
    width: 234.39px;
    /* margin-bottom: 9.33px; */
  }
}

.p-flow__intro .c-heading__text {
  font-size: 28px;
}

@media (min-width: 768px) {
  .p-flow__intro .c-heading__text {
    font-size: 40px;
  }
}

.p-flow__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 15px;
  max-width: 335px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-flow__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
    max-width: 1000px;
  }
}

.p-flow__step:first-of-type .p-flow__text {
  line-height: 1.6;
}

.p-flow__step {
  display: flex;
  flex-direction: column;
  align-items: start;
}

@media (min-width: 768px) {
  .p-flow__step {
    text-align: center;
  }
}

.p-flow__figure {
  position: relative;
  display: block;
  width: 160px;
  height: 160px;
  margin: 0 auto 13px;
}

@media (min-width: 768px) {
  .p-flow__figure {
    width: 203px;
    height: 203px;
    margin-bottom: 20px;
  }
}

.p-flow__figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2.7px solid var(--c-yellow);
  background: var(--c-white);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .p-flow__figure::before {
    border: 4px solid var(--c-yellow);
  }
}

.p-flow__figure img {
  position: absolute;
  z-index: 2; /* 黄色丸枠の上に重ねる */
  height: auto;
  left: 50%;
  transform: translateX(-46%); /* 横位置の中央揃え＆微調整 */
  max-width: 250px;
}

.p-flow__figure--01 img {
  bottom: 12px;
  left: 87px;
  width: 119.26px;
}
.p-flow__figure--02 img {
  bottom: 20px;
  left: 50%;
  width: 166.31px;
}
.p-flow__figure--03 img {
  bottom: 27px;
  left: 48%;
  width: 124.75px;
}
.p-flow__figure--04 img {
  bottom: 20px;
  left: 47%;
  width: 90.24px;
}
@media (min-width: 768px) {
  .p-flow__figure--01 img {
    bottom: 6px;
    left: 120px;
    width: 177.12px;
  }
  .p-flow__figure--02 img {
    bottom: -11px;
    left: 50%;
    width: 247px;
  }
  .p-flow__figure--03 img {
    bottom: 6px;
    left: 50%;
    width: 187.73px;
  }
  .p-flow__figure--04 img {
    bottom: 0;
    left: 45%;
    width: 138.25px;
  }
}

.p-flow__num {
  display: inline-block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  background: var(--c-yellow);
  border-radius: 999px;
  padding: 9px 13px 5px;

  margin-bottom: -46px;
  z-index: 2;
}

@media (min-width: 768px) {
  .p-flow__num {
    font-size: 10px;
    padding: 14px 21px 10px;
    margin-bottom: -50px;
    margin-left: 12px;
  }
}

.p-flow__num span {
  display: block;
  font-size: 17px;
  margin-top: -10px;
}

@media (min-width: 768px) {
  .p-flow__num span {
    font-size: 20px;
  }
}

.p-flow__title {
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-green);
  font-size: 18px;
  text-align: center;
  margin-bottom: 9px;
  line-height: 0.933;
}

@media (min-width: 768px) {
  .p-flow__title {
    font-size: 23px;
    margin-bottom: 8px;
    line-height: 1.042;
  }
}

.p-flow__text {
  font-size: 13px;
  line-height: 1.385;
  max-width: 314px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-flow__text {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
    max-width: 300px;
    white-space: nowrap;
  }
}

.p-flow__note {
  font-size: 10px;
}

@media (min-width: 768px) {
  .p-flow__note {
    font-size: 12px;
  }
}

.p-flow__final {
  position: relative;
  max-width: 420px;
  margin: 11px auto 0;
  text-align: center;
  padding-bottom: 133px;
}

@media (min-width: 768px) {
  .p-flow__final {
    padding-bottom: 33px;
    margin: 30px auto 16px;
  }
  .p-flow__final .p-flow__title {
    font-size: 27px;
    margin-bottom: 14px;
  }
}

.p-flow__final .p-flow__num {
  margin-left: 0;
  margin-bottom: 13px;
}
@media (min-width: 768px) {
  .p-flow__final .p-flow__num {
    margin-bottom: 30px;
  }
}

.p-flow__final::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 50%;
  /* max-width: 1139px; */
  width: 219vw;
  height: 219vw;
  transform: translateX(-50%);
  background: var(--c-white);
  border: 2.88px solid var(--c-yellow);
  border-bottom: none;
  border-radius: 50%;
  z-index: -1;
}

@media (min-width: 768px) {
  .p-flow__final::before {
    top: 29px;
    max-width: 1139px;
    width: 90vw;
    height: 90vw;
    transform: translateX(-50%);
    border: 4px solid var(--c-yellow);
    max-height: 800px;
  }
}

.p-flow__link {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.p-flow__link:hover {
  opacity: 0.7;
}

.p-flow__illust {
  position: absolute;
  /* z-index: 3; */

  height: auto;
}

.p-flow__illust--left {
  top: -12px;
  left: 18px;
  width: 54px;
}

.p-flow__illust--right {
  right: 8px;
  top: -3px;
  width: 70px;
}

@media (min-width: 768px) {
  .p-flow__illust--left {
    top: 36px;
    left: 30px;
    width: 90px;
  }

  .p-flow__illust--right {
    right: 16px;
    top: 50px;
    width: 116px;
  }
}

.p-flow__illust--woman {
  bottom: 0;
  left: 15%;

  width: 203px;
}

.p-flow__illust--man {
  bottom: 0;
  left: 15%;

  width: 203px;
}

@media (min-width: 768px) {
  .p-flow__illust--woman {
    bottom: -21px;
    left: -195px;
    width: 325px;
  }

  .p-flow__illust--man {
    bottom: -24px;
    left: 247px;
    width: 333px;
  }
}

/* ---- p-case ---- */
.p-case {
  padding: 49px 0 45px;
  background: #eaf8e7;
}

@media (min-width: 768px) {
  .p-case {
    padding: 56px 0 76px;
  }
}

.p-case__intro {
  position: relative;
  text-align: center;
  margin-bottom: 12px;
  margin-inline: auto;
  max-width: 400px;
}

@media (min-width: 768px) {
  .p-case__intro {
    margin-bottom: 33px;
    max-width: 600px;
  }
}

.p-case__intro .c-heading__eyebrow {
  width: 89.93px;
  margin-bottom: -8px;
}

@media (min-width: 768px) {
  .p-case__intro .c-heading__eyebrow {
    width: 132.68px;
    /* margin-bottom: 10.96px; */
  }
}

.p-case__intro .c-heading__text {
  font-size: 28px;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .p-case__intro .c-heading__text {
    font-size: 40px;
  }
}

.p-case__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 335px;
  min-width: 335px;

  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-case__list {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
    /* justify-content: start; */
    align-items: start;
    gap: 22px;
    max-width: 1160px;
    min-width: 1160px;
  }
}

.p-case__card {
  position: relative;
  border: 4px solid var(--c-green);
  border-radius: 10px;
  overflow: hidden;
  background: var(--c-white);
  min-width: 335px;
  /* margin-inline: auto; */
}

@media (min-width: 768px) {
  .p-case__card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    min-height: 384px;
  }
}

.p-case__card:nth-of-type(2) .p-case__inner {
  margin: 50px auto 16px;
}

.p-case__card:nth-of-type(3) .p-case__inner {
  margin: 57px auto 16px;
}

@media (min-width: 768px) {
  .p-case__card:nth-of-type(2) .p-case__inner,
  .p-case__card:nth-of-type(3) .p-case__inner {
    margin: 63px auto 20px;
  }
}

.p-case__card:nth-of-type(2) .p-case__title {
  padding-right: 17px;
}

.p-case__card:nth-of-type(3) .p-case__title {
  padding-right: 15px;
}

.p-case__inner {
  margin: 42px auto 16px;
  max-width: 300px;
}

@media (min-width: 768px) {
  .p-case__inner {
    margin: 63px auto 20px;
  }
}

.p-case__title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  color: #009f68;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .p-case__title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

.p-case__meta {
  /* max-width: 254px; */
  margin: 0 auto;
  line-height: 1.76;
  max-width: 238px;
}

@media (min-width: 768px) {
  .p-case__meta {
    max-width: 280px;
  }
}

.p-case__card:nth-of-type(2) .p-case__meta {
  max-width: 254px;
}

.p-case__card:nth-of-type(3) .p-case__meta {
  max-width: 216px;
}

@media (min-width: 768px) {
  .p-case__card:nth-of-type(2) .p-case__meta {
    max-width: 284px;
  }

  .p-case__card:nth-of-type(3) .p-case__meta {
    max-width: 302px;
  }
}

.p-case__row {
  display: flex;

  gap: 14px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .p-case__row {
    font-size: 18px;
  }
}

.p-case__row dt {
  flex-shrink: 0;
  color: var(--c-text);
}

.p-case__row dt::after {
  content: "：";
}

.p-case__profit {
  margin: 0 30px;
  background: #eaf8e7;
  border-radius: 10px;
  padding: 4px 10px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: auto;
  margin-bottom: 22px;
  max-width: 300px;
}

@media (min-width: 768px) {
  .p-case__profit {
    margin: auto 32px 36px;
    font-size: 20px;
    padding: 10px;

    display: flex;
    gap: 15px;
    justify-content: center;
  }
  .unit-vertical {
    /* writing-mode: vertical-rl; */
    font-size: 16px;
  }
  .p-case__profit p {
    font-size: 19px;
    line-height: 1.3;
  }
}

.p-case__profit strong {
  font-size: 32px;
  margin: 0 1px 0 5px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .p-case__profit strong {
    font-size: 38px;
    margin: 0 1px 0 1px;
  }
}

.p-case__profit span {
  font-size: 19px;
}

@media (min-width: 768px) {
  .p-case__profit span {
    font-size: 16px;
  }
}

/* @media (min-width: 768px) {
  .price {
    display: flex;
    align-items: flex-end;
  }
} */

.p-case__banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* 左右を均等（1fr）、中央を自動サイズ */
  align-items: center;
  gap: 10px;
  max-width: 400px;
  margin: 30px auto 0;
  background: var(--c-green);
  border-radius: 10px;
  padding: 14px 0;
  color: var(--c-white);
  transition: opacity 0.2s ease;
}

.p-case__banner:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .p-case__banner {
    border-radius: 14px;
    margin-top: 45px;
    padding: 37px 0 27px;
    max-width: 1160px;
  }
}

.p-case__banner-figure {
  position: absolute;
  bottom: 0;
  left: -6%;
  width: 82px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-case__banner-figure {
    width: 133px;
    left: 18%;
  }
}

.p-case__banner-text {
  grid-column: 2;
  text-align: center;
}

.p-case__banner-eyebrow {
  width: 237.97px;
  display: block;
  margin-inline: auto;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .p-case__banner-eyebrow {
    width: 324px;
  }
}

.p-case__banner-link {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
  display: inline-flex;
  /* align-items: center; */
  color: var(--c-yellow);
  gap: 16px;
}

@media (min-width: 768px) {
  .p-case__banner-link {
    font-size: 25px;
  }
}

.p-case__banner-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-green);
  flex-shrink: 0;

  grid-column: 3; /* 3列目（右端）に配置 */
  justify-self: end;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .p-case__banner-arrow {
    width: 30px;
    height: 30px;
    justify-self: start;
  }
}

.p-case__banner-arrow svg {
  width: 30px;
  height: 14px;
  padding-left: 2px;
}

.p-case__illust {
  position: absolute;
  z-index: 3;

  height: auto;
}

.p-case__illust--left {
  top: -18px;
  left: 32px;
  width: 64px;
}

.p-case__illust--right {
  right: 36px;
  bottom: 45px;
  width: 60px;
}

@media (min-width: 768px) {
  .p-case__illust--left {
    top: 27px;
    left: -12px;
    width: 104px;
  }

  .p-case__illust--right {
    right: -12px;
    bottom: 0px;

    width: 102.27px;
  }
}

/* ---- p-faq ---- */
.p-faq {
  position: relative;
  padding: 40px 0 45px;
  background: var(--c-cream);
}

@media (min-width: 768px) {
  .p-faq {
    padding: 50px 0 60px;
  }
}

.p-faq::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 92vw, 600px);
  height: 100px;
  background: url(../images/faq_bg_sp.png) no-repeat center / contain;
}

@media (min-width: 768px) {
  .p-faq::before {
    position: absolute;
    content: "";
    top: 60px;
    left: 50%;
    transform: translateX(-50%); /* 自身の幅の半分だけ左に戻して中央寄せ */
    width: 93%;
    height: 110px;
    background: url(../images/faq_bg.png) no-repeat center / contain;
  }
}

.p-faq__intro {
  position: relative;
  text-align: center;
  margin-bottom: 21px;
  margin-inline: auto;
  max-width: 400px;
}

@media (min-width: 768px) {
  .p-faq__intro {
    margin-bottom: 31px;
    max-width: 600px;
  }
}

.p-faq__intro .c-heading__eyebrow {
  width: 87.86px;
  margin-bottom: -3px;
}

@media (min-width: 768px) {
  .p-faq__intro .c-heading__eyebrow {
    width: 132.68px;
    /* margin-bottom: 7px; */
  }
}

.p-faq__intro .c-heading__text {
  font-size: 28px;
}

@media (min-width: 768px) {
  .p-faq__intro .c-heading__text {
    font-size: 40px;
  }
}

.p-faq__list {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.p-faq__item {
  background: #eaf8e7;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px 15px 6px 15px;
}

@media (min-width: 768px) {
  .p-faq__item {
    padding: 20px 30px 12px 22px;
  }
}

.p-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 15px;
}

@media (min-width: 768px) {
  .p-faq__question {
    margin-bottom: 10px;
  }
}

.p-faq__q-mark {
  color: var(--c-green);
  font-family: "Roboto", sans-serif;
  font-family: var(--font-heading);
  font-size: 18px;
  flex-shrink: 0;
  align-self: flex-start;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .p-faq__q-mark {
    font-size: 21px;
  }
}

.p-faq__q-text {
  flex: 1;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .p-faq__q-text {
    font-size: 18px;
  }
}

.p-faq__toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.p-faq__toggle::before,
.p-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-green);
  transform: translate(-50%, -50%);
}

.p-faq__toggle::before {
  width: 15px;
  height: 2px;
}

@media (min-width: 768px) {
  .p-faq__toggle::before {
    width: 20px;
  }
}

.p-faq__toggle::after {
  width: 2px;
  height: 15px;
  transition: transform 0.2s ease;
}

@media (min-width: 768px) {
  .p-faq__toggle::after {
    height: 20px;
  }
}

.p-faq__item[open] .p-faq__toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.p-faq__answer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  font-size: 14px;
  color: var(--c-text);
}

.p-faq__answer-note {
  font-size: 12px;
}

.p-faq__a-mark {
  color: var(--c-orange);
  font-family: var(--font-heading);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  align-self: flex-start;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .p-faq__a-mark {
    font-size: 21px;
  }
}

.p-faq__illust {
  position: absolute;
  z-index: 3;

  height: auto;
}

.p-faq__illust--left {
  top: 30px;
  left: 4px;
  width: 61px;
}

.p-faq__illust--right {
  right: -25px;
  bottom: -40px;
  width: 114px;
  z-index: 1;
}

@media (min-width: 768px) {
  .p-faq__illust--left {
    top: 34px;
    left: 76px;
    width: 80.63px;
  }

  .p-faq__illust--right {
    right: 5px;
    bottom: -48px;
    width: 166px;
  }
}

/* ---- p-requirements ---- */
.p-requirements {
  padding: 40px 0;
  background: #eaf8e7;
}

@media (min-width: 768px) {
  .p-requirements {
    padding: 46px 0 64px;
  }
}

.p-requirements__intro {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
  margin-inline: auto;
  max-width: 400px;
}

@media (min-width: 768px) {
  .p-requirements__intro {
    margin-bottom: 21px;
    max-width: 600px;
  }
}

.p-requirements__intro .c-heading__eyebrow {
  width: 107.63px;
  margin-bottom: -6px;
}

@media (min-width: 768px) {
  .p-requirements__intro .c-heading__eyebrow {
    width: 158.89px;
    /* margin-bottom: 2.39px; */
  }
}

.p-requirements__intro .c-heading__text {
  font-size: 28px;
}

@media (min-width: 768px) {
  .p-requirements__intro .c-heading__text {
    font-size: 40px;
  }
}

.p-requirements__figure {
  position: absolute;
  top: -10px;
  left: 12px;
  width: 85.88px;
  object-fit: contain;
}

.p-requirements__illust {
  position: absolute;
  top: 17px;
  right: 44px;
  width: 50px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .p-requirements__figure {
    top: 10px;
    left: 83px;
    width: 110px;
  }

  .p-requirements__illust {
    top: 48px;
    right: 122px;
    width: 64px;
  }
}

.p-requirements__body {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--c-white);
  border-radius: 16px;
  padding: 8px 22px;
}

@media (min-width: 768px) {
  .p-requirements__body {
    padding: 30px 59px;
  }
}

.p-requirements__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: center;
  padding: 16px 0 9px;
  /* border-bottom: 2.5px dotted var(--c-border); */
}

.p-requirements__row:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .p-requirements__row {
    grid-template-columns: 220px 1fr;
    gap: 20px;
    padding: 38px 0 28px;
  }
}

.p-requirements__term {
  font-weight: 700;
  font-size: 13px;
}

@media (min-width: 768px) {
  .p-requirements__term {
    font-size: 15px;
  }
}

.p-requirements__desc {
  font-size: 13px;
  color: var(--c-text);
  font-weight: 500;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .p-requirements__desc {
    font-size: 15px;
  }
}

.custom-dot-line {
  width: 100%;

  /* --------------------------------------------------
   1. ドットの「高さ（大きさ）」を設定
  -------------------------------------------------- */
  height: 8px; /* ← 【ドットの直径】ここを変更 */

  /* --------------------------------------------------
   2. ドットの色と真円のくっきり感を設定
  -------------------------------------------------- */
  background-image: radial-gradient(circle, #c0c0c0 15%, transparent 10%);
  /* ※ 40% の部分を大きくするとドットが太くなり、小さくすると細くなります */

  /* --------------------------------------------------
   3. ドットの「間隔（ピッチ）」を設定
  -------------------------------------------------- */
  background-size: 9px 14px; /* ← 【横の間隔】 【高さ】 */
  /* [1番目の値 (20px)]: ドットの中心から次のドットまでの距離（間隔）
     [2番目の値 (8px)] : 上の height と同じ値を指定 */

  background-repeat: repeat-x;
}

/* ---- p-closing ---- */
.p-closing {
  position: relative;
  overflow: hidden;
}

.p-closing__cta {
  position: absolute;
  top: 46%;
  left: 50%;
  /* width: 300px;
  margin-top: 24px; */
  margin-inline: auto;
  transform: translateX(-50%);

  /* --------------------------------------------------
   幅の可変指定（最小280px 〜 画面幅の80% 〜 最大430px）
   ※ 375px × 80% ＝ ちょうど 300px になります
  -------------------------------------------------- */
  width: clamp(280px, 80vw, 400px);

  /* --------------------------------------------------
    高さを clamp で直接可変指定する場合（保険として設定）
      最小 46.6px 〜 画面幅375pxのとき 50px 〜 最大 71.6px
  -------------------------------------------------- */
  height: clamp(46.6px, 13.33vw, 71.6px);

  /* 上余白も画面幅に合わせて可変（最小16px 〜 最大24px） */
  margin-top: clamp(16px, 4.2vw, 24px);
}

@media (min-width: 768px) {
  .p-closing__cta {
    position: absolute;
    top: 60%;
    left: 39%;
    margin-bottom: 20px;
    transform: translateX(-50%);

    /* --------------------------------------------------
     1. ボタン枠の幅を可変にする
     画面幅に応じて伸縮しつつ、最小300px〜最大430pxに制限
    -------------------------------------------------- */
    width: clamp(300px, 35vw, 430px);
    /* width: 430px; */
    display: flex;
    justify-content: center;
  }
  .p-closing__cta .c-button {
    /* --------------------------------------------------
     2. フォントサイズを可変にする
     最小20px〜最大28pxの範囲で画面幅に合わせて伸縮
    -------------------------------------------------- */
    font-size: clamp(18px, 2.2vw, 28px);

    /* 3. 高さを可変指定する場合（最小53px 〜 最大76px） */
    height: clamp(53px, 5.3vw, 76px);
  }
}

.p-closing__cta .c-button {
  color: var(--c-white);
  background: var(--c-orange);
  box-shadow: 0 5px 0 #d26e09;
  padding-right: 8px;
}

.p-closing__cta .c-button:hover {
  background: var(--c-white);
  color: var(--c-orange);
}

.p-closing__cta .c-button__icon {
  background: var(--c-white);
  color: var(--c-orange);
}

.p-closing__cta .c-button:hover .c-button__icon {
  color: var(--c-white);
  background: var(--c-orange);
}

.p-closing__text {
  text-align: center;
  font-size: 14px;
}

.p-closing__wrap {
}

.p-closing__wrap .p-closing__top {
}

.p-closing__wrap .p-closing__bottom {
}

/* =========================================================
   Utility
   ========================================================= */
.u-mt-0 {
  margin-top: 0 !important;
}
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}


.has-cookie-agree .footer {
    padding-bottom: 0px;
}


.pagetop {
    display: block;
    position: absolute;
    z-index: 10;
    bottom: 30px;
    right: 50px;
}


@media only screen and (max-width: 768px) {
    .pagetop {
          bottom: 8px;
    right: 20px;
    }
}

.p-closing__img{
  margin: auto;
}