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

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

strong {
  font-weight: 700;
}

caption,
td,
th {
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

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

a img {
  border: none;
}

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

html {
  font-size: 100%;
  line-height: 1.5em;
}

* {
  box-sizing: border-box;
  word-break: break-word; /* 長い単語を強制的に折り返す */
  overflow-wrap: break-word; /* 同様の目的。対応ブラウザが広い */
  line-break: strict; /* 節での自然な改行を優先（日本語では特に有効） */
  white-space: normal; /* 普通の折り返し挙動に */
}

html {
  font-size: 100%;
  width: 100%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-size: min(0.694444vw, 62.5%);
}
@media screen and (max-width: 767.98px) {
  html {
    font-size: 2.66666vw;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  position: relative;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1e201f;
  font-size: 1.6rem;
  scroll-behavior: smooth;
}
body.is-fixed {
  overscroll-behavior-y: none;
  overflow: hidden;
}

div[id],
section[id] {
  scroll-margin-top: 2rem;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 767.98px) {
  .u-sp {
    display: block !important;
  }
}

.u-pc {
  display: block !important;
}
@media screen and (max-width: 767.98px) {
  .u-pc {
    display: none !important;
  }
}

.u-en {
  font-family: "Baskervville", serif;
}

.u-mon {
  font-family: "Montserrat", sans-serif;
}

.c-btn {
  border-radius: 1000px;
  background-color: #d81925;
  color: #fff;
  font-size: 2.4rem;
  display: grid;
  place-content: center;
  width: 100%;
  min-height: 8rem;
  text-decoration: none;
}
@media (any-hover) {
  .c-btn {
    transition: 0.3s;
  }
  .c-btn:hover {
    opacity: 0.7;
  }
}
.c-btn.u-size--small {
  min-height: 4.2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  .c-btn.u-size--small {
    min-height: 3rem;
    font-size: 1.4rem;
  }
}

#l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  height: 8.7rem;
  padding-block: 1.6rem;
  background-color: #fff;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 767.98px) {
  #l-header {
    height: 6.2rem;
    padding-block: 1.5rem;
  }
}

.l-header__inner {
  max-width: 144rem;
  margin-inline: auto;
  padding-inline: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}
@media screen and (max-width: 767.98px) {
  .l-header__inner {
    padding-inline: 2rem;
    height: 3.2rem;
  }
}

.l-header__logo {
  width: 33rem;
}
@media screen and (max-width: 767.98px) {
  .l-header__logo {
    width: 12.9rem;
  }
}
.l-header__logo img {
  width: 100%;
}
@media (any-hover) {
  .l-header__logo a {
    transition: 0.3s;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}

.c-reserve-link {
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  display: grid;
  place-content: center;
  background-color: #4abaa7;
  border-radius: 1000px;
  width: 19.2rem;
  min-height: 5.5rem;
  will-change: opacity;
}
@media (any-hover) {
  .c-reserve-link {
    transition: 0.3s;
  }
  .c-reserve-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.98px) {
  .c-reserve-link {
    width: 14.4rem;
    min-height: 3.2rem;
    font-size: 1.2rem;
  }
}

#l-main {
  padding-top: 5.5rem;
}
@media screen and (max-width: 767.98px) {
  #l-main {
    padding-top: 5rem;
  }
}

.p-mv {
  width: 100%;
  overflow: clip;
}

.p-mv__inner {
  text-align: center;
  background-color: #fff;
  padding-block: 8rem;
}
@media screen and (max-width: 767.98px) {
  .p-mv__inner {
    padding-block: 4rem 5.8rem;
  }
}

.p-present {
  width: 28rem;
  position: absolute;
  z-index: 10;
  top: 27rem;
  left: calc(50% + 34rem);
}
@media screen and (max-width: 767.98px) {
  .p-present {
    width: 13rem;
    left: auto;
    right: 2.2rem;
    top: 20.2rem;
  }
}
.p-present img {
  width: 100%;
}

