@charset "UTF-8";
/* 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 {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

/* 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;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #111;
}

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

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

/* ========================================
  Footer
======================================== */
.l-footer {
  background-color: #1f2f4a;
  padding-block: 4.375rem 1.875rem;
  color: #fff;
}

.l-footer__main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .l-footer__main {
    flex-direction: row;
    gap: 3.75rem;
  }
}

.l-footer__brand {
  flex: 1;
}

.l-footer__company {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
}

.l-footer__tagline {
  margin-top: 2.875rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.56;
}

.l-footer__sns {
  margin-top: 2.375rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.l-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.3s;
}
.l-footer__sns-link svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}
@media (any-hover: hover) {
  .l-footer__sns-link:hover {
    opacity: 0.7;
  }
}
.l-footer__sns-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.l-footer__nav {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    gap: 9rem;
  }
}

.l-footer__nav-col {
  min-width: 9rem;
}

.l-footer__nav-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
}

.l-footer__nav-list {
  margin-top: 2.3125rem;
}

.l-footer__nav-item:not(:first-child) {
  margin-top: 1rem;
}

.l-footer__nav-link {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1;
}
@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    opacity: 0.7;
  }
}
.l-footer__nav-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.l-footer__copyright {
  margin-top: 3.125rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
}

/* ========================================
  Header
======================================== */
.l-header {
  position: sticky;
  top: 0;
  height: 3.75rem;
  background-color: #fffffd;
  padding-inline: 1.5625rem;
  z-index: 300;
  display: flex;
  align-items: center;
}

.l-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  margin-inline: auto;
}

.l-header__logo {
  flex-shrink: 0;
  margin-inline-end: auto;
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: 7.5625rem;
  height: 3.625rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__logo:focus-visible {
  outline: 2px solid #374151;
  outline-offset: 2px;
}

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

.l-header__nav-list {
  display: flex;
  gap: 3.4375rem;
  align-items: center;
}

.l-header__nav-link {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #374151;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .l-header__nav-link:hover {
    opacity: 0.7;
  }
}
.l-header__nav-link:focus-visible {
  outline: 2px solid #374151;
  outline-offset: 2px;
}

/* ----------------------------------------
  Hamburger Button
---------------------------------------- */
.l-header__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  z-index: 300;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: #374151;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.l-header__hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.l-header__hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------
  SP Navigation
---------------------------------------- */
.l-nav-sp {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: #fffffd;
  overflow-y: auto;
  padding: 5rem 1.875rem 3.75rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.l-nav-sp.is-active {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .l-nav-sp {
    display: none;
  }
}

.l-nav-sp__list {
  display: flex;
  flex-direction: column;
}

.l-nav-sp__item {
  border-bottom: 1px solid rgba(55, 65, 81, 0.2);
}
.l-nav-sp__item:first-child {
  border-top: 1px solid rgba(55, 65, 81, 0.2);
}

.l-nav-sp__link {
  display: block;
  padding: 1.125rem 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #374151;
  letter-spacing: 0.16em;
}

body.is-nav-open {
  overflow: hidden;
}

.l-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 25px;
    max-width: 1250px;
  }
}

/* ========================================
  About
======================================== */
.p-about {
  background-color: #fffffd;
  background-image: url("../../images/about_bg.png");
  background-size: cover;
  background-position: center center;
  padding-block: 7.125rem 0;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-block: 7.125rem 0;
  }
}

.p-about__inner {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    margin-top: 3.75rem;
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__inner {
    justify-content: space-between;
  }
}

.p-about__body {
  flex: 1;
}
@media screen and (min-width: 1200px) {
  .p-about__body {
    flex: 0 0 36rem;
  }
}

.p-about__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #374151;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-about__heading {
    font-size: 2rem;
  }
}

.p-about__text {
  margin-top: 5.375rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.95;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 1.25rem;
  }
}

.p-about__label {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #374151;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__label {
    font-size: 2rem;
  }
}

.p-about__image {
  width: 100%;
}
.p-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 439/332;
}
@media screen and (min-width: 768px) {
  .p-about__image {
    max-width: 27.4375rem;
    flex-shrink: 0;
  }
}

