@charset "UTF-8";
html {
  font-size: 62.5%;
}
@media (max-width: 1250px) and (min-width: 768px) {
  html {
    font-size: 0.8vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

body::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 120rem;
  background: url(../images/bg.jpg) no-repeat center bottom/cover;
  position: fixed;
  left: 0;
  bottom: 0;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

footer {
  margin-top: auto;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*****************************
* 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 */
/* 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-footer {
  margin-top: 13rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 8rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 125rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.l-inner.l-inner--sm {
  width: 100%;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 115rem;
}
@media screen and (max-width: 767px) {
  .l-inner.l-inner--sm {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.c-btn01 {
  display: inline-block;
  position: relative;
}
.c-btn01 span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 0.5rem;
  padding-right: 4rem;
  padding-bottom: 1.75rem;
  min-width: 22rem;
  border-bottom: 1px solid #ABABAB;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-btn01 span {
    min-width: 24rem;
    padding-top: 1rem;
  }
}
.c-btn01 span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #AF1212;
  position: absolute;
  bottom: -1px;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c-btn01::before {
  content: "";
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid #D5DBE4;
  border-radius: 0.2rem;
  position: absolute;
  bottom: 1.4rem;
  right: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn01::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 1rem;
  background-color: #333;
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  bottom: 2.3rem;
  right: 1.55rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.c-btn01.c-btn01--white span {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.c-btn01.c-btn01--white span::before {
  background-color: #fff;
}
.c-btn01.c-btn01--white::before {
  border: 1px solid #fff;
}
.c-btn01.c-btn01--white::after {
  background-color: #fff;
}

@media (any-hover: hover) {
  .c-btn01:hover::before {
    background-color: #AF1212;
    border: 1px solid #AF1212;
  }
  .c-btn01:hover::after {
    background-color: #fff;
  }
  .c-btn01:hover span::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.c-btn02 {
  display: inline-block;
  border: none;
  background: #333;
  border-radius: 0;
  font-family: inherit;
  min-width: 25rem;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1.4rem 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .c-btn02 {
    font-size: 1.4rem;
  }
}

@media (any-hover: hover) {
  .c-btn02:hover {
    background-color: #fff;
    color: #333;
  }
}
.c-title01 .en {
  display: inline-block;
  font-family: "Source Serif 4", serif;
  font-weight: 400;
  font-size: 5.4rem;
  line-height: 100%;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-title01 .en {
    font-size: 4.2rem;
  }
}
.c-title01 .ja {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .c-title01 .ja {
    font-size: 1.3rem;
    margin-top: 0.4rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-title01 {
    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: 767px) {
  .c-title01.c-title01--sm .en {
    font-size: 4rem;
  }
}

.c-title01.c-title01--center {
  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;
}
.c-title01.c-title01--center .en {
  text-align: center;
}
.c-title01.c-title01--center .ja {
  margin-left: 0;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-title01.c-title01--center .ja {
    font-size: 1.3rem;
    margin-top: 0.4rem;
  }
}

.c-title01.c-title01--white {
  color: #fff;
}

.c-title02 {
  font-family: "Source Serif 4", serif;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 767px) {
  .c-title02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-title02 .num {
  display: inline-block;
  color: #A0A0A0;
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .c-title02 .num {
    font-size: 1.5rem;
  }
}
.c-title02 .ja {
  display: inline-block;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-title02 .ja {
    font-size: 2.2rem;
    letter-spacing: 0em;
    text-align: center;
  }
}

.p-contact-form__content + .p-contact-form__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__content + .p-contact-form__content {
    margin-top: 4rem;
  }
}

.p-contact-form__content-title {
  font-size: 2.4rem;
  font-family: "Source Serif 4", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0 0 0.3em 0.3rem;
  border-bottom: 1px solid #ABABAB;
}
@media screen and (max-width: 767px) {
  .p-contact-form__content-title {
    font-size: 1.8rem;
  }
}

.p-contact-form__content-note {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.p-contact-form__items {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__items {
    margin-top: 1.8rem;
  }
}

.p-contact-form__item + .p-contact-form__item {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item + .p-contact-form__item {
    margin-top: 1.4rem;
  }
}

.p-contact-form__label {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact-form__label {
    font-size: 1.4rem;
  }
}

.p-contact-form__label span {
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 1.5rem;
}

.required {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.3;
  background-color: #AF1212;
  padding: 0.1rem 0.6rem;
  margin-left: 1.2rem;
  color: #fff;
  font-weight: 500;
  border-radius: 0.2rem;
}
@media screen and (max-width: 767px) {
  .required {
    font-size: 1rem;
  }
}

.p-contact-form__input {
  margin-top: 1.2rem;
}
.p-contact-form__input input[type=text],
.p-contact-form__input input[type=email],
.p-contact-form__input input[type=tel] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #d7d7d7;
  background: #FAFAFA;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.3rem;
  color: #333;
  font-family: inherit;
  width: 100%;
  min-height: 4.2rem;
  padding: 0.3rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input input[type=text],
  .p-contact-form__input input[type=email],
  .p-contact-form__input input[type=tel] {
    font-size: 1.4rem;
    padding: 0.2rem 4rem 0.2rem 1rem;
    min-height: 3.8rem;
  }
}
.p-contact-form__input textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #d7d7d7;
  background: #FAFAFA;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.3rem;
  color: #333;
  font-family: inherit;
  width: 100%;
  min-height: 24rem;
  padding: 0.3rem 1.2rem;
  resize: none;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input textarea {
    font-size: 1.4rem;
    padding: 0.2rem 4rem 0.2rem 1rem;
    min-height: 20rem;
  }
}
.p-contact-form__input input[type=number] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: #333;
  font-family: inherit;
  min-height: 4.2rem;
  padding: 0.3rem 1.2rem;
  border: 1px solid #d7d7d7;
  background: #FAFAFA;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input input[type=number] {
    font-size: 1.4rem;
    padding: 0.2rem 4rem 0.2rem 1rem;
    min-height: 3.8rem;
  }
}
.p-contact-form__input input[type=file] {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input input[type=file] {
    font-size: 1.2rem;
  }
}
.p-contact-form__input select {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: #333;
  font-family: inherit;
  min-height: 4.2rem;
  width: 100%;
  padding: 0.3rem 1.2rem;
  border: 1px solid #d7d7d7;
  background: #FAFAFA;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input select {
    font-size: 1.4rem;
    padding: 0.2rem 4rem 0.2rem 1rem;
    min-height: 3.8rem;
  }
}

.p-contact-form__input .note {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.6rem;
}

.p-contact-form__input.p-contact-form__input--select {
  position: relative;
}
.p-contact-form__input.p-contact-form__input--select::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 30%;
  right: 2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input.p-contact-form__input--select::before {
    width: 1rem;
    height: 1rem;
    border-right: 1px solid #707070;
    border-bottom: 1px solid #707070;
    right: 1.4rem;
  }
}

/*==================================
# 利用規約
===================================*/
.p-contact-form__guide {
  max-width: 64.5rem;
  height: 23rem;
  margin-inline: auto;
  background-color: #fff;
  margin-top: 6rem;
  color: #333;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .p-contact-form__guide {
    margin-top: 4rem;
    height: 18rem;
  }
}

.p-contact-form__guide-inner {
  padding: 1.8rem 2.4rem;
  background-color: #f5f5f5;
  border: 1px solid #d7d7d7;
}
@media screen and (max-width: 767px) {
  .p-contact-form__guide-inner {
    padding: 1.8rem 1.6rem;
  }
}

.p-guide__title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-guide__title {
    font-size: 1.6rem;
  }
}

.p-guide__list {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-guide__list {
    font-size: 1rem;
  }
}

.p-guide__item + .p-guide__item {
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-guide__item + .p-guide__item {
    margin-top: 1.2rem;
  }
}

.p-guide__item-title {
  font-size: 1.3rem;
  font-weight: 500;
}

.p-guide__item-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.p-guide__item-list {
  list-style-type: decimal;
  padding-left: 2rem;
}

/*==================================
# 同意ボタン
===================================*/
.p-contact-form__agree {
  margin-top: 4rem;
  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: 767px) {
  .p-contact-form__agree {
    margin-top: 2.8rem;
  }
}
.p-contact-form__agree input {
  opacity: 0;
  position: absolute;
}
.p-contact-form__agree label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree label {
    font-size: 1.4rem;
  }
}
.p-contact-form__agree label::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border: 1px solid #D7D7D7;
  margin-right: 1rem;
}
.p-contact-form__agree input + label::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.6rem;
  border-left: 2px solid #AF1212;
  border-bottom: 2px solid #AF1212;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0.7rem;
  left: 0.4rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.p-contact-form__agree input:checked + label::after {
  opacity: 1;
}

