@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
html {
  font-size: 100%;
}
@media (max-width: 1600px) {
  html {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

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

@media screen and (max-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 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;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  max-width: 100rem;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-main {
  margin-top: 13.75rem;
}
@media screen and (max-width: 768px) {
  .l-main {
    margin-top: 3.125rem;
  }
}

.l-main2 {
  margin-top: 19.5rem;
}
@media screen and (max-width: 768px) {
  .l-main2 {
    margin-top: 6.375rem;
  }
}

.l-section {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .l-section {
    margin-top: 3.125rem;
  }
}

.c-bread__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.c-bread__item + .c-bread__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.c-bread__item + .c-bread__item:before {
  content: "";
  display: block;
  width: 0.8125rem;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/common/arrow_bread.svg) no-repeat center/contain;
}

.c-bread__link {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}

.c-btn1 {
  font-size: 1.125rem;
  line-height: 2.9;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #fff;
  background-color: #051755;
  min-width: 15rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.125rem;
  padding-inline: 1.25rem;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-btn1 {
    min-width: 13.9375rem;
  }
}
.c-btn1:after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.9375rem;
  -webkit-mask: url(../images/common/arrow1.svg) no-repeat center/contain;
          mask: url(../images/common/arrow1.svg) no-repeat center/contain;
  background-color: #fff;
  -webkit-transition: translate 0.3s ease-in-out;
  transition: translate 0.3s ease-in-out;
}
.c-btn1.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-btn1.--reverse:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-btn1:hover {
  background-color: #E26E2F;
}
.c-btn1:hover:after {
  translate: 5px 0;
}
.c-btn1:hover.--reverse:after {
  translate: -5px 0;
}

.c-card1 {
  display: grid;
  gap: 1.875rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.c-card1__body {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-card1__body {
    display: contents;
  }
}

.c-card1__title {
  color: #051755;
  font-size: 1.8125rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .c-card1__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 1.25rem;
  }
}

.c-card1__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-card1__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 0.9375rem;
  }
}

.c-card1__image {
  max-width: 59.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-card1__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.c-card1__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-card1__image img {
    aspect-ratio: 360/240;
  }
}

.c-card1__imageMd {
  width: 100%;
  max-width: 46.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-card1__imageMd {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.c-card1__imageMd iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 750/500;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-card1__imageMd iframe {
    aspect-ratio: 360/240;
  }
}

/* ---------------------------------------
 * card1 pattern-01
 * ベース: タイトル -> テキスト -> 画像（縦積み）
 * ------------------------------------- */
.c-card1 {
  grid-template-columns: 1fr;
}

/* ---------------------------------------
 * card1 pattern-02
 * 左: タイトル+テキスト / 右: 画像
 * ------------------------------------- */
.c-card1.--ptn2 {
  grid-template-columns: 1fr minmax(36.9375rem, 20rem);
}
@media screen and (max-width: 768px) {
  .c-card1.--ptn2 {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------
 * card1 pattern-03
 * 上: タイトル+テキスト / 下: 画像2カラム
 * ※ 画像は .c-card1__image を2つ並べる想定
 * ------------------------------------- */
.c-card1.--ptn3 {
  grid-template-columns: 1fr minmax(36.9375rem, 20rem);
}
@media screen and (max-width: 768px) {
  .c-card1.--ptn3 {
    grid-template-columns: 1fr;
  }
}
.c-card1.--ptn3 .c-card1__imageLg {
  grid-area: 2/1/3/3;
}
@media screen and (max-width: 768px) {
  .c-card1.--ptn3 .c-card1__imageLg {
    grid-area: auto;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

/* ---------------------------------------
 * card1 pattern-04
 * 2カラム
 * 左: タイトル -> テキスト -> 画像（3段）
 * 右: 画像1枚（上揃え）
 * ------------------------------------- */
.c-card1.--ptn4 {
  grid-template-columns: 1fr minmax(36.9375rem, 20rem);
}
@media screen and (max-width: 768px) {
  .c-card1.--ptn4 {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .c-card1.--ptn4 .c-card1__imageSm {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.c-title1__en {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .c-title1__en {
    font-size: 2.5rem;
  }
}

.c-title1__ja {
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .c-title1__ja {
    font-size: 1rem;
    margin-top: 0.375rem;
  }
}

.c-title2 {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .c-title2 {
    font-size: 1.25rem;
  }
}
.c-title2:has(.num) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
.c-title2 .num {
  display: block;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .c-title2 .num {
    font-size: 1.25rem;
  }
}

.c-title3 {
  color: #051755;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.c-title3.--sm .c-title3__en {
  font-size: 2rem;
}
.c-title3.--sm .c-title3__ja {
  font-size: 1rem;
}
.c-title3.--black {
  color: #333;
}

.c-title3__en {
  display: block;
  font-size: 3.25rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-title3__en {
    font-size: 2rem;
  }
}

.c-title3__ja {
  font-size: 1.375rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding-left: 1.25rem;
  border-left: 1px solid #051755;
}
@media screen and (max-width: 768px) {
  .c-title3__ja {
    font-size: 1rem;
  }
}

.p-archive {
  margin-top: 15.625rem;
}
@media screen and (max-width: 768px) {
  .p-archive {
    margin-top: 3.75rem;
  }
}

.p-archive__titleGroup {
  padding-bottom: 0.4375rem;
  border-bottom: 1px solid #051755;
  margin-top: 8.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-archive__titleGroup {
    padding-bottom: 1.0625rem;
    margin-top: 3.375rem;
  }
}

.p-archive__titleEn {
  display: block;
  font-size: 3.25rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-archive__titleEn {
    font-size: 2rem;
  }
}

.p-archive__titleJa {
  font-size: 1.375rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding-left: 1.25rem;
  border-left: 1px solid #051755;
}
@media screen and (max-width: 768px) {
  .p-archive__titleJa {
    font-size: 1rem;
  }
}

.p-archive__list {
  margin-top: 9.375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12.5rem 5rem;
}
@media screen and (max-width: 768px) {
  .p-archive__list {
    grid-template-columns: 1fr;
    gap: 3.125rem;
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-archive__item {
    padding-bottom: 3.75rem;
    border-bottom: 2px solid #051755;
  }
}

.p-archive__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.p-archive__meta {
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-archive__meta {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.p-archive__date {
  font-size: 1.125rem;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.p-archive__title {
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 0.6875rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.p-archive__imgWrap {
  overflow: clip;
  -webkit-box-shadow: 0 0.25rem 1.375rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 1.375rem rgba(0, 0, 0, .1);
}

.p-archive__img {
  aspect-ratio: 783/456;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-archive__img {
    aspect-ratio: 360/279;
  }
}

.p-archive__cta {
  padding-top: 3.125rem;
  text-align: right;
  border-top: 2px solid #051755;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .p-archive__cta {
    padding-top: 1.5rem;
    text-align: center;
    border-top: none;
  }
}

@media (any-hover: hover) {
  .p-archive__link:hover .p-archive__img {
    scale: 1.05;
  }
  .p-archive__link:hover .c-btn1 {
    background-color: #E26E2F;
  }
  .p-archive__link:hover .c-btn1:after {
    background-color: #fff;
  }
}
.p-banner__link {
  display: block;
  width: 100%;
  max-width: 62.5rem;
  margin-right: auto;
  margin-left: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

@media (any-hover: hover) {
  .p-banner__link:hover {
    opacity: 0.8;
  }
}
.p-company__inner.l-inner {
  max-width: 89.375rem;
}

.p-company__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 768px) {
  .p-company__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (max-width: 768px) {
  .p-company__head .c-btn1 {
    margin-top: 1.25rem;
  }
}

.p-company__content {
  margin-top: 3.125rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .p-company__content {
    margin-top: 1.25rem;
  }
}

.p-company__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .p-company__grid {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }
}

.p-company__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-company__column {
    gap: 0.9375rem;
  }
}

.p-company__row {
  display: grid;
  grid-template-columns: 9.375rem 1fr;
  border-bottom: 1px solid #051755;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-company__row {
    grid-template-columns: 1fr;
  }
}

.p-company__label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-company__value {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.p-company__value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

.p-contact {
  padding-block: 5rem;
  background-color: #F7F6F1;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding-block: 2.5rem;
  }
}

.p-contact__inner {
  max-width: 75rem;
}

.p-contact__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__text {
    font-size: 0.9375rem;
  }
}

.p-contact__form {
  padding: 5rem;
  background-color: #fff;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-contact__form {
    margin-top: 2.5rem;
    padding: 2.5rem 0.9375rem;
    margin-inline: calc(50% - 50vw);
  }
}

.p-contact__title {
  padding: 0.9375rem 1.875rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  background-color: #051755;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-contact__title {
    margin-top: 2.5rem;
    font-size: 1.25rem;
  }
}
.p-contact__title + .p-contact__form {
  margin-top: 0;
}

.p-contact__info {
  margin-top: 4.625rem;
}

.p-contact__infoTitle {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #051755;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #051755;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-contact__infoTitle {
    font-size: 1.25rem;
    line-height: 1.3;
    padding-bottom: 1.25rem;
  }
}

.p-contact__infoTag {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #fff;
  background-color: #E26E2F;
  text-align: center;
  padding-inline: 1.5625rem;
}

.p-contact__infoList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.3125rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-contact__infoList {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 1.4375rem;
  }
}

.p-contact__infoItem {
  padding: 2.25rem 1.5625rem;
  border: 1px solid #051755;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-contact__infoItem {
    padding: 1.5rem 0.9375rem;
  }
}

.p-contact__infoTitleSm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #051755;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-contact__infoTitleSm {
    padding-bottom: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.p-contact__infoTitleSm .num {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #051755;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-contact__infoTitleSm .num {
    font-size: 1.625rem;
    padding: 0.125rem 0.625rem;
  }
}
.p-contact__infoTitleSm .title {
  font-size: 1.8125rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-contact__infoTitleSm .title {
    font-size: 1.25rem;
  }
}

.p-contact__infoText {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-contact__infoText {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-contact__concept {
  margin-top: 4rem;
  border: 1px solid #051755;
}
.p-contact__concept .p-contact__title {
  margin-top: 0;
}

.p-contact__conceptBody {
  background-color: #fff;
  padding: 1.875rem;
}

.p-contact__conceptList {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 1.25rem;
}

.p-contact__conceptItem {
  list-style: decimal;
  font-size: 1.25rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-contact__conceptItem {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-contactFv {
  position: relative;
  aspect-ratio: 1920/547;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 13.25rem;
}
@media screen and (max-width: 768px) {
  .p-contactFv {
    margin-top: 3.125rem;
    aspect-ratio: 390/287;
  }
}

.p-contactFv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-contactFv__title {
    gap: 0.375rem;
  }
}

.p-contactFv__titleEn {
  display: block;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-contactFv__titleEn {
    font-size: 2.5rem;
  }
}

.p-contactFv__titleJa {
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-contactFv__titleJa {
    font-size: 1rem;
  }
}

.p-contactFv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-contactFv__bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, .5);
  position: absolute;
  top: 0;
  left: 0;
}
.p-contactFv__bg picture {
  width: 100%;
  height: 100%;
}
.p-contactFv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cta {
  padding: 1.25rem;
  background-color: #949497;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-cta.is-cta-visible {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .p-cta {
    padding: 0;
    background-color: transparent;
  }
}

.p-cta__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-cta__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-cta__item {
    width: 50%;
  }
}

.p-cta__link {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.875rem;
  padding: 2.125rem 1.25rem;
  min-width: 17.5rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-cta__link {
    font-size: 1.0625rem;
    line-height: 1.4117647059;
    padding: 1.0625rem;
    min-width: 0;
    min-width: initial;
    width: 100%;
  }
}
.p-cta__link:before {
  content: "";
  display: block;
  width: 1.625rem;
  height: auto;
  aspect-ratio: 1;
}
.p-cta__link.--tel {
  background-color: #051755;
}
.p-cta__link.--tel:before {
  -webkit-mask: url(../images/common/icon_tel.svg) no-repeat center/contain;
          mask: url(../images/common/icon_tel.svg) no-repeat center/contain;
  background-color: #fff;
}
.p-cta__link.--contact {
  background-color: #E26E2F;
}
.p-cta__link.--contact:before {
  background: url(../images/common/icon_mail.svg) no-repeat center/contain;
}
.p-cta__link.--reserve {
  background-color: #fff;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-cta__link.--reserve {
    display: none;
  }
}
.p-cta__link.--reserve:before {
  background: url(../images/common/icon_home.svg) no-repeat center/contain;
}
.p-cta__link.--download {
  background-color: #051755;
}
@media screen and (max-width: 768px) {
  .p-cta__link.--download {
    display: none;
  }
}
.p-cta__link.--download:before {
  background: url(../images/common/icon_download.svg) no-repeat center/contain;
}

@media (any-hover: hover) {
  .p-cta__link:hover {
    opacity: 0.8;
  }
}
.p-event {
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-event {
    margin-top: 2.5rem;
  }
}

.p-event__inner.l-inner {
  max-width: 89.375rem;
}

.p-event__title {
  text-align: center;
}

.p-event__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.75rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-event__list {
    grid-template-columns: 1fr;
    gap: 1.4375rem;
    margin-top: 2.5rem;
  }
}