.p-about__btn-wrap {
  text-align: center;
  padding-block: 1.25rem 5rem;
}

.p-about__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #1f2f4a;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 0.3125rem;
  letter-spacing: 0.1em;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .p-about__btn:hover {
    background-color: #2b4167;
  }
}
.p-about__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.p-about__btn-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3125rem 0 0.3125rem 0.5rem;
  border-color: transparent transparent transparent #fff;
}

/* ========================================
  Blog
======================================== */
.p-blog {
  background-color: #edeffb;
  padding-block: 2.5rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-blog {
    padding-block: 5rem 6.25rem;
  }
}

.p-blog__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-blog__inner {
    gap: 2.5rem;
  }
}

.p-blog__image img {
  width: 17.5rem;
  aspect-ratio: 440/98;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-blog__image img {
    width: 27.5rem;
  }
}

.p-blog__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1rem;
  color: #333;
  line-height: 1.78;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blog__text {
    font-size: 1.5rem;
  }
}

/* ========================================
  準備中ページ
======================================== */
.p-coming-soon {
  padding-block: 6rem 8rem;
  text-align: center;
}
.p-coming-soon .l-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-coming-soon__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #b59c74;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.p-coming-soon__title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.p-coming-soon__text {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 2;
  color: #555;
  margin-bottom: 3rem;
}

.p-coming-soon__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #b59c74;
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s;
}
@media (any-hover: hover) {
  .p-coming-soon__back:hover {
    color: #b59c74;
  }
}

.p-coming-soon__back-icon::before {
  content: "→";
  font-size: 0.875rem;
}

/* ========================================
  Contact
======================================== */
.p-contact {
  position: relative;
  overflow: hidden;
  padding-bottom: 7.5rem;
}
.p-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/contact_01.png");
  background-size: cover;
  background-position: center center;
  z-index: 0;
  pointer-events: none;
}

.p-contact__inner {
  position: relative;
  z-index: 10;
  max-width: 38.75rem;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    padding-inline: 0;
  }
}

.p-contact__head {
  padding-top: 3.75rem;
  text-align: center;
}

.p-contact__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #374151;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 2rem;
  }
}

.p-contact__subtitle {
  margin-top: 4.625rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #374151;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__subtitle {
    font-size: 1.5rem;
  }
}

.p-contact__desc {
  margin-top: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-contact__desc {
    font-size: 1rem;
  }
}

.p-contact__form {
  margin-top: 3.75rem;
}

.p-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.p-contact__field:not(:first-child) {
  margin-top: 1.25rem;
}

.p-contact__label {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1rem;
  color: #374151;
}

.p-contact__required {
  color: #f21818;
  font-size: 1rem;
}

.p-contact__input {
  width: 100%;
  height: 2.5rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding-inline: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #374151;
}
.p-contact__input:focus-visible {
  outline: 2px solid #374151;
  border-color: #374151;
}

.p-contact__textarea {
  width: 100%;
  height: 10.1875rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0.625rem 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #374151;
  resize: vertical;
}
.p-contact__textarea:focus-visible {
  outline: 2px solid #374151;
  border-color: #374151;
}

.p-contact__submit {
  margin-top: 3.75rem;
  text-align: center;
}

.p-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 30.9375rem;
  height: 2.0625rem;
  background-color: #1f2f4a;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-contact__btn:hover {
    background-color: #2b4167;
  }
}
.p-contact__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.p-contact__btn-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3125rem 0 0.3125rem 0.5rem;
  border-color: transparent transparent transparent #fff;
}

.p-contact .l-inner {
  position: relative;
  z-index: 10;
}

.p-contact__body {
  margin-top: 8.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__body {
    display: flex;
    gap: 6.25rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 8.75rem;
    padding-bottom: 5rem;
  }
}

.p-contact__form-col .p-contact__subtitle {
  text-align: left;
  margin-top: 0;
}

.p-contact__form-col .p-contact__desc {
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-contact__form-col {
    width: 31rem;
    flex-shrink: 0;
  }
}

.p-contact__info-col {
  flex: 1;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__info-col {
    padding-top: 0;
  }
}

.p-contact__company-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #374151;
}
@media screen and (min-width: 768px) {
  .p-contact__company-title {
    font-size: 1.5rem;
  }
}

