@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(36px, 6.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.5rem;
}

.insta .common__ttl {
  text-transform: capitalize;
}

.common__ttl::after {
  content: "";
  display: block;
  background-color: var(--brown);
  width: 8rem;
  height: 1px;
}

.common__ttl--none::after {
  display: none;
}

.common__btn {
  width: max(140px, 18.5rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  font-family: var(--font-btn);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before {
  content: "";
  background-color: var(--brown);
  width: max(10px, 1.3rem);
  height: max(10px, 1.3rem);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  top: 3px;
  left: 4px;
  pointer-events: none;
}

/*============================
	hero
============================*/
.hero {
  background: var(--bg-1);
  background: url("../img/hero_bg.jpg") no-repeat center left 20% / cover;
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(320px, 60rem);
  }
}

.hero__ttl {
  width: max-content;
  font-family: var(--font-en);
  font-size: 25rem;
  font-weight: 400;
  line-height: 0.6;
  text-transform: uppercase;
  position: absolute;
  transform: translateX(-50%);
  top: 17rem;
  left: 50%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: 13rem;
    top: 25%;
  }
}

.hero__txt {
  font-size: max(12px, 1.7rem);
  letter-spacing: 0.05em;
  position: absolute;
  left: 14.5rem;
  bottom: 7rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__txt {
    width: 90vw;
    left: 5%;
    bottom: 10%;
  }

  .hero__txt.fadeUp {
    animation: fadeUp 0.4s 0.8s ease both;
  }
}

.hero__img {
  display: block;
  width: 100.6rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .hero__img {
    width: 65rem;
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.hero__img.fadeUp {
  animation: fadeRight 1s 0.3s ease both;
}

/*============================
	concept
============================*/
.concept {
  padding: 18.5rem 0 12rem;
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: column-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
  }
}

.concept__txt-wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: max(480px, 87rem);
  }
}

.concept__txt-wrapper::before {
  content: "concept";
  font-family: var(--font-en);
  font-size: 24rem;
  font-weight: 400;
  color: var(--bg-1);
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .concept__txt-wrapper::before {
    font-size: 19rem;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  letter-spacing: 0.05em;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 2rem 0 5.5rem;
}

.concept__img {
  display: block;
  width: 100%;
  margin-bottom: 4.5rem;
}

/*============================
	business
============================*/
.business {
  background: var(--bg-1);
  padding: 16.5rem 0 14.5rem;
  position: relative;
}

.business::before {
  content: "";
  background: url("../img/business_deco.jpg") no-repeat center / cover;
  width: 100%;
  height: 11rem;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
  pointer-events: none;
}

.business__list {
  width: 110rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 3rem;
  margin: 7rem auto 8rem;
}

@media (max-width: 767px) {
  .business__list {
    width: 90%;
  }
}

.business__list-item {
  width: 100%;
  max-width: 400px;
  border: solid max(3px, 0.4rem) var(--white);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

@media (min-width: 768px) {
  .business__list-item {
    width: 25.2rem;
    width: 252px;
    min-width: 200px;
  }
}

.business__img {
  width: 100%;
}

.business__txt-wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.business__txt-wrapper h3 {
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0.5rem 0;
}

@media (max-width: 767px) {
  .business__txt-wrapper h3 {
    margin: 1rem 0;
  }
}

.business__txt-wrapper p {
  font-size: max(12px, 1.4rem);
  padding: 0 5%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .business__txt-wrapper p {
    font-size: max(10px, 1rem);
    padding: 0 12%;
  }
}

/*============================
	news
============================*/
.news {
  padding: 17.5rem 0 21rem;
}

.news__inner {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 9rem;
  padding-left: 1rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 0;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 16rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--black);
  font-size: max(12px, 1.5rem);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	company
============================*/
.company {
  padding: 14.5rem 0 17rem;
}

.company__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 7rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .company__contents {
    width: 90%;
    flex-direction: column;
  }
}

.company__img {
  width: 64.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .company__img {
    width: 100%;
    margin: 0;
  }
}

.company__list {
  display: flex;
  flex-wrap: wrap;
  margin: -1.5rem 0 3rem;
}

@media (max-width: 767px) {
  .company__list {
    margin: 0 0 3rem;
  }
}

.company__list dt,
.company__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.company__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
}

.company__list dd {
  width: calc(100% - max(75px, 10rem));
}

.company__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .company__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--white);
  }
}

@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;
  }
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  padding: 13rem 0 21rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 9rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.9rem;
}

.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 12rem 0;
}

.recruit__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.recruit__txt-wrapper p {
  letter-spacing: 0.03em;
  text-align: center;
  margin: 5rem 0 6rem;
}

/*============================
	contact
============================*/
.contact {
  padding: 16rem 0 15rem;
}

.contact__contents {
  background: url("../img/contact_bg.jpg") no-repeat center / cover;
  width: 110rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5.5rem;
  padding: 10rem 0 9rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contact__contents {
    width: 90%;
  }
}

.contact__contents p {
  width: 90%;
  letter-spacing: 0.03em;
  text-align: center;
}
