@charset "UTF-8";
:root {
  --color-orange: #f27333;
  --color-blue: #003190;
  --color-text: #333333;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-white: #ffffff;
  --color-gray: #f9f8fb;
  --color-gray2: #aeacaa;
  --color-border: #c7d0e3;
  --color-lime: #66bb0a;
  --font-figtree: "Figtree", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-yugothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "メイリオ", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-display: "Jost", sans-serif;
}

.l-footer {
  background-color: var(--color-gray);
}
@media only screen and (max-width: 767px) {
  .l-footer {
    display: none;
  }
}

.l-footer__top {
  padding-top: 80rem;
}
@media only screen and (max-width: 1271px) {
  .l-footer__top {
    padding-top: 50rem;
  }
}

.l-footer__top-inner {
  display: flex;
  justify-content: space-between;
}

.l-footer__logo-link {
  display: block;
  width: 196rem;
  height: auto;
}
@media only screen and (max-width: 1271px) {
  .l-footer__logo-link {
    width: 120rem;
  }
}
.l-footer__logo-link img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer__menu-top {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 50rem;
}
@media only screen and (max-width: 1271px) {
  .l-footer__menu-top {
    gap: 30rem;
  }
}

.l-footer__link {
  transition: opacity 0.3s ease;
  font-weight: bold;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 16rem;
}
@media only screen and (max-width: 1271px) {
  .l-footer__link {
    font-size: 13rem;
  }
}
.l-footer__link.--child {
  color: #7f7f7f;
  letter-spacing: 0.03em;
  font-weight: 600;
  line-height: 1.3;
  font-size: 14rem;
}
@media only screen and (max-width: 1271px) {
  .l-footer__link.--child {
    font-size: 13rem;
  }
}
.l-footer__link:hover, .l-footer__link:focus-visible {
  opacity: 0.5;
}

.l-footer__menu-item-contents-inner {
  margin-top: 15rem;
}

.l-footer__menu-list.--top {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 9rem 43rem;
}
@media only screen and (max-width: 1271px) {
  .l-footer__menu-list.--top {
    grid-template-rows: none;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 9rem;
  }
}
.l-footer__menu-list.--bottom {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 50rem;
}
@media only screen and (max-width: 1271px) {
  .l-footer__menu-list.--bottom {
    gap: 20rem;
  }
}

.l-footer__menu-bottom {
  margin-top: 50rem;
  display: flex;
  flex-direction: column;
  row-gap: 14rem;
}
@media only screen and (max-width: 1271px) {
  .l-footer__menu-bottom {
    margin-top: 30rem;
  }
}

.l-footer__bottom {
  margin-top: 40rem;
  border-top: solid 1px #dbdbdb;
}

.l-footer__bottom-inner {
  height: 46rem;
  padding: 15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-footer__policy,
.l-footer__copyright {
  color: #7f7f7f;
  font-weight: 500;
  font-size: 13rem;
}
@media only screen and (max-width: 1271px) {
  .l-footer__policy,
  .l-footer__copyright {
    font-size: 13rem;
  }
}

.sp-menu {
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 700;
  display: none;
  position: fixed;
  top: 60rem;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  transition: opacity 0.3s ease;
}
.is-sp-menu-open .sp-menu {
  display: block;
}

.sp-menu__inner {
  padding: 36rem 20rem;
}

.sp-menu__gnav-item {
  border-bottom: 1px solid var(--color-border);
}

.sp-menu__gnav-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 16rem 10rem;
  line-height: 1.625;
  font-weight: 700;
  font-size: 16rem;
}

.sp-menu__gnav-link-icon {
  position: relative;
  background-color: #fff;
  width: 24rem;
  height: 24rem;
  aspect-ratio: 1;
  border: 1px solid var(--color-navy);
  border-radius: calc(infinity * 1px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-menu__gnav-link-img {
  width: 8rem;
}

.sp-menu__summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 16rem 10rem;
  line-height: 1.625;
  font-weight: 700;
  font-size: 16rem;
  cursor: pointer;
}

.sp-menu__summary-icon {
  position: relative;
  background-color: white;
  width: 24rem;
  height: 24rem;
  aspect-ratio: 1;
  border: 1px solid var(--color-navy);
  border-radius: calc(infinity * 1px);
}
.sp-menu__summary-icon::before, .sp-menu__summary-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10rem;
  height: 1px;
  transform: translate(-50%, -50%);
  background-color: var(--color-navy);
  transition: transform 0.36s ease-out;
}
.sp-menu__summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.is-open .sp-menu__summary-icon::after {
  transform: translate(-50%, -50%);
}