.p-contact__company-dl {
  margin-top: 0.625rem;
}

.p-contact__company-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.25rem;
}
.p-contact__company-row + .p-contact__company-row {
  margin-top: 0.3125rem;
}

.p-contact__company-term {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  width: 7.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-contact__company-term {
    font-size: 1.25rem;
    width: 11.0625rem;
  }
}

.p-contact__company-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #374151;
}
@media screen and (min-width: 768px) {
  .p-contact__company-desc {
    font-size: 1.25rem;
  }
}

.p-contact__company-note {
  display: block;
  font-size: 0.75rem;
  color: #4f4e4e;
  margin-top: 0.25rem;
  line-height: 1.6;
}
.p-contact__company-note a {
  text-decoration: underline;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .p-contact__company-note {
    font-size: 1rem;
  }
}

.p-contact__map {
  margin-top: 2.5rem;
  max-width: 37.9375rem;
  width: 100%;
}
.p-contact__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 607/288;
  display: block;
}
.p-contact__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 607/288;
}

/* ========================================
  FAQ
======================================== */
.p-faq {
  background-color: #fffff8;
  padding-bottom: 6.25rem;
  position: relative;
  overflow: hidden;
}

.p-faq__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #374151;
  text-align: center;
  letter-spacing: 0.16em;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__title {
    font-size: 2rem;
    padding-top: 7.625rem;
  }
}

.p-faq__list {
  margin-top: 3.75rem;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    margin-top: 5rem;
    max-width: 51.25rem;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.p-faq__item + .p-faq__item {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item + .p-faq__item {
    margin-top: 3rem;
  }
}

.p-faq__question {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1rem;
  color: #374151;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-faq__question {
    font-size: 1.25rem;
    letter-spacing: 0.16em;
  }
}

.p-faq__divider {
  margin-top: 1rem;
  border: none;
  border-top: 1px solid rgba(55, 65, 81, 0.3);
}

.p-faq__answer {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-faq__answer {
    padding-inline-start: 1.5rem;
    gap: 1rem;
  }
}

.p-faq__answer-label {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
  color: #374151;
  letter-spacing: 0.16em;
  flex-shrink: 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-faq__answer-label {
    font-size: 1.125rem;
  }
}

.p-faq__answer-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #6c6d6f;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-faq__answer-text {
    font-size: 1.125rem;
    letter-spacing: 0.16em;
  }
}
.p-faq__answer-text p + p {
  margin-top: 0.375rem;
}

.p-faq__archer {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-faq__archer {
    display: block;
    position: absolute;
    left: max(0px, 50% - 37.4375rem);
    bottom: 5.9375rem;
    width: 7.625rem;
    height: 13.75rem;
  }
  .p-faq__archer img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
  }
}

/* ========================================
  FV
======================================== */
.p-fv {
  position: relative;
  height: auto;
  min-height: 25rem;
  background-color: #030303;
  overflow: hidden;
  isolation: isolate;
}
.p-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fffcfc 0%, #a1a1a1 41%, #9c9c9b 46%, #989797 49%, #5e5858 93%);
  opacity: 0.14;
  z-index: 1;
  pointer-events: none;
}
.p-fv::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 8.375rem;
  height: 6.75rem;
  background: url("../images/fv_deco.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-fv::after {
    width: 14rem;
    height: 11.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv {
    height: 40.625rem;
  }
}

.p-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/fv_01.png") no-repeat center center/cover;
  will-change: transform, opacity;
}
@media (min-width: 1441px) {
  .p-fv__bg {
    background: url("../images/fv_01.png") no-repeat bottom center/contain;
  }
}

.p-fv__text-vert {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .p-fv__text-vert {
    top: 3rem;
    left: 8.5rem;
    gap: 2.5rem;
  }
}

.p-fv__shop-name {
  display: block;
  width: auto;
  height: 9.0625rem;
}
@media screen and (min-width: 768px) {
  .p-fv__shop-name {
    height: 17.5rem;
  }
}

.p-fv__product-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.35em;
  line-height: 1;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .p-fv__product-text {
    font-size: 2.25rem;
  }
}

