@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.5rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.works .works1 {
  text-align: left;
  width: 98rem;
  margin: 0 auto;
  position: relative;
  z-index: 1; 
}

@media (max-width: 767px) {
  .works .works1 {
  text-align: center;
  width: 100%;
}
}

.works .common__ttl span {
    text-align: left;
    left: 0;
     margin-bottom: -5rem;
}

.common__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(55px, 11rem);
  font-weight: 400;
  color: #d7eaf2;
  text-transform: uppercase;
  margin-bottom: -6rem;
}

.access .common__ttl span {
  color: var(--white);
  text-align: left;
  margin-bottom: -3rem;
}

.contact .common__ttl span {
  opacity: 0.15;
}

.about .common__ttl span {
  color: var(--white);
  text-align: left;
  margin-bottom: -5rem;
  opacity: 0.55;
}

.about .common__ttl .jp {
  font-family: var(--font-sans);
  font-size: max(24px, 3.5rem);
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0 6rem;
  opacity: 1;
  position: relative;
  z-index: 1;
}

.business .common__ttl span,
.news .common__ttl span {
  text-align: right;
}

.business .common__ttl span {
  margin-bottom: -9rem;
}

.recruit .common__ttl span {
  margin-bottom: -4.5rem;
}

@media (max-width: 767px) {
  .business .common__ttl span {
    margin-bottom: -4rem;
  }
}

.common__btn {
  width: max(168px, 21.6rem);
  height: max(36px, 4.6rem);
  flex-shrink: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  display: block;
  background: linear-gradient(-90deg, var(--blue), var(--skyblue));
  width: 100%;
  height: 100%;
  border-radius: 100px;
  font-size: max(12px, 1.3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.common__btn--wt a {
  background: linear-gradient(-90deg, var(--white), #f0f8fd);
  color: var(--black);
}

.common__btn a span {
  background: linear-gradient(90deg, var(--skyblue), var(--blue));
  width: 100%;
  height: 100%;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-left: 2rem;
}

.common__btn--wt a span {
  background: linear-gradient(90deg, var(--white), #f0f8fd);
}

.common__btn a span::after {
  content: "";
  display: block;
  width: max(8px, 1rem);
  height: max(8px, 1rem);
  border: 2px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.common__btn--wt a span::after {
  border: 2px solid var(--black);
  border-left: 0;
  border-bottom: 0;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding: 16rem 8rem 8rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 55rem);
    padding: max(60px, 8rem) 0 0;
  }
}

.hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero__ttl {
  font-size: max(21px, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.25em;
  line-height: 2;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 5.5rem;
  z-index: 5;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(18px, 2.8rem);
    top: 40%;
    left: 5%;
  }
}

.hero__ttl span {
  display: block;
  margin-left: 5.5rem;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__img {
  animation: zoomOut 5s linear both;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-size: max(12px, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  right: 5rem;
  bottom: 2.5rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--black);
  width: 1px;
  height: max(40px, 8rem);
  animation: scroll 2.5s infinite;
}

/*============================
	about
============================*/
.about {
  background: url("../img/about_bg.jpg") no-repeat center left / cover;
  padding: 5rem 0 6.5rem;
}

.about__contents {
  width: 118rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.about__txt-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  padding: 8rem 4.5rem 6.5rem 11rem;
}

@media (max-width: 767px) {
  .about__txt-wrapper {
    padding: 6rem 6rem 8rem;
  }
}

.about__txt-wrapper h3 {
  font-size: max(18px, 3rem);
  font-weight: 700;
  color: #234e15;
  letter-spacing: 0.1em;
}

.about__txt-wrapper h3 strong {
  font-size: max(24px, 4rem);
  font-weight: 700;
}

.about__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4.5rem 0 6rem;
}

@media (min-width: 768px) {
  .about .common__btn {
    margin: 0;
  }
}

.about__img {
  width: 54.5rem;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  margin: 9rem -4rem 0 calc(50% - 50vw + 7rem);
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
    margin: 8rem 0 0;
  }
}

.about__img img:nth-of-type(2) {
  width: 37.5rem;
  flex-shrink: 0;
  margin: 12rem 0 0 -20rem;
}

@media (max-width: 767px) {
  .about__img img:nth-of-type(1),
  .about__img img:nth-of-type(2) {
    width: 65%;
  }
}

/*============================
	business
============================*/
.business {
  padding: 9.5rem 0 10.5rem;
  position: relative;
  overflow: hidden;
}

.business::before,
.business::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.business::before {
  background: url("../img/business_deco-1.png") no-repeat center / contain;
  width: 18.8rem;
  height: 26.2rem;
  top: 14.5rem;
  left: -2.2rem;
}

.business::after {
  background: url("../img/business_deco-2.png") no-repeat center / contain;
  width: 27.8rem;
  height: 23.6rem;
  right: -5.5rem;
  bottom: 10rem;
}

@media (max-width: 767px) {
  .business::before {
    top: -3rem;
    left: -7rem;
  }

  .business::after {
    right: -6rem;
    bottom: 4rem;
  }
}

.business p {
  width: 58.5rem;
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 5rem auto 3.5rem;
}

@media (max-width: 767px) {
  .business p {
    width: 90%;
  }
}

.business__img {
  width: 110rem;
  margin: 0 auto 4.5rem;
  position: relative;
  clip-path: polygon(10rem 0%, 100% 0, 100% calc(100% - 10rem), calc(100% - 10rem) 100%, 0 100%, 0 10rem);
  position: relative;
}

@media (max-width: 767px) {
  .business__img {
    width: 90%;
    clip-path: polygon(5rem 0%, 100% 0, 100% calc(100% - 5rem), calc(100% - 5rem) 100%, 0 100%, 0 5rem);
  }
}

/* .business__img::before {
  content: "";
  background-color: #234e15;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
} */

.business__img figcaption {
  font-family: var(--font-en);
  font-size: max(40px, 8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  writing-mode: vertical-rl;
  opacity: 0.4;
  position: absolute;
  left: 2.5rem;
  bottom: 3rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .business__img figcaption {
    font-size: max(24px, 6rem);
    bottom: 2rem;
  }
}

/*============================
	works
============================*/
.works {
  background: var(--bg-1);
  padding: 8.5rem 0 11rem;
}

.works__ttl-wrapper {
  width: 98rem;
  display: flex;
  align-items: flex-end;
  gap: 19rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .works__ttl-wrapper {
    width: 90%;
  }
}

.works__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 2rem;
}

.works__slider {
  height: 22.6rem;
  margin: 8rem 0 0;
}

@media (max-width: 767px) {
  .works__slider {
    margin: 8rem 0;
  }
}

.works__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.works__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 10rem 0;
}

.recruit__txt-wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  width: 110rem;
  padding: 4rem;
  margin: 0 auto;
  filter: drop-shadow(0.7rem 0.7rem 0.5rem rgba(0, 0, 0, 0.2));
}

