@charset "UTF-8";
/* common 
******************************************************************************************/
html {
  font-size: 10px;
}

@media (min-width: 769px) {
  html {
    font-size: 0.7849293564vw;
  }
}
@media (min-width: 1025px) {
  html {
    font-size: clamp(7.5px, 0.5882352941vw, 10px);
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  position: relative;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333333;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-noscroll {
  overflow: hidden;
}

.main {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
.container {
  max-width: 150rem;
  width: 78.125%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 440px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}
.pc-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}
.heading {
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.heading__en {
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .heading__en {
    font-size: 1.4rem;
  }
}
.heading__ja {
  font-size: 2.6rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .heading__ja {
    font-size: 1.8rem;
  }
}
.heading__ja.white {
  color: #fff;
}

.heading.left {
  line-height: 1;
}

.heading.left .heading__ja {
  margin-top: 1rem;
}

.heading.center {
  text-align: center;
}

.heading.center .heading__ja {
  margin-top: -0.5rem;
}

.heading.vertical {
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .heading.vertical {
    writing-mode: horizontal-tb;
  }
}
.orange {
  color: #f07026;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6.2rem;
  width: fit-content;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", serif;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #2c3e50;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.4rem;
    gap: 1.4rem;
  }
}
.btn::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 20rem;
  height: 0.1rem;
  top: 6.4rem;
  left: 0;
  background: #2c3e50;
}

@media screen and (max-width: 768px) {
  .btn::after {
    width: 12rem;
    top: 3.8rem;
  }
}
.btn span.btn__circle {
  position: relative;
  display: grid;
  place-content: center;
  width: 8rem;
  aspect-ratio: 1;
  border: 0.1rem solid #2c3e50;
  border-radius: 100vmax;
  transition: scale 0.4s, background-color 0.4s;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .btn span.btn__circle {
    width: 4.8rem;
    transition: scale 0s, background-color 0s;
  }
}
.btn span.btn__arrow {
  position: absolute;
  display: grid;
  place-content: center;
  content: "";
  width: 1.2rem;
  aspect-ratio: 1;
  inset: 0;
  margin: auto;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .btn span.btn__arrow {
    width: 0.8rem;
  }
}
.btn span.btn__text {
  flex-shrink: 0;
  transition: translate 0.4s;
}

.btn:active span.btn__circle {
  scale: 1.25;
  background-color: #2c3e50;
}

.btn:active span.btn__text {
  translate: 1.5rem;
}

.btn:active span.btn__arrow img {
  filter: brightness(0) invert(1);
  scale: 0.8;
}

@media (any-hover: hover) {
  .btn:hover span.btn__circle {
    scale: 1.25;
    background-color: #2c3e50;
  }
  .btn:hover span.btn__text {
    translate: 1.5rem;
  }
  .btn:hover span.btn__arrow img {
    filter: brightness(0) invert(1);
    scale: 0.8;
  }
}
.btn.white {
  color: #fff;
}

.btn.white::after {
  background-color: #fff;
}

.btn.white span.btn__circle {
  border: 0.1rem solid #fff;
}

.btn.white span.btn__arrow img {
  filter: brightness(0) invert(1);
}

@media (any-hover: hover) {
  .btn.white:hover span.btn__circle {
    background-color: #fff;
  }
  .btn.white:hover span.btn__arrow img {
    filter: brightness(0);
  }
}
.mv {
  position: relative;
  margin-top: 10.1rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .mv {
    margin-top: 6.7rem;
  }
}
.mv__image {
  height: 60rem;
}

@media screen and (max-width: 768px) {
  .mv__image {
    height: 48vw;
  }
}
.mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  max-width: 172rem;
  width: 89.5833333333%;
  height: 100%;
  padding: 21rem 0 3.5rem;
  top: 0;
  left: 50%;
  translate: -50%;
}

@media screen and (max-width: 768px) {
  .mv__inner {
    width: 90%;
    padding: 14vw 0 1.6rem;
  }
}
.mv-text {
  font-family: "Noto Serif JP", serif;
}

.mv-text__ja {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .mv-text__ja {
    font-size: 1.6rem;
  }
}
.mv-text__en {
  display: block;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 1.2rem;
}

@media screen and (max-width: 768px) {
  .mv-text__en {
    font-size: 2.8rem;
    margin-top: 1.6rem;
  }
}
.breadcumbs {
  margin-top: auto;
}

.breadcumbs ol {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.breadcumbs li {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .breadcumbs li {
    font-size: 1rem;
  }
}
.breadcumbs li:not(:last-child)::after {
  display: inline-block;
  content: "/";
  vertical-align: middle;
  margin-left: 1rem;
}

.breadcumbs li:last-child {
  pointer-events: none;
}

/* header
******************************************************************************************/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  overflow: hidden;
  transition: background-color 0.4s;
}

.header.is-fixed {
  background-color: #fff;
}

.header.bg-white {
  background-color: #fff;
}

.header.bg-white .header__inner {
  padding: 3.3rem 5rem;
}

@media screen and (max-width: 768px) {
  .header.bg-white .header__inner {
    padding: 1.6rem;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 192rem;
  width: 100%;
  padding: 3.3rem 5rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 1.6rem;
  }
}
.header__logo {
  position: relative;
  width: 21rem;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 16rem;
  }
}
.header__right {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1025px) {
  .header-nav {
    display: none;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.header-nav__item {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.4s;
}

@media (any-hover: hover) {
  .header-nav__item:hover {
    color: #f07026;
  }
}

.header-nav__item--has-sub {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.4s;
}

.l-header__menu--button {
  transition: color 0.4s;
}
@media (any-hover: hover) {
  .l-header__menu--button:hover {
    color: #f07026;
    cursor: pointer;
  }
}



.header-sns {
  margin-left: 4.8rem;
}

@media screen and (max-width: 1025px) {
  .header-sns {
    display: none;
  }
}
.header-sns__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-sns__item {
  width: 3rem;
  transition: opacity 0.4s;
}

@media (any-hover: hover) {
  .header-sns__item:hover {
    opacity: 0.6;
  }
}
.header-btn {
  position: relative;
  width: 60px;
  height: 3.5rem;
  margi-left: auto;
  aspect-ratio: 1;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.4s;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .header-btn {
    width: 40px;
  }
}
.header-btn {
  display: none;
}

@media screen and (max-width: 1025px) {
  .header-btn {
    display: block;
  }
}
.header-btn span {
  position: absolute;
  width: 24px;
  height: 1px;
  left: 50%;
  translate: -50%;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.header-btn span:nth-child(1) {
  top: 9px;
}

.header-btn span:nth-child(2) {
  top: 17px;
}

.header-btn span:nth-child(3) {
  top: 25px;
}

.header-btn span.close:nth-child(1) {
  top: 17px;
  transform: rotate(-45deg);
}

.header-btn span.close:nth-child(2) {
  display: none;
}

.header-btn span.close:nth-child(3) {
  top: 17px;
  transform: rotate(45deg);
}

.drawer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  padding: 6.6rem 2.4rem 0;
  transition: left 0.4s;
  z-index: 3;
  background: #fff;
}

.drawer.slidein {
  left: 0;
}

.drawer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: auto;
}

.drawer__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 35.8rem;
  width: calc(100% - 3.2rem);
  padding: 4rem 0;
}

