
/* =========================
   CTA
========================= */
.p-cta {
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 1366px) {
  .p-cta {
    padding-top: calc(100 / 1366 * 100vw);
  }
}
.p-cta-bg {
  position: absolute;
  width: 100%;
  height: 176px;
  background-color: #fff;
  bottom: 0;
}

.p-cta__page-bg {
  background-color: #fff;
}
.p-cta__inner {
  max-width: 1326px;
  width: 100%;
  margin-inline: auto;
}

.p-cta__box {
  position: relative;
}

.p-cta__content {
  position: relative;
  width: 1163px;
  margin-inline: auto;
  padding-block: 0px;
  padding-inline: 80px 20px;
  display: grid;
  grid-template-columns: 500px 1fr;
          column-gap: 90px;
  border-radius: 10px;
  overflow: hidden;
  background: url("../images/img_topCta.jpg") center top/cover no-repeat;
}
@media screen and (max-width: 1366px) {
  .p-cta__content {
    width: 85.1390922401vw;
    padding-block: 0vw;
    padding-inline: 5.8565153734vw 1.4641288433vw;
    grid-template-columns: 36.6032210835vw 1fr;
            column-gap: 6.588579795vw;
  }
}
@media screen and (max-width: 600px) {
  .p-cta__content {
    grid-template-columns: 41.6666666667vw 1fr;
  }
}
@media screen and (max-width: 500px) {
  .p-cta__content {
    padding: 4.8vw 4vw;
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
}
.p-cta__content > * {
  position: relative;
  z-index: 1;
}
.p-cta__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/img_topCta-cover.png") center top/cover no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .p-cta__content::before {
    opacity: 0.3;
    right: -60px;
  }
}
.p-cta__content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #08a073 100%, #027b58 100%);
  opacity: 0.9;
  z-index: 0;
}

.p-cta__text {
  padding-block: 112px 118px;
  grid-column: 1;
  grid-row: 1/span 2;
  display: flex;
          flex-direction: column;
  gap: 27px;
}
@media screen and (max-width: 1366px) {
  .p-cta__text {
    padding-block: 8.1991215227vw 8.6383601757vw;
    gap: 1.9765739385vw;
  }
}
@media screen and (max-width: 500px) {
  .p-cta__text {
    width: 300px;
    margin-inline: auto;
    grid-column: 1;
    grid-row: 1;
    gap: 15px;
    padding-block: 0;
  }
}
@media screen and (max-width: 375px) {
  .p-cta__text {
    width: 95%;
    gap: 4vw;
  }
}

.p-cta__headline {
  display: flex;
          align-items: flex-start;
          justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 1366px) {
  .p-cta__headline {
    gap: 1.1713030747vw;
  }
}
@media screen and (max-width: 500px) {
  .p-cta__headline {
    margin-top: 15px;
  }
}

.p-cta__titles {
  display: flex;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1366px) {
  .p-cta__titles {
    gap: 0.5856515373vw;
  }
}

.p-cta__label {
  margin-top: -5px;
  display: inline-flex;
          align-items: center;
  line-height: 1;
  opacity: 1;
}
@media screen and (max-width: 500px) {
  .p-cta__label {
    margin-left: 0;
  }
}

