@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5625vw;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-footer {
  position: relative;
}

.l-header {
  height: 6.25rem;
  position: absolute;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 110px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header {
    height: 155px;
  }
}

.l-inner {
  margin-inline: auto;
  max-width: 23.125rem;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1024px;
  }
}

.l-main {
  background-color: #fff9fc;
  overflow-x: hidden;
  position: relative;
}

.c-cta__btn-wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-cta__btn-wrap {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}

.c-cta__btn {
  align-items: center;
  border-radius: 40px;
  color: #fff;
  display: flex;
  height: 3.75rem;
  justify-content: center;
  letter-spacing: 0.09375rem;
  margin-inline: auto;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: 21.875rem;
}
@media screen and (min-width: 768px) {
  .c-cta__btn {
    height: 4.0625rem;
    width: 28.125rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-cta__btn {
    height: 5rem;
    margin-inline: 0;
    width: 30.625rem;
  }
}

.c-cta__btn:after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  display: block;
  height: 0.875rem;
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.125rem);
  transform: rotate(45deg) translateY(-50%);
  width: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-cta__btn:after {
    height: 1.0625rem;
    right: 2.375rem;
    top: calc(50% - 0.3125rem);
    width: 1.0625rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-cta__btn:after {
    height: 1.25rem;
    width: 1.25rem;
  }
}

