@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.8rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem 2rem;
}

.about .common__ttl {
  align-items: flex-start;
}

.access .common__ttl {
  flex-direction: row;
  align-items: baseline;
}

.common__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(28px, 4.8rem);
  color: #4c4948;
  text-transform: uppercase;
}

.about .common__ttl span {
  font-size: max(36px, 6.4rem);
}

.common__ttl span::first-letter {
  color: var(--brown);
}

.common__ttl--wt,
.common__ttl--wt span,
.common__ttl--wt span::first-letter {
  color: var(--white);
}

.common__btn {
  width: max(180px, 24.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.business > .common__btn {
  width: max(210px, 30rem);
}

.business__list .common__btn {
  width: max(130px, 18.8rem);
  margin: 0;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  font-size: max(12px, 1.7rem);
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  padding-left: 2rem;
  position: relative;
}

.common__btn--wt a {
  border: solid 1px var(--white);
}

.business .common__btn a {
  gap: 1.6rem;
  padding: 0;
}

.common__btn a::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: max(6px, 0.75rem);
  height: max(9.4px, 1.15rem);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(77rem, 100vh);
  display: flex;
  column-gap: 5.5rem;
  padding: 17rem 0 0 17rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max-content;
    flex-direction: column;
    padding: max(60px, 8rem) 0 0;
  }
}

.hero__txt-wrapper {
  width: 100%;
  padding-top: 12rem;
}

@media (max-width: 767px) {
  .hero__txt-wrapper {
    padding: 5rem 5%;
  }
}

.hero__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}