.p-cta__image {
  grid-column: 2;
  grid-row: 1/span 2;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
          align-items: center;
          justify-content: center;
  text-align: center;
}
.p-cta__image:hover .p-cta__image--text {
          transform: scale(1.05);
}
.p-cta__image .p-cta__image--text {
  margin-left: 10px;
  width: min(100%, 312px);
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
  gap: 14px;
  padding: 24px;
          box-sizing: border-box;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1366px) {
  .p-cta__image .p-cta__image--text {
    gap: 1.0248901903vw;
    padding: 1.756954612vw;
  }
}
.p-cta__image .p-cta__image--text::before {
  position: relative;
  content: "";
  width: 23px;
  height: 23px;
  display: block;
  background-image: url("../images/icon_contact-arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 500px) {
  .p-cta__image {
    grid-column: 1;
    grid-row: 2;
    width: min(40%, 420px);
    margin-inline: auto;
  }
  .p-cta__image > div {
    width: min(100%, 220px);
  }
}
.p-cta__image .p-cta__image--textbox {
  display: flex;
          flex-direction: row;
}
@media screen and (max-width: 550px) {
  .p-cta__image .p-cta__image--textbox {
            flex-direction: column;
  }
}

.p-cta__description {
  margin-top: 8px;
}
@media screen and (max-width: 600px) {
  .p-cta__description {
    padding-bottom: 30px;
  }
}

/* =========================
   footer
========================= */
.p-footer {
  background-color: #ffffff;
  padding-top: 106px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1366px) {
  .p-footer {
    padding-top: max(7.7598828697vw, 60px);
  }
}

.p-footer__inner {
  width: 1162px;
  margin-inline: auto;
}
@media screen and (max-width: 1366px) {
  .p-footer__inner {
    width: 85.065885798vw;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    padding-inline: 0px;
  }
}
@media screen and (max-width: 600px) {
  .p-footer__inner {
    width: 85.3333333333vw;
    padding-inline: 0;
  }
}

.p-footer__content {
  display: flex;
          flex-direction: row;
          justify-content: space-between;
  gap: 90px;
  padding-bottom: 179px;
}
@media screen and (max-width: 1366px) {
  .p-footer__content {
            flex-direction: row;
            align-items: center;
    gap: 6.588579795vw;
    padding-bottom: 13.1039531479vw;
  }
}
@media screen and (max-width: 1100px) {
  .p-footer__content {
            flex-direction: column;
  }
}

.p-footer__left {
  display: flex;
          flex-direction: column;
  gap: 42px;
  padding-left: 74px;
}
@media screen and (max-width: 1600px) {
  .p-footer__left {
    padding-left: 34px;
  }
}
@media screen and (max-width: 1366px) {
  .p-footer__left {
    padding-left: 0vw;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__left {
    padding-left: 0;
  }
}

.p-footer__logo {
  width: 257px;
  height: 56px;
  display: block;
  transition: transform 0.3s ease;
}
.p-footer__logo:hover {
          transform: scale(1.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
     object-fit: cover;
}

.p-footer__office--address {
  display: flex;
          flex-direction: column;
  gap: 12px;
}

.p-footer__office {
  display: flex;
          flex-direction: column;
  gap: 20px;
  padding-left: 22px;
  border-left: 1px solid rgba(51, 51, 51, 0.2);
}

.p-footer__address {
  display: flex;
          flex-direction: column;
}
.p-footer__address div + div {
  margin-top: 3px;
}

.p-footer__tel {
  display: flex;
          flex-direction: row;
  gap: 3px;
}

.p-footer__right {
  margin-top: 60px;
}

.p-footer__nav {
  width: 600px;
  display: flex;
          flex-direction: row;
}
@media screen and (max-width: 1366px) {
  .p-footer__nav {
            align-items: center;
  }
}
@media screen and (max-width: 700px) {
  .p-footer__nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: max(4.2857142857vw, 15px);
            column-gap: max(14.2857142857vw, 15px);
  }
}

.p-footer__nav-item {
  display: flex;
          align-items: center;
  gap: 10px;
  width: 160px;
  padding-left: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-item {
    width: max(100%, 160px);
    padding-block: 15px;
  }
}
.p-footer__nav-item::before {
  content: "";
  position: static;
          transform: none;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon_arrow-right.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.p-footer__nav-item p {
  position: relative;
  display: inline-block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-footer__nav-item p::before, .p-footer__nav-item p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
}
.p-footer__nav-item p::before {
  background-color: rgba(51, 51, 51, 0.2);
}
.p-footer__nav-item p::after {
  background-color: #05a173;
          transform: scaleX(0);
          transform-origin: center;
  transition: transform 0.3s ease;
}
.p-footer__nav-item:hover p {
  color: #05a173;
}
.p-footer__nav-item:hover p::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-footer__copyright {
  padding-top: 20px;
  display: flex;
          justify-content: center;
  padding-bottom: 17px;
  border-top: 1px solid #d2d9e0;
}
