@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-family: "NotoSansJP", sans-serif;
  font-size: 15px;
  color: #333;
  letter-spacing: 0.7px;
  line-height: 1.6;
}

body {
  margin: 0;
}

main {
  width: 100%;
  height: auto;
  margin-top: 150px;
}
@media screen and (max-width: 990px) {
  main {
    margin-top: 80px;
  }
}
@media screen and (max-width: 678px) {
  main {
    margin-top: 62px;
  }
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

picture {
  display: contents;
}

p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

ol {
  padding: 0;
  margin: 0;
}

.f-base__content_area {
  margin: auto;
  width: 1050px;
  max-width: 94%;
}

.f-base__content_inner {
  margin: auto;
  width: 98%;
}

@font-face {
  font-family: "NotoSansJP";
  font-weight: bold;
  src: url("/font/NotoSansJP-Bold.otf") format("opentype");
}
@font-face {
  font-family: "NotoSansJP";
  font-weight: normal;
  src: url("/font/NotoSansJP-Regular.otf") format("opentype");
}
/* ヘッダー */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin-bottom: 13em;
  font-family: "NotoSansJP";
  background-color: #eee;
  z-index: 500;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.14);
}

.l-header__inner {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: inherit;
  margin: 0 auto;
  padding: 3px 15px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  letter-spacing: 0;
}
@media screen and (max-width: 678px) {
  .l-header__inner {
    padding: 3px 5px;
  }
}

.l-header__ttl {
  margin: 8px 0 0;
  width: 50%;
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (min-width: 991px) {
  .l-header__ttl {
    width: 234px;
    text-align: center;
  }
}

.l-header__ttl_img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 990px) {
  .l-header__ttl_img {
    width: 200px;
  }
}
@media screen and (max-width: 678px) {
  .l-header__ttl_img {
    width: 140px;
  }
}

@media screen and (min-width: 679px) {
  .l-header__tel_btn {
    display: none;
  }
}
@media screen and (max-width: 330px) {
  .l-header__tel_btn {
    display: none;
  }
}

.l-header__tel_btn_img {
  height: 38px;
}

.l-header__sdgs {
  max-width: 330px;
  margin-right: 50px;
}
@media screen and (max-width: 1200px) {
  .l-header__sdgs {
    display: none;
  }
}

.l-header__sdgs_img {
  width: 100%;
}

.l-header__right {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #00adba;
  margin-bottom: -3px;
}

.l-header__tel_box {
  line-height: 1.4;
}
@media screen and (max-width: 990px) {
  .l-header__tel_box {
    display: none;
  }
}

.l-header__tel {
  display: flex;
  align-items: center;
  margin-top: -6px;
  justify-content: center;
}

.l-header__tel_num {
  color: #00adba;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 1;
}

.l-header__tel_img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  margin-top: 7px;
}

.l-header__company_link {
  color: #7e7e7e;
  border: #7e7e7e solid 1px;
  border-radius: 6px;
  padding: 4px 16px;
  margin: 0 16px 0 15px;
  transition: 0.1s;
}
.l-header__company_link:hover {
  color: #fff;
  background-color: #7e7e7e;
}
@media screen and (max-width: 990px) {
  .l-header__company_link {
    display: none;
  }
}

.l-header__nav.--pc {
  display: flex;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 990px) {
  .l-header__nav.--pc {
    display: none;
  }
}

.l-header__nav.--sp {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: transform ease 0.4s;
}
@media screen and (min-width: 990px) {
  .l-header__nav.--sp {
    display: none;
  }
}

.l-header__nav.active {
  transform: translateX(0);
}

/* PC 共通 */
.l-header__pc li a, .l-header__pc_sub li a {
  padding: 17px 20px;
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  transition: 0.2s;
}

/* PC メニュー */
.l-header__pc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .l-header__pc {
    padding-top: inherit;
    padding-bottom: inherit;
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    display: flex;
    width: 100%;
    height: initial;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
}

.l-header__pc li a {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  font-size: 17px;
  text-align: center;
  color: #333;
  transition: color 0.2s, background-color 0.2s;
}
@media screen and (max-width: 1110px) {
  .l-header__pc li a {
    padding: 17px 10px;
  }
}
@media screen and (min-width: 990px) {
  .l-header__pc li a {
    margin-bottom: 0;
  }
}

.l-header__pc li a.l-header__pc_link {
  position: relative;
  padding-right: 40px;
}
.l-header__pc li a.l-header__pc_link:before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border: 2.5px solid #bbbbbb;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  position: absolute;
  right: 12px;
  bottom: 24px;
  box-sizing: border-box;
}

.l-header__pc li.l-header__assessment a {
  color: #e01b38;
}
.l-header__pc li.l-header__assessment a:hover {
  color: #fff;
  background-color: #ec6476;
}

.l-header__pc li:last-child a {
  margin-bottom: 0;
}

.l-header__pc li:hover > a {
  background-color: #effbfd;
  color: #00adba;
}

/* PC サブメニュー */
.l-header__pc_sub {
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.14);
  position: fixed;
  display: flex;
  margin: 0;
  padding: 6px;
  width: 100%;
  justify-content: center;
  background-color: #fff;
  z-index: 10;
  box-sizing: border-box;
  transition: 0.2s;
  pointer-events: none;
  opacity: 0;
}

.l-header__pc_sub.active {
  margin: 0;
  opacity: 1;
  pointer-events: painted;
}

.l-header__pc_sub li > a {
  position: relative;
  color: #444;
  text-decoration: none;
}

.l-header__pc_sub li:hover > a {
  background-color: #fff;
  opacity: 0.7;
}

.l-header__pc_sub li a:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 2.5px solid #75d2d9;
  border-top: 0;
  border-right: 0;
  transform: rotate(225deg);
  transform-origin: bottom left;
  position: absolute;
  top: 22px;
  left: 12px;
  box-sizing: border-box;
}

.l-header__pc_sub li.__head a:before {
  content: "";
  display: block;
  width: 5px;
  height: 17px;
  transform: rotate(0deg);
  border: 2.5px solid #00adba;
  background: #00adba;
  top: 22px;
  left: 0;
  position: absolute;
}

/* 黒背景 */
#js-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: 0.3s;
}

#js-overlay.active {
  opacity: 1;
}

.l-header__hamburger {
  padding: 1px 6px;
  width: 48px;
  height: 100%;
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 991px) {
  .l-header__hamburger {
    display: none;
  }
}

.l-header__hamburger span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00adba;
  transition: ease 0.4s;
}
.l-header__hamburger span:nth-child(1) {
  top: 0;
}
.l-header__hamburger span:nth-child(2) {
  margin: 8px 0;
}
.l-header__hamburger span:nth-child(3) {
  top: 0;
}

.l-header__hamburger.active span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.l-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.l-header__close {
  background-color: white;
  position: fixed;
  right: 11px;
  top: 10px;
  width: 37px;
  height: 37px;
  z-index: 100;
}

.l-header__sp_list {
  padding: 0;
  width: 90%;
  height: 90vh;
  margin: 55px auto 0;
}

.l-header__sp_list ul {
  padding: 0;
}

.l-header__sp_list > ul {
  border-bottom: solid #00adba 1px;
}

.l-header__sp_list > ul a {
  padding: 12px 18px;
  background-color: #effbfd;
  display: block;
  border-top: solid #00adba 1px;
  color: #00adba;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.l-header__sp_list > ul > li {
  position: relative;
  margin: 0 auto;
  width: 100%;
  font-weight: bold;
}
.l-header__sp_list > ul > li::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 12px;
  border: 5px solid transparent;
  border-left: 5px solid #00adba;
  transition: 0.2s;
}

