@charset "UTF-8";

/* ----------------------------------------
reset
---------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
dl,
dt,
dd,
ul,
ol,
li {
  font-size: 100%;
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
  padding: 0;
}
ul,
ol,
li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* ----------------------------------------
 base
---------------------------------------- */
:root {
  --color-text: #47617d;
  --color-bg: #fbf4e6;
  --color-bg-gray: #94a7ba;
  --color-primary: #e07a5f;
  --color-white: #fff;
  --color-accent: #eeac2e;
  --width-inner: 1200px; /* PC幅の基準 */
}
html {
  font-size: 4.2667vw;
}
@media (min-width: 751px) {
  html {
    font-size: 1.3333vw;
  }
}
@media (min-width: 1201px) {
  html {
    font-size: 16px;
  }
}
body {
  color: var(--color-text);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.7;
  margin: auto;
  width: 100%;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  transition: filter 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    filter: brightness(1.25);
  }
}
/* ----------------------------------------
utility
---------------------------------------- */
/* PCでのみ表示 */
@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
/* SPでのみ表示 */
@media only screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}
/* ----------------------------------------
animation

- .a-shimmer
- .js-hide-on-footer

▼スクロール連動（.js-animate付与で発火）
- .a-fadein
- .a-fadein-up
- .a-balloon
- .a-slide-left
- .a-slide-right

---------------------------------------- */
/*----- キラッ -----*/
.a-shimmer {
  position: relative;
  overflow: hidden;
}
.a-shimmer::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -10em;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: shimmer 3.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes shimmer {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/*----- フッター表示時に非表示にする -----*/
.js-hide-on-footer {
  transition: opacity 0.3s ease;
}
.js-hide-on-footer.is-hidden {
  opacity: 0;
  pointer-events: none;
}
/*----- フェードイン -----*/
.a-fadein {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.a-fadein.is-active {
  opacity: 1;
}
/*----- フェードインアップ -----*/
.a-fadein-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.a-fadein-up.is-active {
  opacity: 1;
  transform: translateY(0);
}
/* 遅延用（任意） */
[data-delay="1"] {
  transition-delay: 0.3s;
}
[data-delay="2"] {
  transition-delay: 0.45s;
}
[data-delay="3"] {
  transition-delay: 0.6s;
}
/*----- バルーン -----*/
.a-balloon {
  opacity: 0;
}
.a-balloon.is-active {
  animation: balloon 0.5s ease-out 0s 1 forwards;
}
@keyframes balloon {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/*----- 左からスライドイン -----*/
.a-slide-left {
  opacity: 0;
  transform: translateX(-40px);
}
.a-slide-left.is-active {
  animation: slideLeft 0.6s ease-out 0s 1 forwards;
}
@keyframes slideLeft {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*----- 右からスライドイン -----*/
.a-slide-right {
  opacity: 0;
  transform: translateX(40px);
}
.a-slide-right.is-active {
  animation: slideRight 0.6s ease-out 0s 1 forwards;
}
@keyframes slideRight {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ----------------------------------------
Layout
---------------------------------------- */
.main__wrapper {
  position: relative;
  background: url(../img/bg_stationery_pat.webp);
}
/* インナー幅制限と中央寄せ */
.section__inner,
.footer__inner {
  width: 100%;
  margin: 0 auto;
  max-width: var(--width-inner);
  position: relative;
  height: inherit;
}
/* ----------------------------------------
固定CTA
---------------------------------------- */
@media only screen and (min-width: 751px) {
  .fixed-btn {
    position: fixed;
    z-index: 99;
    top: 10%;
    right: -1px;
    overflow: hidden;
    width: 5rem;
    height: auto;
    border-radius: 1rem 0 0 1rem;
  }
  .fixed-btn img {
    width: inherit;
  }
}
@media (max-width: 750px) {
  .fixed-btn {
    position: fixed;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    width: 21.4375rem;
    border-radius: 999px;
  }
}
/* ----------------------------------------
fv
---------------------------------------- */
@media only screen and (min-width: 751px) {
  .fv {
    background: url(../img/fv_bg.webp) no-repeat 50% 0%;
    background-size: 125rem auto;
    height: 61.875rem;
  }
  .fv__title {
    writing-mode: vertical-rl;
    font-size: 2.5rem;
    position: absolute;
    left: 29.5rem;
    top: 7.75rem;
    text-align: center;
  }
  .fv__title span {
    color: var(--color-accent);
  }
  .fv__subtitle {
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 39.3125rem;
    text-align: center;
    line-height: 2;
  }
  .fv__cta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4.438rem;
    width: 38.125rem;
    border-radius: 999px;
  }
  .fv__logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 13.25rem;
  }
}
@media (max-width: 750px) {
  .fv {
    background: url(../img/fv_bg_sp.webp) no-repeat 50% 0%;
    background-size: 23.4375rem auto;
    height: 37.1875rem;
  }
  .fv__title {
    writing-mode: vertical-rl;
    font-size: 1.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2.90625rem;
    text-align: center;
  }
  .fv__title span {
    color: var(--color-accent);
  }
  .fv__subtitle {
    font-size: 1rem;
    position: absolute;
    left: 1rem;
    top: 24.90625rem;
    line-height: 2;
  }
  .fv__cta {
    display: none;
  }
  .fv__logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 4.5rem;
    height: auto;
  }
}
/* ----------------------------------------
intro
---------------------------------------- */
@media only screen and (min-width: 751px) {
  .intro {
    background: url(../img/intro_bg.webp) no-repeat 50% 0%;
    background-size: 125rem auto;
    height: 56.625rem;
  }
  .intro__title {
    font-size: 2.5rem;
    font-weight: 900;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--color-white);
    top: 3.875rem;
  }
  .intro__title span {
    margin: 0 0.6875rem;
  }
  .intro__issue01 {
    font-size: 1.25rem;
    position: absolute;
    left: 8.375rem;
    top: 17.25rem;
    width: 13.75rem;
    text-align: center;
  }
  .intro__issue02 {
    font-size: 1.25rem;
    position: absolute;
    left: 3.9375rem;
    top: 38.375rem;
    width: 15.0625rem;
    text-align: center;
  }
  .intro__issue03 {
    font-size: 1.25rem;
    position: absolute;
    right: 4.625rem;
    top: 29.9375rem;
    width: 15rem;
    text-align: center;
  }
  .intro__issue01 span,
  .intro__issue02 span,
  .intro__issue03 span {
    color: var(--color-primary);
  }
}
@media (max-width: 750px) {
  .intro {
    background: url(../img/intro_bg_sp.webp) no-repeat 50% 0%;
    background-size: 23.4375rem auto;
    height: 36.34375rem;
  }
  .intro__title {
    font-size: 1.25rem;
    font-weight: 900;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--color-white);
    top: 0.3125rem;
  }
  .intro__title span {
    margin: 0 0.34375rem;
  }
  .intro__issue01,
  .intro__issue02,
  .intro__issue03 {
    font-size: 0.875rem;
    position: absolute;
    text-align: center;
    line-height: 1.5;
  }
  .intro__issue01 {
    left: 1.15625rem;
    top: 7.84375rem;
    width: 9.6875rem;
  }
  .intro__issue02 {
    left: 0.78125rem;
    top: 24.40625rem;
    width: 10.625rem;
  }
  .intro__issue03 {
    right: 0.71875rem;
    top: 28.625rem;
    width: 10.625rem;
  }
  .intro__issue01 span,
  .intro__issue02 span,
  .intro__issue03 span {
    color: var(--color-primary);
  }
}
/* ----------------------------------------
solution
---------------------------------------- */
@media only screen and (min-width: 751px) {
  .solution {
    background: url(../img/solution_bg.webp) no-repeat 50% 0%;
    background-size: 125rem auto;
    height: 24.9375rem;
  }
  .solution__title {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 5.3125rem;
    width: 60.5rem;
  }
  .solution__title img {
    width: inherit;
  }
  .solution__subtitle {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 13.875rem;
    width: 60.375rem;
    margin: auto;
  }
  .solution__subtitle img {
    width: inherit;
  }
}
@media (max-width: 750px) {
  .solution {
    background: url(../img/solution_bg_sp.webp) no-repeat 50% 0%;
    background-size: 23.4375rem auto;
    height: 16.9375rem;
  }
  .solution__title {
    position: absolute;
    left: 0;
    right: 0;
    top: 2.25rem;
    width: 12.281rem;
    margin: auto;
  }
  .solution__subtitle {
    position: absolute;
    left: 0;
    right: 0;
    top: 11.3125rem;
    width: 22.188rem;
    margin: auto;
  }
}
/* ----------------------------------------
service
---------------------------------------- */
.service {
  position: relative;
}
@media only screen and (min-width: 751px) {
  .service__title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 10.25rem;
    font-size: 2.5rem;
    font-weight: 900;
    z-index: 1;
  }
  .service__title > span {
    color: var(--color-accent);
    padding-left: 0.8125rem;
  }
  .service__title span span {
    font-size: 1.5em;
  }
  .service01 {
    background: url(../img/service01_bg.webp) no-repeat 50% 0%;
    background-size: 125rem auto;
    height: 45.0625rem;
  }
  .service01__heading {
    position: absolute;
    left: 8.75rem;
    top: 22.25rem;
    text-align: center;
    width: 29.375rem;
    font-size: 1.75rem;
    color: var(--color-white);
  }
  .service01__text {
    position: absolute;
    left: 8.5rem;
    top: 27.625rem;
    width: 24.375rem;
  }
  .service01__point {
    position: absolute;
    right: 4.0625rem;
    top: 23.25rem;
    font-size: 2rem;
    color: var(--color-accent);
  }
  .service02 {
    background: url(../img/service02_bg.webp) no-repeat 50% 0%;
    background-size: 125rem auto;
    height: 25.5rem;
  }
  .service02__heading {
    position: absolute;
    right: 5.1875rem;
    top: 3.6875rem;
    text-align: center;
    width: 29.375rem;
    font-size: 1.75rem;
    color: var(--color-white);
  }
  .service02__text {
    position: absolute;
    right: 8.125rem;
    top: 9.4375rem;
    width: 24.25rem;
  }
  .service02__point {
    position: absolute;
    left: 4.3125rem;
    top: 2.625rem;
    font-size: 2rem;
    color: var(--color-accent);
  }
  .service03 {
    background: url(../img/service03_bg.webp) no-repeat 50% 0%;
    background-size: 125rem auto;
    height: 39.875rem;
  }
  .service03__heading {
    position: absolute;
    left: 7.9375rem;
    top: 4.4375rem;
    text-align: center;
    width: 29.375rem;
    font-size: 1.75rem;
    color: var(--color-white);
  }
  .service03__text {
    position: absolute;
    left: 8.5rem;
    top: 10.125rem;
    width: 24.375rem;
  }
  .service03__point {
    position: absolute;
    right: 5.75rem;
    top: 2.75rem;
    font-size: 2rem;
    color: var(--color-accent);
  }
}
@media (max-width: 750px) {
  .service__title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 5.59375rem;
    font-size: 1.25rem;
    font-weight: 900;
    z-index: 1;
  }
  .service__title > span {
    color: var(--color-accent);
    padding-left: 0.40625rem;
  }
  .service__title span span {
    font-size: 1.5em;
  }
  .service01 {
    background: url(../img/service01_bg_sp.webp) no-repeat 50% 0%;
    background-size: 23.4375rem auto;
    height: 42.53125rem;
  }
  .service01__heading {
    position: absolute;
    left: 5.9375rem;
    top: 10.71875rem;
    text-align: center;
    width: 14.6875rem;
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--color-white);
  }
  .service01__text {
    font-size: 0.875rem;
    position: absolute;
    left: 2.34375rem;
    top: 15rem;
    width: 17.1875rem;
  }
  .service01__point {
    position: absolute;
    left: 1.53125rem;
    top: 30.71875rem;
    font-size: 1.1875rem;
    color: var(--color-accent);
  }
  .service02 {
    background: url(../img/service02_bg_sp.webp) no-repeat 50% 0%;
    background-size: 23.4375rem auto;
    height: 31.9375rem;
  }
  .service02__heading {
    position: absolute;
    right: 2.59375rem;
    top: 0.125rem;
    text-align: center;
    width: 16.063rem;
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--color-white);
  }
  .service02__text {
    font-size: 0.875rem;
    position: absolute;
    left: 3.90625rem;
    top: 4.40625rem;
    width: 17.8125rem;
  }
  .service02__point {
    position: absolute;
    right: 2.71875rem;
    top: 23.09375rem;
    font-size: 1.1875rem;
    color: var(--color-accent);
  }
  .service03 {
    background: url(../img/service03_bg_sp.webp) no-repeat 50% 0%;
    background-size: 23.4375rem auto;
    height: 39.53125rem;
  }
  .service03__heading {
    position: absolute;
    left: 4.875rem;
    top: 0.125rem;
    text-align: center;
    width: 16.063rem;
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--color-white);
  }
  .service03__text {
    font-size: 0.875rem;
    position: absolute;
    left: 2.34375rem;
    top: 4.4375rem;
    width: 17.1875rem;
  }
  .service03__point {
    position: absolute;
    left: 2.75rem;
    top: 22.90625rem;
    font-size: 1.1875rem;
    color: var(--color-accent);
  }
}
/* ----------------------------------------
value
---------------------------------------- */
@media only screen and (min-width: 751px) {
  .value {
    background: url(../img/value_bg.webp) no-repeat 50% 0%;
    background-size: 125rem auto;
    height: auto;
    background-color: #fff;
    padding-bottom: 16.875rem;
    max-width: 2000px;
    margin: auto;
  }
  .value__title {
    font-size: 2.5rem;
    font-weight: 900;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 0.625rem;
  }
  .value__title span {
    color: var(--color-white);
    margin: 0 1.5rem;
  }
  .value__list {
    display: flex;
    gap: 4rem;
    padding: 0 1rem;
    top: 10rem;
    position: relative;
    width: 100%;
  }
  .value__item {
    flex: 1;
    gap: 1.5rem;
    background: var(--color-bg);
    border-radius: 2rem;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
  .value__heading {
    font-size: 2rem;
  }
  .value__text {
    font-size: 1.25rem;
    text-align: center;
  }
}
@media (max-width: 750px) {
  .value {
    background: url(../img/value_bg_sp.webp) no-repeat 50% 0%;
    background-size: 23.4375rem auto;
    height: auto;
    padding-bottom: 10rem;
    background-color: #fff;
  }
  .value__title {
    font-size: 1.1875rem;
    font-weight: 900;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 0.1875rem;
  }
  .value__title span {
    color: var(--color-white);
    margin: 0 0.75rem;
  }
  .value__list {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    top: 5.71875rem;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .value__item {
    flex: 1;
    gap: 0.75rem;
    background: var(--color-bg);
    border-radius: 2rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 19.375rem;
  }
  .value__heading {
    font-size: 1.1875rem;
  }
  .value__image {
    width: 6.25rem;
    text-align: center;
  }
  .value__text {
    font-size: 0.9375rem;
    text-align: center;
  }
}
/* ----------------------------------------
price
---------------------------------------- */
@media only screen and (min-width: 751px) {
  .price {
    background: url(../img/price_bg.webp) no-repeat 50% 0%;
    background-size: 125rem auto;
    height: 60.0625rem;
  }
  .price__title {
    font-size: 2.5rem;
    font-weight: 900;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 6.375rem;
  }
  .price__subtitle {
    font-size: 2.5rem;
    position: absolute;
    left: 36rem;
    top: 14.4375rem;
    width: 22.3125rem;
    color: var(--color-white);
  }
  .price__subtitle span {
    font-size: 2em;
  }
  .price__comp__name {
    font-size: 1.5rem;
    color: #222;
    position: absolute;
    top: 28.8125rem;
    left: 18.75rem;
  }
  .price__comp__price {
    font-size: 2rem;
    color: #222;
    position: absolute;
    top: 30.9375rem;
    left: 17.375rem;
    font-weight: 900;
  }
  .price__comp__price span {
    font-size: 3rem;
  }
  .price__comp__pros {
    font-size: 2rem;
    color: var(--color-white);
    position: absolute;
    text-align: center;
    line-height: 1.4;
  }
  .price__comp__pros-01 {
    left: 2.75rem;
    top: 24.625rem;
  }
  .price__comp__pros-02 {
    left: 4rem;
    top: 37.0625rem;
  }
  .price__moguru__name {
    position: absolute;
    right: 22rem;
    top: 27.1875rem;
    width: 13.063rem;
  }
  .price__moguru__price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    right: 23rem;
    top: 27.9375rem;
  }
  .price__moguru__price span {
    font-size: 4.125rem;
  }
  .price__moguru__price small {
    font-size: 0.875rem;
    color: #999;
    position: relative;
    top: -2.375rem;
    right: -3.875rem;
  }
  .price__moguru__cons {
    position: absolute;
    right: 22rem;
    top: 27.1875rem;
    font-size: 2rem;
    color: var(--color-accent);
    line-height: 1.4;
    text-align: center;
  }
  .price__moguru__cons-01 {
    position: absolute;
    right: 5.8125rem;
    top: 15.8125rem;
  }
  .price__moguru__cons-02 {
    position: absolute;
    right: 5.3125rem;
    top: 25.75rem;
  }
  .price__moguru__cons-03 {
    position: absolute;
    right: 7.625rem;
    top: 40.6875rem;
  }
  .price__text {
    font-size: 2rem;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 49.375rem;
  }
}
@media (max-width: 750px) {
  .price {
    background: url(../img/price_bg_sp.webp) no-repeat 50% 0%;
    background-size: 23.4375rem auto;
    height: 42.375rem;
  }
  .price__title {
    font-size: 1.25rem;
    font-weight: 900;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 3.1875rem;
  }
  .price__subtitle {
    font-size: 1.1875rem;
    position: absolute;
    left: 11.4375rem;
    top: 9.5rem;
    width: 11.15625rem;
    color: var(--color-white);
  }
  .price__subtitle span {
    font-size: 2em;
  }
  .price__comp__name {
    font-size: 0.9375rem;
    color: #222;
    position: absolute;
    top: 15.9375rem;
    left: 3.0625rem;
  }
  .price__comp__price {
    font-size: 1.1875rem;
    color: #222;
    position: absolute;
    top: 16.84375rem;
    left: 2.5rem;
    font-weight: 900;
  }
  .price__comp__price span {
    font-size: 1.71875rem;
  }
  .price__comp__pros {
    font-size: 1rem;
    color: var(--color-white);
    position: absolute;
    text-align: center;
    line-height: 1.4;
    width: 9.0625rem;
  }
  .price__comp__pros-01 {
    left: 1.15625rem;
    top: 24.78125rem;
  }
  .price__comp__pros-02 {
    left: 1.125rem;
    top: 27.0625rem;
  }
  .price__moguru__name {
    position: absolute;
    right: 3.59375rem;
    top: 14.5625rem;
    width: 6.531rem;
  }
  .price__moguru__price {
    font-size: 1.15625rem;
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    right: 3.71875rem;
    top: 15.53125rem;
  }
  .price__moguru__price span {
    font-size: 2.40625rem;
  }
  .price__moguru__price small {
    font-size: 0.4375rem;
    color: #999;
    position: relative;
    top: -1.59375rem;
    right: -2.40625rem;
  }
  .price__moguru__cons {
    position: absolute;
    right: 11rem;
    top: 13.59375rem;
    font-size: 1rem;
    color: var(--color-accent);
    line-height: 1.4;
    text-align: center;
    width: 10.75rem;
  }
  .price__moguru__cons-01 {
    left: 11.71875rem;
    top: 24.78125rem;
  }
  .price__moguru__cons-02 {
    left: 11.71875rem;
    top: 27.09375rem;
  }
  .price__moguru__cons-03 {
    left: 11.71875rem;
    top: 29.40625rem;
  }
  .price__text {
    font-size: 1.125rem;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 34.03125rem;
  }
}
/* ----------------------------------------
offer
---------------------------------------- */
@media only screen and (min-width: 751px) {
  .offer {
    background: url(../img/offer_bg.webp) no-repeat 50% 0%;
    background-size: 125rem auto;
    height: 95.625rem;
  }
  .offer__guide {
    position: absolute;
    left: 0;
    right: 0;
    width: 30.438rem;
    margin: auto;
  }
  .offer__guide img {
    width: inherit;
  }
  .offer__title {
    position: absolute;
    left: 0;
    right: 0;
    font-size: 3rem;
    color: var(--color-primary);
    width: fit-content;
    top: 15.25rem;
    margin: auto;
  }
  .offer__title::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 0.25rem;
    background-color: var(--color-primary);
    bottom: -0.625rem;
    margin: auto;
    width: 96%;
  }
  .offer__text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 23.5625rem;
    width: max-content;
    text-align: center;
  }
  .offer__text span {
    background-color: #fff7b3;
  }
  .offer__discount__title {
    font-size: 2rem;
    font-weight: 500;
    position: absolute;
    left: 0;
    right: 0;
    top: 42.6875rem;
    text-align: center;
    color: var(--color-white);
  }
  .offer__discount__text {
    font-size: 2rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 49.0625rem;
    text-align: center;
  }
  .offer__discount__text span {
    color: var(--color-primary);
  }
  .offer__discount__note {
    font-weight: 500;
    position: absolute;
    left: 0;
    right: 0;
    top: 58.125rem;
    text-align: center;
    color: #999;
  }
}
@media only screen and (max-width: 750px) {
  .offer {
    background: url(../img/offer_bg_sp.webp) no-repeat 50% 0%;
    background-size: 23.4375rem auto;
    height: 45.3125rem;
  }
  .offer__guide {
    position: absolute;
    left: 0;
    right: 0;
    width: 15.219rem;
    margin: auto;
  }
  .offer__title {
    position: absolute;
    left: 0;
    right: 0;
    font-size: 1.25rem;
    color: var(--color-primary);
    top: 8.5625rem;
    width: fit-content;
    margin: auto;
  }
  .offer__title::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 0.125rem;
    background-color: var(--color-primary);
    bottom: -0.25rem;
    margin: auto;
    width: 96%;
  }
  .offer__text {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 2;
    position: absolute;
    left: 0;
    right: 0;
    top: 12.5rem;
    text-align: center;
  }
  .offer__text span {
    background-color: #fff7b3;
  }
  .offer__discount__title {
    font-size: 1rem;
    font-weight: 500;
    position: absolute;
    left: 0;
    right: 0;
    top: 22.59375rem;
    text-align: center;
    color: var(--color-white);
  }
  .offer__discount__text {
    font-size: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 25.84375rem;
    text-align: center;
  }
  .offer__discount__text span {
    color: var(--color-primary);
  }
  .offer__discount__note {
    font-weight: 500;
    position: absolute;
    left: 0;
    right: 0;
    top: 31.6875rem;
    text-align: center;
    color: #999;
    font-size: 0.625rem;
  }
}
/* ----------------------------------------
 closing
---------------------------------------- */
.closing {
  background-color: var(--color-white);
  text-align: center;
  padding: 6.25rem 1rem 6.25rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  height: 51.25rem;
  border-top: 5.625rem solid var(--color-bg);
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(2602px * 2); /* 途切れ防止 */
  height: 45.625rem;
  background-image: url(../img/bg_closing.webp);
  background-repeat: repeat-x;
  background-size: 162.625rem 45.625rem;
  opacity: 0.35;
  pointer-events: none;
  animation: slide 45s linear infinite;
}
/* コンテンツは前面 */
.closing > * {
  position: relative;
  z-index: 1;
}
/* transform で動かす（シームレス） */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2602px);
  }
}
.closing__title {
  font-size: 2.5rem;
  text-shadow: 0 0 0 #fff, 0 0 16px #fff, 0 0 16px #fff, 0 0 16px #fff, 0 0 32px #fff, 0 0 32px #fff, 0 0 32px #fff;
}
.closing__text {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}
.closing__cta {
  position: relative;
  margin-top: -7px;
  border-radius: 999px;
  overflow: hidden;
  display: inline-block;
}
@media only screen and (min-width: 751px) {
  .closing__text {
    width: 42.875rem;
    height: auto;
    margin-inline: auto;
  }
  .closing__cta {
    width: 42.875rem;
    height: auto;
  }
}
@media only screen and (max-width: 750px) {
  .closing {
    padding: 3.125rem 1rem 3.125rem;
    height: 25.625rem;
    border-top: 2.813rem solid var(--color-bg);
  }
  .closing::before {
    height: 22.813rem;
    background-size: 81.313rem 22.813rem;
    width: calc(81.313rem * 2);
  }
  .closing__title {
    font-size: 1rem;
  }
  .closing__text {
    margin-top: 1.875rem;
  }
}
/* ----------------------------------------
footer
---------------------------------------- */
.footer {
  background-color: var(--color-white);
  padding: 3rem 1rem 2rem;
  text-align: center;
}
.footer__list {
  display: flex;
  justify-content: center;
  line-height: 1;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 2rem 0;
  font-family: sans-serif;
  font-weight: 400;
}
.footer__item:not(:first-child) {
  margin-left: 1em;
  border-left: 1px solid #ccc;
  padding-left: 1em;
}
.footer__item a {
  color: #666;
}
.footer__copyright {
  margin: 0;
  font-size: 14px;
  margin-top: 3rem;
  color: #999;
  font-family: sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 750px) {
  .footer {
    padding: 1rem;
  }
  .footer__list,
  .footer__copyright {
    font-size: 11px;
  }
  .footer__copyright {
    margin-top: 1.5rem;
  }
}
