@charset "UTF-8";
/* ---------------- */
@import url("https://fonts.googleapis.com/css2?family=Teko&display=swap");
/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          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: 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;
  }
}
html {
  font-size: 10px;
}
@media (max-width: 1130px) {
  html {
    font-size: 0.8849557522vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

body.no-scroll {
  overflow: hidden;
}

#wrapper {
  position: relative;
}

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

@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* --layout-------------- */
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1130px;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 56rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* l-header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .l-header {
    position: sticky;
  }
}

/* l-drawer-nav */
.l-drawer-nav {
  position: fixed;
  top: -100%; /* 初期状態では画面の外に配置 */
  left: 0;
  z-index: 999;
}

/* l-page-top */
.l-page-top {
  position: fixed;
  right: 10rem;
  bottom: 2.8rem;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .l-page-top {
    right: initial;
    left: 50%;
    bottom: 2rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* --component-------------- */
/* c-hamburger */
.c-hamburger {
  display: grid;
  grid-template-columns: 1fr 1.6rem;
  -webkit-column-gap: 1.1rem;
     -moz-column-gap: 1.1rem;
          column-gap: 1.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 1.4rem 1.5rem 2rem;
  background-color: #9E031B;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    padding: 1.4rem;
  }
}

.c-hamburger__text {
  max-width: 8rem;
  width: 100%;
}

.c-hamburger__line span {
  position: relative;
  display: block;
  height: 0.2rem;
  width: 100%;
  background: #fff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.c-hamburger__line span:nth-child(1) {
  top: 0;
}

.c-hamburger__line span:nth-child(2) {
  margin: 0.4rem 0;
}

.c-hamburger__line span:nth-child(3) {
  top: 0;
}

/*is-openクラスがついたとき*/
.c-hamburger.is-open .c-hamburger__line span:nth-child(1) {
  top: 0.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger.is-open .c-hamburger__line span:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.c-hamburger.is-open .c-hamburger__line span:nth-child(3) {
  top: -0.7rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* c-title */
.c-title__inner {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.c-title__inner::after {
  content: "";
  display: block;
  height: 1.4rem;
  margin-top: 0.8rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.c-title__inner--about::after {
  width: 6.6rem;
  background-image: url(../images/svg/text_about.svg);
}

.c-title__inner--business::after {
  width: 8.4rem;
  background-image: url(../images/svg/text_business.svg);
}

.c-title__inner--faq::after {
  width: 7.2rem;
  background-image: url(../images/svg/text_q-and-a.svg);
}

.c-title__inner--introduction::after {
  width: 12.9rem;
  background-image: url(../images/svg/text_introduction.svg);
}

.c-title__inner--news::after {
  width: 5.9rem;
  background-image: url(../images/svg/text_news.svg);
}

.c-title__inner--product::after {
  width: 7.3rem;
  background-image: url(../images/svg/text_product.svg);
}

.c-title__inner--recruit::after {
  width: 6.6rem;
  background-image: url(../images/svg/text_recruit.svg);
}

.c-title__inner--catalog::after {
  width: 6.8rem;
  background-image: url(../images/svg/text_catalog-red.svg);
}

.c-title__inner--contact::after {
  width: 6.9rem;
  background-image: url(../images/svg/text_contact-red.svg);
}

.c-title__inner--privacy::after {
  width: 11.3rem;
  background-image: url(../images/svg/text_privacy.svg);
}

/* --center */
.c-title--center {
  text-align: center;
}
.c-title--center .c-title__inner::after {
  margin-left: auto;
  margin-right: auto;
}

/* --center-left */
.c-title--center-left {
  text-align: center;
}
.c-title--center-left .c-title__inner::after {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .c-title--center-left {
    text-align: left;
  }
  .c-title--center-left .c-title__inner::after {
    margin-left: initial;
  }
}

/* c-title-nav */
.c-title-nav__inner {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.c-title-nav__inner::after {
  content: "";
  display: block;
  height: 1.2rem;
  margin-top: 0.8rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.c-title-nav--center .c-title-nav__inner::after {
  margin-left: auto;
  margin-right: auto;
}

.c-title-nav__inner--product::after {
  width: 7.3rem;
  background-image: url(../images/svg/text_product.svg);
}

.c-title-nav__inner--about::after {
  width: 5.5rem;
  background-image: url(../images/svg/text_about.svg);
}

.c-title-nav__inner--introduction::after {
  width: 10.8rem;
  background-image: url(../images/svg/text_introduction.svg);
}

.c-title-nav__inner--recruit::after {
  width: 6.6rem;
  background-image: url(../images/svg/text_recruit.svg);
}

.c-title-nav__inner--business::after {
  width: 7.6rem;
  background-image: url(../images/svg/text_business.svg);
}

.c-title-nav__inner--faq::after {
  width: 6rem;
  background-image: url(../images/svg/text_q-and-a.svg);
}

/* c-title-line */
.c-title-line {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 1.6rem 3.2rem;
  border-left: 10px solid #9E031B;
  background-color: #f3f3f3;
}
@media screen and (max-width: 767px) {
  .c-title-line {
    font-size: 2rem;
    padding: 1rem 1.2rem;
  }
}

/* c-title-square */
.c-title-square {
  display: grid;
  grid-template-columns: 1rem 1fr;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: #9E031B;
}
@media screen and (max-width: 767px) {
  .c-title-square {
    -webkit-column-gap: 1.2rem;
       -moz-column-gap: 1.2rem;
            column-gap: 1.2rem;
    font-size: 2rem;
  }
}

.c-title-square--center {
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-title-square--sp-center {
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-title-square::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: #9E031B;
}

/* c-title-square02 */
.c-title-square02 {
  display: grid;
  grid-template-columns: 3.7rem 1fr;
  -webkit-column-gap: 1.4rem;
     -moz-column-gap: 1.4rem;
          column-gap: 1.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-title-square02 {
    grid-template-columns: 2.7rem 1fr;
    font-size: 1.8rem;
  }
}

.c-title-square02--center {
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-title-square02--sp-center {
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-title-square02::before {
  content: "";
  width: 3.7rem;
  height: 4rem;
  background-image: url(../images/svg/img_section-title.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .c-title-square02::before {
    width: 2.7rem;
    height: 2.9rem;
  }
}

/* c-btn-arrow */
.c-btn-arrow {
  position: relative;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr 1.5rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  max-width: 20rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
  font-size: 1.8rem;
  line-height: 1;
}

.c-btn-arrow__arrow {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #000;
}

.c-btn-arrow__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.78rem;
  height: 0.65rem;
  background-image: url(../images/svg/icon_arrow-right-white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* c-btn-arrow--white */
.c-btn-arrow--white {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.c-btn-arrow--white .c-btn-arrow__arrow {
  background-color: #fff;
}
.c-btn-arrow--white .c-btn-arrow__arrow::after {
  background-image: url(../images/svg/icon_arrow-right-black.svg);
}

/* c-btn-arrow--red */
.c-btn-arrow--red {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.c-btn-arrow--red .c-btn-arrow__arrow {
  background-color: #fff;
}
.c-btn-arrow--red .c-btn-arrow__arrow::after {
  background-image: url(../images/svg/icon_arrow-right-red.svg);
}

/* c-btn-arrow--more */
.c-btn-arrow--more {
  max-width: 10rem;
  padding-bottom: 0.5rem;
}
.c-btn-arrow--more img {
  max-width: 4.7rem;
  width: 100%;
  height: 100%;
}

/* c-btn-arrow--s */
.c-btn-arrow--s {
  max-width: 10rem;
  padding-bottom: 0.5rem;
  font-size: clamp(10px, 1.2rem, 1.6vw);
}

/* c-btn-arrow--l */
.c-btn-arrow--l {
  max-width: 35rem;
}

/* c-btn-box */
.c-btn-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  max-width: 25rem;
  padding: 0.7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
}

.c-btn-box__arrow {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
}

.c-btn-box__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.78rem;
  height: 0.65rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* c-btn-box--black */
.c-btn-box--black {
  background-color: #000;
}
.c-btn-box--black .c-btn-box__arrow::after {
  background-image: url(../images/svg/icon_arrow-right-black.svg);
}

/* c-btn-box--red */
.c-btn-box--red {
  background-color: #9E031B;
}
.c-btn-box--red .c-btn-box__arrow::after {
  background-image: url(../images/svg/icon_arrow-right-red.svg);
}

/* c-bread-nav */
.c-bread-nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
}

/* ---------------- */
/* p-header */
.p-header {
  width: 100%;
}

.p-header__inner {
  display: grid;
  grid-template-columns: 21.5rem 1fr 14rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    grid-template-columns: 23.5rem 14rem;
    -webkit-column-gap: initial;
       -moz-column-gap: initial;
            column-gap: initial;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: #fff;
    height: 4.2rem;
  }
}

.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding-left: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    height: initial;
    padding-left: 3.1rem;
  }
}

.p-header__logo a:hover {
  opacity: 1;
}

.p-header__logo img {
  max-width: 17.4rem;
}

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

/* p-pc-nav */
.p-pc-nav.is-open {
  opacity: 0;
}

.p-pc-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-pc-nav__item {
  padding: 1rem 1.5rem;
}

.p-pc-nav__item a {
  color: #fff;
  font-size: 1.6rem;
}

/* p-drawer-nav */
.p-drawer-nav {
  width: 100%;
  height: 100vh;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease; /* 上方向にスライドするアニメーション */
  background: linear-gradient(127.37deg, #FFFFFF 24.94%, #D2D2D2 99.25%);
  padding: 11.2rem 10rem 6.3rem;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .p-drawer-nav {
    padding: 8.8rem 3rem 5rem;
  }
}

.p-drawer-nav__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, -webkit-max-content));
  grid-template-columns: repeat(auto-fit, minmax(28rem, max-content));
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-drawer-nav__wrap {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-drawer-nav__item {
  padding-bottom: 2rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-drawer-nav__item {
    padding: 1.5rem 2rem;
  }
}

.p-drawer-nav__item:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-drawer-nav__item:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer-nav__item:first-child {
    border-top: 1px solid #000;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer-nav__item-title {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer-nav__item-title::before {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .p-drawer-nav__item-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.4rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.78rem;
    height: 0.65rem;
    background-image: url(../images/svg/icon_arrow-right-white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.p-drawer-nav__item-title.is-open::after {
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
  top: 43%;
  right: 0.6rem;
}

.p-drawer-nav__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.p-drawer-nav__accordion-content {
  display: none;
}

.p-drawer-nav__bottom-wrap {
  margin-top: 14.2rem;
}

/* p-news-items */
.p-news-items {
  border-top: 1px solid #000;
}

.p-news-items--border0 {
  border-top: 0;
}

.p-news-items__item {
  border-bottom: 1px solid #000;
}

/* p-news-item */
.p-news-item {
  position: relative;
  padding: 1.5rem 5rem 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-news-item {
    padding: 1.5rem 4.5rem 1rem 1rem;
  }
}

.p-news-item--side {
  padding: 1.5rem 3rem 1.3rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-news-item--side {
    padding: 1.5rem 4.5rem 1rem 1rem;
  }
}

.p-news-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .p-news-item::before {
    right: 1rem;
  }
}

.p-news-item--side::before {
  right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-item--side::before {
    right: 1rem;
  }
}

.p-news-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.35rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.78rem;
  height: 0.65rem;
  background-image: url(../images/svg/icon_arrow-right-white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-news-item::after {
    right: 1.35rem;
  }
}

.p-news-item--side::after {
  right: 1.85rem;
}
@media screen and (max-width: 767px) {
  .p-news-item--side::after {
    right: 1.35rem;
  }
}

.p-news-item__date {
  font-family: "Teko", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #9E031B;
}
@media screen and (max-width: 767px) {
  .p-news-item__date {
    font-size: clamp(10px, 1rem, 1.6vw);
  }
}

.p-news-item__title {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-news-item__title {
    font-size: clamp(10px, 1.2rem, 1.6vw);
  }
}

.p-news-item--no-arrow::before {
  display: none;
}

.p-news-item--no-arrow::after {
  display: none;
}

/* p-cta-contact */
.p-cta-contact {
  position: relative;
  padding: 12rem 1rem;
  background-image: url(../images/img_cta-contact.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-cta-contact {
    padding: 16rem 3.2rem;
    background-image: url(../images/img_cta-contact-sp.jpg);
  }
}

.p-cta-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.p-cta-contact__title {
  position: relative;
  max-width: 25.2rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}

.p-cta-contact__text {
  position: relative;
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-cta-contact__text {
    margin-top: 1rem;
  }
}

.p-cta-contact__btn {
  position: relative;
  margin-top: 4rem;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}

/* p-company-card */
.p-company-card {
  padding: 2.5rem 2rem 2.5rem 3rem;
  border: 1px solid #000;
  border-radius: 1rem;
}

.p-company-card__wrap {
  display: grid;
  grid-template: "logo image" -webkit-max-content "link image" 1fr/1fr 12.8rem;
  grid-template: "logo image" max-content "link image" 1fr/1fr 12.8rem;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
  row-gap: 0.6rem;
}

.p-company-card__logo {
  grid-area: logo;
  max-width: 12rem;
  width: 100%;
}

.p-company-card__link {
  grid-area: link;
  font-size: 1.4rem;
  font-weight: bold;
}

.p-company-card__link a {
  padding: 0.5rem;
  margin-left: -0.5rem;
  text-decoration: underline;
}

.p-company-card__link::before {
  content: "";
  display: block;
  width: 6.5rem;
  height: 1.2rem;
  background-image: url(../images/svg/text_company.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-company-card__image {
  grid-area: image;
  max-width: 12.8rem;
  width: 100%;
}

/* p-page-title */
.p-page-title {
  padding-top: 10.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-page-title {
    padding-top: 4.5rem;
  }
}

.p-page-title__bread-nav {
  margin-top: 1.8rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-page-title__bread-nav {
    margin-top: 2.3rem;
  }
}

/* p-footer */
.p-footer {
  padding-top: 8rem;
  padding-bottom: 2.3rem;
  background-color: #f3f3f3;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-bottom: 5rem;
  }
}

.p-footer__logo {
  max-width: 17.4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-footer__wrap {
  display: grid;
  grid-template-areas: "menu company" "sub-menu company";
  grid-template-columns: 1fr 31rem;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  -webkit-column-gap: 9.8rem;
     -moz-column-gap: 9.8rem;
          column-gap: 9.8rem;
  row-gap: 0.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    grid-template-areas: "menu sub-menu" "company company";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content;
    -webkit-column-gap: 0rem;
       -moz-column-gap: 0rem;
            column-gap: 0rem;
    row-gap: 6rem;
    max-width: 35rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
  }
}

.p-footer__menu {
  grid-area: menu;
}

.p-footer__menu-items {
  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;
  margin-left: -1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__menu-items {
    -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;
    margin-left: 2rem;
  }
}

.p-footer__menu-item a {
  display: inline-block;
  padding: 1rem;
  font-size: 1.4rem;
}

.p-footer__sub-menu {
  grid-area: sub-menu;
}

.p-footer__sub-menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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;
  margin-left: -1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sub-menu-items {
    -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;
    margin-left: 1rem;
  }
}

.p-footer__sub-menu-item a {
  display: inline-block;
  padding: 1rem;
  font-size: clamp(10px, 1.2rem, 1.6vw);
}

.p-footer__copy {
  max-width: 19.4rem;
  width: 100%;
  margin-top: 10.4rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 17rem;
  }
}

/* p-page-top */
.p-page-top a {
  position: relative;
  display: block;
  max-width: 10.2rem;
  padding: 1rem 1.6rem;
  border-radius: 0.3rem;
  background-color: #d9d9d9;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.p-page-top a::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.05rem;
  height: 1.05rem;
  background-image: url(../images/svg/icon_arrow-up-red.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-page-top a img {
  display: block;
  width: 100%;
  padding-top: 1.5rem;
}

/* p-form */
.p-form {
  max-width: 45rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-form__items {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}

.p-form__item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #000;
}

.p-form__item--none {
  display: none;
}

.p-form__label {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.p-form__badge {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  background-color: #000;
  color: #fff;
}

.p-form__badge--required {
  background-color: #9E031B;
}

.p-form__input input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #000;
  font-size: 1.6rem;
}

.p-form__input textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #000;
  font-size: 1.6rem;
}

.p-form__input input::-webkit-input-placeholder, .p-form__input textarea::-webkit-input-placeholder {
  color: #acacac;
}

.p-form__input input::-moz-placeholder, .p-form__input textarea::-moz-placeholder {
  color: #acacac;
}

.p-form__input input:-ms-input-placeholder, .p-form__input textarea:-ms-input-placeholder {
  color: #acacac;
}

.p-form__input input::-ms-input-placeholder, .p-form__input textarea::-ms-input-placeholder {
  color: #acacac;
}

.p-form__input input::placeholder,
.p-form__input textarea::placeholder {
  color: #acacac;
}

.p-form__text input {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border: none;
  background-color: initial;
  text-align: center;
  width: 100%;
}

.p-form__policy {
  margin-top: 4rem;
  font-size: 1.6rem;
  text-align: center;
}

.p-form__policy a {
  text-decoration: underline;
}

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

.p-form__btn input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20rem;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #9E031B;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* form-confirm */
.p-form--confirm .p-form__input p {
  padding: 1rem 2rem;
  font-size: 1.6rem;
}

/* --top-------------- */
/* p-top */
.p-top__bg-wrap {
  padding-top: 18rem;
  padding-bottom: 9.8rem;
  background: linear-gradient(-18deg, #D2D2D2 0%, #fff 15%, #fff 85%, #D2D2D2 100%);
}
@media screen and (max-width: 767px) {
  .p-top__bg-wrap {
    padding-top: 10rem;
    padding-bottom: 14.3rem;
  }
}

.p-top__business {
  margin-top: 18rem;
}
@media screen and (max-width: 767px) {
  .p-top__business {
    margin-top: 10rem;
  }
}

.p-top__catalog {
  margin-top: 17.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__catalog {
    margin-top: 13rem;
  }
}

.p-top__faq {
  margin-top: 18rem;
}
@media screen and (max-width: 767px) {
  .p-top__faq {
    margin-top: 12rem;
  }
}

.p-top__introduction {
  margin-top: 20rem;
}
@media screen and (max-width: 767px) {
  .p-top__introduction {
    margin-top: 12rem;
  }
}

.p-top__news {
  margin-top: 14.5rem;
}
/* p-top-mv */
.p-top-mv__h1 {
  display: none;
}

.p-top-mv__swiper {
  position: relative;
}
.p-top-mv__swiper .p-top-mv__swiper-img {
  position: relative;
}
.p-top-mv__swiper .p-top-mv__swiper-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-top-mv__swiper .swiper-slide-active .p-top-mv__swiper-img,
.p-top-mv__swiper .swiper-slide-duplicate-active .p-top-mv__swiper-img,
.p-top-mv__swiper .swiper-slide-prev .p-top-mv__swiper-img {
  width: 100%;
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}
.p-top-mv__swiper .swiper-slide img {
  aspect-ratio: 1280/678;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-mv__swiper .swiper-slide img {
    aspect-ratio: 375/678;
  }
}
.p-top-mv__swiper .swiper-pagination {
  position: absolute;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  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;
  row-gap: 0.7rem;
  width: 0.3rem;
}
.p-top-mv__swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.3rem;
  height: 5rem;
  background-color: #fff;
  opacity: 0.3;
  border-radius: initial;
}
.p-top-mv__swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.p-top-mv__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 60rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__catch {
    width: 74.66666%;
    max-width: 40rem;
  }
}

.p-top-mv__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top-mv__title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 7rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-mv__title {
    font-size: 3.2rem;
  }
}

.p-top-mv__title-animation {
  width: 16rem;
  height: 9rem;
  overflow: hidden;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-top-mv__title-animation {
    width: 11.2rem;
    height: 6rem;
  }
}

.p-top-mv__title-animation-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-mv__title-animation-text {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 8rem;
  color: #fff;
  line-height: 1;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .p-top-mv__title-animation-text {
    font-size: 5.6rem;
  }
}

.p-top-mv__text {
  margin-top: 3rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-mv__text {
    margin-top: 5rem;
    font-size: clamp(10px, 1.2rem, 1.6vw);
    text-align: left;
  }
}

/* p-top-about */
.p-top-about__inner {
  display: grid;
  grid-template: "images title" -webkit-max-content "images text" -webkit-max-content "images btn" 1fr/54rem 50rem;
  grid-template: "images title" max-content "images text" max-content "images btn" 1fr/54rem 50rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    grid-template: "title" "images" "text" "btn"/100%;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.p-top-about__title {
  grid-area: title;
}

.p-top-about__image-wrap {
  grid-area: images;
}
@media screen and (max-width: 767px) {
  .p-top-about__image-wrap {
    margin-top: 3rem;
  }
}

.p-top-about__image-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.p-top-about__img img {
  aspect-ratio: 266/150;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-about__img img {
    aspect-ratio: 335/189;
  }
}

.p-top-about__text {
  grid-area: text;
  margin-top: 3rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    font-size: 1.4rem;
  }
}

.p-top-about__btn-wrap {
  grid-area: btn;
  display: grid;
  grid-template-columns: repeat(2, 20rem);
  grid-template-rows: -webkit-min-content;
  grid-template-rows: min-content;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__btn-wrap {
    grid-template-columns: repeat(2, 15.5rem);
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3rem;
  }
}

/* p-top-news */
.p-top-news__inner {
  max-width: 60rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    max-width: 56rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

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

.p-news-items__item {
  display: block;
}

.p-top-news__btn {
  max-width: 20rem;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-top-news__btn {
    margin-right: initial;
  }
}

/* --product-------------- */
/* p-page-product */
.p-page-product__content {
  position: relative;
  display: grid;
  grid-template-columns: 13.5rem 1fr;
  -webkit-column-gap: 10.5rem;
     -moz-column-gap: 10.5rem;
          column-gap: 10.5rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-page-product__content {
    grid-template-columns: 1fr;
    padding-bottom: 7.5rem;
  }
}

.p-page-product__side {
  position: sticky;
  top: 4.2rem;
  left: 0;
  padding-top: 5.3rem;
}

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

.p-page-product__main {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12rem;
  padding-top: 4rem;
}

.p-page-product__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-page-product__list {
    row-gap: 5rem;
  }
}

.p-page-product__bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* p-page-product-side-menu */
.p-page-product-side-menu {
  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;
}

.p-page-product-side-menu__item {
  width: 13.5rem;
  border-bottom: 1px solid #000;
}

.p-page-product-side-menu__item a {
  position: relative;
  display: block;
  padding-top: 1.3rem;
  padding-bottom: 0.4rem;
  font-size: clamp(10px, 1.1rem, 1.6vw);
}

.p-page-product-side-menu__item a::before {
  content: "";
  position: absolute;
  bottom: 0.7rem;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #000;
  opacity: 0;
}

.p-page-product-side-menu__item a::after {
  content: "";
  position: absolute;
  bottom: 1.1rem;
  right: 0.3rem;
  width: 0.788rem;
  height: 0.656rem;
  background-image: url(../images/svg/icon_arrow-right-white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}

.p-page-product-side-menu__item a.is-show::before,
.p-page-product-side-menu__item a.is-show::after {
  opacity: 1;
}

/* p-page-product-item */
.p-page-product-item {
  display: grid;
  grid-template-columns: 50% 1fr;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-page-product-item {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}

.p-page-product-item__image {
  width: 100%;
}

.p-page-product-item__image img {
  aspect-ratio: 420/230;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-page-product-item__image img {
    aspect-ratio: 335/183;
  }
}

.p-page-product-item__body {
  margin-top: auto;
  padding-bottom: 1.7rem;
}
@media screen and (max-width: 767px) {
  .p-page-product-item__body {
    padding-bottom: 0rem;
  }
}

.p-page-product-item__btn {
  margin-top: 3rem;
  max-width: 20rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-page-product-item__btn {
    margin-top: 2rem;
    margin-left: auto;
  }
}

/* p-page-product-bottom-menu */
.p-page-product-bottom-menu__btn {
  position: relative;
  width: 100%;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}

.p-page-product-bottom-menu__btn.is-open {
  background-color: #9E031B;
}

.p-page-product-bottom-menu__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
}

.p-page-product-bottom-menu__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.78rem;
  height: 0.65rem;
  background-image: url(../images/svg/icon_arrow-right-black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-page-product-bottom-menu__btn.is-open::after {
  background-image: url(../images/svg/icon_arrow-right-red.svg);
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.p-page-product-bottom-menu__drawer {
  position: absolute;
  padding: 2.3rem 2rem 3rem;
  background-color: #d9d9d9;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.p-page-product-bottom-menu__close {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.p-page-product-bottom-menu__close::before,
.p-page-product-bottom-menu__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.1rem;
  height: 1px;
  background-color: #000;
}

.p-page-product-bottom-menu__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-page-product-bottom-menu__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-page-product-bottom-menu__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: 1rem;
  max-width: 25rem;
  width: 100%;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.p-page-product-bottom-menu__item a {
  display: block;
  padding: 0.4rem 0.7rem;
  background-color: #9E031B;
  font-size: 1.4rem;
  color: #fff;
}

/* p-single-product */
.p-single-product__content {
  padding-top: 4rem;
}

.p-single-product__title {
  font-size: 3.2rem;
  font-weight: initial;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single-product__title {
    font-size: 2.4rem;
  }
}

.p-single-product__image {
  margin-top: 4rem;
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-single-product__image {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
}

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

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

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

.p-single-product__swiper-wrap {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-single-product__swiper-wrap {
    margin-top: 10rem;
  }
}

.p-single-product__category-list-wrap {
  max-width: 84rem;
  width: 100%;
  margin-top: 12rem;
  margin-left: auto;
  margin-right: auto;
}

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

.p-single-product__search {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-single-product__search {
    margin-top: 12.6rem;
  }
}

/* --about-------------- */
/* p-page-about */
.p-page-about__content {
  position: relative;
  display: grid;
  grid-template-columns: 13.5rem 1fr;
  -webkit-column-gap: 10.5rem;
     -moz-column-gap: 10.5rem;
          column-gap: 10.5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-page-about__content {
    grid-template-columns: 1fr;
    padding-bottom: 20rem;
  }
}

.p-page-about__menu {
  position: sticky;
  top: 4.2rem;
  left: 0;
  padding-top: 5.3rem;
}
@media screen and (max-width: 767px) {
  .p-page-about__menu {
    padding-top: 4rem;
  }
}

.p-page-about__main {
  padding-top: 4rem;
}

.p-page-about__mission {
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .p-page-about__mission {
    margin-top: 4.2rem;
  }
}

.p-page-about__about {
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .p-page-about__about {
    margin-top: 8rem;
  }
}

/* p-page-about-side-menu */
.p-page-about-side-menu {
  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) {
  .p-page-about-side-menu__items {
    max-width: 13.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-page-about-side-menu__item {
  width: 13.5rem;
  border-bottom: 1px solid #000;
}

.p-page-about-side-menu__item a {
  position: relative;
  display: block;
  padding-top: 1.3rem;
  padding-bottom: 0.4rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-page-about-side-menu__item a {
    padding-top: 1rem;
    padding-bottom: 0.3rem;
  }
}

.p-page-about-side-menu__item a::before {
  content: "";
  position: absolute;
  bottom: 0.7rem;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #000;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-page-about-side-menu__item a::before {
    bottom: 0.5rem;
  }
}

.p-page-about-side-menu__item a::after {
  content: "";
  position: absolute;
  bottom: 1.2rem;
  right: 0.3rem;
  width: 0.788rem;
  height: 0.656rem;
  background-image: url(../images/svg/icon_arrow-right-white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-page-about-side-menu__item a::after {
    bottom: 0.9rem;
    right: 0.4rem;
  }
}

.p-page-about-side-menu__item a.is-show::before,
.p-page-about-side-menu__item a.is-show::after {
  opacity: 1;
}

/* p-page-about-greeting */
.p-page-about-greeting__content {
  display: grid;
  grid-template-columns: 32rem 1fr;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-page-about-greeting__content {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
    margin-top: 3rem;
  }
}

.p-page-about-greeting__img-wrap {
  position: relative;
  z-index: 2;
}

.p-page-about-greeting__img-wrap::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  width: 100%;
  height: 100%;
  background-color: #9E031B;
  z-index: -1;
}

.p-page-about-greeting__img-wrap img {
  aspect-ratio: 320/250;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-about-greeting__text {
  font-size: 1.6rem;
  line-height: 1.75;
}

.p-page-about-greeting__name {
  margin-top: 2.7rem;
  font-size: clamp(10px, 1.2rem, 1.6vw);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-page-about-greeting__name {
    margin-top: 1rem;
  }
}

/* p-page-about-mission */
.p-page-about-mission__content {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-page-about-mission__content {
    row-gap: 5rem;
  }
}

.p-page-about-mission__item {
  display: grid;
  grid-template-columns: 11.6rem 1fr;
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  .p-page-about-mission__item {
    grid-template-columns: 1fr;
    row-gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-page-about-mission__item-heading {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-about-mission__item-heading {
    text-align: center;
  }
}

.p-page-about-mission__item-text {
  margin-top: 1.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-page-about-mission__item-text {
    font-size: 1.4rem;
  }
}

/* p-page-about-about */
.p-page-about-about__content {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  margin-top: 3rem;
}

.p-page-about-about__item {
  display: grid;
  grid-template-columns: 8rem 1fr;
  -webkit-column-gap: 5.5rem;
     -moz-column-gap: 5.5rem;
          column-gap: 5.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-bottom: 1px solid #000;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-about-about__item {
    -webkit-column-gap: 1.8rem;
       -moz-column-gap: 1.8rem;
            column-gap: 1.8rem;
  }
}

.p-page-about-about__item-heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: #9E031B;
}

.p-page-about-about__item-text {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-page-about-about__item-text {
    font-size: 1.4rem;
  }
}

/* --news-------------- */
/* p-archive-news */
.p-archive-news__content {
  position: relative;
  display: grid;
  grid-template: "main side" auto/1fr 25rem;
  -webkit-column-gap: 6.5rem;
     -moz-column-gap: 6.5rem;
          column-gap: 6.5rem;
  padding-top: 8rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-archive-news__content {
    grid-template: "main" "side"/1fr;
    row-gap: 8rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-archive-news__side {
  grid-area: side;
}

.p-archive-news__side-wrap {
  position: sticky;
  top: 8rem;
  left: 0;
}

.p-archive-news__side-list {
  margin-top: 3rem;
}

.p-archive-news__main {
  grid-area: main;
}

/* p-single-news */
.p-single-news__content {
  position: relative;
  display: grid;
  grid-template: "main side" auto/1fr 25rem;
  -webkit-column-gap: 6.5rem;
     -moz-column-gap: 6.5rem;
          column-gap: 6.5rem;
  padding-top: 8rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-single-news__content {
    grid-template: "main" "side"/1fr;
    row-gap: 8rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-single-news__side {
  grid-area: side;
}

.p-single-news__side-wrap {
  position: sticky;
  top: 8rem;
  left: 0;
}

.p-single-news__side-list {
  margin-top: 3rem;
}

.p-single-news__main {
  grid-area: main;
}

.p-single-news__title {
  font-size: 2rem;
  font-weight: bold;
}

.p-single-news__date {
  margin-top: 1rem;
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #9E031B;
}

.p-single-news__body {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.8;
}

.p-single-news__body *:first-child {
  margin-top: 0;
}

.p-single-news__body h2 {
  margin-top: 3rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.p-single-news__body p {
  margin-top: 2rem;
}

/* --contact-------------- */
/* p-page-contact */
.p-page-contact__content {
  padding-top: 8rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-page-contact__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-page-contact__content-wrap {
  max-width: 80rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 2rem;
  background-color: #f3f3f3;
}

.p-page-contact__thanks-text {
  font-size: 2rem;
  text-align: center;
}

.p-page-contact__thanks-text:not(:first-child) {
  margin-top: 2rem;
}

.p-page-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6rem;
}

/* --privacy-------------- */
/* p-page-privacy */
.p-page-privacy__content {
  padding-top: 8rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-page-privacy__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* p-privacy */
.p-privacy__date {
  text-align: right;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-privacy__text {
  margin-top: 3rem;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-privacy__text {
    margin-top: 5rem;
  }
}

.p-privacy__heading {
  margin-top: 3rem;
  padding: 1rem 2rem;
  border-left: 4px solid #000;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-privacy__heading {
    font-size: 1.8rem;
  }
}

.p-privacy__item-text {
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__item-text {
    padding: 0;
  }
}
.p-privacy__item-text p {
  margin-top: 1.5rem;
  padding: 0 1rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__item-text p {
    padding: 0;
    font-size: 1.6rem;
  }
}
.p-privacy__item-text ol {
  list-style: decimal;
  padding-left: 2rem;
}
.p-privacy__item-text li {
  margin-top: 1rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__item-text li {
    font-size: 1.6rem;
  }
}

.p-privacy__info {
  margin-top: 5rem;
  padding: 0 2rem;
  font-size: 1.6rem;
}

.p-test {
  color: red;
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    font-size: 2.5rem;
  }
}

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

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

/* u-inline-block */
.u-inline-block {
  display: inline-block;
}

/* --lib-------------- */
/* inview */
.fadeIn {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.p-top-about__image-box .fadeIn.fadeIn--01 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.p-top-about__image-box .fadeIn.fadeIn--02 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.p-top-about__image-box .fadeIn.fadeIn--03 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.p-top-about__image-box .fadeIn.fadeIn--04 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}/*# sourceMappingURL=style.css.map */