@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.8rem);
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl--row {
  flex-direction: row;
  align-items: baseline;
}

.common__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.common__btn {
  width: max(160px, 21.4rem);
  height: max(40px, 5.5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  border-radius: 2rem;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.common__btn--wt a {
  border: solid 1px var(--white);
  color: var(--white);
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(30px, 3.6rem);
  height: max(5px, 0.6rem);
}

.common__btn--wt a::after {
  background: url("../img/btn_arw-wt.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(91.5rem, 100vh);
  padding: max(60px, 12rem) 0 16.5rem 34rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 50rem);
    padding: max(60px, 8rem) 0 10% 10%;
  }
}

.hero::before {
  content: "";
  background-color: var(--brown);
  width: 86%;
  height: 57%;
  position: absolute;
  left: 0;
  bottom: 9rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero::before {
    bottom: 5%;
  }
}

.hero__ttl {
  position: absolute;
  left: 17rem;
  bottom: 23rem;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__ttl {
    left: 5%;
    bottom: 20%;
  }
}

.hero__ttl span {
  display: block;
  background-color: var(--white);
  width: max-content;
  height: max-content;
  font-size: max(16px, 2.6rem);
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 0.05em;
  padding: 2rem 2.5rem;
}

.hero__ttl span:not(:last-of-type) {
  margin-bottom: 1.6rem;
}

@media (max-width: 767px) {
  .hero__ttl span {
    font-size: max(14px, 2rem);
    padding: 1.5rem 2rem;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@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;
}

/*============================
	news
============================*/
.news {
  background-color: rgba(10, 74, 102, 0.1);
  padding: 14rem 0 13.5rem;
}

.CMS-NEWS-INDEX {
  width: 85rem;
  height: auto;
  margin: 5.5rem auto 6rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
  }
}

.CMS-NEWS-ITEM:not(:last-of-type) {
  border-bottom: dashed 1px var(--black);
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  align-items: center;
  padding: 2.7rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    display: block;
  }
}

.CMS-NEWS-LINK-CONTENT::after {
  content: "";
  background: url("../img/news_arw.png") no-repeat center / contain;
  width: max(18px, 2.4rem);
  height: max(18px, 2.4rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 5px;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK-CONTENT:hover::after {
    right: 0;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.05em;
}

.CMS-NEWS-LINK {
  width: 60rem;
  font-size: max(12px, 1.4rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.CMS-NEWS-TIME {
  width: max(100px, 14.5rem);
  font-size: max(10px, 1.2rem);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .CMS-NEWS-TIME {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	business
============================*/
.business {
  padding: 16rem 0;
  position: relative;
  overflow: hidden;
}

.business::before {
  content: "";
  background: url("../img/business_bg.jpg") no-repeat center top / cover;
  position: absolute;
  inset: 0;
  pointer-events: none;
    z-index: -1;
}

.business__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.business__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 8rem 0 4rem;
}

.business__txt-wrapper p {
  letter-spacing: 0.04em;
  line-height: 2.375;
}

.business__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4.6rem;
  margin: 5.5rem auto 7.5rem;
}

@media (max-width: 767px) {
  .business__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.business__img {
  width: 100%;
}

.business__list h3 {
  border-bottom: solid 1px var(--black);
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 0.04em;
  padding-bottom: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}

.business__list p {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.04em;
  line-height: 2;
}

/*============================
	company
============================*/
.company {
  background: var(--bg-1);
  color: var(--white);
  padding: 11.5rem 0 12.5rem;
}

@media (max-width: 767px) {
  .company {
    padding: 10rem 0 11.5rem;
  }
}

.company__contents {
  width: 104rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 11.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .company__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.company__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .company__txt-wrapper {
    padding-top: 4rem;
  }
}

.company__txt-wrapper h3 {
  font-size: max(14px, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-top: 4rem;
}

.company__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.375;
  margin: 3rem 0 7rem;
}

@media (min-width: 768px) {
  .company .common__btn {
    margin: 0;
  }
}

.company__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .company__img {
    width: 100%;
    margin-left: 0;
  }
}

/*============================
	access
============================*/
.access {
  padding: 21rem 0 18.5rem;
}

@media (max-width: 767px) {
  .access {
    padding: 12rem 0 15rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 11rem;
  margin: 0 auto 9rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__map {
  width: 53.5rem;
  height: 57rem;
  flex-shrink: 0;
  margin-right: -7.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    height: 45rem;
    margin: 0;
  }
}

.access__map::before {
  content: "";
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10.5rem;
  right: -9.5rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .access__map::before {
    top: 5rem;
    right: -7rem;
    z-index: -1;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.1em;
  padding: 2rem 1.6rem;
}

.access__list dt {
  width: max(75px, 14rem);
  font-weight: 500;
}

.access__list dd {
  width: calc(100% - max(75px, 14rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--brown);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--brown);
  }
}

@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;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-1);
  padding: 12rem 0 16.5rem;
}

.insta__contents {
  width: 87rem;
  margin: 7.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	recruit
============================*/
.recruit {
  padding: 13rem 0 11.5rem;
}

@media screen and (max-width: 767px) {
  .recruit {
    padding: 10rem 0 11rem;
  }
}

.recruit__contents {
  width: 125rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 7.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .recruit__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.recruit__txt-wrapper {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .recruit__txt-wrapper {
    padding-top: 6rem;
  }
}

.recruit__bg {
  color: var(--white);
  padding: 5rem 5rem 6rem;
  margin-top: 4rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .recruit__bg {
    padding: 7.5rem 9rem 9rem 50rem;
    margin: 4rem 0 0 -50rem;
  }
}

.recruit__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--brown);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.recruit__txt-wrapper h3 {
  font-size: max(14px, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.recruit__txt-wrapper p {
  letter-spacing: 0.01em;
  line-height: 2.375;
  margin: 3rem 0 6.5rem;
}

@media screen and (min-width: 768px) {
  .recruit .common__btn {
    margin: 0;
  }
}

.recruit__img {
  width: 68rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
  .recruit__img {
    width: 100%;
    margin: 0;
  }
}