.l-header__sp_list > ul > li > ul {
  position: inherit;
  padding: 0;
  top: 0;
  font-weight: 100;
}

.l-header__sp_list > ul > li > ul > li {
  position: relative;
}

.l-header__sp_list > ul > li > ul > li :after {
  content: "";
  position: absolute;
  top: 20px;
  right: 12px;
  border: 5px solid transparent;
  border-left: 5px solid #90cdd1;
  transition: 0.2s;
}

.l-header__sp_list > ul > li > ul > li > a {
  display: block;
  background-color: white;
  position: inherit;
  border-top: dashed #00adba 1px;
  padding-left: 30px;
}

.l-header__sp_cv_btn {
  text-align: center;
  width: 100%;
  height: 40vh;
}
@media screen and (max-width: 690px) {
  .l-header__sp_cv_btn {
    margin: 33px 0 80px;
  }
}

.l-header__sp_cv_btn img {
  width: 43%;
  margin: 22px 10px 80px;
}
@media screen and (max-width: 690px) {
  .l-header__sp_cv_btn img {
    width: 280px;
    margin: 0 0 5px;
  }
}

.l-header__nav_wrap {
  overflow-y: scroll;
  overscroll-behavior: contain;
}

.l-footer__pref_block {
  position: relative;
  width: 100%;
  padding: 24px 22px 20px;
  border: #00adba solid 1px;
  border-radius: 4px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-footer__pref_block {
    padding: 22px 30px 22px 12px;
  }
}

.l-footer__pref_block_ttl {
  position: absolute;
  padding: 6px 10px;
  color: #00adba;
  font-weight: bold;
  font-size: 17px;
  background-color: #ebf7f7;
  top: -22px;
  left: 12px;
}

.l-footer__pref_ttl {
  box-sizing: border-box;
  width: 115px;
  background-color: #8bba2f;
  text-align: center;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  padding: 3px 3px 4px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .l-footer__pref_ttl {
    margin-bottom: 7px;
  }
}

.l-footer__pref_ttl::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -12px;
  border: 5px solid transparent;
  border-left: 7px solid #4d4d4d;
  z-index: 1;
  transition: 0.2s;
}
@media screen and (max-width: 1100px) {
  .l-footer__pref_ttl::before {
    display: none;
  }
}

.l-footer__pref_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .l-footer__pref_box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.l-footer__pref_box:not(:last-child) {
  margin-bottom: 12px;
}

.l-footer__pref_box ul {
  display: flex;
  gap: 23px;
  padding-left: 20px;
  margin: 0;
}
@media screen and (max-width: 1100px) {
  .l-footer__pref_box ul {
    padding: 0;
    width: 100%;
    flex-wrap: wrap;
    gap: 7px 20px;
  }
}

.l-footer__pref_box li {
  position: relative;
}

.l-footer__pref_box a {
  position: relative;
  padding: 5px 10px;
  letter-spacing: initial;
  color: #4d4d4d;
  text-decoration: none;
  transition: 0.2s;
}

.l-footer__pref_box li:not(:last-child)::before {
  content: "/";
  position: absolute;
  top: 0;
  right: -13px;
  transition: 0.2s;
  pointer-events: none;
}

.l-footer__pref_box:nth-of-type(1) .l-footer__pref_ttl {
  background-color: #7ecdfc;
}
.l-footer__pref_box:nth-of-type(1) .l-footer__pref_ttl::before {
  border-left: 7px solid #61b8da;
}

.l-footer__pref_box:nth-of-type(1) a:hover {
  color: #7ecdfc;
}

.l-footer__pref_box:nth-of-type(2) .l-footer__pref_ttl {
  background-color: #ff8282;
}
.l-footer__pref_box:nth-of-type(2) .l-footer__pref_ttl::before {
  border-left: 7px solid #ff6666;
}

.l-footer__pref_box:nth-of-type(2) a:hover {
  color: #ff8282;
}

.l-footer__pref_box:nth-of-type(3) .l-footer__pref_ttl {
  background-color: #8bc53f;
}
.l-footer__pref_box:nth-of-type(3) .l-footer__pref_ttl::before {
  border-left: 7px solid #70b108;
}

.l-footer__pref_box:nth-of-type(3) a:hover {
  color: #8bc53f;
}

.l-footer__pref_box:nth-of-type(4) .l-footer__pref_ttl {
  background-color: #ffdc33;
}
.l-footer__pref_box:nth-of-type(4) .l-footer__pref_ttl::before {
  border-left: 7px solid #ffc833;
}

.l-footer__pref_box:nth-of-type(4) a:hover {
  color: #ffc833;
}

.l-footer__pref_box:nth-of-type(5) .l-footer__pref_ttl {
  background-color: #bd7ccd;
}
.l-footer__pref_box:nth-of-type(5) .l-footer__pref_ttl::before {
  border-left: 7px solid #c95ae4;
}

.l-footer__pref_box:nth-of-type(5) a:hover {
  color: #bd7ccd;
}

.l-footer__pref_box:nth-of-type(6) .l-footer__pref_ttl {
  background-color: #faaf3b;
}
.l-footer__pref_box:nth-of-type(6) .l-footer__pref_ttl::before {
  border-left: 7px solid #fb991a;
}

.l-footer__pref_box:nth-of-type(6) a:hover {
  color: #faaf3b;
}

.l-footer__block {
  padding-top: 55px;
  margin: 0 auto;
  width: 1000px;
  max-width: 92%;
}
@media screen and (max-width: 1100px) {
  .l-footer__block {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__block {
    padding-top: 35px;
  }
}

.l-footer__box {
  display: flex;
  width: 100%;
  padding: 30px 0 55px;
  line-height: 2.5;
  font-weight: bold;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .l-footer__box {
    padding: 20px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__box {
    padding: 18px 0 30px;
    flex-direction: column;
  }
}

.l-footer__box a {
  color: #00adba;
}

.l-footer__line {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .l-footer__line {
    width: 100%;
  }
}

.l-footer__link {
  position: relative;
  padding-left: 18px;
}

.l-footer__link a {
  text-decoration: none;
  transition: 0.1s;
}

.l-footer__link a:hover {
  opacity: 50%;
}

.l-footer__link.__m {
  font-weight: normal;
  line-height: 2;
  margin-left: 20px;
}

.l-footer__link.__m a:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #00adba;
  top: 13px;
  left: 0;
  position: absolute;
}

.l-footer__link.__m.__last {
  margin-bottom: 10px;
}

.l-footer__link.__l a:before {
  content: "";
  display: block;
  width: 5px;
  height: 17px;
  background: #00adba;
  top: 11px;
  left: 3px;
  position: absolute;
}

.l-footer__related {
  margin: 0 auto;
  font-size: 14px;
  color: #333;
  background-color: #d8ecf1;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.l-footer__related_ttl {
  position: relative;
  margin-right: 23px;
}

.l-footer__related_ttl::before {
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  width: 1px;
  height: 10px;
  margin: auto;
  content: "";
  background-color: #bbb;
}

.l-footer__related_list {
  padding: 0;
  margin: 0;
}

.l-footer__related_item a {
  padding: 0;
  color: #00adba;
  transition: 0.2s;
  letter-spacing: 0;
  font-size: 14px;
}

.l-footer__related_item a:hover {
  opacity: 0.7;
}

.copyright_block {
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding-top: 6px;
  padding-bottom: 8px;
  letter-spacing: 1px;
  background-color: #008ca3;
}

.l-fixed__footer {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-fixed__footer {
    position: fixed;
    bottom: 0;
    z-index: 100;
    display: flex;
    gap: 5px;
    padding: 5px 6px;
    width: 100%;
    height: auto;
    max-height: 70px;
    background-color: rgba(255, 255, 255, 0.5490196078);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .l-fixed__footer_form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 5px;
    width: 50%;
    background-color: #f1667a;
    border-radius: 4px;
  }
  .l-fixed__footer_tel {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 6px;
    width: 50%;
    background-color: #8bc53f;
    border-radius: 4px;
  }
  .l-fixed__footer_form img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
  .l-fixed__footer_tel img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
  .l-fixed__footer_active {
    opacity: 1;
    visibility: visible;
  }
}
.l-fixed__go_top_btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 100;
  width: 70px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .l-fixed__go_top_btn {
    right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .l-fixed__go_top_btn {
    bottom: 76px;
    right: 7px;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.15));
    width: 60px;
  }
}

