@charset "UTF-8";
*,
*::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;
}

/* リキッドレイアウト対応 */
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

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

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.8;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

main {
  flex: 1;
  overflow: hidden;
}

.js-fadein {
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 2s ease, transform 1s ease; /* スムーズに表示 */
}

.l-concept {
  margin-top: 121px;
  margin-top: 7.5625rem;
}
@media screen and (min-width: 768px) {
  .l-concept {
    margin-top: 198px;
    margin-top: 12.375rem;
  }
}

.l-drawer {
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-out;
  width: 68.7022901%;
  z-index: 999999999999;
}
@media screen and (min-width: 768px) {
  .l-drawer {
    display: none;
  }
}

.l-drawer[aria-hidden=false] {
  transform: translateX(0);
}

.l-features {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-features {
    margin-top: 120px;
    margin-top: 7.5rem;
    padding-bottom: 120.5px;
    padding-bottom: 7.53125rem;
  }
}

.l-footer {
  margin-top: 80px;
  margin-top: 5rem;
}

.l-header {
  bottom: auto;
  height: 70px;
  height: 4.375rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 80px;
    height: 5rem;
  }
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  max-width: 37.5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    max-width: 78.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

.c-menu-button {
  aspect-ratio: 1/1;
  background-color: #fff;
  height: auto;
  position: relative;
  width: 39px;
  width: 2.4375rem;
}

.c-menu-button span {
  background-color: #7D1522;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  width: 18px;
  width: 1.125rem;
}

