@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

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

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

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

/*****************************************
 * vw(数値,幅)の計算
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
}
@media (max-width: 1250px) {
  html {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
}

body.no-scroll {
  overflow: hidden;
}

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

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

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

img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

video,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

.l-header {
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 13.1rem;
  background-color: #ffffff;
  -webkit-transition: height 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: height 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: height 0.3s ease, box-shadow 0.3s ease;
  transition: height 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 5rem;
  }
}

.l-header.is-active {
  height: 8rem;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-header.is-active {
    height: 5rem;
  }
}

.l-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 4.8rem;
  height: inherit;
  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: 767px) {
  .l-header__inner {
    padding-inline: 2rem;
  }
}

.l-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__logo-link {
  width: 21rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo-link {
    width: 15rem;
  }
}

.l-header__nav {
  height: inherit;
}

.l-header__nav-list {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__nav-item {
  position: relative;
  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) {
  .l-header__nav-item + .l-header__nav-item {
    margin-left: 2rem;
  }
}

.l-header__nav-item + .l-header__nav-item {
  margin-left: 3.6rem;
}

.l-header__nav-item + .l-header__nav-item--contact {
  margin-left: 5.7rem;
}

.l-header__nav-item--contact {
  padding-left: 5.7rem;
}

.l-header__nav-item--contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 2.1rem;
  background-color: #555555;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.4;
}

.l-header__nav-link {
  position: relative;
  padding-block: 0.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333333;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .l-header__nav-link {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
  }
}
.l-header__nav-link::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 1px;
  background-color: #333333;
  border-radius: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, width 0.3s ease;
  transition: opacity 0.3s ease, width 0.3s ease;
}
.l-header__nav-link:hover {
  opacity: 1;
}
.l-header__nav-link:hover::before {
  opacity: 1;
  width: 100%;
}

/* ------------------------------------------------
hamburger
--------------------------------------------------- */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    display: block;
    position: relative;
    z-index: 6000;
    width: 2.8rem;
    height: 2.1rem;
    cursor: pointer;
  }
}

.l-hamburger__icons {
  position: relative;
  width: 100%;
  height: 100%;
}

.l-hamburger__icon {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333333;
}

.l-hamburger__icon:nth-child(1) {
  top: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-hamburger__icon:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-hamburger__icon:nth-child(3) {
  bottom: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-hamburger.is-active .l-hamburger__icon:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.l-hamburger.is-active .l-hamburger__icon:nth-child(2) {
  display: none;
}

.l-hamburger.is-active .l-hamburger__icon:nth-child(3) {
  bottom: auto;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ------------------------------------------------
drawer
--------------------------------------------------- */
.l-drawer {
  position: fixed;
  z-index: 5000;
  top: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-height: 100vh;
  background-color: #F9F9FC;
  display: none;
  opacity: 0;
  overflow-y: auto;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.l-drawer.is-open {
  display: block;
  opacity: 1;
}

.l-drawer__inner {
  margin-inline: auto;
  padding-top: 4.6rem;
  padding-bottom: 10.9rem;
  padding-inline: 3.4rem;
  width: 100%;
  max-width: 50rem;
  min-height: calc(100vh - 5rem);
}

.l-drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5.2rem;
}

.l-drawer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.1rem;
}

.l-drawer__title-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.l-drawer__lists {
  padding-left: 1.6rem;
  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;
  row-gap: 2.1rem;
}

.l-drawer__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #333333;
}
.l-drawer__link::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background-color: #333333;
}

.l-footer {
  padding-block: 8.6rem 2.8rem;
  background-color: #F9F9FC;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 7.6rem 3.3rem;
  }
}

.l-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7.7rem;
     -moz-column-gap: 7.7rem;
          column-gap: 7.7rem;
}
@media screen and (max-width: 767px) {
  .l-footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 7.7rem;
  }
}

.l-footer__brand {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .l-footer__brand {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer__logo {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 25rem;
  }
}

.l-footer__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 5.2rem;
  }
}

