@charset "UTF-8";
/* Common
-------------------- */
:root {
  --clr-navy: #013479;
  --clr-blue: #1C61C1;
  --clr-bg_blue: #B1DEF9;
  --clr-hv_blue: #299DD1;
  --clr-txt_black: #333333;
  --clr-l_gray: #F0F0F0;
  --clr-white: #ffffff;
}

html {
  font-size: min(62.5%, 0.6944444444vw);
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2vw;
  }
}

body {
  padding-top: 11rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  color: var(--clr-txt_black);
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 7rem;
  }
}

em, strong {
  font-weight: 400;
  font-style: normal;
}

img {
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  padding: 0 !important;
  text-decoration: none !important;
}
.logo img {
  width: 11rem;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .logo img {
    width: 14vw;
  }
}
.logo span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-txt_black);
}
@media screen and (max-width: 767px) {
  .logo span {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .logo:hover {
    text-decoration: none;
  }
  .logo:hover span {
    color: var(--clr-txt_black);
  }
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
  .forsp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .forpc {
    display: none;
  }
}
/* Header
-------------------- */
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    display: flex;
    align-items: center;
    line-height: 1.15;
  }
  .header__logo {
    margin: 0 auto 0 4.1666666667%;
  }
  .header__inner {
    display: flex;
    align-items: center;
  }
  .header__navbtn {
    display: none;
  }
  .header__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }
  .header__tel {
    margin: 0;
    display: flex;
    align-items: baseline;
    line-height: 1.15;
    color: var(--clr-navy);
  }
  .header__tel::before {
    content: "";
    width: 1.9rem;
    height: 1.9rem;
    margin-right: 0.5rem;
    background: url(../images/common/icon_tel-blue.svg) center center/contain no-repeat;
  }
  .header__tel strong {
    margin-right: 1rem;
    font-family: "Roboto", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
  }
  .header__tel span {
    font-size: 1.3rem;
    font-weight: 700;
  }
  .header__btn {
    margin-left: 4rem;
    display: flex;
  }
  .header__btn--estate {
    background-color: var(--clr-blue);
  }
  .header__btn--estate::before {
    background-image: url(../images/common/icon_estimate.svg);
  }
  .header__btn--order {
    background-color: var(--clr-navy);
  }
  .header__btn--order::before {
    background-image: url(../images/common/icon_order.svg);
  }
  .header__btn li a {
    width: 17rem;
    height: 11rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--clr-white);
    transition: background-color 0.3s ease;
  }
  .header__btn li a::before {
    content: "";
    width: 100%;
    height: 3.3rem;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .header__btn li a strong {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .header__btn li a span {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .header__btn li a:hover {
    background-color: var(--clr-hv_blue);
  }
}
@media screen and (min-width: 768px) {
  .global-nav ul {
    display: flex;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .global-nav ul li:not(:first-child) {
    margin-left: 3rem;
  }
  .global-nav ul li a {
    color: var(--clr-txt_black);
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .global-nav ul li a {
    transition: color 0.3s ease;
  }
  .global-nav ul li a:hover {
    color: var(--clr-hv_blue);
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    background-color: var(--clr-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .header__logo {
    margin-left: 5vw;
  }
  .header__inner {
    position: fixed;
    top: 7rem;
    left: max(100vw, 530px);
    width: 100%;
    background-color: var(--clr-white);
    transition: left 0.5s ease;
  }
  .header__inner.opened {
    left: 0;
  }
  .header__navbtn {
    width: 7rem;
    height: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__navbtn span {
    position: relative;
    width: 3rem;
    height: 0.3rem;
    background-color: var(--clr-txt_black);
  }
  .header__navbtn span::before, .header__navbtn span::after {
    content: "";
    position: absolute;
    width: 3rem;
    height: 0.3rem;
    background-color: var(--clr-txt_black);
    transition: 0.2s ease;
  }
  .header__navbtn span::before {
    top: -1rem;
  }
  .header__navbtn span::after {
    top: 1rem;
  }
  .header__navbtn.opened span {
    background-color: var(--clr-white);
  }
  .header__navbtn.opened span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .header__navbtn.opened span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .header__nav {
    padding: 5vw 5vw 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .header__tel {
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
  }
  .header__tel::before {
    content: "";
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    background: url(../images/common/icon_tel-blue.svg) center center/contain no-repeat;
  }
  .header__tel strong {
    margin-right: 1rem;
    font-family: "Roboto", sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
  }
  .header__tel strong a {
    text-decoration: none;
    color: var(--clr-txt_black);
  }
  .header__tel span {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
  }
  .header__btn {
    background-color: var(--clr-white);
    display: flex;
  }
  .header__btn--estate {
    background-color: var(--clr-blue);
  }
  .header__btn--estate::before {
    background-image: url(../images/common/icon_estimate.svg);
  }
  .header__btn--order {
    background-color: var(--clr-navy);
  }
  .header__btn--order::before {
    background-image: url(../images/common/icon_order.svg);
  }
  .header__btn li {
    width: 50%;
  }
  .header__btn li a {
    width: 100%;
    height: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--clr-white);
    transition: background-color 0.3s ease;
  }
  .header__btn li a::before {
    content: "";
    width: 100%;
    height: 3.3rem;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .header__btn li a strong {
    font-size: 2rem;
    font-weight: 700;
  }
  .header__btn li a span {
    font-size: 1.5rem;
  }
  .global-nav ul {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .global-nav ul li {
    display: block;
    border-top: solid 1px #ccc;
  }
  .global-nav ul li:last-child {
    border-bottom: solid 1px #ccc;
  }
  .global-nav ul li a {
    display: block;
    padding: 1em;
    text-decoration: none;
    font-weight: 700;
    color: var(--clr-txt_black);
  }
}
/* FirstView
-------------------- */
.fv {
  position: relative;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .fv {
    padding-bottom: 0;
  }
}
.fv::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 29rem;
  background-color: var(--clr-bg_blue);
}
@media screen and (max-width: 767px) {
  .fv::before {
    content: none;
  }
}
.fv__scroll {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fv__scroll {
    display: none;
  }
}
.fv__scroll::after {
  content: "";
  width: 0;
  height: 25vh;
  margin-top: 3.5rem;
  border-left: solid 1px currentColor;
}
.fv__scroll span {
  transform: rotate(90deg);
}
.fv__scroll.hidden {
  opacity: 0;
}
.fv__image {
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100% - 8rem) / 2);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .fv__image {
    position: relative;
    width: auto;
    margin-left: 5vw;
  }
}
.fv__slide {
  height: 80%;
  border-radius: 5rem 0 0 5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .fv__slide {
    margin-top: 2rem;
    border-radius: 3rem 0 0 3rem;
  }
}
.fv__slide .slick-list, .fv__slide .slick-track {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .fv__slide .slick-list, .fv__slide .slick-track {
    height: auto;
  }
}
.fv__slide-item {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .fv__slide-item {
    height: auto;
    aspect-ratio: 373/210;
  }
}
.fv__slide-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fv__slide-control {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}
.fv__slide-arrows {
  position: absolute;
  top: 0;
  right: 4.5rem;
  display: flex;
  gap: 1.8rem;
}
@media screen and (max-width: 767px) {
  .fv__slide-arrows {
    top: -2rem;
    right: 5vw;
    gap: 1rem;
  }
}
.fv__slide-arrows .slick-arrow {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: url(../images/top/fv_slide_arrow_navy.svg) center center/contain no-repeat;
  background-color: var(--clr-l_gray);
}
@media (hover: hover) {
  .fv__slide-arrows .slick-arrow {
    transition: background-color 0.3s ease;
  }
  .fv__slide-arrows .slick-arrow:hover {
    background-image: url(../images/top/fv_slide_arrow_white.svg);
    background-color: var(--clr-hv_blue);
  }
}
.fv__slide-arrows .slick-prev {
  transform: scaleX(-1);
}
.fv__slide-dots .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.fv__slide-dots .slick-dots li button {
  width: 1rem;
  height: 0;
  padding-top: 1rem;
  border-radius: 50%;
  background-color: var(--clr-l_gray);
  overflow: hidden;
}
@media (hover: hover) {
  .fv__slide-dots .slick-dots li button {
    transition: background-color 0.3s ease;
  }
  .fv__slide-dots .slick-dots li button:hover {
    background-color: var(--clr-hv_blue);
  }
}
.fv__slide-dots .slick-dots li.slick-active button {
  background-color: var(--clr-navy);
}
.fv__text {
  position: relative;
}
.fv__text-inner {
  width: min(96%, 140rem);
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .fv__text-inner {
    width: 90vw;
  }
}
.fv__text-box {
  margin: 0 50% 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__text-box {
    margin: 0;
  }
}
.fv__catch {
  margin-top: 1em;
  line-height: 1.4;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .fv__catch {
    font-size: 3rem;
  }
}
.fv__catch strong {
  font-weight: 700;
  color: var(--clr-blue);
}
.fv__copy {
  margin: 5rem 0;
  line-height: 1.75;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .fv__copy {
    margin: 2rem 0;
    font-size: 1.6rem;
  }
}
.fv__btn {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .fv__btn {
    width: 100vw;
    margin: 0 -5vw;
    padding: 5vw;
    background-color: var(--clr-bg_blue);
    flex-direction: column;
    gap: 1rem;
  }
}
.fv__btn--estate {
  background-color: var(--clr-blue);
}
.fv__btn--order {
  background-color: var(--clr-navy);
}
.fv__btn li a {
  width: 31rem;
  height: 8rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-white);
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fv__btn li a {
    width: 100%;
  }
}
.fv__btn li a strong {
  font-size: 2.1rem;
  font-weight: 700;
}
.fv__btn li a span {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (hover: hover) {
  .fv__btn li a:hover {
    background-color: var(--clr-hv_blue);
  }
}
.fv__feature {
  margin-top: 5.5rem;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .fv__feature {
    width: 100vw;
    margin: 0 -5vw;
    padding: 0 5vw 5vw;
    background-color: var(--clr-bg_blue);
  }
}
.fv__feature > div {
  width: 21.5rem;
  background: url(../images/top/fv_feature_img01.svg) center bottom/100% auto no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fv__feature dt {
  padding-top: 4.5rem;
  background: url(../images/top/fv_feature_img02.svg) center top/auto 3.5rem no-repeat;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fv__feature dt {
    font-size: 1.2rem;
  }
}
.fv__feature dd {
  font-size: 2.7rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fv__feature dd {
    font-size: 1.8rem;
  }
}
.fv__feature dd strong {
  font-family: "Roboto", sans-serif;
  font-size: 2em;
  font-weight: 700;
  color: var(--clr-blue);
}

/* Section
-------------------- */
.sec {
  padding: 6.5rem 0 13.5rem;
}
@media screen and (max-width: 767px) {
  .sec {
    padding: 15vw 0;
  }
}
.sec__title {
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec__title {
    margin-bottom: 4rem;
  }
}
.sec__title span {
  font-family: "Roboto", sans-serif;
  font-size: 11.7rem;
  font-weight: 700;
  color: var(--clr-navy);
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  .sec__title span {
    font-size: 6rem;
  }
}
.sec__title strong {
  margin-top: -1.25em;
  font-size: 4.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec__title strong {
    margin-top: -1em;
    font-size: 2.4rem;
  }
}
.sec__contents {
  margin-right: auto;
  margin-left: auto;
}
.sec__contents.wrap--l {
  width: min(92%, 176rem);
}
@media screen and (max-width: 767px) {
  .sec__contents.wrap--l {
    width: 100vw;
  }
}
.sec__contents.wrap--m {
  width: min(90%, 140rem);
}
@media screen and (max-width: 767px) {
  .sec__contents.wrap--m {
    width: 90vw;
  }
}
.sec__contents.wrap--s {
  width: min(90%, 96rem);
}
@media screen and (max-width: 767px) {
  .sec__contents.wrap--s {
    width: 100%;
  }
}
.sec__copy {
  line-height: 1.7;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sec__copy {
    font-size: 1.8rem;
  }
}
.sec__button {
  width: min(80%, 40rem);
  margin: 8rem auto 0;
  padding: 1em;
  border-radius: 1.5rem;
  background-color: var(--clr-navy);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-white);
}
@media (hover: hover) {
  .sec__button {
    transition: background-color 0.3s ease;
  }
  .sec__button:hover {
    background-color: var(--clr-hv_blue);
  }
}
@media screen and (max-width: 767px) {
  .sec__button {
    margin-top: 4rem;
  }
}

/* [MESSAGE]
-------------------- */
.message {
  background-color: var(--clr-white);
}
.message__copy {
  line-height: 2;
  text-align: center;
  font-size: 2.1rem;
}
.message__copy:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .message__copy {
    line-height: 1.7;
    text-align: left;
    font-size: 1.9rem;
  }
  .message__copy:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.message__copy strong {
  color: var(--clr-navy);
}

/* [movie] */
.movie {
  position: relative;
  z-index: 1;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .movie {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .movie__inner {
    width: 90%;
    margin: 0 auto;
  }
}
.movie video {
  max-width: 100%;
}
.movie .center-play-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 50%;
  background-color: var(--clr-white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.movie .center-play-btn::after {
  content: "";
  width: 3rem;
  height: 5rem;
  margin-left: 1rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: var(--clr-blue);
}
@media (hover: hover) {
  .movie .center-play-btn {
    transition: background-color 0.3s ease;
  }
  .movie .center-play-btn::after {
    transition: background-color 0.3s ease;
  }
  .movie .center-play-btn:hover {
    background-color: var(--clr-blue);
  }
  .movie .center-play-btn:hover::after {
    background-color: var(--clr-white);
  }
}

/* [problem] */
.problem .problem__inner {
  margin-top: 10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .problem .problem__inner {
    margin-top: 7rem;
    padding-top: 7rem;
  }
}

.movie + .problem .problem__inner {
  margin-top: -27rem;
  padding-top: 38rem;
}
@media screen and (max-width: 767px) {
  .movie + .problem .problem__inner {
    margin-top: -13rem;
    padding-top: 19rem;
  }
}

.problem__inner {
  position: relative;
  margin-bottom: 8rem;
  padding-bottom: 14.5rem;
  border-radius: 5rem;
  background-color: var(--clr-l_gray);
}
@media screen and (max-width: 767px) {
  .problem__inner {
    margin-bottom: 4rem;
    padding-bottom: 7rem;
    border-radius: 0;
  }
}
.problem__inner::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  left: calc(50% - 14rem);
  width: 28rem;
  height: 8rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--clr-l_gray);
}
@media screen and (max-width: 767px) {
  .problem__inner::after {
    bottom: -4rem;
    left: calc(50% - 7rem);
    width: 14rem;
    height: 4rem;
  }
}
.problem__title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3.6rem;
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--clr-navy);
}
@media screen and (max-width: 767px) {
  .problem__title {
    gap: 1rem;
    font-size: 2.6rem;
  }
}
.problem__title::before, .problem__title::after {
  content: "";
  width: 5.2rem;
  aspect-ratio: 5.2/7;
  background: url(../images/top/problem_title.svg) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .problem__title::before, .problem__title::after {
    width: 1.4em;
  }
}
.problem__title::after {
  transform: scaleX(-1);
}
.problem__block {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .problem__block {
    flex-direction: column;
  }
}
.problem__block-item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .problem__block-item {
    width: 100%;
    margin-top: 3rem;
  }
}
.problem__subttl {
  position: relative;
}
.problem__subttl span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .problem__subttl span {
    margin-top: 0;
    font-size: 2.4rem;
  }
}
.problem__subttl.type--a {
  color: var(--clr-txt_black);
}
.problem__subttl.type--a::before {
  content: "";
  display: block;
  width: 18rem;
  aspect-ratio: 18/14.6;
  margin-right: auto;
  background: url(../images/top/problem_img01.svg) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .problem__subttl.type--a::before {
    width: 10rem;
    margin-left: 2vw;
  }
}
.problem__subttl.type--b {
  color: var(--clr-navy);
}
.problem__subttl.type--b::after {
  content: "";
  display: block;
  width: 18rem;
  aspect-ratio: 18/14.6;
  margin-left: auto;
  background: url(../images/top/problem_img02.svg) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .problem__subttl.type--b::after {
    width: 10rem;
    margin-right: 2vw;
  }
}
.problem__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.problem__list li {
  position: relative;
  padding: 1rem;
  border: solid 2px;
  border-radius: 10rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .problem__list li {
    border-width: 1px;
  }
}
.problem__list li::after {
  content: "";
  position: absolute;
  width: 8%;
  height: 4rem;
  bottom: -2rem;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.problem__list li img {
  width: 14%;
}
.problem__list li span {
  flex: 1;
  line-height: 1.6;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .problem__list li span {
    font-size: 1.9rem;
  }
}
.problem__list.type--a li {
  border-color: var(--clr-txt_black);
  color: var(--clr-txt_black);
}
.problem__list.type--a li::after {
  right: 10%;
  background-image: url(../images/top/problem_arw_a.svg);
}
@media screen and (max-width: 767px) {
  .problem__list.type--a li img {
    margin-left: 2%;
  }
}
.problem__list.type--a li span {
  margin-left: 6%;
}
@media screen and (max-width: 767px) {
  .problem__list.type--a li span {
    margin-left: 5%;
  }
}
.problem__list.type--b li {
  border-color: var(--clr-blue);
  flex-direction: row-reverse;
  color: var(--clr-blue);
}
.problem__list.type--b li::after {
  left: 10%;
  background-image: url(../images/top/problem_arw_b.svg);
}
@media screen and (max-width: 767px) {
  .problem__list.type--b li img {
    margin-right: 2%;
  }
}
.problem__list.type--b li span {
  margin-left: 20%;
}
@media screen and (max-width: 767px) {
  .problem__list.type--b li span {
    margin-left: 16%;
  }
}

/* [reason] */
.reason {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .reason {
    padding-top: 4rem;
  }
}
.reason__title {
  margin-bottom: 4rem;
  text-align: center;
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--clr-navy);
}
@media screen and (max-width: 767px) {
  .reason__title {
    font-size: 2.4rem;
  }
}
.reason__copy {
  line-height: 1.7;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
.reason__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5%;
}
@media screen and (max-width: 767px) {
  .reason__list {
    flex-direction: column;
    gap: 0;
  }
}
.reason__list li {
  width: calc((100% - 8rem) / 2);
  margin-top: 6rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .reason__list li {
    width: 100%;
    margin-top: 3rem;
  }
}
.reason__subttl {
  margin-top: 3rem;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--clr-blue);
}
@media screen and (max-width: 767px) {
  .reason__subttl {
    margin-top: 2rem;
    font-size: 2rem;
  }
}
.reason__text {
  margin-top: 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .reason__text {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}

/* [PRODUCTS]
-------------------- */
.products {
  background-color: var(--clr-bg_blue);
}
.products__copy {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
.products__list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .products__list {
    margin-top: 3rem;
    gap: 2rem;
  }
}
.products__list li {
  width: 22.75%;
  margin-top: 4rem;
  border-radius: 2rem;
  background-color: var(--clr-white);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .products__list li {
    width: calc((100% - 2rem) / 2);
    margin: 0;
    border-radius: 1rem;
  }
}
.products__list li span {
  display: block;
  padding: 0.75em;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .products__list li span {
    font-size: 2rem;
  }
}

/* [VOICE]
-------------------- */
.voice {
  background-color: var(--clr-white);
}
.voice__copy {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
.voice__list {
  margin-top: 6rem;
  display: flex;
  gap: 4%;
}
@media screen and (max-width: 767px) {
  .voice__list {
    margin-top: 0;
    flex-direction: column;
  }
}
.voice__list li {
  width: 30.6666666667%;
}
@media screen and (max-width: 767px) {
  .voice__list li {
    width: 100%;
    margin-top: 3rem;
  }
}
.voice__list li figure img {
  width: 100%;
}
.voice__subttl {
  margin-top: 3rem;
  line-height: 1.4;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-blue);
}
@media screen and (max-width: 767px) {
  .voice__subttl {
    margin-top: 2rem;
    font-size: 2rem;
  }
}
.voice__name {
  margin-top: 2rem;
  line-height: 1.8;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .voice__name {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
.voice__btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .voice__btn {
    margin-top: 2rem;
  }
}
.voice__btn a {
  position: relative;
  display: block;
  width: min(90%, 32rem);
  margin: 0 auto;
  padding: 1em;
  border-radius: 1.5rem;
  background-color: var(--clr-navy);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-white);
}
.voice__btn a::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.65rem);
  right: 2rem;
  width: 0.9rem;
  height: 1.3rem;
  background: url(../images/top/voice_arw.svg) center center/contain no-repeat;
}
@media (hover: hover) {
  .voice__btn a {
    transition: background-color 0.3s ease;
  }
  .voice__btn a:hover {
    background-color: var(--clr-hv_blue);
  }
}