.p-fv__notice {
  position: relative;
  z-index: 30;
  margin: 2.5rem 20px 2.5rem;
  background-color: rgba(255, 255, 255, 0.51);
  padding: 1.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-fv__notice {
    position: absolute;
    top: 10.3125rem;
    left: 22.5625rem;
    width: 42.1875rem;
    margin: 0;
    padding: 1.9375rem 1.3125rem 1.875rem;
  }
}

.p-fv__notice-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #333;
  line-height: 1.4;
}

.p-fv__contact-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 0.75rem;
  border: 0.75px solid #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #333;
}
@media (any-hover: hover) {
  .p-fv__contact-btn:hover {
    background-color: rgba(51, 51, 51, 0.05);
  }
}
.p-fv__contact-btn:focus-visible {
  outline: 2px solid #333;
  outline-offset: 2px;
}

.p-fv__contact-info {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #333;
  line-height: 1.4;
}

.p-fv__catchcopy {
  position: absolute;
  top: 1.5rem;
  left: 5.625rem;
  display: block;
  font-family: "HGSeikaishotaiPRO", "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.25em;
  line-height: 1.03;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .p-fv__catchcopy {
    top: 3.0625rem;
    left: 19.75rem;
    font-size: 1.6875rem;
  }
}

.p-fv__text-wrap {
  position: absolute;
  inset: 0;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .p-fv__text-wrap {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1250px;
  }
}

@media screen and (min-width: 768px) {
  .p-fv__text-wrap .p-fv__text-vert {
    left: 20px;
  }
}
@media (min-width: 1300px) {
  .p-fv__text-wrap .p-fv__text-vert {
    left: -0.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-fv__text-wrap .p-fv__catchcopy {
    left: 10.9375rem;
  }
}
@media (min-width: 1300px) {
  .p-fv__text-wrap .p-fv__catchcopy {
    left: 10rem;
  }
}

/* ========================================
  Ichimatsu Line
======================================== */
.p-ichimatsu {
  height: 0.6875rem;
  background-image: url("../images/ichimatsu_01.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
}

/* ========================================
  Owabi
======================================== */
.p-owabi {
  padding-block: 5rem 6.25rem;
}

.p-owabi__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #333;
  text-align: center;
  line-height: 1.78;
}
@media screen and (min-width: 768px) {
  .p-owabi__title {
    font-size: 2.5rem;
  }
}

.p-owabi__body {
  margin-top: 2.5rem;
  background-color: rgba(217, 217, 217, 0.5);
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-owabi__body {
    max-width: 61rem;
    margin-inline: auto;
    padding: 2.25rem 2.875rem;
  }
}

.p-owabi__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.78;
}
@media screen and (min-width: 768px) {
  .p-owabi__text {
    font-size: 1.5rem;
  }
}

.p-owabi__text--gap {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-owabi__text--gap {
    margin-top: 2.25rem;
  }
}

.p-owabi__text--semibold {
  font-weight: 600;
}

/* ========================================
  Process
======================================== */
.p-process {
  background-color: #fffff8;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-process {
    padding-bottom: 7.5rem;
  }
}

.p-process__head {
  padding-block: 2.5rem 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-process__head {
    padding-block: 6.25rem 3.125rem;
  }
}

.p-process__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #374151;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-process__title {
    font-size: 2rem;
  }
}

.p-process__subtitle {
  margin-top: 1.4375rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-process__subtitle {
    font-size: 1.125rem;
    white-space: nowrap;
  }
}

.p-process__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.p-process__step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-process__step {
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
    max-width: 61.625rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-process__step--img-right {
    flex-direction: row;
  }
}

.p-process__step--img-left .p-process__step-image {
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-process__step--img-left {
    flex-direction: row;
  }
  .p-process__step--img-left .p-process__step-image {
    order: 0;
  }
}

