@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.common__ttl span {
  display: block;
  font-size: max(30px, 9rem);
  font-weight: 200;
  color: var(--black);
  letter-spacing: 0.05em;
}

.about .common__ttl,
.company .common__ttl,
.common__ttl--wt {
  align-items: flex-start;
}

.common__ttl--wt,
.common__ttl--wt span {
  color: var(--white);
}

.common__btn {
  width: max(160px, 20rem);
  height: max(40px, 4.5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  border-radius: 10rem;
  font-size: max(12px, 1.4rem);
  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(--white);
}

/*============================
	header
============================*/
@media (min-width: 768px) {
  .header.top {
    top: max(90rem, 100vh);
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  margin-bottom: max(60px, 10rem);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    margin: 0;
  }
}

.hero::before {
  content: "";
  background-color: var(--white);
  width: 100%;
  height: 100%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__logo {
  width: max(300px, 44rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 45%;
  left: 50%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(260px, 36rem);
    top: 55%;
  }
}

.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;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  padding: 7.5rem 0 7rem;
}

.news__inner {
  width: 96rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 9rem;
  margin: 0 auto 4rem;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: max(20px, 3rem);
  margin: 6rem auto 7rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  gap: 1rem 4rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
  }
}

.CMS-NEWS-TIME {
  width: max(85px, 12rem);
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	about
============================*/
.about {
  padding: 5.5rem 0 4.5rem;
}

.about__contents {
  width: 110rem;
  display: flex;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.about__txt-wrapper {
  width: 100%;
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 2;
  margin-top: 5rem;
}

.about__txt-wrapper p {
  margin: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .about__txt-wrapper p {
    padding-right: 8rem;
  }

  .about .common__btn {
    margin: 0;
  }
}

.about__img {
  width: 66.8rem;
  height: 100%;
  flex-shrink: 0;
  margin: 0 -5rem 0 -3rem;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	business
============================*/
.business {
  background: var(--bg-2);
  padding: 10rem 0 8rem;
}

.business__txt {
  width: 90%;
  text-align: center;
  margin: 4.5rem auto 0;
}

.business__list {
  width: 110rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6.5rem 3rem;
  margin: 9rem auto;
}

@media (max-width: 767px) {
  .business__list {
    width: 90%;
  }
}

.business__list li {
  background-color: var(--white);
  width: 34rem;
  padding-bottom: 3rem;
}

@media (max-width: 767px) {
  .business__list li {
    width: 100%;
    padding-bottom: 5rem;
  }
}

.business__img {
  width: 100%;
  margin-bottom: 3.5rem;
}

.business__list h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  color: var(--brown);
  text-align: center;
  margin: 0 3rem;
  position: relative;
}

.business__list h3::before {
  content: "01";
  font-size: 12rem;
  font-weight: 200;
  color: #f4f4f4;
  line-height: 1;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.business__list li:nth-of-type(2) h3::before {
  content: "02";
}

.business__list li:nth-of-type(3) h3::before {
  content: "03";
}

.business__list li:nth-of-type(4) h3::before {
  content: "04";
}

.business__list li:nth-of-type(5) h3::before {
  content: "05";
}

.business__list p {
  margin: 2rem 3rem 3rem;
}

@media (max-width: 767px) {
  .business__list p {
    margin: 2rem 4rem 3rem;
  }
}

/*============================
	works
============================*/
.works {
  color: var(--white);
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .works {
    flex-direction: column-reverse;
  }
}

.works__txt-wrapper {
  background-color: #00a0e6;
  width: 100%;
  padding: 7rem 17rem 9rem 7.5rem;
}

@media (max-width: 767px) {
  .works__txt-wrapper {
    padding: 5rem 5rem 6rem;
  }
}

.works__txt-wrapper p {
  line-height: 2.5;
  margin: 5.5rem 0 5rem;
}

@media (min-width: 768px) {
  .works .common__btn {
    margin: 0;
  }
}

.works__img {
  width: 72rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .works__img {
    width: 100%;
  }
}

/*============================
	flow
============================*/
.flow {
  padding: 8rem 0 12rem;
}

.flow__txt {
  width: 90%;
  text-align: center;
  margin: 4rem auto 0;
}

.flow__list {
  width: 79rem;
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
  margin: 4rem auto 0;
}

@media (max-width: 767px) {
  .flow__list {
    width: 90%;
    row-gap: 8rem;
    margin: 6rem auto 0;
  }
}

.flow__list li {
  display: flex;
  gap: 4rem 3rem;
}

.flow__list li:nth-of-type(even) {
  flex-direction: row-reverse;
  padding-left: 3rem;
}

@media (max-width: 767px) {
  .flow__list li,
  .flow__list li:nth-of-type(even) {
    padding: 0;
  }
}

.flow__img {
  width: 17rem;
  height: 17rem;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .flow__img {
    width: 34rem;
    height: 34rem;
    flex-shrink: 0;
    position: relative;
  }
}

.flow__img::before {
  content: "";
  background: url("../img/flow_deco.png") no-repeat center / contain;
  width: 18.5rem;
  height: 15.6rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -0.6rem;
  pointer-events: none;
}

.flow__list li:nth-of-type(even) .flow__img::before {
  transform: translateX(-50%) scale(-1, 1);
}

@media (max-width: 767px) {
  .flow__img::before {
    width: 37rem;
    height: 31.2rem;
    bottom: -1.2rem;
  }
}

.flow__img img {
  border-radius: 50%;
}

.flow__txt-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem 3rem;
}

@media (max-width: 767px) {
  .flow__txt-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.flow__txt-wrapper::before {
  content: "01";
  display: block;
  font-size: max(30px, 9rem);
  font-weight: 200;
  line-height: 1;
}

.flow__list li:nth-of-type(2) .flow__txt-wrapper::before {
  content: "02";
}

.flow__list li:nth-of-type(3) .flow__txt-wrapper::before {
  content: "03";
}

.flow__list li:nth-of-type(4) .flow__txt-wrapper::before {
  content: "04";
}

.flow__list li:nth-of-type(5) .flow__txt-wrapper::before {
  content: "05";
}

.flow__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  color: var(--brown);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .flow__txt-wrapper p {
    letter-spacing: 0.05em;
  }
}

/*============================
	company
============================*/
.company {
  background: url("../img/company_bg.jpg") no-repeat center / cover;
  padding: 9rem 0 11rem;
}

.company__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 3rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .company__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.company__img {
  width: 67.3rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw + 5.5rem);
}

@media (max-width: 767px) {
  .company__img {
    width: 100%;
    margin: 0;
  }
}

.company__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: max(20px, 3rem);
  margin: 5.5rem 0 5rem;
}