/*==================================
# 送信ボタン
===================================*/
.p-contact-form__submit {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit {
    margin-top: 4rem;
  }
}
.p-contact-form__submit input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
  min-width: 2.6rem;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1.4rem 9.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #333;
}

@media (any-hover: hover) {
  .p-contact-form__submit input[type=submit]:hover {
    background-color: #fff;
    color: #333;
  }
}
.p-contact {
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-bottom: 10rem;
  }
}

.p-contact__title {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 2.4rem;
  }
}

.p-contact__text {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    font-size: 1.4rem;
    text-align: left;
    margin-top: 3rem;
  }
}
.p-contact__text .row {
  display: block;
}
.p-contact__text .row + .row {
  margin-top: 1rem;
}

.p-contact__form {
  max-width: 80rem;
  margin-inline: auto;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 4rem;
  }
}

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

.p-content01__item-img {
  width: 46.3636363636%;
}
@media screen and (max-width: 767px) {
  .p-content01__item-img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.2rem;
  }
}
.p-content01__item-img img {
  width: 100%;
  height: auto;
}

.p-content01__item-body {
  width: 47.2727272727%;
  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.2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-content01__item-body {
    width: 100%;
    display: contents;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-content01__item-title {
  font-size: 2.5rem;
  font-family: "Source Serif 4", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-content01__item-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 1.8rem;
    -moz-text-align-last: center;
         text-align-last: center;
  }
}

.p-content01__item-text {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-content01__item-text {
    font-size: 1.4rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    text-align: left;
    line-height: 1.6;
    margin-top: 1.6rem;
  }
}

.p-content01__item.p-content01__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-content01__item.p-content01__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-content01__item + .p-content01__item {
  margin-top: 4rem;
}

.p-content01__item-table {
  font-size: 1.2rem;
  border-collapse: collapse;
  border-top: 1px solid #939393;
}
@media screen and (max-width: 767px) {
  .p-content01__item-table {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 2.5rem;
  }
}
.p-content01__item-table th {
  min-width: 14rem;
  padding: 0.7rem 3rem;
  font-weight: 400;
  border-bottom: 1px solid #939393;
  -moz-text-align-last: left;
       text-align-last: left;
}
.p-content01__item-table td {
  min-width: 20rem;
  text-align: center;
  padding: 0.7rem 3rem;
  font-weight: 400;
  border-bottom: 1px solid #939393;
}

.p-content01__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-content01__item-list {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

.p-content01__item-items {
  margin-top: 2rem;
}

.p-content01__item-item::before {
  content: "・";
  display: inline-block;
  margin-right: 0.2rem;
}

.p-content01__item-item + .p-content01__item-item {
  margin-top: 0.3rem;
}

.p-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  color: #fff;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-cta {
    grid-template-columns: 1fr;
  }
}