.l-fixed__go_top_img {
  width: 100%;
  height: auto;
}

.l-fixed__go_top_active {
  opacity: 1;
  visibility: visible;
}

.l-fixed__float {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  margin: auto;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .l-fixed__float {
    display: none;
  }
}

.l-fixed__float_tel {
  cursor: pointer;
  transition: opacity 0.7s;
}
.l-fixed__float_tel:hover {
  opacity: 0.7;
}

.l-fixed__modal_tel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 999;
}
.l-fixed__modal_tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.l-fixed__modal_tel.__none {
  display: none;
}

.l-fixed__modal_tel.active {
  opacity: 1;
  visibility: visible;
}

.l-fixed__modal_tel_body {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 100%;
  vertical-align: middle;
}

.l-fixed__modal_tel_close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.l-fixed__modal_tel_content {
  padding: 30px;
  text-align: left;
  border-radius: 30px;
  background-color: #fff;
}

.l-fixed__modal_tel_content_img {
  width: 100%;
}

.l-fixed__modal_tel_content_img img {
  width: 100%;
}

/* ----------------------------------------------------- */
/* 　フォーム　CSS　　　　　　　　　              　　　　　　　　*/
/* ----------------------------------------------------- */
#form_box {
  padding: 20px;
  margin: 0 auto;
  width: 800px;
  max-width: 95%;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 4px 2px;
}
@media screen and (max-width: 768px) {
  #form_box {
    padding: 20px 17px;
  }
}

.assess_form_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.form_content {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1100px) {
  .form_content {
    justify-content: space-between;
    align-items: center;
  }
}

.form_row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 98%;
}
@media screen and (max-width: 768px) {
  .form_row {
    flex-direction: column;
  }
}

/* 　ご利用の愛車について 　____________________　*/
#car_area {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.car_area_tit {
  display: block;
  margin: 0 0 15px 0;
  padding: 6px 0 8px;
  background-color: rgba(0, 173, 186, 0.6);
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .car_area_tit {
    margin: -2px 0 15px 0;
    padding: 5px 0 8px;
  }
}

/* 　お客様について 　____________________　*/
#user_area {
  width: 100%;
  display: inline-block;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #user_area {
    display: none;
    margin: 0;
  }
}

/* 　入力フォーム 　____________________　*/
.form_area {
  position: relative;
  width: 65%;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .form_area {
    width: 100%;
  }
}

.form_area::before {
  position: absolute;
  top: 0;
  right: 9px;
  bottom: 0;
  margin: auto;
  width: 9px;
  height: 7px;
  content: "";
  background-color: #afafaf;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.form_area.no-image::before {
  display: none;
}

#form_box li input[name=name], #form_box li input[name=phone_number] {
  cursor: text;
}

#form_box input:not([class=submit_btn]),
#form_box select {
  width: 100%;
  height: 44px;
  padding: 6px;
  border: 1px solid #999999;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 16px;
  appearance: none;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
}

#form_box li input[name=as_maker],
#form_box li input[name=name],
#form_box li input[name=phone_number] {
  background-color: #ffffc9;
}

/* 　入力項目タイトル 　____________________　*/
.form_title {
  display: flex;
  gap: 8px;
  align-items: baseline;
  vertical-align: middle;
  width: 40%;
  text-align: left;
  font-weight: bold;
  font-size: 17px;
  color: #333;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .form_title {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .form_title label {
    display: inline-block;
    vertical-align: sub;
  }
}

.form_title label[for=as_maker] span {
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .form_label.--block_pc {
    display: inline-block;
  }
}

/* 　必須・任意項目のspan 　____________________　*/
.req_on,
.req_off {
  padding: 1px 4%;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .req_on,
  .req_off {
    padding: 1px 2%;
  }
}

.req_on {
  background: #DF2B55;
}

.req_off {
  background: #14afa8;
}

/* 　点滅　アニメーション 　____________________　*/
@keyframes borderFlashing {
  0% {
    box-shadow: 0 0 0 0 #DF2B55, 0 0 0 0 #fff, 0 0 0 1px #DF2B55;
  }
  100% {
    box-shadow: 0 0 0 0 #DF2B55, 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 5px rgba(100, 164, 134, 0);
  }
}
#form_box input:not([class=submit_btn]).target_item {
  border: 3px solid #DF2B55;
  animation-name: borderFlashing;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

/* 　送信項目のエラーメッセージ 　____________________　*/
.err_msg {
  margin-top: 5px;
  text-align: left;
  line-height: 1;
  color: #DF2B55;
}
@media screen and (max-width: 768px) {
  .err_msg {
    line-height: 1.5;
  }
}

/* 　送信ボタン後のloading画像 　____________________　*/
#loading_img {
  display: none; /* 編集しないで下さい */
  width: 10%;
  margin: 15px 45%;
  /* サイズや位置は追記して変更してください。*/
}
@media screen and (max-width: 414px) {
  #loading_img {
    width: 15%;
    margin: 15px 43%;
  }
}

/* 　送信ボタン 　____________________　*/
.submit_btn_box {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .submit_btn_box {
    display: none;
  }
}

.submit_btn {
  position: relative;
  display: block;
  width: 425px;
  max-width: 98%;
  margin: 0 auto;
  padding: 17px 0;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #e64770;
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px #9f1040;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .submit_btn {
    width: 95%;
    padding: 13px 0;
    margin: 18px auto;
    font-size: 23px;
  }
}
.submit_btn:hover {
  opacity: 0.7;
}

.submit_btn::before, #next_btn::before {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 15px;
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 768px) {
  .submit_btn::before, #next_btn::before {
    right: 12px;
    width: 7px;
    height: 10px;
  }
}

/* 　SP次へボタン 　____________________　*/
#next_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  #next_btn {
    position: relative;
    display: block;
    width: 95%;
    margin: 18px auto;
    padding: 10px 0;
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    color: #fff;
    background-color: #e64770;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px #9f1040;
  }
}

@media screen and (max-width: 768px) {
  #next_btn.disable {
    color: #ffffff;
    background: #cbcbcb;
    box-shadow: 0 5px #a3a3a3;
  }
}

/* 　利用規約　プライバシーポリシー 　____________________　*/
.form-agreement {
  margin: 5px 0 15px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .form-agreement {
    margin: 10px 0 0 0;
  }
}

.form-agreement a {
  color: #29aae1;
}

/* 　SSL 　____________________　*/
.ssl {
  width: 100%;
  margin: 1em auto 0;
}