.drawer-link-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 0;
  z-index: 1;
}

.drawer-link__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.drawer-link__item {
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
}

.drawer-link__item a {
  display: block;
  padding: 1.2rem 0;
  transition: color 0.4s;
}

.drawer-link__item > a:active {
  color: #f07026;
}

@media (any-hover: hover) {
  .drawer-link__item a:hover {
    color: #f07026;
  }
}
.drawer-link__item--has-sub {
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
}

.drawer-link__item--has-sub a {
  display: block;
  padding: 1.2rem 0;
  transition: color 0.4s;
}

.drawer-link__item--has-sub > a:active {
  color: #f07026;
}

@media (any-hover: hover) {
  .drawer-link__item--has-sub a:hover {
    color: #f07026;
  }
}
.drawer-sns {
  margin-top: 2rem;
}

.drawer-sns__list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.drawer-sns__item {
  width: 3rem;
  transition: opacity 0.4s;
}

@media (any-hover: hover) {
  .drawer-sns__item:hover {
    opacity: 0.6;
  }
}
/* footer
******************************************************************************************/
.footer {
  position: relative;
  padding: 15.4rem 0 16rem;
  background-color: #f7f7f7;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 5.6rem 1.6rem 1.6rem;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  max-width: 172rem;
  width: 90%;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    width: 100%;
  }
}
.footer__logo {
  width: 28.8rem;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    width: 21rem;
    margin-inline: auto;
  }
}
.footer__info {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .footer__info {
    width: fit-content;
    font-size: 1.4rem;
    margin: 3.2rem auto 0;
  }
}
.footer__right {
  padding-top: 3rem;
}

.footer-links {
  display: flex;
  gap: 8.5rem;
}

@media screen and (max-width: 768px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 0;
    max-width: 50rem;
    margin-inline: auto;
  }
}
.footer-links__list {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .footer-links__list {
    width: 100%;
  }
}
.footer-links__item a {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.4s;
}

.footer-links__item a:active {
  color: #f07026;
}

@media screen and (max-width: 768px) {
  .footer-links__item a {
    display: block;
    font-size: 1.4rem;
    padding: 0.8rem 0;
    border-bottom: 0.1rem solid #585956;
  }
}
@media (any-hover: hover) {
  .footer-links__item a:hover {
    color: #f07026;
  }
}
.footer__copyright {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 3.6rem;
  color: #cccccc;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 1.2rem;
    text-align: center;
  }
}
.page-top {
  position: fixed;
  display: block;
  width: 5rem;
  aspect-ratio: 1;
  right: 5rem;
  background-color: #f7f7f7;
  border-radius: 100vmax;
  z-index: 1;
  display: none;
}