.c-catch {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .c-catch {
    font-size: 2.4rem;
  }
}
.c-catch .u-txtsize--small {
  font-size: 4.2rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  .c-catch .u-txtsize--small {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}

.u-txtcolor--red {
  color: #d91a2a;
}

.p-slider {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: slider 32s infinite linear;
          animation: slider 32s infinite linear;
}
.p-slider > div {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.p-slider .slide-img {
  width: 33.333vw;
  aspect-ratio: 480/280;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .p-slider .slide-img {
    width: 100vw;
  }
}
.p-slider .slide-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-select__list {
  margin: 5.4rem auto 0;
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-select__list {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}

.p-select__item {
  width: 38.9rem;
}
@media screen and (max-width: 767.98px) {
  .p-select__item {
    width: auto;
    min-width: 10rem;
  }
}

.c-select-btn {
  border-radius: 1000px;
  border: 1px solid #1e201f;
  color: currentColor;
  font-size: 2.4rem;
  display: grid;
  place-content: center;
  width: 100%;
  min-height: 8rem;
  text-decoration: none;
  color: #1e201f;
  cursor: pointer;
  background-color: #fff;
}
@media (any-hover) {
  .c-select-btn {
    transition: 0.3s;
  }
  .c-select-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.98px) {
  .c-select-btn {
    font-size: 1.4rem;
    min-height: 5rem;
    padding-inline: 1.9rem;
    white-space: nowrap;
  }
}
.c-select-btn.c-selected {
  background-color: #d81925;
  color: #fff;
  border-color: #d81925;
  font-weight: 700;
}
@media (any-hover: hover) {
  .c-select-btn.c-selected:hover {
    opacity: 1;
  }
}

.l-content__inner {
  max-width: 120rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .l-content__inner {
    padding-inline: 2rem;
  }
}

.p-section__ttl {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .p-section__ttl {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}
.p-section__ttl .u-txtsize--small {
  font-size: 1.8rem;
  display: block;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-section__ttl .u-txtsize--small {
    font-size: 1.4rem;
  }
}
.p-section__ttl .u-txtsize--middle {
  font-size: 2.8rem;
  display: block;
  font-weight: 500;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-section__ttl .u-txtsize--middle {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }
}
.p-section__ttl .u-txtsize--middle-2 {
  font-size: 2.4rem;
  display: block;
  font-weight: 500;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-section__ttl .u-txtsize--middle-2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
}

.p-reserve {
  padding-block: 8rem 10rem;
  background-color: #fffff1;
}
@media screen and (max-width: 767.98px) {
  .p-reserve {
    padding-block: 4rem 12rem;
  }
}
@media screen and (max-width: 767.98px) {
  .p-reserve .p-section__ttl {
    font-size: 2rem;
  }
}

.p-reserve__list {
  display: flex;
  margin-top: 7rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
  margin: 7rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.98px) {
  .p-reserve__list {
    display: block;
    margin: 4rem 1.7rem 0;
  }
}

.p-reserve__item {
  background-color: #fff;
  width: 38rem;
  border-radius: 1rem;
  padding: 2.3rem 2rem 2.1rem;
  filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 767.98px) {
  .p-reserve__item {
    width: auto;
  }
  .p-reserve__item + .p-reserve__item {
    margin-top: 4rem;
  }
}
.p-reserve__item .p-img-wrapper {
  margin-top: 1rem;
}
.p-reserve__item .p-img-wrapper img {
  width: 100%;
}

.p-border-wrapper {
  text-align: center;
  border: 1px solid #d4d5d8;
  border-radius: 1rem;
  padding: 2.1rem;
}
@media screen and (max-width: 767.98px) {
  .p-border-wrapper {
    padding: 1.6rem;
  }
}
.p-border-wrapper .c-txt {
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-border-wrapper .c-txt {
    font-size: 1.6rem;
  }
}

.c-reserve-txt {
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  background-color: #d81925;
  border-radius: 1000px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 1rem;
  min-width: 24.7rem;
  padding: 0.4rem 0.5rem 0.6rem;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .c-reserve-txt {
    font-size: 1.8rem;
    min-width: 15.9rem;
    padding-block: 0.6rem 0.8rem;
    margin-top: 1rem;
  }
}
.c-reserve-txt::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #d81925;
  width: 1.1rem;
  height: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .c-reserve-txt::after {
    width: 1.2rem;
    height: 1rem;
  }
}

.c-reserve__ttl {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.5;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  .c-reserve__ttl {
    font-size: 1.8rem;
    margin-top: 1.7rem;
  }
}

.c-note.-style1 {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 2.2rem;
  font-weight: 400;
}

.c-note.-style2 {
  font-size: 1.8rem;
  color: #d81925;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .c-note.-style2 {
    font-size: 1.4rem;
  }
}

.c-note.-style3 {
  font-size: 1.8rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767.98px) {
  .c-note.-style3 {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
}

.p-cause {
  background-color: #292c2b;
  padding-block: 12rem;
}
@media screen and (max-width: 767.98px) {
  .p-cause {
    padding-top: 5.5rem;
  }
}
.p-cause .p-section__ttl {
  color: #fff;
}

.p-cause__img-wrapper {
  display: block;
  width: 48.5rem;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 767.98px) {
  .p-cause__img-wrapper {
    width: 28.7rem;
    margin-bottom: 1.7rem;
  }
}

.p-cause__img-inner {
  margin-right: -6rem;
  display: block;
  width: calc(100% + 6rem);
}
@media screen and (max-width: 767.98px) {
  .p-cause__img-inner {
    margin-right: -2rem;
    width: calc(100% + 2rem);
  }
}

.p-balloon {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 60.9rem;
  font-size: 2.8rem;
  font-weight: 700;
  background-color: #d81925;
  border-radius: 2rem;
  text-align: center;
  padding: 0.6rem 1rem 0.8rem;
  margin: 6rem auto 3rem;
  position: relative;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .p-balloon {
    min-width: 32rem;
    font-size: 2rem;
    margin-top: 4rem;
  }
}
.p-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  width: 3rem;
  height: 2.4rem;
  background-color: #d81925;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.p-cause__list {
  margin-top: 9rem;
}
@media screen and (max-width: 767.98px) {
  .p-cause__list {
    margin-top: 6.2rem;
  }
}

.p-cause__item {
  background-color: #fff;
  border-radius: 2rem;
  padding: 4rem 8rem;
}
@media screen and (max-width: 767.98px) {
  .p-cause__item {
    padding: 2rem 1.75rem;
  }
  .p-cause__item:nth-of-type(3) .p-img-wrapper {
    padding-top: 1rem;
  }
}
.p-cause__item .c-sub {
  display: block;
  text-align: right;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 1px solid #1e201f;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .p-cause__item .c-sub {
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    padding-block: 0.2rem;
  }
}
.p-cause__item .p-ttl-wrapper {
  grid-area: ttl;
}
.p-cause__item .c-txt {
  margin-top: 2.6rem;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 767.98px) {
  .p-cause__item .c-txt {
    margin-top: 1.4rem;
  }
}
.p-cause__item .p-img-wrapper {
  width: 60rem;
  flex-shrink: 0;
  margin-top: 1rem;
}
@media screen and (max-width: 767.98px) {
  .p-cause__item .p-img-wrapper {
    width: auto;
    margin-top: 2rem;
  }
}
.p-cause__item .p-img-wrapper img {
  width: 100%;
}
.p-cause__item + .p-cause__item {
  margin-top: 2rem;
}
@media screen and (max-width: 767.98px) {
  .p-cause__item + .p-cause__item {
    margin-top: 4rem;
  }
}

.p-cause__inner {
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 767.98px) {
  .p-cause__inner {
    display: block;
  }
}

.p-cause__ttl {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
  font-size: 2.8rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .p-cause__ttl {
    white-space: inherit;
    font-size: 2rem;
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
  }
}
.p-cause__ttl .c-num {
  font-size: 6rem;
  font-weight: 400;
  position: relative;
  top: -0.3rem;
  display: inline-block;
  min-width: 1em;
}
@media screen and (max-width: 767.98px) {
  .p-cause__ttl .c-num {
    font-size: 4rem;
  }
}

.p-merit {
  background-color: #fffff1;
  padding-block: 16.3rem 12rem;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-merit {
    padding-block: 8.5rem 2rem;
  }
}
.p-merit .p-balloon {
  padding: 3rem 6rem 3.2rem;
  font-size: 3.2rem;
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
  margin-top: 0;
}
@media screen and (max-width: 767.98px) {
  .p-merit .p-balloon {
    max-width: 32.8rem;
    font-size: 2rem;
    padding: 2rem 1rem;
    line-height: 1.4;
  }
}

.p-merit__list {
  max-width: 120rem;
  margin: 8rem auto 0;
}
@media screen and (max-width: 767.98px) {
  .p-merit__list {
    margin: 5rem 2rem 0;
  }
}

.p-merit__item:nth-of-type(even) .p-merit__content {
  flex-direction: row-reverse;
}
.p-merit__item + .p-merit__item {
  margin-top: 8rem;
}
@media screen and (max-width: 767.98px) {
  .p-merit__item + .p-merit__item {
    margin-top: 4rem;
  }
}

.p-merit__content {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}
@media screen and (max-width: 767.98px) {
  .p-merit__content {
    display: block;
  }
}

.p-merit__body {
  flex-grow: 1;
  padding-top: 3.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-merit__body {
    padding-top: 0;
  }
}
.p-merit__body .c-sub {
  font-size: 2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .p-merit__body .c-sub {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.p-merit__body .c-sub .c-num {
  font-size: 3.2rem;
  position: relative;
  top: -0.1rem;
}
@media screen and (max-width: 767.98px) {
  .p-merit__body .c-sub .c-num {
    font-size: 2.8rem;
    top: -0.2rem;
  }
}
.p-merit__body .c-txt {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .p-merit__body .c-txt {
    font-size: 1.6rem;
  }
}

.p-merit__ttl {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  padding-bottom: 2.9rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
  .p-merit__ttl {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
}
.p-merit__ttl::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  background: linear-gradient(90deg, rgb(216, 25, 37) 0%, rgb(216, 25, 37) 6.4rem, rgba(34, 34, 34, 0.05) 6.4rem, rgba(34, 34, 34, 0.05) 100%);
}

.p-merit__img-wrapper {
  width: 62rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-merit__img-wrapper {
    width: 100%;
    margin-top: 2.6rem;
  }
}
.p-merit__img-wrapper img {
  width: 100%;
}

:root {
  --bgcolor: #3f413f;
}

.p-sleep-master {
  margin-top: 4rem;
  background-color: var(--bgcolor);
  padding: 7.2rem 6rem 7.2rem 0;
  border-top-right-radius: 5rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-sleep-master {
    margin-inline: calc(50% - 50vw);
    padding: 5.6rem 2rem;
  }
}
.p-sleep-master::after {
  content: "";
  position: absolute;
  right: 50%;
  height: 100%;
  width: 100vw;
  top: 0;
  bottom: 0;
  background-color: var(--bgcolor);
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .p-sleep-master::after {
    display: none;
  }
}

.p-sleep-master__content {
  position: relative;
  z-index: 2;
  display: flex;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-sleep-master__content {
    display: block;
  }
}

.p-sleep-master__body {
  flex-grow: 1;
}
.p-sleep-master__body .c-catch {
  margin-top: 4rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .p-sleep-master__body .c-catch {
    font-size: 1.6rem;
  }
}
.p-sleep-master__body .c-txt {
  margin-top: 4rem;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 767.98px) {
  .p-sleep-master__body .c-txt {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}

.p-sleep-master__img-wrapper {
  width: 40rem;
  flex-shrink: 0;
  opacity: 0.9;
}
@media screen and (max-width: 767.98px) {
  .p-sleep-master__img-wrapper {
    margin-top: 6rem;
    width: auto;
  }
}

.p-sleep-master__ttl {
  font-size: 1.8rem;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #fcc767;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767.98px) {
  .p-sleep-master__ttl {
    font-size: 1.6rem;
  }
}
.p-sleep-master__ttl .u-en {
  font-size: 4rem;
  display: block;
  margin-top: 1rem;
}
@media screen and (max-width: 767.98px) {
  .p-sleep-master__ttl .u-en {
    font-size: 3.2rem;
  }
}

.p-reserve-info {
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8rem auto 0;
  padding: 4rem;
}
@media screen and (max-width: 767.98px) {
  .p-reserve-info {
    margin: 4rem 2rem 0;
    padding: 4rem 2.95rem;
  }
}
.p-reserve-info .c-note {
  margin-top: 1.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-reserve-info .c-note {
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.4;
  }
}

.p-reserve-info__ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .p-reserve-info__ttl {
    font-size: 1.8rem;
  }
}
.p-reserve-info__ttl span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-reserve-info__ttl span {
    font-size: 1.4rem;
  }
}

.p-reserve-info__list {
  display: flex;
  justify-content: center;
  margin-top: 3.3rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 767.98px) {
  .p-reserve-info__list {
    display: block;
    width: auto;
  }
}

.p-reserve-info__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1rem;
  border: 1px solid rgba(212, 213, 216, 0.4);
  text-align: center;
  padding: 1.6rem 2rem;
}
@media screen and (max-width: 767.98px) {
  .p-reserve-info__item {
    width: auto;
  }
  .p-reserve-info__item + .p-reserve-info__item {
    margin-top: 4rem;
  }
}
.p-reserve-info__item .c-store-name {
  font-size: 1.8rem;
  font-weight: 500;
}

.c-btn-tel {
  color: #fff;
  text-decoration: none;
  display: grid;
  border-radius: 1000px;
  font-size: 2rem;
  font-weight: 500;
  min-height: 6.5rem;
  padding: 1rem 2rem 1.4rem 2rem;
  background-color: #d81925;
  align-items: center;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .c-btn-tel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 1.6rem auto 0;
  }
}
.c-btn-tel span {
  position: relative;
  display: inline-block;
  padding-left: 3.5rem;
  text-align: left;
}
.c-btn-tel span::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/icn_tel.svg) no-repeat center/100% 100%;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
}