.c-menu-button span:before,
.c-menu-button span::after {
  background-color: #7D1522;
  border-radius: 100vw;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span::before {
  transform: translateY(-0.4375rem);
}

.c-menu-button span::after {
  transform: translateY(0.4375rem);
}

/* ドロワーメニュー展開時 */
.c-menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.c-menu-button[aria-expanded=true] span::before {
  transform: translateY(0) rotate(45deg);
}

.c-menu-button[aria-expanded=true] span::after {
  transform: translateY(0) rotate(-45deg);
}

[data-modal] {
  align-items: center;
  background: rgba(68, 68, 68, 0.6);
  bottom: 0;
  display: grid;
  justify-items: center;
  left: 0;
  opacity: 0;
  place-items: center;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

[data-modal].is-show {
  opacity: 1;
  pointer-events: auto;
}

.c-modal {
  padding: 0 30px;
  padding: 0 1.875rem;
}

.c-modal__dialog {
  background: #fff;
  border-radius: 0.625rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 555px;
  max-width: 34.6875rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.c-modal__close {
  position: absolute;
  right: 14px;
  right: 0.875rem;
  top: 19px;
  top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .c-modal__close {
    right: 20px;
    right: 1.25rem;
    top: 20px;
    top: 1.25rem;
  }
}

.c-modal__image img {
  -o-object-fit: cover;
  aspect-ratio: 3/2;
     object-fit: cover;
}

.c-modal__text {
  padding: 12px 20px 20px;
  padding: 0.75rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal__text {
    padding: 13px 20px 20px;
    padding: 0.8125rem 1.25rem 1.25rem;
  }
}

.c-modal__number {
  border: 1px solid #7D1522;
  border-radius: 0.625rem;
  color: #7D1522;
  display: inline-block;
  font-family: Arial;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-modal__number {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 1px 14px;
    padding: 0.0625rem 0.875rem;
  }
}

.c-modal__title {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-modal__title {
    margin-top: 5px;
    margin-top: 0.3125rem;
  }
}

.c-modal__title--en {
  color: #999;
  font-family: Arial;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-modal__title--en {
    margin-top: 6px;
    margin-top: 0.375rem;
  }
}

.c-modal__desc {
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-modal__desc {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.c-modal__btn {
  -webkit-text-decoration: none;
  background-color: #7D1522;
  border-radius: 0.3125rem;
  color: #FFF;
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 22px;
  margin-top: 1.375rem;
  padding: 7px 10px 8px;
  padding: 0.4375rem 0.625rem 0.5rem;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
}

.c-modal__btn:hover {
  color: #fff;
  opacity: 0.7;
}

[data-modal].is-show .c-modal__dialog {
  -webkit-animation: fadeInUpModal 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) backwards;
  animation: fadeInUpModal 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) backwards;
  animation-delay: 0.05s;
}

[data-modal].is-hiding .c-modal__dialog {
  -webkit-animation: fadeOutDownModal 0.38s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  animation: fadeOutDownModal 0.38s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@keyframes fadeInUpModal {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDownModal {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}
.c-top__btn {
  bottom: 38px;
  bottom: 2.375rem;
  position: fixed;
  right: 0;
  transition: 0.3s;
  z-index: 10000000000000000;
}

.c-top__btn:hover {
  opacity: 0.7;
}

.c-top__btn__link {
  -webkit-text-decoration: none;
  align-items: center;
  background-color: #fff;
  border: solid 2px #7D1522;
  border-radius: 0.3125rem 0 0 0.3125rem;
  border-right: none;
  color: #7D1522;
  display: flex;
  flex-direction: column;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 700;
  height: 45px;
  height: 2.8125rem;
  line-height: 1;
  opacity: 0;
  padding-right: 1px;
  padding-right: 0.0625rem;
  padding-top: 1px;
  padding-top: 0.0625rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 45px;
  width: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .c-top__btn__link {
    font-size: 12px;
    font-size: 0.75rem;
    gap: 4px;
    gap: 0.25rem;
    height: 90px;
    height: 5.625rem;
    justify-content: center;
    width: 90px;
    width: 5.625rem;
  }
}

.c-top__btn__link:before {
  background-image: url(../images/common/scroll-top-arrow-sp.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 25px;
  height: 1.5625rem;
  width: 24px;
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-top__btn__link:before {
    background-image: url(../images/common/scroll-top-arrow.svg);
    height: 24px;
    height: 1.5rem;
    width: 30px;
    width: 1.875rem;
  }
}

.c-visual img {
  aspect-ratio: 1440/600;
}

.footer-content .footer-contact > h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.p-breadcrumb {
  background-color: #FAF5EF;
  border-bottom: 1px solid #7D1522;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb {
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.p-breadcrumb__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  max-width: 120rem;
  padding: 0 6px 0 6px;
  padding: 0 0.375rem 0 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__inner {
    padding: 0 90px;
    padding: 0 5.625rem;
  }
}

.p-breadcrumb__items {
  align-items: center;
  display: flex;
}

.p-breadcrumb__item {
  align-items: center;
  display: flex;
}

.p-breadcrumb__item::after {
  background-image: url(../images/common/breadcrumb-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 9px;
  height: 0.5625rem;
  width: 6px;
  width: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__item::after {
    height: 11px;
    height: 0.6875rem;
  }
}

.p-breadcrumb__item:last-child::after {
  display: none;
}

.p-breadcrumb__link {
  -webkit-text-decoration: none;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  padding: 12px 13px 13px 14px;
  padding: 0.75rem 0.8125rem 0.8125rem 0.875rem;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__link {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 28px 13px 30px;
    padding: 0.625rem 1.75rem 0.8125rem 1.875rem;
  }
}

.p-breadcrumb__link:hover {
  color: #999;
}

.p-concept {
  position: relative;
}

.p-concept::after {
  aspect-ratio: 178.59/537.01;
  background-image: url(../images/common/foot.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  max-width: 178.59px;
  max-width: 11.161875rem;
  position: absolute;
  right: 16.52px;
  right: 1.0325rem;
  top: -306.92px;
  top: -19.1825rem;
  transform: rotate(120deg);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-concept::after {
    right: 133.52px;
    right: 8.345rem;
    top: -329.92px;
    top: -20.62rem;
  }
}

.p-concept__content {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-concept__content {
    flex-direction: row;
    gap: 60px;
    gap: 3.75rem;
  }
}

.p-concept__content--reverse {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-concept__content--reverse {
    flex-direction: row-reverse;
    gap: 42px;
    gap: 2.625rem;
  }
}

.p-concept__content--2 {
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-concept__content--2 {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
}

.p-concept__content--2::after {
  aspect-ratio: 176.46/602.21;
  background-image: url(../images/common/foot-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -467.5px;
  bottom: -29.21875rem;
  content: "";
  display: block;
  max-width: 176.46px;
  max-width: 11.02875rem;
  position: absolute;
  right: -49.13px;
  right: -3.070625rem;
  transform: rotate(121.46deg);
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-concept__content--2::after {
    bottom: -403.5px;
    bottom: -25.21875rem;
    right: -37.13px;
    right: -2.320625rem;
  }
}

.p-concept__content--2 .p-concept__block {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-concept__content--2 .p-concept__block {
    margin-top: -17px;
    margin-top: -1.0625rem;
  }
}

.p-concept__content--3 {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-concept__content--3 {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
}

.p-concept__content--3 .p-concept__block {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-concept__content--3 .p-concept__block {
    margin-top: -18px;
    margin-top: -1.125rem;
  }
}

.p-concept__img {
  max-width: 570px;
  max-width: 35.625rem;
  width: 100%;
}

.p-concept__img img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-concept__title {
  color: #7D1522;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-concept__title {
    font-size: 16px;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

.p-concept__title::after {
  aspect-ratio: 240/95.942;
  background-image: url(../images/common/concept-title.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  margin-left: -32px;
  margin-left: -2rem;
  margin-top: -3px;
  margin-top: -0.1875rem;
  max-width: 240px;
  max-width: 15rem;
  transform: rotate(-15deg);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-concept__title::after {
    aspect-ratio: 360/143.91;
    margin-left: -113px;
    margin-left: -7.0625rem;
    max-width: 360px;
    max-width: 22.5rem;
  }
}

.p-concept__lead {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-concept__lead {
    font-size: 36px;
    font-size: 2.25rem;
    margin-top: 0;
  }
}

.p-concept__lead--nowrap {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-concept__lead--nowrap {
    white-space: normal;
    white-space: initial;
  }
}

.p-concept__text-block {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-concept__text-block {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
}

.p-concept__content--2 .p-concept__text-block {
  margin-top: 22px;
  margin-top: 1.375rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-concept__content--2 .p-concept__text-block {
    margin-top: 37px;
    margin-top: 2.3125rem;
  }
}

.p-concept__content--3 .p-concept__text-block {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-concept__content--3 .p-concept__text-block {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
}

.p-concept__text {
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.p-concept__text + .p-concept__text {
  margin-top: 2em;
}

.p-drawer {
  background-color: #7D1522;
  border-radius: 0 0 0 0.625rem;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}

.p-drawer__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  padding: 1.25rem;
}

.p-drawer__logo {
  max-width: 142px;
  max-width: 8.875rem;
  width: 100%;
}

.p-drawer__logo img {
  -o-object-fit: contain;
  aspect-ratio: 142/30;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-drawer__close {
  display: block;
  max-width: 21.5px;
  max-width: 1.34375rem;
  padding: 0;
  width: 100%;
}

.p-drawer__close img {
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-drawer__inner {
  padding-left: 45px;
  padding-left: 2.8125rem;
  padding-top: 14px;
  padding-top: 0.875rem;
}

.p-drawer__nav-item::before {
  border-top: 1px dashed #FFF;
  content: "";
  display: block;
  height: 1px;
  height: 0.0625rem;
  width: 100px;
  width: 6.25rem;
}

.p-drawer__nav-item a {
  -webkit-text-decoration: none;
  align-items: center;
  color: #FFF;
  display: flex;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  gap: 10px;
  gap: 0.625rem;
  line-height: 1;
  padding: 27px 0;
  padding: 1.6875rem 0;
  text-decoration: none;
}

.p-drawer__nav-item a::after {
  background-image: url(../images/common/drawer-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 8px;
  height: 0.5rem;
  max-width: 10px;
  max-width: 0.625rem;
  width: 100%;
}

.p-drawer__nav-item:first-child::before,
.p-drawer__nav-item:last-child::before {
  border-top: none;
}

.p-drawer__nav-item--top a {
  border: 1px solid #fff;
  border-radius: 6249.9375rem;
  display: inline-block;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding: 5px 20px 8px;
  padding: 0.3125rem 1.25rem 0.5rem;
}

.p-drawer__nav-item--top a::after {
  display: none;
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  .p-drawer__nav-item a:hover {
    opacity: 0.7;
  }
  .p-drawer__close:hover {
    opacity: 0.7;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  .p-drawer__nav-item a:active {
    opacity: 0.7;
  }
}
.p-features {
  background-color: #FAF5EF;
  position: relative;
  z-index: 999;
}

.p-features__text-block {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-features__text-block {
    flex-direction: row;
    gap: 70px;
    gap: 4.375rem;
    margin-top: 52px;
    margin-top: 3.25rem;
    margin-top: 69px;
    margin-top: 4.3125rem;
  }
}

.p-features__title {
  color: #7D1522;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 50.95px;
  margin-bottom: 3.184375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features__title {
    margin-left: 25px;
    margin-left: 1.5625rem;
    margin-top: 31px;
    margin-top: 1.9375rem;
    max-width: 297.95px;
    max-width: 18.621875rem;
  }
}

.p-features__title::after {
  aspect-ratio: 297.95/100.2;
  background-image: url(../images/common/features-title.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  margin-left: -44px;
  margin-left: -2.75rem;
  max-width: 298.95px;
  max-width: 18.684375rem;
  transform: rotate(-15deg);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features__title::after {
    margin-left: -28px;
    margin-left: -1.75rem;
  }
}

.p-features__text {
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-features__text {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
}

.p-features__items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  gap: 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-features__items {
    gap: 29px;
    gap: 1.8125rem;
    margin-top: 46px;
    margin-top: 2.875rem;
  }
}

.p-features__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features__item {
    width: auto;
  }
}

.p-features__link {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.p-features__link:hover {
  opacity: 1;
}

.p-features__card {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features__card {
    flex-direction: column;
    max-width: 278px;
    max-width: 17.375rem;
  }
}

.p-features__card-image {
  max-width: 110px;
  max-width: 6.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features__card-image {
    max-width: 100%;
  }
}

.p-features__card-image img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 0.625rem 0 0 0.625rem;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features__card-image img {
    aspect-ratio: 278/156;
    border-radius: 0.625rem 0.625rem 0 0;
  }
}

.p-features__card-body {
  align-items: center;
  background-color: #fff;
  border-radius: 0 0.625rem 0.625rem 0;
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  transition: 0.3s;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features__card-body {
    border-radius: 0 0 0.625rem 0.625rem;
    gap: 31px;
    gap: 1.9375rem;
    padding-bottom: 27px;
    padding-bottom: 1.6875rem;
    padding-top: 28px;
    padding-top: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-features__link:hover .p-features__card-body {
    background-color: #7D1522;
  }
}

@media screen and (min-width: 768px) {
  .p-features__card-body--pt15 {
    gap: 13px;
    gap: 0.8125rem;
    padding-bottom: 15px;
    padding-bottom: 0.9375rem;
    padding-top: 17px;
    padding-top: 1.0625rem;
  }
}

.p-features__card-text {
  flex: 1;
  line-height: 1;
}

.p-features__card-number {
  border: 1px solid #7D1522;
  border-radius: 0.625rem;
  color: #7D1522;
  display: inline-block;
  font-family: Arial;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  padding: 0 15px;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-features__card-number {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 2px 14px 0;
    padding: 0.125rem 0.875rem 0;
  }
}

@media screen and (min-width: 768px) {
  .p-features__link:hover .p-features__card-number {
    border: 1px solid #fff;
    color: #fff;
  }
}

.p-features__card-title {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-features__card-title {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-features__link:hover .p-features__card-title {
    color: #fff;
  }
}

.p-features__card-title-en {
  color: #999;
  font-family: Arial;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-features__card-title-en {
    margin-top: 6px;
    margin-top: 0.375rem;
  }
}

.p-features__card-title-en--fz12 {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-features__card-title-en--fz12 {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 6px;
    margin-top: 0.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-features__link:hover .p-features__card-title-en {
    color: #fff;
  }
}

.p-features__card-link {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-features__card-link {
    gap: 7px;
    gap: 0.4375rem;
  }
}

.p-features__card-link--ml-5 {
  margin-left: -5px;
  margin-left: -0.3125rem;
}

@media screen and (min-width: 768px) {
  .p-features__card-body--pt15 .p-features__card-link {
    flex: none;
  }
}

.p-features__card-link img {
  aspect-ratio: 1/1;
  max-width: 22px;
  max-width: 1.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features__card-link img {
    max-width: 32px;
    max-width: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-features__link:hover .p-features__card-link img {
    filter: invert(99%) sepia(100%) saturate(11%) hue-rotate(207deg) brightness(105%) contrast(100%);
  }
}

.p-features__card-link span {
  color: #7D1522;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-features__card-link span {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-features__link:hover .p-features__card-link span {
    color: #fff;
  }
}

.p-features--text {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  margin-left: auto;
  margin-top: -3px;
  margin-top: -0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-features--text {
    bottom: 0;
    margin-left: 0;
    margin-left: initial;
    margin-top: 0;
    margin-top: initial;
    position: absolute;
    right: 0;
  }
}

.p-gallery {
  background: #F2E1CF;
  padding-bottom: 180px;
  padding-bottom: 11.25rem;
  padding-top: 82px;
  padding-top: 5.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-gallery {
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
    padding-top: 160px;
    padding-top: 10rem;
  }
}

.p-gallery::before {
  -webkit-transform: translate(-50%, 0);
  background: transparent url(../images/common/txt-gallery-sp.png) no-repeat center center/100%;
  content: "";
  height: 333.5px;
  height: 20.84375rem;
  left: 50%;
  position: absolute;
  top: -46px;
  top: -2.875rem;
  transform: translate(-50%, 0);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-gallery::before {
    background: transparent url(../images/common/txt-gallery.png) no-repeat center center/100%;
    height: 1107px;
    height: 69.1875rem;
    position: absolute;
    top: -240px;
    top: -15rem;
  }
}

.p-gallery__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  max-width: 120rem;
  position: relative;
  z-index: 1;
}

.p-gallery__head {
  display: flex;
  flex-direction: column;
  max-width: 967px;
  max-width: 60.4375rem;
  row-gap: 20px;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-gallery__head {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-gallery__title {
  color: #7D1522;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-gallery__title {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

.p-gallery__read {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-gallery__read {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-gallery__wrap {
  grid-row-gap: 85px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 60px;
  margin-top: 3.75rem;
  row-gap: 85px;
  row-gap: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .p-gallery__wrap {
    margin-top: 74px;
    margin-top: 4.625rem;
    row-gap: 120px;
    row-gap: 7.5rem;
  }
}

.p-gallery__container {
  position: relative;
}

.p-gallery__container--01 {
  padding-bottom: 136px;
  padding-bottom: 8.5rem;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--01 {
    padding-bottom: 302px;
    padding-bottom: 18.875rem;
  }
}

.p-gallery__container--02 {
  padding-bottom: 136px;
  padding-bottom: 8.5rem;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--02 {
    padding-bottom: 211px;
    padding-bottom: 13.1875rem;
  }
}

.p-gallery__container--03 {
  padding-bottom: 182px;
  padding-bottom: 11.375rem;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--03 {
    padding-bottom: 0;
  }
}

.p-gallery__container--04 {
  padding-bottom: 135px;
  padding-bottom: 8.4375rem;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--04 {
    padding-bottom: 0;
  }
}

.p-gallery__container--05 {
  padding-bottom: 182px;
  padding-bottom: 11.375rem;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--05 {
    align-items: center;
    display: flex;
    gap: 60px;
    gap: 3.75rem;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-gallery__container--06 {
    align-items: flex-end;
    display: flex;
    gap: 100px;
    gap: 6.25rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.p-gallery__img {
  overflow: hidden;
}

.p-gallery__img:nth-child(1) {
  width: 84.7328244275%;
}

.p-gallery__img:nth-child(2) {
  width: 30.534351145%;
}

.p-gallery__container--01 .p-gallery__img:nth-child(1) {
  border-radius: 0 10px 10px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--01 .p-gallery__img:nth-child(1) {
    width: 83.3333333333%;
  }
}

.p-gallery__container--01 .p-gallery__img:nth-child(2) {
  border-radius: 10px;
  bottom: 76px;
  bottom: 4.75rem;
  position: absolute;
  right: 7.6335877863%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--01 .p-gallery__img:nth-child(2) {
    bottom: 0;
    left: calc(50% + 15rem);
    right: auto;
    width: 27.7777777778%;
  }
}

.p-gallery__container--02 .p-gallery__img:nth-child(1) {
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--02 .p-gallery__img:nth-child(1) {
    margin-left: 8.3333333333%;
    margin-right: auto;
    width: 55.5555555556%;
  }
}

.p-gallery__container--02 .p-gallery__img:nth-child(2) {
  border-radius: 10px 0 0 10px;
  bottom: 47px;
  bottom: 2.9375rem;
  position: absolute;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--02 .p-gallery__img:nth-child(2) {
    border-radius: 10px;
    bottom: 0;
    left: calc(50% + 8.75rem);
    right: auto;
    width: 20.8333333333%;
  }
}

.p-gallery__container--03 .p-gallery__img:nth-child(1) {
  border-radius: 0 10px 10px 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 30.534351145%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--03 .p-gallery__img:nth-child(1) {
    top: -210px;
    top: -13.125rem;
    width: 27.7777777778%;
  }
}

.p-gallery__container--03 .p-gallery__img:nth-child(2) {
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 84.7328244275%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--03 .p-gallery__img:nth-child(2) {
    border-radius: 10px;
    margin-left: 23.6111111111%;
    margin-right: auto;
    margin-top: 0;
    width: 41.6666666667%;
  }
}

.p-gallery__container--04 .p-gallery__img:nth-child(1) {
  border-radius: 10px 0 0 10px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--04 .p-gallery__img:nth-child(1) {
    margin-top: 0;
    width: 62.5%;
  }
}

.p-gallery__container--04 .p-gallery__img:nth-child(2) {
  border-radius: 10px;
  position: absolute;
  right: 7.6335877863%;
  top: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--04 .p-gallery__img:nth-child(2) {
    border-radius: 10px;
    left: calc(50% + 21.25rem);
    right: auto;
    top: -102px;
    top: -6.375rem;
    width: 20.8333333333%;
  }
}

.p-gallery__container--05 .p-gallery__img:nth-child(1) {
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--05 .p-gallery__img:nth-child(1) {
    margin-left: 8.3333333333%;
    margin-right: 0;
    width: 41.6666666667%;
  }
}

.p-gallery__container--05 .p-gallery__img:nth-child(2) {
  border-radius: 10px;
  position: absolute;
  right: 7.6335877863%;
  top: 192px;
  top: 12rem;
  width: 38.1679389313%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--05 .p-gallery__img:nth-child(2) {
    border-radius: 10px;
    bottom: -160px;
    bottom: -10rem;
    left: calc(50% + 18.75rem);
    right: auto;
    top: auto;
    width: 20.8333333333%;
  }
}

.p-gallery__container--06 .p-gallery__img:nth-child(1) {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--06 .p-gallery__img:nth-child(1) {
    border-radius: 10px;
    width: 62.5%;
  }
}

.p-gallery__container--06 .p-gallery__img:nth-child(2) {
  border-radius: 10px;
  bottom: -90px;
  bottom: -5.625rem;
  position: absolute;
  right: 7.6335877863%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--06 .p-gallery__img:nth-child(2) {
    bottom: auto;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    position: static;
    right: auto;
    width: 27.7777777778%;
  }
}

.p-gallery__img img {
  height: auto;
  width: 100%;
}

.p-gallery__body {
  display: flex;
  flex-direction: column;
  position: absolute;
  row-gap: 6px;
  row-gap: 0.375rem;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-gallery__body {
    flex-direction: row;
  }
}

.p-gallery__container--01 .p-gallery__body {
  bottom: 0;
  left: 7.6335877863%;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--01 .p-gallery__body {
    -moz-column-gap: 1.875rem;
    align-items: center;
    bottom: 96px;
    bottom: 6rem;
         column-gap: 1.875rem;
    left: calc(50% - 37.5rem);
  }
}

.p-gallery__container--02 .p-gallery__body {
  bottom: 0;
  left: 6.6157760814%;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--02 .p-gallery__body {
    flex-direction: column;
    gap: 24px;
    gap: 1.5rem;
    left: calc(50% + 16.25rem);
    top: 14px;
    top: 0.875rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1441px) {
  .p-gallery__container--02 .p-gallery__body {
    left: 68.0083275503%;
  }
}

.p-gallery__container--03 .p-gallery__body {
  bottom: 0;
  left: 6.6157760814%;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--03 .p-gallery__body {
    bottom: 10px;
    bottom: 0.625rem;
    flex-direction: column;
    gap: 24px;
    gap: 1.5rem;
    left: auto;
    right: 1.9444444444%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1441px) {
  .p-gallery__container--03 .p-gallery__body {
    left: 69.3962526024%;
    right: auto;
  }
}

.p-gallery__container--04 .p-gallery__body {
  bottom: 0;
  left: 7.1246819338%;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--04 .p-gallery__body {
    bottom: 149px;
    bottom: 9.3125rem;
    flex-direction: column;
    gap: 24px;
    gap: 1.5rem;
    left: 8.3333333333%;
  }
}

.p-gallery__container--05 .p-gallery__body {
  bottom: 0;
  left: 8.1424936387%;
}
@media screen and (min-width: 768px) {
  .p-gallery__container--05 .p-gallery__body {
    bottom: auto;
    flex-direction: column;
    gap: 24px;
    gap: 1.5rem;
    left: auto;
    margin-top: -56px;
    margin-top: -3.5rem;
    position: static;
  }
}

.p-gallery__logo {
  width: 55px;
  width: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-gallery__logo {
    width: 109px;
    width: 6.8125rem;
  }
}

.p-gallery__logo img {
  -o-object-fit: contain;
  aspect-ratio: 109/120;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-gallery__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-gallery__text {
    font-size: 32px;
    font-size: 2rem;
    line-height: 2.4;
  }
}

.p-header {
  background-color: #fff;
  border-bottom: 1px solid #7D1522;
}

.p-header__inner {
  display: flex;
  height: 100%;
  max-width: 1920px;
  max-width: 120rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-left: 60px;
    padding-left: 3.75rem;
    padding-right: 45px;
    padding-right: 2.8125rem;
  }
}

.p-header__logo {
  align-items: center;
  display: flex;
  height: 100%;
  width: 142px;
  width: 8.875rem;
}
.p-header__logo-link {
  display: block;
}

.p-header__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 71/15;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-header__menu-button {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-header__menu-button {
    display: none;
  }
}

.p-header__pc-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__pc-nav {
    display: block;
    height: 100%;
    margin-left: auto;
  }
}

.p-header__pc-nav-items {
  display: flex;
  height: 100%;
}

.p-header__pc-nav-item {
  height: 100%;
}

.p-header__pc-nav-item a {
  -webkit-text-decoration: none;
  align-items: center;
  color: #000;
  display: flex;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  gap: 10px;
  gap: 0.625rem;
  height: 100%;
  line-height: 1;
  padding: 0 14px;
  padding: 0 0.875rem;
  text-decoration: none;
  /* 16px */
}
.p-header__pc-nav-item a::after {
  background-image: url(../images/common/header-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 6px;
  height: 0.375rem;
  width: 10px;
  width: 0.625rem;
}

.p-header__menu-button {
  z-index: 101;
}

.p-header__drawer {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-out;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-header__drawer {
    left: auto;
    max-width: 46.6666666667%;
    width: 50%;
  }
}

.p-header__drawer[aria-hidden=false] {
  transform: translateX(0);
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  .p-header__pc-nav-item a:hover {
    color: #7D1522;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  .p-header__pc-nav-item a:active {
    color: #7D1522;
  }
}
.p-modal {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  transition: all 0.3s ease-out;
  visibility: hidden;
  width: 100%;
  z-index: 8887;
}

.p-modal-content__body {
  background: #fff;
  height: 90%;
  left: 20px;
  left: 1.25rem;
  max-width: 1280px;
  max-width: 80rem;
  overflow-y: auto;
  padding: 20px;
  padding: 1.25rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 60px;
  top: 3.75rem;
}

.p-modal-content__top {
  display: inline-block;
  position: fixed;
  right: 46px;
  right: 2.875rem;
  top: 80px;
  top: 5rem;
}

.p-modal-content__close {
  aspect-ratio: 1/1;
  display: inline-block;
  height: auto;
  position: relative;
  width: 34px;
  width: 2.125rem;
}

.p-modal-content__close::before,
.p-modal-content__close::after {
  background-color: #ED722D;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}

.p-modal-content__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-modal-content__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-modal-content__close:hover,
.p-modal-content__close:focus {
  -webkit-text-decoration: none;
  cursor: pointer;
  text-decoration: none;
}

/* is-show */
.is-show {
  opacity: 1;
  visibility: visible; /* モーダル表示用クラス */
}

/* body固定 */
body:has(.p-modal.is-show) {
  overflow: hidden;
}

.p-mv {
  position: relative;
}

.p-mv::after {
  aspect-ratio: 1/1;
  background-image: url(../images/common/mv-point-sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -60px;
  bottom: -3.75rem;
  content: "";
  display: block;
  left: 50%;
  max-width: 120px;
  max-width: 7.5rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .p-mv::after {
    background-image: url(../images/common/mv-point.png);
    bottom: -120px;
    bottom: -7.5rem;
    max-width: 240px;
    max-width: 15rem;
  }
}

.p-mv__inner {
  left: 0;
  max-width: 1250px;
  max-width: 78.125rem;
  padding: 0 30px;
  padding: 0 1.875rem;
  position: absolute;
  top: 30px;
  top: 1.875rem;
  width: 100%;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    left: 50%;
    padding: 0 25px;
    padding: 0 1.5625rem;
    top: calc(50% - 0.875rem);
    transform: translate(-50%, -50%);
  }
}

.p-mv__text--en {
  color: #7D1522;
  font-family: Arial;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
}
@media screen and (min-width: 768px) {
  .p-mv__text--en {
    font-size: 81px;
    font-size: 5.0625rem;
  }
}

.p-mv__text--ja {
  color: #7D1522;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__text--ja {
    font-size: 30px;
    font-size: 1.875rem;
    margin-top: 18px;
    margin-top: 1.125rem;
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

.p-mv .swiper-pagination-bullet {
  background: #f2ebe3;
  /* トラック色 */
  border-radius: 9999px;
  height: 6px;
  height: 0.375rem;
  opacity: 1;
  overflow: hidden;
  /* Swiperの既定の半透明を無効化 */
  position: relative;
  width: 6px;
  width: 0.375rem;
}

.p-mv .swiper-pagination-bullet-active {
  background: #f2ebe3;
  /* トラック色 */
  border-radius: 9999px;
  height: 6px;
  height: 0.375rem;
  opacity: 1;
  overflow: hidden;
  /* Swiperの既定の半透明を無効化 */
  position: relative;
  width: 27.273px;
  width: 1.7045625rem;
}

.swiper-pagination-bullet .progress {
  background: #7b0f18;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  /* 進捗色（画像のえんじ系） */
  transform-origin: left center;
  /* JSで伸ばす */
  transition: transform 0.1s linear;
}

.p-mv .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 26px;
  bottom: 1.625rem;
  left: auto;
  left: initial;
  right: 24px;
  right: 1.5rem;
  width: auto;
}
@media screen and (min-width: 768px) {
  .p-mv .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
    bottom: 1.875rem;
    right: 89.73px;
    right: 5.608125rem;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 5.5s linear 0s normal both;
}

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

@media screen and (min-width: 500px) {
  .u-sm {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .u-sm {
    display: none;
  }
}

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

.u-text-bg {
  background-image: linear-gradient(#FAF5EF 100%, #FAF5EF 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 10px;
  display: inline;
  padding: 1px 15px;
  padding: 0.0625rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .u-text-bg {
    padding: 8.5px 30px;
    padding: 0.53125rem 1.875rem;
  }
}
/*# sourceMappingURL=style.css.map */