.page-top::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1.2rem;
  aspect-ratio: 12/7;
  top: 1.7rem;
  left: 50%;
  translate: -50%;
  background: url(../images/common/page-top__arrow.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/* top
******************************************************************************************/
.top-mv {
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-mv {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__image {
    height: 64svh;
    margin-top: auto;
  }
}
.top-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.top-mv-text {
  position: absolute;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  width: 90%;
  padding-top: 18.5%;
  top: 0;
  left: 50%;
  translate: -50%;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .top-mv-text {
    width: calc(100% - 3.2rem);
    padding-top: 0;
    top: 18%;
  }
}
.top-mv-text__main {
  font-size: 4.8rem;
  font-size: 2.5vw;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .top-mv-text__main {
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
.top-mv-text__sub {
  font-size: 3rem;
  font-size: 1.5625vw;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-top: 4.8rem;
}

@media screen and (max-width: 768px) {
  .top-mv-text__sub {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
.top-mv__scroll {
  position: absolute;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  bottom: 8rem;
  left: 50%;
  translate: -50%;
}

@media screen and (max-width: 768px) {
  .top-mv__scroll {
    display: none;
  }
}
.top-mv__scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -8rem;
  content: "";
  height: 7rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 0.1rem;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.top-about {
  position: relative;
  margin-top: 25rem;
  padding: 6rem 0 19rem;
}

@media screen and (max-width: 768px) {
  .top-about {
    margin-top: 4rem;
    padding: 9.6rem 1.6rem 7.2rem;
  }
}
.top-about::before {
  position: absolute;
  display: block;
  content: "";
  width: 60.4166666667%;
  height: 100%;
  background-color: #f7f7f7;
  top: 0;
  left: 0;
  z-index: -1;
}

.top-about__inner {
  display: flex;
}

@media screen and (max-width: 768px) {
  .top-about__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.top-about__image {
  width: 50vw;
  height: 60.5rem;
  margin-top: 3.5rem;
  margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .top-about__image {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}
.top-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .top-about__image img {
    height: auto;
  }
}
.top-about-text {
  display: flex;
  justify-content: space-between;
  width: 50%;
  padding-left: 6.3%;
  padding-right: 2.4%;
}

@media screen and (max-width: 768px) {
  .top-about-text {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.top-about-text__left {
  padding-top: 10.5rem;
}

@media screen and (max-width: 768px) {
  .top-about-text__left {
    padding-top: 3rem;
    order: 2;
  }
}
.top-about__desc {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 5.6rem;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .top-about__desc {
    font-size: 1.4rem;
    margin-top: 1.6rem;
  }
}
.top-about__btn {
  margin-top: 6.8rem;
}

@media screen and (max-width: 768px) {
  .top-about__btn {
    margin-top: 4rem;
  }
}
.top-about__main {
  font-size: 4.2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5476190476;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #585956;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .top-about__main {
    font-size: 2.8rem;
    writing-mode: horizontal-tb;
    order: 1;
    white-space: nowrap;
  }
}
.top-about__note {
  position: absolute;
  width: 100%;
  font-size: 3rem;
  line-height: 2.25;
  font-weight: 400;
  letter-spacing: 0.2em;
  padding-right: 2.1rem;
  left: 0;
  bottom: 0;
  color: #cccccc;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .top-about__note {
    font-size: 1.2rem;
  }
}
.top-products {
  position: relative;
  padding: 10.8rem 0 36.7rem;
}

@media screen and (max-width: 768px) {
  .top-products {
    padding: 5.6rem 0 8rem;
  }
}
.top-products::before {
  position: absolute;
  display: block;
  content: "";
  width: 60.4166666667%;
  height: 100%;
  background-color: #f7f7f7;
  top: 0;
  left: 0;
  z-index: -1;
}

.top-products-main {
  margin-top: 8rem;
  height: 44.9rem;
  background: url(../images/top/products_main.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .top-products-main {
    aspect-ratio: 4/3;
    height: auto;
    margin-top: 2.4rem;
  }
}
.top-products-main__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  padding: 3.4rem 5rem;
}

@media screen and (max-width: 768px) {
  .top-products-main__inner {
    flex-direction: column;
    gap: 2.4rem;
    padding: 1.6rem;
  }
}
.top-products-main__text {
  font-family: "Noto Serif JP", serif;
  color: #585956;
}

.top-products__name {
  font-size: 2.4rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .top-products__name {
    font-size: 1.4rem;
  }
}
.top-products__desc {
  font-size: 3.6rem;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .top-products__desc {
    font-size: 2.4rem;
  }
}
.top-products-intro {
  font-family: "Noto Serif JP", serif;
  margin-top: 5rem;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .top-products-intro {
    margin-top: 0;
    padding: 3.2rem 1.6rem;
  }
}
.top-products-intro__inner {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .top-products-intro__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.top-products-intro__text {
  width: fit-content;
  padding-top: 6.7rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .top-products-intro__text {
    width: 100%;
    padding-top: 0;
  }
}
.top-products-intro__main {
  font-size: 3.6rem;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .top-products-intro__main {
    font-size: 2.4rem;
  }
}
.top-products-intro__btn {
  margin-top: 5.5rem;
}

@media screen and (max-width: 768px) {
  .top-products-intro__btn {
    margin-top: 3.2rem;
  }
}
.top-products-intro__item {
  position: relative;
  width: 30rem;
}

.top-products-intro__item:active .top-products-intro__name {
  color: #f07026;
}

.top-products-intro__item:active .top-products-intro__image {
  opacity: 0.6;
}

@media (any-hover: hover) {
  .top-products-intro__item:hover .top-products-intro__name {
    color: #f07026;
  }
  .top-products-intro__item:hover .top-products-intro__image {
    opacity: 0.6;
  }
}
.top-products-intro__image {
  aspect-ratio: 3/4;
  transition: opacity 0.4s;
}

.top-products-intro__image img {
  width: 100%;
}

.top-products-intro__name {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 2.3rem;
  transition: color 0.4s;
}

@media screen and (max-width: 768px) {
  .top-products-intro__name {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
}
.top-products-intro__name a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.swiper-container {
  max-width: 126rem;
  width: 65.625vw;
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .swiper-container {
    width: 100%;
    margin-right: 0;
  }
}
.swiper {
  padding-bottom: 6.4rem;
}

@media screen and (max-width: 768px) {
  .swiper {
    padding-bottom: 1.6rem;
  }
}
.swiper-pagination.swiper-pagination-progressbar {
  height: 0.1rem;
  top: auto;
  bottom: 0;
  background-color: #cccccc;
}

.swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #585956;
}

@media screen and (max-width: 768px) {
  .top-therapist {
    padding: 5.6rem 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .top-business {
    padding: 5.6rem 1.6rem;
  }
}
.common-block-text {
  display: flex;
  justify-content: space-between;
  width: 50%;
  padding-right: 6.6666666667%;
}

@media screen and (max-width: 768px) {
  .common-block-text {
    flex-direction: column;
    width: 100%;
    padding-right: 0;
  }
}
.common-block-text--reverse {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 6.6666666667%;
}

@media screen and (max-width: 768px) {
  .common-block-text--reverse {
    flex-direction: column;
    padding-left: 0;
  }
}
.common-block__inner {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .common-block__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.common-block__inner--reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .common-block__inner--reverse {
    flex-direction: column;
  }
}
.common-block-text__body {
  width: 76.9230769231%;
  padding-top: 0;
  color: #585956;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .common-block-text__body {
    width: 100%;
    margin-top: 1.6rem;
  }
}
.common-block-text__body--white {
  color: #fff;
}

.common-block__main {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .common-block__main {
    font-size: 2.4rem;
  }
}
.common-block__desc {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 5.6rem;
}

@media screen and (max-width: 768px) {
  .common-block__desc {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 1.6rem;
  }
}
.common-block__btn {
  margin-top: 5rem;
}

.common-block__image {
  width: 50vw;
  height: 60rem;
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .common-block__image {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
}
.common-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .common-block__image img {
    height: auto;
  }
}
.common-block__image--reverse {
  margin-right: 0;
  margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .common-block__image--reverse {
    margin-left: 0;
  }
}
.bg-dark {
  background-color: #333333;
}

.top-business .common-block-text__body {
  padding-right: 7%;
}

.top-news {
  padding: 12.5rem 0 16rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .top-news {
    padding: 5.6rem 1.6rem;
  }
}
.top-news__inner {
  display: flex;
  justify-content: space-between;
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .top-news__inner {
    flex-direction: column;
  }
}
.top-news__left {
  width: fit-content;
  padding-top: 13.1rem;
}

@media screen and (max-width: 768px) {
  .top-news__left {
    display: contents;
    width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-news__heading {
    order: 1;
  }
}
.top-news__btn {
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .top-news__btn {
    margin-top: 4rem;
    order: 3;
  }
}
.top-news__right {
  width: 58.3333333333%;
}

@media screen and (max-width: 768px) {
  .top-news__right {
    width: 100%;
    order: 2;
  }
}
.top-news__item {
  position: relative;
  padding: 4rem 0;
  border-bottom: 0.1rem solid #cccccc;
}

@media screen and (max-width: 768px) {
  .top-news__item {
    padding: 1.6rem 0;
  }
}
.top-news__item::after {
  position: absolute;
  display: block;
  content: "";
  width: 8rem;
  height: 0.1rem;
  background-color: #585956;
  bottom: -0.1rem;
  left: 0;
  transition: width 0.4s;
}

@media screen and (max-width: 768px) {
  .top-news__item::after {
    width: 4rem;
  }
}
.top-news__item a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (any-hover: hover) {
  .top-news__item:hover::after {
    width: 100%;
  }
}
.time {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #f07026;
}

@media screen and (max-width: 768px) {
  .time {
    font-size: 1.2rem;
  }
}
.top-news__title {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .top-news__title {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
/* therapist 施術者・サロンのお客様へ
******************************************************************************************/
.therapist {
  padding-top: 23.3rem;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .therapist {
    padding: 5.6rem 1.6rem 0;
  }
}
.therapist__lead {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .therapist__lead {
    font-size: 2.4rem;
    white-space: nowrap;
  }
}
.therapist__sub {
  display: block;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 2rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .therapist__sub {
    font-size: 1.6rem;
  }
}
.therapist-recruit {
  position: relative;
  margin: 4rem calc(50% - 50vw) 16rem;
}

@media screen and (max-width: 768px) {
  .therapist-recruit {
    margin: 3.2rem calc(50% - 50vw) 8rem;
  }
}
.therapist-recruit__image {
  height: 50rem;
}

@media screen and (max-width: 768px) {
  .therapist-recruit__image {
    height: 24rem;
  }
}
.therapist-recruit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapist-recruit__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 19.3rem;
}

@media screen and (max-width: 768px) {
  .therapist-recruit__text {
    padding-top: 9rem;
  }
}
.therapist-recruit__text p {
  font-size: 4.8rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #333333;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .therapist-recruit__text p {
    font-size: 2.4rem;
  }
}
.cta-btn {
  position: relative;
  display: block;
  max-width: 100rem;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2rem;
  margin-inline: auto;
  background-color: #f07026;
  color: #fff;
  text-align: center;
  transition: opacity 0.4s;
}

@media screen and (max-width: 768px) {
  .cta-btn {
    font-size: 1.6rem;
    padding: 1.6rem 1.6rem 1.6rem 0.8rem;
  }
}
.cta-btn::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1.3rem;
  aspect-ratio: 13/18;
  top: 50%;
  right: 3rem;
  translate: 0 -50%;
  background: url(../images/common/arrow.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .cta-btn::after {
    width: 1rem;
    right: 0.8rem;
  }
}
@media (any-hover: hover) {
  .cta-btn:hover {
    opacity: 0.6;
  }
}
.therapist-catch {
  position: relative;
  margin-top: 16.7rem;
  padding-top: 15.4rem;
  padding-bottom: 18.4rem;
}

@media screen and (max-width: 768px) {
  .therapist-catch {
    margin-top: 0rem;
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }
}
.therapist-catch::before {
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  margin-inline: calc(50% - 50vw);
  top: 0;
  left: 0;
  background: linear-gradient(to right, #fff 0%, #fff 39.6%, #f7f7f7 39.6%, #f7f7f7 100%);
  z-index: -1;
}

.therapist-catch__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 170rem;
  width: 88.5416666667%;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .therapist-catch__inner {
    flex-direction: column;
    gap: 4rem;
    width: 90%;
  }
}
@media (max-width: 440px) {
  .therapist-catch__inner {
    width: 100%;
  }
}
.therapist-catch-text {
  width: 55.8139534884%;
}

@media screen and (max-width: 768px) {
  .therapist-catch-text {
    width: 100%;
  }
}
.therapist-catch-text__inner {
  max-width: 75.4rem;
  margin-left: auto;
}

.therapist-catch-text__main {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .therapist-catch-text__main {
    font-size: 2.4rem;
  }
}
.therapist-catch-text__sub {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 10rem;
  margin-right: -2rem;
}

@media screen and (max-width: 768px) {
  .therapist-catch-text__sub {
    font-size: 1.4rem;
    margin-top: 3.2rem;
    margin-right: 0;
  }
}
.therapist-catch__image {
  width: 40.1162790698%;
}

@media screen and (max-width: 768px) {
  .therapist-catch__image {
    width: 100%;
  }
}
.reason {
  padding: 20rem 0 0;
  background-color: #333333;
}

@media screen and (max-width: 768px) {
  .reason {
    padding: 5.6rem 0 0;
  }
}
.reason__list {
  display: flex;
  flex-direction: column;
  gap: 23rem;
  margin-top: 16.5rem;
}

@media screen and (max-width: 768px) {
  .reason__list {
    gap: 7.2rem;
    margin-top: 4rem;
  }
}
.reason-item {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .reason-item {
    flex-direction: column;
  }
}
.reason-item:nth-child(odd) .reason__image {
  margin-left: calc(50% - 50vw);
}

.reason-item:nth-child(odd) .reason__text {
  margin-left: -15.625%;
}

@media screen and (max-width: 768px) {
  .reason-item:nth-child(odd) .reason__text {
    margin-left: auto;
  }
}
.reason-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .reason-item:nth-child(even) {
    flex-direction: column;
  }
}
.reason-item:nth-child(even) .reason-text__inner {
  max-width: 86rem;
  margin-left: auto;
}

.reason-item:nth-child(even) .reason__image {
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .reason-item:nth-child(even) .reason__image {
    margin-left: auto;
  }
}
.reason-item:nth-child(even) .reason__text {
  margin-right: -15.625%;
}

@media screen and (max-width: 768px) {
  .reason-item:nth-child(even) .reason__text {
    margin-right: -4rem;
  }
}
.reason__image {
  width: 60.4166666667vw;
}

@media screen and (max-width: 768px) {
  .reason__image {
    width: 80%;
  }
}
.reason__text {
  position: relative;
  width: 55.2083333333vw;
  min-height: 52.2rem;
  padding: 3.9583333333% 5.2083333333%;
  margin-top: 12.8645833333%;
  background-color: #333333;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .reason__text {
    width: 80%;
    padding: 2.4rem;
    margin-top: -4rem;
    min-height: auto;
  }
}
.reason__point {
  display: block;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #f07026;
}

@media screen and (max-width: 768px) {
  .reason__point {
    font-size: 1.2rem;
  }
}
.reason-item__main {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .reason-item__main {
    font-size: 2.4rem;
    white-space: nowrap;
  }
}
.reason-item__desc {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 7rem;
}

@media screen and (max-width: 768px) {
  .reason-item__desc {
    font-size: 1.4rem;
    margin-top: 3.2rem;
  }
}
.therapist-catch2 {
  position: relative;
  margin: 23rem calc(50% - 50vw) 0;
}

@media screen and (max-width: 768px) {
  .therapist-catch2 {
    margin: 5.6rem calc(50% - 50vw) 0;
    height: auto;
  }
}
.therapist-catch2__image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .therapist-catch2__image {
    height: 100%;
  }
}
.therapist-catch2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapist-catch2__text {
  position: relative;
  padding: 17.7rem 0 19.7rem;
  color: #fff;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .therapist-catch2__text {
    padding: 6rem 1.6rem 4rem;
  }
}
.therapist-catch-text2__main {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .therapist-catch-text2__main {
    font-size: 2.4rem;
  }
}
.therapist-catch-text2__sub {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 10.3rem;
}

@media screen and (max-width: 768px) {
  .therapist-catch-text2__sub {
    font-size: 1.4rem;
    margin-top: 4rem;
  }
}
.flow {
  padding: 27rem 0 24.5rem;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .flow {
    padding: 5.6rem 1.6rem;
  }
}
.flow__inner {
  max-width: 130rem;
  margin-inline: auto;
}

.flow__list {
  margin: 6rem 0 19.3rem;
}

@media screen and (max-width: 768px) {
  .flow__list {
    margin: 3.2rem 0 4rem;
  }
}
.flow__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 7rem 0 6rem;
  border-bottom: 0.1rem solid #cccccc;
}

@media screen and (max-width: 768px) {
  .flow__item {
    flex-direction: column;
    gap: 2rem;
    padding: 1.6rem 0;
  }
}
.flow__item:not(:last-child)::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 0.2rem;
  height: 85%;
  top: 43%;
  left: 1rem;
  background: linear-gradient(45deg, #f07026 0%, #fff 100%);
}

@media screen and (max-width: 768px) {
  .flow__item:not(:last-child)::before {
    width: 0.16rem;
    top: 20%;
    left: 0.8rem;
  }
}
.flow__item dt {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 34.6153846154%;
  font-size: 2.2rem;
  line-height: 1.6363636364;
  font-weight: 500;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .flow__item dt {
    gap: 1.6rem;
    width: 100%;
    font-size: 1.6rem;
  }
}
.flow__item dt span {
  font-size: 2rem;
  line-height: 0.5555555556;
}

@media screen and (max-width: 768px) {
  .flow__item dt span {
    font-size: 1.4rem;
  }
}
.flow__item dd {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .flow__item dd {
    font-size: 1.4rem;
    padding-left: 4rem;
  }
}
/* brand 
******************************************************************************************/
.brand {
  padding: 23.4rem 0 36rem;
  background-color: #f7f7f7;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .brand {
    padding: 5.6rem 1.6rem 13.6rem;
  }
}
.brand-lead__inner {
  display: flex;
  justify-content: space-between;
  gap: 6.4rem;
  max-width: 130rem;
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .brand-lead__inner {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}
.brand-lead__left {
  width: 27.4rem;
  padding-top: 18.5rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .brand-lead__left {
    width: 21rem;
    padding-top: 0;
  }
}
.brand-lead__right {
  max-width: 78rem;
  width: 100%;
}

.brand-lead__main {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6875;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .brand-lead__main {
    font-size: 2.4rem;
  }
}
.brand-lead__main span {
  display: inline-block;
}

.brand-lead__sub {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 6.4rem;
}

@media screen and (max-width: 768px) {
  .brand-lead__sub {
    font-size: 1.4rem;
    margin-top: 3.2rem;
  }
}
.brand-image {
  width: 55.2083333333vw;
  height: 35rem;
  margin-top: -14.2rem;
}

@media screen and (max-width: 768px) {
  .brand-image {
    width: 90%;
    height: 16rem;
    margin-top: -8rem;
  }
}
.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message {
  padding: 18rem 0 34rem;
  background-color: #fff;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .message {
    padding: 5.6rem 1.6rem 7.2rem;
  }
}
.message__lead {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 4.2rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .message__lead {
    font-size: 2.4rem;
    margin-top: 1.6rem;
  }
}
.message__inner {
  display: flex;
  justify-content: space-between;
  gap: 6.4rem;
  align-items: flex-start;
  max-width: 120rem;
  width: 100%;
  margin: 7rem auto 0;
}

@media screen and (max-width: 768px) {
  .message__inner {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin: 3.2rem auto 0;
  }
}
.message__text {
  max-width: 60rem;
  margin-top: 0.4rem;
}

@media screen and (max-width: 768px) {
  .message__text {
    max-width: 100%;
    margin-top: 0;
  }
}
.message__text p {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .message__text p {
    font-size: 1.4rem;
  }
}
.message__image {
  max-width: 35rem;
}

.president {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 4.2rem;
  margin-right: -1.4rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .president {
    font-size: 1.6rem;
    margin-right: 0;
  }
}
.president span {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .president span {
    font-size: 1.2rem;
  }
}
/* products
******************************************************************************************/
.products-lead {
  padding: 23.2rem 0 18.9rem;
  background-color: #333333;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .products-lead {
    padding: 7.2rem 1.6rem 5.6rem;
  }
}
.products-lead__main {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .products-lead__main {
    font-size: 2.4rem;
  }
}
.products-lead__sub {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 10.9rem;
}

@media screen and (max-width: 768px) {
  .products-lead__sub {
    font-size: 1.4rem;
    margin-top: 4rem;
  }
}
.products-list {
  padding: 23.4rem 0 0;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .products-list {
    padding: 6.4rem 0 0;
  }
}
.products-list__list {
  margin-top: 9.3rem;
}

@media screen and (max-width: 768px) {
  .products-list__list {
    margin-top: 4rem;
  }
}
.products-list__item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .products-list__item {
    flex-direction: column;
    text-align: center;
  }
}
.products-list__item:nth-child(odd) .products-list-text {
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 768px) {
  .products-list__item:nth-child(odd) .products-list-text {
    padding: 2.4rem 1.6rem;
  }
}
.products-list__item:nth-child(odd) .products-list-text__inner {
  max-width: 57rem;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .products-list__item:nth-child(odd) .products-list-text__inner {
    margin-inline: auto;
  }
}
.products-list__item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .products-list__item:nth-child(even) {
    flex-direction: column;
  }
}
.products-list__item:nth-child(even) .products-list-text {
  padding-right: 8rem;
  padding-left: 10rem;
}