.c-open-hour {
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 1.3rem;
}

.p-flow {
  padding-block: 12rem;
}
@media screen and (max-width: 767.98px) {
  .p-flow {
    padding-top: 8rem;
  }
}

.p-flow__content {
  margin-top: 6rem;
  display: grid;
}

.p-flow__block {
  grid-row: 1;
  grid-column: 1;
  height: 0;
  overflow: clip;
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  pointer-events: none;
}
.p-flow__block.c-current {
  height: auto;
  overflow: visible;
  transition: 0.5s opacity;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-flow__item {
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 767.98px) {
  .p-flow__item {
    display: block;
  }
}
.p-flow__item + .p-flow__item {
  margin-top: 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-flow__item + .p-flow__item {
    margin-top: 4rem;
  }
}

.p-flow__body {
  flex-grow: 1;
}
.p-flow__body .p-ttl-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.p-flow__body .c-txt {
  margin-top: 2.9rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .p-flow__body .c-txt {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
}
.p-flow__body .p-dl {
  margin-top: 1.8rem;
}
.p-flow__body .p-dl dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.p-flow__body .p-dl dd {
  margin-top: 0.3rem;
}
.p-flow__body .p-list li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}

.p-flow__ttl {
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .p-flow__ttl {
    font-size: 2rem;
  }
  .p-flow__ttl.u-nw {
    white-space: nowrap;
  }
}

.c-hour {
  font-weight: 700;
  color: #fff;
  background-color: rgba(74, 186, 167, 0.8);
  display: inline-block;
  padding: 0.6rem 1.2rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  .c-hour {
    font-size: 1.4rem;
    padding-inline: 1rem;
    white-space: nowrap;
  }
}

.p-flow__img-wrapper {
  width: 60rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-flow__img-wrapper {
    width: auto;
    margin-top: 4rem;
  }
}
.p-flow__img-wrapper img {
  width: 100%;
}

.p-video {
  background-color: #292c2b;
  padding-block: 12rem;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .p-video {
    padding-block: 6.5rem 8rem;
  }
}
.p-video .p-section__ttl {
  font-size: 3.2rem;
  margin-bottom: 3rem;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .p-video .p-section__ttl {
    font-size: 2.8rem;
    line-height: 1.8;
    margin-bottom: 2.8rem;
  }
}
.p-video .c-txt {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .p-video .c-txt {
    font-size: 1.4rem;
    text-align: left;
  }
}

.p-video-wrapper {
  aspect-ratio: 16/9;
  margin-top: 4rem;
}
.p-video-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
}

