@charset "UTF-8";

/*============================
	footer
============================*/
.footer {
  background-color: transparent;
  padding: 0 11rem 5.5rem 17rem;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*============================
	common
============================*/
.common__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .common__inner {
    width: 90%;
  }
}

.common__ttl {
  font-family: var(--font-en);
  font-size: max(30px, 6.6rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
}

.common__ttl::first-letter {
  color: var(--brown);
}

.common__ttl--small {
  font-size: max(24px, 5rem);
}

.common__btn {
  width: max-content;
  margin-left: auto;
}

.common__btn a {
  width: max(60px, 10.8rem);
  height: max(60px, 10.8rem);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: solid 1px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.3s ease-out;
}

.common__btn--bl a::before {
  border: solid 1px var(--black);
}

@media (min-width: 768px) {
  .common__btn a:hover::before {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 0;
  }
}

.common__btn a::after {
  content: "MORE";
  position: absolute;
  transform: translateX(-100%);
  left: 0.4rem;
  bottom: -0.5rem;
}

.common__btn--bl a::after {
  color: var(--black);
}

.common__btn a img {
  display: block;
  width: max(26px, 4.4rem);
  height: max(12px, 2rem);
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .common__btn a:hover img {
    transform: translateX(15%);
  }
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__ttl {
  font-family: var(--font-en);
  font-size: max(20px, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5rem;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(14px, 2.4rem);
    row-gap: 3rem;
  }
}

.hero__ttl span {
  display: block;
  width: 50rem;
}

@media (max-width: 767px) {
  .hero__ttl span {
    width: max(180px, 24rem);
  }
}

/*============================
	about
============================*/
.about {
  background-color: var(--black);
  color: var(--white);
  padding: 17rem 0 18.5rem;
  position: relative;
}

.about::before,
.about::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / cover;
  width: 38.2rem;
  height: 40.4rem;
  position: absolute;
  pointer-events: none;
}

.about::before {
  top: 0;
  right: 0;
}

.about::after {
  transform: scale(-1, -1);
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .about::before,
  .about::after {
    width: 32rem;
    height: 33.8rem;
  }
}

.about__img {
  width: 98rem;
  border-radius: 0 6rem 0 6rem;
  margin: 7.5rem auto 11rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .about__img {
    width: 95%;
    margin: 7.6rem auto 8rem;
  }
}

.about__txt {
  width: 73rem;
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin-left: 8rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .about__txt {
    width: 95%;
    margin: 0 auto;
  }
}

.about .common__btn {
  margin: -6rem 8rem 0 auto;
}

@media (max-width: 767px) {
  .about .common__btn {
    margin: 4rem 0 0 auto;
  }
}

/*============================
	service
============================*/
.service {
  background: url("../img/service_bg.jpg") no-repeat center / cover;
  padding: 17rem 0 23rem;
}

.service__contents {
  display: flex;
  gap: 4rem 11rem;
}

@media (max-width: 767px) {
  .service__contents {
    flex-direction: column;
  }

  .service__txt-wrapper {
    width: 100%;
  }
}

.service__txt {
  width: 41rem;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 5rem 2rem 4rem 5rem;
}

@media (max-width: 767px) {
  .service__txt {
    width: auto;
    margin: 5rem 0;
  }
}

.service__list {
  display: flex;
  flex-direction: column;
  row-gap: 5.5rem;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .service__list {
    row-gap: 8rem;
    margin-top: 0;
    margin-bottom: 6rem;
  }
}

.service__list-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .service__list-item:hover a {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .service__list-txt {
    padding-left: 4rem;
  }
}

.service__list-item span {
  display: block;
  font-family: var(--font-en);
  font-size: 3.3rem;
  font-weight: 500;
  font-style: italic;
  color: #c6c6c6;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 0 -1rem -3rem;
}

.service__list-item p {
  font-size: max(18px, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  padding-right: max(40px, 6rem);
  position: relative;
}

.service__list-item p::after {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(26px, 4.4rem);
  height: max(12px, 2rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .service__list-item:hover p::after {
    right: -1rem;
  }
}

/*============================
	shop
============================*/
.shop {
  background-color: var(--black);
  color: var(--white);
  padding: 15rem 0 21.5rem;
  position: relative;
}

.shop::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / cover;
  width: 34.4rem;
  height: 36.4rem;
  position: absolute;
  transform: scale(-1, -1);
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .shop::before {
    width: 32rem;
    height: 33.8rem;
  }
}

.shop__btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 9rem;
  margin: 5rem auto 0;
}

@media (max-width: 767px) {
  .shop__list {
    margin: 5rem auto;
  }
}

.shop__list li {
  display: flex;
  gap: 4rem 5.5rem;
}

.shop__list li:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .shop__list li,
  .shop__list li:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.shop__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .shop__txt-wrapper {
    padding-top: 5rem;
  }
}