@media (max-width: 767px) {
  .recruit__txt-wrapper {
    width: 90%;
  }
}

.recruit__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 2.5rem 0 3.5rem;
}

/*============================
	news
============================*/
.news {
  padding: 8rem 0 11.5rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7rem;
  margin: 8rem auto 8.5rem;
}

@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: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  padding: 8rem 0 9rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 10rem 4rem;
  margin: 5.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 53.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-top: 7rem;
  margin-left: calc(50% - 50vw + 5.5rem);
  position: relative;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__img img:nth-of-type(2) {
  position: absolute;
  top: 11.5rem;
  left: -5.5rem;
  z-index: -1;
}

@media (max-width: 767px) {
  .access__img img:nth-of-type(2) {
    top: 8rem;
    left: -4rem;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2rem 3rem;
}

.access__list dt {
  width: max(90px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(90px, 13rem));
  font-size: max(12px, 1.8rem);
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list 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;
  }
}

.access__map {
  width: calc(100% + 1.5rem);
  height: 22rem;
  margin: 3rem 0 0 -1.5rem;
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    height: 40rem;
    margin: 3rem 0 0;
  }
}

/*============================
	contact
============================*/
.contact {
  background: linear-gradient(0deg, #4481eb, #04befe);
  color: var(--white);
  padding: 8rem 0 7rem;
}

.contact__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.contact__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 3.5rem 0 6rem;
}