.p-event__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 647/240;
}

.p-event__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.p-event__link::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 17.5% 7.5%;
  background-color: rgba(255, 255, 255, .75);
  pointer-events: none;
}

.p-event__text {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.1em;
  color: #051755;
  text-align: center;
}
.p-event__text::before, .p-event__text::after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16.25rem;
  height: 0.0625rem;
  background-color: #051755;
}
@media screen and (max-width: 768px) {
  .p-event__text {
    font-size: 1.375rem;
    gap: 0.75rem;
  }
  .p-event__text::before, .p-event__text::after {
    width: 12.5rem;
  }
}

.p-event__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-event__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-faq {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-faq {
    margin-top: 2.5rem;
  }
}

.p-faq__list {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(5, 23, 85, .25);
}
@media screen and (max-width: 768px) {
  .p-faq__list {
    margin-top: 1.25rem;
  }
}

.p-faq__item {
  border-bottom: 1px solid rgba(5, 23, 85, .25);
}

.p-faq__qBtn {
  font-family: inherit;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  text-align: left;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1.5rem 3.125rem 1.5rem 0;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-faq__qBtn {
    gap: 0.625rem;
    padding: 1rem 2.125rem 1rem 0;
  }
}
.p-faq__qBtn::before, .p-faq__qBtn::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.625rem;
  top: 50%;
  width: 1rem;
  height: 2px;
  background-color: #051755;
  -webkit-transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-faq__qBtn::before, .p-faq__qBtn::after {
    right: 0.25rem;
    width: 0.8125rem;
  }
}
.p-faq__qBtn::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-faq__qBtn::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-faq__qBtn[aria-expanded=true]::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.p-faq__qBtn:hover, .p-faq__qBtn:focus-visible {
  color: #E26E2F;
}
.p-faq__qBtn:hover::before, .p-faq__qBtn:hover::after, .p-faq__qBtn:focus-visible::before, .p-faq__qBtn:focus-visible::after {
  background-color: #E26E2F;
}

.p-faq__mark {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #051755;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-faq__mark {
    font-size: 1rem;
  }
}

.p-faq__qText {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-faq__qText {
    font-size: 0.9375rem;
  }
}

.p-faq__a {
  padding: 0 3.125rem 1.75rem 3.25rem;
}
@media screen and (max-width: 768px) {
  .p-faq__a {
    padding: 0 2.125rem 1.125rem 1.875rem;
  }
}

.p-faq__aText {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-faq__aText {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}

.p-feature {
  position: relative;
  padding-block: 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-feature {
    padding-block: 4.375rem;
  }
}

.p-feature__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.p-feature__bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .7);
  position: absolute;
  top: 0;
  left: 0;
}
.p-feature__bg picture {
  width: 100%;
  height: 100%;
}
.p-feature__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-feature__inner.l-inner {
  max-width: 79.625rem;
}
.p-feature__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-feature__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-feature__title {
  font-size: 3.1875rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-feature__title {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-align: center;
  }
}

.p-feature__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-feature__text {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 2.8125rem;
    max-width: 89.4117647059%;
    margin-inline: auto;
  }
}

