@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: #474747;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem 6.5rem;
  position: relative;
}

.about .common__ttl,
.blog .common__ttl {
  width: max-content;
  flex-direction: row;
}

.common__ttl .en {
  display: block;
  font-family: var(--font-en);
  font-size: max(40px, 9rem);
  font-weight: 400;
  color: #d0c9d9;
  text-transform: capitalize;
}

.common__ttl .en span {
  display: block;
  font-size: max(24px, 5.8rem);
  text-transform: none;
}

.results .common__ttl,
.recruit .common__ttl {
  align-items: flex-start;
}

.access .common__ttl {
  width: max-content;
  flex-direction: row;
  align-items: baseline;
  margin-top: 2rem;
}

.common__ttl--wt .en {
  color: var(--white);
}

.results .common__ttl .en,
.recruit .common__ttl .en {
  font-size: max(36px, 7.8rem);
}

.results .common__ttl .en {
  opacity: 0.3;
}

.recruit .common__ttl .en {
  color: #f2d39b;
}

.results .common__ttl--wt .jp {
  color: var(--white);
  position: absolute;
  right: 5rem;
  bottom: 1.2rem;
}

.blog .common__ttl .jp {
  font-size: max(20px, 3.5rem);
}

@media (max-width: 767px) {
  .results .common__ttl--wt .jp {
    right: auto;
    left: 36rem;
  }
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  border-radius: 10rem;
  font-family: var(--font-en);
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  border: solid 1px var(--white);
  color: var(--green);
}

.access .common__btn a {
  border: solid 1px #01016c;
  color: #01016c;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__ttl {
  background-color: rgba(0, 160, 64, 0.7);
  border-radius: 1.6rem;
  color: var(--white);
  padding: 4rem 2.5rem 4rem 4rem;
  position: absolute;
  top: 20rem;
  left: 17.5rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__ttl {
    padding: 2rem;
    top: auto;
    left: 5%;
    bottom: 5%;
  }
}