.p-cta__item {
  background-color: rgba(17, 17, 17, .7);
  padding: 7rem 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-cta__item {
    padding: 3.2rem 2rem;
  }
}

.p-cta__item-body {
  margin-top: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-cta__item-body {
    margin-top: 2.4rem;
  }
}

.p-cta__lead {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}
@media screen and (max-width: 767px) {
  .p-cta__lead {
    font-size: 1.5rem;
  }
}

.p-cta__text {
  margin-top: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    margin-top: 1.2rem;
  }
}

.p-cta__btn {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    margin-top: 3rem;
    text-align: center;
  }
}

.p-floating-nav {
  position: fixed;
  right: 0;
  bottom: 4rem;
  width: 35rem;
  height: 9rem;
  background: rgba(17, 17, 17, .7);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .p-floating-nav {
    display: none;
  }
}
.p-floating-nav::before {
  content: "";
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid #D5DBE4;
  border-radius: 0.2rem;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-floating-nav::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 1rem;
  background-color: #fff;
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 3.55rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (any-hover: hover) {
  .p-floating-nav:hover {
    color: rgba(255, 255, 255, .7);
  }
  .p-floating-nav:hover::before {
    background-color: #fff;
    border: 1px solid #fff;
  }
  .p-floating-nav:hover::after {
    background-color: #333;
  }
  .p-floating-nav:hover span::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.js-floating-nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.js-floating-nav.is-show {
  opacity: 1;
  visibility: visible;
}

.p-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.6rem;
  }
}

.p-flow__item {
  width: 25.4545454545%;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    padding: 0 1rem;
    width: 100%;
  }
}

.p-flow__item-num {
  font-family: "Noto Serif JP", serif;
  color: #9E9993;
  font-size: 4.8rem;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-flow__item-num {
    text-align: center;
    font-size: 3.8rem;
  }
}

.p-flow__item-img {
  width: 20rem;
}
.p-flow__item-img img {
  width: 100%;
  height: auto;
}

.p-flow__item-body {
  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;
}
@media screen and (max-width: 767px) {
  .p-flow__item-body {
    margin-top: 0.6rem;
  }
}

