@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--- iosのスタイルリセット  ---*/
input[type=submit],
input[type=button] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper {
  position: relative;
}

/* =============================================================================
Image
========================================================================== */
a {
  display: block;
  cursor: pointer;
}

picture,
figure {
  display: block;
}

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

/* =============================================================================
Basic style
========================================================================== */
html {
  overflow-x: hidden;
}

body {
  position: relative;
  background: #eee;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  overflow-x: hidden;
  word-break: break-all;
}

/*==============================================================================
Media
============================================================================= */
/*
  sp
----------------------------------------------- */
/*
  pc
----------------------------------------------- */
/*==============================================================================
Accessibility
============================================================================= */
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/*==============================================================================
font-size
============================================================================= */
/*
	  mobile
  ----------------------------------------------- */
@media screen and (max-width: 750px) {
  html {
    font-size: 2.1333333333vw;
  }
  .header {
    max-width: 46.875rem;
    margin: 0 auto;
  }
  .main {
    max-width: 46.875rem;
    margin: 0 auto;
    background: #fff;
  }
  .footer {
    max-width: 46.875rem;
    margin: 0 auto;
  }
  p {
    font-size: 1rem;
  }
}
/*
  PC
  ----------------------------------------------- */
@media screen and (min-width: 751px) {
  html {
    font-size: 16px;
  }
  .header {
    max-width: 46.875rem;
    margin: 0 auto;
  }
  .main {
    max-width: 46.875rem;
    margin: 0 auto;
    background: #fff;
  }
  .footer {
    max-width: 46.875rem;
    margin: 0 auto;
  }
  p {
    font-size: 1rem;
  }
}
/*==============================================================================
Scroll-triggered fade-in (共通)
============================================================================= */
[data-anim=fade-up] {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
[data-anim=fade-up].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*==============================================================================
KV keyframes
============================================================================= */
@-webkit-keyframes kv-handwrite-reveal {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    -webkit-transform: skewX(-3deg) rotate(-1deg);
            transform: skewX(-3deg) rotate(-1deg);
  }
  65% {
    -webkit-clip-path: inset(0 4% 0 0);
            clip-path: inset(0 4% 0 0);
    -webkit-transform: skewX(1.5deg) rotate(0.4deg);
            transform: skewX(1.5deg) rotate(0.4deg);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    -webkit-transform: skewX(0) rotate(0);
            transform: skewX(0) rotate(0);
  }
}
@keyframes kv-handwrite-reveal {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    -webkit-transform: skewX(-3deg) rotate(-1deg);
            transform: skewX(-3deg) rotate(-1deg);
  }
  65% {
    -webkit-clip-path: inset(0 4% 0 0);
            clip-path: inset(0 4% 0 0);
    -webkit-transform: skewX(1.5deg) rotate(0.4deg);
            transform: skewX(1.5deg) rotate(0.4deg);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    -webkit-transform: skewX(0) rotate(0);
            transform: skewX(0) rotate(0);
  }
}
@-webkit-keyframes kv-zoom-back {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
    -webkit-filter: blur(0.375rem);
            filter: blur(0.375rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes kv-zoom-back {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
    -webkit-filter: blur(0.375rem);
            filter: blur(0.375rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes kv-fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes kv-fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes kv-bubble-pop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2.25rem) scale(0.82);
            transform: translateY(2.25rem) scale(0.82);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-0.5rem) scale(1.05);
            transform: translateY(-0.5rem) scale(1.05);
  }
  72% {
    -webkit-transform: translateY(0.25rem) scale(0.97);
            transform: translateY(0.25rem) scale(0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes kv-bubble-pop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2.25rem) scale(0.82);
            transform: translateY(2.25rem) scale(0.82);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-0.5rem) scale(1.05);
            transform: translateY(-0.5rem) scale(1.05);
  }
  72% {
    -webkit-transform: translateY(0.25rem) scale(0.97);
            transform: translateY(0.25rem) scale(0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes purupuru2 {
  0%, 100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(1.006, 1.012);
            transform: scale(1.006, 1.012);
  }
  50% {
    -webkit-transform: scale(0.994, 0.988);
            transform: scale(0.994, 0.988);
  }
  75% {
    -webkit-transform: scale(1.003, 1.006);
            transform: scale(1.003, 1.006);
  }
}
@keyframes purupuru2 {
  0%, 100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(1.006, 1.012);
            transform: scale(1.006, 1.012);
  }
  50% {
    -webkit-transform: scale(0.994, 0.988);
            transform: scale(0.994, 0.988);
  }
  75% {
    -webkit-transform: scale(1.003, 1.006);
            transform: scale(1.003, 1.006);
  }
}
@-webkit-keyframes anim-zoom-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2.5rem) scale(0.55);
            transform: translateY(2.5rem) scale(0.55);
    -webkit-filter: blur(0.375rem);
            filter: blur(0.375rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes anim-zoom-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2.5rem) scale(0.55);
            transform: translateY(2.5rem) scale(0.55);
    -webkit-filter: blur(0.375rem);
            filter: blur(0.375rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes anim-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anim-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes anim-fade-up-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2.25rem);
            transform: translateY(2.25rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes anim-fade-up-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2.25rem);
            transform: translateY(2.25rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes anim-fade-left-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2.25rem);
            transform: translateX(-2.25rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes anim-fade-left-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2.25rem);
            transform: translateX(-2.25rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes anim-fade-right-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2.25rem);
            transform: translateX(2.25rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes anim-fade-right-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2.25rem);
            transform: translateX(2.25rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes anim-fade-up-in-subtle {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.125rem);
            transform: translateY(1.125rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes anim-fade-up-in-subtle {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.125rem);
            transform: translateY(1.125rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes anim-scale-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes anim-scale-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*==============================================================================
KV animations
※ &__ ネストだと .js .kv.is-ready .js .kv__* の壊れたセレクタになるためフラットに記述
============================================================================= */
.js .kv .kv__main-catch-sub picture {
  display: block;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.js .kv.is-ready .kv__main-catch-sub picture {
  -webkit-animation: kv-handwrite-reveal 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: kv-handwrite-reveal 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.js .kv .kv__main-clinical picture {
  display: block;
  opacity: 0;
  -webkit-transform: scale(0.55);
          transform: scale(0.55);
  -webkit-filter: blur(0.375rem);
          filter: blur(0.375rem);
}

.js .kv.is-ready .kv__main-clinical picture {
  -webkit-animation: kv-zoom-back 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
          animation: kv-zoom-back 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.js .kv .kv__main-catch-main picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}

.js .kv.is-ready .kv__main-catch-main picture {
  -webkit-animation: kv-fade-up 1.5s ease-out 1s forwards;
          animation: kv-fade-up 1.5s ease-out 1s forwards;
}

.js .kv .kv__summary-plan picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.25rem) scale(0.82);
          transform: translateY(2.25rem) scale(0.82);
}

.js .kv .kv__summary-plan.is-inview picture {
  -webkit-animation: kv-bubble-pop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: kv-bubble-pop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.js .kv .kv__summary-btn a {
  display: block;
}

.js .kv .kv__summary-btn picture {
  display: block;
}

.js .kv .kv__summary-btn.is-inview picture {
  -webkit-animation: purupuru2 2.2s ease-in-out infinite;
          animation: purupuru2 2.2s ease-in-out infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/*==============================================================================
Troubles animations
============================================================================= */
.js .troubles__title picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.5rem) scale(0.55);
          transform: translateY(2.5rem) scale(0.55);
  -webkit-filter: blur(0.375rem);
          filter: blur(0.375rem);
}

.js .troubles__title.is-inview picture {
  -webkit-animation: anim-zoom-up 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: anim-zoom-up 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .troubles__scene picture,
.js .troubles__bubble picture {
  display: block;
  opacity: 0;
}

.js .troubles__scene.is-inview picture {
  -webkit-animation: anim-fade-in 1.2s ease-out forwards;
          animation: anim-fade-in 1.2s ease-out forwards;
}

.js .troubles__bubble picture {
  -webkit-transform: translateY(2.25rem);
          transform: translateY(2.25rem);
}

.js .troubles__bubble.is-inview picture {
  -webkit-animation: anim-fade-up-in 1.2s ease-out forwards;
          animation: anim-fade-up-in 1.2s ease-out forwards;
}

/*==============================================================================
Check animations
============================================================================= */
.js .check__title picture {
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.js .check__title.is-inview picture {
  -webkit-animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .check__list picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.25rem);
          transform: translateY(2.25rem);
}

.js .check__list.is-inview picture {
  -webkit-animation: anim-fade-up-in 1.2s ease-out forwards;
          animation: anim-fade-up-in 1.2s ease-out forwards;
}

/*==============================================================================
Comparison animations
============================================================================= */
.js .comparison__title picture {
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.js .comparison__title.is-inview picture {
  -webkit-animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/*==============================================================================
Choice animations
============================================================================= */
.js .choice__sqbubble picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.25rem) scale(0.82);
          transform: translateY(2.25rem) scale(0.82);
}

.js .choice__sqbubble.is-inview picture {
  -webkit-animation: kv-bubble-pop 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: kv-bubble-pop 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.js .choice__online picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateX(-2.25rem);
          transform: translateX(-2.25rem);
}

.js .choice__online.is-inview picture {
  -webkit-animation: anim-fade-left-in 1.2s ease-out forwards;
          animation: anim-fade-left-in 1.2s ease-out forwards;
}

/*==============================================================================
Reason animations
============================================================================= */
.js .reason__title picture {
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.js .reason__title.is-inview picture {
  -webkit-animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .reason__item picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.25rem);
          transform: translateY(2.25rem);
}

.js .reason__list.is-inview .reason__item:nth-child(1) picture {
  -webkit-animation: anim-fade-up-in 1.15s ease-out 0s forwards;
          animation: anim-fade-up-in 1.15s ease-out 0s forwards;
}
.js .reason__list.is-inview .reason__item:nth-child(2) picture {
  -webkit-animation: anim-fade-up-in 1.15s ease-out 0.18s forwards;
          animation: anim-fade-up-in 1.15s ease-out 0.18s forwards;
}
.js .reason__list.is-inview .reason__item:nth-child(3) picture {
  -webkit-animation: anim-fade-up-in 1.15s ease-out 0.36s forwards;
          animation: anim-fade-up-in 1.15s ease-out 0.36s forwards;
}
.js .reason__list.is-inview .reason__item:nth-child(4) picture {
  -webkit-animation: anim-fade-up-in 1.15s ease-out 0.54s forwards;
          animation: anim-fade-up-in 1.15s ease-out 0.54s forwards;
}
.js .reason__list.is-inview .reason__item:nth-child(5) picture {
  -webkit-animation: anim-fade-up-in 1.15s ease-out 0.72s forwards;
          animation: anim-fade-up-in 1.15s ease-out 0.72s forwards;
}
.js .reason__list.is-inview .reason__item:nth-child(6) picture {
  -webkit-animation: anim-fade-up-in 1.15s ease-out 0.9s forwards;
          animation: anim-fade-up-in 1.15s ease-out 0.9s forwards;
}

/*==============================================================================
Campaign animations
============================================================================= */
.js .campaign__first picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.25rem);
          transform: translateY(2.25rem);
}

.js .campaign__first.is-inview picture {
  -webkit-animation: anim-fade-up-in 0.6s ease-out forwards;
          animation: anim-fade-up-in 0.6s ease-out forwards;
}

.js .campaign__zero picture {
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.js .campaign__zero.is-inview picture {
  -webkit-animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .campaign__product picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(1.125rem);
          transform: translateY(1.125rem);
}

.js .campaign__product.is-inview picture {
  -webkit-animation: anim-fade-up-in-subtle 0.6s ease-out forwards;
          animation: anim-fade-up-in-subtle 0.6s ease-out forwards;
}

/*==============================================================================
Privacy animations
============================================================================= */
.js .privacy__heading picture {
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.js .privacy__heading.is-inview picture {
  -webkit-animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .privacy__box-title picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateX(-2.25rem);
          transform: translateX(-2.25rem);
}

.js .privacy__box-title.is-inview picture {
  -webkit-animation: anim-fade-left-in 0.8s ease-out forwards;
          animation: anim-fade-left-in 0.8s ease-out forwards;
}

/*==============================================================================
Step animations
============================================================================= */
@-webkit-keyframes anim-float-y {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-0.375rem);
            transform: translateY(-0.375rem);
  }
}
@keyframes anim-float-y {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-0.375rem);
            transform: translateY(-0.375rem);
  }
}
.js .step__title picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.25rem);
          transform: translateY(2.25rem);
}

