@charset "UTF-8";

/* common 
******************************************************************************************/
html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

@media (min-width: 769px) {
  html {
    font-size: clamp(7.5px, 0.5208333333vw, 10px);
  }
}

@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  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;
}

body.is-noscroll .is-fixed {
  background-color: transparent;
  box-shadow: none;
}

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: 174rem;
  width: 91%;
  margin: 0 auto;
  padding: 0 2rem;
}

@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-typeA {
  position: relative;
  padding-left: 2rem;
  color: #1A1311;
}

@media screen and (max-width: 768px) {
  .heading-typeA {
    padding-left: 1rem;
  }
}

.heading-typeA .en {
  font-size: 6rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: 0.6;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .heading-typeA .en {
    font-size: 2.6rem;
  }
}

.heading-typeA .ja {
  display: block;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 1.2rem;
}

@media screen and (max-width: 768px) {
  .heading-typeA .ja {
    font-size: 1rem;
    margin-top: 0.6rem;
  }
}

.heading-typeA::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 0.5rem;
  height: 8rem;
  margin-right: 1.5rem;
  background-color: #ED8500;
  top: -0.4rem;
  left: 0;
}

@media screen and (max-width: 768px) {
  .heading-typeA::before {
    width: 0.3rem;
    height: 4rem;
    top: -0.2rem;
    margin-right: 0.8rem;
  }
}

.heading-typeA.white {
  color: #fff;
}

.heading-typeA.white::before {
  background-color: #fff;
}

.heading-typeA.border_orange::before {
  background-color: #ED8500;
}

.heading-typeA.center {
  padding-left: 0;
  padding-top: 0;
  text-align: center;
}

.heading-typeA.center::before {
  position: static;
  display: block;
  margin: 0 auto 2rem;
  background-color: #ED8500;
}

@media screen and (max-width: 768px) {
  .heading-typeA.center::before {
    margin: 0 auto 1rem;
  }
}

.btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ED8500;
  width: fit-content;
  transition: color 0.4s;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.4rem;
    gap: 1rem;
  }
}

.btn span {
  position: relative;
  display: block;
  content: "";
  width: 6rem;
  height: 6rem;
  top: 0;
  left: 0;
  background-color: #ED8500;
  border-radius: 50%;
  transition: background-color 0.4s;
}

@media screen and (max-width: 768px) {
  .btn span {
    width: 3rem;
    height: 3rem;
  }
}

.btn span::before {
  position: absolute;
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  rotate: 45deg;
  transition: all 0.4s;
}

@media screen and (max-width: 768px) {
  .btn span::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.btn.white {
  color: #fff;
}

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

.btn.white span::before {
  border-top: 0.2rem solid #ED8500;
  border-right: 0.2rem solid #ED8500;
}

.common-mv {
  position: relative;
  height: 70rem;
}

@media screen and (max-width: 768px) {
  .common-mv {
    height: 25rem;
  }
}

.common-mv .container {
  position: absolute;
  top: calc(50% + 4rem);
  left: 50%;
  translate: -50% -50%;
}

@media screen and (max-width: 768px) {
  .common-mv .container {
    top: calc(50% + 4rem);
  }
}

.common-mv__image {
  height: 100%;
}

.common-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumbs {
  padding-top: 3rem;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding-top: 1rem;
  }
}

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

.breadcrumbs li {
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: #000;
}

@media screen and (max-width: 768px) {
  .breadcrumbs li {
    font-size: 1.2rem;
  }
}

.breadcrumbs li:not(:first-child)::before {
  display: inline-block;
  content: "";
  width: 1rem;
  height: 0.1rem;
  margin-right: 1rem;
  background-color: #000;
  vertical-align: middle;
}

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

.container:has(.breadcrumbs) {
  width: 100%;
}

.common-bottom {
  width: 100%;
  height: 40rem;
  margin-top: 12.5rem;
}

@media screen and (max-width: 768px) {
  .common-bottom {
    height: 20rem;
    margin-top: 6rem;
  }
}

.common-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* header
******************************************************************************************/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  transition: all 0.6s;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  }
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.header__inner {
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0;
  padding: 0 0 0 7.3rem;
  margin: auto;
  background-color: transparent;
  z-index: 2;
}

@media screen and (max-width: 1025px) {
  .header__inner {
    padding: 0 0 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  .header__inner {
    display: flex;
    padding: 0.5rem 0 0.5rem 2rem;
  }
}

.header__logo {
  position: relative;
  width: 17rem;
  z-index: 2;
  float: left;
  top: 2rem;
}

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

@media screen and (max-width: 768px) {
  .header__logo {
    width: 12rem;
    top: 0;
  }
}

.header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.header-nav {
  flex-shrink: 0;
  margin-left: auto;
}

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

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 4rem;
}

@media screen and (max-width: 1025px) {
  .header-nav__list {
    gap: 2rem;
  }
}

.header-nav__item {
  font-size: 1.8rem;
}

@media screen and (max-width: 1025px) {
  .header-nav__item {
    font-size: 1.6rem;
  }
}

.header-nav__item a {
  transition: opacity 0.4s;
}

.header-nav__item:hover>a {
  opacity: 0.6;
}

.header-nav__item:hover>.header-nav-child {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-nav-child {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s, visibility 0.4s;
}

.header-nav-child__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 119rem;
  width: 100%;
  padding: 6rem 2rem 4rem;
  margin: 0 auto;
}

.header-nav-child__image {
  position: relative;
  width: 35rem;
}

.header-nav-child__image a:hover {
  opacity: 0.7;
}

.header-nav-child__label {
  position: absolute;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  left: 2rem;
  bottom: 1.7rem;
  color: #fff;
}

.header-nav-child__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 0;
  width: 56.5217391304%;
  min-width: 60rem;
}

.header-nav-child__item {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #1a1311;
}

.header-nav-child__item:hover::after {
  translate: 0.5rem;
}

.header-nav-child__item:nth-child(2),
.header-nav-child__item:nth-child(5) {
  margin: 0 auto;
}

.header-nav-child__item:nth-child(3n) {
  margin-left: auto;
}

.header-nav-child__item::after {
  display: inline-block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #ED8200;
  border-right: 0.1rem solid #ED8200;
  rotate: 45deg;
  margin-left: 0;
  transition: translate 0.4s;
  flex-shrink: 0;
}

.header-nav-child__item a {
  padding-right: 3rem;
  flex-shrink: 0;
  transition: opacity 0.4s;
}

.header-nav-child__item a:hover {
  opacity: 0.6;
}

.header-nav__item--company .header-nav-child__item {
  width: 13rem;
}

.header-nav__item--company .header-nav-child__item a {
  width: 100%;
  padding-right: 0;
}

.header-nav__item--company .header-nav-child__item::after {
  margin-left: 0;
}

.header-nav__item--business .header-nav-child__list {
  grid-template-columns: auto 21.5rem auto;
}

.header-nav__item--business .header-nav-child__item:nth-child(2),
.header-nav__item--business .header-nav-child__item:nth-child(5) {
  width: 100%;
  margin: 0 auto 0 0;
}

.header-nav__item--business .header-nav-child__item:nth-child(2) a,
.header-nav__item--business .header-nav-child__item:nth-child(5) a {
  width: 100%;
  padding-right: 0;
}

.header-nav__item--business .header-nav-child__item:nth-child(2)::after,
.header-nav__item--business .header-nav-child__item:nth-child(5)::after {
  margin-left: -1rem;
}

.header__contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  width: 18rem;
  height: 8rem;
  letter-spacing: 0.05em;
  background-color: #FEC800;
  color: #fff;
  transition: background-color 0.5s ease 0s;
}

.header__contact:hover {
  background-color: #ED8500;
}

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

.header__contact span::before {
  display: inline-block;
  content: "";
  width: 2.3rem;
  height: 1.4rem;
  margin-right: 1.2rem;
  background: url(../images/common/mail.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}


.header__web {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 18rem;
  height: 8rem;
  font-size: 1.6rem;
  letter-spacing: 0;
  background-color: #ED8500;
  color: #fff;
  transition: background-color 0.5s ease 0s;
}

.header__web.black {
	margin-left: 4rem;
	background-color: #333;
}

@media screen and (max-width: 1025px) {
  .header__web.black {
    margin-left: 2rem;
  }
}

.header__web:hover {
  background-color: #FEC800;
}

.header__web.black:hover {
	background-color: #FEC800;
}

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

.header__web span {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.header__web span::after {
  position: relative;
  display: inline-block;
  content: "";
  width: 2.6rem;
  height: 2.3rem;
  background: url(../images/common/cart.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  top: -0.4rem;
}

.header-btn {
  position: relative;
  display: none;
  width: 58px;
  height: 58px;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.4s;
}

@media screen and (max-width: 768px) {
  .header-btn {
    display: block;
    width: 40px;
    height: 40px;
    top: 50%;
    right: 0;
  }
}

.header-btn span {
  position: absolute;
  width: 28px;
  height: 3px;
  left: 7px;
  background-color: #ED8200;
  -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: 13px;
}

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

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

.header-btn span.close {
  position: absolute;
  width: 28px;
  height: 3px;
  left: 7px;
}

@media screen and (max-width: 768px) {
  .header-btn span.close {
    height: 2px;
  }
}

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

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

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

.drawer {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 100%;
  padding-top: 10rem;
  padding-bottom: 16rem;
  transition: left 0.6s;
  z-index: 1;
  background: #fff;
  overflow: auto;
}

.drawer.slidein {
  left: 0;
}

.drawer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.drawer__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9rem;
  width: fit-content;
  padding: 3rem;
  overflow: auto;
}

.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;
  gap: 3rem;
  max-width: 48rem;
  width: 100%;
}

.drawer-link__item {
  position: relative;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #333;
}

.drawer-link__item>a:active,
.drawer-link__item>a:hover {
  opacity: 0.6;
}

.drawer-link__item>a:active .drawer-link-child__item a,
.drawer-link__item>a:hover .drawer-link-child__item a {
  opacity: 1;
}

.drawer-link-child {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.drawer-link-child__item {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

.drawer-link-child__item a:active,
.drawer-link-child__item a:hover {
  opacity: 0.6;
}

.drawer-link-child__item::after {
  display: inline-block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #ED8200;
  border-right: 0.1rem solid #ED8200;
  rotate: 45deg;
  margin-left: 1rem;
  margin-right: 1rem;
  transition: translate 0.4s;
  flex-shrink: 0;
}

.drawer__label {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  top: 0.7rem;
  right: 0;
  border-top: 0.2rem solid #000;
  border-right: 0.2rem solid #000;
  transition: transform 0.4s;
  transform-origin: 1rem 0.5rem;
  rotate: 135deg;
}

.drawer__checkbox {
  display: none;
}

.drawer__checkbox:checked~.drawer-link-child {
  max-height: 20rem;
  margin-top: 3rem;
}

.drawer__checkbox:checked~.drawer__label {
  transform: rotate(180deg);
  top: 0.5rem;
  right: -0.5rem;
}

.drawer__wrap {
  position: fixed;
  width: 100%;
  display: flex;
  flex-direction: column;
  top: auto;
  left: 100%;
  bottom: 0;
  transition: left 0.6s;
}

.drawer__wrap.slidein {
  top: auto;
  left: 0;
}

.drawer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  width: 100%;
  height: 8rem;
  letter-spacing: 0.05em;
  background-color: #FEC800;
  color: #fff;
}

.drawer__contact span::before {
  display: inline-block;
  content: "";
  width: 2.3rem;
  height: 1.4rem;
  margin-right: 1.2rem;
  background: url(../images/common/mail.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.drawer__web {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 8rem;
  font-size: 1.6rem;
  letter-spacing: 0;
  background-color: #ED8500;
  color: #fff;
}

.drawer__web.black {
  background-color: #333;
}

.drawer__web span {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.drawer__web span::after {
  position: relative;
  display: inline-block;
  content: "";
  width: 2.6rem;
  height: 2.3rem;
  background: url(../images/common/cart.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  top: -0.4rem;
}

/* footer
******************************************************************************************/
.footer {
  position: relative;
  padding: 6.8rem 2rem calc(6.8rem - 40px);
  border-top: 0.2rem solid #ED8500;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 4rem 2rem 2rem;
  }
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  max-width: 170rem;
  width: 100%;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 2rem;
  }
}

.footer__inner .banner {
	margin: 0 auto;
}
@media screen and (min-width: 769px){
	.footer__inner .banner {
		order: 2;
	}
}

.footer__left {
  padding-top: 3.4rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .footer__left {
    padding-top: 0;
  }
}

.footer__logo {
  width: 13rem;
}

.footer__founded {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.07em;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .footer__founded {
    font-size: 1.2rem;
  }
}

.footer__company-name {
  line-height: 1;
  font-weight: 500;
  margin-top: -0.3rem;
}

@media screen and (max-width: 768px) {
  .footer__company-name {
    font-size: 1.4rem;
  }
}

.footer__address {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.07em;
  margin-top: 3.7rem;
}

@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}

.footer__address p:nth-child(2) {
  margin-top: 1.8rem;
}

@media screen and (max-width: 768px) {
  .footer__address p:nth-child(2) {
    margin-top: 1rem;
  }
}

.copyright {
  font-size: 1.5rem;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  color: #A59B84;
}

@media screen and (max-width: 768px) {
  .copyright {
    font-size: 1rem;
    margin-top: 3rem;
    text-align: center;
  }
}

.footer__right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 98rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer__right {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.footer__links:nth-of-type(2) .footer__link.parent:nth-of-type(7),
.footer__links:nth-of-type(3) .footer__link.parent:nth-of-type(7) {
  margin-top: 3.8rem;
}

@media screen and (max-width: 768px) {

  .footer__links:nth-of-type(2) .footer__link.parent:nth-of-type(7),
  .footer__links:nth-of-type(3) .footer__link.parent:nth-of-type(7) {
    margin-top: 1rem;
  }
}

.footer__link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.875;
  transition: color 0.4s;
}

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

.footer__link span.arrow {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #A59B84;
  border-right: 0.1rem solid #A59B84;
  rotate: 45deg;
  margin-left: auto;
  transition: margin-right 0.4s;
}

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

.footer__link:hover {
  color: #000;
}

.footer__link:hover span.arrow {
  margin-right: -0.5rem;
}

.footer__link.parent {
  font-weight: 500;
  padding-bottom: 0.9rem;
  margin-top: 2.5rem;
  border-bottom: 0.1rem solid #A59B84;
}

@media screen and (max-width: 768px) {
  .footer__link.parent {
    margin-top: 1rem;
  }
}

.footer__link.child {
  margin-top: 0.5rem;
}

.page-top {
  position: fixed;
  display: block;
  content: "";
  width: 6rem;
  height: 6rem;
  bottom: 20rem;
  right: 5.3rem;
  background-color: #ED8500;
  border-radius: 50%;
  z-index: 2;
  display: none;
}

.page-top::before {
  position: absolute;
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  rotate: -45deg;
}

.mv {
  position: relative;
}

@media screen and (max-width: 768px) {
  .mv__image {
    height: 100svh;
  }
}

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

.swiper {
  position: relative;
  width: 100%;
}

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

.swiper-slide {
  height: auto;
}

.swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: absolute;
  width: fit-content;
  left: auto;
  right: 8.9rem;
  bottom: 6.4rem;
}

@media screen and (max-width: 768px) {

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    right: 2rem;
    bottom: 1rem;
  }
}

.swiper-pagination-bullet {
  width: 4rem;
  height: 0.3rem;
  border-radius: 0;
  background-color: #fff;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 2rem;
    height: 0.2rem;
  }
}