.p-feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.625rem;
}
@media screen and (max-width: 768px) {
  .p-feature__list {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.p-feature__item {
  width: 15rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #051755;
  border-radius: 50%;
  font-size: 1.625rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-feature__item {
    width: 8.125rem;
    font-size: 0.9375rem;
  }
}

.p-footer {
  padding: 3rem 1.5rem 10rem;
  background-color: #051755;
  color: #fff;
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-footer {
    margin-top: 7.5rem;
    padding-block: 2.5rem 1.25rem 5rem;
  }
}

.p-footer__inner {
  max-width: 103.125rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    padding-inline: 1.25rem;
  }
}

.p-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
@media screen and (max-width: 768px) {
  .p-footer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-bottom: 1.75rem;
  }
}

.p-footer__logoWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logoWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer__logo {
  display: block;
  width: 13.75rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    width: 8.75rem;
  }
}
.p-footer__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__tel {
  font-size: 1.375rem;
  line-height: 0.7727272727;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.p-footer__tel:before {
  content: "";
  display: block;
  width: 1.125rem;
  height: auto;
  aspect-ratio: 1;
  -webkit-mask: url(../images/common/icon_tel.svg) no-repeat center center/contain;
          mask: url(../images/common/icon_tel.svg) no-repeat center center/contain;
  background-color: #fff;
}

.p-footer__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-footer__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.p-footer__btn {
  font-size: 1.0625rem;
  line-height: 1.6470588235;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.75rem;
  min-width: 12.5rem;
}
.p-footer__btn.--contact {
  background-color: #E26E2F;
}
.p-footer__btn.--contact:before {
  content: "";
  display: block;
  width: 1.375rem;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/common/icon_mail.svg) no-repeat center/contain;
}
.p-footer__btn.--download {
  background-color: rgba(255, 255, 255, .15);
}
.p-footer__btn.--download:before {
  content: "";
  display: block;
  width: 1.375rem;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/common/icon_download.svg) no-repeat center/contain;
}

.p-footer__nav {
  padding-block: 2rem;
}
@media screen and (max-width: 768px) {
  .p-footer__nav {
    padding-block: 1.75rem;
  }
}

.p-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
}

.p-footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-footer__item {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }
}

.p-footer__link {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #fff;
  padding-inline: 1.5rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-footer__link {
    font-size: 0.9375rem;
    text-align: center;
    padding-block: 0.75rem;
    padding-inline: 0.5rem;
  }
}

.p-footer__mega {
  width: 100%;
  padding-block: 0.25rem 0.5rem;
}

.p-footer__listSm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.375rem;
  width: 100%;
  margin: 0;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(255, 255, 255, .35);
}
@media screen and (max-width: 768px) {
  .p-footer__listSm {
    padding-left: 1rem;
    margin-bottom: 0.75rem;
  }
}

.p-footer__itemSm {
  display: block;
  width: 100%;
}

.p-footer__linkSm {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  display: block;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-footer__linkSm {
    font-size: 0.875rem;
  }
}

.p-footer__copy {
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, .65);
  text-align: center;
  padding-top: 0.5rem;
}

.p-form {
  color: #333;
  max-width: 52.5rem;
  margin-inline: auto;
}

.p-form__content {
  margin-bottom: 1.75em;
}
.p-form__content:last-of-type {
  margin-bottom: 0;
}

.p-form__name {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.p-form__tag {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.15em 0.5em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  vertical-align: middle;
  background-color: #c00;
}

.p-form__tag--required {
  background-color: #c00;
}

.p-form__tag--optional {
  background-color: #949497;
}

.p-form__label {
  display: block;
  margin-bottom: 0.35em;
  font-size: 0.9em;
  font-weight: 600;
  color: #949497;
}
.p-form__hint {
  margin: 0 0 0.5em;
  font-size: 0.9em;
}

.p-form__group {
  margin-top: 0.85em;
}
.p-form__group:first-child {
  margin-top: 0;
}
.p-form__group.--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.p-form__input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.65em 0.75em;
  border: 1px solid #949497;
  border-radius: 2px;
  font: inherit;
}

textarea.p-form__input {
  min-height: 12em;
  resize: vertical;
}

.p-form__fields-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em 1em;
}
.p-form__fields-row > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.p-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
}
.p-form__field .p-form__input {
  width: auto;
  min-width: 8em;
}
.p-form__field .p-form__input.--reserve {
  width: 100%;
}

.p-form__suffix {
  margin-left: 0.15em;
  font-size: 0.95em;
}

.p-form__checkbox {
  margin-top: 0.5em;
}
.p-form__checkbox .wpcf7-list-item {
  display: block;
  margin: 0.4em 0 0;
}
.p-form__checkbox .wpcf7-list-item-label {
  margin-left: 0.35em;
}

.p-form__checkbox--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1.25em;
}
.p-form__checkbox--inline .wpcf7-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
}

.p-contact__privacy {
  max-height: 200px;
  margin-bottom: 1em;
  padding: 1em;
  overflow-y: auto;
  border: 1px solid #949497;
  font-size: 0.85em;
  line-height: 1.6;
}
.p-contact__privacy p {
  margin: 0 0 0.75em;
}
.p-contact__privacy p:last-child {
  margin-bottom: 0;
}

.p-form__actions {
  margin-top: 2em;
  text-align: center;
}

.p-form__submit {
  min-width: 224px;
  padding: 0.85em 2em;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background-color: #1e3a5f;
}
.p-form__submit:hover {
  opacity: 0.92;
}

.p-form--application .p-form__content .p-form__input[type=checkbox],
.p-form .p-form__content .p-form__input[type=checkbox] {
  width: auto;
}

.p-form__accept {
  text-align: center;
  margin-top: 3.5rem;
}

.wpcf7-spinner {
  display: none;
}

.p-fv {
  position: relative;
  overflow: hidden;
}

.p-fv .splide__slide picture {
  display: block;
  width: 100%;
}

.p-fv .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.p-fv__title {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 1.125rem 2.1875rem;
  background-color: rgba(255, 255, 255, .7);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% calc(-50% + 12.5rem);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-fv__title {
    font-size: 1.0625rem;
    line-height: 1.3;
    letter-spacing: 0.1em;
    padding: 0.4375rem;
    translate: -50% -50%;
    width: 92.9411764706%;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-header {
    padding-bottom: 0;
  }
}

.p-header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 103.125rem;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-header__head {
    padding-left: 3.8461538462%;
    position: relative;
    z-index: 101;
    background-color: #fff;
  }
}

.p-header__logoWrap {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-header__logoWrap {
    display: block;
  }
}

.p-header__logo {
  display: block;
  width: 16.25rem;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 7.75rem;
  }
}
.p-header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__tel {
  font-size: 1.5625rem;
  line-height: 0.68;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #051755;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-header__tel {
    font-size: 1.3125rem;
    color: #403110;
    gap: 0.4375rem;
    padding: 1.25rem;
    background-color: #fff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-header__tel:before {
  content: "";
  display: block;
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  -webkit-mask: url(../images/common/icon_tel.svg) no-repeat center center/contain;
          mask: url(../images/common/icon_tel.svg) no-repeat center center/contain;
  background-color: #051755;
}
@media screen and (max-width: 768px) {
  .p-header__tel:before {
    background-color: #403110;
  }
}
.p-header__tel.u-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-header__tel.u-desktop {
    display: none;
  }
}

.p-header__contactWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (max-width: 768px) {
  .p-header__contactWrap {
    margin-left: auto;
  }
}

.p-header__headBtn {
  display: contents;
}
@media screen and (max-width: 768px) {
  .p-header__headBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-header__btn {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.875rem;
  padding: 1.25rem 1.25rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-header__btn {
    font-size: 1.0625rem;
    line-height: 1.4117647059;
    padding: 1.0625rem;
  }
}
.p-header__btn:not(:has(img)) {
  min-width: 17.5rem;
  min-height: 5rem;
}
@media screen and (max-width: 768px) {
  .p-header__btn:not(:has(img)) {
    min-height: 0;
  }
}
.p-header__btn:not(:has(img)):before {
  content: "";
  display: block;
  width: 1.625rem;
  height: auto;
  aspect-ratio: 1;
}
.p-header__btn.--contact {
  background-color: #E26E2F;
}
.p-header__btn.--contact:not(:has(img)):before {
  background: url(../images/common/icon_mail.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-header__btn.--contact img {
    width: 1.25rem;
  }
}
.p-header__btn.--contact.u-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-header__btn.--contact.u-desktop {
    display: none;
  }
}
.p-header__btn.--contact.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__btn.--contact.u-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-header__btn.--download {
  background-color: #051755;
}
.p-header__btn.--download:before {
  background: url(../images/common/icon_download.svg) no-repeat center/contain;
}
.p-header__btn.--download.u-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-header__btn.--download.u-desktop {
    display: none;
  }
}