/* [AREA]
-------------------- */
.area {
  position: relative;
  background-color: var(--clr-l_gray);
}
.area::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 192rem);
  height: 100%;
  background: url(../images/top/area_img01.svg) top left/33% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .area::before {
    top: 0;
    left: 0;
    transform: translateX(0);
    width: 40%;
    aspect-ratio: 638/654;
    background-size: contain;
  }
}
.area > * {
  position: relative;
}
.area__copy {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
.area__inner {
  width: min(90%, 108rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .area__inner {
    width: 100%;
  }
}
.area__list {
  position: relative;
  width: min(80%, 76rem);
  margin: 6rem 0 0 auto;
}
@media screen and (max-width: 767px) {
  .area__list {
    width: 100%;
    margin: 3rem 0 0;
  }
}
.area__list::after {
  content: "";
  position: absolute;
  bottom: -16.4rem;
  right: -10rem;
  width: 10rem;
  height: 27rem;
  background: url(../images/top/area_img02.svg) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .area__list::after {
    right: 1rem;
    width: 5rem;
  }
}
.area__list dt {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-blue);
}
.area__list dd {
  margin-top: 2rem;
}
.area__list dd:not(:last-child) {
  margin-bottom: 3rem;
}
.area__list dd ul {
  margin-top: 1em;
  line-height: 1;
  font-size: 1.6rem;
}
.area__list dd ul li {
  display: inline-block;
  line-height: 2;
}
.area__list dd ul li::after {
  content: "｜";
}
.area__list dd:last-child ul {
  margin-right: 7rem;
}

/* [FAQ]
-------------------- */
.faq {
  background-color: var(--clr-white);
}
.faq__copy {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
.faq__list {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .faq__list {
    margin-top: 3rem;
  }
}
.faq__list dt {
  position: relative;
  margin-top: 1rem;
  padding: 1rem 5rem 1rem 7.8rem;
  background-color: var(--clr-bg_blue);
  line-height: 1.6;
  font-size: 2.1rem;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__list dt {
    padding-left: 4.6rem;
    font-size: 1.8rem;
  }
}
.faq__list dt::before {
  content: "Q.";
  position: absolute;
  top: 0.3rem;
  left: 2.2rem;
  font-family: "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--clr-navy);
}
@media screen and (max-width: 767px) {
  .faq__list dt::before {
    top: 0.5rem;
    left: 1.4rem;
    font-size: 2.4rem;
  }
}
.faq__list dt::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5rem);
  right: 1.2rem;
  width: 3rem;
  height: 3rem;
  background: url(../images/top/faq_icon_plus.svg) center center/contain no-repeat;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .faq__list dt::after {
    top: calc(50% - 1.2rem);
    width: 2.4rem;
    height: 2.4rem;
  }
}
.faq__list dt.active::after {
  background-image: url(../images/top/faq_icon_minus.svg);
  transform: rotate(180deg);
}
.faq__list dd {
  display: none;
  position: relative;
  padding: 1rem 1rem 1rem 7.8rem;
  line-height: 2;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .faq__list dd {
    padding-left: 4.6rem;
  }
}
.faq__list dd::before {
  content: "A.";
  position: absolute;
  top: 0.3rem;
  left: 2.2rem;
  font-family: "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--clr-txt_black);
}
@media screen and (max-width: 767px) {
  .faq__list dd::before {
    top: 0.5rem;
    left: 1.4rem;
    font-size: 2.4rem;
  }
}