.js .step__title.is-inview picture {
  -webkit-animation: anim-fade-up-in 1.2s ease-out forwards;
          animation: anim-fade-up-in 1.2s ease-out forwards;
}

.js .step__item-img picture {
  display: block;
}

.js .step__item-img.is-inview picture {
  -webkit-animation: anim-float-y 2.2s ease-in-out infinite;
          animation: anim-float-y 2.2s ease-in-out infinite;
}

.js .step__item-bar[data-anim-inview] picture,
.js .step__item-title[data-anim-inview] picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateX(-2.25rem);
          transform: translateX(-2.25rem);
}

.js .step__item-bar[data-anim-inview].is-inview picture,
.js .step__item-title[data-anim-inview].is-inview picture {
  -webkit-animation: anim-fade-left-in 0.73s ease-out forwards;
          animation: anim-fade-left-in 0.73s ease-out forwards;
}

/*==============================================================================
CTA animations
============================================================================= */
.js .cta__btn a {
  display: block;
}

.js .cta__btn picture {
  display: block;
}

.js .cta__btn.is-inview picture {
  -webkit-animation: purupuru2 2.2s ease-in-out infinite;
          animation: purupuru2 2.2s ease-in-out infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/*==============================================================================
Results animations
============================================================================= */
.js .results__cases picture {
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.js .results__cases.is-inview picture {
  -webkit-animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: anim-scale-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/*==============================================================================
Satisfaction animations
============================================================================= */
.js .satisfaction__header-chart picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateX(2.25rem);
          transform: translateX(2.25rem);
}

.js .satisfaction__header-chart.is-inview picture {
  -webkit-animation: anim-fade-right-in 0.73s ease-out forwards;
          animation: anim-fade-right-in 0.73s ease-out forwards;
}

/*==============================================================================
Plan animations
============================================================================= */
.js .plan__title picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.25rem);
          transform: translateY(2.25rem);
}

.js .plan__title.is-inview picture {
  -webkit-animation: anim-fade-up-in 1.2s ease-out forwards;
          animation: anim-fade-up-in 1.2s ease-out forwards;
}

/*==============================================================================
Line animations
============================================================================= */
.js .line__catch picture,
.js .line__all picture,
.js .line__sp picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.25rem);
          transform: translateY(2.25rem);
}

.js .line__catch.is-inview picture {
  -webkit-animation: anim-fade-up-in 1.2s ease-out forwards;
          animation: anim-fade-up-in 1.2s ease-out forwards;
}

.js .line__all.is-inview picture {
  -webkit-animation: anim-fade-up-in 0.8s ease-out forwards;
          animation: anim-fade-up-in 0.8s ease-out forwards;
}

.js .line__all.is-inview ~ .line__sp picture {
  -webkit-animation: anim-fade-up-in 0.8s ease-out 0.8s forwards;
          animation: anim-fade-up-in 0.8s ease-out 0.8s forwards;
}