@media screen and (max-width: 768px) {
  .products-list__item:nth-child(even) .products-list-text {
    padding: 2.4rem 1.6rem;
  }
}
.products-list__item:nth-child(even) .products-list-text__inner {
  max-width: 57rem;
  margin-left: auto;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .products-list__item:nth-child(even) .products-list-text__inner {
    margin-inline: auto;
  }
}
.products-list__image {
  position: relative;
  width: 50vw;
  height: 75rem;
}

@media screen and (max-width: 768px) {
  .products-list__image {
    width: 100%;
    height: auto;
  }
}
.products-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .products-list__image img {
    height: auto;
  }
}
.products-list__image .swiper-container {
  width: 100%;
  height: 100%;
}

.products-list__image .products-swiper {
  width: 100%;
  height: 100%;
}

.products-list__image .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .products-list__image .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.products-list__image .swiper-pagination-bullet-active {
  background-color: #f07026;
}

.products-list__image .swiper-pagination {
  bottom: 4.9rem;
  padding-right: 4.6rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .products-list__image .swiper-pagination {
    bottom: 2rem;
    padding-right: 0;
    text-align: center;
  }
}
.products-list__image .swiper-button-next {
  width: 3rem;
  height: 3rem;
  border-radius: 100vmax;
  top: 51.5%;
  right: 5rem;
  background: rgba(255, 255, 255, 0.5);
  color: #585956;
}