.swiper-pagination-bullet-active {
  background-color: #ED8200;
}

.mv__text {
  position: absolute;
  font-size: 2.8645833333vw;
  line-height: 2;
  font-weight: 800;
  letter-spacing: 0.1em;
  bottom: 9.5833333333vw;
  left: 5.7291666667vw;
  color: #fff;
  text-decoration: underline 0.3rem;
  text-underline-offset: 0.8854166667vw;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .mv__text {
    font-size: 6.5vw;
  }
}

.message {
  padding: 16.5rem 0 5.7rem;
}

@media screen and (max-width: 768px) {
  .message {
    padding: 6rem 0;
  }
}

.message__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 182rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .message__inner {
    flex-direction: column;
    max-width: auto;
  }
}

.message__inner::before {
  position: absolute;
  display: block;
  content: "";
  width: 52.5%;
  aspect-ratio: 957/550;
  top: 17%;
  left: 14.4%;
  background-color: #F7F7F7;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .message__inner::before {
    aspect-ratio: 550/957;
    top: 50%;
    left: 40%;
    translate: 0 -50%;
  }
}

.message__text {
  width: 38%;
  padding-top: 1.5rem;
  padding-left: 7rem;
}

@media screen and (max-width: 768px) {
  .message__text {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
}

.message-text__inner {
  max-width: 54rem;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .message-text__inner {
    max-width: auto;
    margin-left: 0;
  }
}

.message__catch {
  font-size: 3.6rem;
  line-height: 1.4166666667;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 5.8rem;
  color: #ED8200;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .message__catch {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}

.message__description {
  line-height: 2;
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .message__description {
    margin-top: 2rem;
  }
}

.message__image {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .message__image {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .pick_up_contents .heading-typeA .en {
    line-height: 1;
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .pick_up_contents .heading-typeA::before {
    top: 0.2rem;
    height: 4.4rem;
  }
}

.top-container {
  max-width: 1920px;
  width: 75%;
  padding: 0 0.2rem 0 0;
  margin: 0 auto;
  margin-left: max(11rem, 50% - 85rem);
}

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

.banners {
  position: relative;
  padding: 8rem 0 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .banners {
    padding: 4rem 0 0;
  }
}

.banners::before {
  position: absolute;
  display: block;
  content: "";
  width: calc(50% + 39.0625vw);
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top, #FEC800, #ED8500);
  z-index: -1;
}

@media (min-width: 1921px) {
  .banners::before {
    width: calc(50% + 75rem);
  }
}

.banners__inner {
  max-width: 194rem;
  width: 100%;
  padding: 0 0 0 2rem;
  margin: 0 auto;
}

.banners__list {
  width: calc(100% - 9rem);
  margin: 6rem 0 0 auto;
}

@media screen and (max-width: 768px) {
  .banners__list {
    width: calc(100% - 2rem);
    margin: 3rem 0 0 auto;
  }
}

.banners__item {
  position: relative;
  padding: 14.8rem 5.8rem 3.9rem;
}

@media screen and (max-width: 768px) {
  .banners__item {
    padding: 7rem 3rem 2rem;
  }
}

.banners__item a:hover::before {
  background-color: rgba(0, 0, 0, 0.6);
}

.banners__item:hover .btn {
  color: #fff;
}

.banners__item:hover .btn span {
  background-color: #fff;
}

.banners__item:hover .btn span::before {
  border-top: 0.2rem solid #ED8500;
  border-right: 0.2rem solid #ED8500;
}

.banners__item a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.4s;
}

.banners__item:nth-child(1) {
  background: rgba(0, 0, 0, 0.9) url(../images/top/pickup01.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.banners__item:nth-child(2) {
  background: url(../images/top/pickup02.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.banners__item:nth-child(3) {
  background: url(../images/top/pickup03.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.banners__item:nth-child(4) {
  background: url(../images/top/pickup04.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.banners__text {
  position: relative;
  max-width: 100rem;
  color: #fff;
}

.banners__text p {
  line-height: 2;
  margin-top: 3.5rem;
  margin-bottom: 2.3rem;
}

@media screen and (max-width: 768px) {
  .banners__text p {
    margin-top: 1.7rem;
    margin-bottom: 1.1rem;
  }
}

.banners__heading .en {
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 768px) {
  .banners__heading .en {
    font-size: 2.4rem;
  }
}

.banners__heading .ja {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .banners__heading .ja {
    font-size: 1rem;
    margin-top: 0.2rem;
  }
}

.top_links {
  padding: 14rem 2rem 15.5rem;
}

@media screen and (max-width: 768px) {
  .top_links {
    padding: 7rem 2rem 8rem;
  }
}

.top_links__wrap {
  max-width: 170rem;
  width: 100%;
  padding: 8.7rem 10rem 7rem;
  margin: 0 auto;
  background-color: #f7f7f7;
}

@media screen and (max-width: 768px) {
  .top_links__wrap {
    max-width: auto;
    padding: 4rem 5rem 3rem;
  }
}

.top_links__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 3rem;
}

@media (max-width: 1025px) {
  .top_links__list {
    grid-template-columns: repeat(2, 256px);
  }
}

@media screen and (max-width: 768px) {
  .top_links__list {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 2fr));
  }
}

.top_links__item {
  position: relative;
  transition: opacity 0.4s;
}

.top_links__item:hover {
  opacity: 0.6;
}

.top_links__image {
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.15);
}

.top_links__text {
  display: flex;
  justify-content: space-between;
  margin-top: 1.8rem;
  color: #1A1311;
}

.top_links__text h3 {
  font-size: clamp(3rem, 2.1875vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 768px) {
  .top_links__text h3 {
    font-size: 2.4rem;
  }
}

.top_links__text span {
  display: block;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .top_links__text span {
    font-size: 1.4rem;
  }
}

.top_links__text a.btn {
  flex-shrink: 0;
}

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

.top_links__item:nth-child(3) .top_links__text h3,
.top_links__item:nth-child(4) .top_links__text h3 {
  letter-spacing: 0;
}

.top_links-banner {
  position: relative;
  max-width: 130rem;
  width: 100%;
  background: url(../images/top/banner.webp) no-repeat;
  background-size: cover;
  padding: 7.2rem 5.5rem 4.6rem 7rem;
  margin: 12.5rem auto 0;
}

.top_links-banner a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .top_links-banner a {
    flex-direction: column;
  }
}

.top_links-banner a:hover::before {
  background-color: rgba(0, 0, 0, 0.6);
}

.top_links-banner:hover .btn {
  position: relative;
  color: #fff;
}

.top_links-banner:hover .btn span {
  background-color: #fff;
}

.top_links-banner:hover .btn span::before {
  border-top: 0.2rem solid #ED8500;
  border-right: 0.2rem solid #ED8500;
}

.top_links-banner a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.4s;
}

@media screen and (max-width: 768px) {
  .top_links-banner {
    flex-direction: column;
    align-items: flex-start;
    max-width: auto;
    padding: 4rem 3rem 3rem 3rem;
    margin: 6rem auto 0;
  }
}

.top_links-banner .btn {
  position: relative;
  margin-top: -0.7rem;
}

@media screen and (max-width: 768px) {
  .top_links-banner .btn {
    margin-top: 0.7rem;
  }
}

.top_links-banner__text {
  position: relative;
  color: #fff;
}

.top_links-banner__text p.strong {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 4.3rem;
}

@media screen and (max-width: 768px) {
  .top_links-banner__text p.strong {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}

.top_links-banner__text p {
  line-height: 3.0555555556;
  letter-spacing: 0.05em;
  margin-top: -0.3rem;
}

@media screen and (max-width: 768px) {
  .top_links-banner__text p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 1rem;
  }
}

.news-topics__image {
  width: 100%;
}

.news-topics__inner {
  max-width: 192rem;
  margin: 0 auto;
}

.news-topics-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 84%;
  margin-top: -13%;
  padding: 7.3rem 11.5rem 12rem 11rem;
  background-color: #fff;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
  .news-topics-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .news-topics-content {
    gap: 1rem;
    padding: 3rem 2rem 2rem;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  }
}

.news-topics__left {
  margin-top: 4.5rem;
}

@media (max-width: 1200px) {
  .news-topics__left {
    display: contents;
  }
}

.news-topics__left .btn {
  margin-top: 7.2rem;
}

@media (max-width: 1200px) {
  .news-topics__left .btn {
    margin-top: 2rem;
    order: 3;
  }
}

@media screen and (max-width: 768px) {
  .news-topics__left .btn {
    margin-top: 1rem;
  }
}

.news-topics__left .btn:hover {
  color: #333;
}

.news-topics__left .btn:hover span {
  background-color: #333;
}

.news-topics__left .btn:hover span::before {
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}

.news-topics__right {
  width: 53%;
}

@media (max-width: 1200px) {
  .news-topics__right {
    width: 100%;
  }
}

.news-topics__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #CCCCCC;
}

@media screen and (max-width: 768px) {
  .news-topics__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 1.5rem 1rem 0;
  }
}

.news-topics__item:hover span.arrow {
  right: -0.5rem;
}

.news-topics__item time {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ED8500;
}

@media screen and (max-width: 768px) {
  .news-topics__item time {
    font-size: 1.4rem;
  }
}

.news-topics__item p {
  line-height: 1.7222222222;
  letter-spacing: 0.05em;
}

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

.news-topics__item span.arrow {
  position: absolute;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 0.2rem solid #1A1311;
  border-right: 0.2rem solid #1A1311;
  rotate: 45deg;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  transition: right 0.4s;
}

@media screen and (max-width: 768px) {
  .news-topics__item span.arrow {
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.1rem solid #1A1311;
    border-right: 0.1rem solid #1A1311;
  }
}

.calendar {
  padding: 12.4rem 2rem 25.5rem;
}

@media screen and (max-width: 768px) {
  .calendar {
    padding: 6rem 2rem 12rem;
  }
}

.calendar .heading-typeA {
  color: #fff;
  text-align: center;
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .calendar .heading-typeA {
    margin-bottom: 2rem;
  }
}

.calendar .heading-typeA::before {
  display: none;
}

.calender__inner {
  max-width: 150rem;
  width: 100%;
  margin: 0 auto;
  padding: 6.7rem 10rem 6.7rem 10rem;
  background-color: #ED8500;
}

@media screen and (max-width: 768px) {
  .calender__inner {
    padding: 3rem 2rem 5rem;
  }
}

.calendar__contents {
	width: 100%;
	padding: 100px;
	box-sizing: border-box;
	background-color: #fff;
}
@media screen and (max-width: 768px){
	.calendar__contents {
		padding: 20px 10px;
	}
}
.fc .fc-toolbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px){
	.fc .fc-toolbar {
		flex-direction: column;
	}
}
.fc-left h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #000 !important;
}
@media screen and (max-width: 768px){
	.fc-left {
		margin: 0 0 10px!important;
	}
	.fc-left h2 {
		font-size: 18px !important;
	}
}
.fc-right {
    order: 3;
}
.fc-right .fc-button-group {
	background-color: #efefef;
    box-sizing: border-box;
}
.fc-right .fc-button-group:first-of-type button {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.fc-right .fc-button-group:nth-of-type(2) {
    margin-left: 0;
}
.fc-right .fc-button-group:nth-of-type(2) button {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fc-right .fc-button-group:last-of-type button {
	border: none;
	border-radius: 5px;
	background-color: #ED8500;
	color: #fff;
	opacity: 1;
}
.fc th {
    height: 70px;
    vertical-align: middle !important;
}
.fc-ltr .fc-basic-view .fc-day-number {
    padding-right: 5px !important;
    padding-top: 5px !important;
}
.fc-basic-view tbody .fc-row {
    min-height: 100px !important;
}

.top-iso {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  max-width: 130rem;
  width: 100%;
  margin: 13rem auto 0;
  padding: 3.2rem 3.8rem 3.6rem 3rem;
  border: 1px solid #FEC800;
  transition: 0.4s;
}

.top-iso:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .top-iso {
    flex-direction: column;
    gap: 2rem;
    margin: 6rem auto 0;
    padding: 1.6rem 1.9rem 1.8rem 1.5rem;
  }
}

.top-iso__text {
  color: #1A1311;
}

.top-iso__text h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-indent: -0.3em;
}

@media screen and (max-width: 768px) {
  .top-iso__text h3 {
    font-size: 2rem;
  }
}

.top-iso__text p {
  line-height: 2;
  margin-top: 1.4rem;
}

@media screen and (max-width: 768px) {
  .top-iso__text p {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

.top-iso__image {
  width: 21.5rem;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

@media screen and (max-width: 768px) {
  .top-iso__image {
    width: 16rem;
    margin-top: 0;
  }
}

/* contact
******************************************************************************************/
.contact {
  position: relative;
  padding: 124px 0 150px;
  background-color: #F2F7FF;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 60px 0 56px;
  }
}

.contact__lead {
  line-height: 2;
  letter-spacing: 0;
  margin-top: 14.5rem;
}

@media screen and (max-width: 768px) {
  .contact__lead {
    margin-top: 6rem;
  }
}

.contact__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.contact-tel {
  padding: 7.8rem 0 6.5rem;
  margin-top: 6.6rem;
  background-color: #ED8500;
}

@media screen and (max-width: 768px) {
  .contact-tel {
    padding: 4rem 0;
    margin-top: 3rem;
  }
}

.contact-tel__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 114rem;
  padding: 0 2rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contact-tel__inner {
    flex-direction: column;
  }
}

.tel-info {
  position: relative;
  top: -0.8rem;
}

@media screen and (max-width: 768px) {
  .tel-info {
    top: 0;
    text-align: center;
  }
}

.tel-info .number {
  font-size: 7.2rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .tel-info .number {
    font-size: 4rem;
  }
}

.tel-info p {
  letter-spacing: 0.05em;
  margin-top: 1.6rem;
}

@media screen and (max-width: 768px) {
  .tel-info p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 1rem;
  }
}

.tel-info p span {
  display: inline-block;
  margin: 0 2em;
}

@media screen and (max-width: 768px) {
  .tel-info p span {
    margin: 0 1em;
  }
}

.contact-form {
  padding-top: 10.7rem;
  padding-bottom: 25rem;
  background-color: #F7F7F7;
}

@media screen and (max-width: 768px) {
  .contact-form {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.contact-form__inner {
  max-width: 114rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.contact-thanks {
	margin-top: 40px;
	text-align: center;
	line-height: 1.6;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 13.4rem;
}

@media screen and (max-width: 768px) {
  .contact__list {
    gap: 2rem;
    margin-top: 7rem;
  }
}

.contact__item {
  display: flex;
  gap: 8rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .contact__item {
    flex-direction: column;
    gap: 12px;
  }
}

.contact__item label {
  display: flex;
  width: 31.4rem;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 1.9rem;
}

@media screen and (max-width: 768px) {
  .contact__item label {
    align-items: baseline;
    font-size: 1.6rem;
    padding-top: 0;
  }
}

.contact__item input {
  width: 100%;
}

.contact__item.select {
  position: relative;
}

.contact__item.select::before {
  position: absolute;
  display: block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-right: 0.1rem solid #666666;
  border-bottom: 0.1rem solid #666666;
  top: 50%;
  right: 3rem;
  translate: 0 -50%;
  rotate: 45deg;
  pointer-events: none;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .contact__item.select::before {
    width: 0.8rem;
    height: 0.8rem;
    right: 2rem;
	top: 70%;
  }
}

.contact__item .req {
  display: inline-block;
  height: 1.9rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.9rem;
  padding: 0 0.3rem;
  margin-left: 0.6rem;
  background-color: #ED8500;
  text-align: center;
  color: #fff;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .contact__item .req {
    height: 1.5rem;
    line-height: 1.5rem;
    padding: 0 0.2rem;
    margin-left: 0.5rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 1.9rem 3rem;
  border-radius: 0.5rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {

  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
  }
}

textarea {
  min-height: 20rem;
}

@media screen and (max-width: 768px) {
  textarea {
    min-height: 14rem;
  }
}

label:has(input[type=checkbox]) {
  position: relative;
  padding-left: 48px;
}

@media screen and (max-width: 768px) {
  label:has(input[type=checkbox]) {
    padding-left: 24px;
  }
}

label:has(input[type=checkbox])::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  top: -5px;
  left: 0;
  border-radius: 3px;
  border: 1px solid #3F3F3F;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  label:has(input[type=checkbox])::before {
    width: 20px;
    height: 20px;
    top: -1px;
  }
}

label:has(input[type=checkbox]:checked)::before {
  background-color: #fff;
}

label:has(input[type=checkbox]:checked)::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 10px;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  top: 3px;
  left: 5px;
  transform: rotate(-50deg);
}

@media screen and (max-width: 768px) {
  label:has(input[type=checkbox]:checked)::after {
    width: 14px;
    height: 7px;
    top: 4px;
    left: 3px;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

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

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: none;
    margin-top: 10px;
}

.wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
    display: block;
}


.contact-btn-wrap {
  margin: 5rem auto 0;
}

@media screen and (max-width: 768px) {
  .contact-btn-wrap {
    margin: 2rem auto 0;
  }
}

input[type=submit] {
  display: block;
  width: 30rem;
  height: 6rem;
  font-weight: 600;
  margin: 0 auto;
  background-color: #ED8500;
  color: #fff;
  text-align: center;
  transition: opacity 0.4s;
  border-radius: 0.5rem;
  cursor: pointer;
}

input[type=submit]:hover,
input[type=submit]:active {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  input[type=submit] {
    width: 24rem;
    height: 5rem;
  }
}

.wpcf7-form-control-wrap {
	width: 100%;
}

/* 404
******************************************************************************************/
.page-404 {
  position: relative;
  min-height: calc(100vh - 316px);
  padding: 90px 0 120px;
}

@media screen and (max-width: 768px) {
  .page-404 {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
  }
}

.page-404 p {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #242424;
  text-align: center;
}

.page-404 a {
  display: block;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #242424;
  margin-top: 40px;
  text-align: center;
  text-decoration: underline;
  transition: opacity 0.4s;
}

.page-404 a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .page-404 a {
    margin-top: 20px;
  }
}

