@charset "UTF-8";
/* リキッドレイアウト対応 */
/* --- PCファースト（max-width） --- */
html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}

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

/* hover指定できるPCを想定したスタイル */
/* hoverが使えないタッチ端末を想定した装飾 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.875rem;
}

body {
  color: #202020;
  display: flex;
  flex-direction: column;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.5;
  margin-inline: auto !important;
  max-width: 120rem;
  min-height: 100vh;
  overflow-x: clip;
  text-rendering: optimizeSpeed;
}

main {
  flex: 1;
}

body.is-fixed {
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* 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 {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.c-button {
  align-items: center;
  background-color: #00A2BE;
  border: 1px solid #00A2BE;
  border-radius: 1.875rem;
  color: #fff;
  display: flex;
  gap: 0.625rem;
  overflow: hidden;
  padding: 0.5625rem 1.5rem 0.5625rem 0.8125rem;
  position: relative;
  text-align: center;
  transition: color 0.3s ease-in-out;
  width: 100%;
  z-index: 2;
}

.c-button span {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  text-align: center;
}

.c-button-icon {
  aspect-ratio: 1/1;
  display: block;
  height: auto;
  position: relative;
  width: 2.5rem;
}

.c-button-icon::before {
  aspect-ratio: 1/1;
  background-image: url(../images/common/mail_logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 1.875rem;
  z-index: 1;
}

.c-button-icon::after {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: auto;
  left: 0;
  position: absolute;
  transition: 0.3s;
  transition: transform 0.3s ease-in-out;
  width: 2.625rem;
  z-index: 0;
}

.c-button:hover {
  color: #00A2BE;
  opacity: 1;
}

.c-button:hover .c-button-icon::after {
  transform: scale(20);
}

.c-button.c-button--white {
  background-color: #fff;
  color: #00A2BE;
}

.c-button.c-button--white .c-button-icon::after {
  background-color: #00A2BE;
}

.c-button.c-button--white:hover {
  color: #fff;
}

.c-page-top a {
  align-items: center;
  aspect-ratio: 86/80;
  background-image: url(../images/common/page-top.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  cursor: pointer;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  height: auto;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  padding-top: 0.9375rem;
  text-transform: uppercase;
  transition: transform 0.3s ease-in-out;
  transition: opacity 0.3s;
  width: 5.375rem;
}

.c-page-top.is-show a {
  opacity: 1;
}

.c-page-top a:hover {
  animation: anchor-anime 0.7s ease-in-out;
  opacity: 1;
}

.c-section-title {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 700;
  gap: 3.625rem;
  justify-content: center;
  line-height: 1.6;
  position: relative;
}

.c-section-title::before,
.c-section-title::after {
  background-image: radial-gradient(circle, currentColor 3px, transparent 3px);
  background-position: left top;
  background-repeat: space;
  background-size: 26px 6px;
  content: "";
  flex-grow: 1;
  height: 6px;
}

.c-section-title.c-section-title--white {
  color: #fff;
}

.c-text {
  font-size: max(1rem, 10px);
}

.l-header {
  left: 0;
  margin-inline: auto;
  max-width: 120rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 900;
}

.l-inner {
  margin-inline: auto;
  max-width: 78.125rem;
  padding-inline: 1.5625rem;
  width: 100%;
}

.l-mv {
  margin-top: 5.875rem;
}

.l-page-top {
  bottom: 1.25rem;
  position: fixed;
  right: 1.875rem;
  z-index: 100;
}

.p-about {
  background-color: #FFC8D0;
}

.p-about__bg {
  background-color: #D41058;
  border-radius: 0 0 12.5rem 12.5rem;
  padding: 8.75rem 0;
}

.p-about__intro {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5;
  margin-top: 4.6875rem;
  text-align: center;
}

.p-about__intro .p-about__intro--accent {
  color: #F0CC56;
  font-weight: 700;
}

.p-about__highlight-text-wrap {
  align-items: center;
  background-color: #fff;
  border-radius: 4.375rem;
  display: flex;
  gap: 0.625rem;
  margin-inline: auto;
  margin-top: 4.0625rem;
  padding: 1.4375rem 3.75rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about__highlight-text-wrap::after {
  bottom: -2.1875rem;
  content: "";
  height: 2.25rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 5rem;
  -webkit-mask-image: url(../images/common/highlight.svg);
          mask-image: url(../images/common/highlight.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #fff;
          mask-repeat: no-repeat;
}

.p-about__balloon-media {
  height: auto;
  width: 8.25rem;
}

.p-about__balloon-media img {
  aspect-ratio: 132/95;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.p-about__highlight-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.875;
}

.p-about__highlight-text .p-about__highlight-accent {
  color: #D41058;
  display: inline-block;
  font-size: 3rem;
  padding-right: 0.5rem;
}

.p-about__point {
  margin-top: 10.4375rem;
}

.p-about__point-item {
  background-color: #FBFBF5;
  border-radius: 1.25rem;
  padding: 3.4375rem 1.5625rem 4.5625rem;
  position: relative;
}

.p-about__point-item + .p-about__point-item {
  margin-top: 9.1875rem;
}

.p-about__point-number {
  align-items: center;
  aspect-ratio: 150/86;
  background-image: url(../images/about/about-num-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #D41058;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  height: auto;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: -2.8125rem;
  transform: translateX(-50%);
  width: 9.375rem;
}

.p-about__point-kicker {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 2.1666666667;
  text-align: center;
}

.p-about__point-kicker .p-about__point-kicker-em {
  color: #D41058;
}

.p-about__point-title {
  background-image: radial-gradient(circle at center, #00A2BE 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.4705882353;
  margin-inline: auto;
  padding-top: 0.625rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about__point-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.5;
  margin-top: 3.125rem;
  text-align: center;
}

.p-about__point-text .p-about__point-text--accent {
  color: #D41058;
}

.p-about__graph {
  height: auto;
  margin-inline: auto;
  margin-top: 3.25rem;
  max-width: 51.25rem;
  width: 100%;
}

.p-about__graph img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.p-about__figcaption {
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.5rem;
  line-height: 1.75;
  margin-top: 0.9375rem;
}

.p-feature {
  background-color: #FFC8D0;
  padding: 6.25rem 0;
}

.p-feature__inner.l-inner {
  max-width: 81.125rem;
}

.p-feature__body {
  aspect-ratio: 1248/718;
  background-image: url(../images/feature/feature-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: auto;
  height: auto;
  margin-top: 6.25rem;
  object-fit: cover;
  padding: 5.0625rem 1.25rem 12.5rem;
  width: 100%;
  width: 100%;
}

.p-feature__highlight-text {
  background-color: #D41058;
  border-radius: 4.875rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.875;
  margin-inline: auto;
  padding: 1.4375rem 3.75rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.p-feature__highlight-text .p-feature__highlight-accent {
  font-size: 3rem;
  padding-inline: 0.5625rem;
}

.p-feature__highlight-text::after {
  bottom: -2.1875rem;
  content: "";
  height: 2.25rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 5rem;
  -webkit-mask-image: url(../images/common/highlight.svg);
          mask-image: url(../images/common/highlight.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #D41058;
          mask-repeat: no-repeat;
}

.p-feature__content {
  margin-top: 4.4375rem;
  text-align: center;
}

.p-feature__lead-sub {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 2.1666666667;
}

.p-feature__lead-main {
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.4705882353;
  margin-left: -0.625rem;
}

.p-feature__lead-main .p-feature__lead-main--small {
  font-size: 3.5rem;
  padding-inline: 0.3125rem;
}

.p-feature__lead-main .p-feature__lead-accent {
  background-image: radial-gradient(circle at center, #00A2BE 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  color: #D41058;
  padding-top: 0.625rem;
}

.p-footer {
  background-color: #FFC8D0;
  padding-bottom: 2.1875rem;
  position: relative;
}

.p-footer__bg {
  position: relative;
}

.p-footer__bg::before {
  aspect-ratio: 1920/180;
  background-image: url(../images/common/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: auto;
  left: 0;
  position: absolute;
  top: calc(-1 * min(177px, 9.21875vw));
  width: 100%;
}

.p-footer__link-wrap {
  align-items: center;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
}

.p-footer__link .c-button {
  border-radius: 2.5rem;
  gap: 0.5rem;
  padding-block: 0.4375rem;
}

.p-footer__link .c-button span {
  font-size: 1.75rem;
}

.p-footer__link .c-button-icon {
  width: 4rem;
}

.p-footer__link .c-button-icon::after {
  width: 4rem;
}

.p-footer__link .c-button-icon::before {
  width: 2.875rem;
}

.p-footer__link.p-footer__link--cart .c-button-icon::before {
  background-image: url(/assets/images/common/cart_logo.svg);
}

.p-footer__privacy {
  margin-top: 6.25rem;
  text-align: center;
}

.p-footer__privacy a {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
  transition: color 0.3s ease-in-out;
}

.p-footer__privacy a:hover {
  color: #00A2BE;
  opacity: 1;
}

.p-footer__copyright {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.5625rem;
  text-align: center;
}

.p-header {
  background-color: #fff;
  height: 5.875rem;
}

.p-header__inner {
  height: inherit;
  padding-inline: 1.875rem;
}

.p-header__contents {
  align-items: center;
  display: flex;
  height: inherit;
  justify-content: space-between;
}

.p-header__left {
  align-items: center;
  display: flex;
  gap: 1.625rem;
  height: inherit;
  margin-left: 4.375rem;
}

.p-header__logo {
  height: inherit;
  max-width: 5rem;
  width: 100%;
}

.p-header__logo a {
  align-items: center;
  display: flex;
  height: inherit;
}

.p-header__logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.p-header__sns-items {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: inherit;
}

.p-header__sns-item {
  align-items: center;
  display: flex;
  height: inherit;
}

.p-header__sns-item a {
  align-items: center;
  display: flex;
  height: inherit;
  padding-inline: 0.625rem;
  width: 50px;
}

.p-header__sns-item img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.p-header__nav {
  display: block;
  height: inherit;
}

.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--shop,
.p-header__nav-item.p-header__nav-item--contact {
  align-items: center;
  display: flex;
  height: initial;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-left: 2.5rem;
}

.p-header__nav-link {
  align-items: center;
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  height: inherit;
  line-height: 1;
  padding-inline: 1.0625rem;
  transition: color 0.3s ease-in-out;
}

.p-header__nav-link:hover {
  color: #00A2BE;
  opacity: 1;
}

.p-header__hamburger {
  aspect-ratio: 1/1;
  background-color: #00A2BE;
  border: none;
  border-radius: 0 0 0 1.875rem;
  cursor: pointer;
  display: none;
  height: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  transition: 0.3s;
  width: auto;
  z-index: 999;
}

.p-header__hamburger span {
  background-color: #fff;
  display: block;
  height: 2px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  transition: 0.5s;
  width: 60%;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

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

.p-header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0.125rem;
  transform: translateX(-50%) rotate(45deg);
}

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

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  background-color: #fff;
  bottom: 0;
  display: none;
  height: 100vh;
  left: 0;
  overflow-y: scroll;
  padding: 6.25rem 0.9375rem;
  position: absolute;
  right: 0;
  scrollbar-width: none;
  top: 0;
  width: 100%;
  z-index: 500;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-list {
  text-align: center;
}

.p-header__drawer-item {
  margin-inline: auto;
  margin-top: 1.875rem;
  max-width: 31.25rem;
  width: 100%;
}

.p-header__drawer-nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  padding-block: 0.625rem;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.p-header__drawer-nav-link:hover {
  color: #00A2BE;
}

.p-header__drawer-nav-link::before {
  background-image: radial-gradient(circle, #00A2BE 22%, transparent 1%);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 15px 6px;
  bottom: -0.625rem;
  content: "";
  height: 6px;
  left: 50%;
  position: absolute;
  translate: -50% 0;
  width: 100%;
  z-index: -1;
}

.p-header__drawer-item--shop {
  margin-top: 3.125rem;
}

.p-header__drawer-item--contact {
  margin-top: 1.875rem;
}

.p-header__drawer-item--shop a,
.p-header__drawer-item--contact a {
  margin-inline: auto;
  max-width: 18.75rem;
}

.p-header__drawer-item--contact a.c-button {
  gap: 2.5rem;
}

.p-header__drawer-item--shop .c-button-icon::before,
.p-header__nav-item.p-header__nav-item--shop .c-button-icon::before {
  background-image: url(/assets/images/common/cart_logo.svg);
}

.p-information {
  background-image: url(../images/mv/mv-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 9.2708333333vw 0 20rem;
}

.p-information__bg {
  padding-top: 10rem;
}

.p-information__body {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  margin-top: 6rem;
}

.p-information__img {
  flex-shrink: 0;
  height: auto;
  width: 40%;
}

.p-information__img img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.p-information__label {
  color: #D41058;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
}

.p-information__name {
  color: #D41058;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.p-information__spec {
  margin-top: 2.375rem;
}

.p-information__spec-row {
  display: flex;
}

.p-information__spec-term {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
  width: 7.125rem;
  -moz-text-align-last: justify;
  position: relative;
       text-align-last: justify;
}

.p-information__spec-term::after {
  content: "：";
  position: absolute;
  right: -0.9375rem;
  top: 0;
}

.p-information__spec-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  line-height: 1.7;
  padding-left: 0.875rem;
}

.p-information__spec-desc span {
  font-family: "Nunito", sans-serif;
}

.p-information__spec-desc .p-information__spec-desc--en {
  font-family: "Nunito", sans-serif;
  font-style: italic;
  font-weight: 500;
}

.p-information__note-list {
  margin-top: 1.5625rem;
}

.p-information__note-item {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  padding-left: 1.25rem;
  position: relative;
}

.p-information__note-item::before {
  background-color: #202020;
  border-radius: 50%;
  content: "";
  height: 0.9375rem;
  left: 0;
  position: absolute;
  top: 0.5rem;
  width: 0.9375rem;
}

.p-information__button {
  margin-top: 1.5625rem;
}

.p-information__button .c-button {
  gap: 0.75rem;
  max-width: 17.1875rem;
}

.p-information__button .c-button span {
  font-size: 1.625rem;
}

.p-information__button .c-button-icon::before {
  background-image: url(../images/common/botton-arrow.svg);
  width: 1.25rem;
}

.p-mv {
  background-image: url(../images/mv/mv-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: clip;
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 0;
}

.p-mv::before {
  aspect-ratio: 358/2666;
  background-image: url(../images/mv/mv-left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: auto;
  left: 0;
  position: absolute;
  top: -5.875rem;
  width: 9.375%;
  z-index: -1;
}

.p-mv::after {
  aspect-ratio: 280/2342;
  background-image: url(../images/mv/mv-right.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: auto;
  position: absolute;
  right: 0;
  top: -5.875rem;
  width: 7.2916666667%;
  z-index: -1;
}

.p-mv__inner.l-inner {
  max-width: 102.5rem;
  padding-inline: 8.75rem;
}

.p-mv__contents {
  align-items: center;
  display: flex;
  padding-top: 4.625rem;
}

.p-mv__text-wrap {
  padding-top: 2.875rem;
}

.p-mv__lead-sub {
  border-bottom: 0.1875rem solid #fff;
  font-size: 2.375rem;
  font-weight: 700;
  margin-left: -0.4375rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-mv__lead-sub--small {
  font-size: 1.5625rem;
  margin-left: 0.625rem;
}

.p-mv__lead-main {
  border-bottom: 0.1875rem solid #fff;
  font-size: 3.4375rem;
  font-weight: 700;
  line-height: 1.4727272727;
  margin-top: 1.5625rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-mv__lead-accent {
  background-image: radial-gradient(circle at center, #00A2BE 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  color: #D41058;
  padding-top: 0.625rem;
}

.p-mv__lead-accent .p-mv__lead-accent--small {
  display: inline-block;
  font-size: 2.8125rem;
  padding-inline: 0.1875rem;
}

.p-mv__catch {
  margin-top: 2.8125rem;
  padding-left: 0.625rem;
}

.p-mv__catch-main {
  color: #D41058;
  display: block;
  font-size: 8.5625rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.1824817518;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 0;
}

.p-mv__catch-main::after {
  aspect-ratio: 490/181;
  background-image: url(../images/mv/mv-catch-main-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: auto;
  left: 50%;
  position: absolute;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 111.8721461187%;
  z-index: -1;
}

.p-mv__catch-sub {
  color: #00A2BE;
  display: block;
  font-size: 5.875rem;
  font-weight: 900;
  line-height: 1.1914893617;
  margin-top: 1.875rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  word-break: keep-all;
  z-index: 0;
}

.p-mv__catch-sub::after {
  aspect-ratio: 884/123;
  background-image: url(../images/mv/mv-catch-sub-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: auto;
  left: 50%;
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 104.4917257683%;
  z-index: -1;
}

.p-mv__image {
  flex-shrink: 0;
  height: auto;
  margin-left: -6.75rem;
  position: relative;
  width: 54.16%;
  z-index: 1;
}

.p-mv__image img {
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.p-mv__anchor-wrap {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 9.375rem;
}

.p-mv__anchor a {
  background-color: #fff;
  border-radius: 3.4375rem;
  display: block;
  font-size: 1.625rem;
  font-weight: 700;
  outline: 0.625rem solid #FBFBF5;
  outline-offset: -0.625rem;
  padding: 1.5rem 3.25rem 3.125rem;
  position: relative;
  white-space: nowrap;
}

.p-mv__anchor a::after {
  background-image: url(../images/mv/anchor-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 1.875rem;
  content: "";
  height: 0.875rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 1.3125rem;
}

.p-mv__anchor a:hover {
  animation: anchor-anime 0.7s ease-in-out;
  opacity: 1;
}

@keyframes anchor-anime {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(10deg);
  } /* 左に傾ける */
  40% {
    transform: rotate(-10deg);
  } /* 右に傾ける */
  60% {
    transform: rotate(5deg);
  } /* 再び左に傾ける */
  80% {
    transform: rotate(-5deg);
  } /* もう一度右に（弱め） */
  100% {
    transform: rotate(0deg);
  } /* 元に戻る */
}
.p-mv__notes {
  margin-inline: auto;
  margin-top: 4.125rem;
  max-width: 75rem;
}