@media screen and (max-width: 768px) {
  .products-list__image .swiper-button-next {
    right: 2rem;
  }
}
.products-list__image .swiper-button-next:after {
  font-size: 0.8rem;
}

.products-list-text {
  width: 50vw;
}

@media screen and (max-width: 768px) {
  .products-list-text {
    width: 100%;
  }
}
.product-name {
  font-size: 4.2105263158cqw;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #f07026;
}

@media screen and (max-width: 768px) {
  .product-name {
    font-size: 1.4rem;
  }
}
.product-desc {
  font-size: 5.2631578947cqw;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8333333333;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 4rem;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .product-desc {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}
.product-btn {
  margin-top: 12.7rem;
}

@media screen and (max-width: 768px) {
  .product-btn {
    width: fit-content;
    margin: 3.2rem auto 0;
  }
}
/* business
******************************************************************************************/
.business-lead {
  padding: 23.2rem 0 16.7rem;
  background-color: #fff;
  color: #585956;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .business-lead {
    padding: 7.2rem 1.6rem 5.6rem;
  }
}
.business-lead__main {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .business-lead__main {
    font-size: 2.4rem;
  }
}
.business-lead__sub {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 13rem;
}

@media screen and (max-width: 768px) {
  .business-lead__sub {
    font-size: 1.4rem;
    margin-top: 4rem;
  }
}
.business-works {
  padding: 14rem 0 30rem;
  background-color: #f7f7f7;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .business-works {
    padding: 5.6rem 1.6rem 7.2rem;
  }
}
.business-works__inner {
  max-width: 140rem;
  width: 100%;
  margin-inline: auto;
}