.page-404__inner {
  position: relative;
}

/* area
******************************************************************************************/
.area-top {
  padding-top: 15.8rem;
}

@media screen and (max-width: 768px) {
  .area-top {
    padding-top: 6rem;
  }
}

.area-top__inner {
  display: flex;
  justify-content: space-between;
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .area-top__inner {
    flex-direction: column;
    gap: 3rem;
    max-width: auto;
  }
}

.area-top__text {
  width: 50%;
  padding-top: 4.5rem;
}

@media screen and (max-width: 768px) {
  .area-top__text {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
}

.area-top__text h2 {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .area-top__text h2 {
    font-size: 2.5rem;
  }
}

.area-top__text p {
  line-height: 2;
  margin-top: 5.4rem;
}

@media screen and (max-width: 768px) {
  .area-top__text p {
    margin-top: 3rem;
  }
}

.area-top__image {
  width: 45%;
  translate: 2rem;
}

@media screen and (max-width: 768px) {
  .area-top__image {
    width: 100%;
    max-width: 58.5rem;
    margin: 0 auto;
    translate: 0;
  }
}

.area-bottom {
  padding: 14.5rem 2rem 17.3rem;
  background: url(../images/area/bottom.webp) no-repeat;
  background-size: cover;
  margin-top: 8rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .area-bottom {
    padding: 5rem 2rem;
    margin-top: 4rem;
  }
}

.area-bottom__text {
  max-width: 130rem;
  padding: 7rem 10rem 9.6rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 768px) {
  .area-bottom__text {
    padding: 3rem 2rem;
  }
}

.area-bottom__text h2 {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .area-bottom__text h2 {
    font-size: 2.5rem;
  }
}

.area-bottom__text p {
  line-height: 2;
  margin-top: 5.2rem;
}

@media screen and (max-width: 768px) {
  .area-bottom__text p {
    margin-top: 3rem;
    text-align: left;
  }
}

/* iso
******************************************************************************************/
.iso-container {
  padding: 15.5rem 2rem;
}

@media screen and (max-width: 768px) {
  .iso-container {
    padding: 6rem 2rem;
  }
}

.iso-top {
  max-width: 130rem;
  width: 100%;
  padding: 8.5rem 2rem 10rem;
  margin: 0 auto;
  background: url(../images/iso/top.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .iso-top {
    padding: 4rem 2rem 5rem;
  }
}

.iso-top__inner {
  width: 87%;
  padding: 5.4rem 5rem 8rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .iso-top__inner {
    width: 100%;
    padding: 2rem 2rem 4rem;
  }
}

.iso-top__inner h2 {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .iso-top__inner h2 {
    font-size: 2.5rem;
  }
}

.iso-top__inner p {
  line-height: 2;
  margin-top: 5.2rem;
}

@media screen and (max-width: 768px) {
  .iso-top__inner p {
    line-height: 2;
    margin-top: 3rem;
  }
}

.iso-top__inner .iso__image {
  max-width: 47.7rem;
  width: 100%;
  margin: 6rem auto 0;
}

.e-a-g {
  padding: 16rem 0 23rem;
}

@media screen and (max-width: 768px) {
  .e-a-g {
    padding: 6rem 0;
  }
}

.e-a-g .heading-typeA .en {
  line-height: 1;
}

.e-a-g .heading-typeA .ja {
  margin-top: 0;
}

.e-a-g__inner {
  max-width: 130rem;
  margin: 0 auto;
}

.e-a-g__list {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .e-a-g__list {
    margin-top: 5rem;
  }
}

.e-a-g__item {
  display: flex;
  line-height: 2;
  padding: 2.2rem 0 2.2rem 3rem;
  border-top: 0.1rem solid #CCCCCC;
}

@media screen and (max-width: 768px) {
  .e-a-g__item {
    padding: 1rem 0 1rem 1rem;
  }
}

.e-a-g__item:last-child {
  border-bottom: 0.1rem solid #CCCCCC;
}

.e-a-g__item .num {
  width: 8rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .e-a-g__item .num {
    width: 4rem;
  }
}

/* features
******************************************************************************************/
.features-banners.banners {
  padding: 5.3rem 0 0;
  margin-top: 15.5rem;
}

@media screen and (max-width: 768px) {
  .features-banners.banners {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 768px) {
  .features-banners .top-container {
    width: 79%;
  }
}

.features__catch {
  font-size: 3.6rem;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .features__catch {
    font-size: 2.5rem;
  }
}

.features__description {
  line-height: 2.6666666667;
  margin-top: 0.9rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .features__description {
    line-height: 2;
  }
}

.features-banners .banners__list {
  margin: 7rem 0 0 auto;
}

@media screen and (max-width: 768px) {
  .features-banners .banners__list {
    width: calc(100% - 2rem);
    margin: 3rem 0 0 auto;
  }
}

.features-banners .banners__item {
  padding: 4.4rem 5.8rem 3.9rem;
}

@media screen and (max-width: 768px) {
  .features-banners .banners__item {
    padding: 2.2rem 3rem 2rem;
  }
}

.features-banners .banners__item:nth-child(1) {
  background: rgba(0, 0, 0, 0.9) url(../images/features/banner01.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.features-banners .banners__item:nth-child(2) {
  background: url(../images/features/banner02.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.features-banners .banners__item:nth-child(3) {
  background: url(../images/features/banner03.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.features-banners .banners__item:nth-child(4) {
  background: url(../images/features/banner04.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.features-banners .banners__item:nth-child(5) {
  background: url(../images/features/banner05.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.features-banners .banners__text {
  position: relative;
  max-width: 90rem;
  color: #fff;
}

.features-banners .banners__text h3 {
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 6.1rem;
}

@media screen and (max-width: 768px) {
  .features-banners .banners__text h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
  }
}

.features-banners .banners__text p {
  line-height: 2;
  margin-top: 1.2rem;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .features-banners .banners__text p {
    margin-top: 0.6rem;
  }
}

.features-banners .banners__heading .en {
  font-size: 4.7rem;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .features-banners .banners__heading .en {
    font-size: 2.4rem;
    white-space: wrap;
  }
}

.features-banners .banners__heading .ja {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .features-banners .banners__heading .ja {
    font-size: 1rem;
    margin-top: 0.2rem;
  }
}

.useful {
  padding: 14rem 0 18.5rem;
  background-color: #F7F7F7;
}

@media screen and (max-width: 768px) {
  .useful {
    padding: 6rem 0;
  }
}

.useful h2 {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  color: #ED8200;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .useful h2 {
    font-size: 2.5rem;
  }
}

.useful__inner {
  max-width: 154rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.useful__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.8rem 4rem;
  margin-top: 9rem;
}

@media screen and (max-width: 768px) {
  .useful__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 2fr));
    gap: 2rem;
    margin-top: 5rem;
  }
}

.useful__item {
  display: flex;
  flex-direction: column;
  width: calc(25% - 3rem);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  border-radius: 0 10rem 0 0;
}

@media screen and (max-width: 768px) {
  .useful__item {
    width: auto;
    border-radius: 0 5rem 0 0;
  }
}

.useful__image {
  aspect-ratio: 690/500;
}

.useful__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 10rem 0 0;
  border-radius: 0 5rem 0 0;
}

.useful__text {
  flex: 1;
  padding: 0.3rem 1.5rem 5rem;
  min-height: 25rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .useful__text {
    padding: 1rem 2rem 2rem;
    min-height: auto;
  }
}

.useful__text h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
  color: #ED8200;
  padding: 10px 0 20px;
}

@media screen and (max-width: 768px) {
  .useful__text h3 {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 0;
  }
}

.useful__text p {
  line-height: 2;
  letter-spacing: 0.025em;
}

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

/* suppliers
******************************************************************************************/
.suppliers-container {
  padding-top: 14rem;
}

@media screen and (max-width: 768px) {
  .suppliers-container {
    padding-top: 6rem;
  }
}

.suppliers__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.suppliers__lead {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .suppliers__lead {
    font-size: 2.5rem;
  }
}

.suppliers__list {
  margin-top: 11rem;
}

@media screen and (max-width: 768px) {
  .suppliers__list {
    margin-top: 5rem;
  }
}

.suppliers__item {
  display: flex;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 1.6rem 0;
  border-top: 0.1rem solid #ccc;
}

@media screen and (max-width: 768px) {
  .suppliers__item {
    flex-direction: column;
    padding: 1rem 0;
  }
}

.suppliers__item:last-child {
  border-bottom: 0.1rem solid #ccc;
}

.suppliers__item dt {
  width: 15rem;
  font-weight: 500;
  padding-left: 2rem;
}

@media screen and (max-width: 768px) {
  .suppliers__item dt {
    width: 10rem;
    padding-left: 0;
  }
}

.suppliers__item dd {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .suppliers__item dd {
    font-size: 1.4rem;
  }
}

/* facility
******************************************************************************************/
.facility-container {
  padding-top: 15rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .facility-container {
    padding-top: 6rem;
  }
}

.facility__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.facility__list {
  display: flex;
  flex-direction: column;
  gap: 22rem;
  margin-bottom: 24rem;
}

@media screen and (max-width: 768px) {
  .facility__list {
    gap: 10rem;
    margin-bottom: 10rem;
  }
}

.facility__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .facility__item {
    flex-direction: column;
  }
}

.facility__item::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: calc(100% - 3rem);
  top: 10.5rem;
  left: -10rem;
  background-color: #F7F7F7;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .facility__item::before {
    width: 80%;
    height: 70%;
    top: 40%;
    left: -2rem;
  }
}

.facility__item .heading-typeA {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .facility__item .heading-typeA {
    order: 1;
  }
}

.facility__item:first-child .heading-typeA .en {
  line-height: 1;
}

.facility__item:first-child .heading-typeA .ja {
  margin-top: 0.2rem;
}

.facility__item:first-child .heading-typeA::before {
  height: 14.5rem;
  top: 0.8rem;
}

@media screen and (max-width: 768px) {
  .facility__item:first-child .heading-typeA::before {
    height: 6.7rem;
    top: 0.2rem;
  }
}

.facility__item:nth-child(2) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .facility__item:nth-child(2) {
    flex-direction: column;
  }
}

.facility__item:nth-child(2)::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: calc(100% - 3rem);
  top: 10.5rem;
  left: auto;
  right: -10rem;
  background-color: #F7F7F7;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .facility__item:nth-child(2)::before {
    width: 80%;
    height: 70%;
    top: 40%;
    right: -2rem;
  }
}