.p-header__open {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.4375rem;
    width: 3.125rem;
    height: auto;
    aspect-ratio: 1;
  }
}
.p-header__open span {
  width: 1.4375rem;
  height: 0.0625rem;
  background-color: #333;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.p-header__open.is-open span:nth-child(1) {
  -webkit-transform: translateY(0.5rem) rotate(45deg);
          transform: translateY(0.5rem) rotate(45deg);
}
.p-header__open.is-open span:nth-child(2) {
  opacity: 0;
}
.p-header__open.is-open span:nth-child(3) {
  -webkit-transform: translateY(-0.5rem) rotate(-45deg);
          transform: translateY(-0.5rem) rotate(-45deg);
}

.p-header__drawer {
  display: contents;
}
@media screen and (max-width: 768px) {
  .p-header__drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    background-color: #051755;
    padding-block: 3.125rem;
  }
}

.p-header__nav {
  overflow: visible;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    max-width: 74.358974359%;
    margin-inline: auto;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .p-header__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-header__item:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}
.p-header__item {
  /* PC：メガメニューの包含ブロックを li にし、リンク〜パネル間のホバーが途切れないようにする */
}
@media screen and (min-width: 769px) {
  .p-header__item:hover {
    z-index: 25;
  }
}

.p-header__link {
  font-size: 1.25rem;
  line-height: 2.15;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #051755;
  padding-inline: 2.1875rem;
  display: block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-header__link {
    font-size: 1rem;
    line-height: 2.6875;
    color: #fff;
    text-align: center;
    padding-block: 0.625rem;
  }
}

.p-header__mega {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% -0.9375rem;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 20;
  background: #fff;
}

.p-header__item:hover .p-header__mega,
.p-header__item:focus-within .p-header__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* PC：親リンクをマウスでクリック後、ホバーが外れても :focus が残り focus-within が続くのを抑止（キーボード Tab は :focus-visible のため除外） */
@media screen and (min-width: 769px) {
  .p-header__item:not(:hover):has(> .p-header__link:focus:not(:focus-visible)) .p-header__mega {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.p-header__listSm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  max-width: 56.25rem;
  width: 100%;
  margin-inline: auto;
}

.p-header__itemSm {
  position: relative;
  min-height: 6.25rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.p-header__itemSm:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-header__linkSm {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #051755;
  font-weight: 700;
  display: block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-header__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}

@media screen and (max-width: 768px) {
  .p-header__btnWrap {
    margin-top: 2.25rem;
  }
}

@media (hover: hover) {
  .p-header__link:hover {
    color: #E26E2F;
  }
  .p-header__linkSm:hover {
    color: #E26E2F;
  }
}
@media (any-hover: hover) {
  .p-header__btn.--contact:hover {
    opacity: 0.8;
  }
  .p-header__btn.--download:hover {
    opacity: 0.8;
  }
}
.p-kikaku {
  background-color: #fffdfa;
  color: #5c5149;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
  overflow: hidden;
}
.p-kikaku img {
  max-width: 100%;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .p-kikaku .p-kikaku__brSp {
    display: none;
  }
}

.js-kikaku-ready .p-kikaku__inview {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: transform 1.2s ease, opacity 1.2s ease;
  transition: transform 1.2s ease, opacity 1.2s ease, -webkit-transform 1.2s ease;
}
.js-kikaku-ready .p-kikaku__inview.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .js-kikaku-ready .p-kikaku__inview {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}
.p-kikaku__bread {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 31px 20px 35px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .p-kikaku__bread {
    padding: 17px 20px 17px 13px;
  }
}

.p-kikaku__breadList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-kikaku__breadItem {
  color: #5c5149;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding-right: 15px;
  margin-right: 10px;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .p-kikaku__breadItem {
    font-size: 10px;
    padding-right: 13px;
    padding-left: 7px;
    margin-right: 0;
  }
}
.p-kikaku__breadItem:first-child {
  opacity: 1;
}
.p-kikaku__breadItem:last-child {
  margin-right: 0;
  padding-right: 20px;
  font-weight: 600;
  opacity: 1;
}
.p-kikaku__breadItem:last-child::after {
  display: none;
}
.p-kikaku__breadItem::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-right: 1px solid #5c5149;
  border-top: 1px solid #5c5149;
  top: 50%;
  right: 0;
  opacity: 0.5;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-kikaku__breadItem a {
  color: inherit;
  text-decoration: none;
}
.p-kikaku__breadItem svg {
  width: 12px;
  height: 10px;
}

.p-kikaku__sec {
  padding: 15px 0 70px;
}
@media screen and (max-width: 768px) {
  .p-kikaku__sec {
    padding: 13px 0 0;
  }
}

.p-kikaku__secInner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}

.p-kikaku__title {
  color: #2f2721;
  font-weight: 500;
  font-size: 38px;
  letter-spacing: 0.16em;
  text-align: center;
  line-height: 1;
  padding-top: 10px;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .p-kikaku__title {
    font-size: 26px;
    padding-top: 0;
  }
}

.p-kikaku__lead {
  color: #2f2721;
  font-size: 24px;
  letter-spacing: 0.16em;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-kikaku__lead {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.p-kikaku__lead--tight {
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .p-kikaku__lead--tight {
    margin-bottom: 3px;
  }
}

.p-kikaku__head {
  color: #2f2721;
  font-size: 24px;
  letter-spacing: 0.16em;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .p-kikaku__head {
    font-size: 22px;
    margin-bottom: 38px;
  }
}

.p-kikaku__dots {
  text-align: center;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .p-kikaku__dots {
    margin-bottom: 23px;
  }
}
.p-kikaku__dots svg {
  width: 78px;
  height: 6px;
}
.p-kikaku__dots--small {
  margin-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .p-kikaku__dots--small {
    margin-bottom: 19px;
  }
}
.p-kikaku__dots--small svg {
  width: 42px;
  height: 6px;
}

.p-kikaku__button {
  display: inline-block;
  border: 1px solid #5c5149;
  border-radius: 5px;
  color: #5c5149;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  text-decoration: none;
  width: 312px;
  max-width: 100%;
  letter-spacing: 0.14em;
  padding: 20px 40px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.p-kikaku__button::after {
  background-color: #5c5149;
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (min-width: 769px) {
  .p-kikaku__button:hover {
    color: #fff;
    opacity: 1;
  }
  .p-kikaku__button:hover::after {
    width: 102%;
    opacity: 1;
  }
  .p-kikaku__button:hover .p-kikaku__arrow--white {
    opacity: 1;
    right: 15px;
  }
  .p-kikaku__button:hover .p-kikaku__arrow--orange {
    opacity: 0;
  }
}

.p-kikaku__arrow {
  width: 14px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.p-kikaku__arrow--white {
  right: 60px;
  opacity: 0;
}

.p-kikakuList__head {
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .p-kikakuList__head {
    padding: 66px 0 19px;
  }
}

.p-kikakuList {
  padding-top: 41px;
}
@media screen and (max-width: 768px) {
  .p-kikakuList {
    padding-top: 0;
  }
}

.p-kikakuList__item {
  margin-bottom: 98px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-kikakuList__item {
    margin-bottom: 37px;
  }
}
.p-kikakuList__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .p-kikakuList__item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-kikakuList__item:nth-child(2n) .p-kikakuList__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-kikakuList__item:nth-child(2n) .p-kikakuList__box {
    padding: 55px 15px 50px 79px;
  }
}
@media screen and (max-width: 768px) {
  .p-kikakuList__item:nth-child(2n) .p-kikakuList__image {
    padding-right: 0;
    padding-left: 25px;
  }
}

@media (min-width: 769px) {
  .p-kikakuList__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1120px;
    max-width: 100%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-kikakuList__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 54.3%;
          flex: 0 0 54.3%;
  max-width: 54.3%;
}
@media screen and (max-width: 768px) {
  .p-kikakuList__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding-right: 25px;
  }
}
.p-kikakuList__image img {
  width: 100%;
}

.p-kikakuList__box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-width: 40%;
  padding: 55px 15px 50px 42px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 768px) {
  .p-kikakuList__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 24px 25px 15px;
  }
}

.p-kikakuList__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.6;
  margin-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .p-kikakuList__title {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
  }
}

.p-kikakuList__text {
  letter-spacing: 0.11em;
  line-height: 2.2;
  margin-bottom: 29px;
}
@media screen and (max-width: 768px) {
  .p-kikakuList__text {
    letter-spacing: 0;
    margin-bottom: 29px;
  }
  .p-kikakuList__text br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .p-kikakuList__btn {
    text-align: center;
  }
}

.p-kikakuRequest {
  padding: 52px 0 78px;
}
@media screen and (max-width: 768px) {
  .p-kikakuRequest {
    padding: 57px 0 0;
  }
}

.p-kikakuRequest__inner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}