.p-voice {
  background-color: rgba(245, 245, 238, 0.8);
  padding-block: 12rem;
  overflow: clip;
}
@media screen and (max-width: 767.98px) {
  .p-voice {
    padding-block: 8rem 16rem;
  }
}

.p-voice__content {
  margin-top: 6rem;
}

.swiper {
  overflow: visible;
}

.swiper-wrapper {
  overflow: visible; /* 重要 */
}

.swiper-scrollbar-drag {
  background-color: #d81925 !important;
  cursor: pointer;
}

.swiper-scrollbar {
  left: 0;
  right: 0;
  bottom: -6rem !important;
}
@media screen and (max-width: 767.98px) {
  .swiper-scrollbar {
    height: 3px !important;
    bottom: -4rem !important;
  }
}

.p-voice__wrapper {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767.98px) {
  .p-voice__wrapper {
    padding-inline: 2rem;
  }
}

.p-voice__list {
  display: flex;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  margin-bottom: 6rem;
  max-width: 120rem;
  margin-inline: auto;
}

.swiper-slide {
  width: 56rem;
  height: auto !important;
}
@media screen and (max-width: 767.98px) {
  .swiper-slide {
    width: 30rem;
  }
}

.p-voice__item {
  background-color: #fff;
  padding: 2.4rem;
  border-radius: 2rem;
  border: 1px solid #4b4b4b;
  flex-shrink: 0;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  .p-voice__item {
    padding: 2.4rem 2rem;
  }
}