.p-flow__item-title {
  font-size: 1.7rem;
  font-weight: 500;
  margin-top: 1.8rem;
  text-align: center;
}

.p-flow__item-text {
  line-height: 1.7;
  margin-top: 1rem;
}

.p-footer {
  padding-top: 6.3rem;
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}

.p-footer__body {
  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: 767px) {
  .p-footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer__content {
  width: 19.6rem;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 20.8333333333%;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    width: 100%;
  }
}

.p-footer__logo {
  width: 19.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 16rem;
  }
}
.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__company-name {
  font-size: 1.7rem;
  font-weight: 500;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__company-name {
    font-size: 1.6rem;
    margin-top: 1.2rem;
  }
}

.p-footer__company-detail {
  margin-top: 1.4rem;
  font-size: 1.2rem;
  line-height: 160%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__company-detail {
    font-size: 1.3rem;
    gap: 0.2rem;
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.5rem;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    margin-top: 4rem;
    gap: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 0;
    row-gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-items {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-items > .p-footer__nav-item {
    width: 100%;
  }
}

.p-footer__nav-item a {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    font-size: 1.4rem;
  }
}

.p-footer__nav-items {
  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.6rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-items {
    gap: 2rem;
  }
}

.p-footer__nav-item--nolink {
  color: #7D7D7D;
}

.p-footer__subnave {
  color: #333;
  margin-top: 1.8rem;
  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.2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__subnave {
    margin-top: 1.2rem;
  }
}

.p-footer__subnave-item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.p-footer__subnave-item a::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1px;
  background-color: #333;
}

.p-footer__copy {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 15rem;
  color: #888888;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 1.1rem;
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 1.2rem;
  }
}

@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    opacity: 0.7;
  }
}
.p-fv {
  position: relative;
  min-height: 42.5rem;
  padding-top: 25.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-top: 11rem;
    padding-bottom: 3rem;
    min-height: 0;
    min-height: initial;
  }
}
.p-fv::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../images/fv_bg.png) no-repeat bottom center/cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
}

.p-fv__inner {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-fv__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
  }
}
.p-fv__title .en {
  font-family: "Noto Serif JP", serif;
  font-size: 8rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-fv__title .en {
    font-size: 4rem;
  }
}
.p-fv__title .ja {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title .ja {
    font-size: 1.4rem;
    margin-left: 0;
  }
}

.p-header {
  width: 100%;
  height: 8rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding-left: 2.7rem;
  padding-right: 1.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 5.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    padding: 0.5rem 1rem;
  }
}

.p-header.is-scroll {
  background-color: rgba(255, 255, 255, .4);
  backdrop-filter: blur(10px);
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header__logo {
  width: 23rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 15rem;
    padding-bottom: 1rem;
  }
}
.p-header__logo img {
  width: 100%;
  height: auto;
}

.p-header__logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__nav {
  display: none;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(255, 255, 255, .9);
    display: block;
    padding: 10rem 2rem 0 2rem;
    display: none;
  }
}

.p-header__nav-list {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    height: initial;
  }
}

.p-header__nav-item {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item {
    height: auto;
    height: initial;
  }
}

.p-header__nav-item > a {
  display: inline-block;
  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: inherit;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  padding: 1rem 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item > a {
    height: auto;
    height: initial;
    font-size: 1.8rem;
  }
}

.p-header__nav-item > a:hover {
  color: #AF1212;
}

.p-header__nav-item--parent {
  position: relative;
}

.p-header__nav-item--parent > a {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item--parent > a {
    color: #7f7f7f;
  }
}
.p-header__nav-item--parent > a::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.1rem;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-header__nav-item--parent > a::before {
    display: none;
  }
}
.p-header__nav-item--parent > a::after {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1px;
  height: 1.1rem;
  background-color: #333;
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-header__nav-item--parent > a::after {
    display: none;
  }
}

.p-header__subnav {
  position: absolute;
  top: calc(100% - 1.5rem);
  left: 0;
  min-width: 24rem;
  min-height: 15rem;
  background-color: rgba(17, 17, 17, .7);
  padding: 2rem 3rem;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    color: #333;
    text-align: center;
    padding: 1rem 1rem 0 1rem;
    min-height: 0;
    min-height: initial;
  }
}

.p-header__subnav-item a {
  display: inline-block;
  text-align: left;
  padding: 0.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-header__subnav-item a {
    font-size: 1.8rem;
  }
}

.p-header__subnav-item--nolink span {
  display: inline-block;
  text-align: left;
  padding: 0.4rem 0rem;
  color: #c1c1c1;
}
@media screen and (max-width: 767px) {
  .p-header__subnav-item--nolink span {
    color: #7f7f7f;
    font-size: 1.8rem;
    padding: 1rem;
  }
}