.ssl_tit {
  font-size: 12px;
  text-align: left;
}
.ssl_tit::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("/img/form/ssl_icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 4px;
}

.ssl_p {
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
}

/* ----------------------------------------------------- */
/* 　モーダル　CSS　　　　　　　　　              　　　　　　　　*/
/* ----------------------------------------------------- */
#layer {
  display: none; /* 編集しないで下さい */
  position: fixed; /* 編集しないで下さい */
  width: 100%; /* 編集しないで下さい */
  height: 100%; /* 編集しないで下さい */
  top: 0; /* 編集しないで下さい */
  left: 0; /* 編集しないで下さい */
  z-index: 990; /* 編集しないで下さい */
  background-color: #fff;
  opacity: 0.8;
}

#layer_carbox {
  position: fixed; /* 編集しないで下さい */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 991; /* 編集しないで下さい */
  display: none; /* 編集しないで下さい */
  width: 100%;
  max-width: 890px;
  margin: 5% auto 4%;
  padding: 1% 1.5%;
  background-color: #fff;
  font-size: 1.3em;
  font-weight: 600;
  overflow-y: scroll;
  box-sizing: border-box;
  border: 1px solid #bfbfbf;
}
@media screen and (max-width: 1200px) {
  #layer_carbox {
    max-width: 769px;
  }
}
@media screen and (max-width: 768px) {
  #layer_carbox {
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 1em;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

/* 　閉じるボタン 　____________________　*/
#close-btn {
  text-align: right;
  font-size: 1.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #close-btn {
    padding: 10px 15px 0 0;
  }
}

#dummyBox {
  position: absolute;
  left: 0;
  opacity: 0;
}

/* 　タブ 　____________________　*/
#tab_list {
  display: table;
  padding-left: 0;
  margin-top: 12px;
  margin-bottom: 0;
  width: 100%;
}

#tab_list li {
  display: table-cell;
  padding: 0 0 4px 0;
  float: left;
  position: relative;
  width: 25%;
  font-size: 17px;
  color: #666;
  font-weight: bold;
  background: #efefef;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1.7em;
}

#tab_list li .tab_list_step {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 2;
  color: #afafaf;
  background: #e8e8e8;
}

#tab_list li.tab_active {
  background: #00a1b7;
}

#tab_list li.tab_active .tab_list_head {
  color: #00a1b7;
  background: #fff;
  padding: 0 16px 3px;
  border-radius: 20px;
}

#tab_list li.tab_active .tab_list_step {
  color: #fff;
  background: #0095a9;
}

#tab_list li.disable {
  color: #999;
}

@media screen and (max-width: 768px) {
  #tab_list li {
    font-size: 15px;
  }
  #tab_list li.tab_active .tab_list_head {
    padding: 0 10px;
  }
}
/* 　タブ　コンテンツ 　____________________　*/
.tab_box {
  display: none; /* 編集しないで下さい */
  text-align: center;
}

.tab_txt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  font-size: 16px;
  color: #333;
  text-align: left;
  background-color: #dbf3f5;
  border-top: solid #00a1b7 2px;
}

.tab_required, .tab_any {
  padding: 0 10px 3px;
  font-size: 12px;
  color: #fff;
  background-color: #e56281;
  border-radius: 20px;
  letter-spacing: 1.5px;
}

.tab_any {
  background-color: #00a1b7;
}

.tab_box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 10px;
  box-sizing: border-box;
}

.tab_box li {
  cursor: pointer; /* 編集しないで下さい */
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% - 30px) / 4);
  text-align: left;
  font-size: 15px;
  color: #333;
  box-sizing: border-box;
  padding: 10px 18px 10px 10px;
  border: solid #e5e5e5 1px;
  border-radius: 2px;
}
.tab_box li:hover {
  text-decoration: none;
  background: #efefef;
}
.tab_box li::before {
  position: absolute;
  top: 0;
  right: 9px;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 2px solid #00a1b7;
  border-right: 2px solid #00a1b7;
  transform: rotate(45deg);
}

.tab_production {
  position: relative;
  padding: 0 25px;
  margin-top: 15px;
  text-align: left;
  font-size: 16px;
  color: #00a1b7;
}
.tab_production::before {
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 96%;
  content: "";
  background-color: #00a1b7;
}

.maker_list img {
  margin-right: 12px;
  width: 32px;
  height: auto;
}

.tab_box #model_year_list li {
  width: calc((100% - 10px) / 2);
}

@media screen and (max-width: 768px) {
  .tab_box ul {
    flex-direction: column;
  }
  .tab_box li {
    width: 100%;
    padding: 12px 16px 12px 10px;
  }
  .tab_box #model_year_list li {
    width: 100%;
  }
  .tab_box.two ul {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .tab_box.two li {
    width: calc((100% - 10px) / 2);
  }
}
.c-title__headline_1 {
  font-size: 25px;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  letter-spacing: 2.5px;
  background-image: url("/img/component/title/header_1_pc.jpg");
  background-size: cover;
  background-position: center;
  margin: 0;
}
@media screen and (max-width: 990px) {
  .c-title__headline_1 {
    background-image: url("/img/component/title/header_1_tab.jpg");
  }
}
@media screen and (max-width: 550px) {
  .c-title__headline_1 {
    padding: 22px 15px;
    font-size: 22px;
    background-image: url("/img/component/title/header_1_sp.jpg");
  }
}

.c-title__headline_2 {
  position: relative;
  padding: 8px 10px 14px 22px;
  margin: 0;
  text-align: left;
  letter-spacing: 1.6px;
  font-size: 21px;
  color: #333;
  border-bottom: 2px #00adba solid;
}
.c-title__headline_2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 92%;
  content: "";
  background-color: #00adba;
}
@media screen and (max-width: 550px) {
  .c-title__headline_2 {
    letter-spacing: 1px;
    font-size: 18px;
  }
}

.c-title__headline_3 {
  font-size: 19px;
  color: #333;
  border-bottom: solid 4px #c2ebee;
  padding: 7px;
  position: relative;
  text-align: left;
  letter-spacing: 1px;
  width: 100%;
}
@media screen and (max-width: 550px) {
  .c-title__headline_3 {
    font-size: 18px;
  }
}
.c-title__headline_3::before {
  content: "";
  border-bottom: 4px solid #00adba;
  bottom: -4px;
  left: 0;
  position: absolute;
  width: 8%;
  z-index: 1;
}
@media screen and (max-width: 550px) {
  .c-title__headline_3::before {
    width: 22%;
  }
}

.c-title__headline_4 {
  font-size: 17px;
  color: #333;
  padding: 7px 7px 7px 23px;
  position: relative;
  text-align: left;
}
.c-title__headline_4::before {
  content: "";
  border-width: 0 0 10px 10px;
  border-bottom-color: #00adba;
  border-left-color: #08858c;
  border-style: solid;
  top: 18px;
  left: 5px;
  position: absolute;
  width: 0;
  height: 0;
}

.c-conversion_btn {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .c-conversion_btn.--pc {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .c-conversion_btn.--sp {
    display: none;
  }
}

.c-conversion_btn__img_sp {
  width: 450px;
  height: auto;
}
@media screen and (max-width: 500px) {
  .c-conversion_btn__img_sp {
    width: 324px;
  }
}

.c-conversion_btn__link {
  position: absolute;
  top: 148px;
  left: 354px;
  width: 280px;
}
@media screen and (max-width: 1200px) {
  .c-conversion_btn__link {
    width: 375px;
  }
}
@media screen and (max-width: 500px) {
  .c-conversion_btn__link {
    width: 274px;
  }
}

.c-conversion_btn__a {
  transition: 0.2s;
}
.c-conversion_btn__a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1200px) {
  .c-conversion_btn__tel {
    top: 259px;
    left: 39px;
  }
}
@media screen and (max-width: 500px) {
  .c-conversion_btn__tel {
    top: 188px;
    left: 26px;
  }
}