.facility__item:nth-child(2) .facility__text {
  max-width: 65rem;
}

@media screen and (max-width: 768px) {
  .facility__item:nth-child(2) .facility__text {
    max-width: 100%;
  }
}

.facility__item:nth-child(2) .facility__text p {
  margin-top: 7rem;
}

@media screen and (max-width: 768px) {
  .facility__item:nth-child(2) .facility__text p {
    margin-top: 0;
  }
}

.facility__item:nth-child(2) .facility__text .btn {
  margin-top: 9.2rem;
}

@media screen and (max-width: 768px) {
  .facility__item:nth-child(2) .facility__text .btn {
    margin-top: 0;
  }
}

.facility__item:nth-child(2) .facility__image {
  margin-top: 0;
}

.facility__text {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .facility__text {
    display: contents;
    width: 100%;
  }
}

.facility__text p {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
  margin-top: 5.1rem;
}

@media screen and (max-width: 768px) {
  .facility__text p {
    font-size: 2.5rem;
    margin-top: 0;
    order: 3;
  }
}

.facility__text .btn {
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .facility__text .btn {
    margin-top: 0;
    order: 4;
  }
}

.facility__text .btn:hover {
  color: #333;
}

.facility__text .btn:hover span {
  background-color: #333;
}

.facility__text .btn:hover span::before {
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}

.facility__image {
  position: relative;
  max-width: 55rem;
  width: 42.3076923077%;
  margin-top: 0.8rem;
}

@media screen and (max-width: 768px) {
  .facility__image {
    width: 100%;
    margin: 0 auto;
    order: 2;
  }
}

/* facility_second (物流センター、第二センター)
******************************************************************************************/
.facility-top {
  padding-top: 16.4rem;
}

@media screen and (max-width: 768px) {
  .facility-top {
    padding-top: 6rem;
  }
}

.facility-top__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .facility-top__content {
    flex-direction: column;
  }
}

.facility-top__text {
  max-width: 75rem;
  padding-top: 9.7rem;
}

@media screen and (max-width: 768px) {
  .facility-top__text {
    padding-top: 0;
    max-width: auto;
  }
}

.facility-top__catch {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .facility-top__catch {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}

.facility-top__description {
  line-height: 2;
  margin-top: 3.5rem;
}

@media screen and (max-width: 768px) {
  .facility-top__description {
    margin-top: 1.8rem;
  }
}

.facility-top__image {
  max-width: 45.2rem;
  margin-top: 4.5rem;
}

@media screen and (max-width: 768px) {
  .facility-top__image {
    margin: 2rem auto 0;
  }
}

.facility-top__board {
  padding: 3.4rem 2rem 5.5rem;
  margin-top: 4rem;
  background-color: #f2f2f2;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .facility-top__board {
    padding: 2rem 2rem 2rem;
    margin-top: 2rem;
  }
}

.facility-top__board h3 {
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .facility-top__board h3 {
    font-size: 2rem;
  }
}