.sp-menu__details-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-bottom: 13rem;
}

.sp-menu__details-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 16rem;
  position: relative;
  font-size: 14rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
}
.sp-menu__details-link.--disabled {
  pointer-events: none;
  color: var(--color-border);
}
.sp-menu__details-link::before {
  content: "";
  position: absolute;
  top: 9rem;
  left: 0;
  width: 8rem;
  height: 1px;
  background-color: var(--color-text);
}

.sp-menu__entry {
  margin-top: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12rem;
}

.sp-menu__entry-link {
  width: 195rem;
  border-radius: 5rem;
  background-color: var(--color-orange);
  padding: 14rem 30rem 12rem;
  display: flex;
  justify-content: center;
}
.sp-menu__entry-link.--navy {
  background-color: var(--color-navy);
}
.sp-menu__entry-link.--white {
  background-color: white;
  border: 1px solid var(--color-navy);
}

.sp-menu__entry-text {
  color: white;
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.--white .sp-menu__entry-text {
  color: var(--color-navy);
}

.sp-menu-contact {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-menu-contact__heading {
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  color: #003083;
}

.sp-menu-contact__tel {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.sp-menu-contact__icon {
  flex-shrink: 0;
  width: 23rem;
}

.sp-menu-contact__number {
  line-height: 1.2142857143;
  font-size: 28rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #003083;
}

.c-width {
  margin-inline: auto;
  max-width: 1296px;
  width: 100%;
}
.c-width.--home {
  max-width: 1440px;
}
.c-width.--single {
  max-width: 856px;
}
.c-width.--faq, .c-width.--contact, .c-width.--estimate {
  max-width: 1076px;
}

.u-mt-110 {
  margin-top: 110rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-110 {
    margin-top: 60rem;
  }
}

.u-mt-100 {
  margin-top: 100rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-100 {
    margin-top: 60rem;
  }
}

.u-mt-90 {
  margin-top: 90rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-90 {
    margin-top: 60rem;
  }
}

.u-mt-80 {
  margin-top: 80rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-80 {
    margin-top: 60rem;
  }
}

.u-mt-60 {
  margin-top: 60rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-60 {
    margin-top: 40rem;
  }
}

.u-mt-50 {
  margin-top: 50rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-50 {
    margin-top: 32rem;
  }
}

.u-mt-40 {
  margin-top: 40rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-40 {
    margin-top: 24rem;
  }
}

.u-mt-32 {
  margin-top: 32rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-32 {
    margin-top: 20rem;
  }
}

.u-mt-30 {
  margin-top: 30rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-30 {
    margin-top: 20rem;
  }
}

.u-mt-28 {
  margin-top: 28rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-28 {
    margin-top: 18rem;
  }
}

.u-mt-24 {
  margin-top: 24rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-24 {
    margin-top: 16rem;
  }
}

.u-mt-20 {
  margin-top: 20rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-20 {
    margin-top: 16rem;
  }
}

.u-mt-16 {
  margin-top: 16rem;
}
@media only screen and (max-width: 1271px) {
  .u-mt-16 {
    margin-top: 14rem;
  }
}

.u-mt-12 {
  margin-top: 12rem;
}

.u-mt-10 {
  margin-top: 10rem;
}

.u-mt-2 {
  margin-top: 2rem;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-2 {
  gap: 2rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-8 {
  gap: 8rem;
}

.gap-12 {
  gap: 12rem;
}

.gap-16 {
  gap: 16rem;
}

.leading-none {
  line-height: 1;
}

@media only screen and (min-width: 1272px) {
  .pc\:hidden {
    display: none;
  }
}

@media only screen and (max-width: 1271px) {
  .max-pc\:hidden {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .max-md\:hidden {
    display: none;
  }
}

.w-full {
  width: 100%;
}

.text-right {
  text-align: right;
}

.font-normal {
  font-weight: 400;
}

.text-underline {
  display: inline;
  background: linear-gradient(#000, #000) left bottom/100% 2px no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.text-underline.--lime {
  background: linear-gradient(#66bb0a, #66bb0a) left bottom/100% 2px no-repeat;
}
.text-underline.--red {
  background: linear-gradient(#f62b11, #f62b11) left bottom/100% 2px no-repeat;
}
.text-underline.--blue {
  background: linear-gradient(#0a49b3, #0a49b3) left bottom/100% 2px no-repeat;
}
.text-underline.--pink {
  background: linear-gradient(#ea298d, #ea298d) left bottom/100% 2px no-repeat;
}
.text-underline.--lightblue {
  background: linear-gradient(#06b2ce, #06b2ce) left bottom/100% 2px no-repeat;
}
.text-underline.--darkorange {
  background: linear-gradient(#f75f23, #f75f23) left bottom/100% 2px no-repeat;
}
.text-underline.--purple {
  background: linear-gradient(#5f49c1, #5f49c1) left bottom/100% 2px no-repeat;
}
.text-underline.--green {
  background: linear-gradient(#23977c, #23977c) left bottom/100% 2px no-repeat;
}

.c-eyebrow {
  font-weight: 500;
  font-family: var(--font-montserrat);
  color: var(--color-orange);
}

.c-gradation-title {
  --shine-x: -40%;
  --shine-width: 28%;
  position: relative;
  display: inline-grid;
  place-items: center;
  font-family: var(--font-montserrat);
  font-weight: 500;
  line-height: 1.2;
  font-size: 52rem;
}
@media only screen and (max-width: 1271px) {
  .c-gradation-title {
    font-size: 30rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-gradation-title {
    font-size: 34rem;
  }
}
.c-gradation-title__base, .c-gradation-title--accent {
  grid-area: 1/1;
  display: block;
  white-space: nowrap;
}
.c-gradation-title__base {
  color: var(--color-text);
}
.c-gradation-title--accent {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #ff6a00 0%, #ff8a00 22%, #ffb347 45%, #ffd37a 50%, #ffb347 55%, #ff8a00 78%, #ff6a00 100%);
  background-repeat: no-repeat;
  background-size: var(--shine-width) 100%;
  background-position: var(--shine-x) 50%;
  background-clip: text;
  -webkit-background-clip: text;
  pointer-events: none;
  will-change: background-position;
}

/* CONTACT セクション */
.p-contact-cta {
  position: relative;
  overflow: hidden;
}
.p-contact-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  background: url("../media/images/common/contact_bg.webp") center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .p-contact-cta::after {
    background: url("../media/images/common/contact_bg-sp.webp") center/cover no-repeat;
  }
}
.p-contact-cta__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 128rem 0;
}
@media only screen and (max-width: 1271px) {
  .p-contact-cta__inner {
    padding: 60rem 0;
  }
}
.p-contact-cta__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media only screen and (max-width: 1271px) {
  .p-contact-cta__head {
    display: block;
  }
}
.p-contact-cta__lead {
  margin: 0;
  color: var(--color-text);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 18rem;
}
@media only screen and (max-width: 1271px) {
  .p-contact-cta__lead {
    margin-top: 24rem;
    font-size: 15rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-contact-cta__lead {
    font-size: 16rem;
  }
}
.p-contact-cta__cards {
  margin-top: 30rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30rem;
}
@media only screen and (max-width: 1271px) {
  .p-contact-cta__cards {
    margin-top: 20rem;
    gap: 16rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-contact-cta__cards {
    grid-template-columns: 1fr;
  }
}

.c-cta-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 54rem;
  padding: 27rem 30rem 88rem;
  border-radius: 16rem;
  border: 1rem solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.177);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
@media only screen and (max-width: 1271px) {
  .c-cta-card {
    padding: 20rem 12rem 50rem;
    gap: 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-cta-card {
    padding: 20rem 20rem 50rem;
    gap: 16rem;
  }
}
.c-cta-card__en {
  margin: 0;
  font-weight: 500;
  font-family: var(--font-montserrat);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.15;
  font-size: 32rem;
}
@media only screen and (max-width: 1271px) {
  .c-cta-card__en {
    font-size: 20rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-cta-card__en {
    font-size: 24rem;
  }
}
.c-cta-card__ja {
  margin-top: 8rem;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  color: var(--color-navy);
  line-height: 1.6;
  font-size: 16rem;
}
@media only screen and (max-width: 1271px) {
  .c-cta-card__ja {
    font-size: 13rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-cta-card__ja {
    margin-top: 2rem;
    font-size: 14rem;
  }
}
.c-cta-card__media {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 767px) {
  .c-cta-card__media {
    width: 295rem;
    height: 125rem;
  }
}
.c-cta-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-cta-card__icon {
  position: absolute;
  right: 26rem;
  bottom: 23rem;
  width: 30rem;
  height: 30rem;
  border-radius: 999rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.3s ease;
}
@media only screen and (max-width: 1271px) {
  .c-cta-card__icon {
    width: 22rem;
    height: 22rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-cta-card__icon {
    right: 20rem;
    bottom: 20rem;
  }
}
.c-cta-card__icon-svg {
  width: 30rem;
  height: 30rem;
  display: block;
  color: var(--color-white);
}
@media only screen and (max-width: 1271px) {
  .c-cta-card__icon-svg {
    width: 22rem;
    height: 22rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-cta-card__icon-svg {
    right: 20rem;
    bottom: 20rem;
  }
}
.c-cta-card__icon-circle {
  stroke: currentColor;
  stroke-width: 1rem;
  vector-effect: non-scaling-stroke;
}
.c-cta-card__icon-arrow {
  fill: currentColor;
}
.c-cta-card:hover, .c-cta-card:focus-visible {
  box-shadow: inset 0 0 0 1rem rgba(255, 255, 255, 0.18), 0 12rem 30rem rgba(0, 0, 0, 0.18), 0 0 0 1rem rgba(255, 255, 255, 0.35);
}
.c-cta-card:hover .c-cta-card__icon, .c-cta-card:focus-visible .c-cta-card__icon {
  background: var(--color-white);
}
.c-cta-card:hover .c-cta-card__icon-svg, .c-cta-card:focus-visible .c-cta-card__icon-svg {
  color: var(--color-orange);
}
.c-cta-card:hover .c-cta-card__icon-circle, .c-cta-card:focus-visible .c-cta-card__icon-circle {
  stroke: var(--color-white);
}

.c-floating-side {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.is-header-show.is-header-fixed .c-floating-side {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}
.c-floating-side__links {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8rem;
  align-items: flex-end;
  pointer-events: auto;
  z-index: 500;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.home .c-floating-side__links {
  opacity: 0;
  visibility: hidden;
}
.home.is-header-show.is-header-fixed .c-floating-side__links {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.c-floating-side__link {
  width: 50rem;
  min-height: 148rem;
  border-radius: 10rem 0 0 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: opacity 0.3s ease;
}
.c-floating-side__link:hover, .c-floating-side__link:focus-visible {
  opacity: 0.5;
}
.c-floating-side__link--contact {
  background: var(--color-orange);
}
.c-floating-side__link--tips {
  background: #132a6f;
}
.c-floating-side__link--estimate {
  background: #ffffff;
  box-shadow: 0 0 8rem rgba(0, 0, 0, 0.12);
}
.c-floating-side__link-text {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  font-size: 16rem;
}
@media only screen and (max-width: 1271px) {
  .c-floating-side__link-text {
    font-size: 13rem;
  }
}
.c-floating-side__link--contact .c-floating-side__link-text, .c-floating-side__link--tips .c-floating-side__link-text {
  color: var(--color-white);
}
.c-floating-side__link--estimate .c-floating-side__link-text {
  color: var(--color-navy);
}
@media only screen and (max-width: 1271px) {
  .c-floating-side__link {
    width: 34rem;
    min-height: 112rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-floating-side__links {
    left: 0;
    top: auto;
    bottom: 0;
    transform: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    width: 100%;
  }
  .c-floating-side__link {
    width: 100%;
    min-height: 40rem;
    border-radius: 0;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    text-align: center;
    box-shadow: none;
  }
  .c-floating-side__link:last-child {
    border-top: 1rem solid var(--color-navy);
  }
  .c-floating-side__link-text {
    font-size: 14rem;
  }
}