.hero__txt-wrapper h2 strong {
  font-size: max(20px, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__txt-wrapper h2 strong:first-of-type {
  color: var(--brown);
}

.hero__txt-wrapper p {
  line-height: 2;
}

.hero__slider {
  width: 84rem;
  height: 100%;
  border-radius: 10.5rem 0 0 0;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero__slider {
    width: 80%;
    border-radius: 10rem 0 0 0;
    margin-left: auto;
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

.hero__img {
  display: block;
  width: 47.3rem;
  position: absolute;
  left: 27rem;
  bottom: -8rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__img {
    width: 30rem;
    left: 1rem;
    bottom: -6rem;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-size: max(10px, 1.2rem);
  color: var(--brown);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 6rem;
  bottom: -13rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--brown);
  width: 1px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 15.5rem 0 18.5rem;
  position: relative;
  z-index: 2;
}

.news::before {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / contain;
  width: 42rem;
  height: 42rem;
  position: absolute;
  left: 0;
  bottom: 1rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .news::before {
    width: 32rem;
    height: 32rem;
  }
}

.CMS-NEWS-INDEX {
  width: 90.4rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4.3rem;
  margin: 4.5rem auto 7.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 17rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-TIME {
  color: var(--brown);
  margin-bottom: 1rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	about
============================*/
.about {
  background: var(--bg-1);
  padding-bottom: 37.5rem;
  position: relative;
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about::before {
  background: url("../img/about_bg.jpg") no-repeat center top / cover;
  width: 100%;
  height: 70rem;
  transform: translateY(-100%);
  left: 0;
  top: 21rem;
}

.about::after {
  background: url("../img/deco-1.png") no-repeat center / contain;
  width: 42rem;
  height: 42rem;
  top: -37rem;
  right: 0;
}

@media (max-width: 767px) {
  .about::before {
    height: 50rem;
    top: 21rem;
  }

  .about::after {
    width: 28rem;
    height: 28rem;
    top: -20rem;
  }
}

.about__contents {
    width: 110rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 8rem 11rem;
    margin: 0 auto;
    z-index: 999;
    position: relative;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.about__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .about__txt-wrapper {
    padding-top: 3rem;
  }
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4rem;
}

.about__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 3.5rem 0 8.5rem;
}

@media (min-width: 768px) {
  .about .common__btn {
    margin: 0;
  }
}

.about__img {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

.about__img::before {
  content: "";
  background-color: var(--brown);
  width: 100vw;
  height: 50rem;
  border-radius: 6rem;
  position: absolute;
  top: 5.5rem;
  right: -5.5rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .about__img::before {
    height: 60rem;
    right: 4rem;
  }
}

.about__img img {
  border-radius: 2rem;
}

.about__deco {
  display: block;
  width: 33rem;
  position: absolute;
  right: 9.5rem;
  bottom: 4.4rem;
}

@media (max-width: 767px) {
  .about__deco {
    width: 28rem;
    right: 3rem;
  }
}

/*============================
	business
============================*/
.business {
  padding: 1.5rem 0 17rem;
  position: relative;
}

.business::before,
.business::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.business::before {
  background: url("../img/business_deco-1.png") no-repeat center top / cover;
  width: 100%;
  height: 8.5rem;
  transform: translateY(-100%);
  top: 0;
  left: 0;
}

.business::after {
  background: url("../img/deco-1.png") no-repeat center / contain;
  width: 42rem;
  height: 42rem;
  transform: scale(-1, 1);
  top: -23rem;
  left: 0;
}

@media (max-width: 767px) {
  .business::before {
    height: 6.5rem;
  }

  .business::after {
    width: 28rem;
    height: 28rem;
    top: -20rem;
  }
}

.business__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
}

.business__list-1 {
  margin: 9.5rem auto 7rem;
}

.business__list-2 {
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .business__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.business__img {
  width: 100%;
  border-radius: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.business__ttl {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.business__ttl::before {
  content: "01";
  display: block;
  font-family: var(--font-num);
  font-size: max(40px, 7.2rem);
  line-height: 1;
}

.business__list-1 li:nth-of-type(2) .business__ttl::before {
  content: "02";
}

.business__list-1 li:nth-of-type(3) .business__ttl::before {
  content: "03";
}

.business__list-1 li:nth-of-type(4) .business__ttl::before {
  content: "04";
}

.business__list-2 li:nth-of-type(1) .business__ttl::before {
  content: "05";
}

.business__list-2 li:nth-of-type(2) .business__ttl::before {
  content: "06";
}

.business__sister {
  color: var(--white);
  display: flex;
  gap: 2.5rem;
  border-radius: 2rem;
  padding: 4.5rem 7rem 4.5rem 4.5rem;
}

.business__list-2 li:nth-of-type(3) {
  background: url("../img/business_sister-bg-1.jpg") no-repeat center / cover;
}

.business__list-2 li:nth-of-type(4) {
  background: url("../img/business_sister-bg-2.jpg") no-repeat center / cover;
}

@media (max-width: 950px) {
  .business__sister {
    padding: 4.5rem;
  }
}

.business__logo {
  display: block;
  width: 19rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 950px) {
  .business__logo {
    width: 15rem;
  }
}

@media (max-width: 767px) {
  .business__logo {
    width: 19rem;
  }
}

.business__logo img {
  height: auto;
}

.business__sister-txt {
  width: 100%;
}

.business__sister-txt h3 {
  font-size: max(14px, 2.2rem);
  font-weight: 700;
}

.business__sister-txt p {
  letter-spacing: 0.1em;
  margin: 2.5rem 0 3rem;
}

/*============================
	recruit
============================*/
.recruit {
  background-color: var(--bg-1);
  padding: 11rem 0;
}

.recruit__contents {
  background: url("../img/recruit_bg.jpg") no-repeat center left 60% / cover;
  width: 110rem;
  padding: 7rem 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
  }
}

.recruit__txt-wrapper {
  background-color: var(--brown);
  width: 42rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 5.5rem;
  padding: 6.5rem 0 5.5rem;
  margin-left: auto;
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
  }
}

/*============================
	access
============================*/
.access {
  padding: 21rem 0 16rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 42rem;
  height: 42rem;
  position: absolute;
  top: 1rem;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 32rem;
    height: 32rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 11.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 3.2rem 0.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
  color: var(--brown);
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.access__map-wrapper {
  width: 58rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__map-wrapper {
    width: 100%;
    margin: 0;
  }
}

.access__map {
  height: 56rem;
  border-radius: 0 4rem 4rem 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .access__map {
    border-radius: 4rem;
  }
}

.access .common__btn {
  margin: 8.5rem 0 0 auto;
}

@media (max-width: 767px) {
  .access .common__btn {
    margin: 8.5rem auto 0;
  }
}

/*============================
	contact
============================*/
.contact {
  background-color: var(--brown);
}

.contact__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 6rem 10rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .contact__contents {
    width: 100%;
    flex-direction: column-reverse;
  }
}

.contact__txt-wrapper {
  width: 100%;
  color: var(--white);
  padding: 8.5rem 0 7rem;
}

@media (max-width: 767px) {
  .contact__txt-wrapper {
    padding: 0 5% 8rem;
  }
}

.contact__txt-wrapper p {
  letter-spacing: 0.1em;
  text-align: center;
  margin: 3.5rem 0 6.5rem;
}

.contact__img {
  width: 82.5rem;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .contact__img {
    width: 100%;
    margin: 0;
  }
}