.l-footer__title {
  display: inline-block;
}

.l-footer__list {
  margin-top: 1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    margin-top: 2.1rem;
  }
}

.l-footer__item {
  padding-left: 1.6rem;
}

.l-footer__link {
  position: relative;
  padding-block: 0.4rem;
  display: inline-block;
  padding-left: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.08em;
}
.l-footer__link::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 1.5rem;
  height: 1px;
  background-color: #333333;
}

.l-footer__bottom {
  margin-top: 9.5rem;
  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) {
  .l-footer__bottom {
    margin-top: 5.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 1.8rem;
  }
}

.l-footer__policy-link,
.l-footer__copyright {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

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

.sm-only {
  display: none;
}
@media screen and (max-width: 500px) {
  .sm-only {
    display: block;
  }
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 500px;
    padding-inline: 2rem;
  }
}

.l-small-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 96.4rem;
  padding-inline: 25px;
}
@media screen and (max-width: 767px) {
  .l-small-inner {
    max-width: 500px;
    padding-inline: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .l-sp-p-0 {
    padding-inline: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-sp-p {
    padding-inline: 2rem;
  }
}

.section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.7rem;
}
@media screen and (max-width: 767px) {
  .section-heading {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 0;
  }
}
.section-heading .--en {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .section-heading .--en {
    font-size: 2rem;
    letter-spacing: 0.18em;
  }
}
.section-heading .--jp {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.4;
}
.section-heading.--reverse {
  color: #ffffff;
}
.section-heading.--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.c-lower-heading {
  padding: 1rem;
  width: 100%;
  height: 6.7rem;
  background-color: #F9F9FC;
  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: 2.4rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-lower-heading {
    font-size: 1.8rem;
  }
}

.c-article-title {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.6rem;
     -moz-column-gap: 3.6rem;
          column-gap: 3.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.c-article-title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #000000;
}
.c-article-title.--full {
  padding: 1.6rem 0;
}
@media screen and (max-width: 767px) {
  .c-article-title.--full {
    border-bottom: 1px solid #333333;
  }
  .c-article-title.--full::after {
    display: none;
  }
}

.common-text {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #333333;
}

.normal-text {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.61;
  color: #000000;
}

.common-en-text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  color: #333333;
}