.shop__txt-wrapper h3 {
  font-size: max(18px, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.shop__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.shop__img {
  width: 52rem;
  height: 100%;
  border-radius: 0 8rem 0 8rem;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .shop__img {
    width: 100%;
  }
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 12.5rem 0 16rem;
}

.recruit__inner {
  width: 78rem;
  display: flex;
  align-items: flex-end;
  gap: 6rem 19rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__inner {
    width: 90%;
    flex-direction: column;
  }
}

.recruit__txt-wrapper {
  width: 100%;
}

.recruit .common__ttl {
  border-bottom: solid 1px var(--black);
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}

.recruit__txt-wrapper {
  letter-spacing: 0.1em;
  line-height: 2;
}

.recruit .common__btn {
  margin-right: -6rem;
}

@media (max-width: 767px) {
  .recruit .common__btn {
    margin: 0 0 0 auto;
  }
}

/*============================
	news
============================*/
.news {
  background-color: var(--black);
  color: var(--white);
  padding: 15rem 0 16.5rem;
}

.news__btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.news__txt-wrapper p {
  letter-spacing: 0.1em;
  margin: 2rem 0 0 2rem;
}

.CMS-NEWS-INDEX {
  width: 83rem;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    margin: 10rem auto 6rem;
  }
}

.CMS-NEWS-LINK-CONTENT {
  border-bottom: solid 1px var(--white);
  display: flex;
  padding: 2.4rem 0;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
    row-gap: 1rem;
  }
}

.CMS-NEWS-TIME {
  width: max(100px, 13.5rem);
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	contact
============================*/
.contact {
  background: url("../img/contact_bg.jpg") no-repeat center / cover;
  padding: 13rem 0 15rem;
}

.contact__inner {
  width: 54rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .contact__inner {
    width: 80%;
  }
}

.contact__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  margin: 5rem 0 0;
}

.contact__list a {
  border-bottom: solid 1px var(--black);
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem 1.5rem;
}

.contact__list a::before {
  content: "";
  display: block;
  background: url("../img/mail_icon.png") no-repeat center / contain;
  width: max(30px, 5.6rem);
  height: max(20.3px, 3.8rem);
}

.contact__list li:nth-of-type(2) a::before {
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(24px, 4.1rem);
  height: max(24px, 4.1rem);
  margin-left: 1rem;
  margin-right: 0.5rem;
}

.contact__list a::after {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(26px, 4.4rem);
  height: max(12px, 2rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .contact__list a:hover::after {
    transform: translate(15%, -50%);
  }
}

.contact__list p {
  font-size: max(12px, 1.7rem);
  letter-spacing: 0.1em;
}

.contact__list p span {
  display: block;
  font-family: var(--font-en);
  font-size: max(18px, 4rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1;
}

/*============================
	company
============================*/
.company {
  background: url("../img/company_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 17rem 0 30rem;
  position: relative;
}

@media (max-width: 767px) {
  .company {
    padding: 16rem 0 max(200px, 30.9rem);
  }
}

.company::before {
  content: "";
  background: url("../img/company_deco.png") no-repeat center / contain;
  width: 40.2rem;
  height: 21.4rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .company::before {
    width: 32rem;
    height: 17rem;
  }
}

.company__contents {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 2rem 7rem;
  margin: 7rem auto 0;
}

@media (max-width: 767px) {
  .company__contents {
    flex-direction: column;
  }
}

.company__map {
  display: block;
  width: 53rem;
  height: 34.5rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .company__map {
    width: 100%;
    height: 40rem;
    flex-shrink: 0;
  }
}

.company__list-wrapper {
  width: 100%;
  margin-right: calc(50% - 50vw);
}

.company__list {
  max-width: 70rem;
  display: flex;
  flex-wrap: wrap;
  margin: -13rem 0 7.5rem;
}

@media (max-width: 767px) {
  .company__list {
    margin: 0 0 7.5rem;
  }
}

.company__list dt,
.company__list dd {
  padding: 2.7rem 1.6rem;
}

.company__list dt {
  width: max(75px, 13rem);
  font-weight: 100;
}

.company__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 1px var(--white);
  padding: 2.7rem 17rem 2.7rem 1.6rem;
}

@media (min-width: 768px) {
  .company__list dt {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .company__list dt,
  .company__list dd {
    width: 100%;
    padding: 2.7rem 1.6rem;
  }

  .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 17rem 0 auto;
  }
}
