@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.8rem;
}

.common__ttl::after {
  content: "";
  display: block;
  background-color: var(--red);
  width: max(60px, 10.5rem);
  height: 3px;
}

.common__btn {
  width: max(150px, 18.7rem);
  height: max(40px, 5.6rem);
  margin: 0 auto;
}

.common__btn a {
  background-color: var(--red);
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(6px, 0.8rem);
  height: max(11.2px, 1.5rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3rem;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__txt {
  color: var(--white);
  position: absolute;
  transform: translateY(-50%);
  top: 60%;
  left: 15rem;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__txt {
    top: 60%;
    left: 5%;
  }
}

.hero__txt h2 {
  font-size: max(18px, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .hero__txt h2 {
    font-size: max(14px, 2.4rem);
    margin-bottom: 1rem;
  }
}

.hero__txt h2 strong {
  display: block;
  font-size: max(24px, 6.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .hero__txt h2 strong {
    font-size: max(20px, 4rem);
    margin-top: 0;
  }
}

.hero__txt p {
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (max-width: 767px) {
  .hero__txt p {
    font-size: max(10px, 1.4rem);
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero__slider::after {
  content: "";
  background-image: linear-gradient(90deg, #7f0000 70%, rgba(229, 0, 0, 0));
  width: 55%;
  height: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__slider::after {
    width: 80%;
  }
}

@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: var(--bg-1);
  padding: 16.5rem 0 19rem;
}

@media (max-width: 767px) {
  .policy {
    padding: 8rem 0 10rem;
  }
}

.policy__contents {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4rem 11rem;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    margin: 0 auto;
  }
}

.policy__txt-wrapper {
  margin-bottom: 7rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.75;
}

.policy__txt-wrapper p {
  height: 470px;
  letter-spacing: 0.3em;
  line-height: 1.75;
  margin-right: 2rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    height: auto;
    margin: 2rem 0 0;
  }
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0;
  }
}

.policy__img {
  width: 75.6rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

/*============================
	project
============================*/
.project {
  background: var(--bg-2);
  padding: 12rem 0 10.8rem;
  position: relative;
}

.project::before {
  content: "";
  background: url("../img/project_deco.png") no-repeat center / contain;
  width: 47.8rem;
  height: 47.8rem;
  position: absolute;
  top: 5.7rem;
  right: 4.7rem;
}

@media (max-width: 767px) {
  .project::before {
    width: 28rem;
    height: 28rem;
    top: 8rem;
    right: 1rem;
  }
}

.project__list {
  width: 104rem;
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
  margin: 8.5rem auto 13.5rem;
}

@media (max-width: 767px) {
  .project__list {
    width: 90%;
  }
}

.project__list-item {
  display: flex;
  gap: 2rem 10rem;
}

.project__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .project__list-item,
  .project__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.project__txt-wrapper {
  width: 100%;
}

.project__txt-wrapper::before {
  content: "01";
  display: block;
  font-family: var(--font-mincho);
  font-size: 14.5rem;
  line-height: 1;
  margin: 0 0 2rem -2rem;
}

.project__list-item:nth-of-type(2) .project__txt-wrapper::before {
  content: "02";
}

.project__list-item:nth-of-type(3) .project__txt-wrapper::before {
  content: "03";
}

.project__list-item:nth-of-type(4) .project__txt-wrapper::before {
  content: "04";
}

@media (max-width: 767px) {
  .project__txt-wrapper::before {
    font-size: 12rem;
    margin: 0 0 2rem -1rem;
  }
}

.project__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.05em;
}

.project__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 1.68;
  margin: 1.5rem 0 0;
}

.project__img {
  width: 50.8rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .project__img {
    width: 100%;
  }
}

/*============================
	product
============================*/
.product {
  background: var(--bg-1);
  color: var(--white);
  padding: 17.8rem 0 18.3rem;
  position: relative;
}

@media (max-width: 767px) {
  .product {
    padding: 30rem 0 15rem;
  }
}

.product::before {
  content: "";
  background: url("../img/product_bg.jpg") no-repeat center / cover;
  width: 144rem;
  height: 47.5rem;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
}

@media (max-width: 767px) {
  .product::before {
    width: 76.7rem;
    height: 25.3rem;
  }
}

.product__contents {
  width: 107rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .product__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.product__txt-wrapper {
  background: url("../img/product_txt-bg.jpg") no-repeat center / cover;
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
  padding: 7.5rem 6.3rem 8rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .product__txt-wrapper {
    width: 100%;
    padding: 5rem 8rem 6rem;
  }
}

.product__txt-wrapper::before {
  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;
}

.product__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.25;
  margin: 3rem 0 7rem;
}

.product__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
  margin: 10.4rem -8rem 0 0;
}

@media (max-width: 767px) {
  .product__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	bg
============================*/
.bg {
  width: 100%;
  height: 100%;
}

.bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  padding: 11.5rem 0 11.2rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 7.4rem auto 9rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px rgba(0, 0, 0, 0.5);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  padding: 12.5rem 0 12rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 47.8rem;
  height: 47.8rem;
  position: absolute;
  top: 3.5rem;
  left: 3rem;
}

@media (max-width: 767px) {
  .access::before {
    width: 28rem;
    height: 28rem;
    top: 8rem;
    left: 2rem;
  }
}

.access__contents {
  width: 110rem;
  margin: 8.2rem auto 8rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
  }
}

.access__img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  margin-bottom: 8rem;
}

.access__list-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16.5rem;
}

@media (max-width: 767px) {
  .access__list-wrapper {
    grid-template-columns: 1fr;
  }
}

.access__list {
  height: max-content;
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  width: max(100px, 14rem);
  font-weight: 400;
  padding: 2.6rem 1.6rem;
}

.access__list dd {
  width: calc(100% - max(100px, 14rem));
  border-bottom: solid 1px var(--black);
  padding: 2.6rem 1rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--black);
  }

  .access__list:nth-of-type(2) dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@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;
  }
}

.top__map {
  height: 38rem;
}

/*============================
	contact
============================*/
.contact {
  background: var(--bg-1);
  padding: 10rem 0 14rem;
}

.contact__list {
  width: 114.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .contact__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.contact__list li {
  background-color: var(--white);
  height: 22rem;
  border: solid 3px var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3.5rem;
}

@media (max-width: 767px) {
  .contact__list li {
    height: max-content;
    padding: 4rem 0 5rem;
  }
}

.contact h3 {
  font-size: max(18px, 3rem);
  font-weight: 900;
  color: var(--red);
}

.contact__btn {
  width: max(180px, 31.6rem);
  height: max(40px, 6.7rem);
  margin-top: 2.5rem;
}

.contact__btn a {
  background-color: var(--red);
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.15em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact__btn a::before,
.contact__btn a::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.contact__btn a::before {
  background: url("../img/contact_btn.png") no-repeat center / contain;
  width: max(20.8px, 3.2rem);
  height: max(15px, 2.3rem);
  left: 4rem;
}

.contact__btn a::after {
  background: url("../img/contact_btn-arw.png") no-repeat center / contain;
  width: max(9px, 1.5rem);
  height: max(16.8px, 2.8rem);
  right: 2.7rem;
}

.contact__tel {
  font-size: max(20px, 4.4rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  column-gap: 1.8rem;
  margin-top: 2rem;
}

.contact__tel::before {
  content: "";
  display: block;
  background: url("../img/contact_tel.png") no-repeat center / contain;
  width: max(24px, 4.3rem);
  height: max(24px, 4.3rem);
}
