@charset "UTF-8";

.p-cta {
  padding-top: clamp(80px, 10.4166666667vw, 125px);
  padding-bottom: clamp(60px, 7.5vw, 90px);
  color: #ffffff;
  background: #303030;
  position: relative;
}
.p-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top-cta-filter.png) no-repeat center center/cover;
  z-index: 1;
  pointer-events: none;
}
.p-cta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28.6969253294vw;
  height: 16px;
  background: url(../images/top-cta-edge.png) no-repeat top left/cover;
  z-index: 1;
  pointer-events: none;
}


.p-cta__title {
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .p-cta__title {
    padding-left: clamp(40px, 7.03125vw, 54px);
  }
}

.p-cta__body {
  margin-top: clamp(40px, 5.17578125vw, 53px);
  padding-top: clamp(40px, 5.6640625vw, 58px);
  padding-inline: 20px;
  display: grid;
  grid-template-columns: auto;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .p-cta__body {
    padding-inline: clamp(40px, 7.421875vw, 76px);
  }
}
@media screen and (min-width:1024px) {
  .p-cta__body {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1366px;
    margin-inline: auto;
  }
}
.p-cta__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #a4a4a4;
}

.p-cta__link {
  padding-block: 29px;
  padding-left: clamp(20px, 4.1727672035vw, 57px);
  padding-right: 48px;
  border: 1px solid #F35759;
  background: #F35759;
  border-radius: 20px;
  max-width: 592px;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-cta__link {
    padding-right: clamp(60px, 9.375vw, 120px);
    width: 100%;
    margin-inline: auto;
  }
}
.p-cta__link::before {
  content: "";
  position: absolute;
  top: 29px;
  right: clamp(32px, 8.78477306vw, 120px);
  width: 1px;
  height: calc(100% - 58px);
  background: url(../images/dash-white.svg) repeat center center/cover;
}
.p-cta__link::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: clamp(10px, 2.9282576867vw, 40px);
  width: clamp(20px, 3.3333333333vw, 40px);
  aspect-ratio: 1/1;
  background: url(../images/icon-arrow-tel.svg) repeat center center/cover;
}

@media (any-hover: hover) {
  .p-cta__link:hover {
    color: #F35759;
    background: #303030;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.p-cta__link-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.p-cta__link-icon {
  width: 25px;
  height: 35px;
}

.p-cta__link-title {
  font-family: "Lato", serif;
  font-size: clamp(24px, 3.1666666667vw, 38px);
  font-weight: 500;
}

.p-cta__link-text {
  margin-top: 26px;
  font-size: clamp(13px, 1.3671875vw, 14px);
  line-height: 1.8571428571;
  font-weight: 500;
  max-width: 320px;
}

.p-cta__link-mail {
  border: 1px solid #F2B546;
  background: #F2B546;
}
.p-cta__link-mail::after {
  background: url(../images/icon-arrow-mail.svg) repeat center center/cover;
}

.p-cta__link-mail .p-cta__link-icon {
  width: 39.4px;
  height: 30.61px;
}
.p-cta__link-mail .p-cta__link-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-cta__link-mail .p-cta__link-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.1229868228vw, 29px);
  font-weight: 600;
}
.p-cta__link-mail .p-cta__link-text {
  margin-top: 29px;
}
@media (any-hover: hover) {
  .p-cta__link-mail:hover {
    color: #F2B546;
  }
}

.p-footer {
  padding-top: clamp(60px, 9.2447916667vw, 71px);
  padding-bottom: 30px;
  padding-inline: 20px;
  color: #ffffff;
  background: #000000;
}
@media screen and (min-width:768px) {
  .p-footer {
    padding-inline: 40px;
  }
}
@media screen and (min-width:1024px) {
  .p-footer {
    padding-left: clamp(40px, 7.7598828697vw, 106px);
    padding-right: clamp(40px, 6.3333333333vw, 76px);
  }
}
@media screen and (min-width:1367px) {
  .p-footer {
    padding-left: calc(106px + (100vw - 1366px) / 2);
    padding-right: calc(76px + (100vw - 1366px) / 2);
  }
}

.p-footer__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width:1024px) {
  .p-footer__wrap {
    grid-template-columns: repeat(2, auto);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-footer__info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width:768px) {
  .p-footer__info {
    margin-top: 8px;
  }
}

.p-footer__logo {
  width: 100px;
  aspect-ratio: 100/33;
}
.p-footer__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__info-text {
  margin-top: 21px;
  font-size: clamp(13px, 1.8229166667vw, 14px);
  font-weight: 500;
}

.p-footer__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 300px;
}
@media screen and (min-width:768px) {
  .p-footer__menu {
    max-width: none;
        height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    grid-template-columns: repeat(6, auto);
        -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(20px, 2.9282576867vw, 40px);
  }
}

.p-footer__menu-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
    height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 13px;
  line-height: 1.3076923077;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .p-footer__menu-link {
    text-align: center;
  }
}
.p-pagetop__btn {
  margin-top: 56px;
  margin-right: clamp(20px, 4.831625183vw, 66px);
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  padding: 20px 16px 15px;
  font-family: "Prompt", sans-serif;
  color: #404040;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  text-align: center;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-pagetop__btn {
    margin-top: clamp(120px, 18.8872620791vw, 258px);
    margin-right: 37px;
  }
}
.p-pagetop__btn::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50%;
  width: 8px;
  height: 7px;
  background: url(../images/pagetop-arrow.svg) no-repeat center center/contain;
}
@media (any-hover: hover) {
  .p-pagetop__btn:hover {
    color: #ffffff;
    background: #F2B546;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.p-pagetop__btn .img {
  margin-top: 3px;
  width: 57px;
  aspect-ratio: 57/47;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-copyright__text {
  margin-top: 39px;
  font-size: 11px;
  line-height: 1.9090909091;
  text-align: center;
}