@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/*----------------------------------
    clamp関数
-----------------------------------*/
/*----------------------------------
    fz-rem関数
-----------------------------------*/
/*----------------------------------
　　    pxをremに変換する関数
-----------------------------------*/
/*----------------------------------
　　    フォントサイズをレスポンシブにするmixin (pxをremに変換)
-----------------------------------*/
/*----------------------------------
使い方
@include responsive-font-size(16px, 24px, 375px, 1366px);
-----------------------------------*/
@-webkit-keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  visibility: visible;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.fade-in-up.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 203px;
  font-size: 16px;
}

#wrapper {
  max-width: none;
}

body {
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  color: #222222;
  font-family: "Shippori Mincho B1", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

section {
  margin-block: 0px;
  padding-inline: 0px;
}

video,
img,
svg {
  width: 100%;
  height: auto;
}

picture,
img,
a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* 透過度の変化にアニメーションを適用 */
  color: inherit;
}
a:hover {
  opacity: 0.8; /* ホバー時の透過度を設定 */
}
@media screen and (min-width: 768px) {
  a:hover {
    cursor: pointer;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

.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;
}

.l-inner {
  padding-inline: 16px;
  max-width: 542px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1366px;
    padding-inline: clamp(30px, 30px + (173) * (100vw - 768px) / (1280 - 768), 203px);
  }
}

.l-header {
  z-index: 997;
  position: fixed;
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-header {
    position: sticky;
    right: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(255, 255, 255, 0.5);
  }
}

.l-header__inner {
  position: relative;
  padding-inline: 20px;
  padding-block: 14px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding-inline: 50px;
    max-width: 1366px;
    margin-inline: auto;
    display: block;
  }
}

.l-header__nav {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-header__nav-list {
  margin-left: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 20px + 0.0865384615 * (100vw - 950px), 50px);
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #222222;
}

@-webkit-keyframes hoverAnimation {
  0% {
    color: black; /* アニメーション開始時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置 */
  }
  50% {
    color: #fff; /* アニメーション中間点の文字色 */
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px); /* 少し上に移動 */
  }
  100% {
    color: #fff; /* アニメーション終了時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}

@keyframes hoverAnimation {
  0% {
    color: black; /* アニメーション開始時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置 */
  }
  50% {
    color: #fff; /* アニメーション中間点の文字色 */
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px); /* 少し上に移動 */
  }
  100% {
    color: #fff; /* アニメーション終了時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}
.l-header__menu-ja {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; /* 色の変化にアニメーションを適用 */
}

.menu-item:hover .c-header__menu-ja {
  -webkit-animation: hoverAnimation 0.6s ease forwards;
          animation: hoverAnimation 0.6s ease forwards; /* キーフレームアニメーションを適用 */
}

.l-footer {
  background-color: #222; /* フッターの背景色 */
  color: #fff; /* テキストの色 */
  padding-block: 17px 62px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-block: 21px 62px;
  }
}

.footer-inner {
  padding-inline: 20px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    padding-inline: 36px;
    max-width: 1366px;
    margin-inline: auto;
  }
}

.footer__copyright {
  text-align: center;
  padding-top: 10px;
  font-size: 0.75rem; /* コピーライトのフォントサイズ */
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-top: 0;
  }
}

.c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-button {
  border: solid 1px #fff;
  display: block;
  font-size: 1.125rem;
  width: clamp(345px, 345px + (205) * (100vw - 375px) / (1280 - 375), 550px);
  height: clamp(40px, 40px + (35) * (100vw - 375px) / (1280 - 375), 75px);
  display: grid;
  place-items: center;
  text-align: center;
}
/*----------------------------------
      <div class="p-mv-btn c-btn">
            <a class="c-button" href="#">会員登録する（無料）</a>
          </div>
-----------------------------------*/
/*----------------------------------
    main-fv
-----------------------------------*/
.lp-main-fv {
  padding-top: 100px;
  position: relative;
  width: 100%;
  height: clamp(804px, 804px + (258) * (100vw - 375px) / (768 - 375), 1062px);
}
@media screen and (min-width: 768px) {
  .lp-main-fv {
    height: 1062px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-main-fv {
    height: 804px;
  }
}

.lp-main-fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.lp-main-fv-bg picture {
  width: 100%;
  height: 100%;
  display: block;
}
.lp-main-fv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-main-fv-inner {
  position: relative;
  height: 100%;
  padding-inline: 10px;
  margin-inline: auto;
  width: clamp(355px, 355px + (155) * (100vw - 375px) / (768 - 375), 510px);
}
@media screen and (min-width: 768px) {
  .lp-main-fv-inner {
    width: 698px;
    max-width: 1280px;
    padding-inline: clamp(35px, 35px + (256) * (100vw - 768px) / (1280 - 768), 291px);
  }
}

.lp-main-fv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% - 50px));
          transform: translate(-50%, calc(-50% - 50px));
  width: 100%;
  max-width: 510px;
}
@media screen and (min-width: 768px) {
  .lp-main-fv-title {
    max-width: 698px;
  }
}
.lp-main-fv-title h1 {
  text-align: center;
}
.lp-main-fv-title h1 picture {
  display: inline-block;
}

