@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Roboto:wght@700&display=swap');
@import url('https://fonts.cdnfonts.com/css/optima');

/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

:root {
  --body-color: #FFF;
  --main-font-color: #333;
  --primary-color: #EB5505;
  --white-color: #FFF;
  --gray-color: #CBCBCB;
  --gray-bg-color: #F1F1F1;
  --gray-border-color: #D9D9D9;
  --orange-color: #EA5504;
}

html {
  display: flex;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-color: var(--body-color);
  color: var(--main-font-color);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.64;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

button {
  padding: 0;
  background: none;
  border: none;
  outline: none;
}

a {
  color: var(--main-font-color);
  transition: 0.4s;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.no-sp {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .no-sp {
    display: flex !important;
  }
}

.no-pc {
  display: flex !important;
}

@media only screen and (min-width: 768px) {
  .no-pc {
    display: none !important;
  }
}

.js-fade {
  opacity: 0;
}

.js-fade.is-inview {
  opacity: 1;
  transition-delay: 0.3s;
  transition: 0.5s;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(50px);
}

.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
  transition: 0.5s;
}

.js-fadeUp.is-inview a {
  margin: 0 auto;
}

.f-bold {
  font-weight: bold;
}

.f-optima {
  font-family: 'Optima', sans-serif;
}

.f-mincho {
  font-family: YuMincho, "Hiragino Mincho ProN", serif;
}

.f-orange {
  color: var(--orange-color);
}

.d-flex {
  display: flex;
  flex-direction: column;
}

/* ----- component ----- */

@media only screen and (min-width: 768px) {}

/* ----- layout ----- */
.l-btn {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 325px;
  width: 100%;
  margin: 0 auto;
  padding: 22px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 0.83;
}

.l-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../images/btn-arrow.svg) no-repeat center / cover;
}

/* common.cssの打消 */
.l-btn:visited {
  color: var(--white-color);
}

.l-service__intro {
  gap: 14px;
  padding: 30px 25px 23px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.56;
}

.l-section__inner {
  padding: 30px 25px 50px;
}

.l-money-plan__title {
  gap: 15px;
  margin-bottom: 30px;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.154;
}

.l-money-plan__title-img {
  max-width: 240px;
  margin: 0 auto;
}

.l-money-plan__icon {
  max-width: 126px;
}

.l-money-plan__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-template-areas: 
    "icon circle"
    "arrow arrow"
    "check check";
  margin-bottom: 15px;
}

.l-money-plan__icon {
  grid-area: icon;
}

.l-money-plan__circle {
  grid-area: circle;
  gap: 15px;
  font-weight: 500;
}

.l-money-plan__text--circle {
  position: relative;
}

.l-money-plan__text--circle::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -20px;
  display: block;
  width: 10px;
  height: 10px;
  background: url(../images/circle.svg) no-repeat center / cover;
}

.l-money-plan__arrow {
  grid-area: arrow;
  max-width: 120px;
  margin: 25px auto 20px;
}

.l-money-plan__arrow-img {
  width: 100%;
}

.l-money-plan__check {
  grid-area: check;
  gap: 12px;
}

.l-money-plan__text--check {
  position: relative;
  padding-left: 30px;
}

.l-money-plan__text--check::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 22px;
  height: 20px;
  background: url(../images/check.svg) no-repeat center / cover;
}

.l-money-plan__video {
  width: 100%;
  margin-bottom: 20px;
}

.l-section--gray {
  background-color: var(--gray-bg-color);
}

.l-section__inner--action {
  gap: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.l-action {
  gap: 20px;
}

.l-action__title {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}

.l-action__text {
  gap: 15px;
}

.l-section__title {
  padding: 20px 0;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 2.4rem;
  line-height: 1.25;
  text-align: center;
}

.l-risk__title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.l-risk__title-num {
  max-width: 73px;
}

.l-risk__title {
  font-size: 2rem;
  line-height: 1.5;
}

.l-section__inner--risk {
  gap: 30px;
}

.l-risk__figure {
  gap: 15px;
  margin-bottom: 15px;
}

.l-risk__figure-comment {
  font-size: 1.1rem;
}

.l-risk__text {
  gap: 15px;
}

.l-risk__text-list {
  gap: 10px;
  padding: 20px 15px 20px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
}

.l-risk__text-list-item {
  position: relative;
  padding-left: 20px;
}

.l-risk__text-list-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: url(../images/circle.svg) no-repeat center / cover;
}

.l-section__inner--voice {
  gap: 40px;
}

.l-voice {
  gap: 30px;
}

.l-voice__item  {
  gap: 20px;
}

.l-voice__item-title {
  position: relative;
  padding-left: 52px;
  font-size: 2rem;
  line-height: 2.4;
}