.p-voice__heading {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
}
.p-voice__heading .c-name {
  font-size: 1.2rem;
  font-weight: 700;
}
.p-voice__heading .c-stars {
  display: inline-block;
  width: 7rem;
  margin-top: 0.4rem;
}
.p-voice__heading .c-stars img {
  width: 100%;
}
.p-voice__heading .c-icn {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-content: center;
}
.p-voice__heading .c-icn img {
  width: 2.6rem;
}

.p-voice__body {
  padding-top: 1.6rem;
}
.p-voice__body .c-txt {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767.98px) {
  .p-voice__body .c-txt {
    font-size: 1.4rem;
  }
}

.p-voice__ttl {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-voice__ttl {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }
}

.p-faq {
  padding-block: 12rem;
}
@media screen and (max-width: 767.98px) {
  .p-faq {
    padding-block: 8rem;
  }
}

.p-faq__content {
  margin-top: 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-faq__content {
    margin-top: 4rem;
  }
}

.p-faq__icn {
  font-size: 1.6rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  top: 0.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-faq__icn {
    top: 0.6rem;
  }
}

.p-faq__row {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
}

.p-faq__question {
  padding: 1.4rem 3rem;
  background-color: rgba(30, 32, 31, 0.05);
}
@media screen and (max-width: 767.98px) {
  .p-faq__question {
    padding: 1.2rem 2rem;
  }
}

