@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.8rem);
  font-weight: 800;
  color: var(--gray);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem 1.5rem;
}

.company .common__ttl {
  flex-direction: row;
  align-items: baseline;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(24px, 5.4rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.common__ttl span::first-letter {
  color: var(--brown);
}

.common__ttl--wt,
.common__ttl--wt span::first-letter {
  color: var(--white);
}

.common__btn {
  width: max(160px, 21.4rem);
  height: max(40px, 5.5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  border-radius: max(12px, 2rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding-left: 2rem;
  position: relative;
}

.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);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__ttl {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: absolute;
  top: 35%;
  left: 12rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__ttl {
    top: auto;
    left: 5%;
    bottom: 10%;
  }
}

.hero__ttl span {
  display: block;
  background-color: var(--brown);
  font-size: max(18px, 2.8rem);
  font-weight: 900;
  color: var(--white);
  padding: 0.9rem 1.5rem 0.9rem 2rem;
}

.hero__ttl span:nth-of-type(2) {
  background-color: var(--gray);
}

@media (max-width: 767px) {
  .hero__ttl span {
    font-size: max(14px, 2rem);
    padding: 0.7rem 1rem 0.7rem 1.5rem;
  }
}

.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;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  padding: 19rem 0 18.5rem;
}

.policy__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.policy__txt-wrapper h2 {
  width: max-content;
  font-size: max(16px, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  padding-bottom: 5rem;
  margin: 0 auto 5.5rem;
  position: relative;
}

.policy__txt-wrapper h2::before {
  content: "";
  background: linear-gradient(0deg, var(--brown) 40%, var(--white) 40%, var(--white) 60%, var(--gray) 60%);
  width: 98%;
  height: max(14px, 2.2rem);
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2::before {
    width: 100%;
  }
}

.policy__txt-wrapper p {
  line-height: 2.2;
  margin: 0 auto;
}

/*============================
	business
============================*/
.business {
  background-color: #f9f9f9;
  padding: 17rem 0 18rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.business::before,
.business::after {
  content: "";
  background-color: var(--white);
  width: 96rem;
  height: 66.5rem;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.business::after {
  width: 88rem;
  height: 61.5rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

.business__txt {
  font-size: max(18px, 2.8rem);
  font-weight: 900;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 6.5rem 0 7rem;
}

@media screen and (max-width: 767px) {
  .business__txt {
    font-size: max(16px, 2.4rem);
  }
}

.business__list {
  width: 92.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem 7.2rem;
  margin: 0 auto 8rem;
}

@media screen and (max-width: 767px) {
  .business__list {
    width: 80%;
    grid-template-columns: 1fr;
  }
}

.business__img {
  display: block;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.business__list p {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 2.5rem;
}

/*============================
	insta
============================*/
.insta {
  background-color: var(--gray);
  padding: 15rem 0 19.5rem;
}

.insta__contents {
  width: 87rem;
  margin: 9.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 + 4) {
  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;
  }
}

/*============================
	news
============================*/
.news {
  padding: 17rem 0 20rem;
}

.CMS-NEWS-INDEX {
  width: 85rem;
  height: auto;
  margin: 9rem auto 12rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
  }
}

.CMS-NEWS-ITEM:not(:last-of-type) {
  border-bottom: dashed 1px var(--gray);
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  gap: 1rem 7rem;
  padding: 2.6rem 9rem 2.6rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
  }
}

.CMS-NEWS-LINK-CONTENT::before {
  content: "";
  background: url("../img/news_arw.png") no-repeat center / contain;
  width: max(20px, 2.4rem);
  height: max(20px, 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::before {
    right: 0;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.05em;
}

.CMS-NEWS-LINK {
  font-size: max(12px, 1.4rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.CMS-NEWS-TIME {
  font-size: max(10px, 1.2rem);
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	company
============================*/
.company {
  background-color: #f9f9f9;
  padding: 21.5rem 0 21rem;
}

.company__contents {
  width: 110rem;
  display: flex;
  gap: 15rem 11rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .company__contents {
    width: 90%;
    flex-direction: column;
  }
}

.company__img {
  width: 53.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -7.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .company__img {
    width: 100%;
    margin: 0;
  }
}

.company__img::before {
  content: "";
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10.5rem;
  left: -9.5rem;
  pointer-events: none;
  z-index: -1;
}

.company__list {
  display: flex;
  flex-wrap: wrap;
  margin: 3.5rem 0 7rem;
}

.company__list dt,
.company__list dd {
  letter-spacing: 0.07em;
  padding: 2rem 1.6rem;
}

.company__list dt {
  width: max(75px, 14rem);
  font-weight: 400;
}

.company__list dd {
  width: calc(100% - max(75px, 14rem));
}

.company__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .company__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@media (max-width: 767px) {
  .company__list dt,
  .company__list dd {
    width: 100%;
  }

  .company__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .company__list dd {
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .company .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 48rem;
}

/*============================
	others
============================*/
.others {
  background-color: var(--brown);
  color: var(--white);
  padding: 7.5rem 0 7rem;
}

@media screen and (max-width: 767px) {
  .others {
    padding: 8rem 0;
  }
}

.others__list {
  width: max-content;
  display: flex;
  gap: 5rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .others__list {
    flex-direction: column;
  }
}

.others__list li a {
  width: max(200px, 33.6rem);
  height: max(50px, 7.6rem);
  border: solid 1px var(--white);
  border-radius: 5rem;
  font-size: max(18px, 3rem);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}

.others__list li a::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(24px, 4.4rem);
  height: max(24px, 4.4rem);
}

.others__list li:nth-of-type(2) a::before {
  background: url("../img/mail_icon.png") no-repeat center / contain;
  width: max(22px, 4.1rem);
  height: max(15px, 2.8rem);
}

.others__list p {
  letter-spacing: 0.1em;
  margin: 0.8rem 0 0 2.5rem;
}