.p-kikakuRequest__box {
  background-color: #faf5ed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 106px 100px 106px 124px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-kikakuRequest__box {
    padding: 55px 30px 180px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 -15px;
  }
}

.p-kikakuRequest__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 210px;
          flex: 0 0 210px;
  max-width: 210px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 768px) {
  .p-kikakuRequest__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
}
.p-kikakuRequest__image img {
  width: 100%;
  aspect-ratio: 210/285;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-kikakuRequest__image img {
    max-width: 196px;
    margin: auto;
  }
}

.p-kikakuRequest__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 110px;
}
@media screen and (max-width: 768px) {
  .p-kikakuRequest__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0;
    text-align: center;
  }
}

.p-kikakuRequest__title {
  color: #2f2721;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 23px;
  letter-spacing: 0.16em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-kikakuRequest__title {
    font-size: 24px;
    margin-bottom: 19px;
  }
}

.p-kikakuRequest__text {
  margin-bottom: 55px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-kikakuRequest__text {
    line-height: 2.15;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-kikakuRequest__btn {
    position: absolute;
    bottom: 52px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    padding: 0 15px;
  }
}
@media (min-width: 769px) {
  .p-kikakuRequest__btn .p-kikaku__button::after {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.p-kikaku--detail .p-kikaku__sec {
  padding: 15px 0 42px;
}
@media screen and (max-width: 768px) {
  .p-kikaku--detail .p-kikaku__sec {
    padding: 21px 0 14px;
  }
}
@media screen and (max-width: 768px) {
  .p-kikaku--detail .p-kikaku__secInner {
    padding: 0 25px;
  }
}
.p-kikaku--detail .p-kikakuRequest {
  padding: 71px 0 80px;
}
@media screen and (max-width: 768px) {
  .p-kikaku--detail .p-kikakuRequest {
    padding: 59px 0 0;
  }
}

.p-kikakuDetail__hero {
  width: 982px;
  height: 472px;
  max-width: calc(100% - 30px);
  margin: 13px auto 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-kikakuDetail__hero {
    height: 199px;
    max-width: 100%;
    margin: 5px auto 0;
  }
}

.p-kikakuDetail__heroImg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.is-parallax > .p-kikakuDetail__heroImg {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  will-change: transform;
}

.p-kikakuDetail__lead {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-kikakuDetail__lead {
    margin-bottom: 0;
  }
}

.p-kikakuDetail__leadTitle {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.11em;
  line-height: 1.6;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .p-kikakuDetail__leadTitle {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 16px;
  }
}

.p-kikakuDetail__leadText {
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
  letter-spacing: 0.11em;
  padding-left: 27px;
}
@media screen and (max-width: 768px) {
  .p-kikakuDetail__leadText {
    padding-left: 0;
  }
}

.p-kikakuFeature {
  padding-top: 50px;
  margin-bottom: 78px;
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature {
    padding-top: 52px;
    margin-bottom: 0;
  }
}

.p-kikakuFeature__item {
  margin-bottom: 144px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature__item {
    margin-bottom: 25px;
  }
}
.p-kikakuFeature__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature__item:first-child .p-kikakuFeature__box {
    padding: 37px 25px 15px;
  }
  .p-kikakuFeature__item + .p-kikakuFeature__item .p-kikakuFeature__inner {
    padding-top: 0;
  }
}
.p-kikakuFeature__item:nth-child(2n) {
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature__item:nth-child(2n) {
    margin-bottom: 52px;
  }
}
@media (min-width: 769px) {
  .p-kikakuFeature__item:nth-child(2n) .p-kikakuFeature__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-kikakuFeature__item:nth-child(2n) .p-kikakuFeature__box {
    padding: 76px 79px 0 139px;
  }
}
.p-kikakuFeature__item:nth-child(2n) .p-kikakuFeature__inner::after {
  right: 50px;
  left: 19.6%;
  height: 66%;
}
@media (min-width: 1920px) {
  .p-kikakuFeature__item:nth-child(2n) .p-kikakuFeature__inner::after {
    left: 30%;
  }
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature__item:nth-child(2n) .p-kikakuFeature__image {
    padding-right: 0;
    padding-left: 25px;
  }
  .p-kikakuFeature__item:nth-child(2n) .p-kikakuFeature__image::after {
    right: 25px;
    left: 0;
  }
}

.p-kikakuFeature__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 100%;
  margin: auto;
  position: relative;
  padding: 54px 0 0;
  z-index: 0;
}
.p-kikakuFeature__inner::after {
  background-color: #faf5ed;
  content: "";
  position: absolute;
  top: 4px;
  left: 50px;
  right: 19.6%;
  height: 80.2%;
  z-index: -1;
}
@media (min-width: 1920px) {
  .p-kikakuFeature__inner::after {
    right: 30%;
  }
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature__inner::after {
    display: none;
  }
}

.p-kikakuFeature__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45.3%;
          flex: 0 0 45.3%;
  max-width: 45.3%;
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding-right: 25px;
    position: relative;
  }
  .p-kikakuFeature__image::after {
    background-color: #faf5ed;
    content: "";
    position: absolute;
    top: -30px;
    left: 25px;
    bottom: 25px;
    right: 0;
    z-index: -1;
  }
}
.p-kikakuFeature__image img {
  width: 100%;
}

.p-kikakuFeature__box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 54.7%;
          flex: 0 0 54.7%;
  max-width: 54.7%;
  padding: 76px 130px 0 79px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 1920px) {
  .p-kikakuFeature__box {
    max-width: 650px;
  }
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 37px 25px 30px;
  }
}

.p-kikakuFeature__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.65;
  margin-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature__title {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
  }
}

.p-kikakuFeature__text {
  letter-spacing: 0.11em;
  line-height: 2.15;
}
@media screen and (max-width: 768px) {
  .p-kikakuFeature__text {
    margin-bottom: 15px;
  }
}

.p-kikakuPlan__inner {
  width: 1030px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__inner {
    margin-top: -4px;
  }
}

@media (min-width: 769px) {
  .p-kikakuPlan {
    margin-bottom: 60px;
    padding-top: 39px;
  }
}

.p-kikakuPlan__nav {
  position: relative;
  margin-bottom: 31px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.p-kikakuPlan__nav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__nav {
    margin-bottom: 0;
  }
}

.p-kikakuPlan__navTrack {
  --plan-count: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: calc(var(--plan-count) * 25%);
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__navTrack {
    width: calc(var(--plan-count) * 33.3333%);
  }
}
.p-kikakuPlan__navTrack::before {
  background-color: #cec9c5;
  content: "";
  height: 5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.p-kikakuPlan__navItem {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / var(--plan-count));
          flex: 0 0 calc(100% / var(--plan-count));
  max-width: calc(100% / var(--plan-count));
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-align: center;
  padding: 0 10px 15px;
  position: relative;
  margin-top: 10px;
  z-index: 0;
}

.p-kikakuPlan__navTitle {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__navTitle {
    font-size: 14px;
  }
}

.p-kikakuPlan__bar {
  --plan-index: 0;
  background-color: #f09445;
  bottom: 0;
  left: calc(var(--plan-index) * 100% / var(--plan-count));
  width: calc(100% / var(--plan-count));
  position: absolute;
  height: 5px;
  -webkit-transition: left 0.25s ease;
  transition: left 0.25s ease;
  z-index: 3;
}