.p-header__service {
  margin-top: 0.2rem;
}

.p-header__service-item > a {
  padding: 0.2rem 0rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-header__service-item > a {
    padding: 0.5rem;
  }
}

.p-header__service-item > a::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header__service-item > a::before {
    background-color: #333;
  }
}

.p-header__cta {
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-header__cta {
    margin-left: 0;
    text-align: center;
    margin-top: 3rem;
  }
}

.p-header__cta a {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.3rem 2.9rem;
  position: relative;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .p-header__cta a {
    font-size: 1.8rem;
  }
}
.p-header__cta a span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.p-header__cta a::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#A91602), to(#941F11));
  background: linear-gradient(90deg, #A91602 0%, #941F11 100%);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*==================================
# ホバー
===================================*/
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
  .p-header__subnav a:hover {
    opacity: 0.7;
  }
  .p-header__nav-item--parent:hover > .p-header__subnav {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-header__cta a:hover::before {
    opacity: 0;
  }
  .p-header__nav-item--parent > a:hover::before, .p-header__nav-item--parent > a:hover::after {
    background-color: #AF1212;
  }
}
/*==================================
# ハンバーガーメニュー
===================================*/
.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    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.8rem;
    width: 6rem;
    height: 5rem;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
  }
}

.p-header__hamburger span {
  display: inline-block;
  width: 3rem;
  height: 1px;
  background-color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__hamburger.open span:nth-last-child(1) {
  -webkit-transform: rotate(45deg) translate(-1.25rem, 0);
          transform: rotate(45deg) translate(-1.25rem, 0);
}

.p-header__hamburger.open span:nth-last-child(2) {
  opacity: 0;
}

.p-header__hamburger.open span:nth-last-child(3) {
  -webkit-transform: rotate(-45deg) translate(-1.25rem, 0);
          transform: rotate(-45deg) translate(-1.25rem, 0);
}

.p-import-flow {
  padding-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .p-import-flow {
    padding-bottom: 6rem;
  }
}

.p-import-flow__text {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-import-flow__text {
    text-align: left;
  }
}

.p-import-flow__items {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-import-flow__items {
    margin-top: 3rem;
  }
}

.p-import-form {
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .p-import-form {
    padding-bottom: 10rem;
  }
}

.p-import-form__title {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-import-form__title {
    font-size: 2.4rem;
  }
}

.p-import-form__text {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-import-form__text {
    font-size: 1.4rem;
    text-align: left;
    margin-top: 3rem;
  }
}

.p-import-form__note {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-import-form__note {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 3rem;
  }
}
.p-import-form__note a {
  font-weight: 600;
  text-decoration: underline;
}

.p-import-form__form {
  max-width: 80rem;
  margin-inline: auto;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-import-form__form {
    margin-top: 4rem;
  }
}

.p-import-service {
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-import-service {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}

.p-import-service__item + .p-import-service__item {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-import-service__item + .p-import-service__item {
    margin-top: 6rem;
  }
}

.c-title03 {
  font-family: "Source Serif 4", serif;
  font-weight: 400;
  font-size: 2.8rem;
  border-bottom: 1px solid #ABABAB;
  padding: 0 0.5rem 0.8rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-title03 {
    font-size: 2rem;
    padding: 0 0.2rem 0.5rem 0.2rem;
  }
}

.p-content02__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-content02__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2rem;
  }
}

.p-content02__wrap.p-content02__wrap--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-content02__wrap.p-content02__wrap--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-content02__img {
  width: 45.4545454545%;
}
@media screen and (max-width: 767px) {
  .p-content02__img {
    width: 100%;
  }
}
.p-content02__img.p-content02__img02 img {
  aspect-ratio: 3/2.2;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-content02__img img {
  width: 100%;
  height: auto;
}

.p-content02__body {
  width: 47.2727272727%;
}
@media screen and (max-width: 767px) {
  .p-content02__body {
    width: 100%;
  }
}

.p-content02__text {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-content02__text {
    line-height: 1.6;
    margin-top: 2rem;
  }
}
.p-content02__text .row {
  display: block;
}
.p-content02__text .row + .row {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-content02__text .row + .row {
    margin-top: 1.2rem;
  }
}

.p-content02__table {
  font-size: 1.4rem;
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-content02__table {
    font-size: 1.3rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 1rem;
  }
}
.p-content02__table th {
  min-width: 12rem;
  padding: 1rem 3re;
  font-weight: 400;
  border-bottom: 1px solid #939393;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (max-width: 767px) {
  .p-content02__table th {
    padding: 1rem 0.5rem;
    min-width: 5rem;
  }
}
.p-content02__table td {
  min-width: 20rem;
  text-align: left;
  padding: 1.2rem 3rem;
  font-weight: 400;
  border-bottom: 1px solid #939393;
}
@media screen and (max-width: 767px) {
  .p-content02__table td {
    padding: 1rem 0.5rem;
  }
}

.p-main {
  padding-top: 10rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-main {
    padding-top: 2rem;
    padding-bottom: 10rem;
  }
}

.p-mv {
  position: relative;
  min-height: 75rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    min-height: 59rem;
  }
}