/*==============================================================================
Media animations
============================================================================= */
.js .media__title picture {
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.js .media__title.is-inview picture {
  -webkit-animation: anim-scale-in 0.73s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: anim-scale-in 0.73s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .media__item picture {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(2.25rem);
          transform: translateY(2.25rem);
}

.js .media__title.is-inview ~ .media__item picture {
  -webkit-animation: anim-fade-up-in 0.6s ease-out 0.73s forwards;
          animation: anim-fade-up-in 0.6s ease-out 0.73s forwards;
}

@media (prefers-reduced-motion: reduce) {
  [data-anim=fade-up] {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
  .kv .kv__main-catch-sub picture,
  .kv .kv__main-clinical picture,
  .kv .kv__main-catch-main picture,
  .kv .kv__summary-plan picture,
  .kv .kv__summary-btn picture {
    -webkit-clip-path: none;
            clip-path: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .troubles__title picture,
  .troubles__scene picture,
  .troubles__bubble picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .check__title picture,
  .check__list picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .comparison__title picture,
  .choice__sqbubble picture,
  .choice__online picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .reason__title picture,
  .reason__item picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .campaign__first picture,
  .campaign__zero picture,
  .campaign__product picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .privacy__heading picture,
  .privacy__box-title picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .step__title picture,
  .step__item-img picture,
  .step__item-bar[data-anim-inview] picture,
  .step__item-title[data-anim-inview] picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .cta__btn picture,
  .results__cases picture,
  .satisfaction__header-chart picture,
  .plan__title picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .line__catch picture,
  .line__all picture,
  .line__sp picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
  .media__title picture,
  .media__item picture {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    -webkit-animation: none;
            animation: none;
  }
}
/*==============================================================================
Header
============================================================================= */
@media screen and (max-width: 750px) {
  .header {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    max-width: 46.875rem;
    margin: 0 auto;
    z-index: 10;
    background: transparent;
  }
  .header__logo {
    width: 13.6875rem;
    padding-top: 2.5rem;
    padding-left: 2.5rem;
  }
  .header__logo img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 751px) {
  .header {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    max-width: 46.875rem;
    margin: 0 auto;
    z-index: 10;
    background: transparent;
  }
  .header__logo {
    width: 13.6875rem;
    padding-top: 2.5rem;
    padding-left: 2.5rem;
  }
  .header__logo img {
    width: 100%;
    height: auto;
  }
}
/*==============================================================================
KV
============================================================================= */
@media screen and (max-width: 750px) {
  .kv {
    position: relative;
    height: 90.625rem;
  }
  .kv__inner {
    position: relative;
    height: 100%;
  }
  .kv__main {
    position: relative;
    z-index: 1;
    height: 100%;
    background: url(../images/kv_bg.webp) no-repeat top center/contain;
  }
  .kv__main-catch-sub {
    position: absolute;
    top: 13.9375rem;
    left: 1.5rem;
    width: 11rem;
  }
  .kv__main-clinical {
    position: absolute;
    top: 12.75rem;
    right: 0.5625rem;
    width: 15.4375rem;
  }
  .kv__main-catch-main {
    position: absolute;
    top: 26.3125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 42.1875rem;
  }
  .kv__summary {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 41.625rem;
    padding-top: 0.3125rem;
    padding-right: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url(../images/kv_summary_bg-sp.webp) no-repeat center bottom/100% 41.25rem;
    z-index: 2;
  }
  .kv__summary-body {
    width: 41.875rem;
    margin-inline: auto;
  }
  .kv__summary-prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 41rem;
    margin-inline: auto;
    margin-left: 0;
    padding-top: 0;
    margin-bottom: 0.5625rem;
  }
  .kv__summary-phone {
    width: 11.4375rem;
    margin-top: -3.0625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .kv__summary-day {
    width: 13.25rem;
    margin-top: 3.125rem;
    margin-left: 1.9375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .kv__summary-divider {
    width: 4px;
    background: repeating-linear-gradient(to bottom, #9eaec9 0, #9eaec9 2px, transparent 2px, transparent 4px);
    height: 8.0625rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 3.125rem;
    margin-left: 0.5625rem;
    margin-right: 0.4375rem;
    margin-bottom: 0.5625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .kv__summary-fee {
    width: 13.25rem;
    margin-top: 3.125rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .kv__summary-plan {
    width: 42.9375rem;
    margin-inline: auto;
    margin-left: -0.5rem;
    margin-bottom: 1.25rem;
  }
  .kv__summary-btn {
    width: 41.875rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 751px) {
  .kv {
    position: relative;
    height: 90.625rem;
  }
  .kv__inner {
    position: relative;
    height: 100%;
  }
  .kv__main {
    position: relative;
    z-index: 1;
    height: 100%;
    background: url(../images/kv_bg.webp) no-repeat top center/contain;
  }
  .kv__main-catch-sub {
    position: absolute;
    top: 13.9375rem;
    left: 1.5rem;
    width: 11rem;
  }
  .kv__main-clinical {
    position: absolute;
    top: 12.75rem;
    right: 0.5625rem;
    width: 15.4375rem;
  }
  .kv__main-catch-main {
    position: absolute;
    top: 26.3125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 42.1875rem;
  }
  .kv__summary {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 41.625rem;
    padding-top: 0.3125rem;
    padding-right: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url(../images/kv_summary_bg-sp.webp) no-repeat center bottom/100% 41.25rem;
    z-index: 2;
  }
  .kv__summary-body {
    width: 41.875rem;
    margin-inline: auto;
  }
  .kv__summary-prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 41rem;
    margin-inline: auto;
    margin-left: 0;
    padding-top: 0;
    margin-bottom: 0.5625rem;
  }
  .kv__summary-phone {
    width: 11.4375rem;
    margin-top: -3.0625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .kv__summary-day {
    width: 13.25rem;
    margin-top: 3.125rem;
    margin-left: 1.9375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .kv__summary-divider {
    width: 4px;
    background: repeating-linear-gradient(to bottom, #9eaec9 0, #9eaec9 2px, transparent 2px, transparent 4px);
    height: 8.0625rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 3.125rem;
    margin-left: 0.5625rem;
    margin-right: 0.4375rem;
    margin-bottom: 0.5625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .kv__summary-fee {
    width: 13.25rem;
    margin-top: 3.125rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .kv__summary-plan {
    width: 42.9375rem;
    margin-inline: auto;
    margin-left: -0.5rem;
    margin-bottom: 1.25rem;
  }
  .kv__summary-btn {
    width: 41.875rem;
    margin-inline: auto;
  }
}
/*==============================================================================
Trust
============================================================================= */
@media screen and (max-width: 750px) {
  .trust__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .trust__bar {
    background: #f5fafd;
    height: 12.375rem;
  }
  .trust__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 43.875rem;
    height: 12.375rem;
    margin-inline: auto;
  }
  .trust__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .trust__item--results {
    width: 12.40625rem;
    margin-top: 1.625rem;
    margin-left: 0.1875rem;
  }
  .trust__item--open {
    width: 11.4375rem;
    margin-top: 1.8125rem;
  }
  .trust__item--same-day {
    width: 9.53125rem;
    margin-top: 1.8125rem;
    margin-right: 1.5625rem;
    margin-left: auto;
  }
  .trust__divider {
    width: 4px;
    background: repeating-linear-gradient(to bottom, #9eaec9 0, #9eaec9 2px, transparent 2px, transparent 4px);
    height: 8rem;
    margin: 0 1.4375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .trust__divider:nth-of-type(2) {
    margin-right: 2rem;
  }
  .trust__divider:nth-of-type(4) {
    margin-left: 2.0625rem;
  }
  .trust__note {
    width: 41.875rem;
    margin-inline: auto;
    padding-top: 0.8125rem;
    padding-bottom: 1.1875rem;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.125rem;
    line-height: 1.3125rem;
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 751px) {
  .trust__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .trust__bar {
    background: #f5fafd;
    height: 12.375rem;
  }
  .trust__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 43.875rem;
    height: 12.375rem;
    margin-inline: auto;
  }
  .trust__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .trust__item--results {
    width: 12.40625rem;
    margin-top: 1.625rem;
    margin-left: 0.1875rem;
  }
  .trust__item--open {
    width: 11.4375rem;
    margin-top: 1.8125rem;
  }
  .trust__item--same-day {
    width: 9.53125rem;
    margin-top: 1.8125rem;
    margin-right: 1.5625rem;
    margin-left: auto;
  }
  .trust__divider {
    width: 4px;
    background: repeating-linear-gradient(to bottom, #9eaec9 0, #9eaec9 2px, transparent 2px, transparent 4px);
    height: 8rem;
    margin: 0 1.4375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .trust__divider:nth-of-type(2) {
    margin-right: 2rem;
  }
  .trust__divider:nth-of-type(4) {
    margin-left: 2.0625rem;
  }
  .trust__note {
    width: 41.875rem;
    margin-inline: auto;
    padding-top: 0.8125rem;
    padding-bottom: 1.1875rem;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.125rem;
    line-height: 1.3125rem;
    letter-spacing: 0.06em;
  }
}
/*==============================================================================
Troubles
============================================================================= */
@media screen and (max-width: 750px) {
  .troubles {
    line-height: 0;
    background: url(../images/troubles_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .troubles__title {
    width: 40rem;
    padding-top: 3.375rem;
    padding-right: 0.1875rem;
    margin: 0 auto;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .troubles__title img {
    width: 100%;
    height: auto;
  }
  .troubles__scene {
    width: 100%;
    margin-top: -0.125rem;
    line-height: 0;
  }
  .troubles__bubble {
    width: 45.75rem;
    margin-top: -2.25rem;
    margin-inline: auto;
    padding-right: 0.5625rem;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .troubles__subtitle {
    width: 40.9375rem;
    margin-top: 1.3125rem;
    margin-inline: auto;
    line-height: 0;
  }
  .troubles__source-text {
    width: 41.875rem;
    margin-top: 0;
    margin-inline: auto;
    padding: 1.9375rem 0.375rem 1.4375rem 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.125rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: right;
  }
}
@media screen and (min-width: 751px) {
  .troubles {
    line-height: 0;
    background: url(../images/troubles_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .troubles__title {
    width: 40rem;
    padding-top: 3.375rem;
    padding-right: 0.1875rem;
    margin: 0 auto;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .troubles__title img {
    width: 100%;
    height: auto;
  }
  .troubles__scene {
    width: 100%;
    margin-top: -0.125rem;
    line-height: 0;
  }
  .troubles__bubble {
    width: 45.75rem;
    margin-top: -2.25rem;
    margin-inline: auto;
    padding-right: 0.5625rem;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .troubles__subtitle {
    width: 40.9375rem;
    margin-top: 1.3125rem;
    margin-inline: auto;
    line-height: 0;
  }
  .troubles__source-text {
    width: 41.875rem;
    margin-top: 0;
    margin-inline: auto;
    padding: 1.9375rem 0.375rem 1.4375rem 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.125rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: right;
  }
}
/*==============================================================================
Check
============================================================================= */
@media screen and (max-width: 750px) {
  .check {
    line-height: 0;
    background: url(../images/check_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .check__title {
    width: 40.3125rem;
    padding-top: 2.8125rem;
    padding-left: 2.0625rem;
    margin: 0 auto;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .check__title img {
    width: 100%;
    height: auto;
  }
  .check__list {
    width: 44.9375rem;
    margin-top: -0.375rem;
    margin-inline: auto;
    padding-left: 1.5625rem;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .check__doctor {
    width: 46.5625rem;
    margin-top: -0.8125rem;
    margin-inline: auto;
    padding-left: 2.8125rem;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (min-width: 751px) {
  .check {
    line-height: 0;
    background: url(../images/check_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .check__title {
    width: 40.3125rem;
    padding-top: 2.8125rem;
    padding-left: 2.0625rem;
    margin: 0 auto;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .check__title img {
    width: 100%;
    height: auto;
  }
  .check__list {
    width: 44.9375rem;
    margin-top: -0.375rem;
    margin-inline: auto;
    padding-left: 1.5625rem;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .check__doctor {
    width: 46.5625rem;
    margin-top: -0.8125rem;
    margin-inline: auto;
    padding-left: 2.8125rem;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/*==============================================================================
Comparison
============================================================================= */
@media screen and (max-width: 750px) {
  .comparison {
    line-height: 0;
    background: #fff;
  }
  .comparison__title {
    width: 33.125rem;
    margin: 0 auto;
    margin-top: 4.125rem;
    line-height: 0;
  }
  .comparison__title img {
    width: 100%;
    height: auto;
  }
  .comparison__table {
    width: 41.875rem;
    margin-top: 2.625rem;
    margin-bottom: 5rem;
    margin-inline: auto;
    line-height: 0;
  }
}
@media screen and (min-width: 751px) {
  .comparison {
    line-height: 0;
    background: #fff;
  }
  .comparison__title {
    width: 33.125rem;
    margin: 0 auto;
    margin-top: 4.125rem;
    line-height: 0;
  }
  .comparison__title img {
    width: 100%;
    height: auto;
  }
  .comparison__table {
    width: 41.875rem;
    margin-top: 2.625rem;
    margin-bottom: 5rem;
    margin-inline: auto;
    line-height: 0;
  }
}
/*==============================================================================
Choice
============================================================================= */
@media screen and (max-width: 750px) {
  .choice {
    line-height: 0;
  }
  .choice__inner {
    background-image: url(../images/choice_bg.webp), -webkit-gradient(linear, left top, left bottom, color-stop(5.3125rem, transparent), color-stop(5.3125rem, #e8faff));
    background-image: url(../images/choice_bg.webp), linear-gradient(to bottom, transparent 5.3125rem, #e8faff 5.3125rem);
    background-repeat: no-repeat, no-repeat;
    background-position: center 5.3125rem, top;
    background-size: 100% auto, 100% 100%;
  }
  .choice__sqbubble {
    width: 41.90625rem;
    margin: 0 auto;
    line-height: 0;
  }
  .choice__sqbubble img {
    width: 100%;
    height: auto;
  }
  .choice__title {
    width: 44.71875rem;
    margin-top: 0.6875rem;
    margin-right: 0.625rem;
    margin-left: 1.5625rem;
    line-height: 0;
  }
  .choice__online {
    width: 29.90625rem;
    margin-top: 1.375rem;
    margin-bottom: 1.6875rem;
    margin-left: 4.1875rem;
    margin-right: auto;
    line-height: 0;
  }
  .choice__bottom {
    position: relative;
    width: 41.875rem;
    margin-inline: auto;
    padding-bottom: 4.5rem;
  }
  .choice__card {
    width: 100%;
    padding: 2.875rem 3.75rem 14.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.25rem;
    line-height: normal;
  }
  .choice__online-sub {
    width: 28.9375rem;
    line-height: 0;
  }
  .choice__text {
    margin-top: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 2.75rem;
    letter-spacing: 0.08em;
    color: #333;
  }
  .choice__merit {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 41.1875rem;
    margin-left: -1.375rem;
    line-height: 0;
    z-index: 1;
  }
}
@media screen and (min-width: 751px) {
  .choice {
    line-height: 0;
  }
  .choice__inner {
    background-image: url(../images/choice_bg.webp), -webkit-gradient(linear, left top, left bottom, color-stop(5.3125rem, transparent), color-stop(5.3125rem, #e8faff));
    background-image: url(../images/choice_bg.webp), linear-gradient(to bottom, transparent 5.3125rem, #e8faff 5.3125rem);
    background-repeat: no-repeat, no-repeat;
    background-position: center 5.3125rem, top;
    background-size: 100% auto, 100% 100%;
  }
  .choice__sqbubble {
    width: 41.90625rem;
    margin: 0 auto;
    line-height: 0;
  }
  .choice__sqbubble img {
    width: 100%;
    height: auto;
  }
  .choice__title {
    width: 44.71875rem;
    margin-top: 0.6875rem;
    margin-right: 0.625rem;
    margin-left: 1.5625rem;
    line-height: 0;
  }
  .choice__online {
    width: 29.90625rem;
    margin-top: 1.375rem;
    margin-bottom: 1.6875rem;
    margin-left: 4.1875rem;
    margin-right: auto;
    line-height: 0;
  }
  .choice__bottom {
    position: relative;
    width: 41.875rem;
    margin-inline: auto;
    padding-bottom: 4.5rem;
  }
  .choice__card {
    width: 100%;
    padding: 2.875rem 3.75rem 14.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.25rem;
    line-height: normal;
  }
  .choice__online-sub {
    width: 28.9375rem;
    line-height: 0;
  }
  .choice__text {
    margin-top: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 2.75rem;
    letter-spacing: 0.08em;
    color: #333;
  }
  .choice__merit {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 41.1875rem;
    margin-left: -1.375rem;
    line-height: 0;
    z-index: 1;
  }
}
/*==============================================================================
Reason
============================================================================= */
@media screen and (max-width: 750px) {
  .reason {
    line-height: 0;
  }
  .reason__inner {
    background: url(../images/reason_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .reason__body {
    width: 41.875rem;
    margin-inline: auto;
  }
  .reason__title {
    width: 41rem;
    margin: 0 auto;
    padding-top: 5.5rem;
    padding-bottom: 3.625rem;
    line-height: 0;
  }
  .reason__title img {
    width: 100%;
    height: auto;
  }
  .reason__list {
    display: grid;
    grid-template-columns: repeat(2, 20.1875rem);
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 1.5625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 0;
    padding-bottom: 5.25rem;
    list-style: none;
  }
  .reason__item {
    line-height: 0;
  }
}
@media screen and (min-width: 751px) {
  .reason {
    line-height: 0;
  }
  .reason__inner {
    background: url(../images/reason_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .reason__body {
    width: 41.875rem;
    margin-inline: auto;
  }
  .reason__title {
    width: 41rem;
    margin: 0 auto;
    padding-top: 5.5rem;
    padding-bottom: 3.625rem;
    line-height: 0;
  }
  .reason__title img {
    width: 100%;
    height: auto;
  }
  .reason__list {
    display: grid;
    grid-template-columns: repeat(2, 20.1875rem);
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 1.5625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 0;
    padding-bottom: 5.25rem;
    list-style: none;
  }
  .reason__item {
    line-height: 0;
  }
}
/*==============================================================================
Line
============================================================================= */
@media screen and (max-width: 750px) {
  .line {
    line-height: 0;
    position: relative;
  }
  .line__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .line__visual {
    position: relative;
    width: 46.875rem;
    height: 42.875rem;
    margin-top: 1.5rem;
    margin-inline: auto;
  }
  .line__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
  }
  .line__bg img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .line__catch {
    position: absolute;
    top: 5.8125rem;
    right: 2.75rem;
    width: 19.8125rem;
    line-height: 0;
    z-index: 1;
  }
  .line__catch img {
    display: block;
    width: 100%;
    height: auto;
  }
  .line__all {
    position: absolute;
    bottom: 3rem;
    left: 2.8125rem;
    width: 22.0625rem;
    line-height: 0;
    z-index: 1;
  }
  .line__all img {
    display: block;
    width: 100%;
    height: auto;
  }
  .line__sp {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 22.4375rem;
    line-height: 0;
    z-index: 2;
  }
  .line__sp img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 751px) {
  .line {
    line-height: 0;
    position: relative;
  }
  .line__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .line__visual {
    position: relative;
    width: 46.875rem;
    height: 42.875rem;
    margin-top: 1.5rem;
    margin-inline: auto;
  }
  .line__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
  }
  .line__bg img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .line__catch {
    position: absolute;
    top: 5.8125rem;
    right: 2.75rem;
    width: 19.8125rem;
    line-height: 0;
    z-index: 1;
  }
  .line__catch img {
    display: block;
    width: 100%;
    height: auto;
  }
  .line__all {
    position: absolute;
    bottom: 3rem;
    left: 2.8125rem;
    width: 22.0625rem;
    line-height: 0;
    z-index: 1;
  }
  .line__all img {
    display: block;
    width: 100%;
    height: auto;
  }
  .line__sp {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 22.4375rem;
    line-height: 0;
    z-index: 2;
  }
  .line__sp img {
    display: block;
    width: 100%;
    height: auto;
  }
}
/*==============================================================================
Privacy
============================================================================= */
@media screen and (max-width: 750px) {
  .privacy {
    line-height: 0;
    background: #f5fafe;
  }
  .privacy__heading {
    margin: 0;
    width: 30.78125rem;
    padding-top: 5rem;
    margin-bottom: 3.125rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .privacy__heading img {
    width: 100%;
    height: auto;
  }
  .privacy__img {
    width: 41.5rem;
    padding-left: 1.625rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .privacy__img img {
    width: 100%;
    height: auto;
  }
  .privacy__text {
    margin-top: 0.9375rem;
    margin-bottom: 5.4375rem;
    background: #f5fafe;
  }
  .privacy__text p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 2.625rem;
    letter-spacing: 0.06em;
    text-align: center;
    color: #333;
  }
  .privacy__text-accent {
    color: #df6484;
  }
  .privacy__box {
    position: relative;
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.375rem;
  }
  .privacy__box-more {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 12.1875rem;
    background: #f5fafe;
    z-index: 1;
    line-height: 0;
  }
  .privacy__box-more img {
    width: 10.71875rem;
  }
  .privacy__box-frame {
    border: 1px solid #0c1e60;
    border-radius: 1.875rem;
    padding-top: 0.9375rem;
  }
  .privacy__box-content {
    width: 41.25rem;
    margin-inline: auto;
    padding-bottom: 2.25rem;
  }
  .privacy__box-title {
    width: 36.875rem;
    padding-left: 1.9375rem;
    margin-bottom: 1.0625rem;
    line-height: 0;
  }
  .privacy__box-title img {
    width: 100%;
    height: auto;
  }
  .privacy__box-text {
    margin: 0;
    padding-left: 1.375rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 2.625rem;
    letter-spacing: 0.06em;
    text-align: left;
    color: #333333;
  }
  .privacy__box-text sup {
    font-size: 1.02025rem;
    vertical-align: super;
    line-height: 0;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
  }
  .privacy__notes {
    width: 41.875rem;
    padding-bottom: 3.9375rem;
    margin-left: auto;
    margin-right: auto;
  }
  .privacy__notes p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: 0.08em;
    color: #777777;
  }
}
@media screen and (min-width: 751px) {
  .privacy {
    line-height: 0;
    background: #f5fafe;
  }
  .privacy__heading {
    margin: 0;
    width: 30.78125rem;
    padding-top: 5rem;
    margin-bottom: 3.125rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .privacy__heading img {
    width: 100%;
    height: auto;
  }
  .privacy__img {
    width: 41.5rem;
    padding-left: 1.625rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .privacy__img img {
    width: 100%;
    height: auto;
  }
  .privacy__text {
    margin-top: 0.9375rem;
    margin-bottom: 5.4375rem;
    background: #f5fafe;
  }
  .privacy__text p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 2.625rem;
    letter-spacing: 0.06em;
    text-align: center;
    color: #333;
  }
  .privacy__text-accent {
    color: #df6484;
  }
  .privacy__box {
    position: relative;
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.375rem;
  }
  .privacy__box-more {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 12.1875rem;
    background: #f5fafe;
    z-index: 1;
    line-height: 0;
  }
  .privacy__box-more img {
    width: 10.71875rem;
  }
  .privacy__box-frame {
    border: 1px solid #0c1e60;
    border-radius: 1.875rem;
    padding-top: 0.9375rem;
  }
  .privacy__box-content {
    width: 41.25rem;
    margin-inline: auto;
    padding-bottom: 2.25rem;
  }
  .privacy__box-title {
    width: 36.875rem;
    padding-left: 1.9375rem;
    margin-bottom: 1.0625rem;
    line-height: 0;
  }
  .privacy__box-title img {
    width: 100%;
    height: auto;
  }
  .privacy__box-text {
    margin: 0;
    padding-left: 1.375rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 2.625rem;
    letter-spacing: 0.06em;
    text-align: left;
    color: #333333;
  }
  .privacy__box-text sup {
    font-size: 1.02025rem;
    vertical-align: super;
    line-height: 0;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
  }
  .privacy__notes {
    width: 41.875rem;
    padding-bottom: 3.9375rem;
    margin-left: auto;
    margin-right: auto;
  }
  .privacy__notes p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: 0.08em;
    color: #777777;
  }
}
/*==============================================================================
Step
============================================================================= */
@media screen and (max-width: 750px) {
  .step {
    line-height: 0;
  }
  .step__inner {
    background: url(../images/step_bg.webp) no-repeat top center;
    background-size: 100% auto;
  }
  .step__title {
    width: 26.375rem;
    margin: 0;
    margin-left: 4.0625rem;
    padding-top: 4.3125rem;
    margin-bottom: 4.875rem;
    line-height: 0;
  }
  .step__title img {
    width: 100%;
    height: auto;
  }
  .step__list {
    width: 100%;
  }
  .step__item {
    margin-bottom: 2.75rem;
  }
  .step__item:last-child {
    margin-bottom: 0;
  }
  .step__item-bar {
    width: 31.5rem;
    line-height: 0;
  }
  .step__item-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.0625rem;
       -moz-column-gap: 1.0625rem;
            column-gap: 1.0625rem;
    margin-top: 1.5625rem;
  }
  .step__item-text {
    width: 32.1875rem;
    padding-left: 4.0625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: normal;
  }
  .step__item-title {
    margin-bottom: 1.0625rem;
    line-height: 0;
  }
  .step__item:nth-child(2) .step__item-title {
    width: 12.875rem;
  }
  .step__item:nth-child(2) .step__item-img {
    width: 8.34375rem;
    margin-top: 1.75rem;
    margin-left: 1.1875rem;
  }
  .step__item:nth-child(3) .step__item-title {
    width: 20.84375rem;
  }
  .step__item-desc {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 2.625rem;
    letter-spacing: 0.06em;
    color: #333;
  }
  .step__item-desc sup {
    font-size: 1.02025rem;
    vertical-align: super;
    line-height: 0;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
  }
  .step__item-img {
    width: 11.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    line-height: 0;
  }
  .step__item:first-child .step__item-img {
    margin-top: 1.5625rem;
  }
  .step__notes {
    width: 38.75rem;
    margin-top: 1.25rem;
    margin-inline: auto;
    padding-top: 0;
    padding-bottom: 5.9375rem;
    background: #e0f5f6;
  }
  .step__notes p {
    width: 100%;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.125rem;
    line-height: 1.5625rem;
    letter-spacing: 0.08em;
    color: #777777;
  }
}
@media screen and (min-width: 751px) {
  .step {
    line-height: 0;
  }
  .step__inner {
    background: url(../images/step_bg.webp) no-repeat top center;
    background-size: 100% auto;
  }
  .step__title {
    width: 26.375rem;
    margin: 0;
    margin-left: 4.0625rem;
    padding-top: 4.3125rem;
    margin-bottom: 4.875rem;
    line-height: 0;
  }
  .step__title img {
    width: 100%;
    height: auto;
  }
  .step__list {
    width: 100%;
  }
  .step__item {
    margin-bottom: 2.75rem;
  }
  .step__item:last-child {
    margin-bottom: 0;
  }
  .step__item-bar {
    width: 31.5rem;
    line-height: 0;
  }
  .step__item-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.0625rem;
       -moz-column-gap: 1.0625rem;
            column-gap: 1.0625rem;
    margin-top: 1.5625rem;
  }
  .step__item-text {
    width: 32.1875rem;
    padding-left: 4.0625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: normal;
  }
  .step__item-title {
    margin-bottom: 1.0625rem;
    line-height: 0;
  }
  .step__item:nth-child(2) .step__item-title {
    width: 12.875rem;
  }
  .step__item:nth-child(2) .step__item-img {
    width: 8.34375rem;
    margin-top: 1.75rem;
    margin-left: 1.1875rem;
  }
  .step__item:nth-child(3) .step__item-title {
    width: 20.84375rem;
  }
  .step__item-desc {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 2.625rem;
    letter-spacing: 0.06em;
    color: #333;
  }
  .step__item-desc sup {
    font-size: 1.02025rem;
    vertical-align: super;
    line-height: 0;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
  }
  .step__item-img {
    width: 11.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    line-height: 0;
  }
  .step__item:first-child .step__item-img {
    margin-top: 1.5625rem;
  }
  .step__notes {
    width: 38.75rem;
    margin-top: 1.25rem;
    margin-inline: auto;
    padding-top: 0;
    padding-bottom: 5.9375rem;
    background: #e0f5f6;
  }
  .step__notes p {
    width: 100%;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.125rem;
    line-height: 1.5625rem;
    letter-spacing: 0.08em;
    color: #777777;
  }
}
/*==============================================================================
Cta
============================================================================= */
@media screen and (max-width: 750px) {
  .cta {
    padding-top: 2.375rem;
    padding-bottom: 2.0625rem;
    background: -webkit-gradient(linear, left bottom, left top, from(#004487), to(#012b55));
    background: linear-gradient(0deg, #004487 0%, #012b55 100%);
  }
  .cta__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .cta__img {
    width: 36.28125rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
    line-height: 0;
  }
  .cta__img img {
    width: 100%;
    height: auto;
  }
  .cta__btn {
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .cta__btn a {
    display: block;
  }
  .cta__btn img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 751px) {
  .cta {
    padding-top: 2.375rem;
    padding-bottom: 2.0625rem;
    background: -webkit-gradient(linear, left bottom, left top, from(#004487), to(#012b55));
    background: linear-gradient(0deg, #004487 0%, #012b55 100%);
  }
  .cta__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .cta__img {
    width: 36.28125rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
    line-height: 0;
  }
  .cta__img img {
    width: 100%;
    height: auto;
  }
  .cta__btn {
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .cta__btn a {
    display: block;
  }
  .cta__btn img {
    width: 100%;
    height: auto;
  }
}
/*==============================================================================
Results
============================================================================= */
@media screen and (max-width: 750px) {
  .results {
    line-height: 0;
  }
  .results__inner {
    background: url(../images/results_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .results__title {
    width: 41.8125rem;
    margin: 0 auto;
    padding-top: 3.625rem;
    padding-bottom: 0.625rem;
    line-height: 0;
  }
  .results__title img {
    width: 100%;
    height: auto;
  }
  .results__cases {
    width: 44.375rem;
    padding-bottom: 3.1875rem;
    margin-inline: auto;
    line-height: 0;
  }
  .results__cases img {
    display: block;
    width: 43.5625rem;
    margin-left: 0.125rem;
    margin-right: auto;
  }
  .results__notes {
    width: 41.875rem;
    margin-top: -5.875rem;
    padding-bottom: 4.5rem;
    margin-inline: auto;
    line-height: normal;
  }
  .results__notes p {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.1875rem;
    line-height: 1.5rem;
    letter-spacing: 0.04em;
    color: #ffffff;
  }
}
@media screen and (min-width: 751px) {
  .results {
    line-height: 0;
  }
  .results__inner {
    background: url(../images/results_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .results__title {
    width: 41.8125rem;
    margin: 0 auto;
    padding-top: 3.625rem;
    padding-bottom: 0.625rem;
    line-height: 0;
  }
  .results__title img {
    width: 100%;
    height: auto;
  }
  .results__cases {
    width: 44.375rem;
    padding-bottom: 3.1875rem;
    margin-inline: auto;
    line-height: 0;
  }
  .results__cases img {
    display: block;
    width: 43.5625rem;
    margin-left: 0.125rem;
    margin-right: auto;
  }
  .results__notes {
    width: 41.875rem;
    margin-top: -5.875rem;
    padding-bottom: 4.5rem;
    margin-inline: auto;
    line-height: normal;
  }
  .results__notes p {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.1875rem;
    line-height: 1.5rem;
    letter-spacing: 0.04em;
    color: #ffffff;
  }
}
/*==============================================================================
Satisfaction
============================================================================= */
@media screen and (max-width: 750px) {
  .satisfaction {
    line-height: 0;
    background: #e8faff;
  }
  .satisfaction__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .satisfaction__inner {
    max-width: 46.875rem;
    padding-top: 3.0625rem;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
    padding-right: 0.625rem;
  }
  .satisfaction__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-inline: auto;
  }
  .satisfaction__header-text {
    width: 25rem;
    margin-left: 0;
    padding-top: 0;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .satisfaction__title {
    line-height: 0;
    text-align: left;
    margin-bottom: 1.9375rem;
  }
  .satisfaction__title img {
    width: 22.75rem;
    height: 8.875rem;
  }
  .satisfaction__note {
    margin: 0;
    margin-left: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.1875rem;
    line-height: 1.375rem;
    letter-spacing: 0.1em;
    text-align: left;
    color: #333;
  }
  .satisfaction__header-chart {
    width: 20.1875rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    line-height: 0;
  }
  .satisfaction__slide {
    width: 41.875rem;
    padding-top: 2.3125rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
    overflow: visible;
  }
  .satisfaction__slide .splide__track {
    overflow: visible;
  }
  .satisfaction__slide .splide__list {
    overflow: visible;
  }
  .satisfaction__slide .splide__slide {
    overflow: visible;
  }
  .satisfaction__slide .splide__pagination {
    position: static;
    margin-top: 1.8125rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.1875rem;
    line-height: 1;
  }
  .satisfaction__slide .splide__pagination__page {
    width: 1.3125rem;
    height: 1.3125rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .satisfaction__slide .splide__pagination__page.is-active {
    background: #009ccb;
    -webkit-transform: none;
            transform: none;
  }
  .satisfaction__card {
    width: 41.875rem;
    margin-inline: auto;
    overflow: visible;
  }
  .satisfaction__card-panel {
    border-radius: 1.25rem;
    background: #fff;
    overflow: visible;
  }
  .satisfaction__card-body {
    width: 34.375rem;
    margin-inline: auto;
    line-height: normal;
  }
  .satisfaction__card-number {
    position: relative;
    z-index: 1;
    top: -2.5rem;
    padding-bottom: 0;
    line-height: 0;
    text-align: left;
  }
  .satisfaction__card-number img {
    height: 5.5625rem;
    width: auto;
  }
  .satisfaction__card-photo, .satisfaction__card-heading {
    line-height: 0;
  }
  .satisfaction__card-photo img, .satisfaction__card-heading img {
    width: 100%;
    height: auto;
  }
  .satisfaction__card-photo {
    margin-top: -0.75rem;
    margin-bottom: 2.8125rem;
  }
  .satisfaction__card-heading {
    margin-bottom: 1.5rem;
  }
  .satisfaction__card-text {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.749375rem;
    line-height: 2.93625rem;
    color: #333;
  }
  .satisfaction__card-name {
    margin: 0;
    padding-bottom: 4rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.5;
    text-align: right;
    color: #333;
  }
}
@media screen and (min-width: 751px) {
  .satisfaction {
    line-height: 0;
    background: #e8faff;
  }
  .satisfaction__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .satisfaction__inner {
    max-width: 46.875rem;
    padding-top: 3.0625rem;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
    padding-right: 0.625rem;
  }
  .satisfaction__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-inline: auto;
  }
  .satisfaction__header-text {
    width: 25rem;
    margin-left: 0;
    padding-top: 0;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .satisfaction__title {
    line-height: 0;
    text-align: left;
    margin-bottom: 1.9375rem;
  }
  .satisfaction__title img {
    width: 22.75rem;
    height: 8.875rem;
  }
  .satisfaction__note {
    margin: 0;
    margin-left: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.1875rem;
    line-height: 1.375rem;
    letter-spacing: 0.1em;
    text-align: left;
    color: #333;
  }
  .satisfaction__header-chart {
    width: 20.1875rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    line-height: 0;
  }
  .satisfaction__slide {
    width: 41.875rem;
    padding-top: 2.3125rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
    overflow: visible;
  }
  .satisfaction__slide .splide__track {
    overflow: visible;
  }
  .satisfaction__slide .splide__list {
    overflow: visible;
  }
  .satisfaction__slide .splide__slide {
    overflow: visible;
  }
  .satisfaction__slide .splide__pagination {
    position: static;
    margin-top: 1.8125rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.1875rem;
    line-height: 1;
  }
  .satisfaction__slide .splide__pagination__page {
    width: 1.3125rem;
    height: 1.3125rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .satisfaction__slide .splide__pagination__page.is-active {
    background: #009ccb;
    -webkit-transform: none;
            transform: none;
  }
  .satisfaction__card {
    width: 41.875rem;
    margin-inline: auto;
    overflow: visible;
  }
  .satisfaction__card-panel {
    border-radius: 1.25rem;
    background: #fff;
    overflow: visible;
  }
  .satisfaction__card-body {
    width: 34.375rem;
    margin-inline: auto;
    line-height: normal;
  }
  .satisfaction__card-number {
    position: relative;
    z-index: 1;
    top: -2.5rem;
    padding-bottom: 0;
    line-height: 0;
    text-align: left;
  }
  .satisfaction__card-number img {
    height: 5.5625rem;
    width: auto;
  }
  .satisfaction__card-photo, .satisfaction__card-heading {
    line-height: 0;
  }
  .satisfaction__card-photo img, .satisfaction__card-heading img {
    width: 100%;
    height: auto;
  }
  .satisfaction__card-photo {
    margin-top: -0.75rem;
    margin-bottom: 2.8125rem;
  }
  .satisfaction__card-heading {
    margin-bottom: 1.5rem;
  }
  .satisfaction__card-text {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.749375rem;
    line-height: 2.93625rem;
    color: #333;
  }
  .satisfaction__card-name {
    margin: 0;
    padding-bottom: 4rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.5;
    text-align: right;
    color: #333;
  }
  .satisfaction__inner {
    overflow-x: hidden;
  }
  .satisfaction__slide {
    overflow-x: hidden;
  }
}
/*==============================================================================
Media
============================================================================= */
@media screen and (max-width: 750px) {
  .media {
    line-height: 0;
    position: relative;
  }
  .media__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .media__visual {
    position: relative;
    width: 46.875rem;
    height: 37.3125rem;
    margin-inline: auto;
  }
  .media__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
  }
  .media__bg img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .media__title {
    position: absolute;
    top: 3.75rem;
    left: 0;
    right: 0;
    width: 33.78125rem;
    margin-inline: auto;
    line-height: 0;
    z-index: 1;
  }
  .media__title img {
    display: block;
    width: 100%;
    height: auto;
  }
  .media__item {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 36.4375rem;
    margin-inline: auto;
    line-height: 0;
    z-index: 1;
  }
  .media__item img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 751px) {
  .media {
    line-height: 0;
    position: relative;
  }
  .media__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .media__visual {
    position: relative;
    width: 46.875rem;
    height: 37.3125rem;
    margin-inline: auto;
  }
  .media__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
  }
  .media__bg img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .media__title {
    position: absolute;
    top: 3.75rem;
    left: 0;
    right: 0;
    width: 33.78125rem;
    margin-inline: auto;
    line-height: 0;
    z-index: 1;
  }
  .media__title img {
    display: block;
    width: 100%;
    height: auto;
  }
  .media__item {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 36.4375rem;
    margin-inline: auto;
    line-height: 0;
    z-index: 1;
  }
  .media__item img {
    display: block;
    width: 100%;
    height: auto;
  }
}
/*==============================================================================
Medicine
============================================================================= */
@media screen and (max-width: 750px) {
  .medicine {
    line-height: 0;
  }
  .medicine__heading {
    margin: 0;
    width: 32.8125rem;
    margin-top: 5.125rem;
    margin-bottom: 3.25rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .medicine__heading img {
    width: 100%;
    height: auto;
  }
  .medicine__slide-wrap {
    padding-bottom: 4.9375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .medicine__slide {
    width: 100%;
    line-height: 0;
  }
  .medicine__slide .splide__track {
    overflow: hidden;
  }
  .medicine__slide .splide__slide {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .medicine__slide .splide__pagination {
    position: static;
    margin-top: 2.25rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.1875rem;
    line-height: 1;
  }
  .medicine__slide .splide__pagination__page {
    width: 1.3125rem;
    height: 1.3125rem;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 0.125rem solid #0e2e65;
    border-radius: 50%;
    background: #ffffff;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .medicine__slide .splide__pagination__page.is-active {
    background: #0e2e65;
    -webkit-transform: none;
            transform: none;
  }
  .medicine__card {
    width: 41.875rem;
    margin-inline: auto;
  }
  .medicine__card-panel {
    border-radius: 1.25rem;
    background: #ffffff;
    -webkit-box-shadow: inset 0 0 0 0.125rem #0e2e65;
            box-shadow: inset 0 0 0 0.125rem #0e2e65;
  }
  .medicine__card-body {
    width: 34.375rem;
    margin-inline: auto;
    padding-top: 2.5625rem;
    padding-bottom: 3.625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: normal;
  }
  .medicine__card-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 18.5rem;
    margin-bottom: 1.4375rem;
    line-height: 0;
  }
  .medicine__card-product img {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto;
  }
  .medicine__card-product img[src*=ecclock_img] {
    width: 16.3125rem;
    height: 17.625rem;
  }
  .medicine__card-product img[src*=probanthine_img] {
    width: 16.3125rem;
    height: 17.625rem;
  }
  .medicine__card-product img[src*=apohyd_img] {
    width: 16.25rem;
    height: 18rem;
  }
  .medicine__card-product img[src*=aluminum_img] {
    width: 16.3125rem;
    height: 17.4375rem;
  }
  .medicine__card-product img[src*=rapifort_img] {
    width: 16.3125rem;
    height: 16.3125rem;
  }
  .medicine__card-catch, .medicine__card-lead {
    line-height: 0;
  }
  .medicine__card-catch img, .medicine__card-lead img {
    width: 100%;
    height: auto;
    display: block;
  }
  .medicine__card-note {
    margin-bottom: 2.4375rem;
    line-height: 0;
  }
  .medicine__card-note img {
    display: block;
    width: auto;
    height: auto;
  }
  .medicine__card-note img[src*=ecclock_note] {
    width: 33.5rem;
    height: 3.8125rem;
  }
  .medicine__card-note img[src*=probanthine_note] {
    width: 25.9375rem;
    height: 1.5rem;
  }
  .medicine__card-note img[src*=apohyd_note] {
    width: 33.25rem;
    height: 3.8125rem;
  }
  .medicine__card-note img[src*=aluminum_note] {
    width: 33.0625rem;
    height: 6rem;
  }
  .medicine__card-note img[src*=rapifort_note] {
    width: 32.875rem;
    height: 3.8125rem;
  }
  .medicine__card-catch {
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 751px) {
  .medicine {
    line-height: 0;
  }
  .medicine__heading {
    margin: 0;
    width: 32.8125rem;
    margin-top: 5.125rem;
    margin-bottom: 3.25rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .medicine__heading img {
    width: 100%;
    height: auto;
  }
  .medicine__slide-wrap {
    padding-bottom: 4.9375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .medicine__slide {
    width: 100%;
    line-height: 0;
  }
  .medicine__slide .splide__track {
    overflow: hidden;
  }
  .medicine__slide .splide__slide {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .medicine__slide .splide__pagination {
    position: static;
    margin-top: 2.25rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.1875rem;
    line-height: 1;
  }
  .medicine__slide .splide__pagination__page {
    width: 1.3125rem;
    height: 1.3125rem;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 0.125rem solid #0e2e65;
    border-radius: 50%;
    background: #ffffff;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .medicine__slide .splide__pagination__page.is-active {
    background: #0e2e65;
    -webkit-transform: none;
            transform: none;
  }
  .medicine__card {
    width: 41.875rem;
    margin-inline: auto;
  }
  .medicine__card-panel {
    border-radius: 1.25rem;
    background: #ffffff;
    -webkit-box-shadow: inset 0 0 0 0.125rem #0e2e65;
            box-shadow: inset 0 0 0 0.125rem #0e2e65;
  }
  .medicine__card-body {
    width: 34.375rem;
    margin-inline: auto;
    padding-top: 2.5625rem;
    padding-bottom: 3.625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: normal;
  }
  .medicine__card-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 18.5rem;
    margin-bottom: 1.4375rem;
    line-height: 0;
  }
  .medicine__card-product img {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto;
  }
  .medicine__card-product img[src*=ecclock_img] {
    width: 16.3125rem;
    height: 17.625rem;
  }
  .medicine__card-product img[src*=probanthine_img] {
    width: 16.3125rem;
    height: 17.625rem;
  }
  .medicine__card-product img[src*=apohyd_img] {
    width: 16.25rem;
    height: 18rem;
  }
  .medicine__card-product img[src*=aluminum_img] {
    width: 16.3125rem;
    height: 17.4375rem;
  }
  .medicine__card-product img[src*=rapifort_img] {
    width: 16.3125rem;
    height: 16.3125rem;
  }
  .medicine__card-catch, .medicine__card-lead {
    line-height: 0;
  }
  .medicine__card-catch img, .medicine__card-lead img {
    width: 100%;
    height: auto;
    display: block;
  }
  .medicine__card-note {
    margin-bottom: 2.4375rem;
    line-height: 0;
  }
  .medicine__card-note img {
    display: block;
    width: auto;
    height: auto;
  }
  .medicine__card-note img[src*=ecclock_note] {
    width: 33.5rem;
    height: 3.8125rem;
  }
  .medicine__card-note img[src*=probanthine_note] {
    width: 25.9375rem;
    height: 1.5rem;
  }
  .medicine__card-note img[src*=apohyd_note] {
    width: 33.25rem;
    height: 3.8125rem;
  }
  .medicine__card-note img[src*=aluminum_note] {
    width: 33.0625rem;
    height: 6rem;
  }
  .medicine__card-note img[src*=rapifort_note] {
    width: 32.875rem;
    height: 3.8125rem;
  }
  .medicine__card-catch {
    margin-bottom: 1.875rem;
  }
}
/*==============================================================================
Plan
============================================================================= */
@media screen and (max-width: 750px) {
  .plan {
    line-height: 0;
    background: #e8faff;
  }
  .plan__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .plan__header {
    padding-top: 5rem;
  }
  .plan__title {
    width: 43.375rem;
    margin-inline: auto;
  }
  .plan__title img {
    width: 100%;
    height: auto;
    display: block;
  }
  .plan__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.125rem;
    margin-top: 3.125rem;
  }
  .plan__card {
    width: 41.875rem;
    margin-inline: auto;
  }
  .plan__card-panel {
    border-radius: 1.25rem;
    background: #ffffff;
    -webkit-box-shadow: inset 0 0 0 0.125rem #009ccb;
            box-shadow: inset 0 0 0 0.125rem #009ccb;
    overflow: hidden;
  }
  .plan__card-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 6.125rem;
    background: #009ccb;
  }
  .plan__card-head img {
    display: block;
    width: auto;
    height: auto;
  }
  .plan__card-head img[src*=topical_title] {
    width: 16rem;
    height: 2.6875rem;
  }
  .plan__card-head img[src*=oral_title] {
    width: 13.3125rem;
    height: 2.6875rem;
  }
  .plan__card-head img[src*=underarm_title] {
    width: 13.625rem;
    height: 2.75rem;
  }
  .plan__card-head img[src*=hand_title] {
    width: 13.5rem;
    height: 2.6875rem;
  }
  .plan__card-head img[src*=premium_title] {
    width: 20.3125rem;
    height: 2.4375rem;
  }
  .plan__card-body {
    width: 36.875rem;
    margin-inline: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: normal;
  }
  .plan__card-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 17.75rem;
  }
  .plan__card-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 12.25rem;
    height: 12.875rem;
    margin-top: 0.9375rem;
    border-radius: 0.3125rem;
    background: #e8faff;
  }
  .plan__card-product img {
    display: block;
    width: auto;
    height: auto;
  }
  .plan__card-product img[src*=topical_img] {
    width: 3.875rem;
    height: 8.6875rem;
  }
  .plan__card-product img[src*=oral_img] {
    width: 10.6875rem;
    height: 8.0625rem;
  }
  .plan__card-product img[src*=underarm_img] {
    width: 8.625rem;
    height: 10.9375rem;
  }
  .plan__card-product img[src*=hand_img] {
    width: 7.1875rem;
    height: 11rem;
  }
  .plan__card-product img[src*=premium_img] {
    width: 9.875rem;
    height: 11.0625rem;
  }
  .plan__card-desc {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 22.875rem;
    margin-left: 1.75rem;
  }
  .plan__card-recommend {
    margin-top: 0.625rem;
    margin-bottom: 1.5625rem;
  }
  .plan__card-recommend img {
    display: block;
    width: 17.4375rem;
    height: auto;
  }
  .plan__card-comment img {
    display: block;
    width: auto;
    height: auto;
  }
  .plan__card-comment img[src*=topical_comment] {
    width: 22.875rem;
    height: 10.25rem;
  }
  .plan__card-comment img[src*=oral_comment] {
    width: 13.25rem;
    height: 3.8125rem;
  }
  .plan__card-comment img[src*=underarm_comment] {
    width: 18.875rem;
    height: 3.8125rem;
  }
  .plan__card-comment img[src*=hand_comment] {
    width: 16.25rem;
    height: 6rem;
  }
  .plan__card-comment img[src*=premium_comment] {
    width: 13.5rem;
    height: 9.3125rem;
  }
  .plan__card-detail {
    max-width: 36.875rem;
    margin-bottom: 1.8125rem;
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
    background: #e8faff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .plan__card--oral .plan__card-detail, .plan__card--underarm .plan__card-detail, .plan__card--hand .plan__card-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 6.625rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .plan__card--oral .plan__card-detail-inner, .plan__card--underarm .plan__card-detail-inner, .plan__card--hand .plan__card-detail-inner {
    width: 100%;
  }
  .plan__card--premium {
    margin-bottom: 3.4375rem;
  }
  .plan__card--premium .plan__card-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 8.125rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .plan__card--premium .plan__card-detail-inner {
    width: 100%;
  }
  .plan__card-detail-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 1.6875rem;
  }
  .plan__card-contents {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .plan__card-contents img {
    display: block;
    width: 10.5625rem;
    height: auto;
  }
  .plan__card-item {
    margin-left: 1.75rem;
  }
  .plan__card-item img {
    display: block;
    width: auto;
    height: auto;
  }
  .plan__card-item img[src*=topical_item] {
    width: 13.25rem;
    height: 1.4375rem;
  }
  .plan__card-item img[src*=oral_item] {
    width: 21.6875rem;
    height: 3.5rem;
  }
  .plan__card-item img[src*=underarm_item] {
    width: 22.3125rem;
    height: 4.6875rem;
  }
  .plan__card-item img[src*=hand_item] {
    width: 21.8125rem;
    height: 5.3125rem;
  }
  .plan__card-item img[src*=premium_item] {
    width: 21.75rem;
    height: 6.1875rem;
  }
  .plan__card-price {
    max-width: 36.875rem;
    margin-bottom: 1.5rem;
  }
  .plan__card-price img {
    display: block;
    width: 100%;
    height: auto;
  }
  .plan__card-note {
    margin: 0;
    margin-bottom: 2.1875rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 100;
    font-size: 1.25rem;
    line-height: 1.75rem;
    letter-spacing: 0.1em;
    text-align: center;
    color: #666666;
  }
  .plan__fee {
    width: 41.875rem;
    margin-inline: auto;
  }
  .plan__fee img {
    display: block;
    width: 100%;
    height: auto;
  }
  .plan__notes {
    width: 41.875rem;
    margin-inline: auto;
    padding-top: 1.75rem;
    padding-bottom: 2.4375rem;
  }
  .plan__notes p {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #777777;
  }
}
@media screen and (min-width: 751px) {
  .plan {
    line-height: 0;
    background: #e8faff;
  }
  .plan__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .plan__header {
    padding-top: 5rem;
  }
  .plan__title {
    width: 43.375rem;
    margin-inline: auto;
  }
  .plan__title img {
    width: 100%;
    height: auto;
    display: block;
  }
  .plan__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.125rem;
    margin-top: 3.125rem;
  }
  .plan__card {
    width: 41.875rem;
    margin-inline: auto;
  }
  .plan__card-panel {
    border-radius: 1.25rem;
    background: #ffffff;
    -webkit-box-shadow: inset 0 0 0 0.125rem #009ccb;
            box-shadow: inset 0 0 0 0.125rem #009ccb;
    overflow: hidden;
  }
  .plan__card-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 6.125rem;
    background: #009ccb;
  }
  .plan__card-head img {
    display: block;
    width: auto;
    height: auto;
  }
  .plan__card-head img[src*=topical_title] {
    width: 16rem;
    height: 2.6875rem;
  }
  .plan__card-head img[src*=oral_title] {
    width: 13.3125rem;
    height: 2.6875rem;
  }
  .plan__card-head img[src*=underarm_title] {
    width: 13.625rem;
    height: 2.75rem;
  }
  .plan__card-head img[src*=hand_title] {
    width: 13.5rem;
    height: 2.6875rem;
  }
  .plan__card-head img[src*=premium_title] {
    width: 20.3125rem;
    height: 2.4375rem;
  }
  .plan__card-body {
    width: 36.875rem;
    margin-inline: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: normal;
  }
  .plan__card-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 17.75rem;
  }
  .plan__card-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 12.25rem;
    height: 12.875rem;
    margin-top: 0.9375rem;
    border-radius: 0.3125rem;
    background: #e8faff;
  }
  .plan__card-product img {
    display: block;
    width: auto;
    height: auto;
  }
  .plan__card-product img[src*=topical_img] {
    width: 3.875rem;
    height: 8.6875rem;
  }
  .plan__card-product img[src*=oral_img] {
    width: 10.6875rem;
    height: 8.0625rem;
  }
  .plan__card-product img[src*=underarm_img] {
    width: 8.625rem;
    height: 10.9375rem;
  }
  .plan__card-product img[src*=hand_img] {
    width: 7.1875rem;
    height: 11rem;
  }
  .plan__card-product img[src*=premium_img] {
    width: 9.875rem;
    height: 11.0625rem;
  }
  .plan__card-desc {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 22.875rem;
    margin-left: 1.75rem;
  }
  .plan__card-recommend {
    margin-top: 0.625rem;
    margin-bottom: 1.5625rem;
  }
  .plan__card-recommend img {
    display: block;
    width: 17.4375rem;
    height: auto;
  }
  .plan__card-comment img {
    display: block;
    width: auto;
    height: auto;
  }
  .plan__card-comment img[src*=topical_comment] {
    width: 22.875rem;
    height: 10.25rem;
  }
  .plan__card-comment img[src*=oral_comment] {
    width: 13.25rem;
    height: 3.8125rem;
  }
  .plan__card-comment img[src*=underarm_comment] {
    width: 18.875rem;
    height: 3.8125rem;
  }
  .plan__card-comment img[src*=hand_comment] {
    width: 16.25rem;
    height: 6rem;
  }
  .plan__card-comment img[src*=premium_comment] {
    width: 13.5rem;
    height: 9.3125rem;
  }
  .plan__card-detail {
    max-width: 36.875rem;
    margin-bottom: 1.8125rem;
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
    background: #e8faff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .plan__card--oral .plan__card-detail, .plan__card--underarm .plan__card-detail, .plan__card--hand .plan__card-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 6.625rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .plan__card--oral .plan__card-detail-inner, .plan__card--underarm .plan__card-detail-inner, .plan__card--hand .plan__card-detail-inner {
    width: 100%;
  }
  .plan__card--premium {
    margin-bottom: 3.4375rem;
  }
  .plan__card--premium .plan__card-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 8.125rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .plan__card--premium .plan__card-detail-inner {
    width: 100%;
  }
  .plan__card-detail-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 1.6875rem;
  }
  .plan__card-contents {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .plan__card-contents img {
    display: block;
    width: 10.5625rem;
    height: auto;
  }
  .plan__card-item {
    margin-left: 1.75rem;
  }
  .plan__card-item img {
    display: block;
    width: auto;
    height: auto;
  }
  .plan__card-item img[src*=topical_item] {
    width: 13.25rem;
    height: 1.4375rem;
  }
  .plan__card-item img[src*=oral_item] {
    width: 21.6875rem;
    height: 3.5rem;
  }
  .plan__card-item img[src*=underarm_item] {
    width: 22.3125rem;
    height: 4.6875rem;
  }
  .plan__card-item img[src*=hand_item] {
    width: 21.8125rem;
    height: 5.3125rem;
  }
  .plan__card-item img[src*=premium_item] {
    width: 21.75rem;
    height: 6.1875rem;
  }
  .plan__card-price {
    max-width: 36.875rem;
    margin-bottom: 1.5rem;
  }
  .plan__card-price img {
    display: block;
    width: 100%;
    height: auto;
  }
  .plan__card-note {
    margin: 0;
    margin-bottom: 2.1875rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 100;
    font-size: 1.25rem;
    line-height: 1.75rem;
    letter-spacing: 0.1em;
    text-align: center;
    color: #666666;
  }
  .plan__fee {
    width: 41.875rem;
    margin-inline: auto;
  }
  .plan__fee img {
    display: block;
    width: 100%;
    height: auto;
  }
  .plan__notes {
    width: 41.875rem;
    margin-inline: auto;
    padding-top: 1.75rem;
    padding-bottom: 2.4375rem;
  }
  .plan__notes p {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #777777;
  }
}
/*==============================================================================
Campaign
============================================================================= */
@media screen and (max-width: 750px) {
  .campaign {
    line-height: 0;
  }
  .campaign__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .campaign__inner {
    background: url(../images/campaign_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .campaign__first {
    width: 41.25rem;
    padding-top: 2.8125rem;
    margin-inline: auto;
    line-height: 0;
  }
  .campaign__zero {
    width: 41.875rem;
    margin-top: -1.125rem;
    margin-inline: auto;
    line-height: 0;
  }
  .campaign__zero picture {
    display: block;
    width: 38.6875rem;
    margin-left: auto;
    margin-right: 1.3125rem;
  }
  .campaign__target {
    width: 35.375rem;
    margin: 2.4375rem auto 0;
    line-height: 0;
  }
  .campaign__product {
    margin-top: 1.25rem;
    line-height: 0;
  }
  .campaign__notes {
    width: 41.875rem;
    margin-top: -4.0625rem;
    padding-left: 0.4375rem;
    padding-bottom: 2.5rem;
    margin-inline: auto;
    line-height: normal;
  }
  .campaign__notes p {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 100;
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: 0.14em;
    text-align: left;
    color: #ffffff;
  }
}
@media screen and (min-width: 751px) {
  .campaign {
    line-height: 0;
  }
  .campaign__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .campaign__inner {
    background: url(../images/campaign_bg.webp) no-repeat top center;
    background-size: 100% 100%;
  }
  .campaign__first {
    width: 41.25rem;
    padding-top: 2.8125rem;
    margin-inline: auto;
    line-height: 0;
  }
  .campaign__zero {
    width: 41.875rem;
    margin-top: -1.125rem;
    margin-inline: auto;
    line-height: 0;
  }
  .campaign__zero picture {
    display: block;
    width: 38.6875rem;
    margin-left: auto;
    margin-right: 1.3125rem;
  }
  .campaign__target {
    width: 35.375rem;
    margin: 2.4375rem auto 0;
    line-height: 0;
  }
  .campaign__product {
    margin-top: 1.25rem;
    line-height: 0;
  }
  .campaign__notes {
    width: 41.875rem;
    margin-top: -4.0625rem;
    padding-left: 0.4375rem;
    padding-bottom: 2.5rem;
    margin-inline: auto;
    line-height: normal;
  }
  .campaign__notes p {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 100;
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: 0.14em;
    text-align: left;
    color: #ffffff;
  }
}
/*==============================================================================
Faq
============================================================================= */
@media screen and (max-width: 750px) {
  .faq {
    background: #e8faff;
  }
  .faq__inner {
    padding-top: 6rem;
    padding-bottom: 7.0625rem;
  }
  .faq__heading {
    margin: 0;
    width: 44.1875rem;
    margin-bottom: 2.4375rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .faq__heading img {
    width: 100%;
    height: auto;
  }
  .faq__list {
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
  }
  .faq__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2.75rem;
  }
  .faq__item:last-child {
    margin-bottom: 0;
  }
  .faq__item.is-open .faq__btn-icon--plus {
    display: none;
  }
  .faq__item.is-open .faq__btn-icon--minus {
    display: block;
  }
  .faq__question {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    min-height: 8.375rem;
    padding-top: 1.25rem;
    padding-right: 6.625rem;
    padding-bottom: 1.25rem;
    padding-left: 2.8125rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none;
    border-radius: 1.3125rem;
    background: #ffffff;
    -webkit-box-shadow: 0 0 1.5rem rgba(133, 182, 196, 0.2);
            box-shadow: 0 0 1.5rem rgba(133, 182, 196, 0.2);
    text-align: left;
    cursor: pointer;
  }
  .faq__q-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 3.1875rem;
    margin-right: 2.1875rem;
    line-height: 0;
  }
  .faq__q-icon img {
    width: 3.1875rem;
    height: auto;
  }
  .faq__q-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 26.25rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 2.625rem;
    letter-spacing: 0.04rem;
    color: #009ccb;
  }
  .faq__btn {
    position: absolute;
    top: 50%;
    right: 3rem;
    width: 3.625rem;
    height: 3.625rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    line-height: 0;
  }
  .faq__btn-icon {
    width: 3.625rem;
    height: auto;
  }
  .faq__btn-icon--plus {
    display: block;
  }
  .faq__btn-icon--minus {
    display: none;
  }
  .faq__answer {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
  }
  .faq__answer-inner {
    width: 36.9375rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.6875rem;
    padding-bottom: 0.9375rem;
  }
  .faq__answer-inner p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.625rem;
    line-height: 2.8125rem;
    letter-spacing: 0.04rem;
    color: #333333;
  }
}
@media screen and (min-width: 751px) {
  .faq {
    background: #e8faff;
  }
  .faq__inner {
    padding-top: 6rem;
    padding-bottom: 7.0625rem;
  }
  .faq__heading {
    margin: 0;
    width: 44.1875rem;
    margin-bottom: 2.4375rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
  }
  .faq__heading img {
    width: 100%;
    height: auto;
  }
  .faq__list {
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
  }
  .faq__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2.75rem;
  }
  .faq__item:last-child {
    margin-bottom: 0;
  }
  .faq__item.is-open .faq__btn-icon--plus {
    display: none;
  }
  .faq__item.is-open .faq__btn-icon--minus {
    display: block;
  }
  .faq__question {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    min-height: 8.375rem;
    padding-top: 1.25rem;
    padding-right: 6.625rem;
    padding-bottom: 1.25rem;
    padding-left: 2.8125rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none;
    border-radius: 1.3125rem;
    background: #ffffff;
    -webkit-box-shadow: 0 0 1.5rem rgba(133, 182, 196, 0.2);
            box-shadow: 0 0 1.5rem rgba(133, 182, 196, 0.2);
    text-align: left;
    cursor: pointer;
  }
  .faq__q-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 3.1875rem;
    margin-right: 2.1875rem;
    line-height: 0;
  }
  .faq__q-icon img {
    width: 3.1875rem;
    height: auto;
  }
  .faq__q-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 26.25rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 2.625rem;
    letter-spacing: 0.04rem;
    color: #009ccb;
  }
  .faq__btn {
    position: absolute;
    top: 50%;
    right: 3rem;
    width: 3.625rem;
    height: 3.625rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    line-height: 0;
  }
  .faq__btn-icon {
    width: 3.625rem;
    height: auto;
  }
  .faq__btn-icon--plus {
    display: block;
  }
  .faq__btn-icon--minus {
    display: none;
  }
  .faq__answer {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
  }
  .faq__answer-inner {
    width: 36.9375rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.6875rem;
    padding-bottom: 0.9375rem;
  }
  .faq__answer-inner p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.625rem;
    line-height: 2.8125rem;
    letter-spacing: 0.04rem;
    color: #333333;
  }
}
/*==============================================================================
Closing
============================================================================= */
@media screen and (max-width: 750px) {
  .closing {
    position: relative;
    height: 90.625rem;
  }
  .closing__inner {
    position: relative;
    height: 100%;
  }
  .closing__main {
    position: relative;
    z-index: 1;
    height: 100%;
    background: url(../images/kv_bg.webp) no-repeat top center/contain;
  }
  .closing__main-catch-sub {
    position: absolute;
    top: 13.9375rem;
    left: 1.5rem;
    width: 11rem;
  }
  .closing__main-clinical {
    position: absolute;
    top: 12.75rem;
    right: 0.5625rem;
    width: 15.4375rem;
  }
  .closing__main-catch-main {
    position: absolute;
    top: 26.3125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 42.1875rem;
  }
  .closing__summary {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 41.625rem;
    padding-top: 0.3125rem;
    padding-right: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url(../images/kv_summary_bg-sp.webp) no-repeat center bottom/100% 41.25rem;
    z-index: 2;
  }
  .closing__summary-body {
    width: 41.875rem;
    margin-inline: auto;
  }
  .closing__summary-prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 41rem;
    margin-inline: auto;
    margin-left: 0;
    padding-top: 0;
    margin-bottom: 0.5625rem;
  }
  .closing__summary-phone {
    width: 11.4375rem;
    margin-top: -3.0625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .closing__summary-day {
    width: 13.25rem;
    margin-top: 3.125rem;
    margin-left: 1.9375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .closing__summary-divider {
    width: 4px;
    background: repeating-linear-gradient(to bottom, #9eaec9 0, #9eaec9 2px, transparent 2px, transparent 4px);
    height: 8.0625rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 3.125rem;
    margin-left: 0.5625rem;
    margin-right: 0.4375rem;
    margin-bottom: 0.5625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .closing__summary-fee {
    width: 13.25rem;
    margin-top: 3.125rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .closing__summary-plan {
    width: 42.9375rem;
    margin-inline: auto;
    margin-left: -0.5rem;
    margin-bottom: 1.25rem;
  }
  .closing__summary-btn {
    width: 41.875rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 751px) {
  .closing {
    position: relative;
    height: 90.625rem;
  }
  .closing__inner {
    position: relative;
    height: 100%;
  }
  .closing__main {
    position: relative;
    z-index: 1;
    height: 100%;
    background: url(../images/kv_bg.webp) no-repeat top center/contain;
  }
  .closing__main-catch-sub {
    position: absolute;
    top: 13.9375rem;
    left: 1.5rem;
    width: 11rem;
  }
  .closing__main-clinical {
    position: absolute;
    top: 12.75rem;
    right: 0.5625rem;
    width: 15.4375rem;
  }
  .closing__main-catch-main {
    position: absolute;
    top: 26.3125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 42.1875rem;
  }
  .closing__summary {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 41.625rem;
    padding-top: 0.3125rem;
    padding-right: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url(../images/kv_summary_bg-sp.webp) no-repeat center bottom/100% 41.25rem;
    z-index: 2;
  }
  .closing__summary-body {
    width: 41.875rem;
    margin-inline: auto;
  }
  .closing__summary-prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 41rem;
    margin-inline: auto;
    margin-left: 0;
    padding-top: 0;
    margin-bottom: 0.5625rem;
  }
  .closing__summary-phone {
    width: 11.4375rem;
    margin-top: -3.0625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .closing__summary-day {
    width: 13.25rem;
    margin-top: 3.125rem;
    margin-left: 1.9375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .closing__summary-divider {
    width: 4px;
    background: repeating-linear-gradient(to bottom, #9eaec9 0, #9eaec9 2px, transparent 2px, transparent 4px);
    height: 8.0625rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 3.125rem;
    margin-left: 0.5625rem;
    margin-right: 0.4375rem;
    margin-bottom: 0.5625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .closing__summary-fee {
    width: 13.25rem;
    margin-top: 3.125rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .closing__summary-plan {
    width: 42.9375rem;
    margin-inline: auto;
    margin-left: -0.5rem;
    margin-bottom: 1.25rem;
  }
  .closing__summary-btn {
    width: 41.875rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 750px) {
  .closing__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .closing__logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 13.6875rem;
    padding-top: 2.5rem;
    padding-left: 2.5rem;
    line-height: 0;
    z-index: 2;
  }
  .closing__logo img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 751px) {
  .closing__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  .closing__logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 13.6875rem;
    padding-top: 2.5rem;
    padding-left: 2.5rem;
    line-height: 0;
    z-index: 2;
  }
  .closing__logo img {
    width: 100%;
    height: auto;
  }
}
/*==============================================================================
Notes
============================================================================= */
@media screen and (max-width: 750px) {
  .notes__inner {
    padding-top: 6.5rem;
    padding-bottom: 7.1875rem;
  }
  .notes__title {
    margin: 0 0 2.25rem;
    font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 3.2525rem;
    letter-spacing: 0.2rem;
    color: #333333;
    text-align: center;
  }
  .notes__body {
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
  }
  .notes__body p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.5rem;
    line-height: 2.375rem;
    letter-spacing: 0.15rem;
    color: #333333;
  }
  .notes__body p + p {
    margin-top: 2.375rem;
  }
}
@media screen and (min-width: 751px) {
  .notes__inner {
    padding-top: 6.5rem;
    padding-bottom: 7.1875rem;
  }
  .notes__title {
    margin: 0 0 2.25rem;
    font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 3.2525rem;
    letter-spacing: 0.2rem;
    color: #333333;
    text-align: center;
  }
  .notes__body {
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
  }
  .notes__body p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.5rem;
    line-height: 2.375rem;
    letter-spacing: 0.15rem;
    color: #333333;
  }
  .notes__body p + p {
    margin-top: 2.375rem;
  }
}
/*==============================================================================
Footer
============================================================================= */
@media screen and (max-width: 750px) {
  .footer--bg {
    background: #fff;
  }
  .footer__inner {
    padding-bottom: 2.5rem;
  }
  .footer__logo {
    width: 17rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4.5625rem;
    line-height: 0;
  }
  .footer__logo img {
    width: 100%;
    height: auto;
  }
  .footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.25rem;
  }
  .footer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 1.375rem;
    line-height: 1.5rem;
    letter-spacing: 0.1rem;
    color: #333333;
  }
  .footer__item:not(:last-child)::after {
    content: "|";
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .footer__item a {
    color: inherit;
    text-decoration: none;
  }
  .footer__copyright {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: 0.06rem;
    text-align: center;
    color: #333333;
  }
}
@media screen and (min-width: 751px) {
  .footer--bg {
    background: #fff;
  }
  .footer__inner {
    padding-bottom: 2.5rem;
  }
  .footer__logo {
    width: 17rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4.5625rem;
    line-height: 0;
  }
  .footer__logo img {
    width: 100%;
    height: auto;
  }
  .footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 41.875rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.25rem;
  }
  .footer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 1.375rem;
    line-height: 1.5rem;
    letter-spacing: 0.1rem;
    color: #333333;
  }
  .footer__item:not(:last-child)::after {
    content: "|";
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .footer__item a {
    color: inherit;
    text-decoration: none;
  }
  .footer__copyright {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: 0.06rem;
    text-align: center;
    color: #333333;
  }
}
/*==============================================================================
Fixed Footer
============================================================================= */
@media screen and (max-width: 750px) {
  body.is-fixed-footer-visible {
    padding-bottom: 14rem;
  }
  .fixed-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12.875rem;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    background: #fff;
    z-index: 100;
  }
  .fixed-footer::before {
    content: "";
    position: absolute;
    top: -1.09375rem;
    left: 0;
    width: 100%;
    height: 1.09375rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
  }
  .fixed-footer.is-docked {
    position: relative;
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #eee;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: none;
            transform: none;
  }
  .fixed-footer.is-docked::before {
    display: none;
  }
  .fixed-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .fixed-footer.is-docked .fixed-footer__inner {
    width: 100%;
    max-width: 46.875rem;
    height: 12.875rem;
    margin-inline: auto;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #fff;
  }
  .fixed-footer__btn {
    display: block;
    width: 41.875rem;
    line-height: 0;
  }
  .fixed-footer__btn img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 751px) {
  body.is-fixed-footer-visible {
    padding-bottom: 14rem;
  }
  .fixed-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12.875rem;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    background: #fff;
    z-index: 100;
  }
  .fixed-footer::before {
    content: "";
    position: absolute;
    top: -1.09375rem;
    left: 0;
    width: 100%;
    height: 1.09375rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
  }
  .fixed-footer.is-docked {
    position: relative;
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #eee;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: none;
            transform: none;
  }
  .fixed-footer.is-docked::before {
    display: none;
  }
  .fixed-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .fixed-footer.is-docked .fixed-footer__inner {
    width: 100%;
    max-width: 46.875rem;
    height: 12.875rem;
    margin-inline: auto;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #fff;
  }
  .fixed-footer__btn {
    display: block;
    width: 41.875rem;
    line-height: 0;
  }
  .fixed-footer__btn img {
    width: 100%;
    height: auto;
  }
}