@media screen and (max-width: 1200px) {
  .c-conversion_btn__free {
    top: 423px;
    left: 38px;
  }
}
@media screen and (max-width: 500px) {
  .c-conversion_btn__free {
    top: 306px;
    left: 26px;
  }
}

.c-conversion_btn__link_img {
  width: 100%;
  height: auto;
}

.c-area_map {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.c-area_map__wrap {
  background-color: #75d2d9;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.9px;
  position: relative;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .c-area_map__wrap {
    display: none;
  }
}

.c-area_map__wrap:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 17px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #4ac4cd;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(130deg);
}

.c-area_map__comment {
  line-height: 1.3;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  width: 200px;
  margin: 0 auto;
}

.c-area_map__comment_bold {
  font-size: 25px;
  letter-spacing: 3px;
  font-weight: bold;
  margin-left: 10px;
  margin-top: 5px;
}

.c-area_map__figure {
  font-size: 40px;
  color: #f3ff83;
  font-weight: bold;
  margin-right: 5px;
}

.c-area_map__ttl {
  color: #fff;
  text-align: center;
  padding: 9px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 2.5px;
}

.c-area_map__ttl::before {
  content: "";
  position: absolute;
  top: 43px;
  right: 50%;
  border: 6px solid transparent;
  border-top: 7px solid #00adba;
}

.c-area_map__block {
  position: relative;
  display: flex;
  height: 845px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 200px 100px;
  background-size: 60%;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: normal !important;
  width: 1140px;
  max-width: 100%;
}
@media screen and (max-width: 1200px) {
  .c-area_map__block {
    height: auto;
    background-image: none;
  }
}

.is-webp .c-area_map__block {
  background-image: url(../../img/component/area_map/map_jp.webp);
}

.is-no-webp .c-area_map__block {
  background-image: url(../../img/component/area_map/map_jp.png);
}

@media screen and (max-width: 1200px) {
  .is-webp .c-area_map__block, .is-no-webp .c-area_map__block {
    background-image: none;
  }
}
.c-area_map__box {
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .c-area_map__box {
    position: initial;
  }
}

.c-area_map__group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 13px 0;
  padding: 16px 18px;
}

.c-area_map__group li {
  display: flex;
  background-color: #fff;
  width: 95px;
}
@media screen and (max-width: 500px) {
  .c-area_map__group li {
    width: calc((100% - 20px) / 3);
  }
}

.c-area_map__group a {
  position: relative;
  padding: 7px 24px 8px 15px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #4d4d4d;
  transition: 0.2s;
}

.c-area_map__group a:hover {
  background-color: transparent;
}

.c-area_map__group a::before {
  position: absolute;
  top: 14px;
  right: 3px;
  content: "";
  border: 6px solid transparent;
  border-left: 7px solid #c9c9c9;
  z-index: 1;
  transition: 0.2s;
}

.c-area_map__tohoku {
  width: 236px;
  bottom: 250px;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .c-area_map__tohoku {
    width: 100%;
  }
}

.c-area_map__ttl_1 {
  background-color: #7ecdfc;
}
@media screen and (max-width: 1200px) {
  .c-area_map__ttl_1 {
    position: relative;
  }
}

.c-area_map__ttl_1::before {
  border-top: 7px solid #61b8da;
}

.c-area_map__tohoku ul {
  background-color: #def2fe;
}

.c-area_map__tohoku a:hover {
  color: #7ecdfc;
}

.c-area_map__tohoku a:hover::before {
  border-left: 7px solid #7ecdfc;
}

.c-area_map__kanto {
  width: 341px;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .c-area_map__kanto {
    width: 100%;
  }
}

.c-area_map__ttl_2 {
  background-color: #ff8282;
}
@media screen and (max-width: 1200px) {
  .c-area_map__ttl_2 {
    position: relative;
  }
}

.c-area_map__ttl_2::before {
  border-top: 7px solid #ff6666;
}

.c-area_map__kanto ul {
  background-color: #ffe8e8;
}

.c-area_map__kanto a:hover {
  color: #ff8282;
}

.c-area_map__kanto a:hover::before {
  border-left: 7px solid #ff8282;
}

.c-area_map__chubu {
  width: 236px;
  top: 0;
  left: 368px;
}
@media screen and (max-width: 1200px) {
  .c-area_map__chubu {
    width: 100%;
  }
}

.c-area_map__ttl_3 {
  background-color: #8bc53f;
}
@media screen and (max-width: 1200px) {
  .c-area_map__ttl_3 {
    position: relative;
  }
}

.c-area_map__ttl_3::before {
  border-top: 7px solid #70b108;
}

.c-area_map__chubu ul {
  background-color: #e9f4db;
}

.c-area_map__chubu a:hover {
  color: #8bc53f;
}

.c-area_map__chubu a:hover::before {
  border-left: 7px solid #8bc53f;
}

.c-area_map__kansai {
  width: 341px;
  bottom: 0;
  right: 364px;
}
@media screen and (max-width: 1200px) {
  .c-area_map__kansai {
    width: 100%;
  }
}

.c-area_map__ttl_4 {
  background-color: #ffdc33;
}
@media screen and (max-width: 1200px) {
  .c-area_map__ttl_4 {
    position: relative;
  }
}

.c-area_map__ttl_4::before {
  border-top: 7px solid #ffc833;
}

.c-area_map__kansai ul {
  background-color: #fff8d6;
}

.c-area_map__kansai a:hover {
  color: #ffc833;
}

.c-area_map__kansai a:hover::before {
  border-left: 7px solid #ffc833;
}

.c-area_map__chugoku {
  width: 341px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .c-area_map__chugoku {
    width: 100%;
  }
}

.c-area_map__ttl_5 {
  background-color: #bd7ccd;
}
@media screen and (max-width: 1200px) {
  .c-area_map__ttl_5 {
    position: relative;
  }
}

.c-area_map__ttl_5::before {
  border-top: 7px solid #c95ae4;
}

.c-area_map__chugoku ul {
  background-color: #f5ebf8;
}

.c-area_map__chugoku a:hover {
  color: #bd7ccd;
}

.c-area_map__chugoku a:hover::before {
  border-left: 7px solid #bd7ccd;
}

.c-area_map__kyusyu {
  width: 341px;
  top: 250px;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .c-area_map__kyusyu {
    width: 100%;
  }
}

.c-area_map__ttl_6 {
  background-color: #faaf3b;
}
@media screen and (max-width: 1200px) {
  .c-area_map__ttl_6 {
    position: relative;
  }
}

.c-area_map__ttl_6::before {
  border-top: 7px solid #fb991a;
}

.c-area_map__kyusyu ul {
  background-color: #feefd8;
}

.c-area_map__kyusyu a:hover {
  color: #faaf3b;
}

.c-area_map__kyusyu a:hover::before {
  border-left: 7px solid #faaf3b;
}

.c-faq_paper__block {
  display: flex;
  gap: 22px 35px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .c-faq_paper__block {
    flex-direction: column;
  }
}