.p-mv__inner {
  position: relative;
  z-index: 2;
}

.p-mv__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3.8rem;
  line-height: 1.6;
  letter-spacing: 0.16em;
  padding-top: 42.4rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 2.3rem;
    padding-top: 40.5rem;
  }
}

.p-mv__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__img {
    height: 59rem;
  }
}
.p-mv__img::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 12rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFF));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__img::before {
    height: 19rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, .7)), to(#FFF));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .7) 50%, #FFF 100%);
  }
}
.p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__img {
  opacity: 0;
}

.p-mv__title {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.p-news-article__inner {
  max-width: 1050rem;
}

.p-news-article__time {
  display: inline-block;
  min-width: 9rem;
  font-size: 1.5rem;
  color: #888888;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
@media screen and (max-width: 767px) {
  .p-news-article__time {
    font-size: 1.3rem;
  }
}

.p-news-article__title {
  font-size: 2.2rem;
  font-family: "Source Serif 4", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #9E9993;
  padding: 0 0.4rem 0.8rem 0.4rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-news-article__title {
    font-size: 1.6rem;
  }
}

.p-news-article__body {
  max-width: 80rem;
  margin-inline: auto;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-news-article__body {
    padding-top: 3rem;
  }
}
.p-news-article__body p {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-news-article__body p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
.p-news-article__body P + P {
  margin-top: 2rem;
}
.p-news-article__body img {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

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

.p-news-article__btn {
  text-align: center;
  margin-top: 6rem;
}

.p-news-list__item {
  max-width: 100rem;
  margin-inline: auto;
}

.p-news__navigation {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-news__navigation {
    margin-top: 5rem;
  }
}

.p-page-navi {
  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.8rem;
}
@media screen and (max-width: 767px) {
  .p-page-navi {
    gap: 0.6rem;
  }
}
.p-page-navi a, .p-page-navi span.current {
  width: 4.4rem;
  height: 4.4rem;
  color: #333;
  border: 1px solid #333;
  background-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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-page-navi a, .p-page-navi span.current {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.p-page-navi span.current {
  color: #fff;
  background-color: #333;
}
.p-page-navi a.next {
  border: none;
  background-color: transparent;
  background-color: initial;
  position: relative;
}
.p-page-navi a.next::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}
.p-page-navi a.prev {
  border: none;
  background-color: transparent;
  background-color: initial;
  position: relative;
}
.p-page-navi a.prev::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-left: 1px solid #333;
  border-top: 1px solid #333;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}

@media (any-hover: hover) {
  .p-page-navi a:hover {
    opacity: 0.7;
  }
}
.p-product-flow {
  padding-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .p-product-flow {
    padding-bottom: 6rem;
  }
}

.p-product-flow__text {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-product-flow__text {
    text-align: left;
  }
}

.p-product-flow__items {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-product-flow__items {
    margin-top: 3rem;
  }
}

.p-product-intro {
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-product-intro {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}

.p-product-intro__title {
  font-family: "Source Serif 4", serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.16em;
  text-align: center;
  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-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-product-intro__title {
    font-size: 2rem;
  }
}
.p-product-intro__title .main {
  display: block;
}
.p-product-intro__title .title {
  display: inline-block;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-product-intro__title .title {
    font-size: 1.6rem;
  }
}
.p-product-intro__title .img {
  display: block;
  width: 28rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-intro__title .img {
    width: 22rem;
    margin-top: 0.4rem;
  }
}
.p-product-intro__title .img img {
  width: 100%;
  height: auto;
}

.p-product-intro__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-product-intro__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-product-intro__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-product-intro__img {
  width: 6.1111111111%;
  width: 92rem;
  margin-left: -10rem;
}
@media screen and (max-width: 767px) {
  .p-product-intro__img {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0;
    margin-top: 0;
  }
}
.p-product-intro__img img {
  aspect-ratio: 921/506;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-product-intro__body {
  width: 50.8rem;
  margin-left: -19rem;
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-product-intro__body {
    display: contents;
    margin-left: 0;
  }
}

.p-product-intro__lead {
  font-family: "Source Serif 4", serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-product-intro__lead {
    font-size: 1.8rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 3rem;
  }
}

.p-product-intro__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-product-intro__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-product-intro__item {
  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;
  font-size: 2rem;
  font-family: "Source Serif 4", serif;
  line-height: 165%;
  letter-spacing: 0.05em;
  border-radius: 150px;
  border: 1px solid #ABABAB;
  background: rgba(255, 255, 255, .46);
  width: 26.6rem;
  height: 26.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-product-intro__item {
    width: 17rem;
    height: 17rem;
    font-size: 1.5rem;
  }
}

.p-product-intro__item:nth-child(2) {
  margin-left: -2.6rem;
}
@media screen and (max-width: 767px) {
  .p-product-intro__item:nth-child(2) {
    margin-left: -1.6rem;
  }
}

.p-product-item {
  padding-top: 3rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-product-item {
    padding-bottom: 8rem;
  }
}

.p-product-item__list {
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-product-item__list {
    margin-top: 4rem;
  }
}

.p-product-tec {
  background-color: #F5F5F5;
  padding-top: 20rem;
  padding-bottom: 25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-product-tec {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}

.p-product-tec::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 12rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(4.8%, #FFF), color-stop(94.91%, #F5F5F5));
  background: linear-gradient(180deg, #FFF 4.8%, #F5F5F5 94.91%);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-product-tec::before {
    height: 6rem;
  }
}

.p-product-tec::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 13rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#F5f5f5), to(#fff));
  background: linear-gradient(180deg, #F5f5f5, #fff);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-product-tec::after {
    height: 8rem;
  }
}

.p-product-tec__inner {
  position: relative;
  z-index: 2;
}

.p-product-tec__content.p-product-tec__content--01 {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-product-tec__content.p-product-tec__content--01 {
    margin-top: 4rem;
  }
}

.p-product-tec__content + .p-product-tec__content {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-product-tec__content + .p-product-tec__content {
    margin-top: 6.5rem;
  }
}

.p-product-tec__lead {
  font-size: 2rem;
  font-family: "Source Serif 4", serif;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-product-tec__lead {
    font-size: 1.5rem;
    margin-top: 1rem;
    letter-spacing: 0.05em;
  }
}

.p-product-tec__content-items {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-product-tec__content-items {
    margin-top: 4rem;
  }
}

.p-product-tec__content02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-product-tec__content02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-product-tec__content02-tittle {
  width: 46.3636363636%;
}
@media screen and (max-width: 767px) {
  .p-product-tec__content02-tittle {
    width: 100%;
  }
}

.p-product-tec__content02-body {
  width: 47.2727272727%;
}
@media screen and (max-width: 767px) {
  .p-product-tec__content02-body {
    width: 100%;
    margin-top: 3.6rem;
  }
}
.p-product-tec__content02-body .p-content01__item-table {
  width: 100%;
}

.p-content01__item-table02 {
  width: 100%;
  font-size: 1.2rem;
  border-collapse: collapse;
  border-top: 1px solid #939393;
}
.p-content01__item-table02 th {
  min-width: 11rem;
  padding: 1.2rem 2rem;
  font-weight: 400;
  border-bottom: 1px solid #939393;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (max-width: 767px) {
  .p-content01__item-table02 th {
    padding: 0.8rem 1rem;
    min-width: 8rem;
  }
}
.p-content01__item-table02 td {
  min-width: 30rem;
  text-align: center;
  padding: 1.2rem 2rem;
  font-weight: 400;
  border-bottom: 1px solid #939393;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-content01__item-table02 td {
    padding: 0.8rem 1rem;
    min-width: 25rem;
  }
}

.p-sub-cta {
  padding-top: 12rem;
  padding-bottom: 15rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sub-cta {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}

.p-sub-cta::before {
  content: "";
  display: inline-block;
  width: 120rem;
  height: 1px;
  background-color: #ABABAB;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-sub-cta::before {
    width: calc(100% - 4rem);
  }
}

.p-thanks {
  padding-top: 4rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-top: 4rem;
    padding-bottom: 10rem;
  }
}

.p-thanks__title {
  font-family: "Source Serif 4", serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 2.2rem;
  }
}

.p-thanks__text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  margin-top: 4rem;
}
.p-thanks__text a {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-thanks__text span {
  display: block;
}
.p-thanks__text span + span {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: 1.4rem;
    text-align: left;
    margin-top: 3rem;
  }
}

.p-thanks__btn {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__btn {
    margin-top: 4rem;
  }
}

@media (any-hover: hover) {
  .p-thanks__text a:hover {
    opacity: 0.7;
  }
}
.p-top-cta {
  position: relative;
  z-index: 3;
  padding-top: 14rem;
  position: relative;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}

.p-top-cta::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 16rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(#FFF));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-cta::before {
    height: 7rem;
  }
}

.p-top-cta::after {
  content: "";
  display: inline-block;
  width: 120rem;
  height: 1px;
  background-color: #ABABAB;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-cta::after {
    width: calc(100% - 4rem);
  }
}

.p-top-news {
  padding-top: 8rem;
  padding-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-top: 1rem;
    padding-bottom: 5rem;
  }
}