.facility-top__board p {
  line-height: 2;
  margin-top: 2.1rem;
}

@media screen and (max-width: 768px) {
  .facility-top__board p {
    margin-top: 1rem;
  }
}

.facility_second__inner {
  max-width: 192rem;
  width: 100%;
  margin: 0 auto;
}

.facility_second__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 15.6rem;
}

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

.facility_second__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  width: 89%;
}

@media screen and (max-width: 768px) {
  .facility_second__item {
    flex-direction: column;
    gap: 2rem;
  }
}

.facility_second__item:nth-child(odd) {
  margin-left: auto;
}

.facility_second__item::before,
.facility_second__item::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  background-color: #ED8200;
}

.facility_second__item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .facility_second__item:nth-child(even) {
    flex-direction: column;
  }
}

.facility_second__item:nth-child(even)::before,
.facility_second__item:nth-child(even)::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: auto;
  right: 0;
  background-color: #FEC800;
}

.facility_second__item:nth-child(even)::before {
  width: 67.7083333333vw;
  max-width: 130rem;
  height: clamp(8rem, 5.7291666667vw, 11rem);
}

@media screen and (max-width: 768px) {
  .facility_second__item:nth-child(even)::before {
    height: 4rem;
  }
}

.facility_second__item:nth-child(even)::after {
  width: clamp(8rem, 5.7291666667vw, 10rem);
  height: 80%;
}

@media screen and (max-width: 768px) {
  .facility_second__item:nth-child(even)::after {
    width: 4rem;
  }
}

.facility_second__item:nth-child(even) .facility_second__text {
  padding-left: 0;
  padding-right: 14rem;
}

@media screen and (max-width: 768px) {
  .facility_second__item:nth-child(even) .facility_second__text {
    padding-right: 7rem;
    padding-left: 2rem;
  }
}

.facility_second__item:nth-child(even) .facility_second__text .inner {
  position: relative;
  width: fit-content;
  margin-left: auto;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .facility_second__item:nth-child(even) .facility_second__image {
    margin-left: 0;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .facility_second__item:nth-child(even) .facility_second__heading {
    width: fit-content;
    margin-left: auto;
  }
}

.facility_second__item:nth-child(even) .deco {
  left: auto;
  right: 1rem;
  bottom: min(-1rem, -0.0520833333vw);
}

@media screen and (max-width: 768px) {
  .facility_second__item:nth-child(even) .deco {
    right: 0;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .facility_second__item:nth-child(even):nth-child(4) .deco {
    font-size: 2.2rem;
  }
}

.facility_second__item::before {
  width: 67.7083333333vw;
  max-width: 130rem;
  height: clamp(8rem, 5.7291666667vw, 11rem);
}

@media screen and (max-width: 768px) {
  .facility_second__item::before {
    height: 4rem;
  }
}

.facility_second__item::after {
  width: clamp(8rem, 5.7291666667vw, 10rem);
  height: 80%;
}

@media screen and (max-width: 768px) {
  .facility_second__item::after {
    width: 4rem;
  }
}

.facility_second__text {
  max-width: 130rem;
  width: 41.5%;
  padding-top: 16.2rem;
  padding-left: 14rem;
  padding-bottom: 12.8%;
}

@media (max-width: 1025px) {
  .facility_second__text {
    width: 52%;
  }
}

@media screen and (max-width: 768px) {
  .facility_second__text {
    width: 100%;
    padding-top: 0;
    padding-left: 7rem;
    padding-right: 2rem;
    padding-bottom: 0;
  }
}

.facility_second__text p {
  max-width: 49.5rem;
  margin-top: 3.6rem;
  line-height: 2;
  color: #060001;
}

@media screen and (max-width: 768px) {
  .facility_second__text p {
    max-width: auto;
    margin-top: 2rem;
  }
}

.facility_second__text .deco {
  position: absolute;
  font-size: clamp(5rem, 4.6875vw, 9rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.1);
  left: 1rem;
  bottom: min(-1rem, -0.0520833333vw);
  white-space: nowrap;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .facility_second__text .deco {
    font-size: 3rem;
    left: 0;
    bottom: 0;
    writing-mode: vertical-rl;
  }
}

.facility_second__image {
  position: relative;
  max-width: 96rem;
  width: 57%;
  margin-bottom: clamp(6rem, 3.28125vw, 6.3rem);
  align-self: flex-end;
  flex: 1;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .facility_second__image {
    max-width: auto;
    width: calc(100% - 8rem);
    margin-left: auto;
    margin-bottom: 2rem;
  }
}

.facility_second__heading {
  color: #000;
}

.facility_second__heading .en {
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: "Roboto", sans-serif;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .facility_second__heading .en {
    font-size: 3rem;
  }
}

.facility_second__heading .ja {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .facility_second__heading .ja {
    font-size: 1.4rem;
  }
}

.facility_second__heading .temp {
  position: relative;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0.3rem 0.7rem;
  top: 0.5rem;
  translate: 0 -50%;
  background-color: #ED8200;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .facility_second__heading .temp {
    font-size: 1rem;
  }
}

.facility_second__heading .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem;
}

.kowake {
  padding: 4.3rem 3rem 3.8rem;
  margin: 17rem auto 0;
  background-color: #F2F2F2;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .kowake {
    padding: 2rem;
    margin: 6rem auto 0;
  }
}

@media screen and (min-width: 769px){
  .kowake {
    display: flex;
	justify-content: space-between;
	align-items: center;
  }
  .kowake section {
	width: calc(50% - 50px);
  }
}

.kowake h3 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .kowake h3 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 769px){
  .kowake h3 {
    text-align: left;
  }
}

.kowake p {
  line-height: 2;
  margin-top: 2rem;
}