.p-process__step-image {
  width: 100%;
}
.p-process__step-image img {
  width: 100%;
  height: 12.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-process__step-image img {
    width: 29.75rem;
    height: 15.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-process__step-image {
    width: 29.75rem;
    flex-shrink: 0;
  }
}

.p-process__step-body {
  flex: 1;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-process__step-body {
    padding-inline: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.p-process__step-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #374151;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-process__step-title {
    font-size: 1.25rem;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .p-process--sub {
    padding-bottom: 7.5rem;
  }
}

.p-process__step-text {
  margin-top: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-process__step-text {
    font-size: 1rem;
    line-height: 1.57;
  }
}

.p-process__arrow {
  text-align: center;
  padding-block: 1rem;
}
@media screen and (min-width: 768px) {
  .p-process__arrow {
    padding-block: 1.5rem;
  }
}
.p-process__arrow img {
  width: 2.125rem;
  height: 3.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-process__features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding-block: 3.75rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-process__features {
    flex-direction: row;
    justify-content: space-between;
    padding-block: 5rem;
  }
}

.p-process__feature-circle {
  position: relative;
  width: 18.75rem;
  height: 18.75rem;
  border-radius: 50%;
  overflow: hidden;
}

.p-process__feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-process__feature-title {
  position: absolute;
  top: 20.67%;
  left: 0;
  right: 0;
  bottom: 71.67%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #374151;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-process__feature-title {
    font-size: 1.25rem;
  }
}

.p-process__feature-deco {
  position: absolute;
  left: 0;
  right: 2.67%;
  top: 6.5625rem;
  height: 3.6875rem;
  overflow: hidden;
}
.p-process__feature-deco img {
  width: 100%;
  height: auto;
}

.p-process__feature-text {
  position: absolute;
  bottom: 13%;
  left: 17%;
  right: 17%;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #374151;
  line-height: 1.3;
  top: 58.5%;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-process__feature-text {
    top: 56.5%;
    font-size: 1.125rem;
  }
}

/* ========================================
  Yugake
======================================== */
.p-yugake {
  background-color: #fffffd;
  padding-block: 0.625rem 5rem;
}

.p-yugake__head {
  text-align: center;
  padding-block: 6.25rem 3.125rem;
  color: #374151;
}

.p-yugake__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-yugake__title {
    font-size: 2rem;
  }
}

.p-yugake__subtitle {
  margin-top: 1.4375rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.22;
}
@media screen and (min-width: 768px) {
  .p-yugake__subtitle {
    font-size: 1.125rem;
  }
}

.p-yugake__desc {
  margin-top: 1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6111111111;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-yugake__desc {
    font-size: 1.125rem;
  }
}

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

.p-yugake__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-yugake__item {
    flex: 1;
    min-width: 0;
  }
}

.p-yugake__card {
  position: relative;
  background-color: #fffef4;
  min-height: 11.75rem;
  display: flex;
}

.p-yugake__card-media {
  width: 10.5rem;
  flex-shrink: 0;
  height: 11.75rem;
}

.p-yugake__card-image {
  width: 10.5rem;
  height: 11.75rem;
  overflow: hidden;
}
.p-yugake__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: url("../images/yugake_mask.svg");
          mask-image: url("../images/yugake_mask.svg");
  -webkit-mask-size: 10.5rem 11.75rem;
          mask-size: 10.5rem 11.75rem;
  -webkit-mask-position: 0.125rem 0.125rem;
          mask-position: 0.125rem 0.125rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.p-yugake__card-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.8125rem;
  height: 3.8125rem;
}
.p-yugake__card-deco img {
  width: 100%;
  height: 100%;
}

.p-yugake__card-body {
  flex: 1;
  padding: 1.375rem 1rem 1.375rem 1rem;
  color: #374151;
}

.p-yugake__card-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  white-space: nowrap;
}

.p-yugake__card-desc {
  margin-top: 1.625rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.p-yugake__note {
  margin-top: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #374151;
  text-align: center;
}

.p-yugake__btn {
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #1f2f4a;
  padding: 0.3125rem 1.875rem 0.3125rem 2.1875rem;
  border-radius: 0.3125rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .p-yugake__btn:hover {
    background-color: #2b4167;
  }
}
.p-yugake__btn:focus-visible {
  outline: 2px solid #1f2f4a;
  outline-offset: 2px;
}

.p-yugake__btn-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3125rem 0 0.3125rem 0.5rem;
  border-color: transparent transparent transparent #fff;
}

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

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

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*# sourceMappingURL=style.css.map */