.c-cta__btn--special {
  background-color: #026fe2;
  font-size: 0.8125rem;
  letter-spacing: 0.00625rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-cta__btn--special {
    font-size: 0.9375rem;
    letter-spacing: 0.0875rem;
    padding-right: 0.9375rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-cta__btn--special {
    font-size: 1.0625rem;
  }
}

.c-cta__btn--special:before {
  background-image: url(../images/common/btn-bg.webp);
  background-position: -0.375rem -0.625rem;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 40px;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.62;
  position: absolute;
  top: 0;
  transform: scale(1.05, 1.05);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-cta__btn--special:before {
    background-position: center -1.25rem;
    transform: none;
  }
}

.c-cta__btn--special span {
  display: block;
  position: relative;
}

.c-cta__btn--consult {
  background: linear-gradient(to right, #e79696, #e76f6f);
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .c-cta__btn--consult {
    font-size: 1.1875rem;
    letter-spacing: 0.0375rem;
    padding-left: 0.625rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-cta__btn--consult {
    font-size: 1.5rem;
  }
}

.c-cta__btn--footer-consult {
  background-color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .c-cta__btn--footer-consult {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-cta__btn--footer-consult {
    font-size: 1.5rem;
  }
}

.c-cta__btn--footer-consult:after {
  border-right: 1px solid #d88484;
  border-top: 1px solid #d88484;
  content: "";
  display: block;
  height: 0.9375rem;
  position: absolute;
  right: 2.375rem;
  top: calc(50% - 0.125rem);
  transform: rotate(45deg) translateY(-50%);
  width: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-cta__btn--footer-consult:after {
    height: 1.25rem;
    width: 1.25rem;
  }
}

.c-fadein.c-fadein-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s;
}

.c-fadein.c-fadein-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 1s;
}

.c-fadein-up.active, .c-fadein-down.active {
  opacity: 1;
  transform: none;
}

.c-title h2 {
  color: #e79696;
  font-family: "Poppins", sans-serif;
  font-size: 2.375rem;
  font-weight: 200;
  letter-spacing: 0.1875rem;
  line-height: 2.375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title h2 {
    font-size: 3.4375rem;
    letter-spacing: 0.325rem;
    line-height: 3.4375rem;
  }
}

.c-title span {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.2125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title span {
    font-size: 1.25rem;
    letter-spacing: 0.36875rem;
    padding-left: 0.3125rem;
  }
}

.p-concept {
  background-color: #fff9fc;
  position: relative;
}

.p-concept__inner {
  padding-bottom: 3.75rem;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-concept__inner {
    padding-top: 6.125rem;
  }
}

.p-concept__contents {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-concept__contents {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    left: 50%;
    margin-top: 3.375rem;
    position: relative;
    transform: translateX(-50%);
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .p-concept__contents {
    width: 70rem;
  }
}

.p-concept__text {
  color: #333;
  font-feature-settings: "palt";
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 2.0625rem;
  margin-top: 15.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-concept__text {
    font-size: 1.0625rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-concept__text {
    font-size: 1.25rem;
    letter-spacing: 0.125rem;
    line-height: 2.875rem;
  }
}

.p-concept__image {
  position: relative;
}

.p-concept__image--dish {
  height: 13.75rem;
  left: calc(50% - 0.625rem);
  overflow: hidden;
  position: absolute;
  transform: translateX(-50%);
  width: 21rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-concept__image--dish {
    height: auto;
    left: auto;
    right: 0.625rem;
    transform: none;
    width: 25.9375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-concept__image--dish {
    height: 20.5rem;
    right: 0;
    width: 31.875rem;
  }
}

.p-concept__image--dish img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: -0.5rem -0.625rem;
     object-position: -0.5rem -0.625rem;
  transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  .p-concept__image--dish img {
    transform: scale(1.04);
  }
}
@media screen and (min-width: 1200px) {
  .p-concept__image--dish img {
    -o-object-fit: none;
       object-fit: none;
    -o-object-position: 120% 125%;
       object-position: 120% 125%;
  }
}

.p-concept__image--cake {
  bottom: -15rem;
  left: calc(50% + 7.375rem);
  position: absolute;
  transform: translateX(-50%);
  width: 8.0625rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-concept__image--cake {
    bottom: -4.6875rem;
    left: auto;
    right: -5.9375rem;
    width: 9.0625rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-concept__image--cake {
    bottom: -3.125rem;
    right: -11.5625rem;
    width: 13.25rem;
  }
}

.p-concept__image:after {
  background: linear-gradient(to right, #facbcb, #f7beaa);
  content: "";
  display: block;
  height: 13.75rem;
  left: 50%;
  position: absolute;
  top: 0.625rem;
  transform: translateX(-50%);
  width: 21.125rem;
}
@media screen and (min-width: 768px) {
  .p-concept__image:after {
    height: 17.375rem;
    left: auto;
    right: -0.25rem;
    top: 0.5625rem;
    transform: none;
    width: 26.375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-concept__image:after {
    height: 20.8125rem;
    right: -1.0625rem;
    top: 0.75rem;
    width: 32rem;
  }
}

.p-concept__bnr {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-concept__bnr {
    margin-top: 11.5625rem;
  }
}

.p-concept__bnr img {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-concept__bnr img {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .p-concept__bnr img {
    width: 100%;
  }
}

.p-flow__inner {
  padding-bottom: 3.4375rem;
  padding-top: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding-bottom: 7.8125rem;
    padding-top: 5.3125rem;
  }
}

.p-flow__list {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    margin-top: 2.1875rem;
  }
}

.p-flow__item {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    gap: 3.125rem;
    margin-top: 2.5rem;
  }
}

.p-flow__item:first-child {
  margin-top: 0;
}

.p-flow__item-icon-wrap {
  position: relative;
}

.p-flow__item-icon {
  align-items: center;
  background-color: #fff;
  border: 1px solid #fad2d2;
  border-radius: 50%;
  display: flex;
  filter: drop-shadow(5px 10px 10px rgba(0, 0, 0, 0.07));
  flex-shrink: 0;
  height: 5.125rem;
  justify-content: center;
  position: relative;
  width: 5.125rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-flow__item-icon {
    flex-shrink: 1;
    height: 10.1875rem;
    margin-left: 5.9375rem;
    width: 10.1875rem;
  }
}

.p-flow__item-icon img {
  width: 40%;
}
@media screen and (min-width: 768px) {
  .p-flow__item-icon img {
    width: 35%;
  }
}

.p-flow__item-icon-wrap span {
  background-color: #333;
  display: block;
  height: 5rem;
  left: 50%;
  position: absolute;
  top: -0.9375rem;
  transform: translateY(-50%);
  width: 0.0625rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-flow__item-icon-wrap span {
    height: 2.5rem;
    left: 68%;
    top: -1.3125rem;
  }
}

.p-flow__item:first-child .p-flow__item-icon:after {
  display: none;
}

.p-flow__item-text {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-text {
    margin-top: 1.25rem;
    width: 44.5rem;
  }
}

.p-flow__item-no {
  color: #bdbcbd;
  font-family: "Poppins", sans-serif;
  font-size: 1.4375rem;
  font-weight: 300;
  letter-spacing: 0.1875rem;
  line-height: 1.4375rem;
  padding-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-no {
    font-size: 2.25rem;
    line-height: 2.25rem;
  }
}

.p-flow__item-title {
  font-size: 1.125rem;
  letter-spacing: 0.25rem;
  padding-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-title {
    font-size: 1.75rem;
    letter-spacing: 0.375rem;
  }
}

.p-flow__item-explanation {
  font-size: 0.8125rem;
  letter-spacing: 0.009375rem;
  padding-left: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-explanation {
    font-size: 1rem;
    letter-spacing: 0.028125rem;
    margin-top: 0.25rem;
  }
}

.webp .p-footer {
  background: url(../images/common/footer-bg_sp.webp) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .webp .p-footer {
    background: url(../images/common/footer-bg.webp) no-repeat top center/cover;
  }
}
@media screen and (min-width: 1440px) {
  .webp .p-footer {
    background: url(../images/common/footer-bg.webp) no-repeat top center/100%;
  }
}

.no-webp .p-footer {
  background: url(../images/common/footer-bg_sp.png) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .no-webp .p-footer {
    background: url(../images/common/footer-bg.png) no-repeat top center/cover;
  }
}
@media screen and (min-width: 1440px) {
  .no-webp .p-footer {
    background: url(../images/common/footer-bg.png) no-repeat top center/100%;
  }
}

.p-footer__inner {
  color: #FFF;
  padding-bottom: 1.25rem;
  padding-top: 4.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__inner {
    padding-top: 9.0625rem;
  }
}

.p-footer__text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__text {
    text-align: start;
  }
}

.p-footer__text-en {
  font-family: "Poppins", sans-serif;
  font-size: 2.375rem;
  font-weight: 300;
  letter-spacing: 0.125rem;
  line-height: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__text-en {
    font-size: 2.875rem;
    letter-spacing: 0.175rem;
    line-height: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__text-en {
    font-size: 3.5rem;
  }
}

.p-footer__text-ja {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__text-ja {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__text-ja {
    font-size: 1.5rem;
  }
}

.p-footer__btn-wrap {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__btn-wrap {
    margin-top: 2.5rem;
  }
}

.p-footer__btn {
  color: #cb5d5d;
}
@media screen and (min-width: 768px) {
  .p-footer__btn {
    width: 20rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__btn {
    width: 26.25rem;
  }
}

.p-footer__mail {
  font-size: 0.8125rem;
  letter-spacing: -0.0125rem;
  margin-top: 1.25rem;
  padding-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__mail {
    font-size: 1rem;
    letter-spacing: -0.075rem;
    margin-top: 1.5rem;
    padding-left: 0.9375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__mail {
    font-size: 1.25rem;
  }
}

.p-footer__mail a {
  letter-spacing: 0.059375rem;
  margin-left: 1.125rem;
  position: relative;
}

.p-footer__mail a:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-footer__sns {
  display: flex;
  gap: 2.8125rem;
  justify-content: center;
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns {
    gap: 2.8125rem;
    justify-content: flex-start;
    margin-bottom: 0.625rem;
    margin-right: 6.5625rem;
  }
}

.p-footer__sns-link img {
  margin-inline: auto;
  width: 4.8125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-link img {
    width: 5.4375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__sns-link img {
    width: 6.375rem;
  }
}

.p-footer__sns-link span {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.0625rem;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-link span {
    font-size: 0.75rem;
    margin-top: 0.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__sns-link span {
    font-size: 0.875rem;
  }
}

.p-footer__logo {
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-top: 3.125rem;
  }
}

.p-footer__logo img {
  margin-inline: auto;
}

.p-header__inner {
  height: 0;
}

.p-header__logo {
  bottom: 0.3125rem;
  height: auto;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 191px;
}
@media screen and (min-width: 1200px) {
  .p-header__logo {
    width: 310px;
  }
}

.p-header__logo:hover {
  opacity: 0.4;
}

.p-header__hamburger {
  background-color: #e79696;
  border: none;
  cursor: pointer;
  height: 50px;
  margin: 0;
  outline: none;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.3s;
  width: 50px;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    height: 70px;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__hamburger {
    height: 100px;
    width: 100px;
  }
}

.p-header__hamburger.is-open {
  background-color: #fff;
}

.p-header__hamburger span {
  background-color: #fff;
  display: block;
  height: 1px;
  margin-inline: auto;
  position: relative;
  transition: transform 0.3s;
  width: 27.5px;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger span {
    width: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__hamburger span {
    width: 55px;
  }
}

.p-header__hamburger:hover {
  background-color: #fff;
}

.p-header__hamburger:hover span {
  background-color: #e79696;
}

.p-header__hamburger span:nth-of-type(1) {
  transform: translateY(-7px);
}
@media screen and (min-width: 768px) {
  .p-header__hamburger span:nth-of-type(1) {
    transform: translateY(-14px);
  }
}

.p-header__hamburger span:nth-of-type(2) {
  transform: translateY(0);
}

.p-header__hamburger span:nth-of-type(3) {
  transform: translateY(7px);
}
@media screen and (min-width: 768px) {
  .p-header__hamburger span:nth-of-type(3) {
    transform: translateY(14px);
  }
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  background-color: #e79696;
  transform: translateY(2px) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  background-color: #e79696;
  transform: translateY(-1px) rotate(-45deg);
}

.p-header__drawer {
  background-color: #e79696;
  height: 100vh;
  overflow-y: scroll;
  padding-top: 6.75rem;
  position: fixed;
  right: -100vw;
  text-align: right;
  top: 0;
  transition: 0.3s;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-header__drawer {
    padding-right: 0.9375rem;
  }
}

.p-header__hamburger.is-open + .p-header__drawer {
  right: 0;
}

.p-header__nav-item {
  margin-top: 0.9375rem;
}

.p-header__nav-item:first-child {
  margin-top: 0;
}

.p-header__drawer-link {
  color: #fff;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.5625rem;
  font-weight: 200;
  letter-spacing: 0.375rem;
  margin-inline: auto;
  padding: 1.0625rem 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-header__drawer-link {
    font-size: 2.8125rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__drawer-link {
    font-size: 3.4375rem;
  }
}

.p-header__drawer-link:hover {
  opacity: 0.5;
}

.p-mv {
  height: 38rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: auto;
    transform: none;
  }
}

.p-mv__inner {
  height: 100%;
}

.p-mv__image {
  position: relative;
  top: 0;
}

.p-mv__image img {
  height: 33.125rem;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.27, 1.27);
}
@media screen and (min-width: 768px) {
  .p-mv__image img {
    height: auto;
    max-height: 100vh;
    -o-object-position: center bottom;
       object-position: center bottom;
    transform: scale(1, 1);
    width: 100vw;
  }
}

.p-mv__copy {
  bottom: 5.9375rem;
  color: #fff;
  font-size: 2.125rem;
  font-weight: 300;
  left: calc(50% - 1.5625rem);
  letter-spacing: 0.1875rem;
  line-height: 2.8125rem;
  opacity: 0.6;
  padding-left: 0.625rem;
  position: absolute;
  text-shadow: 0 0 20px #000, 0 0 20px #000, 0 0 20px #000;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-mv__copy {
    font-size: 2.625rem;
    left: calc(50% - 0.9375rem);
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__copy {
    bottom: 8.125rem;
    font-size: 3.3125rem;
    left: calc(50% - 6.5625rem);
    letter-spacing: 0.28125rem;
    line-height: 4.0625rem;
    padding-left: 3.125rem;
  }
}

.p-mv__copy span {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__copy span {
    font-size: 1.8125rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__copy span {
    font-size: 2.125rem;
  }
}

.p-mv__copy span:last-child {
  font-size: 2.125rem;
  letter-spacing: -0.13125rem;
}
@media screen and (min-width: 768px) {
  .p-mv__copy span:last-child {
    font-size: 2.625rem;
    letter-spacing: 0.03125rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__copy span:last-child {
    font-size: 3.3125rem;
  }
}

.p-scene {
  background-color: #fff9fc;
}

.p-scene__inner {
  color: #333;
  padding-bottom: 2.8125rem;
  padding-top: 3.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-scene__inner {
    padding-bottom: 3.75rem;
    padding-top: 1.875rem;
  }
}

.p-scene__list {
  left: 50%;
  margin-top: 0.75rem;
  position: relative;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-scene__list {
    margin-top: 0.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__list {
    margin-top: 1.375rem;
    width: 86.25rem;
  }
}

.p-scene__item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-scene__item {
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-scene__item:nth-of-type(even) {
  flex-direction: column;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-scene__item:nth-of-type(even) {
    flex-direction: row-reverse;
    margin-top: 3.125rem;
  }
}

.p-scene__item:nth-of-type(odd) {
  margin-top: 1.5rem;
}

.p-scene__item:first-child {
  margin-top: 0;
}

.p-scene__text {
  display: contents;
  margin-left: 10.75rem;
  width: 31.5625rem;
}
@media screen and (min-width: 768px) {
  .p-scene__text {
    display: block;
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__text {
    margin-left: 10.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-scene__item:nth-of-type(even) .p-scene__text {
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__item:nth-of-type(even) .p-scene__text {
    margin-left: 0;
    margin-right: 11.875rem;
  }
}

.p-scene__no {
  color: #bebdbd;
  font-family: "Poppins", sans-serif;
  font-size: 1.4375rem;
  font-weight: 200;
  letter-spacing: 0.125rem;
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-scene__no {
    font-size: 1.625rem;
    letter-spacing: 0.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__no {
    font-size: 2.25rem;
  }
}

.p-scene__title {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  line-height: 2.375rem;
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-scene__title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1875rem;
    line-height: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-scene__item--case02 .p-scene__title {
    letter-spacing: 0.1rem;
    line-height: 3.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-scene__item--case03 .p-scene__title {
    letter-spacing: 0.05625rem;
    line-height: 3.1875rem;
  }
}

.p-scene__explanation {
  font-size: 0.8125rem;
  letter-spacing: 0.00625rem;
  line-height: 1.625rem;
  margin-top: 16.5rem;
  order: 4;
}
@media screen and (min-width: 768px) {
  .p-scene__explanation {
    font-size: 1rem;
    letter-spacing: 0.03125rem;
    line-height: 2rem;
    margin-top: 0.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__explanation {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-scene__item--case02 .p-scene__explanation {
    letter-spacing: 0.075rem;
  }
}

.p-scene__example {
  background-color: #eda6a6;
  margin-top: 3.75rem;
  order: 5;
  padding: 1.125rem 1.25rem 2rem 1.25rem;
  width: 21.875rem;
}
@media screen and (min-width: 768px) {
  .p-scene__example {
    width: 28.8125rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__example {
    margin-left: 0.25rem;
    margin-top: 4rem;
    padding: 1.5625rem 1.25rem 2rem 1.5625rem;
    width: 30.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-scene__item--case02 .p-scene__example {
    margin-top: 1.6875rem;
    padding-bottom: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-scene__item--case03 .p-scene__example {
    margin-top: 2.1875rem;
    padding-bottom: 2rem;
  }
}

.p-scene__example-table {
  color: #fff;
  padding-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-scene__example-table {
    padding: 0.5rem 0.125rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__example-table {
    padding: 0.625rem 0.125rem;
  }
}

.p-scene__example-table dl {
  align-items: center;
  border-top: 1px solid #fff;
  display: flex;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  padding: 0.25rem 0 0.5625rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-scene__example-table dl {
    font-size: 0.875rem;
    line-height: 1.3125rem;
    padding: 0.6875rem 0 0.6875rem 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__example-table dl {
    font-size: 1rem;
    line-height: 1.4375rem;
    padding: 0.6875rem 0 0.6875rem 2.125rem;
  }
}

.p-scene__example-table dl:last-child {
  border-bottom: 1px solid #fff;
}

.p-scene__example-table dt {
  flex-shrink: 0;
  letter-spacing: 0.1125rem;
  width: 8.625rem;
}
@media screen and (min-width: 768px) {
  .p-scene__example-table dt {
    letter-spacing: 0.25rem;
    width: 11.75rem;
  }
}

.p-scene__example-table dd {
  letter-spacing: 0.0625rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-scene__example-table dd {
    letter-spacing: 0.21875rem;
  }
}

.p-scene__example-title {
  background-color: #fff;
  color: #333;
  font-size: 0.75rem;
  padding: 0.0625rem 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-scene__example-title {
    font-size: 1rem;
    padding: 0.125rem 0.8125rem;
  }
}

.p-scene__image-wrap {
  height: auto;
  margin-top: 1.25rem;
  order: 3;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-scene__image-wrap {
    margin-top: 4.0625rem;
  }
}

.p-scene__image {
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.p-scene__item--case01 .p-scene__image {
  width: 21.5625rem;
}
@media screen and (min-width: 768px) {
  .p-scene__item--case01 .p-scene__image {
    right: 1.625rem;
    width: 25.9375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__item--case01 .p-scene__image {
    height: 25.125rem;
    right: 2.625rem;
    width: 38.75rem;
  }
}

.p-scene__item--case02 .p-scene__image {
  width: 21.5625rem;
}
@media screen and (min-width: 768px) {
  .p-scene__item--case02 .p-scene__image {
    left: 2.125rem;
    width: 25.9375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__item--case02 .p-scene__image {
    height: 25.125rem;
    left: 1.75rem;
    width: 38.75rem;
  }
}

.p-scene__item--case03 .p-scene__image {
  width: 21.5625rem;
}
@media screen and (min-width: 768px) {
  .p-scene__item--case03 .p-scene__image {
    right: 1.625rem;
    width: 25.9375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__item--case03 .p-scene__image {
    height: 25.125rem;
    right: 2.625rem;
    width: 38.75rem;
  }
}

.p-scene__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .p-scene__image img {
    -o-object-fit: none;
       object-fit: none;
  }
}

.p-scene__item--case01 img {
  -o-object-position: -0.5rem -0.125rem;
     object-position: -0.5rem -0.125rem;
  transform: scale(1);
}
@media screen and (min-width: 1200px) {
  .p-scene__item--case01 img {
    -o-object-position: 42% 40%;
       object-position: 42% 40%;
    transform: scale(1.04);
  }
}

.p-scene__item--case02 img {
  -o-object-position: -0.5rem -0.125rem;
     object-position: -0.5rem -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-scene__item--case02 img {
    -o-object-position: 42% 40%;
       object-position: 42% 40%;
    transform: scale(1);
  }
}

.p-scene__item--case03 img {
  -o-object-position: -0.5rem -0.125rem;
     object-position: -0.5rem -0.125rem;
}
@media screen and (min-width: 1200px) {
  .p-scene__item--case03 img {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.p-scene__image-wrap:after {
  background: linear-gradient(to right, #facbcb, #f7beaa);
  content: "";
  display: block;
  height: 13.75rem;
  left: calc(50% + 0.3125rem);
  position: absolute;
  top: 0.75rem;
  transform: translateX(-50%);
  width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .p-scene__image-wrap:after {
    height: 16.375rem;
    left: calc(50% - 13.4375rem);
    top: 1.5rem;
    width: 25rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__image-wrap:after {
    height: 25.125rem;
    left: calc(50% - 20.625rem);
    width: 38.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-scene__item:nth-of-type(even) .p-scene__image-wrap:after {
    left: calc(50% + 13.375rem);
    top: 1.5625rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-scene__item:nth-of-type(even) .p-scene__image-wrap:after {
    left: calc(50% + 19.875rem);
    top: 1.5rem;
  }
}

.p-scene__btn-wrap {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-scene__btn-wrap {
    margin-top: 3rem;
  }
}

.p-service {
  background-color: #fff;
}

.p-service__inner {
  padding-bottom: 3.125rem;
  padding-top: 2.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service__inner {
    padding-bottom: 6.25rem;
    padding-top: 4.375rem;
  }
}

.p-service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  left: 50%;
  margin-top: 2.1875rem;
  position: relative;
  row-gap: 1.5625rem;
  transform: translateX(-50%);
  width: 22.1875rem;
}
@media screen and (min-width: 768px) {
  .p-service__list {
    gap: 1.25rem 2.1875rem;
    justify-content: center;
    margin-top: 1.875rem;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .p-service__list {
    gap: 2.1875rem 0.9375rem;
    width: 74.5625rem;
  }
}

.p-service__item {
  width: 10.125rem;
}
@media screen and (min-width: 768px) {
  .p-service__item {
    width: 16.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-service__item {
    width: 23.125rem;
  }
}

.p-service__item-image img {
  filter: drop-shadow(5px 10px 10px rgba(0, 0, 0, 0.23));
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__item-image img {
    height: auto;
    width: 20.75rem;
  }
}

.p-service__item-name {
  align-items: center;
  display: flex;
  font-size: 0.8125rem;
  height: 0.9375rem;
  justify-content: center;
  letter-spacing: 0.15rem;
  line-height: 0.9375rem;
  margin-top: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service__item-name {
    font-size: 1.25rem;
    height: 3.75rem;
    letter-spacing: normal;
    line-height: 1.625rem;
    margin-top: 0.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-service__item-name {
    font-size: 1.75rem;
    line-height: 2rem;
    margin-top: 1.375rem;
  }
}

.p-service__item-text {
  font-size: 0.75rem;
  letter-spacing: 0.00625rem;
  line-height: 1.125rem;
  margin-inline: auto;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-service__item-text {
    font-size: 0.875rem;
    letter-spacing: -0.025rem;
    line-height: 1.8125rem;
    margin-top: 0.5rem;
    width: 17.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-service__item-text {
    font-size: 1.125rem;
    margin-top: 1.125rem;
    width: 20.625rem;
  }
}

.p-service__btn-wrap {
  margin-inline: auto;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-service__btn-wrap {
    margin-top: 4.125rem;
  }
}

.p-service__bnr {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-service__bnr {
    margin-top: 3.875rem;
  }
}

.p-service__bnr img {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__bnr img {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .p-service__bnr img {
    width: 100%;
  }
}

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

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