.c-button {
  position: relative;
  padding-right: 2.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.c-button::after {
  content: "";
  width: 1.7rem;
  height: 1px;
  background-color: #333333;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.c-button:hover {
  opacity: 1;
}

a.c-button:hover::after {
  width: 3.5rem;
}

.c-button-label {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

.c-button-solid {
  position: relative;
  padding-right: 0.6rem;
  width: 10.6rem;
  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;
}
.c-button-solid::after {
  position: absolute;
  content: "";
  right: 0;
  width: 1.4rem;
  height: 1px;
  background-color: #333333;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button-solid .c-button-label {
  padding: 0.2rem 1rem 0.3rem;
  width: 10rem;
  border: 1px solid #333333;
  background-color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a.c-button-solid:hover {
  opacity: 1;
}
a.c-button-solid:hover::after {
  background-color: #ffffff;
}
a.c-button-solid:hover .c-button-label {
  background-color: #333333;
  color: #ffffff;
}

.c-button-solid--reverse {
  position: relative;
  padding-right: 0.6rem;
  width: 10.6rem;
  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;
}
.c-button-solid--reverse::after {
  position: absolute;
  content: "";
  right: 0;
  width: 1.4rem;
  height: 1px;
  background-color: #ffffff;
}
.c-button-solid--reverse .c-button-label {
  padding: 0.2rem 1rem 0.3rem;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  color: #ffffff;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

a.c-button-solid--reverse:hover {
  opacity: 1;
}
a.c-button-solid--reverse:hover .c-button-label {
  border-color: #333333;
  background-color: #333333;
}

.c-button-cta {
  padding-right: 1.3rem;
  width: 34.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-button-cta::after {
  right: 0;
  width: 2.6rem;
}
.c-button-cta .c-button-label {
  padding: 1.4rem;
  width: 100%;
  height: 100%;
  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;
  font-size: 1.4rem;
}

.c-button-confirm {
  position: relative;
  padding-right: 1.3rem;
  width: 34.3rem;
  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) {
  .c-button-confirm {
    width: auto;
    max-width: 33rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 500px) {
  .c-button-confirm {
    width: 100%;
  }
}
.c-button-confirm::after {
  position: absolute;
  content: "";
  right: 0;
  width: 2.6rem;
  height: 1px;
  background-color: #333333;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button-confirm .c-button-label {
  padding: 1.4rem;
  width: 100%;
  height: 100%;
  border: 1px solid #333333;
  background-color: transparent;
  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;
  font-size: 1.4rem;
  color: #333333;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-button-confirm:hover {
  opacity: 1;
}
.c-button-confirm:hover::after {
  background-color: #ffffff;
}
.c-button-confirm:hover .c-button-label {
  background-color: #333333;
  color: #ffffff;
}

.c-button-submit {
  position: relative;
  padding-right: 1.3rem;
  width: 34.3rem;
  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) {
  .c-button-submit {
    width: auto;
    max-width: 33rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 500px) {
  .c-button-submit {
    width: 100%;
  }
}
.c-button-submit::after {
  position: absolute;
  content: "";
  right: -1.3rem;
  width: 2.6rem;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button-submit .c-button-label {
  padding: 1.4rem;
  width: 100%;
  height: 100%;
  border: 1px solid #333333;
  background-color: #333333;
  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;
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-button-submit:hover {
  opacity: 1;
}
.c-button-submit:hover::after {
  background-color: #333333;
}
.c-button-submit:hover .c-button-label {
  background-color: #ffffff;
  color: #333333;
}

/* ------------------------------------------------
card
--------------------------------------------------- */
/* ------------------------------------------------
cta
--------------------------------------------------- */
.c-cta__wrap {
  padding-top: 7.2rem;
  padding-bottom: 11.6rem;
  border-top: 1px solid #555555;
}
@media screen and (max-width: 767px) {
  .c-cta__wrap {
    padding-top: 4.8rem;
    padding-bottom: 6rem;
  }
}

.c-cta__text {
  margin-top: 2.8rem;
  text-align: center;
}

.c-cta__button-wrap {
  margin-top: 8rem;
  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) {
  .c-cta__button-wrap {
    margin-top: 4rem;
  }
}

/* ------------------------------------------------
page-header
--------------------------------------------------- */
.page-header {
  padding-block: 18rem 8rem;
}
@media screen and (max-width: 767px) {
  .page-header {
    padding-block: 9.3rem 8rem;
  }
}

.page-header__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  row-gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .page-header__title {
    row-gap: 0;
  }
}

.page-header__title-en {
  font-family: "Roboto", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .page-header__title-en {
    font-size: 2.4rem;
  }
}

.page-header__title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .page-header__title-jp {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------
article
--------------------------------------------------- */
.c-article-section {
  padding-bottom: 24.2rem;
}
@media screen and (max-width: 767px) {
  .c-article-section {
    padding-bottom: 12rem;
  }
}

@media screen and (max-width: 767px) {
  .c-article-inner {
    padding-inline: 0;
  }
}

.c-article-body {
  padding-inline: 2rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .c-article-body {
    margin-top: 4.8rem;
  }
}

.c-article-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8.8rem;
}
@media screen and (max-width: 767px) {
  .c-article-contents {
    gap: 4.8rem;
  }
}
.c-article-contents .--taxonomy {
  gap: 8rem;
}

.c-article-content {
  width: 100%;
}

.c-article-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-article-list {
  margin-top: 7rem;
  padding-inline: 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5.2rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-article-list {
    margin-top: 3.6rem;
    padding-inline: 0;
    grid-template-columns: 1fr;
  }
}
.c-article-list.--taxonomy {
  grid-template-columns: repeat(1, 1fr);
}

.c-article-card {
  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;
  row-gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-article-card {
    row-gap: 0;
  }
}

.c-article-card__image {
  padding: 1rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-article-card__image {
    padding: 1rem;
    width: 22rem;
  }
}

.c-article-card__name {
  padding-block: 1rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.61;
  color: #000000;
  text-align: center;
}
.c-article-empty {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #000000;
}

.c-article-more {
  margin-top: 7rem;
  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) {
  .c-article-more {
    margin-top: 4.6rem;
  }
}

.c-article-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-article-tabs {
    margin-top: 3.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-article-tab {
  padding: 0.4rem 1.8rem 0.2rem;
  border: 1px solid #555555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.9rem;
     -moz-column-gap: 2.9rem;
          column-gap: 2.9rem;
}

.c-article-items {
  margin-top: 4.4rem;
  padding-inline: 2.4rem 1.4rem;
  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: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-article-items {
    margin-top: 3.6rem;
    padding-inline: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 3.6rem;
  }
}

.c-article-items__image {
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .c-article-items__image {
    width: 100%;
  }
}

.c-article-items__table {
  width: 64.4rem;
}
@media screen and (max-width: 767px) {
  .c-article-items__table {
    width: 100%;
  }
}
.c-article-items__table table {
  margin-inline: auto;
  border: none;
  border-collapse: collapse;
}
.c-article-items__table tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.7%;
     -moz-column-gap: 4.7%;
          column-gap: 4.7%;
}
@media screen and (max-width: 767px) {
  .c-article-items__table tbody tr {
    padding-bottom: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.6rem;
  }
}
.c-article-items__table tbody tr + tr {
  border-top: 1px solid #555555;
}
.c-article-items__table tbody th {
  padding-block: 2.4rem;
  width: 21.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-article-items__table tbody th {
    padding-block: 2.4rem 0;
    width: 100%;
  }
}
.c-article-items__table tbody td {
  padding-block: 2.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
@media screen and (max-width: 767px) {
  .c-article-items__table tbody td {
    padding-block: 0;
  }
}

.c-article-items__table-texts {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 0.8rem 1.6rem;
}
.c-article-items__table-texts dl {
  display: contents;
}

.index-main {
  padding-top: 13.1rem;
}
@media screen and (max-width: 767px) {
  .index-main {
    padding-top: 5rem;
  }
}

/* ------------------------------------------------
fv
--------------------------------------------------- */
.fv {
  z-index: 1;
  position: relative;
}

.fv__media {
  position: relative;
}

.fv__media-slide {
  width: 100%;
}

.fv__media-img {
  width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 144/64;
}
@media screen and (max-width: 767px) {
  .fv__media-img {
    aspect-ratio: 39/22;
  }
}
.fv__media-img img {
  height: 100%;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

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

.fv__overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.2);
  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;
}

.fv__inner {
  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;
}
.fv__logo {
  width: 39.5rem;
}
@media screen and (max-width: 767px) {
  .fv__logo {
    width: 17.6rem;
  }
}

/* ------------------------------------------------
products
--------------------------------------------------- */
.products {
  padding-top: 14.9rem;
}
@media screen and (max-width: 767px) {
  .products {
    padding-top: 5.2rem;
  }
}

.products__body {
  display: grid;
  grid-template-columns: 20.9rem 1fr;
}
@media screen and (max-width: 767px) {
  .products__body {
    grid-template-columns: 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.products__lead {
  padding-top: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 13.6rem;
}
@media screen and (max-width: 767px) {
  .products__lead {
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.products__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .products__cards {
    margin-top: 5.2rem;
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}

.products__card-body {
  z-index: 1;
  position: relative;
}

.products__card-image {
  position: relative;
  width: 100%;
}

.products__card-texts {
  position: absolute;
  inset: 0;
  padding-top: 6.3rem;
  width: 100%;
  height: 100%;
  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) {
  .products__card-texts {
    padding-top: 0;
    padding-bottom: 5.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.products__card-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-align: center;
}

.products__card.--door-box .products__card-texts {
  padding-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .products__card.--door-box .products__card-texts {
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
.products__card.--door-box .products__card-title {
  font-size: 1.6rem;
}
.products__card.--door-box .--company-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.09375;
  letter-spacing: normal;
}

.products__card-button {
  margin-top: 1.3rem;
  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) {
  .products__more-buttons {
    margin-top: 12.4rem;
    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) {
  .products__more-buttons.pc-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .products__more-buttons .c-button {
    padding-right: 0;
  }
}

/* ------------------------------------------------
menu-banner
--------------------------------------------------- */
.menu-banner {
  padding-top: 13rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .menu-banner {
    padding-top: 10.7rem;
    padding-bottom: 6.9rem;
  }
}

.menu-banner__body {
  margin-inline: auto;
  width: 105rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 9rem;
     -moz-column-gap: 9rem;
          column-gap: 9rem;
}
@media screen and (max-width: 767px) {
  .menu-banner__body {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 2.8rem;
  }
}

.menu-banner__item {
  display: block;
  width: 100%;
}

.menu-banner__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}

.menu-banner__img-wrap {
  z-index: 1;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 48/23;
}
@media screen and (max-width: 767px) {
  .menu-banner__img-wrap {
    aspect-ratio: 350/207;
  }
}

.menu-banner__image {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.menu-banner__image img {
  height: 100%;
}

.menu-banner__content {
  z-index: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.2);
  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: background-color 0.3s;
  transition: background-color 0.3s;
}

.menu-banner__link:hover {
  opacity: 1;
}
.menu-banner__link:hover .menu-banner__content {
  background-color: rgba(51, 51, 51, 0.4);
}
/* ------------------------------------------------
page-products
--------------------------------------------------- */
.p-products {
  padding-bottom: 17rem;
}
@media screen and (max-width: 767px) {
  .p-products {
    padding-bottom: 8rem;
  }
}

.p-products__lists {
  margin-inline: auto;
  width: 100%;
  max-width: 96.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.8rem;
}

.p-products__list {
  width: 100%;
}

.p-products__link {
  z-index: 1;
  position: relative;
  display: block;
  width: 100%;
}

.p-products__img {
  z-index: 1;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 964/361;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-products__img {
    aspect-ratio: 37/24;
  }
}
.p-products__img img {
  height: 100%;
}

.p-products__text-body {
  z-index: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.4);
  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: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-products__text-body {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-products__text-body.--door-box {
    padding-top: 5rem;
  }
}

.p-products__text-inner {
  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;
  row-gap: 2.8rem;
}

.p-products__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.09375;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-products__title {
    font-size: 2.4rem;
  }
}

.p-products__title.--door-box .--name {
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-products__title.--door-box .--name {
    font-size: 3.2rem;
    line-height: 1;
  }
}
.p-products__title.--door-box .--text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.p-products__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-products__link:hover {
  opacity: 1;
}
.p-products__link:hover .p-products__text-body {
  background-color: rgba(51, 51, 51, 0.6);
}
.p-products__link:hover .c-button-label {
  border-color: #333333;
  background-color: #333333;
}

/* ------------------------------------------------
page-company
--------------------------------------------------- */
/* ------------------------------------------------
共通
--------------------------------------------------- */
.company-list {
  margin-top: 8rem;
  margin-inline: auto;
  width: 100%;
  max-width: 96.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.company-list__item {
  padding-block: 4rem;
}
.company-list__item:not(:first-child) {
  border-top: 1px solid #555555;
}

.company-list__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem 5.3rem;
  font: inherit;
}
@media screen and (max-width: 767px) {
  .company-list__table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company-list__table:not(:first-child) {
  margin-top: 1.8em;
}

.company-list__title {
  width: 30rem;
  font: inherit;
}
.company-list__title p:not(:first-child) {
  margin-top: 1em;
}

.company-list__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font: inherit;
}
.company-list__text p:not(:first-child) {
  margin-top: 1em;
}

/* ------------------------------------------------
会社概要
--------------------------------------------------- */
/* ------------------------------------------------
沿革
--------------------------------------------------- */
.history .company-list__title p:not(:first-child) {
  margin-top: 1.8rem;
}
.history .company-list__text p:not(:first-child) {
  margin-top: 1.8rem;
}

/* ------------------------------------------------
page-sustainability
--------------------------------------------------- */
/* ------------------------------------------------
recycling
--------------------------------------------------- */
.recycling__list {
  margin-inline: auto;
  width: 100%;
  max-width: 73.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4.7rem;
}

.recycling__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.9rem;
     -moz-column-gap: 3.9rem;
          column-gap: 3.9rem;
}
@media screen and (max-width: 767px) {
  .recycling__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.6rem;
  }
}

.recycling__item-title {
  width: 18.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.4rem;
     -moz-column-gap: 1.4rem;
          column-gap: 1.4rem;
}
.recycling__item-title .--en {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #000000;
}
.recycling__item-title .--jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #000000;
}

.recycling__item-texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 0.3rem;
}

.recycling__item-strong-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.1rem;
     -moz-column-gap: 1.1rem;
          column-gap: 1.1rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.61;
  color: #000000;
}
.recycling__item-strong-text::before {
  content: "";
  width: 2.1rem;
  height: 1px;
  background-color: #000000;
}

.recycling__item-text {
  margin-top: 1.3rem;
  padding-left: 3.3rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .recycling__item-text {
    padding-left: 0;
  }
}

/* ------------------------------------------------
environment
--------------------------------------------------- */
.environment__list {
  margin-inline: auto;
  width: 100%;
  max-width: 96.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.9rem 9.2rem;
}
@media screen and (max-width: 767px) {
  .environment__list {
    grid-template-columns: 1fr;
  }
}

.environment__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;
  row-gap: 3.3rem;
}
@media screen and (max-width: 767px) {
  .environment__item {
    row-gap: 1.8rem;
  }
}

.environment__item-title {
  position: relative;
  padding-bottom: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #000000;
  text-align: center;
}
.environment__item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.1rem;
  height: 1px;
  background-color: #000000;
}

.environment__item-text {
  color: #000000;
  text-align: center;
}

/* ------------------------------------------------
green-purchase
--------------------------------------------------- */
.green-purchase__texts {
  margin-inline: auto;
  width: 100%;
  max-width: 103rem;
}

/* ------------------------------------------------
page-privacy
--------------------------------------------------- */
.p-privacy__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.61;
  color: #000000;
}

.p-privacy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.8rem;
}

.p-privacy__item-title {
  padding-block: 1.6rem;
  width: 100%;
  border-bottom: 1px solid #555555;
}
.p-privacy__item-title h2 {
  font: inherit;
}

.p-privacy__item-text > *:not(:first-child) {
  margin-top: 1em;
}
.p-privacy__item-text p,
.p-privacy__item-text ol,
.p-privacy__item-text ul,
.p-privacy__item-text li {
  font: inherit;
}
.p-privacy__item-text ol {
  counter-reset: listnum;
}
.p-privacy__item-text ol > li {
  position: relative;
  padding-left: 2.4rem;
}
.p-privacy__item-text ol > li::before {
  counter-increment: listnum;
  content: counter(listnum) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.p-privacy__item-text ul > li {
  padding-left: 2.4rem;
  position: relative;
}
.p-privacy__item-text ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #000000;
  border-radius: 50%;
}
.p-privacy__item-text address {
  display: block;
  font: inherit;
}
.p-privacy__item-text a {
  color: inherit;
}
.p-privacy__item-text a:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-privacy__item-text a {
    text-decoration: underline;
  }
  .p-privacy__item-text a:hover {
    opacity: 0.8;
  }
}

/* ------------------------------------------------
page-contact
--------------------------------------------------- */
.form__field {
  padding-block: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem 3rem;
}
.form__field:not(:first-child) {
  border-top: 1px solid #555555;
}
@media screen and (max-width: 767px) {
  .form__field {
    padding-block: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form__label {
  padding-top: 1.1rem;
  width: 22rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .form__label {
    width: 100%;
  }
}

.form__label label {
  font: inherit;
  color: #000000;
}

.badge-required {
  margin-left: 0.8rem;
  padding: 0.1rem 2rem 0;
  display: inline-block;
  background: #555555;
  border-radius: 10rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.61;
  color: #ffffff;
}

.form__data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 68.9%;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .form__data {
    width: 100%;
  }
}

.form__data input,
.form__data textarea {
  padding: 1.1rem 2rem;
  width: 100%;
  background-color: #F0F0F0;
  border: none;
  display: block;
  font: inherit;
  color: #000000;
}

.form__data input::-webkit-input-placeholder, .form__data textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.17);
}

.form__data input::-moz-placeholder, .form__data textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.17);
}