.business-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10.2rem 1rem;
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .business-works__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem;
    margin-top: 4rem;
  }
}
.business-works__image {
  aspect-ratio: 460/250;
}

.business-works__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-works__text {
  padding-top: 1rem;
}

.business-works___product-name {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 0.1rem solid #585956;
}

@media screen and (max-width: 768px) {
  .business-works___product-name {
    font-size: 1.2rem;
  }
}
.business-works__company-name {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 1.4rem;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .business-works__company-name {
    font-size: 1.8rem;
  }
}
.business-works__address {
  display: block;
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .business-works__address {
    font-size: 1.3rem;
  }
}
.business-oem__image {
  height: 72rem;
}

@media screen and (max-width: 768px) {
  .business-oem__image {
    height: auto;
  }
}
.business-custom__image {
  height: 75rem;
}

@media screen and (max-width: 768px) {
  .business-custom__image {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .business-oem {
    padding: 5.6rem 1.6rem;
  }
}
.business-oem .common-block-text__body {
  padding-top: 5rem;
}

@media screen and (max-width: 768px) {
  .business-oem .common-block-text__body {
    padding-top: 0;
  }
}
.business-oem .common-block__main {
  font-size: max(19px, 7.2cqw);
}

@media screen and (max-width: 768px) {
  .business-oem .common-block__main {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .business-custom {
    padding: 5.6rem 1.6rem;
  }
}
.business-custom .common-block-text__body {
  padding-top: 8rem;
}

@media screen and (max-width: 768px) {
  .business-custom .common-block-text__body {
    padding-top: 0;
  }
}
.business-custom .common-block__main {
  font-size: max(19px, 7.2cqw);
}

@media screen and (max-width: 768px) {
  .business-custom .common-block__main {
    font-size: 2.4rem;
  }
}
.business-contact {
  padding: 14.2rem 0 16.6rem;
  background-color: #fff;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .business-contact {
    padding: 5.6rem 1.6rem;
  }
}
.business-contact__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  max-width: 130rem;
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .business-contact__inner {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }
}
.business-contact-heading {
  font-family: "Noto Serif JP", serif;
  max-width: fit-content;
  margin-top: 12.7rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .business-contact-heading {
    margin-top: 0;
    text-align: center;
  }
}
.business-contact-heading__en {
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .business-contact-heading__en {
    font-size: 1.4rem;
  }
}
.business-contact-heading__desc {
  font-size: 2.6rem;
  line-height: 1.3846153846;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.6rem;
  color: #f07026;
}

@media screen and (max-width: 768px) {
  .business-contact-heading__desc {
    font-size: 1.8rem;
  }
}
.business-contact__list {
  max-width: 65rem;
  width: 100%;
}

.business-contact__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  border-bottom: 0.1rem solid #f5f3f2;
}

.business-contact__item a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.business-contact__item:active::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .business-contact__item {
    gap: 1rem;
  }
}
.business-contact__item .inner {
  display: flex;
  flex-direction: column;
}

.business-contact__item::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8rem;
  height: 0.1rem;
  left: 0;
  bottom: -0.1rem;
  background: #585956;
  transition: width 0.4s;
}

@media screen and (max-width: 768px) {
  .business-contact__item::after {
    transition: width 0s;
  }
}
.business-contact__item::before {
  display: inline-block;
  content: "";
}

.business-contact__item:nth-child(1) {
  padding: 0 0 1.2rem;
}

.business-contact__item:nth-child(1)::before {
  width: 5.3rem;
  aspect-ratio: 53/54;
  background: url(../images/business/tel.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .business-contact__item:nth-child(1)::before {
    position: relative;
    width: 3.4rem;
    top: 1rem;
  }
}
.business-contact__item:nth-child(2) {
  padding: 5.8rem 0 3.4rem;
}

.business-contact__item:nth-child(2)::before {
  width: 5.4rem;
  aspect-ratio: 54/40;
  background: url(../images/business/mail.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .business-contact__item:nth-child(2)::before {
    width: 3.4rem;
  }
}
@media (any-hover: hover) {
  .business-contact__item:hover::after {
    width: 100%;
  }
}
.business-contact__title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .business-contact__title {
    font-size: 1.8rem;
  }
}
.business-contact__main {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f07026;
}

@media screen and (max-width: 768px) {
  .business-contact__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-top: 1rem;
  }
}
.business-contact__main .text {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .business-contact__main .text {
    font-size: 1.6rem;
  }
}
.business-contact__main .tel {
  font-size: 4.2rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .business-contact__main .tel {
    font-size: 3.8rem;
  }
}
.business-contact__note {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .business-contact__note {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
}
/* company
******************************************************************************************/
.profile {
  padding: 23.8rem 0 23rem;
  background-color: #fff;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .profile {
    padding: 5.6rem 1.6rem;
  }
}
.profile__inner {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}

.profile__list {
  margin-top: 7rem;
}

@media screen and (max-width: 768px) {
  .profile__list {
    margin-top: 4rem;
  }
}
.profile__item {
  display: flex;
  align-items: flex-start;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
  padding: 1.8rem 0 1.8rem 2rem;
  border-bottom: 0.1rem solid #585956;
}

@media screen and (max-width: 768px) {
  .profile__item {
    flex-direction: column;
    font-size: 1.4rem;
    padding: 1rem 0;
  }
}
.profile__item dt {
  width: 25rem;
  font-weight: 500;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .profile__item dt {
    width: 100%;
  }
}
.profile__item dd {
  font-weight: 400;
  flex: 1;
}