/*----------------------------------
    cta
-----------------------------------*/
.lp-cta {
  background-color: #f4f9fc;
}

.lp-cta-inner {
  padding-block: 40px;
  padding-inline: 25px;
  max-width: 560px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-cta-inner {
    max-width: 1280px;
    padding-inline: clamp(94px, 94px + (276) * (100vw - 768px) / (1280 - 768), 370px);
  }
}

.lp-cta-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .lp-cta-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.lp-cta-title-text {
  color: #1a4b7c;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border: 1px solid #1a4b7c;
  line-height: 1.2;
  padding-inline: 7px;
}

.lp-cta-title-date {
  color: #1a4b7c;
  text-align: center;
  font-family: "Shippori Mincho B1", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.lp-cta-contets {
  padding-top: 15px;
}

.lp-cta-contets-inner {
  padding-block: 20px 30px;
  padding-inline: 20px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.lp-cta-contets-label {
  padding-inline: 15px;
  padding-block: 5px;
  color: #fff;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #ab8d52;
}

.lp-cta-contets-text {
  margin-inline: auto;
  text-align: center;
}
.lp-cta-contets-text p {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(0, rgba(171, 141, 82, 0.5)));
  background: linear-gradient(transparent 90%, rgba(171, 141, 82, 0.5) 0);
}

.lp-cta-contets-price {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-inline: 8px;
}

.lp-cta-contets-price-plus {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: 5px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.lp-cta-attention {
  padding-top: 15px;
}
.lp-cta-attention p {
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*----------------------------------
    merit
-----------------------------------*/
.lp-merit {
  background-color: #fff;
}
.lp-merit-inner {
  padding-block: 60px;
  padding-inline: 25px;
  max-width: 450px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-merit-inner {
    padding-inline: clamp(60px, 60px + (40) * (100vw - 768px) / (1280 - 768), 100px);
    max-width: 1280px;
  }
}
.lp-merit-title {
  color: #222;
  text-align: center;
  font-family: "Shippori Mincho B1";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .lp-merit-title {
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
  }
}
.lp-merit-items {
  padding-top: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .lp-merit-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.lp-merit-item {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .lp-merit-item {
    width: calc((100% - 40px) / 3);
  }
}
.lp-merit-item-img {
  width: 230px;
}
@media screen and (min-width: 768px) {
  .lp-merit-item-img {
    width: clamp(170px, 170px + (80) * (100vw - 768px) / (1280 - 768), 250px);
  }
}
.lp-merit-item-img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-merit-item-text {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}
.lp-merit-item-text span {
  padding-top: 5px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

/*----------------------------------
    wave
-----------------------------------*/
.lp-wave {
  position: relative;
  height: 60px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.lp-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.lp-wave-association-bottom-wrap {
  background-color: #f4f9fc;
  position: relative;
}

.lp-wave-association-bottom {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  position: relative;
  z-index: 5;
}

/*----------------------------------
    association
-----------------------------------*/
.lp-association {
  background-color: #f4f9fc;
  padding-block: 0px 0px;
}

.lp-association-inner {
  padding-inline: 25px;
  max-width: 560px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-association-inner {
    padding-inline: 60px;
    max-width: none;
  }
}
@media screen and (min-width: 1280px) {
  .lp-association-inner {
    padding-inline: 0px;
    max-width: 1700px;
  }
}

.lp-association-title {
  padding-top: 33px;
  color: #1a4b7c;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .lp-association-title {
    padding-top: 65px;
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
  }
}

.lp-association-contents {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.lp-association-contents-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
}
@media screen and (min-width: 1280px) {
  .lp-association-contents-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 1280px) {
  .lp-association-contents-item-first {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 100px;
  }
}

@media screen and (min-width: 1280px) {
  .lp-association-contents-item-second {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 100px;
  }
}

.lp-association-contents-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.lp-association-contents-title {
  padding-inline: 10px;
  padding-block: 0px 14px;
  border-bottom: 1px solid #1a4b7c;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lp-association-contents-title {
    padding-inline: 25px;
  }
}
.lp-association-contents-title h3 {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}
@media screen and (min-width: 1280px) {
  .lp-association-contents-item-first .lp-association-contents-title {
    padding-left: 25px;
  }
}

@media screen and (min-width: 1280px) {
  .lp-association-contents-item-second .lp-association-contents-title {
    padding-inline: 35px 25px;
  }
}

.lp-association-contents-text {
  padding-inline: 10px;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .lp-association-contents-text {
    padding-inline: 25px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-association-contents-text {
    padding-inline: 0px;
  }
}
.lp-association-contents-text p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 150% */
}
.lp-association-contents-text p + p {
  padding-top: 10px;
}

@media screen and (min-width: 1280px) {
  .lp-association-contents-item-first .lp-association-contents-text {
    padding-inline: 25px 36px;
  }
}

@media screen and (min-width: 1280px) {
  .lp-association-contents-item-second .lp-association-contents-text {
    padding-inline: 40px 25px;
  }
}

.lp-association-contents-img-wrap {
  margin-inline: -25px;
}
@media screen and (min-width: 768px) {
  .lp-association-contents-img-wrap {
    margin-inline: 0px;
    max-width: 635px;
  }
}

/*----------------------------------
    /association
-----------------------------------*/
/*----------------------------------
    day
-----------------------------------*/
/* .lp-day {
  position: relative;
  background: url("../img/plan_bg_sp.webp") no-repeat center bottom fixed;
  background-size: 100% auto;
  z-index: 0;
  scroll-padding-top: 90px;
}
@media screen and (min-width: 768px) {
  .lp-day {
    background: url("../img/plan_bg_pc.webp") no-repeat center bottom fixed;
    scroll-padding-top: 72px;
  }
} */
/* .lp-day {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  z-index: 0;
  scroll-padding-top: 90px;
}
.lp-day .background-fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/plan_bg_sp.webp") no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .lp-day .background-fixed {
    background: url("../img/plan_bg_pc.webp") no-repeat center bottom;
    scroll-padding-top: 72px;
    background-attachment: fixed;
    background-size: cover;
  }
}
.lp-day-bg {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("../img/momiji.webp");
  background-size: 50%;
  background-position: right 0 top 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (min-width: 768px) {
  .lp-day-bg {
    background-size: 35%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-bg {
    background-image: url("../img/momiji.webp"), url("../img/momiji2.webp");
    background-position: right 0 top 10%, left 0 top 40%;
    background-size: 25%, 25%;
  }
} */
.lp-day {
  position: relative;
  background: url("../img/plan_bg_sp.webp") no-repeat center bottom fixed;
  background-size: 100% auto;
  z-index: 0;
  scroll-padding-top: 90px;
}
@media screen and (min-width: 768px) {
  .lp-day {
    background: url("../img/plan_bg_pc.webp") no-repeat center bottom fixed;
    scroll-padding-top: 72px;
  }
}
.lp-day .bg-image-clip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 230px;
  -webkit-clip-path: inset(0);
          clip-path: inset(0); /* 切り抜き */
  z-index: -1;
}
.lp-day .bg-image-fixed {
  position: fixed; /* 背景を固定 */
  top: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.lp-day .bg-image-fixed {
  background-image: url("../img/plan_bg_sp.webp");
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .lp-day .bg-image-fixed {
    background-image: url("../img/plan_bg_pc.webp");
  }
}
.lp-day-bg {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 230px;
  -webkit-clip-path: inset(0);
          clip-path: inset(0); /* 切り抜き */
  z-index: 0;
}
.lp-day-bg-fixed {
  position: fixed; /* 背景を固定 */
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/momiji.webp");
  background-size: 50%;
  background-position: right 0 top 40%;
  background-repeat: no-repeat;
/*   background-attachment: fixed; */
}
@media screen and (min-width: 768px) {
  .lp-day-bg-fixed {
    background-size: 35%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-bg-fixed {
    background-image: url("../img/momiji.webp"), url("../img/momiji2.webp");
    background-position: right 0 top 10%, left 0 top 40%;
    background-size: 25%, 25%;
  }
}
/**/

.lp-day-inner {
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  padding-inline: 25px;
  max-width: 560px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-day-inner {
    padding-top: 82px;
    padding-inline: clamp(40px, 40px + (60) * (100vw - 768px) / (1280 - 768), 100px);
    max-width: 1280px;
  }
}
.lp-day-title h2 {
  color: #1a4b7c;
  text-align: center;
  /* H2 */
  font-family: "Shippori Mincho B1";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .lp-day-title h2 {
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
  }
}
.lp-day-sub-title {
  margin-inline: -3px;
  padding-top: 24px;
  text-align: center;
}
.lp-day-sub-title p {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.56; /* 150% */
}
@media screen and (min-width: 768px) {
  .lp-day-sub-title p {
    font-size: clamp(1.125rem, 0.5625rem + 1.171875vw, 1.5rem);
    line-height: 1.3;
  }
}
.lp-day-sub-title span {
  border: 1px solid #8ed0ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
  padding-inline: 6px;
  padding-block: 2px;
}
@media screen and (min-width: 768px) {
  .lp-day-sub-title span {
    padding-block: 0px;
  }
}
.lp-day-sub-title-schedule {
  margin-top: 27px;
  background: #d6ecfb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 6px 20px;
  max-width: 683px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-day-sub-title-schedule {
    padding: 0px 20px;
  }
}
.lp-day-sub-title-schedule p {
  color: #1a4b7c;
  text-align: center;
  /* H3 */
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5; /* 150% */
}
@media screen and (min-width: 768px) {
  .lp-day-sub-title-schedule p {
    font-size: clamp(1.125rem, 0.5625rem + 1.171875vw, 1.5rem);
  }
}
.lp-day-contents-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-wrapper {
    margin-inline: auto;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-wrapper {
    max-width: none;
    margin-inline: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    padding-top: 31px;
  }
}
.lp-day-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.lp-day-contents#day01 {
  padding-top: 120px;
  margin-top: -90px;
}
@media screen and (min-width: 768px) {
  .lp-day-contents#day01 {
    padding-top: 102px;
    margin-top: -72px;
  }
}
.lp-day-contents#day02 {
  padding-top: 90px;
  margin-top: -90px;
}
@media screen and (min-width: 768px) {
  .lp-day-contents#day02 {
    padding-top: 122px;
    margin-top: -72px;
  }
}
.lp-day .lp-floating-buttons {
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  top: 0;
  left: 50%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .lp-day .lp-floating-buttons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    left: 0;
    translate: 0;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day .lp-floating-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 22px;
    translate: 0;
    left: 20px;
    width: 181px;
  }
}
.lp-day .lp-floating-buttons.is-fixed {
  position: fixed;
  z-index: 100;
}
@media screen and (min-width: 1280px) {
  .lp-day .lp-floating-buttons.is-fixed {
    left: 0px;
    translate: 0;
  }
}
.lp-day .lp-floating-buttons .lp-floating-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 153px;
  width: 100%;
  padding: 5px 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  border-radius: 10px;
  background: #1a4b7c;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .lp-day .lp-floating-buttons .lp-floating-button {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    max-width: 181px;
    min-height: 50px;
  }
}
.lp-day .lp-floating-buttons .lp-floating-button .lp-c-button {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  padding-right: 20px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .lp-day .lp-floating-buttons .lp-floating-button .lp-c-button {
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
  }
}
.lp-day .lp-floating-buttons .lp-floating-button .lp-c-button-arrow {
  width: 10px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}