.form__data input:-ms-input-placeholder, .form__data textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.17);
}

.form__data input::-ms-input-placeholder, .form__data textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.17);
}

.form__data input::placeholder,
.form__data textarea::placeholder {
  color: rgba(0, 0, 0, 0.17);
}

.form__data textarea {
  height: 14rem;
  resize: none;
  overflow-wrap: break-word;
}

.form__privacy {
  margin-top: 11.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form__privacy label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.form__privacy .wpcf7-list-item-label {
  position: relative;
  padding-left: 4.3rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font: inherit;
  color: #000000;
}

.form__privacy .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.form__privacy .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 0.4rem;
  left: 0.5rem;
  width: 1.7rem;
  height: auto;
  aspect-ratio: 23/15;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #000000;
  border-left: 2px solid #000000;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy-link {
  text-decoration: underline;
  color: #000000;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid-tip,
.js-error {
  margin-top: 0.4rem;
  color: #e00;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip,
  .js-error {
    font-size: 1.4rem;
  }
}

.wpcf7-spinner {
  position: absolute;
  bottom: 0;
  right: 0;
}

.form__actions {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem 5rem;
}
@media screen and (max-width: 767px) {
  .form__actions {
    gap: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .form__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ------------------------------------------------
Confirm
--------------------------------------------------- */
.confirm,
.wpcf7-response-output,
.confirm .wpcf7-spinner {
  display: none;
}

.confirm {
  padding-top: 2rem;
}

.confirm .form__label {
  padding-top: 0;
}

.btn-confirm-back {
  display: block;
  width: 100%;
}

.confirm-back-button {
  display: block;
  width: 100%;
}

/* ------------------------------------------------
page-thanks
--------------------------------------------------- */
.p-thanks__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}

.p-thanks__text {
  margin-top: 4rem;
  text-align: center;
}

.p-thanks__button-wrap {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ------------------------------------------------
page-error
--------------------------------------------------- */
.p-error__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}

.p-error__text {
  margin-top: 4rem;
  text-align: center;
}

.p-error__button-wrap {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-mt-80 {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .u-mt-80 {
    margin-top: 4.8rem;
  }
}

.u-mt-102 {
  margin-top: 10.2rem;
}
@media screen and (max-width: 767px) {
  .u-mt-102 {
    margin-top: 4.8rem;
  }
}

.u-pt-80 {
  padding-top: 8rem;
}

.u-pb-170 {
  padding-bottom: 17rem;
}
@media screen and (max-width: 767px) {
  .u-pb-170 {
    padding-bottom: 8rem;
  }
}/*# sourceMappingURL=style.css.map */