@media screen and (min-width: 769px) {
  .kowake p {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .kowake__image {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 769px) {
  .kowake__image {
    width: calc(50% - 50px);
  }
}

@media screen and (max-width: 768px) {
  .kowake__image img {
    margin: 0 auto;
  }
}

.dog {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 11.4rem;
  padding-bottom: 20rem;
}

@media screen and (max-width: 768px) {
  .dog {
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
    padding-bottom: 6rem;
  }
}

.dog__image {
  max-width: 55rem;
}

@media screen and (max-width: 768px) {
  .dog__image {
    margin: 0 auto;
  }
}

.dog__text {
  max-width: 65rem;
  padding-top: 6.3rem;
}

@media screen and (max-width: 768px) {
  .dog__text {
    max-width: auto;
    padding-top: 0;
  }
}

.dog__text h3 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .dog__text h3 {
    font-size: 2rem;
  }
}

.dog__text p {
  line-height: 2;
  margin-top: 2.1rem;
}

@media screen and (max-width: 768px) {
  .dog__text p {
    margin-top: 1rem;
  }
}

.second {
  padding-top: 15.8rem;
  padding-bottom: 25.3rem;
  background-color: #F2F2F2;
}

@media screen and (max-width: 768px) {
  .second {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.second__image {
  margin-top: 4.7rem;
}

@media screen and (max-width: 768px) {
  .second__image {
    margin-top: 2rem;
  }
}

.second__image ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 768px) {
  .second__image ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .second__image img {
    display: block;
    max-width: 41.4rem;
    margin: 0 auto;
  }
}

.second__text {
  margin-top: 4.4rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .second__text {
    margin-top: 2rem;
  }
}

.second__text h3 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .second__text h3 {
    font-size: 2rem;
  }
}

.second__text p {
  line-height: 2;
  margin-top: 0.9rem;
}

@media screen and (max-width: 768px) {
  .second__text p {
    text-align: left;
  }
}

/* company
******************************************************************************************/
.common-banners.banners {
  padding: 5.3rem 0 0;
  margin-top: 15.5rem;
}

@media screen and (max-width: 768px) {
  .common-banners.banners {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 768px) {
  .common-banners .top-container {
    width: 79%;
  }
}

.common__catch {
  font-size: 3.6rem;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .common__catch {
    font-size: 2.5rem;
  }
}

.common__description {
  line-height: 2.6666666667;
  margin-top: 0.9rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .common__description {
    line-height: 2;
  }
}

.company-banners .banners__item:nth-child(1) {
  background: url(../images/top/pickup01.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.company-banners .banners__item:nth-child(2) {
  background: url(../images/company/greeting.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.company-banners .banners__item:nth-child(3) {
  background: url(../images/company/features.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.company-banners .banners__item:nth-child(4) {
  background: url(../images/company/profile.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.company-banners .banners__item:nth-child(5) {
  background: url(../images/company/office.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

/* business
******************************************************************************************/
.business-top {
  padding-top: 14rem;
}

@media screen and (max-width: 768px) {
  .business-top {
    padding-top: 6rem;
  }
}

.business-top__inner {
  max-width: 130rem;
  width: 100%;
  margin: 0 auto;
}

.business-top__lead {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .business-top__lead {
    font-size: 2.5rem;
  }
}

.business-top__image {
  margin-top: 7rem;
}

@media screen and (max-width: 768px) {
  .business-top__image {
    margin-top: 3rem;
  }
}

.business-banners .banners__item:nth-child(1) {
  background: url(../images/business/area.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.business-banners .banners__item:nth-child(2) {
  background: url(../images/business/seminar.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.business-banners .banners__item:nth-child(3) {
  background: url(../images/business/event.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.business-banners .banners__item:nth-child(4) {
  background: url(../images/business/iso.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

.business-banners .banners__item:nth-child(5) {
  background: url(../images/business/agreement.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

/* profile
******************************************************************************************/
.profile-top {
  padding-top: 15.6rem;
  padding-bottom: 10.7rem;
}

@media screen and (max-width: 768px) {
  .profile-top {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.profile__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.profile__item {
  display: flex;
  line-height: 2;
  padding: 1.5rem 0;
  border-bottom: 0.1rem solid #CCCCCC;
  color: #000;
}

@media screen and (max-width: 768px) {
  .profile__item {
    flex-direction: column;
    gap: 1rem;
    padding: 0.8rem 0;
  }
}

.profile__item dt {
  width: 30rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .profile__item dt {
    width: 100%;
  }
}

.profile__item dd {
  flex: 1;
}

.profile__item a {
  letter-spacing: 0.05em;
  transition: opacity 0.4s;
}

.profile__item a:hover {
  opacity: 0.6;
}

.profile__item:first-child {
  border-top: 0.1rem solid #CCCCCC;
}

.profile__item .orange {
  letter-spacing: 0.1em;
  color: #ED8200;
}

.history {
  padding-top: 13.4rem;
  padding-bottom: 12.4rem;
  background: url(../images/profile/history.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .history {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.history .heading-typeA {
  translate: 0 3.5rem;
}

@media screen and (max-width: 768px) {
  .history .heading-typeA {
    translate: 0 0;
  }
}

.history__inner {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  max-width: 174rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .history__inner {
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
  }
}

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

.history__list::after {
  position: absolute;
  display: block;
  content: "";
  width: 0.1rem;
  height: calc(100% - 7.5rem);
  top: 3.5rem;
  left: 17.3rem;
  background-color: #ED8200;
}

@media screen and (max-width: 768px) {
  .history__list::after {
    height: calc(100% - 8rem);
    top: 3rem;
    left: 0.5rem;
  }
}

.history__item {
  display: flex;
  padding: 1.8rem 0;
}

@media screen and (max-width: 768px) {
  .history__item {
    flex-direction: column;
    padding: 1rem 0;
  }
}

.history__item span {
  position: relative;
  width: 17.8rem;
  font-size: 2rem;
  line-height: 2;
  font-weight: 600;
  color: #ED8200;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .history__item span {
    width: 100%;
    font-size: 1.6rem;
    padding-left: 1.5rem;
  }
}

.history__item span::before {
  position: absolute;
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  top: 1.4rem;
  right: 0;
  border-radius: 50%;
  background-color: #ED8200;
}

@media screen and (max-width: 768px) {
  .history__item span::before {
    left: 0;
    right: auto;
  }
}

.history__item p {
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 8rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .history__item p {
    padding-left: 1.5rem;
  }
}

.movie {
	max-width: 1300px;
	margin: 0 auto;
	padding: 80px 20px;
}
.movie h2 {
  margin-bottom: 40px;
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .movie h2 {
    font-size: 2.5rem;
  }
}
.movie video {
	width: 100%;
	height: auto;
}

/* seminar & exhivition
******************************************************************************************/
.event {
  padding-top: 15.6rem;
  padding-bottom: 15.3rem;
}

@media screen and (max-width: 768px) {
  .event {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.event > div {
	padding-bottom: 100px;
	background: linear-gradient(#fff 0 4rem, #F7F7F7 4rem 100%);
}

@media screen and (max-width: 768px) {
	.event > div {
		background: linear-gradient(#fff 0 2rem, #F7F7F7 2rem 100%);
	}
}

.event > div .heading-typeA  {
	margin-bottom: 6.5rem;
}

.event__inner {
  max-width: 134rem;
  padding: 40px;
  width: 100%;
  margin: 0 auto 40px;
  background-color: #fff;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.event__inner {
		padding: 20px;
	}
}

.event__column {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .event__column {
    flex-direction: column;
  }
}

.event__text {
  max-width: 60rem;
  width: 46.1538461538%;
  padding-top: 0.7rem;
}

@media screen and (max-width: 768px) {
  .event__text {
    max-width: auto;
    width: 100%;
    padding-top: 0;
  }
}

.event__catch {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
  margin-top: 3.5rem;
}

@media screen and (max-width: 768px) {
  .event__catch {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}

.event__description {
  line-height: 2;
  margin-top: 5.4rem;
}

@media screen and (max-width: 768px) {
  .event__description {
    margin-top: 2.5rem;
  }
}

.event__image {
  max-width: 65rem;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .event__image {
    width: 100%;
    margin: 0 auto;
  }
}

.event__list {
  margin-top: 6.8rem;
}

@media screen and (max-width: 768px) {
  .event__list {
    margin-top: 3rem;
  }
}

.event__item {
  display: flex;
  line-height: 2;
  padding: 1.8rem 0;
  border-top: 0.1rem solid #CCCCCC;
}

@media screen and (max-width: 768px) {
  .event__item {
    flex-direction: column;
    padding: 1rem 0;
  }
}

.event__item:last-child {
  border-bottom: 0.1rem solid #CCCCCC;
}

.event__item dt {
  width: 26rem;
  padding-left: 1.4rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .event__item dt {
    width: 100%;
    padding-left: 0;
  }
}

.event__item dd {
  flex: 1;
}

.event__item dd span {
  font-weight: 600;
}

.event__item dd a {
  display: inline-block;
  letter-spacing: 0.05em;
  transition: opacity 0.4s;
}

.event__item dd a:hover {
  opacity: 0.6;
}

.seminar {
  padding-bottom: 25rem;
  background: linear-gradient(#fff 0 4rem, #F7F7F7 4rem 100%);
}

@media screen and (max-width: 768px) {
  .seminar {
    padding-bottom: 6rem;
    background: linear-gradient(#fff 0 2rem, #F7F7F7 2rem 100%);
  }
}

.seminar__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.seminar__inner .heading-typeA::before {
  margin: 0 auto 4rem;
}

.seminar__lead {
  padding: 2rem 2rem 4rem;
  margin-top: 6.5rem;
  background-color: #ED8200;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .seminar__lead {
    padding: 1rem 2rem 2rem;
    margin-top: 4rem;
  }
}

.seminar__lead p:nth-child(1) {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .seminar__lead p:nth-child(1) {
    font-size: 2.5rem;
  }
}

.seminar__lead p:nth-child(2) {
  line-height: 2;
  margin-top: 3.3rem;
}

@media screen and (max-width: 768px) {
  .seminar__lead p:nth-child(2) {
    margin-top: 2rem;
    text-align: left;
  }
}

.seminar__column {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 7rem;
}

@media screen and (max-width: 768px) {
  .seminar__column {
    flex-direction: column;
    margin-top: 4rem;
  }
}

.seminar__text {
  max-width: 65rem;
  width: 50%;
  padding-top: 5.5rem;
}

@media screen and (max-width: 768px) {
  .seminar__text {
    max-width: auto;
    width: 100%;
    padding-top: 0;
    margin-top: 0;
  }
}

.seminar__catch {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .seminar__catch {
    font-size: 2.5rem;
  }
}

.seminar__description {
  line-height: 2;
  margin-top: 3.5rem;
}

@media screen and (max-width: 768px) {
  .seminar__description {
    margin-top: 2rem;
  }
}

.seminar__image {
  max-width: 55rem;
  width: 42.3076923077%;
}

@media screen and (max-width: 768px) {
  .seminar__image {
    width: 100%;
    margin: 0 auto;
  }
}

/* agreement
******************************************************************************************/
.agreement-container {
  padding-top: 15.6rem;
}

@media screen and (max-width: 768px) {
  .agreement-container {
    padding-top: 6rem;
  }
}

.agreement-container .common-bottom {
  margin-top: 32rem;
}

@media screen and (max-width: 768px) {
  .agreement-container .common-bottom {
    margin-top: 6rem;
  }
}

.agreement__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto 80px;
}

.agreement__inner h2 {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 2.1rem 2rem 2.5rem;
  background-color: #ED8200;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .agreement__inner h2 {
    font-size: 2.5rem;
    padding: 1rem;
  }
}

.agreement__list {
  display: flex;
  flex-direction: column;
  gap: 12.7rem;
  margin-top: 5.6rem;
}

@media screen and (max-width: 768px) {
  .agreement__list {
    gap: 6rem;
    margin-top: 3rem;
  }
}

.agreement__item {
  display: flex;
}

@media screen and (max-width: 768px) {
  .agreement__item {
    flex-direction: column;
  }
}

.agreement__inner:nth-child(1) .agreement__item .agreement__image {
  margin-right: -19.2307692308%;
}

@media screen and (max-width: 768px) {
  .agreement__inner:nth-child(1) .agreement__item .agreement__image {
    margin-right: 0;
  }
}

.agreement__inner:nth-child(1) .agreement__item .agreement__text {
  padding-left: 26.9230769231%;
}

@media screen and (max-width: 768px) {
  .agreement__inner:nth-child(1) .agreement__item .agreement__text {
    padding-left: 2rem;
  }
}

.agreement__inner:nth-child(2) .agreement__item {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .agreement__inner:nth-child(2) .agreement__item {
    flex-direction: column;
  }
}

.agreement__inner:nth-child(2) .agreement__item .agreement__image {
  margin-left: -19.2307692308%;
}

@media screen and (max-width: 768px) {
  .agreement__inner:nth-child(2) .agreement__item .agreement__image {
    margin-left: 0;
  }
}

.agreement__inner:nth-child(2) .agreement__item .agreement__text {
  padding-right: 26.9230769231%;
}

@media screen and (max-width: 768px) {
  .agreement__inner:nth-child(2) .agreement__item .agreement__text {
    padding-right: 2rem;
    margin-left: auto;
  }
}

.agreement__image {
  position: relative;
  max-width: 45rem;
  width: 34.6153846154%;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .agreement__image {
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
}

.agreement__text {
  max-width: 1100rem;
  width: 84.6153846154%;
  margin-top: 4.5rem;
  padding: 3.6rem 9rem 3rem;
  background-color: #f7f7f7;
  color: #000;
}

@media screen and (max-width: 768px) {
  .agreement__text {
    width: calc(100% - 2rem);
    margin-top: -2rem;
    padding: 3rem 2rem 2rem;
  }
}

.agreement__text h3 {
  font-size: 2.4rem;
  line-height: 1.75;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .agreement__text h3 {
    font-size: 1.8rem;
  }
}

.agreement__text p {
  line-height: 2.3333333333;
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .agreement__text p {
    line-height: 2;
    margin-top: 2rem;
  }
}

/* greeting
******************************************************************************************/
.greeting-container {
  padding-top: 15.5rem;
}

@media screen and (max-width: 768px) {
  .greeting-container {
    padding-top: 6rem;
  }
}

.greeting__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem 13.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .greeting__inner {
    flex-direction: column;
    padding: 0 2rem 6rem;
  }
}

.greeting__column {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 11.5rem;
}

@media screen and (max-width: 768px) {
  .greeting__column {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 0;
  }
}

.greeting__column::before {
  position: absolute;
  display: block;
  content: "";
  width: 73.6153846154%;
  aspect-ratio: 957/550;
  top: 28%;
  left: 13.3846153846%;
  background-color: #f7f7f7;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .greeting__column::before {
    aspect-ratio: 550/957;
    top: 50%;
    left: 26%;
    translate: 0 -50%;
  }
}

.greeting__image {
  max-width: 55rem;
  width: 42.3076923077%;
}

@media screen and (max-width: 768px) {
  .greeting__image {
    width: 100%;
    margin: 0 auto;
  }
}

.greeting__text {
  max-width: 65rem;
  width: 50%;
  padding-top: 4rem;
}

@media screen and (max-width: 768px) {
  .greeting__text {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }
}

.greeting__catch {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .greeting__catch {
    font-size: 2.5rem;
  }
}

.greeting__description {
  line-height: 2;
  margin-top: 5.2rem;
}

@media screen and (max-width: 768px) {
  .greeting__description {
    margin-top: 2rem;
  }
}

.greeting__name {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: fit-content;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 7.3rem;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .greeting__name {
    gap: 1rem;
    font-size: 2rem;
    margin-top: 2rem;
  }
}

.greeting__name span {
  font-size: 3rem;
}

@media screen and (max-width: 768px) {
  .greeting__name span {
    font-size: 1.6rem;
  }
}

.philosophy {
  padding: 11.5rem 0 16.4rem;
  background-color: #f7f7f7;
}

@media screen and (max-width: 768px) {
  .philosophy {
    padding: 6rem 0;
  }
}

.philosophy__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 174rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .philosophy__inner {
    flex-direction: column;
    max-width: auto;
  }
}

.philosophy__inner::before {
  position: absolute;
  display: block;
  content: "";
  width: 52.5%;
  aspect-ratio: 957/550;
  top: 17%;
  left: 14.4%;
  background-color: #F7F7F7;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .philosophy__inner::before {
    aspect-ratio: 550/957;
    top: 50%;
    left: 40%;
    translate: 0 -50%;
  }
}

.philosophy__text {
  width: 50%;
  padding-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .philosophy__text {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
}

.philosophy-text__inner {
  max-width: 75.1rem;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .philosophy-text__inner {
    max-width: auto;
    margin-left: 0;
  }
}

.philosophy__catch {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 9rem;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .philosophy__catch {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}

.philosophy__description {
  line-height: 2;
  margin-top: 3.5rem;
}

@media screen and (max-width: 768px) {
  .philosophy__description {
    margin-top: 2rem;
  }
}

.philosophy__image {
  width: 44.1176470588%;
  margin-top: 3.5rem;
}

@media screen and (max-width: 768px) {
  .philosophy__image {
    width: 80%;
    margin: 0 auto;
  }
}

.greeting-bottom {
  padding: 15.4rem 2rem 19.5rem;
  background: url(../images/greeting/bottom.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .greeting-bottom {
    padding: 4rem 2rem;
  }
}

.greeting-bottom__content {
  max-width: 130rem;
  width: 100%;
  margin: 0 auto;
  padding: 6.9rem 2rem 11rem;
  background-color: rgba(247, 247, 247, 0.9);
}

@media screen and (max-width: 768px) {
  .greeting-bottom__content {
    padding: 3rem 2rem;
  }
}

.greeting-bottom__inner {
  max-width: 109rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .greeting-bottom__inner {
    text-align: left;
  }
}

.greeting-bottom__catch {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .greeting-bottom__catch {
    font-size: 2.5rem;
  }
}

.greeting-bottom__description {
  line-height: 2;
  margin-top: 5.3rem;
}

@media screen and (max-width: 768px) {
  .greeting-bottom__description {
    margin-top: 2rem;
  }
}

/* office 
******************************************************************************************/
.office-container {
  padding: 16.5rem 0 22rem;
}

@media screen and (max-width: 768px) {
  .office-container {
    padding: 6rem 0;
  }
}

.office__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.office__list {
  display: flex;
  flex-direction: column;
  gap: 19rem;
}

@media screen and (max-width: 768px) {
  .office__list {
    gap: 6rem;
  }
}

.office-info {
  margin-top: 6.1rem;
}

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

.office-info__item {
  display: flex;
  line-height: 2;
  padding: 1.8rem 0 1.8rem 1.2rem;
  border-top: 0.1rem solid #ccc;
  color: #000;
}

@media screen and (max-width: 768px) {
  .office-info__item {
    flex-direction: column;
    padding: 0.5rem 0;
  }
}

.office-info__item:last-child {
  border-bottom: 0.1rem solid #ccc;
}

.office-info__item dt {
  width: 28rem;
  font-weight: 400;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .office-info__item dt {
    width: 100%;
  }
}

.office-info__item dd {
  flex: 1;
}

.office-image {
  margin-top: 4.5rem;
}

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

.office-image__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .office-image__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.office-map {
  aspect-ratio: 1300/500;
  margin-top: 5rem;
}

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

.office-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* recruit
******************************************************************************************/
.recruit-container {
  padding-top: 15.5rem;
}

@media screen and (max-width: 768px) {
  .recruit-container {
    padding-top: 6rem;
  }
}

.recruit-message {
  padding: 4rem 2rem 10rem;
  background: url(../images/recruit/message.webp) no-repeat;
  background-size: cover;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recruit-message {
    padding: 2rem 2rem 5rem;
  }
}

.recruit-message__inner {
  max-width: 130rem;
  margin: 0 auto;
}

.recruit-message__catch {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 4.7rem;
}

@media screen and (max-width: 768px) {
  .recruit-message__catch {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}

.recruit-message__description {
  line-height: 2;
  margin-top: 3.5rem;
}

@media screen and (max-width: 768px) {
  .recruit-message__description {
    margin-top: 2rem;
  }
}

.company-credo {
  padding: 10rem 2rem 0;
  color: #fff;
}

.company-credo .heading-typeA {
  flex-shrink: 0;
}

.company-credo__content {
  max-width: 170rem;
  width: 100%;
  padding: 4.7rem 4rem 5.1rem;
  margin: 0 auto;
  background-color: #ED8200;
}

@media screen and (max-width: 768px) {
  .company-credo__content {
    padding: 2.5rem 2rem;
  }
}

.company-credo__content .heading-typeA {
  translate: 0 0.7rem;
}

@media screen and (max-width: 768px) {
  .company-credo__content .heading-typeA {
    translate: 0 0;
  }
}

.company-credo__content .heading-typeA .en {
  letter-spacing: 0.08em;
}

.company-credo__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  max-width: 150rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1025px) {
  .company-credo__inner {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .company-credo__inner {
    gap: 2rem;
  }
}

.company-credo__text {
  max-width: 85.1rem;
  line-height: 2;
}

@media screen and (max-width: 1025px) {
  .company-credo__text {
    max-width: 100%;
  }
}

.interview {
  padding-top: 12.6rem;
  padding-bottom: 16rem;
}

@media screen and (max-width: 768px) {
  .interview {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.interview__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.interview__list {
  display: flex;
  flex-direction: column;
  gap: 16.3rem;
  margin-top: 8.3rem;
}

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

.interview__item:nth-child(odd) .interview__label {
  left: 2.8rem;
}

@media screen and (max-width: 768px) {
  .interview__item:nth-child(odd) .interview__label {
    left: 2rem;
  }
}

.interview__item:nth-child(odd) .interview-message__text .inner {
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .interview__item:nth-child(odd) .interview-message__text .inner {
    margin-right: 0;
  }
}

.interview__item:nth-child(even) .interview-message {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .interview__item:nth-child(even) .interview-message {
    flex-direction: column;
  }
}

.interview__item:nth-child(even) .interview__label {
  right: 5.3rem;
}

@media screen and (max-width: 768px) {
  .interview__item:nth-child(even) .interview__label {
    right: 2rem;
  }
}

.interview__item:nth-child(even) .interview-message__text .inner {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .interview__item:nth-child(even) .interview-message__text .inner {
    margin-left: 0;
  }
}

.interview__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1300/450;
}

@media screen and (max-width: 768px) {
  .interview__image {
    aspect-ratio: 1/1;
  }
}

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

.interview__label {
  position: absolute;
  bottom: 3.4rem;
  padding: 2.1rem 2.5rem;
  background-color: rgba(237, 133, 0, 0.8);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .interview__label {
    padding: 1rem 1.5rem;
    bottom: 2rem;
  }
}

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

.interview__name {
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .interview__name {
    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .interview__name span {
    display: block;
  }
}

.interview__name .ja {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .interview__name .ja {
    font-size: 2rem;
  }
}

.interview__name .en {
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  margin-left: 0.7rem;
}

@media screen and (max-width: 768px) {
  .interview__name .en {
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.2rem;
    margin-left: 0;
  }
}

.interview-qa__list {
  display: flex;
  flex-direction: column;
  gap: 3.7rem;
  margin-top: 4rem;
  letter-spacing: 0.05em;
  color: #000;
}

@media screen and (max-width: 768px) {
  .interview-qa__list {
    gap: 2rem;
    margin-top: 2rem;
  }
}

.interview-qa__item {
  line-height: 2;
}

.interview-qa__item dt {
  font-weight: 600;
}

.interview-message {
  display: flex;
  align-items: center;
  margin-top: 5.3rem;
  background-color: #f7f7f7;
}

@media screen and (max-width: 768px) {
  .interview-message {
    flex-direction: column;
    margin-top: 3rem;
  }
}

.interview-message__image {
  width: auto;
  height: 100%;
  aspect-ratio: 500/300;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .interview-message__image {
    order: 1;
  }
}

.interview-message__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-message__text {
  width: 61.5384615385%;
  padding: 0 3.5rem;
}

@media screen and (max-width: 768px) {
  .interview-message__text {
    width: 100%;
    padding: 0 2rem;
    order: 2;
  }
}

.interview-message__text .inner {
  width: 91.095890411%;
  padding: 2rem 0;
  margin-top: -5.6%;
}

@media screen and (max-width: 768px) {
  .interview-message__text .inner {
    width: 100%;
    padding: 1rem 0 2rem;
    margin-top: 0;
  }
}

.interview-message__text h3 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .interview-message__text h3 {
    font-size: 2.2rem;
  }
}

.interview-message__text p {
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .interview-message__text p {
    margin-top: 1rem;
  }
}

.recruit-event {
  padding-bottom: 16rem;
  background: linear-gradient(to bottom, #fff 0, #fff 5rem, #f7f7f7, 5rem, #f7f7f7 100%);
}

@media screen and (max-width: 768px) {
  .recruit-event {
    padding-bottom: 6rem;
    background: linear-gradient(to bottom, #fff 0, #fff 2rem, #f7f7f7, 2rem, #f7f7f7 100%);
  }
}

.recruit-event .heading-typeA::before {
  margin: 0 auto 2.5rem;
}

.recruit-event__inner {
  max-width: 134rem;
  padding: 0 2rem;
  width: 100%;
  margin: 0 auto;
}

.recruit-event__head {
  width: 100%;
  padding: 3.3rem 2rem 2.1rem;
  margin-top: 10.3rem;
  background-color: #ED8200;
  color: #fff;
  text-align: center;
}

.recruit-event__head__text {
  padding: 3.3rem 2rem 2.1rem;
  line-height: 1.5;
}

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

.recruit-event__head h3 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.recruit-event__head p {
  line-height: 2;
  margin-top: 0.6rem;
}

.recruit-event__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.2rem 4.5rem;
  margin-top: 4.8rem;
}

@media screen and (max-width: 768px) {
  .recruit-event__list {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 3rem;
    margin-top: 2.5rem;
  }
}

.recruit-event__image {
  aspect-ratio: 800/600;
}

.recruit-event__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-event__text {
  line-height: 2;
  padding: 0.3rem 0;
  color: #000;
}

.recruit-event__text h4 {
  font-weight: 600;
}

.recruit-event__text p {
  margin-top: 0.1rem;
}

.recruit-description {
  padding-top: 15.2rem;
  padding-bottom: 19rem;
}

@media screen and (max-width: 768px) {
  .recruit-description {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.recruit-description__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.recruit-description__content {
  display: flex;
  align-items: center;
  background-color: #ED8200;
  padding: 3.8rem 5.2rem 3.8rem 7rem;
  background-image: url(../images/recruit/bn_bg.svg);
  background-repeat: no-repeat;
  background-size: 605px;
  background-position: 600px -200px;
}

@media screen and (max-width: 768px) {
  .recruit-description__content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background-size: 500px;
    background-position: center;
  }
}

.recruit-description__content .heading-typeA {
  translate: 0 0.6rem;
}

.recruit-description__content .btn {
  margin-left: auto;
  transition: opacity 0.4s;
}

.recruit-description__content .btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .recruit-description__content .btn {
    margin-left: 0;
  }
}

.recruit-description__icon {
  width: 8.6rem;
  margin-right: 3.8rem;
}

@media screen and (max-width: 768px) {
  .recruit-description__icon {
    width: 5rem;
    margin-right: 0;
  }
}

/* product
******************************************************************************************/
.price-list {
  padding-top: 16.3rem;
  padding-bottom: 6.5rem;
}

@media screen and (max-width: 768px) {
  .price-list {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

.price-list__inner {
  display: flex;
  justify-content: space-between;
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .price-list__inner {
    flex-direction: column;
  }
}

.price-list__text {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .price-list__text {
    width: 100%;
  }
}

.price-list__image {
  max-width: 46.7rem;
}

@media screen and (max-width: 768px) {
  .price-list__image {
    margin: 4rem auto 0;
    width: 100%;
  }
}

.price-list__catch {
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
  margin-top: 5.9rem;
}

@media screen and (max-width: 768px) {
  .price-list__catch {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}

.price-list__description {
  line-height: 2;
  color: #000;
  margin-top: 5.4rem;
}

@media screen and (max-width: 768px) {
  .price-list__description {
    margin-top: 2rem;
  }
}

.voice {
  padding: 5rem 0 14rem;
}

@media screen and (max-width: 768px) {
  .voice {
    padding: 2.5rem 2rem 6rem;
  }
}

.voice .heading-typeA {
  translate: 0 -4rem;
}

@media screen and (max-width: 768px) {
  .voice .heading-typeA {
    translate: 0 -2rem;
  }
}

.voice__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem 9.5rem;
  margin: 0 auto;
  background: url(../images/product/voice_bg.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .voice__inner {
    padding: 0 2rem 6rem;
  }
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 110rem;
  margin: -1rem auto 0;
}

@media screen and (max-width: 768px) {
  .voice__list {
    gap: 3rem;
    margin-top: 2rem;
  }
}

.voice__item {
  display: flex;
  align-items: flex-start;
  gap: 8rem;
}

@media screen and (max-width: 768px) {
  .voice__item {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

.voice__item .bubble {
  position: absolute;
  display: block;
  content: "";
  width: 4rem;
  height: 3.5rem;
  top: calc(50% - 0.6rem);
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .voice__item .bubble {
    width: 2rem;
    aspect-ratio: 4/3.5;
    top: -2rem;
    left: 50%;
    translate: -50%;
  }
}

.voice__item:nth-child(odd) .bubble {
  right: -4rem;
  clip-path: polygon(0 0, 0% 90%, 100% 100%);
}

@media screen and (max-width: 768px) {
  .voice__item:nth-child(odd) .bubble {
    right: auto;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}

.voice__item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .voice__item:nth-child(even) {
    flex-direction: column;
  }
}

.voice__item:nth-child(even) .bubble {
  left: -4rem;
  clip-path: polygon(0 100%, 100% 90%, 100% 0);
}

@media screen and (max-width: 768px) {
  .voice__item:nth-child(even) .bubble {
    left: 50%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}

.voice__text {
  position: relative;
  flex: 1;
  padding: 2rem 2.7rem 2.2rem;
  margin-top: 7.2rem;
  background-color: #fff;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}

@media screen and (max-width: 768px) {
  .voice__text {
    padding: 2rem;
    margin-top: 0;
    border-radius: 0.5rem;
    order: 2;
  }
}

.voice__text h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ED8200;
}

@media screen and (max-width: 768px) {
  .voice__text h3 {
    font-size: 2rem;
  }
}

.voice__text p {
  line-height: 2;
  margin-top: 0.1rem;
  color: #000;
}

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

.voice__image {
  flex-shrink: 0;
  width: 20.5rem;
}

@media screen and (max-width: 768px) {
  .voice__image {
    width: 10rem;
    order: 1;
  }
}

.recommend {
  padding-bottom: 15.5rem;
  background: linear-gradient(to bottom, #fff 0, #fff 4rem, #f7f7f7 4rem, #f7f7f7 100%);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .recommend {
    padding-bottom: 6rem;
    background: linear-gradient(to bottom, #fff 0, #fff 2rem, #f7f7f7 2rem, #f7f7f7 100%);
  }
}

.recommend__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.recommend__list {
  display: flex;
  flex-direction: column;
  gap: 16.5rem;
  margin-top: 14.3rem;
}

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

.recommend .swiper-pagination-bullet {
  width: 5rem;
  height: 5rem;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
  opacity: 1;
  border: 2px solid transparent;
  transition: border 0.3s;
}

@media screen and (max-width: 768px) {
  .recommend .swiper-pagination-bullet {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.recommend .swiper-pagination-bullet-active {
  border-color: red;
  scale: 1.1;
}

.slider-heading {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .slider-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.slider-heading h3 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ED8200;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .slider-heading h3 {
    font-size: 1.8rem;
  }
}

.product-text {
  display: flex;
  align-items: center;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 2rem;
  color: #060001;
}

@media screen and (max-width: 768px) {
  .product-text {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.5rem;
  }
}

.product-text span {
  display: inline-block;
  height: 2.2rem;
  font-size: 1.8rem;
  line-height: 2.2rem;
  padding: 0 0.2rem;
  margin-right: 5px;
  background-color: #ED8200;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .product-text span {
    font-size: 1.6rem;
    height: 2rem;
    line-height: 2rem;
    margin-right: 0;
  }
}

.swiper-button-main {
  display: flex;
  gap: 0.8rem;
  margin-left: 5rem;
  margin-right: 2rem;
}

@media screen and (max-width: 768px) {
  .swiper-button-main {
    margin-left: 0;
    margin-right: 0;
  }
}

.swiper-button-prev.main,
.swiper-button-next.main {
  position: relative;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #fff;
  border-radius: 50%;
  margin: 0;
  left: 0;
  right: 0;
}

.swiper-button-prev.main::after,
.swiper-button-next.main::after {
  display: none;
}

.swiper-button-prev.main::before,
.swiper-button-next.main::before {
  position: absolute;
  display: block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.2rem solid #ED8200;
  border-right: 0.2rem solid #ED8200;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@media screen and (max-width: 768px) {

  .swiper-button-prev.main::before,
  .swiper-button-next.main::before {
    width: 0.6rem;
    height: 0.6rem;
    border-top: 0.1rem solid #ED8200;
    border-right: 0.1rem solid #ED8200;
  }
}

.swiper-button-prev.main::before {
  rotate: -135deg;
}

.swiper-button-next.main::before {
  rotate: 45deg;
}

.swiper-container.main {
  margin-top: 3rem;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .swiper-container.main {
    margin-right: 0;
  }
}

.recommend .swiper-slide {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .recommend .swiper-slide {
    width: 100% !important;
  }
}

.recommend .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination.main {
  display: block;
  position: static;
  width: 100%;
  height: 0.2rem;
  background-color: #e0e0e0;
}

.swiper-pagination-progressbar-fill {
  height: 100%;
  width: 0%;
  /* 初期値は0 */
  transition: width 0.3s ease;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #ED8200;
  /* プログレス色 */
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card__image {
	width: 100%;
}

.product-image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-image-slider__image {
  width: 100%;
  padding: 32px 33px;
  background-color: #fff;
}

.product-image-slider img {
  width: 100%;
  object-fit: cover;
}

.product-image-slider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.product-image-slider .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-top: 0.2rem solid #ccc;
  border-right: 0.2rem solid #ccc;
}

.product-image-slider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  rotate: -135deg;
}

.product-image-slider .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  rotate: 45deg;
}

.product-image-slider .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
}

.product-image-slider .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
}

.product-info {
  width: 100%;
  padding-top: 1.4rem;
}

.product-amount {
  display: block;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  color: #060001;
}

.product-name {
  display: block;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #000;
}

.product-info__list {
  margin-top: 1.5rem;
}

.product-info__item {
  display: flex;
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.05em;
  border-top: 0.1rem solid #ccc;
  color: #1a1311;
}

@media screen and (max-width: 768px) {
  .product-info__item {
    font-size: 1.4rem;
  }
}

.product-info__item:last-child {
  border-bottom: 0.1rem solid #ccc;
}

.product-info__item dt {
  width: 16rem;
  font-weight: 500;
  flex-shrink: 0;
  padding-left: 1rem;
}

@media screen and (max-width: 768px) {
  .product-info__item dt {
    width: 14rem;
  }
}

.product-info__item dd {
  flex: 1;
  font-weight: 400;
}

.product-suppliers {
  padding: 14rem 2rem 18rem;
}

@media screen and (max-width: 768px) {
  .product-suppliers {
    padding: 6rem 2rem 6rem;
  }
}

.product-suppliers__banner {
  position: relative;
  max-width: 130rem;
  padding: 7.2rem 5.3rem 5.9rem 7.2rem;
  margin: 0 auto;
  background: url(../images/product/suppliers.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .product-suppliers__banner {
    padding: 2.2rem 3rem 2rem;
  }
}

.product-suppliers__banner a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .product-suppliers__banner a {
    flex-direction: column;
  }
}

.product-suppliers__banner .btn {
  position: relative;
}

.product-suppliers__banner a:hover::before {
  background-color: rgba(0, 0, 0, 0.6);
}

.product-suppliers__banner a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.4s;
}

.product-suppliers__text {
  position: relative;
  max-width: 65rem;
  padding-bottom: 2rem;
}

.product-suppliers__text p {
  letter-spacing: 0.05em;
  margin-top: 4.7rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .product-suppliers__text p {
    line-height: 2;
    margin-top: 2rem;
  }
}

/* privacy
******************************************************************************************/
.privacy-container {
  padding-top: 14rem;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

@media (max-width: 1300px) {
  .privacy-container {
    padding: 6rem 1em 1em 1em;
  }
}

.privacy-container h2 {
  background: #ed8200;
  font-size: 3.6rem;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-weight: 600;
  display: block;
  margin-bottom: 1.2em;
  color: #ffffff;
}

.privacy-container p {
  text-align: justify;
  margin-bottom: 1em;
  color: #333333;
  line-height: 2;
}

@media (max-width: 768px) {

  .privacy-container h2 {
    background: #ed8200;
    font-size: 2.5rem;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-weight: 600;
    display: block;
    margin-bottom: 1.2em;
    color: #ffffff;
  }

  .privacy-container p {
    text-align: justify;
    margin-bottom: 1em;
    color: #333333;
    line-height: 1.6;
  }
}

/* news
******************************************************************************************/

.news {
  padding-top: 150px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

@media (max-width: 1300px) {
  .news {
    padding: 1em;
  }
}


.news__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

@media (min-width: 768px) {
  .news__inner {
    padding: 0 20px 150px;
  }
}

.news__inner ul li {
  position: relative;
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}

@media (min-width: 768px) {
  .news__inner ul li {
    padding: 40px 30px;
    box-sizing: border-box;
  }
}

.news__inner ul li:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(100%, -50%);
  width: 11px;
  height: 17px;
}

@media (min-width: 768px) {
  .news__inner ul li:after {
    right: 50px;
  }
}

.news__inner ul li a {
  transition: 0.5s;
}

@media (min-width: 768px) {
  .news__inner ul li a {
    display: flex;
  }
}

.news__inner ul li a:hover {
  color: #ed8200;
  transition: 0.5s;
}

.news__inner ul li a time {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  color: #ed8200;
}

@media (min-width: 768px) {
  .news__inner ul li a time {
    margin-bottom: 0;
    margin-right: 3em;
  }
}

.news__inner ul li span.arrow {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #A59B84;
  border-right: 0.1rem solid #A59B84;
  rotate: 45deg;
  margin-left: auto;
  transition: margin-right 0.4s;
}

.news__inner ul li:hover span.arrow {
  margin-right: -0.5rem;
}

.news__inner h2 {
	margin-bottom: 40px;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
@media (min-width: 768px){
	.news__inner h2 {
		font-size: 36px;
	}
}
.c-pagination,
.c-navigation {
  width: 100%;
  margin-top: 80px;
  text-align: center;
}
.c-pagination .navigation .nav-links,
.c-navigation .navigation .nav-links {
  display: flex;
}
.c-pagination .navigation .nav-links {
	justify-content: center;
}
.c-navigation .navigation .nav-links {
	justify-content: space-between;
}
.c-pagination .navigation .nav-links .page-numbers,
.c-navigation .navigation .nav-links .page-numbers {
  margin: 0 2px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.c-pagination .navigation .nav-links .page-numbers.current,
.c-navigation .navigation .nav-links .page-numbers.current {
  background-color: #aaa;
}
.c-pagination .navigation .nav-links .page-numbers:hover,
.c-navigation .navigation .nav-links .page-numbers:hover {
  background-color: #aaa;
}
.c-pagination .navigation .nav-links .nav-previous,
.c-pagination .navigation .nav-links .nav-next,
.c-navigation .navigation .nav-links .nav-previous,
.c-navigation .navigation .nav-links .nav-next {
  padding: 5px 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.c-pagination .navigation .nav-links .nav-previous:hover,
.c-pagination .navigation .nav-links .nav-next:hover,
.c-navigation .navigation .nav-links .nav-previous:hover,
.c-navigation .navigation .nav-links .nav-next:hover {
  background-color: #aaa;
}

/* discription
******************************************************************************************/

.discription-top {
  padding-top: 15.6rem;
  padding-bottom: 10.7rem;
}

@media screen and (max-width: 768px) {
  .discription-top {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.discription__inner {
  max-width: 134rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.discription__item {
  display: flex;
  line-height: 2;
  padding: 1.5rem 0;
  border-bottom: 0.1rem solid #CCCCCC;
  color: #000;
}

@media screen and (max-width: 768px) {
  .discription__item {
    flex-direction: column;
    gap: 1rem;
    padding: 0.8rem 0;
  }
}

.discription__item dt {
  width: 30rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .discription__item dt {
    width: 100%;
  }
}

.discription__item dd {
  flex: 1;
}

.discription__item a {
  letter-spacing: 0.05em;
  transition: opacity 0.4s;
}