@media screen and (min-width: 768px) {
  .lp-day .lp-floating-buttons .lp-floating-button .lp-c-button-arrow {
    width: 20px;
    height: 20px;
    rotate: -90deg;
    -webkit-transform: translateY(11%) translateX(41%);
            transform: translateY(11%) translateX(41%);
  }
}
.lp-day .lp-floating-buttons .lp-floating-button .lp-c-button:hover {
  background-color: #264686;
}
.lp-day .lp-floating-buttons .lp-floating-button .lp-c-button:hover .lp-c-button-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.lp-day .lp-floating-buttons .lp-floating-button .lp-c-button-arrow img {
  display: block;
}
.lp-day-space {
  width: 240px;
  min-height: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .lp-day-space {
    display: block;
    width: 181px;
  }
}
.lp-day-contents-title {
  border-top: 1px solid #1a4b7c;
  border-left: 1px solid #1a4b7c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 0px 0px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.lp-day-contents-title h3 {
  color: #1a4b7c;
  font-family: "Shippori Mincho B1";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.lp-day-contents-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-items {
    padding-top: 57px;
  }
}
.lp-day-contents-item {
  gap: 15px;
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: "time" "title " "img" "text";
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item {
    gap: 15px;
    grid-template-columns: 45px clamp(264px, 264px + (186) * (100vw - 768px) / (1280 - 768), 450px) clamp(324px, 324px + (156) * (100vw - 768px) / (1280 - 768), 480px);
    grid-template-rows: -webkit-min-content 1fr;
    grid-template-rows: min-content 1fr;
    grid-template-areas: "time title img" "time text img";
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item {
    gap: 15px;
    grid-template-columns: 45px minmax(264px, 350px) minmax(324px, 410px);
    grid-template-rows: -webkit-min-content 1fr;
    grid-template-rows: min-content 1fr;
    grid-template-areas: "time title img" "time text img";
  }
}
.lp-day .lp-day-contents-item-time {
  grid-area: time;
}
.lp-day .lp-day-contents-item-wrap {
  grid-area: title;
}
@media screen and (min-width: 768px) {
  .lp-day .lp-day-contents-item-wrap {
    min-height: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.lp-day .lp-day-contents-item-img {
  grid-area: img;
}
@media screen and (min-width: 768px) {
  .lp-day .lp-day-contents-item-img {
    max-width: 410px;
    justify-self: flex-end;
  }
}
.lp-day .lp-day-contents-item-img img {
  width: 100%;
  height: auto;
}
.lp-day .lp-day-contents-item-text {
  grid-area: text;
}
.lp-day-contents-item-time p {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.lp-day-contents-item-title p {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}
.lp-day-contents-item-note {
  padding-top: 5px;
}
.lp-day-contents-item-note p {
  color: #222;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px; /* 160% */
}
.lp-day-contents-item-img img {
  width: 100%;
  height: auto;
}
.lp-day-contents-item-text {
  position: relative;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-text {
    padding-right: clamp(0px, 0px + (25) * (100vw - 768px) / (1280 - 768), 25px);
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-text {
    padding-right: 0px;
  }
}
.lp-day-contents-item-text::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-text::before {
    bottom: 23px;
    left: 41%;
  }
}
.lp-day-contents-item-text p {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
.lp-day-contents-item-text p + p {
  padding-top: 10px;
}
.lp-day#day01 {
  background: #fff;
}
.lp-day#day02 {
  background: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .lp-day-contents-item-1 .lp-day-contents-item-img {
    margin-top: -17px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-1 .lp-day-contents-item-img {
    margin-top: -17px;
    margin-right: -25px;
  }
}
.lp-day-contents-item-1 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item-1 .lp-day-contents-item-text::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-1 .lp-day-contents-item-text::before {
    bottom: clamp(-20px, -20px + (40) * (100vw - 768px) / (1280 - 768), 20px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-1 .lp-day-contents-item-text::before {
    bottom: 23px;
    left: 41%;
  }
}

@media screen and (min-width: 768px) {
  .lp-day-contents-item-2 {
    padding-top: 20px;
  }
  .lp-day-contents-item-2 .lp-day-contents-item-img {
    margin-top: -37px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-2 {
    padding-top: 20px;
  }
  .lp-day-contents-item-2 .lp-day-contents-item-img {
    margin-top: -37px;
    margin-right: -25px;
  }
}
.lp-day-contents-item-2 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item-2 .lp-day-contents-item-text::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-2 .lp-day-contents-item-text::before {
    bottom: clamp(20px, 20px + (20) * (100vw - 768px) / (1280 - 768), 40px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-2 .lp-day-contents-item-text::before {
    bottom: 53px;
    left: 41%;
  }
}

.lp-day-contents-item-3 {
  padding-top: 8px;
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-3 {
    padding-bottom: 28px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-3 .lp-day-contents-item-img {
    margin-top: -25px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-3 .lp-day-contents-item-img {
    margin-top: -25px;
    margin-right: -25px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-3 .lp-day-contents-item-wrap {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-3 .lp-day-contents-item-time {
    margin-top: 20px;
  }
}
.lp-day-contents-item-3 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item-3 .lp-day-contents-item-text::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-3 .lp-day-contents-item-text::before {
    bottom: clamp(10px, 10px + (30) * (100vw - 768px) / (1280 - 768), 40px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-3 .lp-day-contents-item-text::before {
    bottom: 63px;
    left: 41%;
  }
}

.lp-day-contents-item-4 {
  padding-top: 3px;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-4 .lp-day-contents-item-img {
    margin-top: -5px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-4 .lp-day-contents-item-img {
    margin-top: -19px;
    margin-right: -25px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-4 .lp-day-contents-item-wrap {
    margin-top: 0px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-4 .lp-day-contents-item-time {
    margin-top: 0px;
  }
}
.lp-day-contents-item-4 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item-4 .lp-day-contents-item-text::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-4 .lp-day-contents-item-text::before {
    bottom: clamp(-30px, -30px + (70) * (100vw - 768px) / (1280 - 768), 40px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-4 .lp-day-contents-item-text::before {
    bottom: 21px;
    left: 41%;
  }
}

.lp-day-contents-item-5 {
  padding-top: 3px;
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-5 {
    padding-bottom: 28px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-5 .lp-day-contents-item-img {
    margin-top: -5px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-5 .lp-day-contents-item-img {
    margin-top: -19px;
    margin-right: -25px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-5 .lp-day-contents-item-wrap {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-5 .lp-day-contents-item-time {
    margin-top: 20px;
  }
}
.lp-day-contents-item-5 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item-5 .lp-day-contents-item-text::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-5 .lp-day-contents-item-text::before {
    bottom: clamp(-10px, -10px + (60) * (100vw - 768px) / (1280 - 768), 50px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-5 .lp-day-contents-item-text::before {
    bottom: 41px;
    left: 41%;
  }
}

.lp-day-contents-item-6 {
  padding-top: 3px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-6 .lp-day-contents-item-img {
    margin-top: -5px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-6 .lp-day-contents-item-img {
    margin-top: -14px;
    margin-right: -25px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-6 .lp-day-contents-item-wrap {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-6 .lp-day-contents-item-time {
    margin-top: 20px;
  }
}
.lp-day-contents-item-6 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item-6 .lp-day-contents-item-text::before {
  content: "";
  display: none;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item-6 .lp-day-contents-item-text::before {
    bottom: clamp(-10px, -10px + (60) * (100vw - 768px) / (1280 - 768), 50px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item-6 .lp-day-contents-item-text::before {
    bottom: 41px;
    left: 41%;
  }
}

.lp-day-contents-second {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-second {
    padding-top: 50px;
  }
}

.lp-day-contents-item2-1 {
  padding-top: 3px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-1 .lp-day-contents-item-img {
    margin-top: -5px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-1 .lp-day-contents-item-img {
    margin-top: -14px;
    margin-right: -25px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-1 .lp-day-contents-item-wrap {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-1 .lp-day-contents-item-time {
    margin-top: 20px;
  }
}
.lp-day-contents-item2-1 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item2-1 .lp-day-contents-item-text::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-1 .lp-day-contents-item-text::before {
    bottom: clamp(-20px, -20px + (100) * (100vw - 768px) / (1280 - 768), 80px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-1 .lp-day-contents-item-text::before {
    bottom: 51px;
    left: 41%;
  }
}

.lp-day-contents-item2-2 {
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-2 {
    padding-top: 20px;
  }
  .lp-day-contents-item2-2 .lp-day-contents-item-img {
    margin-top: -37px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-2 {
    padding-top: 20px;
  }
  .lp-day-contents-item2-2 .lp-day-contents-item-img {
    margin-top: -37px;
    margin-right: -25px;
  }
}
.lp-day-contents-item2-2 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item2-2 .lp-day-contents-item-text::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-2 .lp-day-contents-item-text::before {
    bottom: clamp(-20px, -20px + (60) * (100vw - 768px) / (1280 - 768), 40px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-2 .lp-day-contents-item-text::before {
    bottom: 38px;
    left: 41%;
  }
}

.lp-day-contents-item2-3 {
  padding-top: 8px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-3 {
    padding-top: 0px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-3 .lp-day-contents-item-img {
    margin-top: -25px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-3 .lp-day-contents-item-img {
    margin-top: -25px;
    margin-right: -25px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-3 .lp-day-contents-item-wrap {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-3 .lp-day-contents-item-time {
    margin-top: 20px;
  }
}
.lp-day-contents-item2-3 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item2-3 .lp-day-contents-item-text::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-3 .lp-day-contents-item-text::before {
    bottom: clamp(-30px, -30px + (70) * (100vw - 768px) / (1280 - 768), 40px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-3 .lp-day-contents-item-text::before {
    bottom: 31px;
    left: 41%;
  }
}

.lp-day-contents-item2-4 {
  padding-top: 8px;
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-4 {
    padding-top: 0px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-4 .lp-day-contents-item-img {
    margin-top: -15px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-4 .lp-day-contents-item-img {
    margin-top: -15px;
    margin-right: -25px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-4 .lp-day-contents-item-wrap {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-4 .lp-day-contents-item-time {
    margin-top: 20px;
  }
}
.lp-day-contents-item2-4 .lp-day-contents-item-text {
  position: relative;
  z-index: 1;
}
.lp-day-contents-item2-4 .lp-day-contents-item-text::before {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-4 .lp-day-contents-item-text::before {
    bottom: clamp(-30px, -30px + (70) * (100vw - 768px) / (1280 - 768), 40px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-4 .lp-day-contents-item-text::before {
    bottom: 49px;
    left: 41%;
  }
}

.lp-day-contents-item2-5 {
  padding-top: 8px;
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-5 {
    padding-top: 0px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-5 .lp-day-contents-item-img {
    margin-top: -15px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-5 .lp-day-contents-item-img {
    margin-top: -15px;
    margin-right: -25px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-5 .lp-day-contents-item-wrap {
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-5 .lp-day-contents-item-time {
    margin-top: 50px;
  }
}
.lp-day-contents-item2-5 .lp-day-contents-item-text {
  position: relative;
}
.lp-day-contents-item2-5 .lp-day-contents-item-text::before {
  content: "";
  display: none;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid #d6ecfb;
}
@media screen and (min-width: 768px) {
  .lp-day-contents-item2-5 .lp-day-contents-item-text::before {
    bottom: clamp(10px, 10px + (30) * (100vw - 768px) / (1280 - 768), 40px);
    left: 41%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-day-contents-item2-5 .lp-day-contents-item-text::before {
    bottom: 49px;
    left: 41%;
  }
}

/*----------------------------------
    swiper
-----------------------------------*/
.swiper-container {
  max-width: 768px;
}
@media screen and (min-width: 768px) {
  .swiper-container {
    max-width: 600px;
    margin-bottom: 20px;
    margin-inline: auto;
  }
}

.thumb-swiper,
.thumb-swiper-second {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .thumb-swiper,
  .thumb-swiper-second {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.thumb-swiper .swiper-slide {
  width: 210px !important;
  height: 100%;
  opacity: 1;
  cursor: pointer;
}

.thumb-swiper-second .swiper-slide {
  width: 210px !important;
  height: 100%;
  opacity: 1;
  cursor: pointer;
}

.thumb-swiper .swiper-slide,
.thumb-swiper-second .swiper-slide {
  opacity: 1 !important;
}

.thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------
    food
-----------------------------------*/
.lp-wave-food {
  margin-top: -30px;
	transform: translateY(1px);
}

.lp-food {
  padding-block: 72px 0px;
  background: #f4f9fc;
}
@media screen and (min-width: 768px) {
  .lp-food {
    padding-block: 66px 40px;
  }
}

.lp-food-title {
  margin-inline: auto;
  text-align: center;
}
.lp-food-title h2 {
  padding-top: 20px;
}

.lp-food-title-logo {
  width: 300px;
}
@media screen and (min-width: 768px) {
  .lp-food-title-logo {
    width: 384px;
  }
}

.lp-food-title-text-1 {
  color: #392b50;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.lp-food-title-text-1-and {
  color: #392b50;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.lp-food-title-text-2 {
  display: block;
  padding-top: 2px;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.lp-food-label {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ab8d52;
  max-width: 321px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-food-label {
    max-width: 389px;
  }
}
.lp-food-label p {
  /* H4_gothic */
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (min-width: 768px) {
  .lp-food-label p {
    font-size: 1.25rem;
  }
}

.lp-food-inner {
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-food-inner {
    max-width: 1420px;
    padding-inline: clamp(60px, 60px + (0) * (100vw - 768px) / (1280 - 768), 60px);
  }
}
@media screen and (min-width: 1280px) {
  .lp-food-inner {
    max-width: 1500px;
    padding-inline: clamp(30px, 30px + (70) * (100vw - 768px) / (1280 - 768), 100px);
  }
}

.lp-food-container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: clamp(375px, 375px + (125) * (100vw - 375px) / (768 - 375), 500px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-food-container {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-food-container {
    max-width: 1080px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.lp-food-text-box {
  padding-top: 42px;
}
@media screen and (min-width: 768px) {
  .lp-food-text-box {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .lp-food-text-box {
    padding-top: 0px;
  }
}

.lp-food-text-box-inner {
  padding-inline: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .lp-food-text-box-inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-food-text-box-inner {
    gap: 15px;
    padding-inline: 0px;
  }
}

.lp-food-text-box-inner-2 {
  padding-inline: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .lp-food-text-box-inner-2 {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-food-text-box-inner-2 {
    gap: 15px;
    padding-inline: 0px;
  }
}

.lp-food-text-box-title h3 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.227;
}

.lp-food-text-box-sub-title p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.lp-food-text-box-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.lp-food-text-box-description {
  margin-top: 10px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.lp-food-text-box-description-label {
  background: #d6ecfb;
  width: 100%;
  padding-inline: 10px;
}
.lp-food-text-box-description-label p {
  color: #1a4b7c;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6875;
}

.lp-food-text-box-description-label-gap {
  margin-top: 21px;
}

.lp-food-text-box-description-text {
  padding-top: 10px;
  display: inline-block;
  width: 100%;
  padding-inline: 10px;
}
.lp-food-text-box-description-text p {
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.lp-food-text-box-note {
  padding-top: 12px;
}
.lp-food-text-box-note p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
.lp-food-text-box-note p + p {
  padding-top: 16px;
}
.lp-food-text-box-note ul {
  padding-left: 0;
  list-style: none;
}
.lp-food-text-box-note li {
  font-size: 0.875rem;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  text-align: left;
  line-height: 1.6;
}
.lp-food-text-box-note li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0.8em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}

@media screen and (min-width: 1280px) {
  .lp-food-container-second {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.lp-food-img-box {
  width: clamp(375px, 375px + (125) * (100vw - 375px) / (768 - 375), 500px);
}
@media screen and (min-width: 768px) {
  .lp-food-img-box {
    width: 600px;
  }
}
@media screen and (min-width: 1280px) {
  .lp-food-img-box {
    width: calc(55.56% - 0px);
  }
}

@media screen and (min-width: 1280px) {
  .lp-food-text-box {
    width: calc(40.8% - 0px);
  }
}

.lp-food-text-box-text-2 p {
  line-height: 1.68;
}

.lp-food-container-second {
  margin-top: 73px;
}
@media screen and (min-width: 768px) {
  .lp-food-container-second {
    margin-top: 77px;
  }
}

.lp-food-text-box-note-second-pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .lp-food-text-box-note-second-pc {
    display: block;
  }
}

.lp-food-text-box-note-second-sp {
  padding-top: 18px;
  display: block;
}
@media screen and (min-width: 1280px) {
  .lp-food-text-box-note-second-sp {
    display: none;
  }
}

/*----------------------------------
    link
-----------------------------------*/
.lp-wave-link-inner {
  position: relative;
}

.lp-wave-link {
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 100%;
  z-index: 1;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

.lp-link-section {
  padding-top: 100px;
  background: url(../img/room_bg.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .lp-link-section {
    padding-top: 64px;
  }
}

@media screen and (min-width: 768px) {
  .lp-link-box-inner {
    max-width: 1300px;
    padding-inline: clamp(49px, 49px + (109) * (100vw - 768px) / (1280 - 768), 158px) clamp(10px, 10px + (25) * (100vw - 768px) / (1280 - 768), 35px);
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .lp-link-box {
    width: clamp(385px, 385px + (180) * (100vw - 768px) / (1280 - 768), 565px);
  }
}

.lp-link-box-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  padding-inline: 25px;
  max-width: 510px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-link-box-text-wrap {
    max-width: none;
    padding-inline: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 7px;
  }
}

.lp-link-box-title h2 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .lp-link-box-title h2 {
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
  }
}

.lp-link-box-text-1 p {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35; /* 135% */
}

.lp-link-box-text-2 p {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 150% */
}

.lp-link-box-button {
  margin-top: 15px;
  border-radius: 30px;
  background: #ab8d52;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 224px;
  min-height: 43px;
}
@media screen and (min-width: 768px) {
  .lp-link-box-button {
    width: clamp(224px, 224px + (36) * (100vw - 768px) / (1280 - 768), 260px);
    min-height: clamp(43px, 43px + (6) * (100vw - 768px) / (1280 - 768), 49px);
    margin-inline: auto;
  }
}

.lp-link-box-button-text {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .lp-link-box-button-text {
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  }
}

.lp-link-box-button-arrow {
  display: block;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.lp-link-box-img-box {
  position: relative;
  height: 257px;
  max-width: 410px;
  margin-inline: auto;
  margin-top: 22px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .lp-link-box-img-box {
    max-width: none;
    height: clamp(360px, 360px + (228) * (100vw - 768px) / (1280 - 768), 588px);
    margin-top: -10px;
    width: clamp(319px, 319px + (175) * (100vw - 768px) / (1280 - 768), 494px);
    max-width: none;
    margin-inline: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.lp-link-box-img {
  width: 177px;
}
@media screen and (min-width: 768px) {
  .lp-link-box-img {
    width: clamp(271px, 271px + (79) * (100vw - 768px) / (1280 - 768), 350px);
  }
}

.lp-link-box-img-1 {
  position: absolute;
  top: 73px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .lp-link-box-img-1 {
    position: relative;
    top: 0;
    left: 0;
    translate: 0 -20px;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .lp-link-box-img-1 {
    translate: 0 0px;
    margin-right: 0;
    margin-left: auto;
  }
}

.lp-link-box-img-2 {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .lp-link-box-img-2 {
    position: relative;
    top: 0;
    right: 0;
    translate: 0 -44px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1280px) {
  .lp-link-box-img-2 {
    margin-left: 0;
    margin-right: auto;
  }
}

/*----------------------------------
    offer
-----------------------------------*/
.lp-wave-offer {
  position: relative;
  -webkit-transform: translateY(-98%);
          transform: translateY(-98%);
  z-index: 0;
}

.lp-offer-section {
  padding-top: 5px;
  padding-bottom: 20px;
  margin-top: -60px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .lp-offer-section {
    margin-top: 0px;
    padding-top: 5px;
    padding-bottom: 40px;
  }
}

.lp-offer-box-inner {
  padding-inline: 25px;
  max-width: 560px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lp-offer-box-inner {
    max-width: 1283px;
    padding-inline: clamp(64px, 64px + (214) * (100vw - 768px) / (1280 - 768), 278px);
  }
}

.lp-offer-box {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}

.lp-offer-box-title h2 {
  color: #1a4b7c;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .lp-offer-box-title h2 {
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
  }
}

.lp-offer-box-text-1 p {
  color: #222222;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.lp-offer-box-text-2 p {
  color: #222222;
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
.lp-offer-box-text-2 p + p {
  margin-top: 10px;
}

.lp-offer-acf {
  margin-top: 25px;
  border-top: 1px solid #ab8d52;
  border-bottom: 1px solid #ab8d52;
  position: relative;
  padding-block: 15px;
}

.lp-offer-deco-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #ab8d52;
}
.lp-offer-deco-1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 40px;
  background: #ab8d52;
}

.lp-offer-deco-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #ab8d52;
}
.lp-offer-deco-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 40px;
  background: #ab8d52;
}

.lp-offer-acf-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-inline: 33px;
}

.lp-offer-acf-title {
  border-radius: 3px;
  background: #1a4b7c;
  padding-inline: 10px;
  padding-block: 1px;
}

.lp-offer-acf-title-text {
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.67;
}

.lp-offer-acf-title-date p {
  color: #1a4b7c;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.lp-offer-acf-contents {
  padding-inline: 26px;
  padding-block: 20px;
}

.lp-offer-acf-contents-text {
  margin-inline: auto;
  text-align: center;
}
.lp-offer-acf-contents-text p {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(0, rgba(171, 141, 82, 0.5)));
  background: linear-gradient(transparent 90%, rgba(171, 141, 82, 0.5) 0);
}
@media screen and (min-width: 1280px) {
  .lp-offer-acf-contents-text p {
    font-size: 1.5rem;
  }
}

.lp-offer-acf-contents-price {
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-inline: 8px;
}

.lp-offer-acf-contents-price-plus {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: 5px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.lp-offer-acf-attention {
  padding-inline: 20px;
}
.lp-offer-acf-attention p {
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.lp-offer-attention-box {
  padding-top: 25px;
}
@media screen and (min-width: 768px) {
  .lp-offer-attention-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.lp-offer-attention-box ul {
  padding-left: 0;
  list-style: none;
}
.lp-offer-attention-box li {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  position: relative;
}
.lp-offer-attention-box li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0.8em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: block;
  }
}

.u-fz-14 {
  font-size: 0.875rem;
}

.u-fz-36 {
  font-size: 2.25rem;
}

.u-color-white {
  color: #fff;
}

.u-bg-white {
  background-color: #fff;
}

.u-dib {
  display: inline-block;
}