.l-voice__item-title::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 37px;
  height: 37px;
}

.l-voice__item-title--one::before {
  background: url(../images/num01.svg) no-repeat center / cover;
}

.l-voice__item-title--two::before {
  background: url(../images/num02.svg) no-repeat center / cover;
}

.l-voice__item-title--three::before {
  background: url(../images/num03.svg) no-repeat center / cover;
}

.l-voice__item-title--four::before {
  background: url(../images/num04.svg) no-repeat center / cover;
}

.l-gap-wrap {
  gap: 15px;
}

.l-gap-wrap__list  {
  gap: 8px;
}

.l-gap-wrap__title {
  font-size: 1.5rem;
}

.l-gap-wrap__list-item {
  gap: 5px;
}

.l-gap-wrap__list-item-text {
  position: relative;
  padding-left: 20px;
}

.l-gap-wrap__list-item-text::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  background: url(../images/circle.svg) no-repeat center / cover;
}

.l-step-title {
  font-size: 2rem;
  text-align: center;
}

.l-step-title-num {
  font-size: 3rem;
}

.l-step {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.l-step__item {
  gap: 5px;
  width: calc(100% / 3);
}

.l-step__item-title {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
}

.l-step__item-num {
  max-width: 95px;
}

.l-step-comment {
  font-size: 1.1rem;
}

.l-section__inner--step {
  gap: 25px;
}

.l-section__inner--gift {
  gap: 20px;
}

.l-quality {
  gap: 15px;
}

.l-quality__item {
  gap: 10px;
  padding: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
}

.l-quality__item-icon {
  max-width: 78px;
  margin: 0 auto;
}

.l-quality__item-title {
  font-size: 1.7rem;
  text-align: center;
  line-height: 1.765;
}

.l-section__inner--consultation {
  gap: 30px;
}

.l-section__inner--road {
  gap: 30px;
}

.l-impressions {
  gap: 20px;
}

.l-impressions__item {
  display: flex;
  justify-content: center;
  gap: 15px;
  background-color: var(--white-color);
  padding: 15px 0;
}

.l-impressions__item-left {
  width: 28%;
}

.l-impressions__item-icon {
  max-width: 90px;
}

.l-impressions__item-age {
  font-size: 1.5rem;
  text-align: center;
  line-height: 2;
}

.l-impressions__item-right {
  width: 57%;
}

.l-impressions__comment {
  margin: 20px 0 30px;
  font-size: 1.1rem;
  text-align: center;
}

.l-faq {
  gap: 25px;
}

.l-faq__item {
  gap: 15px;
}

.l-faq__item-question {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.7rem;
  line-height: 1.471;
}

.l-faq__item-q {
  font-family: Roboto, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.l-section__inner--faq {
  gap: 30px;
}

.l-precautions {
  overflow-y: scroll;
  /* height: 611px; */
  border: 2px solid var(--gray-border-color);
  border-radius: 6px;
}

.l-precautions::-webkit-scrollbar {
  width: 5px;
}

.l-precautions::-webkit-scrollbar-thumb {
  background-color: var(--gray-color);
  border-radius: 6px;
  width: 5px;
}

.l-precautions__inner {
  gap: 10px;
  padding: 34px 20px;
}

.l-precautions-title {
  font-size: 1.7rem;
  text-align: center;
}

.l-precautions-list {
  gap: 15px;
  padding-left: 16px;
}

.l-precautions-list-item {
  list-style: disc;
}

.l-section__inner--autoro {
  gap: 30px;
  padding-top: 0;
  padding-bottom: 0;
}

.l-autoro {
  gap: 7px;
  font-weight: 500;
  text-align: center;
  line-height: 1.471;
}

.l-autoro__title {
  font-size: 1.6rem;
}

@media only screen and (min-width: 768px) {
  .l-btn {
    /* max-width: 580px; */
    max-width: 400px;
    padding: 27px;
    font-size: 2rem;
  }

  .l-btn::after {
    right: 30px;
    width: 16px;
    height: 16px;
  }

  .l-service__intro {
    gap: 10px;
    padding: 40px 25px;
    font-size: 2rem;
    line-height: 1.7;
  }

  .l-section__inner--money-plan {
    max-width: 860px;
    margin: 0 auto;
    padding: 54px 25px 80px;
  }

  .l-money-plan__title-img {
    max-width: 336px;
  }

  .l-money-plan__title {
    margin-bottom: 35px;
    font-size: 1.8rem;
  }

  .l-money-plan__content {
    grid-template-areas:
        "icon circle"
        "icon arrow"
        "icon check";
    grid-template-columns: 1fr 1.1fr;
    margin-bottom: 75px;
    padding-left: 20px;
  }

  .l-money-plan__circle,
  .l-money-plan__check {
  font-size: 1.6rem;
  }

  .l-money-plan__text--circle::before {
    top: 9px;
  }

  .l-money-plan__text--check {
    padding-left: 7px;
  }

  .l-money-plan__text--check::before {
    left: -24px;
  }

  .l-money-plan__icon {
    max-width: 293px;
  }

  .l-money-plan__video {
     margin-bottom: 60px;
  }

  .l-section__inner--action {
    max-width: 840px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .l-action__title {
    font-size: 2.4rem;
    line-height: 1.417;
  }

  .l-action__text {
    gap: 14px;
    font-size: 1.5rem;
    text-align: center;
  }

  .l-action__figure {
    padding: 0 68.5px;
  }

  .l-section__title {
    font-size: 3rem;
    line-height: 2;
  }

  .l-section__inner--risk {
    gap: 60px;
    max-width: 1158px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .l-risk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
      "figure title"
      "figure text";
    align-items: center;
  }

  .l-risk__title-wrap {
    grid-area: title;
    gap: 28px;
    margin-bottom: 26px;
  }

  .l-risk__figure {
    grid-area: figure;
    max-width: 525px;
    margin: 0 30px 0 0;
  }

  .l-risk__text {
    grid-area: text;
    gap: 14px;
    font-size: 1.5rem;
  }

  .l-risk__title {
    gap: 28px;
    font-size: 2.4rem;
  }

  .l-risk--three {
    grid-template-areas: 
      "title title"
      "figure-top text-top"
      "figure-bottom text-bottom";
    align-items: flex-start;
    row-gap: 40px;
  }

  .l-risk__figure--top {
    grid-area: figure-top;
  }

  .l-risk__figure--bottom {
    grid-area: figure-bottom;
  }

  .l-risk__text--top {
    grid-area: text-top;
  }

  .l-risk__text--bottom {
    grid-area: text-bottom;
  }

  .l-risk__title-wrap--three {
    width: 50%;
    margin-left: auto;
    margin-bottom: 0;
  }

  .l-risk__text-list {
    flex-direction: row;
    gap: 30px;
  }

  .l-risk__text-list-inner {
    gap: 10px;
  }

  .l-section__inner--voice {
    gap: 50px;
    max-width: 1028px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
  }

  .l-voice {
    gap: 50px;
  }

  .l-voice__item {
    gap: 24px;
  }

  .l-voice__item-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 2.4rem;
  }

  .l-voice__item-title::before {
    position: initial;
  }

  .l-voice-intro {
    font-size: 1.6rem;
  }

  .l-voice__item:not(:last-of-type) {
    padding: 0 94.5px;
  }

  .l-gap-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .l-gap-wrap__list {
    gap: 6px;
    width: 300px;
    text-align: left;
  }

  .l-gap-wrap__title {
    font-size: 1.7rem;
  }

  .l-gap-wrap__list-item {
    font-size: 1.5rem;
  }

  .l-gap-wrap-text {
    width: 100%;
  }

  .l-gap-wrap--voice {
    row-gap: 50px;
  }

  .l-section__inner--step {
    max-width: 1004px;
    margin: 0 auto;
    gap: 40px;
  }

  .l-step-title {
    font-size: 2.4rem;
  }

  .l-step-title-num {
    font-size: 3.6rem;
  }

  .l-step {
    gap: 40px;
  }

  .l-step__item {
    gap: 10px;
  }

  .l-step__item-num {
    max-width: 132px;
    margin: 0 auto;
  }

  .l-step__item-title {
    font-size: 1.8rem;
  }

  .l-step-comment {
    font-size: 1.4rem;
    text-align: center;
  }

  .l-section__inner--gift {
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 80px;
    font-size: 1.6rem;
    text-align: center;
  }

  .l-section__inner--quality {
    max-width: 1150px;
    margin: 0 auto;
    padding: 80px 25px;
  }

  .l-quality {
    flex-direction: row;
    gap: 30px;
  }

  .l-quality__item {
    width: calc(100% / 3);
    font-size: 1.5rem;
    padding: 25px;
  }

  .l-quality__item-title {
    font-size: 2rem;
  }

  .l-quality__item-icon {
    display: flex;
    max-width: none;
    width: 88px;
    height: 96px;
  }

  .l-section__inner--consultation {
    gap: 60px;
    max-width: 840px;
    padding: 80px 25px;
    margin: 0 auto;
    font-size: 1.5rem;
    text-align: center;
  }

  .l-section__inner--road {
    gap: 60px;
    max-width: 840px;
    margin: 0 auto;
    padding: 80px 25px;
    font-size: 1.5rem;
    text-align: center;
  }

  .l-impressions__item {
    flex-direction: column;
    justify-content: flex-start;
    width: calc((100% / 3) - 15px);
    padding: 30px;
  }

  .l-impressions__item-icon {
    max-width: 148px;
    margin: 0 auto;
  }

  .l-impressions__item-age {
    font-size: 2rem;
  }

  .l-section__inner--impressions {
    max-width: 1150px;
    margin: 0 auto;
    padding: 80px 25px 90px;
  }

  .l-impressions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .l-impressions__item-left,
  .l-impressions__item-right {
    width: 100%;
  }

  .l-impressions__comment {
    margin: 20px 0 36px;
    font-size: 1.4rem;
    text-align: right;
  }

  .l-section__inner--faq {
    gap: 76px;
    max-width: 840px;
    margin: 0 auto;
    padding: 80px 25px 70px;
  }

  .l-faq__item-question {
    font-size: 2.4rem;
    gap: 20px;
  }

  .l-faq__item-q {
    font-size: 4.6rem;
  }

  .l-faq__item {
    gap: 20px;
    font-size: 1.5rem;
  }

  .l-faq {
    gap: 50px;
  }

  .l-section__inner--autoro {
    max-width: 955px;
    margin: 0 auto;
  }

  .l-precautions {
    height: auto;
  }

  .l-precautions__inner {
    gap: 23px;
    padding: 50px;
  }

  .l-precautions-title {
    font-size: 2.4rem;
  }

  .l-precautions-list {
    gap: 20px;
    font-size: 1.5rem;
  }

  .l-precautions-list--in {
    font-size: 1.4rem;
  }
}

.anchor {
  display: block;
    padding-top: 70px;
    margin-top: -70px;
}

.mov-anchor {
  display: block;
    padding-top: 140px;
    margin-top: -140px;
}



/* フローティングボタンSP用 */
@media only screen and (min-width: 751px) {
  .bottom_float_btn_wrap{
    display: none;
}

}

@media only screen and (max-width: 750px) {
  .bottom_float_btn_wrap{
    clear: both;
    background: rgb(255, 255, 255, 0.5);
    position: fixed;
    z-index: 10;
    width: 100%;
    bottom: 0;
}

.bottom_float_btn_wrap_group  {
    position: relative;
    display: block;
}


.bottom_float_btn_icon{
    content: "";
    position: absolute;
    width: 5vw;
    height: 5vw;
    top: -10%;
    right: 2%;
}

.bottom_float_btn_icon::before,
.bottom_float_btn_icon::after {
    /* 「×」印のスタイル */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20%;
    /* 棒の幅（太さ） */
    height: 100%;
    /* 棒の高さ */
    background: #333;
    /* 棒の色 */
}

.bottom_float_btn_icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.bottom_float_btn_icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.bottom_float_btn_icon:hover {
    cursor: pointer;
}


.bottom_float_btn_wrap_block {
    position: relative;
    width: 58.7%;
    height: 12.8vw;
    margin: 2.56vw auto;
    background: #EB5505;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    border-radius: 2vw;
}

.bottom_float_btn_wrap_text {
    font-size: 4.1vw;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 11.8vw;
    padding-left: 28%;
}



.bottom_float_btn_wrap_block::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../images/btn-arrow.svg) no-repeat center / cover;
}

.annotation {
  line-height: 3rem;
  font-size: 1.3rem;
  background-color: #fff;
  text-align: center;
  margin-top: -10px;
}

}



/* フローティングボタンSP用---END */


/* バナー上部吹き出し */
picture.speech-bubble img {
  display: block;
  margin: 0 auto;
  width: 35%;
  margin-bottom: -2%;
  }

@media only screen and (max-width: 750px) {
  picture.speech-bubble img {
  width: 60%;
  margin-bottom: -3%;
  }
}

/* バナー上部吹き出し __END*/


/* メンテナンスのお知らせ */

.maintenance-container  {
  padding: 1.5rem 4.5rem;
  margin-bottom: 6rem;
  background-color: #F1F1F1;
  }

.maintenance-container h3 {
font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 0.5rem;
}


@media only screen and (min-width: 768px) {
  .maintenance-container h3 {
font-size: 1.6rem;
    line-height: 1.417;
  }
}

.maintenance-container p{
  font-size: 1.1rem;
  text-align: start;
}

@media only screen and (min-width: 768px) {
  .maintenance-container p{
    font-size: 1.4rem;
    
  }
}

.maintenance-container__inner {
  border: 2px solid red;
  padding: 0.5rem 1rem;
 margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .maintenance-container__inner {
    border: 3px solid red;
    max-width: 45%;
    padding: 1.5rem;
  }
}

/* メンテナンスのお知らせ END*/