.p-kikakuPlan__panel[hidden] {
  display: none;
}

.p-kikakuPlan__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

.p-kikakuPlan__image {
  background-color: #fffdfa;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  max-width: 55%;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 26px 0 37px;
  }
}
.p-kikakuPlan__image img {
  mix-blend-mode: darken;
  width: 100%;
}

.p-kikakuPlan__modalBtn {
  display: block;
  position: relative;
}

.p-kikakuPlan__zoom {
  border-radius: 5px;
  background: rgba(47, 39, 33, .3);
  width: 31px;
  height: 31px;
  line-height: 38px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-kikakuPlan__zoom svg {
  width: 17px;
  height: 18px;
}

.p-kikakuPlan__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  max-width: 45%;
  padding: 21px 0 0 68px;
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}

.p-kikakuPlan__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__row {
    margin-bottom: 23px;
  }
}

.p-kikakuPlan__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  max-width: 100px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__label {
    font-size: 14px;
    padding: 0 0 0 12px;
  }
}

.p-kikakuPlan__value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  line-height: 1.4;
  margin: 0;
  padding-left: 18px;
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__value {
    padding-left: 30px;
    line-height: 1;
  }
}

.p-kikakuPlan__large {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-kikakuPlan__large {
    font-size: 14px;
  }
}

.p-kikakuModal {
  background: rgba(99, 83, 70, .8);
  padding: 50px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  z-index: 10000;
  overflow: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0;
}
.p-kikakuModal.is-open {
  opacity: 1;
  visibility: visible;
}

.p-kikakuModal__box {
  background-color: #fff;
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-kikakuModal__box {
    background: none;
    height: 100%;
    padding: 100px 0;
  }
}

.p-kikakuModal__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: -30px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-kikakuModal__close {
    top: 30px;
    right: 30px;
  }
}
.p-kikakuModal__close svg {
  width: 18px;
  height: 18px;
  display: block;
}

.p-kikakuModal__image img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-kikakuModal__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    text-align: center;
    max-width: 100%;
  }
  .p-kikakuModal__image img {
    background-color: #fff;
    max-height: 100%;
    width: auto;
  }
}

.p-lineup {
  position: relative;
  overflow: hidden;
}
.p-lineup .splide__track {
  overflow: visible;
  overflow: initial;
  -webkit-clip-path: inset(0 -50vw 0 0);
          clip-path: inset(0 -50vw 0 0);
}

.p-lineup__headWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-lineup__headWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lineup__headWrap .c-title3 {
    width: 100%;
    border-bottom: 1px solid #051755;
    padding-bottom: 0.625rem;
  }
}

.p-lineup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12.5rem;
  margin-top: 11.875rem;
}
@media screen and (max-width: 768px) {
  .p-lineup__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.75rem;
    margin-top: 3.125rem;
  }
}

.p-lineup__nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-lineup__nav {
    width: 56.4705882353%;
    margin-inline: auto;
  }
}

.p-lineup__navList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-lineup__navItem + .p-lineup__navItem {
  margin-top: 0.25rem;
}

.p-lineup__navLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(5, 23, 85, .25);
  -webkit-transition: color 0.2s, border-color 0.2s;
  transition: color 0.2s, border-color 0.2s;
}
.p-lineup__navLink::after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.9375rem;
  height: auto;
  aspect-ratio: 1;
  -webkit-mask: url(../images/common/arrow1.svg) no-repeat center/contain;
          mask: url(../images/common/arrow1.svg) no-repeat center/contain;
  background-color: #051755;
}
.p-lineup__navLink:hover, .p-lineup__navLink:focus-visible {
  color: #E26E2F;
  border-bottom-color: rgba(226, 110, 47, .5);
}
.p-lineup__navLink:hover::after, .p-lineup__navLink:focus-visible::after {
  background-color: #E26E2F;
}

.p-lineup__slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  width: 100%;
}

.p-lineup__item {
  height: auto;
}

.p-lineup__card {
  position: relative;
  width: 100%;
  border-radius: 0.125rem;
  overflow: hidden;
  background: #333;
}

.p-lineup__card picture,
.p-lineup__card picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-lineup__card img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-lineup__card img {
    aspect-ratio: 348/378;
  }
}

.p-lineup__body {
  position: absolute;
  z-index: 1;
  top: 3.25rem;
  left: 4.5rem;
  max-width: 90%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-lineup__body {
    top: 2.625rem;
    left: 1rem;
  }
}

.p-lineup__itemTitle {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-lineup__itemTitle {
    font-size: 1.5rem;
  }
}

.p-lineup__itemText {
  margin: 0;
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-lineup__itemText {
    font-size: 0.875rem;
  }
}

.p-lineup .splide__list {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.p-lineup .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-lineup .splide__slide .p-lineup__card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-links__inner.l-inner {
  max-width: 86.125rem;
}

.p-links__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.75rem;
}
@media screen and (max-width: 768px) {
  .p-links__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-links__title {
  margin-top: 3.75rem;
  padding-bottom: 1.5625rem;
  position: relative;
}
.p-links__title:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: #949497;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-links__title:after {
  content: "";
  display: block;
  width: 39.3234672304%;
  height: 0.1875rem;
  background-color: #051755;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.p-links__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
  height: 100%;
}

.p-links__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-links__text {
    font-size: 0.9375rem;
  }
}

.p-links__imgWrap {
  overflow: clip;
}

.p-links__img {
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}

.p-links__btn {
  margin-top: auto;
}

@media (any-hover: hover) {
  .p-links__link:hover .p-links__imgWrap img {
    scale: 1.05;
  }
  .p-links__link:hover .p-links__title:after {
    width: 100%;
  }
}
.p-message__inner.l-inner {
  max-width: 86.125rem;
}

.p-message__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-message__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-message__headImg {
  max-width: 70.9375rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-message__headImg {
    mrgi-n-left: calc(50% - 50vw);
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (min-width: 1921px) {
  .p-message__headImg {
    margin-right: -6.25rem;
  }
}
.p-message__headImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-message__headImg img {
    max-width: none;
    max-width: initial;
  }
}

.p-message__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10.9375rem;
}
@media screen and (max-width: 768px) {
  .p-message__btnWrap {
    margin-top: 3.125rem;
    text-align: center;
  }
}
.p-message__btnWrap .c-btn1 {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .p-message__btnWrap .c-btn1 {
    margin-top: 3.125rem;
  }
}

.p-message__titleGroup {
  padding-bottom: 0.8125rem;
  border-bottom: 1px solid #051755;
}