.history {
  padding: 6rem 0 10rem;
  background: url(../images/company/bg.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .history {
    padding: 5.6rem 1.6rem;
    background-position: center center;
  }
}
.history__inner {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}

.history__list {
  position: relative;
  max-width: 117rem;
  width: 100%;
  overflow: hidden;
  margin-top: 6.4rem;
}

@media screen and (max-width: 768px) {
  .history__list {
    margin-top: 4rem;
  }
}
.history__list::after {
  position: absolute;
  display: block;
  content: "";
  width: 0.1rem;
  height: calc(100% - 7rem);
  top: 3.5rem;
  left: 14.25rem;
  background-color: #f07026;
}

@media screen and (max-width: 768px) {
  .history__list::after {
    height: calc(100% - 8rem);
    top: 2rem;
    left: 0.35rem;
  }
}
.history__item {
  display: flex;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
  padding: 1.2rem 0;
}

@media screen and (max-width: 768px) {
  .history__item {
    flex-direction: column;
    gap: 1rem;
    font-size: 1.4rem;
    padding: 1rem 0;
  }
}
.history__item span {
  position: relative;
  font-weight: 500;
  width: 22rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .history__item span {
    width: 100%;
    padding-left: 1.5rem;
  }
}
.history__item span::before {
  position: absolute;
  display: block;
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  top: 1.3rem;
  left: 13.8rem;
  border-radius: 50%;
  background-color: #f07026;
}

@media screen and (max-width: 768px) {
  .history__item span::before {
    width: 0.8rem;
    top: 0.8rem;
    left: 0;
    right: auto;
  }
}
.history__item p {
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .history__item p {
    padding-left: 1.5rem;
  }
}
/* プライバシーポリシー
******************************************************************************************/
.privacy_policy {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  background-color: #fff;
  color: #585956;
  padding: 23.8rem 0 22rem;
}

@media screen and (max-width: 768px) {
  .privacy_policy {
    font-size: 1.4rem;
    padding: 5.6rem 1.6rem;
  }
}
.privacy_policy__inner {
  max-width: 120rem;
  margin-inline: auto;
}

.privacy_policy__list {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  margin-top: 7.2rem;
}

@media screen and (max-width: 768px) {
  .privacy_policy__list {
    gap: 4rem;
    margin-top: 4rem;
  }
}
.privacy_policy__item dt {
  font-weight: 700;
  color: #333333;
}

.privacy_policy__note {
  margin-top: 3.6rem;
}

@media screen and (max-width: 768px) {
  .privacy_policy__note {
    margin-top: 2.4rem;
  }
}
/* news
******************************************************************************************/
.news {
  padding: 24.6rem 0 45rem;
}

@media screen and (max-width: 768px) {
  .news {
    padding: 5.6rem 1.6rem 7.2rem;
  }
}
.news__inner {
  max-width: 130rem;
  width: 100%;
  margin-inline: auto;
}

.news__item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: 2.6666666667;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 5.3rem 0;
  border-bottom: 0.1rem solid #585956;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    gap: 1rem;
    font-size: 1.4rem;
    line-height: 2;
    padding: 1.6rem 2.4rem 1.6rem 0;
  }
}
.news__item .time {
  width: 17rem;
  font-weight: 500;
  color: #f07026;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .news__item .time {
    width: 100%;
  }
}
.news__item::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1.1rem;
  aspect-ratio: 11/17;
  top: 50%;
  right: 0.9rem;
  translate: 0 -50%;
  background: url(../images/news/arrow.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  transition: background 0.4s;
}

@media screen and (max-width: 768px) {
  .news__item::after {
    width: 0.8rem;
  }
}
@media (any-hover: hover) {
  .news__item:hover .news__title {
    color: #f07026;
  }
  .news__item:hover::after {
    background: url(../images/news/arrow_orange.svg) no-repeat;
    background-size: contain;
  }
}
.news__title {
  flex: 1;
  transition: color 0.4s;
}

.news__title a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* contact
******************************************************************************************/
.contact-lead {
  padding: 25rem 0 8rem;
}

@media screen and (max-width: 768px) {
  .contact-lead {
    padding: 5.6rem 1.6rem;
  }
}
.contact-lead__block {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  padding: 3.9rem 1.6rem 4.6rem;
  background-color: #f7f7f7;
  color: #585956;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact-lead__block {
    padding: 3.2rem 1.6rem;
  }
}
.contact-lead__title {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .contact-lead__title {
    font-size: 1.8rem;
  }
}
.contact-lead__main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 3.7rem;
  color: #f07026;
}

@media screen and (max-width: 768px) {
  .contact-lead__main {
    gap: 0.8rem;
    margin-top: 2rem;
  }
}
.contact-lead__main .text {
  position: relative;
  font-size: 2.83rem;
  letter-spacing: 0.1em;
  top: 0.8rem;
}

@media screen and (max-width: 768px) {
  .contact-lead__main .text {
    font-size: 1.6rem;
  }
}
.contact-lead__main .tel {
  font-size: 6rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .contact-lead__main .tel {
    font-size: 3.8rem;
  }
}
.contact-lead__note {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 2.6rem;
}

@media screen and (max-width: 768px) {
  .contact-lead__note {
    font-size: 1.2rem;
    margin-top: 1.6rem;
  }
}
.contact {
  padding: 11rem 0 28rem;
  background-color: #333333;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 5.6rem 1.6rem 7.2rem;
  }
}
.contact__inner {
  max-width: 120rem;
  margin-inline: auto;
}

.contact__title {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 1.8rem;
  }
}
.contact-lead__mail {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 2.6rem 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact-lead__mail {
    font-size: 1.2rem;
    margin: 1.6rem 0;
  }
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 11.2rem;
}

@media screen and (max-width: 768px) {
  .contact__list {
    gap: 2.4rem;
    margin-top: 4rem;
  }
}
.contact__item {
  display: flex;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .contact__item {
    flex-direction: column;
    gap: 1rem;
    font-size: 1.4rem;
  }
}
.contact__item dt {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  width: 35rem;
  font-weight: 500;
  padding-top: 1.8rem;
  flex-shrink: 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .contact__item dt {
    align-items: center;
    width: 100%;
    padding-top: 0;
  }
}
.contact__item dt span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.2rem;
  background-color: #f07026;
  color: #fff;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .contact__item dt span {
    font-size: 1.2rem;
  }
}
.contact__item dd {
  flex: 1;
  color: #585956;
}

.contact__item dd.select {
  position: relative;
}

.contact__item dd.select::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1.7rem;
  aspect-ratio: 17/11;
  top: 50%;
  right: 2.7rem;
  translate: 0 -50%;
  background: url(../images/contact/arrow.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .contact__item dd.select::before {
    width: 1.4rem;
    right: 1.2rem;
  }
}
input[type=text],
input[type=email],
input[type=tel],
select {
  min-height: 6rem;
}

