@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max-content;
  font-size: max(20px, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.45em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  margin: 0 auto;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  display: block;
  font-size: max(12px, 1.5rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding-left: 0.4em;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(50px, 7rem);
  height: max(13px, 1.8rem);
  margin-bottom: 1rem;
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(217px, 29.4rem);
  height: max(65px, 8.8rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / cover;
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(82rem, 100vh);
  padding: max(80px, 14.6rem) 9rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.hero__bg {
  background: url("../img/mv.jpg") no-repeat center / cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__ttl {
  height: max-content;
  font-size: max(14px, 2.1rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.4em;
  line-height: 2;
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

@media (max-width: 767px) {
  .hero__ttl {
    top: 60%;
  }

  .hero__ttl span {
    display: block;
    height: max-content;
    margin-top: 6rem;
  }
}

/*============================
	about
============================*/
.about {
  padding: 13.5rem 0 13rem;
  position: relative;
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.about::before {
  background: url("../img/about_deco-1.png") no-repeat center / contain;
  width: 27rem;
  height: 33.6rem;
  top: 15.5rem;
  left: 0;
}

.about::after {
  background: url("../img/about_deco-2.png") no-repeat center / contain;
  width: 22.8rem;
  height: 36.6rem;
  right: 0;
  bottom: 9.5rem;
}

@media (max-width: 767px) {
  .about::before {
    width: 21rem;
    height: 26.1rem;
    top: 5rem;
  }

  .about::after {
    width: 17rem;
    height: 27.3rem;
    bottom: 3rem;
  }
}

.about__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about__txt-wrapper {
    width: 63rem;
  }
}

.about__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 5rem;
}

.about__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin: 4rem 0 5rem;
}

/*============================
	others
============================*/
.others {
  padding: 13rem 0;
}

.others__list {
  width: 126.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .others__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.others__list::before,
.others__list::after {
  content: "";
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.others__list::before {
  background: url("../img/others_deco-1.jpg") repeat center top / 100% auto;
  transform: translateX(-100%);
  left: 0;
}

.others__list::after {
  background: url("../img/others_deco-2.jpg") repeat center top / 100% auto;
  transform: translateX(100%);
  right: 0;
}

.others__list li {
  background-color: #dfe5cd;
  text-align: center;
  padding: 6rem 3rem 5.5rem;
  position: relative;
}

.others__list li:nth-of-type(2) {
  background-color: #eae2a8;
}

.others__list li:nth-of-type(3) {
  background-color: #e7eeba;
}

@media (max-width: 767px) {
  .others__list li {
    padding: 6rem 4rem 7rem;
  }
}

.others__list li::before,
.others__list li::after {
  content: "";
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.others__list li::before {
  background: url("../img/others_deco-2.jpg") repeat center top / 100% auto;
  left: 0;
}

.others__list li::after {
  background: url("../img/others_deco-1.jpg") repeat center top / 100% auto;
  right: 0;
}

.others__list h3 {
  font-size: max(16px, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3rem;
  margin-bottom: 3rem;
}

.others__list h3::after {
  content: "";
  display: block;
  background-color: #95984d;
  width: max(30px, 5.2rem);
  height: 1px;
}

.others__list p {
  letter-spacing: 0.05em;
  line-height: 2;
}

/*============================
	news
============================*/
.news__inner {
  background-color: #fff6d8;
  width: 126.4rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
  }
}

.news__inner::before,
.news__inner::after {
  content: "";
  background: url("../img/news_deco-1.png") no-repeat center top / 100% auto;
  width: 100%;
  height: 17.6rem;
  position: absolute;
  left: 0;
  pointer-events: none;
}

.news__inner::before {
  top: 0;
}

.news__inner::after {
  transform: scale(1, -1);
  bottom: 0;
}

.news__deco {
  padding: 6rem 8rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .news__deco {
    padding: 6rem 5%;
  }
}

.news__deco::before,
.news__deco::after {
  content: "";
  background: url("../img/news_deco-2.png") no-repeat center / contain;
  width: 23.7rem;
  height: 23.4rem;
  position: absolute;
  pointer-events: none;
}

.news__deco::before {
  top: 0;
  left: 0;
}

.news__deco::after {
  transform: scale(-1, 1);
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .news__deco::before,
  .news__deco::after {
    width: 20rem;
    height: 19.7rem;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  margin: 5rem auto 4rem;
  position: relative;
  z-index: 1;
}

.CMS-NEWS-ITEM:not(:first-of-type) {
  margin-top: 5px;
}

.CMS-NEWS-LINK-CONTENT {
  background-color: var(--white);
  display: flex;
  padding: 2.4rem 7rem;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    display: block;
    padding: 3rem 8rem 3rem 4rem;
  }
}

.CMS-NEWS-LINK-CONTENT::before {
  content: "";
  background: url("../img/news_arw.png") no-repeat center / contain;
  width: max(7px, 0.9rem);
  height: max(9.3px, 1.2rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 2.5rem;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK-CONTENT:hover {
    opacity: 1;
  }

  .CMS-NEWS-LINK-CONTENT:hover::before {
    right: 1.8rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.05em;
}

.CMS-NEWS-LINK {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.CMS-NEWS-TIME {
  width: max(110px, 16rem);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .CMS-NEWS-TIME {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  padding: 11rem 0 13rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 5.5rem;
  margin: 7rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 49.5rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  border-top: solid 1px #d5d5cc;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  background-color: #95984d;
  border-bottom: solid 1px #d5d5cc;
  width: max(75px, 12.4rem);
  font-weight: 500;
  color: var(--white);
  padding: 2.6rem 2rem;
}

.access__list dd {
  width: calc(100% - max(75px, 12.4rem));
  border-bottom: solid 1px #d5d5cc;
  padding: 2.6rem 3rem;
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
    padding: 2rem;
  }
}

.access__map {
  width: 110rem;
  height: 36rem;
  margin: 6rem auto 5rem;
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    height: 50rem;
  }
}

/*============================
  works
============================*/
.works {
  background: url("../img/works_bg.jpg") repeat center / 100% auto;
  padding: 6rem 0;
}

@media (max-width: 767px) {
  .works {
    background: url("../img/works_bg.jpg") repeat center / 110% auto;
  }
}

.works__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 6.6rem;
  margin: 5rem auto 4rem;
}

@media (max-width: 767px) {
  .works__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.works__list ul {
  width: 100%;
  display: flex;
  gap: 0.7rem;
}

.works__list li {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.works__list li span {
  background-color: var(--white);
  width: max(70px, 10.5rem);
  height: max(30px, 3.7rem);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.works__list ul li:nth-of-type(1) span {
  background-color: var(--black);
  color: var(--white);
}

/*============================
  contact
============================*/
.contact {
  color: var(--white);
  padding: 15rem 0;
}

.contact__contents {
  background-color: var(--green);
  width: 110rem;
  padding: 6rem 0 5rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .contact__contents {
    width: 90%;
  }
}

.contact__contents::before,
.contact__contents::after {
  content: "";
  position: absolute;
  top: 0;
  pointer-events: none;
}

.contact__contents::before {
  background: url("../img/contact_deco-1.png") no-repeat center / contain;
  width: 26.1rem;
  height: 26.6rem;
  left: 0;
}

.contact__contents::after {
  background: url("../img/contact_deco-2.png") no-repeat center / contain;
  width: 21.2rem;
  height: 17.3rem;
  right: 0;
}

.contact__contents::before {
  background: url("../img/contact_deco-1.png") no-repeat center / contain;
  width: 26.1rem;
  height: 26.6rem;
  top: 0;
  left: 0;
}

.contact__list {
  width: 91.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  margin: 5.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .contact__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.contact__list a {
  background: url("../img/contact_bg-1.jpg") no-repeat center / cover;
  width: 100%;
  height: max(150px, 22rem);
  font-size: max(16px, 2.6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
  position: relative;
}

.contact__list li:nth-of-type(2) a {
  background: url("../img/contact_bg-2.jpg") no-repeat center / cover;
  font-size: max(16px, 3.1rem);
  letter-spacing: 0.05em;
}

.contact__list a::before {
  content: "";
  display: block;
  background: url("../img/mail_icon.png") no-repeat center / contain;
  width: max(21px, 2.8rem);
  height: max(15px, 2rem);
}

.contact__list li:nth-of-type(2) a::before {
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(13px, 1.8rem);
  height: max(16.8px, 2.4rem);
}

.contact__list a::after {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: solid 1px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

/*============================
  parallax
============================*/
.parallax {
  width: 100%;
  height: 45rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 40rem;
  }
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