.p-message__title {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-message__title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

.p-message__textSm {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-message__textSm {
    font-size: 0.9375rem;
  }
}

.p-message__content {
  margin-top: 7.0625rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .p-message__content {
    margin-top: 4.375rem;
  }
}

.p-message__main {
  margin-top: 4.375rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-message__main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

.p-message__text {
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-message__text {
    font-size: 0.9375rem;
  }
}

.p-message__img {
  width: 27.25rem;
}
@media screen and (max-width: 768px) {
  .p-message__img {
    width: 49.7058823529%;
    margin-inline: auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.p-message__name {
  display: block;
  font-size: 1.4375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #051755;
  text-align: right;
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-message__name {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.p-newAbout__inner {
  max-width: 78.125rem;
}

.p-newAbout__list {
  display: grid;
  gap: 11.25rem;
}
@media screen and (max-width: 768px) {
  .p-newAbout__list {
    gap: 5rem;
  }
}

.p-newAbout__title {
  text-align: center;
}

.p-newAbout__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-newAbout__text {
    font-size: 0.9375rem;
    margin-top: 2.5rem;
  }
}

.p-newAbout__img {
  margin-top: 6.25rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-newAbout__img {
    margin-top: 2.5rem;
  }
}

.p-newFeature {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-newFeature {
    margin-top: 3.125rem;
  }
}

.p-newFeature__inner {
  max-width: 78.125rem;
}

.p-newFeature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-newFeature__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3.125rem 0.5rem;
  }
}

.p-newFeature__item {
  -webkit-box-shadow: 0 0.25rem 0.25rem rgba(51, 51, 51, .25);
          box-shadow: 0 0.25rem 0.25rem rgba(51, 51, 51, .25);
}
@media screen and (max-width: 768px) {
  .p-newFeature__item {
    width: 48.5294117647%;
  }
}

.p-newGallery {
  margin-top: 6.25rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-newGallery {
    margin-top: 3.125rem;
  }
}
.p-newGallery .splide__track {
  overflow: visible;
  overflow: initial;
  -webkit-clip-path: inset(0 -50vw 0 -50vw);
          clip-path: inset(0 -50vw 0 -50vw);
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .splide.is-initialized:not(.is-active) .splide__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-newGallery__inner {
  max-width: 78.125rem;
}

.p-newLinks__inner {
  max-width: 84.375rem;
}

.p-newLinks__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-newLinks__list {
    grid-template-columns: 1fr;
  }
}

.p-page {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-page {
    margin-top: 1.875rem;
  }
}

.p-page__inner {
  max-width: 78.125rem;
}

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

.p-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-top: 9.375rem;
}

.page-numbers {
  width: 1.875rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #fff;
  color: #051755;
  font-size: 0.9375rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-numbers.current {
  background-color: #051755;
  color: #fff;
}
.page-numbers.next {
  width: 0.9375rem;
  height: auto;
  -webkit-mask: url(../images/common/arrow1.svg) no-repeat center/contain;
          mask: url(../images/common/arrow1.svg) no-repeat center/contain;
  background-color: #051755;
}
.page-numbers.prev {
  width: 0.9375rem;
  height: auto;
  -webkit-mask: url(../images/common/arrow1.svg) no-repeat center/contain;
          mask: url(../images/common/arrow1.svg) no-repeat center/contain;
  background-color: #051755;
  rotate: 180deg;
}

.p-plan + .p-plan {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-plan + .p-plan {
    margin-top: 8.75rem;
  }
}

.p-plan__inner {
  padding: 5rem 6.25rem;
  background-color: #F7F6F1;
}
@media screen and (max-width: 768px) {
  .p-plan__inner {
    padding-inline: 0.9375rem;
    margin-inline: calc(50% - 50vw);
  }
}

.p-plan__titleLg {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-plan__titleLg {
    font-size: 1.5rem;
  }
}

.p-plan__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-plan__text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
    text-align: left;
  }
}

.p-plan__imgLg {
  width: 100%;
  height: auto;
  aspect-ratio: 1460/679;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-plan__imgLg {
    aspect-ratio: 360/280;
    margin-top: 2.5rem;
  }
}

.p-plan__pointlist {
  display: grid;
  gap: 10.625rem;
  margin-top: 7.1875rem;
}
@media screen and (max-width: 768px) {
  .p-plan__pointlist {
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
}

.p-plan__pointItem {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-plan__pointItem {
    grid-template-columns: 1fr;
    gap: 1.5625rem;
  }
}

.p-plan__pointBody {
  display: grid;
  gap: 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .p-plan__pointBody {
    gap: 1.875rem 0;
  }
}

.p-plan__pointTitle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
.p-plan__pointTitle .num {
  display: inline-block;
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-plan__pointTitle .num {
    font-size: 2.5rem;
  }
}
.p-plan__pointTitle .num:after {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 4.6875rem;
  background-color: #333;
  rotate: 45deg;
  position: absolute;
  top: 1.875rem;
  right: -0.625rem;
}
@media screen and (max-width: 768px) {
  .p-plan__pointTitle .num:after {
    height: 4.0625rem;
    top: 1.25rem;
  }
}

.p-plan__titleText {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-plan__titleText {
    font-size: 1.25rem;
    margin-top: 3.75rem;
  }
}

.p-plan__pointText {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-plan__pointText {
    font-size: 0.9375rem;
  }
}

.p-plan__pointImg {
  width: 50rem;
  height: auto;
  aspect-ratio: 800/534;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-plan__pointImg {
    aspect-ratio: 360/240;
  }
}

.p-planSpec {
  margin-top: 10.625rem;
}
@media screen and (max-width: 768px) {
  .p-planSpec {
    margin-top: 5rem;
  }
}

.p-planSpec__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-planSpec__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0;
    padding-left: 1.25rem;
    border-left: 2px solid #051755;
  }
}

.p-planSpec__titleLg {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding-right: 1.25rem;
  border-right: 1px solid #051755;
}
@media screen and (max-width: 768px) {
  .p-planSpec__titleLg {
    font-size: 1.5rem;
    padding-right: 0;
    border-right: none;
  }
}

.p-planSpec__titleSm {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-planSpec__titleSm {
    font-size: 0.9375rem;
  }
}

.p-planSpec__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-planSpec__text {
    font-size: 0.9375rem;
    margin-top: 1.5625rem;
  }
}

.p-planSpec__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 11rem 5rem;
  margin-top: 6.75rem;
}
@media screen and (max-width: 768px) {
  .p-planSpec__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
  }
}

.p-planSpec__item {
  width: calc(33.3% - 7.33313rem);
}
@media screen and (max-width: 768px) {
  .p-planSpec__item {
    width: 100%;
  }
}

.p-planSpec__itemImg {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 419/606;
}

.p-planSpec__itemTitle {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-planSpec__itemTitle {
    font-size: 1.25rem;
  }
}

.p-planSpec__itemText {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-planSpec__itemText {
    font-size: 0.9375rem;
  }
}

.p-reform__list {
  display: grid;
  gap: 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-reform__list {
    gap: 4rem;
  }
}

.p-reform__imgWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-reform__imgWrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
  }
}

.p-reform__title {
  text-align: center;
}

.p-reform__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 3.75rem;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-reform__text {
    font-size: 0.9375rem;
    margin-top: 3rem;
  }
}

.p-service {
  margin-top: 14.625rem;
}
@media screen and (max-width: 768px) {
  .p-service {
    margin-top: 2.8125rem;
  }
}

.p-service__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 768px) {
  .p-service__list {
    grid-template-columns: 1fr;
  }
}

.p-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.9375rem;
  padding-inline: 2.375rem;
}
.p-service__item:first-child {
  border-right: 1px solid #051755;
}
@media screen and (max-width: 768px) {
  .p-service__item {
    padding-inline: 0;
    padding-block: 2.25rem;
  }
  .p-service__item:first-child {
    border-right: none;
  }
}

.p-service__main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-service__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-service__title {
    margin-bottom: 1.75rem;
    gap: 1rem;
  }
}

.p-service__titleEn {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-service__titleEn {
    font-size: 2.125rem;
  }
}

.p-service__titleJa {
  margin: 0.5rem 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #E26E2F;
}
@media screen and (max-width: 768px) {
  .p-service__titleJa {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    max-width: 7.5rem;
  }
}

.p-service__img {
  width: 100%;
  aspect-ratio: 647/363;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-service__img {
    margin-top: 1.4375rem;
  }
}

.p-service__body {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-service__body {
    margin-top: 1.4375rem;
  }
}

.p-service__titleSm {
  margin: 0 0 1.125rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.p-service__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  max-width: 32.5625rem;
  margin-top: 1.5rem;
}

.p-service__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: auto;
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-service__cta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 2rem;
  }
}

.p-serviceDetail__inner {
  max-width: 93.75rem;
}

.p-serviceDetail__title {
  text-align: center;
  color: #333;
}

.p-serviceDetail__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.1875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-serviceDetail__btnWrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.8125rem 1.125rem;
  }
}

.p-serviceDetail__btnItem {
  width: calc(20% - 1.75rem);
}
@media screen and (max-width: 768px) {
  .p-serviceDetail__btnItem {
    width: calc(50% - 0.5625rem);
  }
}

.p-serviceDetail__btnLink {
  padding: 0.3125rem 1.5rem;
  background-color: #051755;
  color: #fff;
  font-size: 1.125rem;
  line-height: 2.9;
  letter-spacing: 0.14em;
  font-weight: 700;
  display: inline-block;
  width: 100%;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-serviceDetail__btnLink {
    padding: 0.625rem 0.3125rem;
    line-height: 1.3;
    min-height: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-serviceDetail__btnLink.--sm {
    font-size: 0.8125rem;
  }
}
.p-serviceDetail__btnLink:hover {
  background-color: #E26E2F;
}

.p-serviceDetailItem {
  padding-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-serviceDetailItem {
    padding-top: 7.5rem;
  }
}

.p-serviceDetailItem__title {
  text-align: center;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-serviceDetailItem__title {
    font-size: 1.375rem;
  }
}

.p-serviceDetailItem__headImg {
  margin-inline: calc(50% - 50vw);
  max-width: none;
  max-width: initial;
  width: 100vw;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-serviceDetailItem__headImg {
    margin-inline: 0;
    max-width: 100%;
    width: 100%;
  }
}
.p-serviceDetailItem__headImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-serviceDetailItem__headImg img {
    aspect-ratio: 360/400;
  }
}