.c-faq_paper__box {
  position: relative;
  padding: 34px 48px 38px 54px;
  width: calc((100% - 35px) / 2);
  background: linear-gradient(315deg, transparent 20px, #fff 20px);
}
@media screen and (max-width: 900px) {
  .c-faq_paper__box {
    padding: 27px 29px 29px 46px;
    margin: auto;
    width: 98%;
  }
}

.c-faq_paper__q, .c-faq_paper__a {
  display: flex;
  position: relative;
  letter-spacing: 0.7px;
  line-height: 1.7;
}

.c-faq_paper__q {
  margin-bottom: 12px;
  font-weight: bold;
  color: #00adba;
  font-size: 17px;
  line-height: 1.6;
}

.c-faq_paper__block img {
  position: absolute;
  left: -64px;
  width: 35px;
  height: auto;
}
@media screen and (max-width: 900px) {
  .c-faq_paper__block img {
    left: -55px;
  }
}

.c-faq_paper__q img {
  top: -5px;
}

.p-top__sub_txt {
  text-align: center;
  width: 95%;
  margin: 0 auto;
}

.p-top__sub_txt.__white {
  color: #fff;
}

.p-top__main_ttl {
  padding: 17px 28px;
  margin: 0 auto;
  width: fit-content;
  font-size: 25px;
  color: #333;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 3px;
  border-bottom: #00adba solid 2px;
}
@media screen and (max-width: 768px) {
  .p-top__main_ttl {
    font-size: 21px;
    padding: 13px 16px;
  }
}

.p-top__main_ttl.__white {
  border-color: #fff;
  color: #fff;
}

.p-top__link_btn {
  margin: 0 auto;
}

.p-top__link_btn_a {
  background-color: #fff;
  border: 3.5px solid #00adba;
  border-radius: 50px;
  margin: 0 auto;
  width: fit-content;
  padding: 6px 58px 12px 45px;
  font-size: 17px;
  position: relative;
  color: #00adba;
  font-weight: bold;
  transition: 0.2s;
  display: block;
}
.p-top__link_btn_a:hover {
  background-color: #00adba;
  color: #fff;
}
.p-top__link_btn_a:hover::after {
  border-left: 7px solid #fff;
}
.p-top__link_btn_a::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 22px;
  border: 6px solid transparent;
  border-left: 7px solid #00adba;
  transition: 0.2s;
}

.p-top__link_btn_a.__white {
  border: 3.5px solid #fff;
}
.p-top__link_btn_a.__white:hover {
  border: 3.5px solid #fff;
}

.p-top__mv {
  width: 100%;
  height: 730px;
  margin-top: 140px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1200px) {
  .p-top__mv {
    height: auto;
  }
}
@media screen and (max-width: 990px) {
  .p-top__mv {
    margin-top: 82px;
  }
}
@media screen and (max-width: 768px) {
  .p-top__mv {
    background-size: contain;
    background-color: #00a2b5;
    height: auto;
    margin-bottom: 0;
    margin-top: 82px;
  }
}
@media screen and (max-width: 678px) {
  .p-top__mv {
    margin-top: 66px;
  }
}

.is-webp .p-top__mv {
  background-image: url(../../img/page/top/top_pc_bg.webp);
}
@media screen and (max-width: 1200px) {
  .is-webp .p-top__mv {
    background-image: url(../../img/page/top/top_sp_bg.webp);
  }
}

.is-no-webp .p-top__mv {
  background-image: url(../../img/page/top/top_pc_bg.jpg);
}
@media screen and (max-width: 1200px) {
  .is-no-webp .p-top__mv {
    background-image: url(../../img/page/top/top_sp_bg.jpg);
  }
}

@media screen and (max-width: 768px) {
  .p-top__mv img {
    max-width: 554px;
  }
}

.p-top__mv_inner {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
}
@media screen and (max-width: 1200px) {
  .p-top__mv_inner {
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-top__mv_inner {
    padding-top: 14px;
  }
}

.p-top__mv_content {
  width: 100%;
}

@media (min-width: 1201px) {
  .p-top__mv_content.__right {
    width: 45%;
    position: relative;
  }
}
@media (max-width: 1200px) {
  .p-top__mv_content.__right {
    padding-bottom: 52px;
  }
}
@media (max-width: 768px) {
  .p-top__mv_content.__right {
    padding-bottom: 16px;
  }
}

@media (min-width: 1201px) {
  .p-top__mv_content.__left {
    width: 55%;
    margin-top: -23px;
    margin-left: 33px;
  }
}
@media (max-width: 1200px) {
  .p-top__mv_content.__left {
    margin-bottom: 16px;
  }
}

.c-mv__img {
  display: block;
  width: 95%;
  height: auto;
}
@media (max-width: 1200px) {
  .c-mv__img {
    width: 50%;
    min-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .c-mv__img {
    width: 95%;
    box-sizing: border-box;
    min-width: 0;
  }
}

.p-top__achievement_block {
  justify-content: center;
}
@media screen and (max-width: 1500px) {
  .p-top__achievement_block {
    display: block;
    overflow: hidden;
  }
}

.p-top__achievement_box {
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  padding: 15px;
}
@media screen and (max-width: 1500px) {
  .p-top__achievement_box {
    margin: 0 0 37px 0;
  }
}

.p-top__achievement_img {
  width: 100%;
}

.p-top__achievement_img img {
  width: 100%;
  height: auto;
}

.p-top__achievement_ttl {
  text-align: center;
  font-size: 16px;
  border-bottom: solid 1px #e7e7e7;
  padding: 6px 0 8px 0;
  color: #5d5d5d;
  letter-spacing: 1.6px;
}

.p-top__achievement_txt {
  text-align: center;
  margin: 10px 0 6px 0;
  font-size: 15px;
}

.p-top__achievement_price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}

.p-top__achievement_price_ttl {
  width: 65px;
  color: #00adb8;
  background-color: #e0f8f9;
  text-align: center;
  line-height: 1.1;
  padding: 4px 3px;
  border-radius: 4px;
}

.p-top__achievement_price_figure {
  letter-spacing: -0.8px;
  font-size: 29px;
  font-weight: bold;
  color: #00adba;
}

.p-top__achievement_price_yen {
  font-size: 17px;
  margin-left: 3px;
}

.p-top__reason_block {
  position: relative;
  z-index: 1;
}

.p-top__reason_box_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 35px;
  max-width: 100%;
}

.p-top__reason_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 308px;
}
@media screen and (max-width: 550px) {
  .p-top__reason_box {
    width: 93%;
  }
}

.p-top__reason_box img {
  position: relative;
  top: 15px;
  width: 245px;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 550px) {
  .p-top__reason_box img {
    width: 270px;
  }
}

.p-top__reason_ttl {
  position: relative;
  padding: 12px;
  margin: 0;
  text-align: center;
  letter-spacing: 0.5px;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  background-color: #00adb8;
  border-radius: 5px;
}
.p-top__reason_ttl::before {
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  margin: auto;
  width: 15px;
  height: 10px;
  content: "";
  background-color: #00adb8;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}

.p-top__reason_ttl_big {
  display: inline-block;
  letter-spacing: 0.8px;
  font-size: 18px;
  font-weight: bold;
  color: #f3ff83;
}

.p-top__reason_box p {
  margin: 14px auto 0;
  font-size: 15px;
  color: #333;
  width: 95%;
  line-height: 1.5;
}

.p-top__reason_bg {
  position: relative;
  background-color: #fff;
}
.p-top__reason_bg::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .p-top__reason_bg::after {
    width: 75%;
    opacity: 0.3;
  }
}