@media (max-width: 767px) {
  .company__list {
    row-gap: 0;
  }
}

.company__list dt {
  width: max(75px, 12rem);
  font-weight: 500;
}

.company__list dd {
  width: calc(100% - max(75px, 12rem));
}

@media (max-width: 767px) {
  .company__list dt,
  .company__list dd {
    width: 100%;
  }

  .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 0 0 auto;
  }
}

/*============================
	recruit
============================*/
.recruit {
  color: var(--white);
  padding: 8.5rem 0 13rem;
}

.recruit__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.recruit__txt-wrapper {
  background-color: #00a0e6;
  width: 100%;
  padding: 5rem 6rem 4.5rem;
}

@media (max-width: 767px) {
  .recruit__txt-wrapper {
    padding: 5rem 5rem 6rem;
  }
}

.recruit__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2rem 0 4rem;
}

@media (min-width: 768px) {
  .recruit .common__btn {
    margin: 0;
  }
}

.recruit__img {
  width: 59rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .recruit__img {
    width: 100%;
  }
}

/*============================
	contact
============================*/
.contact {
  background: var(--bg-2);
  padding: 5rem 0 9.5rem;
}

.contact__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
  margin: 6.5rem auto 0;
}

@media (max-width: 767px) {
  .contact__list {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
  }
}

.contact__list li {
  font-size: max(12px, 1.8rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.contact__list li a {
  background-color: #09baba;
  border-radius: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  padding: max(20px, 2.5rem) 0;
}

.contact__list li:nth-of-type(2) a {
  background-color: #00b4e6;
}

.contact__list li span {
  font-size: max(24px, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__list li:nth-of-type(2) span {
  font-size: max(21px, 3.8rem);
}

.contact__list li span::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(30px, 5.4rem);
  height: max(30px, 5.4rem);
}