.p-top-news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.p-top-news__content {
  width: 30.5833333333%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-top: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__content {
    width: 100%;
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-top-service__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-top-service__text {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__text {
    margin-top: 3rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-top-service__btn {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__btn {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    text-align: center;
  }
}

.p-top-service__list {
  width: 64%;
}
@media screen and (max-width: 767px) {
  .p-top-service__list {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media screen and (max-width: 767px) {
  .p-news-list {
    margin-top: 2rem;
  }
}

.p-news-list__item {
  border-bottom: 1px solid #9E9993;
}

.p-news-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  padding: 4rem 6rem 4rem 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news-list__item a {
    -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.7rem;
    padding: 2rem 4.5rem 2rem 0rem;
  }
}

.p-news-list__item a::before {
  content: "";
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid #D5DBE4;
  border-radius: 0.2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.5rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.p-news-list__item a::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 1rem;
  background-color: #333;
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.55rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (any-hover: hover) {
  .p-news-list__item a:hover::before {
    background-color: #AF1212;
    border: 1px solid #AF1212;
  }
  .p-news-list__item a:hover::after {
    background-color: #fff;
  }
}
.p-news-list__time {
  display: inline-block;
  min-width: 9rem;
  font-size: 1.5rem;
  color: #888888;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (max-width: 767px) {
  .p-news-list__time {
    font-size: 1.2rem;
  }
}

.p-news-list__title {
  font-size: 1.4rem;
  line-height: 170%;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news-list__title {
    font-size: 1.3rem;
  }
}

.p-top-product {
  padding-top: 10rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-top-product {
    padding-top: 0rem;
  }
}

.p-top-product__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-product__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .p-top-product__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-top-product__img {
  width: 6.1111111111%;
  width: 92rem;
  margin-left: -10rem;
}
@media screen and (max-width: 767px) {
  .p-top-product__img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 0;
    margin-top: 3rem;
  }
}
.p-top-product__img img {
  aspect-ratio: 921/506;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-top-product__body {
  width: 43%;
  margin-left: -13.5rem;
  position: relative;
  z-index: 2;
  padding-top: 12.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-product__body {
    display: contents;
    margin-left: 0;
  }
}

.p-top-product__text {
  margin-top: 3rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-top-product__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 2.2rem;
  }
}

.p-top-product__btn {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-product__btn {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    text-align: center;
  }
}

.p-top-service {
  padding-top: 12rem;
  padding-bottom: 24rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding-top: 7.5rem;
    padding-bottom: 10rem;
  }
}

.p-top-service::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 111.1rem;
  background: url(../images/service_bg.png) no-repeat center center/cover;
  position: absolute;
  top: 13rem;
  left: 0;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-top-service::before {
    height: 72rem;
  }
}

.p-top-service__inner {
  position: relative;
  z-index: 2;
}

.p-top-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.2rem;
  margin-top: 6.3rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3rem;
    gap: 5.5rem;
  }
}

.p-top-service__item:nth-child(2) {
  margin-top: 15.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item:nth-child(2) {
    margin-top: 0;
  }
}

.p-top-service__item-img img {
  aspect-ratio: 580/352;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-top-service__item-body {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-body {
    margin-top: 1.4rem;
  }
}

.p-top-service__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-title {
    font-size: 1.8rem;
  }
}

.p-top-service__item-text {
  margin-top: 0.9rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-text {
    margin-top: 0.6rem;
  }
}

.p-top-service__item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.3rem;
  margin-top: 3.1rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-btn {
    -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;
    margin-top: 2rem;
    gap: 1.4rem;
  }
}

.p-top__bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#F4F4F4));
  background: linear-gradient(180deg, #FFF 0%, #F4F4F4 100%);
  position: relative;
}

.p-top__bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 14rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(105.7%, #FFF));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 105.7%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

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