.is-webp .p-top__reason_bg::after {
  background-image: url(/img/page/top/flow_bg_pc.webp);
}

.is-no-webp .p-top__reason_bg::after {
  background-image: url(/img/page/top/flow_bg_pc.jpg);
}

.p-top__reason_strong {
  display: inline-block;
  margin: 0 5px 5px;
  font-size: 17px;
  font-weight: bold;
  color: #00adb8;
  line-height: 2;
  background: linear-gradient(transparent 10%, #e0f8f9 0);
}

.p-top__flow_block {
  display: flex;
  gap: 30px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  .p-top__flow_block {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 15px 10px;
  }
}

.p-top__flow_block_wrap {
  display: flex;
  flex-direction: column;
  width: 285px;
  height: auto;
}
@media screen and (max-width: 769px) {
  .p-top__flow_block_wrap {
    width: calc((100% - 10px) / 2);
  }
}

.p-top__flow_step {
  position: relative;
  display: block;
  width: 110px;
  height: auto;
}
@media screen and (max-width: 769px) {
  .p-top__flow_step {
    width: 95px;
  }
}

.p-top__flow_box {
  padding: 15px;
  height: 100%;
  background-color: #fff;
}

.p-top__flow_box img {
  width: 100%;
  height: auto;
}

.p-top__flow_box h3 {
  padding: 10px;
  margin: 0;
  font-size: 18px;
  text-align: center;
  color: #00adb8;
  border-bottom: solid 1px #00adb8;
}

.p-top__flow_box p {
  margin: 7px 0 2px;
  font-size: 15px;
  line-height: 1.5;
}

.p-top__flow_block_wrap:not(:last-child) {
  position: relative;
}
.p-top__flow_block_wrap:not(:last-child)::before {
  position: absolute;
  top: 10px;
  right: -20px;
  width: 168px;
  height: 12px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 769px) {
  .p-top__flow_block_wrap:not(:last-child)::before {
    right: 0;
    width: 140px;
    height: 13px;
  }
}

.is-webp .p-top__flow_block_wrap:not(:last-child)::before {
  background-image: url(/img/page/top/flow_arrow.webp);
}

.is-no-webp .p-top__flow_block_wrap:not(:last-child)::before {
  background-image: url(/img/page/top/flow_arrow.png);
}

.p-top__flow_strong {
  font-weight: bold;
  color: #00adb8;
  background: linear-gradient(transparent 10%, #ffff7d 0);
}

.p-top__flow_link {
  color: #00adb8;
  text-decoration: underline;
}

.p-top__voice_ex_txt {
  text-align: center;
  color: #fff;
}

.p-top__voice_strong {
  font-weight: bold;
  color: #00adb8;
  background: linear-gradient(transparent 10%, #ffff7d 0);
}

.p-top__voice_block {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 1500px) {
  .p-top__voice_block {
    display: block;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
  }
}

.p-top__voice_info {
  display: flex;
  align-items: flex-start;
}

.p-top__voice_info img {
  width: 85px;
}

.p-top__voice {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: auto;
}
@media screen and (max-width: 768px) {
  .p-top__voice {
    background-size: cover;
  }
}

.is-webp .p-top__voice {
  background-image: url(../../img/page/top/comment_bg_pc.webp);
}
@media screen and (max-width: 1200px) {
  .is-webp .p-top__voice {
    background-image: url(../../img/page/top/comment_bg_tab.webp);
  }
}
@media screen and (max-width: 768px) {
  .is-webp .p-top__voice {
    background-image: url(../../img/page/top/comment_bg_sp.webp);
  }
}

.is-no-webp .p-top__voice {
  background-image: url(../../img/page/top/comment_bg_pc.png);
}
@media screen and (max-width: 1200px) {
  .is-no-webp .p-top__voice {
    background-image: url(../../img/page/top/comment_bg_tab.png);
  }
}
@media screen and (max-width: 768px) {
  .is-no-webp .p-top__voice {
    background-image: url(../../img/page/top/comment_bg_sp.png);
  }
}

.p-top__voice_box {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 25px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1500px) {
  .p-top__voice_box {
    padding: 18px 12px 27px;
  }
}

.p-top__voice_info_txt {
  padding: 8px 0 0 16px;
}

.p-top__voice_opinion {
  padding: 17px 15px 0 15px;
  line-height: 1.6;
  font-size: 15px;
  color: #333;
}

.p-top__voice_age {
  font-weight: bold;
  font-size: 16px;
  color: #00adba;
}

.p-top__voice_day {
  font-size: 14px;
  color: #7e7e7e;
  margin-top: 10px;
}

.p-top__column_block {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .p-top__column_block {
    flex-direction: column;
    align-items: center;
  }
}

.p-top__column_box {
  position: relative;
  width: 270px;
  background-color: #fff;
  box-shadow: 0 3px 11px -3px #aeb5b9;
  transition: 0.2s;
}
.p-top__column_box:hover {
  box-shadow: 0 3px 16px 0 #9bb2bd;
}
@media screen and (max-width: 1200px) {
  .p-top__column_box {
    width: 75%;
    display: flex;
    min-width: 324px;
  }
}
@media screen and (max-width: 670px) {
  .p-top__column_box {
    width: 95%;
  }
}

.p-top__column_img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .p-top__column_img {
    width: 188px;
  }
}
@media screen and (max-width: 550px) {
  .p-top__column_img {
    width: 135px;
    height: 160px;
    object-fit: cover;
  }
}

.p-top__column_item {
  padding: 10px 20px 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  box-sizing: border-box;
  color: #333;
}
@media screen and (max-width: 1200px) {
  .p-top__column_item {
    width: 100%;
    height: auto;
    padding: 16px 25px 20px;
  }
}
@media screen and (max-width: 500px) {
  .p-top__column_item {
    padding: 13px 14px 15px;
    font-size: 15px;
  }
}

.p-top__column_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.2s;
}
.p-top__column_link:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

.p-top__column_category {
  color: #fff;
  background-color: #63c1c7;
  width: fit-content;
  padding: 1px 10px 3px 16px;
  font-size: 13px;
  margin-bottom: 9px;
  margin-left: 4px;
  margin-top: 1px;
  position: relative;
}
.p-top__column_category::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  left: -11px;
  border-style: solid;
  border-width: 12px 11px 12px 0;
  border-color: transparent #63c1c7 transparent transparent;
}
.p-top__column_category::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 9px;
  left: -1px;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 500px) {
  .p-top__column_category {
    margin-bottom: 6px;
  }
}

.p-top__area_map {
  margin: auto;
  max-width: 93%;
}

.p-top__achievement_slider, .p-top__voice_slider {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 1501px) {
  .p-top__achievement_slider .swiper-wrapper {
    justify-content: center;
    gap: 25px;
  }
}