.p-faq__answer {
  padding: 1.5rem 3rem 2.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-faq__answer {
    padding: 1.5rem 2.3rem 1.5rem 2rem;
  }
}

.p-faq__txt {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 767.98px) {
  .p-faq__txt {
    font-size: 1.4rem;
  }
}

.p-faq__question-txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-faq__question-txt {
    font-size: 1.6rem;
  }
}

.p-recommend {
  background-color: rgba(245, 245, 238, 0.8);
  padding-block: 12rem;
}
@media screen and (max-width: 767.98px) {
  .p-recommend {
    padding-block: 7.7rem 4rem;
  }
}

.p-recommend__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5rem;
  gap: 4rem;
}
@media screen and (max-width: 767.98px) {
  .p-recommend__cards {
    margin-top: 3.2rem;
    display: block;
  }
}

.p-recommend__card {
  width: 58rem;
  background-color: #fff;
  padding: 2.4rem;
  border: 1px solid #cdcdcd;
}
@media screen and (max-width: 767.98px) {
  .p-recommend__card {
    width: auto;
    padding: 2rem;
  }
}
.p-recommend__card .p-img-wrapper {
  aspect-ratio: 532/240;
  overflow: clip;
}
@media screen and (max-width: 767.98px) {
  .p-recommend__card .p-img-wrapper {
    aspect-ratio: 295/187;
  }
}
.p-recommend__card .p-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.98px) {
  .p-recommend__card + .p-recommend__card {
    margin-top: 4rem;
  }
}

.p-recommend__body {
  padding-top: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-recommend__body {
    padding-top: 1rem;
  }
}
.p-recommend__body .c-txt {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 767.98px) {
  .p-recommend__body .c-txt {
    font-size: 1.4rem;
  }
}

.p-recommend__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-recommend__ttl {
    font-size: 2rem;
  }
}
.p-recommend__ttl .c-txt-reserve {
  color: #fff;
  background-color: rgba(74, 186, 167, 0.8);
  border-radius: 0.5rem;
  font-size: 1.2rem;
  display: inline-block;
  padding: 0.5rem 0.5rem;
  margin-left: 1.6rem;
  position: relative;
  top: -0.45rem;
}
@media screen and (max-width: 767.98px) {
  .p-recommend__ttl .c-txt-reserve {
    margin-left: 1rem;
    top: -0.3rem;
  }
}
.p-recommend__ttl .u-txtsize--small {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-recommend__ttl .u-txtsize--small {
    font-size: 1.2rem;
    display: block;
  }
}

.p-store__list {
  margin-top: 3.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-store__list {
    margin-top: 1.2rem;
  }
}