.p-serviceDetailItem__headText {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-serviceDetailItem__headText {
    text-align: left;
    font-size: 0.9375rem;
  }
}

.p-serviceDetailItem__cards {
  max-width: 75rem;
  margin-inline: auto;
  margin-top: 10rem;
  display: grid;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .p-serviceDetailItem__cards {
    margin-top: 5rem;
    gap: 5rem;
  }
}

.p-serviceDetailItem__card + .p-serviceDetailItem__card {
  margin-top: 2.5rem;
}

.p-single__body {
  margin-top: 9.375rem;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-single__body {
    margin-top: 3.125rem;
  }
}

.p-single__date {
  font-size: 1.125rem;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.p-single__title {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #051755;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single__title {
    font-size: 1.25rem;
  }
}

.p-single__img {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-single__img {
    margin-top: 1.25rem;
  }
}

.p-single__img-main,
.p-single__main .splide__slide img {
  width: 100%;
  aspect-ratio: 783/456;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-single__main .splide__arrow {
  background: #fff;
  opacity: 1;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  -webkit-box-shadow: 0 0.25rem 1.375rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 1.375rem rgba(0, 0, 0, .1);
}
@media screen and (max-width: 768px) {
  .p-single__main .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-single__main .splide__arrow svg {
  fill: #051755;
}
.p-single__main .splide__arrow--prev {
  left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single__main .splide__arrow--prev {
    left: 0.625rem;
  }
}
.p-single__main .splide__arrow--next {
  right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single__main .splide__arrow--next {
    right: 0.625rem;
  }
}

.p-single__thumb {
  margin-top: 1rem;
}
.p-single__thumb .splide__slide {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.p-single__thumb .splide__slide.is-active {
  opacity: 1;
}
.p-single__thumb .splide__slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 783/456;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-single__content,
.p-page__content {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single__content,
  .p-page__content {
    margin-top: 2.5rem;
  }
}
.p-single__content > *:first-child,
.p-page__content > *:first-child {
  margin-top: 0;
}
.p-single__content > *:last-child,
.p-page__content > *:last-child {
  margin-bottom: 0;
}
.p-single__content p,
.p-page__content p {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-block: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-single__content p,
  .p-page__content p {
    font-size: 0.9375rem;
    margin-block: 1rem;
  }
}
.p-single__content h2,
.p-page__content h2 {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #051755;
  margin-block: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single__content h2,
  .p-page__content h2 {
    font-size: 1.375rem;
  }
}
.p-single__content h3,
.p-page__content h3 {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #051755;
  padding-left: 1.3125rem;
  border-left: 0.25rem solid #051755;
  margin-top: 2.5rem;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-single__content h3,
  .p-page__content h3 {
    font-size: 1.25rem;
    padding-left: 0.625rem;
    border-width: 0.125rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
}
.p-single__content a,
.p-page__content a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  color: #051755;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-single__content a:hover,
.p-page__content a:hover {
  opacity: 0.7;
}
.p-single__content table,
.p-page__content table {
  margin-block: 1.25rem;
  max-width: 46.875rem;
}
@media screen and (max-width: 768px) {
  .p-single__content table,
  .p-page__content table {
    width: 100%;
    min-width: 31.25rem;
    overflow-x: auto;
    display: block;
  }
}
.p-single__content table td,
.p-page__content table td {
  padding: 1.25rem;
}
.p-single__content .wp-block-file__button,
.p-page__content .wp-block-file__button {
  color: #fff;
  text-decoration: none;
}

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

.p-subFv1 {
  aspect-ratio: 1200/156;
}
@media screen and (max-width: 768px) {
  .p-subFv1 {
    aspect-ratio: 360/135;
    max-width: 92.3076923077%;
    margin-inline: auto;
  }
}

.p-subFv1__inner {
  position: relative;
  max-width: 78.125rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-suvFv1__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-suvFv1__bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .6);
  position: absolute;
  top: 0;
  left: 0;
}
.p-suvFv1__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-subFv1__title {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #051755;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-subFv1__title {
    font-size: 1.25rem;
  }
}

.p-test {
  color: red;
  font-size: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}

.p-warrantyBnr {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-warrantyBnr {
    margin-top: 2.5rem;
  }
}

.p-warrantyBnr__link {
  display: block;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.p-warrantyBnr__link:hover {
  opacity: 0.85;
}

.p-warrantyBnr__img {
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}

.p-warrantyBnr__placeholder {
  background-color: #051755;
  color: #fff;
  text-align: center;
  padding: 2.875rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-warrantyBnr__placeholder {
    padding: 1.875rem 1.25rem;
  }
}

.p-warrantyBnr__lead {
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-warrantyBnr__lead {
    font-size: 0.875rem;
  }
}

.p-warrantyBnr__num {
  font-size: 5.5rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #E26E2F;
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-warrantyBnr__num {
    font-size: 3.5rem;
  }
}

.p-warrantyBnr__unit {
  font-size: 2.5rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-warrantyBnr__unit {
    font-size: 1.625rem;
  }
}

.p-warrantyBnr__label {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-warrantyBnr__label {
    font-size: 1.25rem;
  }
}

.p-warrantyBnr__text {
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-warrantyBnr__text {
    font-size: 0.8125rem;
    margin-top: 0.75rem;
  }
}

.p-warrantyBnr__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  border: 1px solid #fff;
  padding: 0.875rem 1.875rem;
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .p-warrantyBnr__btn {
    font-size: 0.8125rem;
    padding: 0.6875rem 1.375rem;
    margin-top: 1.125rem;
  }
}
.p-warrantyBnr__btn::after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.9375rem;
  -webkit-mask: url(../images/common/arrow1.svg) no-repeat center/contain;
          mask: url(../images/common/arrow1.svg) no-repeat center/contain;
  background-color: #fff;
}

.p-warranty {
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-warranty {
    margin-top: 1.875rem;
  }
}

.p-warranty__lead {
  font-size: 1.75rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #051755;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-warranty__lead {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.p-warranty__text {
  font-size: 1rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-warranty__text {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 1.125rem;
  }
}

.p-warrantyPoint__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-warrantyPoint__list {
    gap: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .p-warrantyPoint__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.875rem;
  }
}

.p-warrantyPoint__item {
  background-color: #f7f5f0;
  padding: 2.5rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-warrantyPoint__item {
    padding: 1.5rem 1.25rem;
  }
}

.p-warrantyPoint__num {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #E26E2F;
}
@media screen and (max-width: 768px) {
  .p-warrantyPoint__num {
    font-size: 1.875rem;
  }
}

.p-warrantyPoint__title {
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #051755;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-warrantyPoint__title {
    font-size: 1.0625rem;
    margin-top: 0.625rem;
  }
}

.p-warrantyPoint__text {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-warrantyPoint__text {
    font-size: 0.875rem;
    line-height: 1.9;
    margin-top: 0.625rem;
  }
}

.p-warrantyMsg {
  text-align: center;
}

.p-warrantyMsg__text {
  font-size: 1.125rem;
  line-height: 2.2;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #051755;
}
@media screen and (max-width: 768px) {
  .p-warrantyMsg__text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-warrantyMsg__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-warrantyMsg__btn {
    margin-top: 1.5rem;
  }
}

.p-works__title {
  text-align: center;
}

.p-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-works__list {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
}

.p-works__link {
  display: block;
  cursor: pointer;
}

.p-works__titleSm {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-works__titleSm {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}

.p-works__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 537/359;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-works__img {
    aspect-ratio: 360/240;
  }
}

@media (any-hover: hover) {
  .p-works__link:hover .p-works__imgWrap {
    overflow: clip;
  }
  .p-works__link:hover .p-works__imgWrap .p-works__img {
    scale: 1.05;
  }
}
.u-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