.p-top__voice_slider {
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  .p-top__voice_slider {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1501px) {
  .p-top__voice_slider .swiper-wrapper {
    justify-content: center;
    gap: 20px;
  }
}

.p-top__achievement_slider .swiper-slide {
  width: 250px !important;
}
@media screen and (max-width: 1500px) {
  .p-top__achievement_slider .swiper-slide {
    min-width: 280px;
  }
}

.p-top__voice_slider .swiper-slide {
  width: 352px !important;
  height: 100% !important;
}
@media screen and (max-width: 1500px) {
  .p-top__voice_slider .swiper-slide {
    width: 280px !important;
    min-width: 280px;
    height: auto !important;
  }
}

.swiper-button-next:after, .swiper-button-prev:after {
  content: "" !important;
}

.p-top__achievement_slider .swiper-button-prev {
  left: 10px;
  right: auto;
  transform: rotate(180deg);
}

.p-top__achievement_slider .swiper-button-next {
  right: 10px;
  left: auto;
}

.is-webp .p-top__achievement_slider .swiper-button-prev,
.is-webp .p-top__achievement_slider .swiper-button-next {
  background-image: url(../../img/page/top/arrow_blue.webp);
}

.is-no-webp .p-top__achievement_slider .swiper-button-prev,
.is-no-webp .p-top__achievement_slider .swiper-button-next {
  background-image: url(../../img/page/top/arrow_blue.png);
}

.p-top__voice_slider .swiper-button-prev {
  left: 10px;
  right: auto;
  transform: rotate(180deg);
}

.p-top__voice_slider .swiper-button-next {
  right: 10px;
  left: auto;
}

.is-webp .p-top__voice_slider .swiper-button-prev,
.is-webp .p-top__voice_slider .swiper-button-next {
  background-image: url(../../img/page/top/arrow_light_blue.webp);
}

.is-no-webp .p-top__voice_slider .swiper-button-prev,
.is-no-webp .p-top__voice_slider .swiper-button-next {
  background-image: url(../../img/page/top/arrow_light_blue.png);
}

.swiper-button-prev,
.swiper-button-next {
  width: 33px !important;
  height: 34px !important;
}

.p-top__achievement_slider .swiper-pagination {
  bottom: -5px !important;
}

.p-top__voice_slider .swiper-pagination {
  bottom: -35px !important;
}

.p-top__achievement_slider .swiper-pagination-bullet-active {
  background-color: #00adba !important;
}

.p-top__voice_slider .swiper-pagination-bullet-active {
  background-color: #fff !important;
}

@media screen and (min-width: 1501px) {
  .swiper-pagination {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}
@media screen and (min-width: 500px) {
  .u-none--pc {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .u-none--sp {
    display: none !important;
  }
}

.bg_blue_1, .u-bg_color--blue_1 {
  background-color: #dbf3f5;
}

.bg_blue_2, .u-bg_color--blue_2 {
  background-color: #4dc5ce;
}

.bg_blue_3, .u-bg_color--blue_3 {
  background-color: #00adba;
}

.bg_blue_4, .u-bg_color--blue_4 {
  background-color: #ebf7f7;
}

.bg_blue_5, .u-bg_color--blue_5 {
  background-color: #def4f6;
}

.u-bg_color--gray_1 {
  background-color: #f4f4f4;
}

.bg_white, .u-bg_color--white {
  background-color: #fff;
}

.br_txt, .u-text--inline_b {
  display: inline-block;
}

.br_txt_strong {
  display: inline-block !important;
}

.mt_5 {
  margin-top: 5px !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mt_15 {
  margin-top: 15px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mt_25 {
  margin-top: 25px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mb_5 {
  margin-bottom: 5px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.mb_15 {
  margin-bottom: 15px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.mb_25 {
  margin-bottom: 25px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.mb_35 {
  margin-bottom: 35px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.mb_45 {
  margin-bottom: 45px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.mb_55 {
  margin-bottom: 55px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.mb_65 {
  margin-bottom: 65px !important;
}

.mb_70 {
  margin-bottom: 70px !important;
}

@media screen and (max-width: 1200px) {
  .mb_0__tab {
    margin-bottom: 0 !important;
  }
  .mb_15__tab {
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 500px) {
  .mt_5__sp {
    margin-top: 5px !important;
  }
  .mt_10__sp {
    margin-top: 10px !important;
  }
  .mt_15__sp {
    margin-top: 15px !important;
  }
  .mt_20__sp {
    margin-top: 20px !important;
  }
  .mt_25__sp {
    margin-top: 25px !important;
  }
  .mb_0__sp {
    margin-bottom: 0 !important;
  }
  .mb_5__sp {
    margin-bottom: 5px !important;
  }
  .mb_10__sp {
    margin-bottom: 10px !important;
  }
  .mb_15__sp {
    margin-bottom: 15px !important;
  }
  .mb_20__sp {
    margin-bottom: 20px !important;
  }
  .mb_25__sp {
    margin-bottom: 25px !important;
  }
  .mb_30__sp {
    margin-bottom: 30px !important;
  }
  .mb_35__sp {
    margin-bottom: 35px !important;
  }
  .mb_40__sp {
    margin-bottom: 40px !important;
  }
  .mb_45__sp {
    margin-bottom: 45px !important;
  }
  .mb_50__sp {
    margin-bottom: 50px !important;
  }
}
.pt_0 {
  padding-top: 0 !important;
}

.pt_5 {
  padding-top: 5px !important;
}

.pt_10 {
  padding-top: 10px !important;
}

.pt_15 {
  padding-top: 15px !important;
}

.pt_20 {
  padding-top: 20px !important;
}

.pt_25 {
  padding-top: 25px !important;
}

.pt_30 {
  padding-top: 30px !important;
}

.pt_35 {
  padding-top: 35px !important;
}

.pt_40 {
  padding-top: 40px !important;
}

.pt_45 {
  padding-top: 45px !important;
}

.pt_50 {
  padding-top: 50px !important;
}

.pb_0 {
  padding-bottom: 0 !important;
}

.pb_5 {
  padding-bottom: 5px !important;
}

.pb_10 {
  padding-bottom: 10px !important;
}

.pb_15 {
  padding-bottom: 15px !important;
}

.pb_20 {
  padding-bottom: 20px !important;
}

.pb_25 {
  padding-bottom: 25px !important;
}

.pb_30 {
  padding-bottom: 30px !important;
}

.pb_35 {
  padding-bottom: 35px !important;
}

.pb_40 {
  padding-bottom: 40px !important;
}

.pb_45 {
  padding-bottom: 45px !important;
}

.pb_50 {
  padding-bottom: 50px !important;
}

.pb_55 {
  padding-bottom: 55px !important;
}

.pb_60 {
  padding-bottom: 60px !important;
}

.pb_65 {
  padding-bottom: 65px !important;
}

.pb_70 {
  padding-bottom: 70px !important;
}

@media screen and (max-width: 1200px) {
  .pb_0__tab {
    padding-bottom: 0 !important;
  }
  .pb_15__tab {
    padding-bottom: 15px !important;
  }
}
@media screen and (max-width: 550px) {
  .pt_0__sp {
    padding-top: 0 !important;
  }
  .pt_5__sp {
    padding-top: 5px !important;
  }
  .pt_10__sp {
    padding-top: 10px !important;
  }
  .pt_15__sp {
    padding-top: 15px !important;
  }
  .pt_20__sp {
    padding-top: 20px !important;
  }
  .pt_25__sp {
    padding-top: 25px !important;
  }
  .pb_0__sp {
    padding-bottom: 0 !important;
  }
  .pb_5__sp {
    padding-bottom: 5px !important;
  }
  .pb_10__sp {
    padding-bottom: 10px !important;
  }
  .pb_15__sp {
    padding-bottom: 15px !important;
  }
  .pb_20__sp {
    padding-bottom: 20px !important;
  }
  .pb_25__sp {
    padding-bottom: 25px !important;
  }
  .pb_30__sp {
    padding-bottom: 30px !important;
  }
  .pb_35__sp {
    padding-bottom: 35px !important;
  }
  .pb_40__sp {
    padding-bottom: 40px !important;
  }
  .pb_45__sp {
    padding-bottom: 45px !important;
  }
  .pb_50__sp {
    padding-bottom: 50px !important;
  }
}