.hero__ttl h2 {
  border-bottom: solid 1px var(--white);
  font-size: max(24px, 4rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.4;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero__ttl h2 {
    font-size: max(16px, 2.4rem);
    padding-bottom: 2rem;
    margin-bottom: 1rem;
  }
}

.hero__ttl h2 strong {
  font-size: max(28px, 5.6rem);
  font-weight: 400;
}

@media (max-width: 767px) {
  .hero__ttl h2 strong {
    font-size: max(20px, 3.6rem);
  }
}

.hero__ttl p {
  font-size: max(14px, 2.2rem);
  line-height: 1.8;
}

@media (max-width: 767px) {
  .hero__ttl p {
    font-size: max(10px, 1.4rem);
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@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;
}

/*============================
	about
============================*/
.about {
  padding: 12.5rem 0 10rem;
}

@media (max-width: 767px) {
  .about {
    padding: 8rem 0;
  }
}

.about__contents {
  width: 110rem;
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.about__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .about__txt-wrapper {
    padding-bottom: 15rem;
  }
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  margin-top: 9rem;
}

.about__txt-wrapper p {
  line-height: 2.5;
  margin: 2rem 0 19rem;
}

@media (max-width: 767px) {
  .about__txt-wrapper p {
    margin: 2rem 0 10rem;
  }
}

@media (min-width: 768px) {
  .about .common__btn {
    margin: 0;
  }
}

.about__img {
  width: 80.2rem;
  height: 100%;
  flex-shrink: 0;
  margin: 0 calc(50% - 50vw - 3.5rem) 0 -3.5rem;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
    margin: 0 -4rem 0 0;
  }
}

/*============================
	business
============================*/
.business {
  background: var(--bg-1);
  padding: 10rem 0 9rem;
}

.business__contents {
  width: 108rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 5rem;
  margin: 6rem auto 0;
}

@media (max-width: 767px) {
  .business__contents {
    width: 90%;
  }
}

.business__txt-wrapper {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .business__txt-wrapper {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
}

.business__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.business__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2rem 0 4rem;
}

.business__img {
  width: 100%;
}

/*============================
	results
============================*/
.results {
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .results {
    flex-direction: column-reverse;
  }
}

.results__txt-wrapper {
  background-color: var(--brown);
  width: 50%;
  color: var(--white);
  padding: 9.5rem 16rem 9.5rem 9rem;
}

@media (max-width: 767px) {
  .results__txt-wrapper {
    width: 100%;
    padding: 9rem 6rem 11rem;
  }
}

.results__txt-wrapper p {
  line-height: 2.5;
  margin: 4rem 0 15rem;
}

.results .common__btn {
  margin: 0;
}

.results__img {
  width: 50%;
}

@media (max-width: 767px) {
  .results__img {
    width: 100%;
    height: 50rem;
  }
}

/*============================
	flow
============================*/
.flow {
  padding: 11rem 0 13.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .flow {
    padding: 24rem 0 13rem;
  }
}

.flow::before,
.flow::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.flow::before {
  background: url("../img/flow_deco-1.png") no-repeat center / contain;
  width: 21.4rem;
  height: 23rem;
  top: 12rem;
  left: 13rem;
}

.flow::after {
  background: url("../img/flow_deco-2.png") no-repeat center / contain;
  width: 25.2rem;
  height: 54.9rem;
  right: 8.5rem;
  bottom: 12.5rem;
}

@media (max-width: 767px) {
  .flow::before {
    width: 20rem;
    height: 21.5rem;
    top: 2rem;
    left: 2rem;
  }

  .flow::after {
    width: 18rem;
    height: 39.2rem;
    bottom: auto;
    top: 2rem;
    right: 1rem;
  }
}

.flow__ttl {
  font-size: max(21px, 3.5rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  text-align: center;
}

.flow__list {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 9.5rem;
  margin: 6.5rem auto 0;
}

.flow__list li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  position: relative;
}

.flow__list li:not(:last-of-type)::before {
  content: "";
  background: url("../img/flow_arw.png") no-repeat center / contain;
  width: max(28.7px, 4.9rem);
  height: max(12px, 2rem);
  position: absolute;
  transform: translate(-50%, 100%);
  left: 50%;
  bottom: -4rem;
  pointer-events: none;
}

.flow__list h3 {
  background-color: var(--brown);
  width: max-content;
  border-radius: 1rem;
  font-size: max(16px, 2.3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  padding: 0.4rem 2rem;
}

.flow__list p {
  color: #211815;
  letter-spacing: 0.05em;
}

/*============================
	blog
============================*/
.blog {
  background: var(--bg-1);
  padding: 8rem 0 9rem;
}

.blog-2 {
  background: var(--bg-2);
}

.blog__ttl-wrapper {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 8rem;
}

@media (max-width: 767px) {
  .blog__ttl-wrapper {
    width: 90%;
  }
}

.blog .common__btn {
  margin: 6rem auto 0;
}

@media (min-width: 768px) {
  .blog .common__btn {
    margin: 0 0 0 -1.5rem;
  }
}

.topNews_list {
  width: 96rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7.2rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .topNews_list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.topNews_item {
  display: block;
  width: 100%;
}

.topNews_image {
  aspect-ratio: 1 / 1;
  margin-bottom: 2.5rem;
}

.blog video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topNews_date {
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.topNews_caption {
  letter-spacing: 0.1em;
}

/*============================
	access
============================*/
.access {
  padding: 13rem 0 9rem;
}

.access__contents {
  width: 105rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem 15rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.access__ttl-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5rem;
}

.access__ttl-wrapper h3 {
  width: max-content;
  font-size: max(20px, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}

.access__ttl-wrapper h3::before {
  content: "";
  background-color: #d1ecfb;
  width: 110%;
  height: 2rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.access__link {
  display: flex;
  gap: 2rem;
}

.access__link li {
  display: block;
  width: 4.5rem;
}

.access__list {
  border-top: solid 1px var(--black);
  display: flex;
  flex-wrap: wrap;
  margin: 6rem 0 5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt {
    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 {
  height: 22rem;
  margin-bottom: 4.5rem;
}

@media (max-width: 767px) {
  .access__map {
    height: 40rem;
  }
}

.access__line {
  width: 110rem;
  margin: 10.5rem auto 9rem;
}

@media (max-width: 767px) {
  .access__line {
    width: 90%;
  }
}

.access__line a {
  background-color: #f7f6f5;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 8rem 0 8.5rem;
}

@media (max-width: 767px) {
  .access__line a {
    flex-direction: column;
  }
}

.access__line a::before,
.access__line a::after {
  content: "";
  display: block;
  background: url("../img/line.png") no-repeat center / contain;
  width: max(70px, 12.5rem);
  height: max(70px, 12.5rem);
}

.access__line a::after {
  background: url("../img/line_qr.png") no-repeat center / contain;
  width: max(75px, 13.3rem);
  height: max(75px, 13.3rem);
}

.access__line p {
  border: solid 1px var(--black);
  border-left: none;
  border-right: none;
  font-size: max(18px, 3.3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4rem 2rem;
}

/*============================
	recruit
============================*/
.recruit {
  padding-bottom: 10rem;
}

.recruit__contents {
  background-color: #fae6c2;
  width: 110rem;
  display: flex;
  justify-content: flex-end;
  padding: 4rem 7.5rem 4.5rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.recruit__contents::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: solid 2px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 1;
}

.recruit__txt-wrapper {
  width: 37rem;
}

@media (max-width: 767px) {
  .recruit__txt-wrapper {
    width: 100%;
    padding: 5rem 6rem 6rem;
    position: relative;
    z-index: 1;
  }
}

.recruit__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 1.5rem 0 3rem;
}

@media (min-width: 768px) {
  .recruit .common__btn {
    margin: 0;
  }
}

.recruit__img {
  display: block;
  width: 71rem;
  height: 100%;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .recruit__img {
    width: 130%;
    height: auto;
    position: static;
  }
}