.p-mv__notes-text {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2;
}

.p-mv__notes-text span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

.p-mv__notes-text--en {
  font-family: "Nunito", sans-serif;
  font-size: 1.375rem;
  font-style: italic;
  font-weight: 600;
  line-height: 2;
}

.p-mv__note-list {
  margin-right: 0.625rem;
  margin-top: 1.5625rem;
}

.p-mv__note-item {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2;
  padding-left: 1.875rem;
  position: relative;
}

.p-mv__note-item::before {
  background-color: #202020;
  border-radius: 50%;
  content: "";
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: 0.9375rem;
  width: 1.25rem;
}

.p-reason {
  background-color: #FFC8D0;
  margin-top: -0.0625rem;
  overflow-x: clip;
  padding: 8.125rem 0 2.8125rem;
  position: relative;
}

.p-reason::after {
  aspect-ratio: 1920/180;
  background-image: url(../images/reason/reason-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: calc(-1 * min(175px, 9.1145833333vw));
  content: "";
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-reason__hero {
  align-items: center;
  display: flex;
  margin-left: 1.25rem;
}

.p-reason__hero-img {
  height: auto;
  position: relative;
  width: 45.8333333333%;
  z-index: 1;
}

.p-reason__hero-img img {
  aspect-ratio: 1097/1137;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.p-reason__copy {
  margin-left: -1.75rem;
  margin-top: 4.6875rem;
  position: relative;
  text-align: center;
  z-index: 0;
}

.p-reason__copy::after {
  aspect-ratio: 718/416;
  background-image: url(../images/reason/reason-copy-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: auto;
  left: 50%;
  position: absolute;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 48.4375rem;
  z-index: -1;
}

.p-reason__copy-sub {
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.75;
  margin-left: 1.875rem;
}

.p-reason__copy-sub .p-reason__copy-small {
  font-size: 2rem;
  padding-left: 0.5rem;
}

.p-reason__copy-main {
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.4705882353;
  margin-top: 5rem;
}

.p-reason__copy-accent {
  background-image: radial-gradient(circle at center, #00A2BE 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  color: #D41058;
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.4705882353;
  margin-inline: auto;
  margin-top: 2.5rem;
  padding-top: 0.625rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-reason__copy-accent .p-reason__copy-small {
  font-size: 3.5rem;
  padding-inline: 0.25rem;
}

.p-reason__list-bg {
  aspect-ratio: 4080/2416;
  background-image: url(../images/reason/reason-list-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 127.5rem;
  height: auto;
  margin-top: 7.1875rem;
  min-height: 75.5rem;
  padding-bottom: 6.25rem;
  padding-top: 0.625rem;
  position: relative;
  width: 100%;
  z-index: 0;
}

.p-reason__list-inner.l-inner {
  max-width: 90.3125rem;
}

.p-reason__kicker {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.6764705882;
  position: relative;
  text-align: center;
}

.p-reason__kicker::after {
  background-image: radial-gradient(circle, currentColor 3px, transparent 3px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 6px 20px;
  bottom: -6.25rem;
  content: "";
  height: 6.25rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 6px;
}

.p-reason__list {
  display: flex;
  justify-content: space-between;
  margin-top: 5.625rem;
}

.p-reason__item {
  width: 41%;
}

.p-reason__item-inner.l-inner {
  padding-inline: 0;
}

.p-reason__badge {
  background-color: #D41058;
  border-radius: 50%;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-inline: auto;
  padding: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}

.p-reason__badge .p-reason__badge-label {
  display: block;
  font-size: 1.25rem;
}

.p-reason__item-title {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.0625rem;
  text-align: center;
}

.p-reason__item-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 1.125rem;
  text-align: center;
}

.p-reason__item-text .p-reason__item-text--accent {
  color: #D41058;
}

.p-reason__item-img {
  height: auto;
  margin-inline: auto;
  margin-top: 1.6875rem;
  max-width: 28.4375rem;
  width: 100%;
}

.p-reason__item-img img {
  aspect-ratio: 455/418;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.p-reason__item:nth-child(2) .p-reason__item-img {
  max-width: 28.875rem;
}
.p-results {
  background-color: #FBFBF5;
  padding: 8.75rem 0 7.5rem;
}

.p-results__contents {
  border: 0.5rem solid #D41058;
  border-radius: 1.25rem;
  margin-top: 7.375rem;
  padding-bottom: 4.25rem;
  padding-inline: 3.125rem;
}

.p-results__highlight {
  background-color: #FBFBF5;
  color: #D41058;
  font-size: 3rem;
  font-weight: 700;
  margin-inline: auto;
  margin-top: -2.5rem;
  padding-inline: 2.1875rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-results__highlight .p-results__highlight--small {
  font-size: 2rem;
  padding-inline: 0.5rem;
}

.p-results__highlight .p-results__highlight--accent {
  background-image: radial-gradient(circle at center, #00A2BE 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.625rem;
}

.p-results__desc-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5;
  margin-top: 1.875rem;
  text-align: center;
}

.p-results__graph {
  height: auto;
  margin-inline: auto;
  margin-top: 2.25rem;
  max-width: 820px;
  width: 100%;
}

.p-results__graph img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.p-results__figcaption {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 0.9375rem;
}

.p-results__figcaption span {
  padding-right: 0.5rem;
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

.u-tab {
  display: none;
}

.u-tab {
  display: none;
}

@media (max-width: 1599px){
  .p-header__inner {
    display: flex;
    justify-content: space-between;
    padding-inline: 1.875rem 0;
  }
  .p-header__nav {
    display: none;
  }
  .p-header__hamburger {
    display: block;
  }
  .p-mv__contents {
    transform: scale(0.85);
    transform-origin: center top;
  }
  .p-mv__anchor a {
    font-size: 1.375rem;
  }
  .p-reason__item {
    width: 50%;
  }
}

@media screen and (max-width: 1440px){
  .p-about__bg {
    border-radius: 0 0 3.125rem 3.125rem;
    padding: 6.25rem 0 5rem;
  }
}

@media screen and (max-width: 1250px){
  html {
    font-size: 1.28vw;
  }
}

@media (max-width: 1199px){
  .p-mv__contents {
    flex-direction: column;
    padding-top: 1.875rem;
    transform: scale(1);
  }
  .p-mv__text-wrap {
    padding-top: 0;
    text-align: center;
  }
  .p-mv__lead-sub {
    margin-inline: auto;
  }
  .p-mv__lead-main {
    margin-inline: auto;
  }
  .p-mv__catch-main {
    margin-inline: auto;
  }
  .p-mv__catch-sub {
    margin-inline: auto;
  }
  .p-mv__image {
    margin-inline: auto;
  }
  .p-mv__anchor-wrap {
    gap: 0.625rem;
    margin-top: 5rem;
  }
  .p-mv__notes-text {
    font-size: 1.25rem;
  }
  .p-mv__notes-text--en {
    font-size: 1.25rem;
  }
  .p-mv__note-item {
    font-size: 1.25rem;
    padding-left: 1.5625rem;
  }
  .p-mv__note-item::before {
    height: 0.9375rem;
    top: 0.75rem;
    width: 0.9375rem;
  }
}

@media screen and (max-width: 767px){
  html {
    font-size: 16px;
  }
  a[href^="tel:"] {
    pointer-events: initial;
  }
  html {
    scroll-padding-top: 4.375rem;
  }
  .c-button span {
    font-size: 1.125rem;
  }
  .c-page-top a {
    font-size: 1.125rem;
    width: 3.75rem;
  }
  .c-section-title {
    font-size: 1.5rem;
    gap: 0.625rem;
    line-height: 2.1333333333;
    margin-inline: calc(50% - 50vw);
  }
  .c-text {
    font-size: max(0.875rem, 10px);
  }
  .l-inner {
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
  .l-mv {
    margin-top: 4.375rem;
  }
  .l-page-top {
    right: 0.9375rem;
  }
  .p-about__intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-top: 1.875rem;
    text-align: left;
  }
  .p-about__highlight-text-wrap {
    border-radius: 1.875rem;
    margin-top: 1.875rem;
    padding: 1.25rem;
  }
  .p-about__highlight-text-wrap::after {
    bottom: -1rem;
    height: 1.0625rem;
    width: 2.3125rem;
  }
  .p-about__highlight-text {
    font-size: 1.25rem;
    line-height: 1.5;
    text-align: center;
  }
  .p-about__highlight-text .p-about__highlight-accent {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-right: 0;
  }
  .p-about__point {
    margin-top: 6.25rem;
  }
  .p-about__point-item {
    padding: 2.5rem 0.9375rem 3.125rem;
  }
  .p-about__point-item + .p-about__point-item {
    margin-top: 5rem;
  }
  .p-about__point-number {
    font-size: 1.875rem;
    top: -1.875rem;
    width: 6.25rem;
  }
  .p-about__point-kicker {
    font-size: 1.875rem;
  }
  .p-about__point-title {
    font-size: 2.375rem;
  }
  .p-about__point-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-top: 1.875rem;
    text-align: left;
  }
  .p-about__graph {
    margin-top: 1.875rem;
  }
  .p-about__figcaption {
    font-size: 0.875rem;
  }
  .p-feature {
    overflow-x: clip;
    padding: 5rem 0;
  }
  .p-feature__body {
    background-size: 62.5rem;
    margin-inline: calc(50% - 50vw);
    margin-top: 2rem;
    min-height: 35.8125rem;
    padding: 2.5rem 1.25rem 6.25rem;
    padding-inline: initial;
    width: 100vw;
  }
  .p-feature__highlight-text {
    font-size: 1.25rem;
    line-height: 1.85;
    line-height: 1.5;
    padding: 1.125rem 0.625rem;
    text-align: center;
    width: 100%;
  }
  .p-feature__highlight-text .p-feature__highlight-accent {
    font-size: 1.75rem;
    padding-inline: 0.3125rem;
  }
  .p-feature__highlight-text::after {
    bottom: -1rem;
    height: 1.0625rem;
    width: 2.3125rem;
  }
  .p-feature__content {
    margin-top: 2.125rem;
  }
  .p-feature__lead-sub {
    font-size: 1.75rem;
    line-height: 1.6;
  }
  .p-feature__lead-main {
    font-size: 2.625rem;
    line-height: 1.5238095238;
    margin-left: 0;
    margin-top: 1.625rem;
  }
  .p-feature__lead-main .p-feature__lead-main--small {
    font-size: 2.125rem;
    padding-inline: 0.1875rem;
  }
  .p-feature__lead-main .p-feature__lead-accent {
    display: block;
    margin-inline: auto;
    margin-top: 0.625rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-footer {
    padding-bottom: 1.25rem;
  }
  .p-footer__link-wrap {
    flex-direction: column;
    gap: 0.9375rem;
  }
  .p-footer__link .c-button span {
    font-size: 1.25rem;
  }
  .p-footer__link .c-button-icon {
    width: 3.125rem;
  }
  .p-footer__link .c-button-icon::after {
    width: 3.125rem;
  }
  .p-footer__link .c-button-icon::before {
    width: 2.5rem;
  }
  .p-footer__privacy {
    margin-top: 3.125rem;
  }
  .p-footer__privacy a {
    font-size: 0.875rem;
  }
  .p-footer__copyright {
    font-size: max(0.75rem, 10px);
    margin-top: 0.625rem;
  }
  .p-header {
    height: 4.375rem;
  }
  .p-header__inner {
    padding-inline: 0.9375rem 0;
  }
  .p-header__left {
    gap: 0.625rem;
    margin-left: 0;
  }
  .p-header__logo {
    max-width: 4.375rem;
  }
  .p-header__sns-item a {
    padding-inline: 0.3125rem;
    width: 40px;
  }
  .p-information {
    padding-bottom: 9.375rem;
  }
  .p-information__bg {
    padding-top: 5rem;
  }
  .p-information__body {
    flex-direction: column;
    margin-top: 3.125rem;
  }
  .p-information__img {
    margin-inline: auto;
    max-width: 28.125rem;
    width: 100%;
  }
  .p-information__label {
    font-size: 1rem;
  }
  .p-information__name {
    font-size: 1.5625rem;
  }
  .p-information__spec-term {
    font-size: 0.875rem;
    width: 6.25rem;
  }
  .p-information__spec-desc {
    font-size: 0.875rem;
  }
  .p-information__note-item {
    font-size: 0.875rem;
    padding-left: 0.9375rem;
  }
  .p-information__note-item::before {
    height: 0.75rem;
    top: 0.4375rem;
    width: 0.75rem;
  }
  .p-information__button .c-button {
    margin-inline: auto;
  }
  .p-mv::before {
    top: 0;
  }
  .p-mv::after {
    top: 0;
  }
  .p-mv__inner.l-inner {
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
  .p-mv__lead-sub {
    font-size: 1.5625rem;
  }
  .p-mv__lead-sub--small {
    font-size: 1.125rem;
  }
  .p-mv__lead-main {
    font-size: 1.875rem;
    line-height: 1.8;
    margin-top: 0.625rem;
  }
  .p-mv__lead-accent {
    padding-top: 0.3125rem;
  }
  .p-mv__lead-accent .p-mv__lead-accent--small {
    font-size: 1.875rem;
  }
  .p-mv__catch {
    margin-top: 1.25rem;
  }
  .p-mv__catch-main {
    font-size: 3.75rem;
  }
  .p-mv__catch-sub {
    font-size: 2.375rem;
    margin-top: 1.25rem;
  }
  .p-mv__image {
    width: 18.75rem;
  }
  .p-mv__anchor-wrap {
    flex-wrap: wrap;
    margin-inline: auto;
    max-width: 31.25rem;
  }
  .p-mv__anchor a {
    font-size: 1.125rem;
    padding: 0.9375rem 1.25rem 1.875rem;
  }
  .p-mv__anchor a::after {
    bottom: 0.75rem;
  }
  .p-mv__notes {
    margin-top: 1.875rem;
  }
  .p-mv__notes-text {
    font-size: 1.125rem;
  }
  .p-mv__notes-text--en {
    font-size: 1.125rem;
  }
  .p-mv__note-item {
    font-size: 1.125rem;
  }
  .p-reason__hero {
    flex-direction: column;
  }
  .p-reason__hero-img {
    width: 20.4375rem;
  }
  .p-reason__copy {
    margin-left: -1.75rem;
    margin-top: 0.9375rem;
  }
  .p-reason__copy::after {
    font-size: 2.5rem;
    width: 28.75rem;
  }
  .p-reason__copy-sub {
    font-size: 1.75rem;
  }
  .p-reason__copy-sub .p-reason__copy-small {
    font-size: 1.1875rem;
  }
  .p-reason__copy-main {
    font-size: 2.5rem;
    margin-top: 2.9375rem;
  }
  .p-reason__copy-accent {
    font-size: 2.5rem;
    margin-top: 1.875rem;
  }
  .p-reason__copy-accent .p-reason__copy-small {
    font-size: 2.0625rem;
  }
  .p-reason__list-bg {
    background-image: none;
    margin-top: 4.25rem;
    min-height: initial;
  }
  .p-reason__kicker {
    font-size: 1.5rem;
  }
  .p-reason__kicker::after {
    bottom: -4.375rem;
    height: 5rem;
  }
  .p-reason__list {
    flex-direction: column;
    margin-top: 2.3125rem;
  }
  .p-reason__item {
    aspect-ratio: 1/1;
    background-image: url(../images/reason/reason-list-bg-sp.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50rem;
    margin-inline: calc(50% - 50vw);
    min-height: 50rem;
    padding-top: 3.25rem;
    width: 100vw;
  }
  .p-reason__item + .p-reason__item {
    margin-top: -2.5rem;
  }
  .p-reason__item-inner.l-inner {
    padding-inline: 1.25rem;
  }
  .p-reason__badge {
    font-size: 2.125rem;
    padding: 0.8125rem 1rem;
  }
  .p-reason__badge .p-reason__badge-label {
    font-size: 0.8125rem;
  }
  .p-reason__item-title {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
  .p-reason__item-text {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .p-reason__item-img {
    margin-inline: auto;
    margin-top: 1.375rem;
    width: 20rem;
  }
  .p-results {
    padding: 6.25rem 0 5rem;
  }
  .p-results__contents {
    margin-top: 5rem;
    padding: 0 1.25rem 3.125rem;
  }
  .p-results__highlight {
    font-size: 2.1875rem;
    padding-inline: 1.25rem;
  }
  .p-results__highlight .p-results__highlight--small {
    font-size: 1.25rem;
  }
  .p-results__desc-text {
    font-size: 1.125rem;
  }
  .p-results__figcaption {
    font-size: 1rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

@media (max-width: 549px){
  .u-tab {
    display: block;
  }
}

@media (max-width: 499px){
  .u-tab {
    display: block;
  }
}

@media (max-width: 400px){
  .p-results__title.c-section-title::before,
  .p-results__title.c-section-title::after {
    background-size: 18px 6px;
    height: 6px;
  }
}

@media screen and (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media{
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

@media (hover: hover){
  a:hover {
    opacity: 0.7;
  }
}

@media (hover: none){
  a:active {
    opacity: 0.7;
  }
}