.p-store__item {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-block: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-store__item {
    align-items: center;
    padding-block: 1rem;
    -moz-column-gap: 1.4rem;
         column-gap: 1.4rem;
  }
}
.p-store__item + .p-store__item {
  border-top: 1px solid #bbbbbb;
}
.p-store__item .p-txt-wrapper {
  flex-grow: 1;
}
.p-store__item .p-btn-wrapper {
  width: 20rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-store__item .p-btn-wrapper {
    width: 12rem;
  }
}

.c-store-name {
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .c-store-name {
    font-size: 1.4rem;
  }
}

.c-add {
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.p-store__images {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-store__images {
    margin-bottom: 0;
  }
}
.p-store__images img {
  width: 100%;
}

.p-consultation {
  padding-block: 15rem;
  background: url(../img/bg_consultation.jpg) no-repeat bottom center/cover;
}
@media screen and (max-width: 767.98px) {
  .p-consultation {
    padding-block: 8rem;
    background-image: url(../img/bg_consultation_sp.jpg);
  }
}

.p-consultation__inner {
  max-width: 136rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .p-consultation__inner {
    padding-inline: 2.75rem;
  }
}

.p-consultation__content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1rem;
}
@media screen and (max-width: 767.98px) {
  .p-consultation__content {
    padding: 4rem 3.95rem 2rem;
  }
}
.p-consultation__content .c-ttl {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .p-consultation__content .c-ttl {
    font-size: 1.6rem;
  }
}
.p-consultation__content .p-store__list {
  margin-top: 2rem;
}
@media screen and (max-width: 767.98px) {
  .p-consultation__content .p-store__list {
    margin-top: 1rem;
  }
}
.p-consultation__content .p-store__item {
  padding-block: 2rem;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-consultation__content .p-store__item {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  .p-consultation__content .p-btn-wrapper {
    margin: 1rem auto 0;
    width: 20rem;
  }
}
.p-consultation__content .c-btn {
  min-height: 5rem;
}
@media screen and (max-width: 767.98px) {
  .p-consultation__content .c-btn {
    min-height: 3.9rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .p-consultation__content .c-store-name {
    font-size: 1.6rem;
  }
}
.p-consultation__content .c-add {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  .p-consultation__content .c-add {
    font-size: 0.8rem;
    margin-top: 1rem;
  }
}

#l-footer {
  padding-block: 6rem;
}
@media screen and (max-width: 767.98px) {
  #l-footer {
    padding: 6rem 2rem;
  }
}

.l-footer__inner {
  max-width: 136rem;
  margin-inline: auto;
}

.l-footer__logo {
  width: 33.6rem;
}
@media screen and (max-width: 767.98px) {
  .l-footer__logo {
    width: 18.5rem;
  }
}
.l-footer__logo img {
  width: 100%;
}

.p-store-link__list {
  display: flex;
  margin-top: 4rem;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-store-link__list {
    display: block;
    margin-top: 3rem;
  }
}

.p-store-link__item a {
  display: block;
  place-content: center;
  min-height: 4rem;
  font-weight: 400;
  font-size: 1.8rem;
  border: 1px solid rgb(179, 179, 179);
  padding-inline: 2rem 4.3rem;
  color: currentColor;
  text-decoration: none;
  border-radius: 1000px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (any-hover) {
  .p-store-link__item a {
    transition: 0.3s;
  }
  .p-store-link__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.98px) {
  .p-store-link__item a {
    font-size: 1.6rem;
  }
}
.p-store-link__item a::after {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  top: 50%;
  right: 2.2rem;
  transform: translateY(-50%);
  background: url(../img/icn_arrow.svg) no-repeat center/100%;
}
.p-store-link__item a span {
  display: inline-block;
  position: relative;
  padding-bottom: 0.2rem;
}
.p-store-link__item a span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background-color: #1e201f;
  width: 100%;
  height: 0.5px;
  top: 100%;
}
@media screen and (max-width: 767.98px) {
  .p-store-link__item + .p-store-link__item {
    margin-top: 1.2rem;
  }
}

.c-copyright {
  font-size: 1.8rem;
  font-weight: 400;
  display: inline-block;
  margin-top: 4rem;
}
@media screen and (max-width: 767.98px) {
  .c-copyright {
    font-size: 1.2rem;
    margin-top: 3rem;
  }
}
/*# sourceMappingURL=style.css.map */