@media screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select {
    min-height: 4.8rem;
  }
}
input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: 1rem 2.9rem;
  background-color: #fff;
  border-radius: 0.5rem;
}

@media screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    padding: 1rem 1.2rem;
  }
}
textarea {
  min-height: 15rem;
}

input[type=submit] {
  display: block;
  width: 25rem;
  aspect-ratio: 250/60;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
  margin-left: 35rem;
  background-color: #f07026;
  color: #fff;
  text-align: center;
  border-radius: 0.5rem;
}

@media screen and (max-width: 768px) {
  input[type=submit] {
    width: 20rem;
    font-size: 1.6rem;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Sleep Merge Pillow 
******************************************************************************************/
.smp-lead {
  padding: 23.2rem 0 9.1rem;
  background-color: #fff;
  color: #585956;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .smp-lead {
    padding: 5.6rem 1.6rem;
  }
}
.smp-lead__inner {
  max-width: 120rem;
  margin-inline: auto;
}

.smp-lead__main {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .smp-lead__main {
    font-size: 2.4rem;
  }
}
.smp-lead__sub {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 1.6rem;
}

@media screen and (max-width: 768px) {
  .smp-lead__sub {
    font-size: 1.4rem;
    margin-top: 1.4rem;
  }
}
.smp-lead__row {
  display: flex;
  justify-content: space-between;
  margin-top: 8.5rem;
}

@media screen and (max-width: 768px) {
  .smp-lead__row {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
  }
}
.smp-lead__logo {
  width: 45.8333333333%;
  margin-top: 9.75%;
}

@media screen and (max-width: 768px) {
  .smp-lead__logo {
    width: 90%;
    margin-top: 0;
  }
}
.smp-lead__image {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .smp-lead__image {
    width: 100%;
  }
}
.smp-question {
  padding: 19.4rem 0 23.8rem;
  background-color: #333333;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .smp-question {
    padding: 5.6rem 0;
  }
}
.smp-question__main {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .smp-question__main {
    font-size: 2.4rem;
  }
}
.smp-question__sub {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 8.2rem;
}

@media screen and (max-width: 768px) {
  .smp-question__sub {
    font-size: 1.4rem;
    margin-top: 4rem;
  }
}
.smp-item {
  display: flex;
  color: #585956;
}

@media screen and (max-width: 768px) {
  .smp-item {
    flex-direction: column;
    text-align: center;
  }
}
.smp-item:nth-child(odd) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .smp-item:nth-child(odd) {
    flex-direction: column;
  }
}
.smp-item:nth-child(odd) .smp-item-text {
  padding-left: 10rem;
  padding-right: 10rem;
  background-color: #f7f7f7;
}

@media screen and (max-width: 768px) {
  .smp-item:nth-child(odd) .smp-item-text {
    padding: 2.4rem 1.6rem;
  }
}
.smp-item:nth-child(odd) .smp-item-text__inner {
  max-width: 65rem;
  margin-left: auto;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .smp-item:nth-child(odd) .smp-item-text__inner {
    margin-inline: auto;
  }
}
.smp-item:nth-child(even) .smp-item-text {
  padding-right: 8rem;
  padding-left: 10rem;
}

@media screen and (max-width: 768px) {
  .smp-item:nth-child(even) .smp-item-text {
    padding: 2.4rem 1.6rem;
  }
}
.smp-item:nth-child(even) .smp-item-text__inner {
  max-width: 65rem;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .smp-item:nth-child(even) .smp-item-text__inner {
    margin-inline: auto;
  }
}
.smp-item-text__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.smp-item__image {
  position: relative;
  width: 50vw;
  height: 75rem;
}

@media screen and (max-width: 768px) {
  .smp-item__image {
    width: 100%;
    height: auto;
  }
}
.smp-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .smp-item__image img {
    height: auto;
  }
}
.smp-item-text {
  width: 50vw;
}

@media screen and (max-width: 768px) {
  .smp-item-text {
    width: 100%;
  }
}
.smp-item-text__main {
  font-size: max(18px, 5.5384615385cqw);
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .smp-item-text__main {
    font-size: 2rem;
  }
}
.smp-item-text__sub {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 5.6rem;
}

@media screen and (max-width: 768px) {
  .smp-item-text__sub {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}
.smp-cta {
  padding: 26.5rem 0 40rem;
  background: url(../images/smp/cta_bg.webp) no-repeat;
  background-size: cover;
  color: #585956;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .smp-cta {
    padding: 7.2rem 1.6rem;
  }
}
.smp-cta__main {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .smp-cta__main {
    font-size: 2.4rem;
  }
}
.smp-cta__sub {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 4.3rem;
}

@media screen and (max-width: 768px) {
  .smp-cta__sub {
    font-size: 1.4rem;
    margin-top: 4rem;
  }
}
.smp-cta__btn {
  margin-top: 13.3rem;
}

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





.l-header__menu__sublist--pc {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.4s;
  visibility: hidden;
}
.l-header__menu__sublist--pc.is-open {
  opacity: 1;
  visibility: visible;
}

.c-header-subnav__inner {
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}





.c-header-subnav__body .c-header-subnav__lists {
  /* display: flex; */
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  flex-direction: column;
  gap: 100px;
  align-items: flex-start;
  row-gap: 20px;
}

.c-header-subnav__lists .c-header-subnav__item {
  margin-left: 0;
  text-align: center;
}

.c-header-subnav__link {
  display: block;
  position: relative;
  transition: color 0.4s;
}
@media (any-hover: hover) {
  .c-header-subnav__link:hover {
    color: #f07026;
  }
}

.c-header-subnav__link:before:hover {
  transform: rotate(-135deg);
}

.c-header-subnav__lists-service .c-header-subnav__link {
  text-align: center;
}

.c-header__toggle {
  padding: 6px 12px;
}

/*js-closeアイコン*/
.drawer-close__bar-wrap {
  width: 36px;
  height: 36px;
  position: relative;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 36px;
  height: 4px;
}

.drawer-icon__bar:nth-of-type(1) {
  top: 18px;
  transform: rotate(45deg);
}

.drawer-icon__bar:nth-of-type(2) {
  top: 18px;
  transform: rotate(-45deg);
}






/* =========================
   SP アコーディオンメニュー
========================= */

/* ストア行を横並びに */
.drawer-link__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 文字位置を他メニューと揃える */
.drawer-link__text {
  display: block;
  padding: 16px;
}


/* サブメニューは初期非表示 */
.js-accordion-list {
  display: none;
}

/* 矢印ボタン */
.drawer-accordion-btn {
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

/* 矢印（閉じてる時：∨） */
.drawer-accordion-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.25s ease;
}

/* 開いてる時：∧ */
.drawer-accordion-btn.is-open::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}