/* CTA
-------------------- */
.cta {
  position: relative;
  background: url(../images/top/cta_bg.jpg) center center/cover no-repeat;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-navy);
  opacity: 0.8;
  mix-blend-mode: multiply;
}
.cta__inner {
  position: relative;
  width: min(90%, 120rem);
  margin: 0 auto;
  padding: 7rem 0;
  color: var(--clr-white);
}
.cta__title {
  text-align: center;
  font-size: 4.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cta__title {
    font-size: 3rem;
  }
}
.cta__copy {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .cta__copy {
    margin-top: 2rem;
  }
}
.cta__block {
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cta__block {
    margin-top: 3rem;
    flex-direction: column;
  }
}
.cta__btn {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .cta__btn {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
}
.cta__btn--estate {
  color: var(--clr-blue);
}
.cta__btn--order {
  color: var(--clr-navy);
}
.cta__btn li a {
  width: 31rem;
  height: 8rem;
  border-radius: 1.5rem;
  background-color: var(--clr-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .cta__btn li a {
    width: 100%;
  }
}
.cta__btn li a strong {
  font-size: 2.1rem;
  font-weight: 700;
}
.cta__btn li a span {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (hover: hover) {
  .cta__btn li a:hover {
    background-color: var(--clr-hv_blue);
    color: var(--clr-white);
  }
}
.cta__tel dt {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .cta__tel dt {
    margin-top: 3rem;
  }
}
.cta__tel dd {
  display: flex;
  align-items: baseline;
  gap: 1.7rem;
}
@media screen and (max-width: 767px) {
  .cta__tel dd {
    margin-top: 1rem;
    flex-direction: column;
    gap: 0;
  }
}
.cta__tel dd strong {
  display: flex;
  align-items: baseline;
  gap: 1.3rem;
  font-family: "Roboto", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cta__tel dd strong {
    font-size: 5.2rem;
  }
}
.cta__tel dd strong::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/common/icon_tel-white.svg) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .cta__tel dd strong::before {
    width: 3.4rem;
    height: 3.4rem;
  }
}
.cta__tel dd span {
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cta__tel dd span {
    font-size: 2rem;
    padding-left: 4.7rem;
  }
}

/* Footer
-------------------- */
.footer {
  padding-bottom: 5.8rem;
  background-color: var(--clr-l_gray);
  line-height: 1.15;
  text-align: left;
}
.footer__inner {
  width: min(90%, 140rem);
  margin: 0 auto;
  padding-top: 4.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    width: 86%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.footer__address {
  margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .footer__address {
    margin-bottom: 3rem;
  }
}
.footer__address dt {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .footer__address dt .logo img {
    width: 18vw;
  }
}
.footer__address dt .logo span {
  font-size: 2rem;
}
.footer__address dd {
  margin: 3rem 0 0 0;
  line-height: 1.75;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer__address dd {
    margin-top: 1.5rem;
  }
}
.footer__address dd a {
  text-decoration: none;
  color: var(--clr-txt_black);
}
.footer__nav {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav ul {
    float: left;
  }
}
.footer__nav ul li {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--clr-blue);
}
@media screen and (max-width: 767px) {
  .footer__nav ul li {
    float: left;
    width: 50%;
  }
}
.footer__nav ul li:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .footer__nav ul li:last-child {
    margin-bottom: 1em;
  }
}
.footer__nav ul li::before {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 1.3rem;
  margin-right: 1rem;
  background: url(../images/common/footer_nav_arw.svg) center center/contain no-repeat;
}
.footer__nav ul li a {
  text-decoration: none;
  color: var(--clr-txt_black);
}
@media (hover: hover) {
  .footer__nav ul li a:hover {
    text-decoration: underline;
  }
}
.footer__copyright {
  width: min(90%, 140rem);
  margin: 2rem auto 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-top: 3rem;
    border-top: solid 1px #ccc;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */