@charset "UTF-8";
:root {
  --font-serif: "Noto Serif JP", serif;
  --font-gothic: "yu-gothic-pr6n", "Yu Gothic", YuGothic, "游ゴシック", sans-serif;
  --color-main: #1c1c1c;
  --color-sub: #1c1c1c;
  --bg-white: #ffffff;
  --rgb-product-label: 255,255,255;
  --alpha-product-label: .8;
  --bg-product-head: #ccc;
  --color-product-head: var(--color-main);
  --bg-case: #ddd;
  --height-global-nav: 0px;
}

html {
  width: 100%;
  background-color: #fff;
  font-size: 62.5%;
  scrollbar-width: none;
}

body {
  width: 100%;
  color: #000;
  font-family: var(--font-gothic);
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.6rem;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/*----------------------------------------
	.font-en
----------------------------------------*/
/*----------------------------------------
	u-animation-fade-in フェードイン
----------------------------------------*/
.u-animation-fade-in {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.u-animation-fade-in.is-active {
  opacity: 1;
}

/*----------------------------------------
	u-animation-fade-up 下から上にふわっと
----------------------------------------*/
.u-animation-fade-up {
  opacity: 0;
  translate: 0 4rem;
  -webkit-transition: 1s;
  transition: 1s;
}
.u-animation-fade-up.is-active {
  opacity: 1;
  translate: 0 0;
}

/*----------------------------------------
	鉤括弧で始まる場合、頭を左に調整する
----------------------------------------*/
.text-indent {
  text-indent: -0.5em;
}

span.text-indent {
  display: inline-block;
}

/*----------------------------------------
	scroll-bar
----------------------------------------*/
.scroll-bar {
  position: relative;
  width: 1px;
  height: 60px;
  background: #dbdbd9;
  z-index: 3;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .scroll-bar {
    height: 3rem;
  }
}
.scroll-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #525554;
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
}

/*----------------------------------------
	scroll-barのkeyframes
----------------------------------------*/
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/*----------------------------------------
	ボタンを囲む線のkeyframes
----------------------------------------*/
@-webkit-keyframes contentBlockBtnBorder {
  0% {
    background-size: 0 1px, 1px 0, 0 1px, 1px 0;
  }
  45.65% {
    background-size: 100% 1px, 1px 0, 0 1px, 1px 0;
  }
  50% {
    background-size: 100% 1px, 1px 100%, 0 1px, 1px 0;
  }
  95.65% {
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 0;
  }
  100% {
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  }
}
@keyframes contentBlockBtnBorder {
  0% {
    background-size: 0 1px, 1px 0, 0 1px, 1px 0;
  }
  45.65% {
    background-size: 100% 1px, 1px 0, 0 1px, 1px 0;
  }
  50% {
    background-size: 100% 1px, 1px 100%, 0 1px, 1px 0;
  }
  95.65% {
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 0;
  }
  100% {
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  }
}
/*----------------------------------------
	back_btn
----------------------------------------*/
.back_btn {
  text-align: center;
  margin-top: 200px;
  background: #f2f6f6;
  font-family: var(--font-serif);
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .back_btn {
    margin-top: 100px;
  }
}
.back_btn a {
  padding: 20px;
  position: relative;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .back_btn a {
    padding: 0;
    height: 40px;
    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;
  }
}
.back_btn a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3rem;
  background: url(../img/common/back-icon.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .back_btn a::after {
    right: 0;
    width: 40px;
    height: 100%;
  }
}

/*----------------------------------------
	下層ページのnav
----------------------------------------*/
.bottom-nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .bottom-nav ul {
    grid-template-columns: 1fr;
    margin-top: 100px;
  }
}
.bottom-nav ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  height: 100%;
  padding: 0 2.4rem 0 0;
  border-top: 0.5px solid #1c1c1c;
  border-left: 0.5px solid #1c1c1c;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li a {
    border-right: 0.5px solid #1c1c1c;
    border-bottom: none;
  }
}
.bottom-nav ul li a img {
  display: block;
  height: 100%;
}
.bottom-nav ul li a .bottom-nav__img {
  width: 20%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.bottom-nav ul li a .bottom-nav__number {
  width: min(20px, 1.3888888889vw);
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li a .bottom-nav__number {
    width: 15px;
  }
}
.bottom-nav ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 0.5px solid #1c1c1c;
  border-right: 0.5px solid #1c1c1c;
  margin: auto;
  rotate: -45deg;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li a:after {
    right: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li a.is-sp-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .bottom-nav ul li:nth-child(3n) a {
    border-right: 0.5px solid #1c1c1c;
  }
  .bottom-nav ul li:nth-last-child(-n+3) a {
    border-bottom: 0.5px solid #1c1c1c;
  }
}
.bottom-nav ul li:nth-child(1) .bottom-nav__title {
  width: min(130px, 9.0277777778vw);
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li:nth-child(1) .bottom-nav__title {
    width: 100px;
  }
}
.bottom-nav ul li:nth-child(2) .bottom-nav__title {
  width: min(108px, 7.5vw);
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li:nth-child(2) .bottom-nav__title {
    width: 83.1px;
  }
}
.bottom-nav ul li:nth-child(3) .bottom-nav__title {
  width: min(245px, 17.0138888889vw);
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li:nth-child(3) .bottom-nav__title {
    width: 188.5px;
  }
}
.bottom-nav ul li:nth-child(4) .bottom-nav__title {
  width: min(131px, 9.0972222222vw);
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li:nth-child(4) .bottom-nav__title {
    width: 100.8px;
  }
}
.bottom-nav ul li:nth-child(5) .bottom-nav__title {
  width: min(122px, 8.4722222222vw);
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li:nth-child(5) .bottom-nav__title {
    width: 93.8px;
  }
}
.bottom-nav ul li:nth-child(6) .bottom-nav__title {
  width: min(131px, 9.0972222222vw);
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li:nth-child(6) .bottom-nav__title {
    width: 100.8px;
  }
}
@media screen and (max-width: 767px) {
  .bottom-nav ul li:nth-child(6) a {
    border-bottom: 0.5px solid #1c1c1c;
  }
}

.container {
  padding: 20px 0px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 20px 0px 60px;
  }
}

.page-about {
  max-width: 1146px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .page-about {
    padding: 0 20px;
  }
}
.page-about h1 {
  margin-bottom: 100px;
  width: 169px;
}
@media screen and (max-width: 767px) {
  .page-about h1 {
    margin-bottom: 56px;
    width: 117px;
  }
}
.page-about .about__lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.1111111111;
  letter-spacing: 0.14em;
  margin-bottom: 80px;
  font-family: var(--font-serif);
}
@media screen and (max-width: 767px) {
  .page-about .about__lead {
    font-size: 1.3rem;
    line-height: 2.3;
    letter-spacing: 0.02em;
    margin-bottom: 55px;
  }
}
.page-about .about__lead .large {
  font-size: 3.2rem;
  line-height: 1.3125;
  letter-spacing: 0.03em;
  margin-top: 30px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-about .about__lead .large {
    font-size: 2rem;
    line-height: 1.1666666667;
    margin-top: 22px;
  }
}
.page-about .about__lead .large span {
  font-family: var(--font-gothic);
  font-weight: 200;
}
.page-about .about__contents {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 140px;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents {
    margin-top: 42px;
    gap: 58px;
  }
}
.page-about .about__contents .content-block {
  display: grid;
  grid-template-columns: 1fr 54.2495479204%;
  grid-template-rows: -webkit-max-content -webkit-max-content 1fr -webkit-max-content;
  grid-template-rows: max-content max-content 1fr max-content;
  -webkit-column-gap: 7.9566003617%;
     -moz-column-gap: 7.9566003617%;
          column-gap: 7.9566003617%;
  row-gap: 0;
}
@media screen and (max-width: 1000px) {
  .page-about .about__contents .content-block {
    -webkit-column-gap: 3.90625vw;
       -moz-column-gap: 3.90625vw;
            column-gap: 3.90625vw;
  }
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
@media screen and (min-width: 768px) {
  .page-about .about__contents .content-block.reverse {
    grid-template-columns: 54.2495479204% 1fr;
  }
  .page-about .about__contents .content-block.reverse .content-block__title, .page-about .about__contents .content-block.reverse .content-block__text, .page-about .about__contents .content-block.reverse .content-block__btn {
    grid-column: 2;
  }
  .page-about .about__contents .content-block.reverse .content-block__img {
    grid-column: 1;
  }
}
.page-about .about__contents .content-block.sustainability .content-block__text h3 {
  margin-bottom: 0;
}
.page-about .about__contents .content-block__title {
  grid-column: 1;
  grid-row: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__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;
    margin-bottom: 26px;
  }
}
.page-about .about__contents .content-block__title .number {
  margin-bottom: 18px;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__title .number {
    margin-bottom: 14px;
    width: 20px;
  }
}
.page-about .about__contents .content-block__title.promise h2 {
  width: 156px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__title.promise h2 {
    width: 118px;
  }
}
.page-about .about__contents .content-block__title.design h2 {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__title.design h2 {
    width: 97px;
  }
}
.page-about .about__contents .content-block__title.craftsmanship h2 {
  width: 294px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__title.craftsmanship h2 {
    width: 222px;
  }
}
.page-about .about__contents .content-block__title.quality h2 {
  width: 158px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__title.quality h2 {
    width: 119px;
  }
}
.page-about .about__contents .content-block__title.service h2 {
  width: 147px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__title.service h2 {
    width: 111px;
  }
}
.page-about .about__contents .content-block__title.history h2 {
  width: 159px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__title.history h2 {
    width: 120px;
  }
}
.page-about .about__contents .content-block__title.sustainability h2 {
  width: 288px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__title.sustainability h2 {
    width: 216px;
  }
}
.page-about .about__contents .content-block__img {
  grid-column: 2;
  grid-row: 1/5;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__img {
    margin-bottom: 25px;
  }
}
.page-about .about__contents .content-block__img img {
  width: 100%;
}
.page-about .about__contents .content-block__img a {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.page-about .about__contents .content-block__img a:hover, .page-about .about__contents .content-block__img a:active {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.page-about .about__contents .content-block__text {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__text {
    margin-bottom: 28px;
  }
}
.page-about .about__contents .content-block__text h3 {
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  margin-bottom: 17px;
  font-size: 2.4rem;
  font-family: var(--font-serif);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3333333333;
  }
}
.page-about .about__contents .content-block__text p {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.13em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__text p {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
}
.page-about .about__contents .content-block__btn {
  grid-column: 1;
  grid-row: 4;
  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;
}
.page-about .about__contents .content-block__btn a {
  position: relative;
  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;
  width: 100%;
  height: 4rem;
  border: 0.5px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(#b3b3b3)) left top/0 0.5px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(#b3b3b3)) right top/0.5px 0 no-repeat, -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(#b3b3b3)) right bottom/0 0.5px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(#b3b3b3)) left bottom/0.5px 0 no-repeat;
  background: linear-gradient(#b3b3b3, #b3b3b3) left top/0 0.5px no-repeat, linear-gradient(#b3b3b3, #b3b3b3) right top/0.5px 0 no-repeat, linear-gradient(#b3b3b3, #b3b3b3) right bottom/0 0.5px no-repeat, linear-gradient(#b3b3b3, #b3b3b3) left bottom/0.5px 0 no-repeat;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__btn a {
    font-size: 1.3rem;
    height: 3.6rem;
  }
}
.page-about .about__contents .content-block__btn a:after {
  content: "";
  position: absolute;
  top: calc(50% + 0.1rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16.1904761905%;
  width: 0.4rem;
  height: 1.4rem;
  background: url(../img/common/arrow-icon.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__btn a:after {
    right: 18.1818181818%;
  }
}
.page-about .about__contents .content-block__btn a img {
  width: 115px;
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__btn a img {
    width: 88px;
  }
}
.page-about .about__contents .content-block__btn.is-active a {
  -webkit-animation: contentBlockBtnBorder 1.5s linear forwards;
          animation: contentBlockBtnBorder 1.5s linear forwards;
}
.page-about .about__contents .content-block__links {
  grid-column: 1;
  grid-row: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.page-about .about__contents .content-block__links a {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.page-about .about__contents .content-block__links a:hover, .page-about .about__contents .content-block__links a:active {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
@media screen and (max-width: 767px) {
  .page-about .about__contents .content-block__title, .page-about .about__contents .content-block__img, .page-about .about__contents .content-block__text, .page-about .about__contents .content-block__btn {
    grid-column: auto;
    grid-row: auto;
  }
}

.page-about-sub .page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 145px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header {
    color: #fff;
    --page-header-sp-img-height: 101.8666666667vw;
    --page-header-sp-sticky-top: 55px;
    display: block;
    min-height: calc(0vh + var(--page-header-sp-img-height));
    margin-bottom: 60px;
  }
}
.page-about-sub .page-header__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header__img {
    position: sticky;
    top: var(--page-header-sp-sticky-top);
    z-index: 1;
  }
}
.page-about-sub .page-header__img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header__img img {
    -webkit-transition: 1.6s;
    transition: 1.6s;
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header.is-scrolled .page-header__img img {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header.is-fixed {
    min-height: var(--page-header-sp-img-height);
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header.is-fixed .page-header__text {
    margin-top: calc(-1 * var(--page-header-sp-img-height));
  }
}
.page-about-sub .page-header__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: var(--font-serif);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header__text {
    position: sticky;
    top: var(--page-header-sp-sticky-top);
    z-index: 2;
    width: 100%;
    height: var(--page-header-sp-img-height);
    margin-top: max(0px, 40vh - var(--page-header-sp-img-height));
    text-align: center;
  }
}
.page-about-sub .page-header__text-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  margin: 0 auto;
  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;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header__text-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 17px;
  }
}
.page-about-sub .page-header__text .number {
  width: 24px;
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header__text .number {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header__text .number img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header__text h1 img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.page-about-sub .page-header__text .scroll-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header__text .scroll-bar {
    left: calc(50% - 0.5px);
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .page-header__text .scroll-bar::before {
    background: #fff;
  }
}
.page-about-sub .page-contents {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.page-about-sub .content-block__text {
  padding: 0 20px;
  max-width: 840px;
  margin: 140px auto;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__text {
    margin: 0;
    padding: 0 6vw;
  }
}
.page-about-sub .content-block__text h2 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-family: var(--font-serif);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__text h2 {
    font-size: 2rem;
  }
}
.page-about-sub .content-block__text h2.font-en {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__text h2.font-en {
    font-size: 2rem;
  }
}
.page-about-sub .content-block__text .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.page-about-sub .content-block__text .text p {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__text .text p {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
}
.page-about-sub .content-block__img {
  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) {
  .page-about-sub .content-block__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.page-about-sub .content-block__img.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__img.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.page-about-sub .content-block__img.reverse .text-wrap {
  padding: min(50px, 3.6603221083vw) 9.5168374817% min(50px, 3.6603221083vw) 6.8081991215%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .page-about-sub .content-block__img.reverse .text-wrap {
    padding: 1.8301610542vw 4.7584187408% 1.8301610542vw 3.3674963397%;
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__img.reverse .text-wrap {
    width: 100%;
    padding: 0 6vw;
  }
}
.page-about-sub .content-block__img .text-wrap {
  width: 50%;
  padding: min(50px, 3.6603221083vw) 6.8081991215% min(50px, 3.6603221083vw) 9.5168374817%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .page-about-sub .content-block__img .text-wrap {
    padding: 1.8301610542vw 3.3674963397% 1.8301610542vw 4.7584187408%;
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__img .text-wrap {
    width: 100%;
    padding: 0 6vw;
  }
}
.page-about-sub .content-block__img .text-wrap h2 {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  font-family: var(--font-serif);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__img .text-wrap h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.page-about-sub .content-block__img .text-wrap h2.font-en {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__img .text-wrap h2.font-en {
    font-size: 2rem;
  }
}
.page-about-sub .content-block__img .text-wrap .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.page-about-sub .content-block__img .text-wrap .text p {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__img .text-wrap .text p {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    line-height: 1.9090909091;
  }
}
.page-about-sub .content-block__img .image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__btn {
    padding: 0 6vw;
  }
}
.page-about-sub .content-block__btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 420px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  border: 0.5px solid #3e3a39;
  padding: 16px;
  margin: 160px auto 0;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__btn a {
    margin: 0px auto;
    padding: 15px;
    width: 100%;
  }
}
.page-about-sub .content-block__btn a span {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__btn a span {
    font-size: 1.6rem;
  }
}
.page-about-sub .content-block__btn a:after {
  content: "";
  position: absolute;
  top: calc(50% + 0.1rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16.1904761905%;
  width: 0.4rem;
  height: 1.4rem;
  background: url(../img/common/arrow-icon.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__btn a:after {
    right: 18.1818181818%;
  }
}
.page-about-sub .content-block__video {
  margin-top: 200px;
  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) {
  .page-about-sub .content-block__video {
    margin-top: 100px;
  }
}
.page-about-sub .content-block__video .video {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__video .video {
    width: 100%;
  }
}
.page-about-sub .content-block__video .video .video-inner {
  position: relative;
  width: 70%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__video .video .video-inner {
    width: 90%;
    margin: 0 auto;
  }
}
.page-about-sub .content-block__video .video video {
  display: block;
  width: 100%;
  height: auto;
}
.page-about-sub .content-block__video .video .video-sound-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 92px;
  padding: 8px 0px;
  border: 0.5px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
  text-shadow: min(0.0892857143vw, 0.5px) min(0.0892857143vw, 0.5px) 0px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: min(0.0892857143vw, 0.5px) min(0.0892857143vw, 0.5px) 0px rgba(0, 0, 0, 0.8);
          box-shadow: min(0.0892857143vw, 0.5px) min(0.0892857143vw, 0.5px) 0px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__video .video .video-sound-button {
    right: 8px;
    bottom: 8px;
    width: 82px;
    padding: 7px 0px;
    font-size: 1rem;
  }
}
.page-about-sub .content-block__video .video .video-sound-button:hover {
  opacity: 0.7;
}
.page-about-sub .content-block__video .text-wrap {
  width: 50%;
  padding: min(50px, 3.6603221083vw) 6.8081991215% min(50px, 3.6603221083vw) 9.5168374817%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .page-about-sub .content-block__video .text-wrap {
    padding: 1.8301610542vw 3.3674963397% 1.8301610542vw 4.7584187408%;
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__video .text-wrap {
    display: none;
  }
}
.page-about-sub .content-block__video .text-wrap .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.page-about-sub .content-block__video .text-wrap .text p {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__video .text-wrap .text p {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    line-height: 1.9090909091;
  }
}
.page-about-sub .content-block__video.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__video.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.page-about-sub .content-block__video.reverse .video .video-inner {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__video.reverse .video .video-inner {
    margin: 0 auto;
  }
}
.page-about-sub .content-block__video.reverse .text-wrap {
  padding: min(50px, 3.6603221083vw) 9.5168374817% min(50px, 3.6603221083vw) 6.8081991215%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .page-about-sub .content-block__video.reverse .text-wrap {
    padding: 1.8301610542vw 4.7584187408% 1.8301610542vw 3.3674963397%;
  }
}
@media screen and (max-width: 767px) {
  .page-about-sub .content-block__video.reverse .text-wrap {
    width: 100%;
    padding: 0 6vw;
  }
}

.page-promise h1 {
  width: 156px;
}
@media screen and (max-width: 767px) {
  .page-promise h1 {
    width: 118px;
  }
}
.page-promise .page-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: 150px;
}
@media screen and (max-width: 767px) {
  .page-promise .page-contents {
    gap: 75px;
  }
}
.page-promise .page-contents h2 {
  margin: 0;
}
.page-promise .content-block__text {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-promise .content-block__text {
    gap: 30px;
    padding: 0;
  }
}
.page-promise .content-block__text h2 {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  font-family: var(--font-serif);
}
@media screen and (max-width: 767px) {
  .page-promise .content-block__text h2 {
    font-size: 2rem;
  }
}
.page-promise .content-block__text h2.font-en {
  width: 135px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-promise .content-block__text h2.font-en {
    width: 105px;
  }
}
.page-promise .content-block__text p {
  line-height: 2.25;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .page-promise .content-block__text p {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
.page-promise .content-block__text.border {
  padding: 55px 0;
  border-top: 0.5px solid #b4b6b4;
  border-bottom: 0.5px solid #b4b6b4;
  max-width: 1108px;
  width: 100%;
  margin: 0 auto;
}

.page-design .page-contents,
.page-craftsmanship .page-contents,
.page-quality .page-contents,
.page-service .page-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .page-design .page-contents,
  .page-craftsmanship .page-contents,
  .page-quality .page-contents,
  .page-service .page-contents {
    gap: 50px;
  }
}

.page-design h1 {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .page-design h1 {
    width: 97px;
  }
}

.page-craftsmanship h1 {
  width: 294px;
}
@media screen and (max-width: 767px) {
  .page-craftsmanship h1 {
    width: 222px;
  }
}

.page-quality h1 {
  width: 158px;
}
@media screen and (max-width: 767px) {
  .page-quality h1 {
    width: 119px;
  }
}
.page-quality .content-block__text.bottom {
  margin-bottom: 0;
}

.page-service h1 {
  width: 147px;
}
@media screen and (max-width: 767px) {
  .page-service h1 {
    width: 111px;
  }
}

.page-history .page-contents {
  width: 950px;
  padding: 0 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 160px;
}
@media screen and (max-width: 767px) {
  .page-history .page-contents {
    width: 100%;
    padding: 0 6vw;
    gap: 70px;
  }
}
.page-history .history-header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 160px auto 120px;
}
@media screen and (max-width: 767px) {
  .page-history .history-header {
    margin: 45px auto 50px;
  }
}
.page-history .history-header h1 {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .page-history .history-header h1 {
    width: 119px;
  }
}
.page-history .history-section__year {
  padding-bottom: 30px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__year {
    font-size: 2.5rem;
    line-height: 1.0416666667;
    padding-bottom: 15px;
  }
}
.page-history .history-section__year img {
  width: 98px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__year img {
    width: 65px;
  }
}
.page-history .history-section__year::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: calc(100% - 20px);
  height: 0.5px;
  background: #b4b6b4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__year::after {
    width: 100%;
  }
}
.page-history .history-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(130px, 11.1301369863vw, 50px);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__content {
    gap: 40px;
  }
}
.page-history .history-section__content::after {
  position: absolute;
  content: "";
  width: 0.5px;
  height: 100%;
  background: #b4b6b4;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.8;
}
.page-history .history-section__content-wrap {
  -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;
  gap: 80px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__content-wrap {
    gap: 30px;
    margin-top: 30px;
  }
}
.page-history .history-section__content-center {
  margin: 65px auto 80px;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__content-center {
    margin: 40px auto;
  }
}
.page-history .history-section__content-center .history-section__content-block h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__content-center .history-section__content-block h3 {
    font-size: 1.7rem;
    line-height: 1.4705882353;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
  }
}
.page-history .history-section__content-center .history-section__content-block p {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__content-center .history-section__content-block p {
    font-size: 1.3rem;
    line-height: 1.9090909091;
    letter-spacing: 0.05em;
  }
}
.page-history .history-section__content-block {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-history .history-section__content-block h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 2.1;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__content-block h3 {
    font-size: 1.3rem;
    line-height: 1.3333333333;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }
}
.page-history .history-section__content-block p {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__content-block p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
.page-history .history-section__content-img {
  width: 71.7948717949%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .page-history .history-section__content-img {
    width: 145px;
    margin-bottom: 15px;
  }
}
.page-history .section-1970s .history-section__content-wrap {
  margin-top: 0;
}/*# sourceMappingURL=about.css.map */