<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.c-title_main {
  display: flex;
  align-items: center;
  min-height: 170px;
  line-height: 1.5;
  color: #fff;
  background-color: #004582;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.c-title_main__block {
  width: 95%;
  max-width: 1100px;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .c-title_main__block {
    width: 90%;
  }
}

.c-title_main__main_txt {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 600px) {
  .c-title_main__main_txt {
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: 1px;
  }
}

.c-title_main__sub_txt {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 600px) {
  .c-title_main__sub_txt {
    font-size: 14px;
  }
}

.c-title_main__sub_txt.__top {
  margin-bottom: 3px;
}

.c-title_gray_tag {
  position: relative;
  width: 100%;
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #004582;
  letter-spacing: 1.6px;
  background-color: #f1f1f1;
}
@media screen and (max-width: 600px) {
  .c-title_gray_tag {
    padding: 16px 11px 16px 18px;
    font-size: 18px;
  }
}

.c-title_gray_tag::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 75%;
  margin: auto;
  content: "";
  background-color: #004582;
}

.c-title_blue_bicolor_tag {
  position: relative;
  padding: 10px 10px 10px 20px;
  font-size: 18px;
  line-height: 1.4;
  color: #004582;
  background-color: #fff;
  border-bottom: 1px solid #004582;
}

.c-title_blue_bicolor_tag.__bg_blue {
  background-color: #e6eff5;
}

.c-title_blue_bicolor_tag::before {
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 55%;
  margin: auto;
  content: "";
  background-image: url("/img/component/title/blue_bicolor.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.c-title_gray_sub_txt {
  display: inline-block;
  margin-left: 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  color: #696969;
}
@media screen and (max-width: 600px) {
  .c-title_gray_sub_txt {
    display: block;
    margin-left: 0;
    font-size: 13px;
  }
}

.c-title_bicolor_line {
  position: relative;
  padding: 10px 0;
  font-size: 18px;
  line-height: 1.4;
  color: #004582;
  background-color: #fff;
  border-bottom: 2px solid #ababab;
}
.c-title_bicolor_line::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: inline-block;
  width: 10%;
  height: 2px;
  margin: auto;
  content: "";
  background-color: #004582;
}

.c-title_blue_single_line {
  padding: 4px;
  font-size: 17px;
  font-weight: bold;
  color: #004582;
  border-bottom: solid 1px #004582;
}

.c-btn__blue_squre {
  position: relative;
  display: block;
  width: 390px;
  max-width: 100%;
  padding: 10px 25px 15px 10px;
  margin: 0 auto;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background-color: #004582;
  transition: all 0.2s ease;
}

.c-btn__blue_squre::before {
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
}

.c-btn__blue_squre:hover {
  opacity: 0.7;
}
@media screen and (max-width: 600px) {
  .c-btn__blue_squre:hover {
    opacity: 1;
  }
}

.c-btn_white_list__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  width: 100%;
}

.c-btn_white_list__li {
  width: calc((100% - 40px) / 3);
  margin-bottom: 10px;
}
@media screen and (max-width: 1100px) {
  .c-btn_white_list__li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 600px) {
  .c-btn_white_list__li {
    width: 100%;
  }
}

.c-btn_white_list__a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 14px 22px 14px 17px;
  color: #004582;
  background-color: #fff;
  border: solid 1px #d9d9d9;
  transition: 0.2s;
}
.c-btn_white_list__a::before {
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 1px solid #004582;
  border-left: 1px solid #004582;
  transform: rotate(135deg);
}
.c-btn_white_list__a:hover {
  color: #fff;
  background-color: #004582;
}
.c-btn_white_list__a:hover::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 600px) {
  .c-btn_white_list__a {
    padding: 14px 22px 14px 15px;
  }
  .c-btn_white_list__a:hover {
    color: #004582;
    background-color: #fff;
  }
  .c-btn_white_list__a:hover::before {
    border-top: 1px solid #004582;
    border-left: 1px solid #004582;
  }
}

.c-btn_white_list__a.__disabled {
  color: #838383;
  background-color: #f6f6f6;
  border: solid 1px #f6f6f6;
}
.c-btn_white_list__a.__disabled::before {
  border: none;
}

.c-btn_gray_img__block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 15px;
}

.c-btn_gray_img__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc((100% - 30px) / 3);
  padding: 10px 10px 10px 20px;
  color: #333;
  border: solid 1px #bbb;
  transition: 0.2s;
}
.c-btn_gray_img__link::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 80%;
  margin: auto;
  content: "";
  background-color: #bbb;
  transition: 0.2s;
}
@media screen and (min-width: 601px) {
  .c-btn_gray_img__link:hover {
    color: #004582;
    background-color: #f3f6fb;
    border: solid 1px #004582;
  }
  .c-btn_gray_img__link:hover::before {
    background-color: #004582;
  }
}
@media screen and (max-width: 1100px) {
  .c-btn_gray_img__link {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 600px) {
  .c-btn_gray_img__link {
    width: 100%;
    padding: 6px 8px 6px 18px;
  }
}

.c-btn_gray_img__txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.c-btn_gray_img__txt_sub {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  color: #7e7e7e;
}

.c-btn_gray_img__img {
  width: 90px;
  height: auto;
  mix-blend-mode: multiply;
}

/* レイヤー */
.b-form_modal__layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.8;
}

/* レイヤーのコンテンツ */
.b-form_modal__layer_carbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 991;
  box-sizing: border-box;
  display: none;
  width: 93%;
  max-width: 890px;
  padding: 15px 0;
  margin: 5% auto 4%;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #999;
}

.b-form_modal__layer_carbox_inner {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  overflow-y: scroll;
}

.b-form_modal__close-btn {
  position: relative;
  display: block;
  width: fit-content;
  margin-right: 0;
  margin-bottom: 10px;
  margin-left: auto;
  font-size: 1.5em;
  cursor: pointer;
}

.b-form_modal__dummy_box {
  position: absolute;
  left: 0;
  opacity: 0;
}

.b-form_modal__tab_list {
  display: table;
  width: 100%;
}

.b-form_modal__tab_list_li {
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: table-cell;
  float: left;
  width: 25%;
  padding: 0 0 3px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7em;
  color: #666;
  text-align: center;
  cursor: pointer;
  background: #efefef;
  border-bottom: solid 2px #004582;
}

.b-form_modal__tab_list_head {
  display: block;
  font-size: 13px;
  color: #afafaf;
  background: #e8e8e8;
}

.b-form_modal__tab_list_li.tab_active.__maker,
.b-form_modal__tab_list_li.tab_active.__car {
  color: #fff;
  background: #004582;
}
.b-form_modal__tab_list_li.tab_active.__maker::before,
.b-form_modal__tab_list_li.tab_active.__car::before {
  color: #004582;
}

.b-form_modal__tab_list_li.tab_active.__maker .b-form_modal__tab_list_head,
.b-form_modal__tab_list_li.tab_active.__car .b-form_modal__tab_list_head {
  color: #fff;
  background: #002f44;
}

.b-form_modal__tab_list_li.tab_active.__year,
.b-form_modal__tab_list_li.tab_active.__mileage {
  color: #fff;
  background: #004582;
}
.b-form_modal__tab_list_li.tab_active.__year::before,
.b-form_modal__tab_list_li.tab_active.__mileage::before {
  color: #004582;
}

.b-form_modal__tab_list_li.tab_active.__year .b-form_modal__tab_list_head,
.b-form_modal__tab_list_li.tab_active.__mileage .b-form_modal__tab_list_head {
  color: #fff;
  background: #002f44;
}

.b-form_modal__tab_list_li.tab_active:not(:last-child)::before {
  position: absolute;
  right: -9px;
  bottom: 10px;
  margin: auto;
  width: 10px;
  height: 13px;
  background-color: #004582;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  z-index: 10;
}

.b-form_modal__tab_list_li.disable {
  color: #999;
}

.b-form_modal__tab_box {
  display: none;
}

.b-form_modal__tab_box_ul {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  gap: 7px 8px;
  padding: 8px 10px;
  margin-bottom: 5px;
  font-size: 15px;
}

.b-form_modal__tab_box_li {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc((100% - 24px) / 4);
  padding: 10px 20px 10px 10px;
  cursor: pointer;
  border: 1px solid #ddd;
}

.b-form_modal__tab_box_li::before {
  position: absolute;
  top: 0;
  right: 9px;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  transform: rotate(45deg);
}

.b-form_modal__tab_box_li:hover {
  text-decoration: none;
  background: #efefef;
}

.b-form_modal__tab_box_ul.year_list .b-form_modal__tab_box_li {
  width: calc((100% - 8px) / 2);
}

.b-form_modal__tab_box_ul.maker_list .b-form_modal__tab_box_li {
  padding: 4px 18px 4px 7px;
}

.b-form_modal__tab_ttl {
  position: relative;
  padding: 7px 5px 7px 25px;
  font-size: 16px;
}

.b-form_modal__tab_ttl::before {
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 60%;
  content: "";
  background-color: #004582;
}

.b-form_modal__tab_top_ttl {
  padding: 12px;
  margin-bottom: 10px;
  font-size: 16px;
  background-color: #eeeef3;
}

.b-form_modal__tab_top_ttl_span {
  background-color: #e02934;
  color: #fff;
  padding: 2px 6px;
  margin-left: 10px;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1.8px;
  border-radius: 3px;
}

.b-form_modal__tab_top_ttl_span.__ninni {
  background-color: #8291a7;
  color: #fff;
}

.b-form_modal__maker_img {
  width: 40px;
  height: auto;
}

@media screen and (max-width: 768px) {
  /* レイヤーのコンテンツ */
  .b-form_modal__layer_carbox {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    font-size: 16px;
    border: 0;
  }
  .b-form_modal__layer_carbox_inner {
    padding: 0;
  }
  .b-form_modal__tab_box_ul {
    gap: 7px 8px;
  }
  .b-form_modal__tab_box_ul.maker_list .b-form_modal__tab_box_li {
    gap: 13px;
    padding: 8px 18px 8px 7px;
  }
  .b-form_modal__close-btn {
    padding: 2%;
    margin-right: 15px;
    margin-bottom: 0;
  }
  .b-form_modal__tab_list {
    font-weight: normal;
  }
  .b-form_modal__tab_box_ul.mileage_list .b-form_modal__tab_box_li,
  .b-form_modal__tab_box_ul.year_list .b-form_modal__tab_box_li {
    width: 100%;
  }
  .b-form_modal__tab_box_li {
    width: calc((100% - 8px) / 2);
    padding: 12px 10px;
    font-size: 1em;
  }
  .b-form_modal__tab_list_li {
    font-size: 15px;
  }
  .b-form_modal__tab_list_head {
    font-size: 14px;
  }
  .b-form_modal__maker_img {
    width: 35px;
  }
  .b-form_modal__tab_ttl {
    padding: 4px 10px 4px 24px;
  }
  .b-form_modal__tab_list_li.tab_active:not(:last-child)::before {
    right: -5px;
    width: 5px;
    height: 10px;
  }
  .submit_btn_box {
    display: none;
    text-align: center;
  }
}
.b-form__about_ttl {
  position: relative;
  padding: 2px 0;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  color: #00548b;
  text-align: center;
  background: #e1e9ef;
}
.b-form__about_ttl::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background-color: #c8d8e4;
}
@media screen and (max-width: 600px) {
  .b-form__about_ttl {
    margin-bottom: 9px;
  }
}

.b-form__box {
  z-index: 1;
  padding: 23px 20px 15px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

/* 入力フォーム　項目タイトル */
.b-form__item_ttl {
  display: flex;
  align-items: center;
  width: 40%;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 1100px) {
  .b-form__item_ttl {
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .b-form__item_ttl {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 0;
  }
}

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

/* 入力フォーム　フォームスタイル */
.b-form__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .b-form__item {
    flex-direction: column;
  }
}

.b-form__item_box {
  width: 60%;
  margin-bottom: 14px;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .b-form__item_box {
    width: 100%;
    margin-bottom: 4px;
  }
}

.b-form__input,
.b-form__select {
  box-sizing: border-box;
  width: 100%;
  padding: 4px 17px 6px 8px;
  font-family: "NotoSansJP", sans-serif;
  font-size: 16px;
  color: #333;
  appearance: none;
  background-color: #fff;
  border: 1px solid #a9a9a9;
  border-radius: 3px;
}

.b-form__select_icon {
  cursor: pointer;
  background-image: url("https://cdn.cmgroup.jp/img/select_mark.png");
  background-repeat: no-repeat;
  background-position: 98% 50%;
  background-size: 7px;
}

.b-form__input.__maker,
.b-form__input.__name,
.b-form__input.__phone_number {
  background-color: #ffffc9;
}

.b-form__input.__name:-webkit-autofill,
.b-form__input.__phone_number:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ffffc9 inset !important;
  -webkit-text-fill-color: #333 !important;
}

.b-form__car_area,
.b-form__user_area {
  width: 100%;
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .b-form__car_area,
  .b-form__user_area {
    margin-bottom: 20px;
  }
}

/* 必須・任意項目のspan */
.b-form__req_on,
.b-form__req_off {
  display: inline-block;
  float: left;
  padding: 1px 4%;
  margin-right: 7px;
  font-size: 0.8em;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  vertical-align: middle;
}
@media screen and (max-width: 1100px) {
  .b-form__req_on,
  .b-form__req_off {
    padding: 3px 3%;
    font-size: 0.9em;
  }
}

.b-form__req_on {
  background: #e02934;
}

.b-form__req_off {
  background: #76bc37;
}

/* 点滅 */
.b-form__input.target_item {
  border: 3px solid #df2b55;
  animation-name: borderFlashing;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

@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);
  }
}
/* 送信項目のエラーメッセージ */
.err_msg {
  margin-bottom: -12px;
  font-size: 14px;
  color: #df2b55;
  text-align: left;
}

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

/* 利用規約・プライバシーポリシー */
.b-form__agreement {
  margin: -9px auto 9px;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .b-form__agreement {
    margin-bottom: 13px;
    line-height: 1.5;
  }
}

/* 送信ボタン */
.b-form__submit_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 415px;
  padding: 16px 8px;
  margin: 0 auto;
  font-family: "NotoSansJP", sans-serif;
  font-size: 25px;
  font-weight: bold;
  line-height: 0;
  color: #fff;
  text-align: center;
  letter-spacing: 3.5px;
  background-color: #e42c33;
  border: none;
  border-radius: 6px;
  box-shadow: 0 7px #af0d18;
}
.b-form__submit_btn::before {
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: auto;
  content: "";
  background-image: url("/img/block/cv/cv_form/cv_btn_pink.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 600px) {
  .b-form__submit_btn::before {
    right: 13px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 600px) {
  .b-form__submit_btn {
    padding: 15px 8px;
    font-size: 5.5vw;
    letter-spacing: 2.5px;
  }
}

.b-form__btn_free {
  padding: 6px 6px 6px 8px;
  margin-right: 12px;
  font-size: 19px;
  line-height: 1;
  color: #e42c33;
  letter-spacing: 1.5px;
  background-color: #fff;
  border-radius: 2px;
}
@media screen and (max-width: 600px) {
  .b-form__btn_free {
    margin-right: 8px;
    font-size: 4vw;
  }
}

/* SSL暗号化通信 */
.b-form__ssl {
  width: 100%;
  margin: 1em auto 0;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
}

.b-form__ssl_ttl::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  content: "";
  background-image: url("/img/block/cv/cv_form/ssl_icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/* タブレット縦以上 */
@media screen and (min-width: 768px) {
  .b-form__next_btn {
    display: none;
  }
}
/* タブレット縦以下 */
@media screen and (max-width: 768px) {
  /* 次へボタン */
  .b-form__next_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 415px;
    padding: 13px 8px;
    margin: 8px auto 0;
    font-family: "NotoSansJP", sans-serif;
    font-size: 25px;
    font-weight: bold;
    line-height: 0;
    color: #fff;
    text-align: center;
    letter-spacing: 3.5px;
    background-color: #e42c33;
    border: none;
    border-radius: 6px;
    box-shadow: 0 7px #af0d18;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  .b-form__next_btn {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .b-form__next_btn.disable {
    color: #fff;
    background: #cbcbcb;
    box-shadow: 0 7px #7d7d7d;
  }
  .b-form__next_btn.disable .b-form__btn_free {
    font-weight: normal;
    color: #cbcbcb;
  }
  .b-form__user_area {
    display: none;
    width: 100%;
  }
  .err_msg {
    padding: 2% 0;
  }
}
.b-cv_form__copy {
  position: relative;
  width: 100%;
  height: 170px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .b-cv_form__copy {
    height: 127px;
  }
}
@media screen and (max-width: 600px) {
  .b-cv_form__copy {
    height: auto;
    margin-top: -15px;
    margin-bottom: -25px;
    background-size: cover;
  }
}
.b-cv_form__copy::before {
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  content: "";
  border-color: #00548b transparent transparent;
  border-style: solid;
  border-width: 21px 25px 0;
}
@media screen and (max-width: 600px) {
  .b-cv_form__copy::before {
    display: none;
  }
}

.is-webp .b-cv_form__copy {
  background-image: url("/img/block/cv/cv_form/webp/cv_bg_blue_triple.webp");
}
@media screen and (max-width: 600px) {
  .is-webp .b-cv_form__copy {
    background-image: none;
  }
}

.is-no-webp .b-cv_form__copy {
  background-image: url("/img/block/cv/cv_form/cv_bg_blue_triple.jpg");
}
@media screen and (max-width: 600px) {
  .is-no-webp .b-cv_form__copy {
    background-image: none;
  }
}

.b-cv_form__copy_box {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .b-cv_form__copy_box {
    display: none;
  }
}

.b-cv_form__copy_woman_sp,
.b-cv_form__copy_easy_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .b-cv_form__copy_woman_sp,
  .b-cv_form__copy_easy_sp {
    display: block;
    width: 100%;
  }
}

.b-cv_form__copy_woman_sp {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}

.is-webp .b-cv_form__copy_woman_sp {
  background-image: url("/img/block/cv/cv_form/webp/cv_woman_img_bg_sp.webp");
}

.is-no-webp .b-cv_form__copy_woman_sp {
  background-image: url("/img/block/cv/cv_form/cv_woman_img_bg_sp.png");
}

.b-cv_form__copy_easy_sp {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}

.is-webp .b-cv_form__copy_easy_sp {
  background-image: url("/img/block/cv/cv_form/webp/cv_easy_20sec_bg_sp.webp");
}

.is-no-webp .b-cv_form__copy_easy_sp {
  background-image: url("/img/block/cv/cv_form/cv_easy_20sec_bg_sp.png");
}

.b-cv_form__copy_img.__1 {
  margin-right: 15px;
}

.b-cv_form__copy_img.__1,
.b-cv_form__copy_img.__2 {
  margin-top: 20px;
}

.b-cv_form__copy_img_sp {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .b-cv_form__copy_img {
    height: auto;
  }
  .b-cv_form__copy_img.__1 {
    width: 114px;
  }
  .b-cv_form__copy_img.__2 {
    width: 327px;
  }
  .b-cv_form__copy_img.__3 {
    width: 110px;
  }
}
.b-cv_form__area {
  padding: 35px 0;
  background-color: #e0ecf5;
}

.b-cv_form__block {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1100px) {
  .b-cv_form__block {
    flex-direction: column;
    gap: 5px;
  }
}

.b-cv_form__w {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .b-cv_form__w {
    width: 96%;
  }
}

.b-cv_form__box {
  padding: 30px 35px;
  border-radius: 10px;
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 0, 0, 0.11);
}
@media screen and (max-width: 768px) {
  .b-cv_form__box {
    padding: 17px 13px;
  }
}

.b-cv_tel {
  position: relative;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .b-cv_tel {
    height: 288px;
    background-color: #e8efed;
    background-position: top left;
    background-size: contain;
  }
}
@media screen and (max-width: 410px) {
  .b-cv_tel {
    height: 260px;
  }
}

.is-webp .b-cv_tel {
  background-image: url("/img/block/cv/cv_tel/webp/cv_bg_twins_woman.webp");
}
@media screen and (max-width: 600px) {
  .is-webp .b-cv_tel {
    background-image: url("/img/block/cv/cv_tel/webp/cv_bg_phone_woman_sp.webp");
  }
}

.is-no-webp .b-cv_tel {
  background-image: url("/img/block/cv/cv_tel/cv_bg_twins_woman.jpg");
}
@media screen and (max-width: 600px) {
  .is-no-webp .b-cv_tel {
    background-image: url("/img/block/cv/cv_tel/cv_bg_phone_woman_sp.jpg");
  }
}

.b-cv_tel__block {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  margin: auto;
}

.b-cv_tel__dot {
  position: relative;
}
.b-cv_tel__dot::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 4px;
  height: 4px;
  margin: auto;
  content: "";
  background-color: #004582;
  border-radius: 20px;
}

.b-cv_tel__txt_block {
  position: relative;
  margin-bottom: 10px;
}
.b-cv_tel__txt_block::before {
  position: absolute;
  top: 0;
  right: -17px;
  bottom: 0;
  width: 2px;
  height: 90%;
  margin: auto;
  content: "";
  background-color: #a9a9a9;
  transform: rotate(22deg);
}
.b-cv_tel__txt_block::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24px;
  width: 2px;
  height: 90%;
  margin: auto;
  content: "";
  background-color: #a9a9a9;
  transform: rotate(-22deg);
}
@media screen and (max-width: 600px) {
  .b-cv_tel__txt_block::before {
    display: none;
  }
  .b-cv_tel__txt_block::after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .b-cv_tel__txt_comment_sp {
    position: relative;
    font-size: 25px;
  }
  .b-cv_tel__txt_comment_sp::before {
    position: absolute;
    top: 0;
    right: -17px;
    bottom: 0;
    width: 2px;
    height: 90%;
    margin: auto;
    content: "";
    background-color: #a9a9a9;
    transform: rotate(22deg);
  }
  .b-cv_tel__txt_comment_sp::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -17px;
    width: 2px;
    height: 90%;
    margin: auto;
    content: "";
    background-color: #a9a9a9;
    transform: rotate(-22deg);
  }
}

.b-cv_tel__txt_blue {
  margin-bottom: -6px;
  font-size: 27px;
  font-weight: bold;
  color: #004582;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .b-cv_tel__txt_blue {
    margin-bottom: 1px;
    line-height: 1.5;
  }
}

.b-cv_tel__txt_black {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.b-cv_tel__txt_group {
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .b-cv_tel__txt_group {
    display: block;
  }
}

.b-cv_tel__link {
  width: 100%;
  max-width: 560px;
}
@media screen and (max-width: 600px) {
  .b-cv_tel__link {
    width: 95%;
    max-width: 455px;
  }
}

.b-cv_tel__link_btn {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .b-cv_tel__link_btn {
    display: none;
  }
}

.b-cv_tel__link_btn_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .b-cv_tel__link_btn_sp {
    display: block;
    width: 100%;
    height: auto;
  }
}

.c-cv_chance__bg {
  position: relative;
  width: 100%;
  padding-top: 20px;
}
@media screen and (max-width: 600px) {
  .c-cv_chance__bg {
    background-size: cover;
  }
}
.c-cv_chance__bg.__white::before {
  background-color: #004582;
}
.c-cv_chance__bg.__white::after {
  background-color: #004582;
}

.is-webp .c-cv_chance__bg {
  background-image: url("/img/block/cv/cv_chance/webp/office_blue_bg.webp");
}
.is-webp .c-cv_chance__bg.__white {
  background-image: url("/img/block/cv/cv_chance/webp/office_white_bg.webp");
}

.is-no-webp .c-cv_chance__bg {
  background-image: url("/img/block/cv/cv_chance/office_blue_bg.jpg");
}
.is-no-webp .c-cv_chance__bg.__white {
  background-image: url("/img/block/cv/cv_chance/office_white_bg.jpg");
}

.c-cv_chance__bg::before {
  position: absolute;
  top: 80px;
  right: 0;
  width: calc((100% - 415px) / 2);
  height: 1px;
  content: "";
  background-color: #fff;
}
@media screen and (max-width: 450px) {
  .c-cv_chance__bg::before {
    width: 20px;
  }
}

.c-cv_chance__bg::after {
  position: absolute;
  top: 80px;
  left: 0;
  width: calc((100% - 415px) / 2);
  height: 1px;
  content: "";
  background-color: #fff;
}
@media screen and (max-width: 450px) {
  .c-cv_chance__bg::after {
    width: 20px;
  }
}

.c-cv_chance__txt_img {
  display: block;
  width: 90%;
  max-width: 365px;
  height: auto;
  margin: 0 auto;
}

.c-cv_chance__area {
  display: flex;
  width: 100%;
  max-width: 660px;
  margin: 25px auto 0;
}
@media screen and (max-width: 600px) {
  .c-cv_chance__area {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }
}

.c-cv_chance__link_tel,
.c-cv_chance__link_web {
  position: relative;
  display: inline-block;
  width: 100%;
  transition: 0.2s ease-out;
}
@media screen and (min-width: 601px) {
  .c-cv_chance__link_tel:hover,
  .c-cv_chance__link_web:hover {
    scale: 1.07;
  }
}

.c-cv_chance__img_tel,
.c-cv_chance__img_web,
.c-cv_chance__img_tel_sub,
.c-cv_chance__img_web_sub {
  width: 100%;
  height: auto;
}

.c-cv_chance__img_tel_sub,
.c-cv_chance__img_web_sub {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .c-cv_chance__img_tel_sub,
  .c-cv_chance__img_web_sub {
    top: -20px;
  }
}

@media screen and (max-width: 600px) {
  .c-cv_chance__link_web {
    margin-top: 10px;
  }
}

.c-area_car_info {
  width: 1030px;
  max-width: 100%;
  padding: 25px 20px 15px 30px;
  margin: 0 auto;
  border: solid 4px #f5f5f5;
}
@media screen and (max-width: 600px) {
  .c-area_car_info {
    padding: 15px 10px 5px;
  }
}

.c-area_car_info__child {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1100px) {
  .c-area_car_info__child {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 600px) {
  .c-area_car_info__child {
    flex-direction: column;
    align-items: center;
  }
}

.c-area_car_info__list {
  display: flex;
}
@media screen and (max-width: 1100px) {
  .c-area_car_info__list {
    flex-wrap: wrap;
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .c-area_car_info__list {
    justify-content: center;
  }
}

.c-area_car_info__list_item {
  position: relative;
  margin-right: 28px;
}
@media screen and (max-width: 1100px) {
  .c-area_car_info__list_item {
    margin-bottom: 5px;
  }
}

.c-area_car_info__list_item:not(:last-child)::before {
  position: absolute;
  top: 0;
  right: -13px;
  bottom: 0;
  width: 1px;
  height: 13px;
  margin: auto;
  content: "";
  background-color: #ccc;
}

.c-area_car_info__list_item &gt; a {
  color: #333;
}

.c-area_car_info__area_label {
  width: 120px;
  padding: 5px 10px;
  margin-right: 20px;
  font-size: 15px;
  color: #fff;
  text-align: center;
  background-color: #81b4ce;
}
@media screen and (max-width: 1100px) {
  .c-area_car_info__area_label {
    width: 100%;
    margin-right: 0;
  }
}

.c-area_car_info__child.__2 &gt; .c-area_car_info__area_label {
  background-color: #598faf;
}

.c-area_car_info__child.__3 &gt; .c-area_car_info__area_label {
  background-color: #266896;
}

.c-area_car_info__child.__4 &gt; .c-area_car_info__area_label {
  background-color: #004680;
}

.c-area_car_info__child.__5 &gt; .c-area_car_info__area_label {
  background-color: #003c6a;
}

.c-area_car_info__child.__6 &gt; .c-area_car_info__area_label {
  background-color: #003356;
}

.c-area_car_info__child .c-area_car_info__list_item &gt; a {
  transition: 0.2s;
}

.c-area_car_info__child .c-area_car_info__list_item &gt; a:hover {
  opacity: 0.7;
}

.c-area_car_info__child.__1 .c-area_car_info__list_item &gt; a:hover {
  color: #81b4ce;
}

.c-area_car_info__child.__2 .c-area_car_info__list_item &gt; a:hover {
  color: #598faf;
}

.c-area_car_info__child.__3 .c-area_car_info__list_item &gt; a:hover {
  color: #266896;
}

.c-area_car_info__child.__4 .c-area_car_info__list_item &gt; a:hover {
  color: #004680;
}

.c-area_car_info__child.__5 .c-area_car_info__list_item &gt; a:hover {
  color: #003c6a;
}

.c-area_car_info__child.__6 .c-area_car_info__list_item &gt; a:hover {
  color: #003356;
}

.b-maker_pickup__box {
  display: flex;
  gap: 20px;
  width: 92%;
}
@media screen and (max-width: 1100px) {
  .b-maker_pickup__box {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

.b-maker_pickup__block {
  display: flex;
  flex-direction: column;
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1100px) {
  .b-maker_pickup__block {
    width: 90%;
  }
}

.b-maker_pickup__ttl {
  display: block;
  width: 100%;
  padding: 7px;
  font-size: 17px;
  color: #fff;
  text-align: center;
  background-color: #00447d;
  border: solid 1px #00447d;
}

.b-maker_pickup__ttl.__abroad {
  background-color: #1a6695;
  border: solid 1px #1a6695;
}

.b-maker_pickup__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  height: 100%;
  padding: 20px 25px;
  border: solid 1px #d5d5d5;
  border-top: none;
}

.b-maker_pickup__listItem {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1100px) {
  .b-maker_pickup__listItem {
    width: calc((100% - 40px) / 5);
  }
}
@media screen and (max-width: 600px) {
  .b-maker_pickup__listItem {
    width: calc((100% - 20px) / 3);
  }
}

.b-maker_pickup__img {
  display: block;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .b-maker_pickup__img {
    width: 90%;
    max-width: 85px;
  }
}

.b-maker_pickup__link {
  display: block;
  width: 100%;
  padding: 8px;
  transition: 0.3s;
}
.b-maker_pickup__link:hover {
  background-color: #ecf4f9;
}

.b-maker_pickup__name {
  display: block;
  width: 100%;
  margin-top: 4px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #00447d;
  text-align: center;
}

.b-faq__box {
  background-color: #fff;
}

.b-faq__btn {
  position: relative;
  padding: 16px 42px 16px 20px;
  background-color: #fff;
}
.b-faq__btn:hover {
  background-color: #e6ecf5;
}
.b-faq__btn::before {
  position: absolute;
  top: calc(50% - 5px);
  right: 33px;
  display: inline-block;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 2px solid #004582;
  border-left: 2px solid #004582;
  transition: 0.2s;
  transform: rotate(225deg);
}
@media screen and (max-width: 1100px) {
  .b-faq__btn::before {
    right: 25px;
  }
}
@media screen and (max-width: 600px) {
  .b-faq__btn::before {
    right: 15px;
  }
}
@media screen and (max-width: 600px) {
  .b-faq__btn {
    padding: 13px 33px 14px 13px;
  }
}

.b-faq__answer {
  height: 0;
  padding: 0 20px;
  line-height: 0;
  color: transparent;
}
@media screen and (max-width: 600px) {
  .b-faq__answer {
    padding: 0 13px;
  }
}

.b-faq__btn,
.b-faq__answer {
  display: flex;
  align-items: flex-start;
  transition: 0.2s;
}

.b-faq__img {
  width: 35px;
  height: auto;
  margin-right: 16px;
}
@media screen and (max-width: 600px) {
  .b-faq__img {
    width: 23px;
    margin-top: 2px;
    margin-right: 10px;
  }
}

.b-faq__img.__a {
  height: 0;
}

.b-faq__q_txt {
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .b-faq__q_txt {
    line-height: 1.6;
  }
}

.b-faq__q_txt,
.b-faq__a_txt {
  width: auto;
  margin-top: 2px;
}
@media screen and (max-width: 600px) {
  .b-faq__q_txt,
  .b-faq__a_txt {
    margin-top: 0;
  }
}

.b-faq__a_txt {
  display: none;
}

.b-faq__btn.__open {
  background-color: #e6ecf5;
}
.b-faq__btn.__open::before {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.b-faq__btn.__open + .b-faq__answer {
  height: auto;
  padding: 16px 20px 24px;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 600px) {
  .b-faq__btn.__open + .b-faq__answer {
    padding: 16px 13px 24px;
  }
}

.b-faq__btn.__open + .b-faq__answer .b-faq__img.__a {
  height: auto;
  margin-top: 4px;
}

.b-faq__btn.__open + .b-faq__answer &gt; .b-faq__a_txt {
  display: block;
}

body {
  -webkit-text-size-adjust: 100%;
}

.p-top__contents_block {
  padding: 75px 0 60px;
}
@media screen and (max-width: 600px) {
  .p-top__contents_block {
    padding: 50px 0 32px;
  }
}
.p-top__contents_block.__reason {
  background: linear-gradient(180deg, #003a6d 0%, #003a6d 50%, #fff 50%, #fff 100%);
}
@media screen and (max-width: 1100px) {
  .p-top__contents_block.__reason {
    background: linear-gradient(180deg, #004582 0%, #004582 50%, #fff 50%, #fff 100%);
  }
}
.p-top__contents_block.__jisseki {
  overflow-x: hidden;
  background-size: cover;
}
.p-top__contents_block.__resale {
  background-size: cover;
}
@media screen and (max-width: 1100px) {
  .p-top__contents_block.__resale {
    background-position: center;
  }
}
.p-top__contents_block.__flow {
  margin-top: -40px;
  background-color: #e9eff3;
}
@media screen and (max-width: 600px) {
  .p-top__contents_block.__flow {
    margin-top: -25px;
  }
}
.p-top__contents_block.__voice {
  position: relative;
  overflow-x: hidden;
  background: #004582;
}
.p-top__contents_block.__voice::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 355px;
  content: "";
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
@media screen and (max-width: 1100px) {
  .p-top__contents_block.__voice::before {
    height: 380px;
    background-position: 70%;
    background-size: cover;
  }
}
@media screen and (max-width: 600px) {
  .p-top__contents_block.__voice::before {
    height: 412px;
  }
}
.p-top__contents_block.__media {
  background-color: #f4f4f4;
}
.p-top__contents_block.__maker {
  margin-top: -40px;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .p-top__contents_block.__maker {
    padding-bottom: 37px;
    margin-top: -37px;
  }
}
.p-top__contents_block.__faq {
  background-color: #e9eff3;
}
@media screen and (max-width: 600px) {
  .p-top__contents_block.__area {
    padding-bottom: 10px;
  }
}

.is-webp .p-top__contents_block.__jisseki {
  background-image: url("/img/page/top/webp/top_jisseki_bg.webp");
}
.is-webp .p-top__contents_block.__resale {
  background-image: url("/img/page/top/webp/top_resale_bg.webp");
}
@media screen and (max-width: 1100px) {
  .is-webp .p-top__contents_block.__resale {
    background-image: url("/img/page/top/webp/top_resale_bg_sp.webp");
  }
}
.is-webp .p-top__contents_block.__voice::before {
  background-image: url("/img/page/top/webp/top_voice_bg.webp");
}
@media screen and (max-width: 1100px) {
  .is-webp .p-top__contents_block.__voice::before {
    background-image: url("/img/page/top/webp/top_voice_bg_tab.webp");
  }
}
.is-webp .p-top__contents_block.__maker {
  background-image: url("/img/page/top/webp/top_maker_bg.webp");
}

.is-no-webp .p-top__contents_block.__jisseki {
  background-image: url("/img/page/top/top_jisseki_bg.jpg");
}
.is-no-webp .p-top__contents_block.__resale {
  background-image: url("/img/page/top/top_resale_bg.jpg");
}
@media screen and (max-width: 1100px) {
  .is-no-webp .p-top__contents_block.__resale {
    background-image: url("/img/page/top/top_resale_bg_sp.jpg");
  }
}
.is-no-webp .p-top__contents_block.__voice::before {
  background-image: url("/img/page/top/top_voice_bg.png");
}
@media screen and (max-width: 1100px) {
  .is-no-webp .p-top__contents_block.__voice::before {
    background-image: url("/img/page/top/top_voice_bg_tab.jpg");
  }
}
.is-no-webp .p-top__contents_block.__maker {
  background-image: url("/img/page/top/top_maker_bg.jpg");
}

.p-top__contents {
  width: 90%;
  max-width: 1090px;
  margin: 0 auto;
}

.p-top__contents_inner {
  width: 98%;
  max-width: 1090px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .p-top__contents_inner {
    width: 95%;
  }
}
@media screen and (max-width: 600px) {
  .p-top__contents_inner {
    width: 92%;
  }
}

.p-top__title {
  position: relative;
  padding-bottom: 15px;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  letter-spacing: 1.8px;
}
.p-top__title.__blue {
  color: #004582;
}
.p-top__title.__blue::before {
  background-color: #004582;
}
.p-top__title::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  margin: auto;
  content: "";
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .p-top__title {
    font-size: 22px;
  }
}

.p-top__intr_txt {
  font-size: 15px;
  color: #fff;
  text-align: center;
}
.p-top__intr_txt.__black {
  color: #333;
}
@media screen and (max-width: 600px) {
  .p-top__intr_txt {
    text-align: left;
  }
}

.p-top__btn_blue,
.p-top__btn_white {
  position: relative;
  display: block;
  width: 390px;
  max-width: 100%;
  padding: 10px 25px 15px 10px;
  margin: 0 auto;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background: #004582;
  border: solid 1px #004582;
  transition: all 0.2s ease;
}
.p-top__btn_blue::after,
.p-top__btn_white::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
}
@media screen and (max-width: 600px) {
  .p-top__btn_blue,
  .p-top__btn_white {
    width: 290px;
    max-width: 100%;
  }
}
@media screen and (min-width: 601px) {
  .p-top__btn_blue:hover,
  .p-top__btn_white:hover {
    color: #004582;
    background: #fff;
  }
  .p-top__btn_blue:hover::after,
  .p-top__btn_white:hover::after {
    border-top: 2px solid #004582;
    border-left: 2px solid #004582;
  }
}

.p-top__btn_white {
  color: #004582;
  background: #fff;
  border: solid 1px #fff;
}
.p-top__btn_white::after {
  border-top: 2px solid #004582;
  border-left: 2px solid #004582;
}
@media screen and (min-width: 601px) {
  .p-top__btn_white:hover {
    color: #fff;
    background: transparent;
  }
  .p-top__btn_white:hover::after {
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
  }
}

.p-top__main_block {
  position: relative;
  padding-bottom: 38px;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .p-top__main_block {
    padding-bottom: 15px;
  }
}
.p-top__main_block::before {
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 138px;
  content: "";
  background-color: #004582;
}
@media screen and (max-width: 1100px) {
  .p-top__main_block::before {
    height: 839px;
    background-color: #d6e6f7;
  }
}
@media screen and (max-width: 768px) {
  .p-top__main_block::before {
    height: 586px;
  }
}
@media screen and (max-width: 600px) {
  .p-top__main_block::before {
    height: 707px;
  }
}

.is-webp .p-top__main_block {
  background-image: url("/img/page/top/webp/top_main_bg.webp");
}
@media screen and (max-width: 1100px) {
  .is-webp .p-top__main_block {
    background-image: url("/img/page/top/webp/top_main_bg_sp.webp");
  }
}

.is-no-webp .p-top__main_block {
  background-image: url("/img/page/top/top_main_bg.jpg");
}
@media screen and (max-width: 1100px) {
  .is-no-webp .p-top__main_block {
    background-image: url("/img/page/top/top_main_bg_sp.jpg");
  }
}

.p-top__main_block_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .p-top__main_block_inner {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .p-top__main_block_inner {
    width: 96%;
  }
}

.p-top__main_content_box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 600px;
  margin-top: 78px;
}
@media screen and (max-width: 1100px) {
  .p-top__main_content_box {
    flex-direction: column;
    align-items: center;
    margin-top: 66px;
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 600px) {
  .p-top__main_content_box {
    width: 100%;
    margin-top: 13vw;
    margin-bottom: 26vw;
  }
}

.p-top__main_jisseki_block {
  position: absolute;
  bottom: -8px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .p-top__main_jisseki_block {
    bottom: -100px;
  }
}
@media screen and (max-width: 600px) {
  .p-top__main_jisseki_block {
    bottom: -32vw;
  }
}

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

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

.p-top__main_woman_img {
  width: 100%;
  height: auto;
  margin-top: -113px;
}
@media screen and (max-width: 600px) {
  .p-top__main_woman_img {
    margin-top: -20vw;
  }
}

.p-top__main_form_txt_img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(100, 100, 111, 0.4));
}
@media screen and (max-width: 1100px) {
  .p-top__main_form_txt_img {
    filter: drop-shadow(0 2px 4px rgba(0, 24, 39, 0.35));
  }
}

#form_link {
  padding-top: 140px;
  margin-top: -140px;
}
@media screen and (max-width: 600px) {
  #form_link {
    padding-top: 100px;
    margin-top: -100px;
  }
}

.p-top__main_form_box {
  width: 470px;
}
@media screen and (max-width: 1100px) {
  .p-top__main_form_box {
    width: 689px;
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .p-top__main_form_box {
    width: 100%;
  }
}

.p-top__main_form {
  display: flex;
  flex-direction: column;
}

.p-top__main_carnext_ttl {
  position: absolute;
  top: -44px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  text-align: right;
}
@media screen and (max-width: 600px) {
  .p-top__main_carnext_ttl {
    top: -10.5vw;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 5vw;
    white-space: nowrap;
  }
}
.p-top__main_carnext_ttl::before {
  margin-right: 10px;
  transform: rotate(60deg);
}
@media screen and (max-width: 600px) {
  .p-top__main_carnext_ttl::before {
    left: 0;
  }
}
.p-top__main_carnext_ttl::after {
  margin-left: 10px;
  transform: rotate(-60deg);
}
@media screen and (max-width: 600px) {
  .p-top__main_carnext_ttl::after {
    right: 0;
  }
}

.p-top__main_carnext_ttl::before,
.p-top__main_carnext_ttl::after {
  width: 37px;
  height: 4px;
  content: "";
  background-color: #0494cb;
}
@media screen and (max-width: 600px) {
  .p-top__main_carnext_ttl::before,
  .p-top__main_carnext_ttl::after {
    position: absolute;
    width: 32px;
  }
}
@media screen and (max-width: 400px) {
  .p-top__main_carnext_ttl::before,
  .p-top__main_carnext_ttl::after {
    width: 22px;
    height: 2px;
  }
}

.p-top__main_usedcar_txt {
  margin-right: 4px;
  font-size: 28px;
  color: #0068aa;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 600px) {
  .p-top__main_usedcar_txt {
    font-size: 6vw;
  }
}

.p-top__main_carnext_txt {
  font-size: 28px;
}
@media screen and (max-width: 600px) {
  .p-top__main_carnext_txt {
    font-size: 6vw;
  }
}

.p-top__main_form_txt {
  position: relative;
  z-index: 2;
  width: 95%;
  max-width: 400px;
  margin: 27px auto -19px;
}

.swiper._mv .swiper-wrapper {
  width: 100%;
}

.p-top__reason_block {
  display: flex;
  gap: 20px;
  width: 98%;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .p-top__reason_block {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .p-top__reason_block {
    width: 100%;
  }
}

.p-top__reason_txt_box {
  padding: 22px 24px 30px;
  background-repeat: no-repeat;
  background-position: top 15px right 20px;
  background-size: 97px;
}

.is-webp .p-top__reason_txt_box {
  background-image: url("/img/page/top/webp/top_reason_figure_1.webp");
}

.is-no-webp .p-top__reason_txt_box {
  background-image: url("/img/page/top/top_reason_figure_1.png");
}

.p-top__reason_box {
  width: calc((100% - 40px) / 3);
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}
@media screen and (max-width: 1100px) {
  .p-top__reason_box {
    width: 100%;
    max-width: 500px;
  }
}

.is-webp .p-top__reason_box:nth-child(2) .p-top__reason_txt_box {
  background-image: url("/img/page/top/webp/top_reason_figure_2.webp");
}
.is-webp .p-top__reason_box:nth-child(3) .p-top__reason_txt_box {
  background-image: url("/img/page/top/webp/top_reason_figure_3.webp");
}

.is-no-webp .p-top__reason_box:nth-child(2) .p-top__reason_txt_box {
  background-image: url("/img/page/top/top_reason_figure_2.png");
}
.is-no-webp .p-top__reason_box:nth-child(3) .p-top__reason_txt_box {
  background-image: url("/img/page/top/top_reason_figure_3.png");
}

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

.p-top__reason_ttl {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.6;
  color: #004582;
}

.p-top__reason_txt {
  line-height: 1.5;
}

.p-top__reason_three {
  padding-left: 3px;
  font-size: 36px;
  line-height: 1;
}

.swiper-wrapper {
  width: 1500px;
}

.swiper-pagination {
  bottom: -30px !important;
  margin-top: 60px;
  margin-bottom: 40px;
}

.swiper-pagination-bullet {
  background-color: #fff;
}

.swiper-horizontal &gt; .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 1;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
}

.swiper-button-prev {
  left: -40px;
}
@media screen and (max-width: 1350px) {
  .swiper-button-prev {
    top: 320px;
    left: 17px;
  }
}

.swiper-button-next {
  right: -40px;
}
@media screen and (max-width: 1350px) {
  .swiper-button-next {
    top: 320px;
    right: 17px;
  }
}

.swiper._jisseki .swiper-slide {
  transition: 0.2s;
  transform: scale(0.9) !important;
}

.swiper._jisseki .swiper-slide-active {
  transform: scale(1) !important;
}

.p-top__jisseki_block {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-top__jisseki_block {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.p-top__jisseki_scroll_img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

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

.p-top__jisseki_scroll_car_name {
  padding: 4px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #004582;
}

.p-top__jisseki_scroll_info_wrap {
  padding: 9px 12px 8px 18px;
  background-color: #fff;
}

.p-top__jisseki_scroll_sub_info {
  margin-bottom: -12px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.p-top__jisseki_scroll_sub_txt {
  font-size: 15px;
}

.p-top__jisseki_scroll_price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #004582;
}
@media screen and (max-width: 1100px) {
  .p-top__jisseki_scroll_price {
    font-size: 15px;
  }
}

.p-top__jisseki_scroll_figure {
  margin-right: 4px;
  font-family: "Century Gothic", "arial", "Arial", "NotoSansJP", "YuGothic", "Yu Gothic", "Yu Gothic UI", sans-serif;
  font-size: 38px;
  font-weight: bold;
  line-height: 1;
  color: #f10622;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 1100px) {
  .p-top__jisseki_scroll_figure {
    font-size: 32px;
  }
}

.p-top__jisseki_scroll_price_icon {
  position: relative;
  bottom: 4px;
  display: block;
  width: 19%;
  height: 1px;
  margin-right: auto;
  margin-left: 6px;
  background-color: #004582;
}
.p-top__jisseki_scroll_price_icon::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 10px;
  height: 1px;
  margin: auto;
  content: "";
  background-color: #004582;
  transform: rotate(22deg);
}
@media screen and (max-width: 600px) {
  .p-top__jisseki_scroll_price_icon {
    width: 32px;
  }
}

.p-top__jisseki_pagination {
  margin-top: 60px;
}

.p-top__resale_block {
  width: 98%;
  padding: 20px;
  margin: 0 auto;
  background-color: #0f5c88;
}
@media screen and (max-width: 600px) {
  .p-top__resale_block {
    width: 100%;
    padding: 10px;
  }
}

.p-top__resale_tab_panel {
  display: flex;
}

.p-top__resale_tab_area {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 224px;
}
@media screen and (max-width: 1100px) {
  .p-top__resale_tab_area {
    display: none;
  }
}

.p-top__resale_panel_area {
  flex: 1;
  padding: 30px 35px;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .p-top__resale_panel_area {
    padding: 19px 17px;
  }
}

.p-top__resale_panel_content {
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 1100px) {
  .p-top__resale_panel_content {
    flex-direction: column-reverse;
    gap: 5px;
    align-items: center;
  }
}

.p-top__resale_panel {
  display: none;
}

.p-top__resale_panel.active {
  display: block;
}

.p-top__resale_tab {
  position: relative;
  height: calc((100% - 45px) / 10);
  padding: 5px 13px 5px 23px;
  font-weight: bold;
  color: #004582;
  cursor: pointer;
  background-color: #c4d6e4;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  box-shadow: 13px 0 11px -6px rgba(0, 25, 81, 0.1490196078) inset;
  transition: 0.2s;
}
.p-top__resale_tab.active {
  color: #333;
  background-color: #fff;
  box-shadow: none;
}
.p-top__resale_tab.active:hover {
  background-color: #fff;
}
.p-top__resale_tab.active::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 7px;
  height: 10px;
  margin: auto;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  background-color: #cfcfcf;
}
.p-top__resale_tab:hover {
  background-color: #8eb4cd;
}

.p-top__resale_ttl {
  margin-bottom: 18px;
  font-size: 21px;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
  .p-top__resale_ttl {
    margin-top: 3px;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
  }
}

.p-top__resale_graph {
  width: 100%;
  max-width: 364px;
}

.p-top__resale_txt {
  flex: 1;
  font-size: 15px;
}

.p-top__resale_link_txt {
  flex: 1;
}

.p-top__resale_link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  color: #33b3db;
}
@media screen and (max-width: 600px) {
  .p-top__resale_link {
    display: inline-block;
    margin-top: 12px;
  }
}
@media screen and (min-width: 601px) {
  .p-top__resale_link:hover {
    color: #b1ddeb;
  }
  .p-top__resale_link:hover .p-top__resale_link_border {
    background: linear-gradient(transparent 0% 94%, #b1ddeb 94% 100%);
  }
  .p-top__resale_link:hover .p-top__resale_arrow {
    background-color: #b1ddeb;
  }
  .p-top__resale_link:hover .p-top__resale_arrow::after {
    background-color: #b1ddeb;
  }
}

.p-top__resale_arrow {
  position: relative;
  top: -4px;
  display: inline-block;
  width: 36px;
  height: 1px;
  margin-left: 7px;
  background-color: #33b3db;
  transition: 0.2s;
}
.p-top__resale_arrow::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 10px;
  height: 1px;
  margin: auto;
  content: "";
  background-color: #33b3db;
  transition: 0.2s;
  transform: rotate(22deg);
}

.p-top__resale_link_border {
  background: linear-gradient(transparent 0% 94%, #33b3db 94% 100%);
  transition: 0.2s;
}
@media screen and (max-width: 1100px) {
  .p-top__resale_link_border {
    margin-top: 10px;
  }
}

.p-top__resale_select_block {
  display: none;
  padding: 13px 0 20px;
}
@media screen and (max-width: 1100px) {
  .p-top__resale_select_block {
    position: relative;
    display: block;
    margin-bottom: 25px;
    background-color: #cbdaeb;
  }
  .p-top__resale_select_block::before {
    position: absolute;
    right: 0;
    bottom: -18px;
    left: 0;
    width: 44px;
    height: 27px;
    margin: auto;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
    background-color: #cbdaeb;
  }
}
@media screen and (max-width: 600px) {
  .p-top__resale_select_block {
    padding: 9px 17px 17px;
  }
}

@media screen and (max-width: 1100px) {
  .p-top__resale_select_txt {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: bold;
    line-height: 2;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-top__resale_select_txt {
    margin-left: 5px;
    text-align: left;
  }
}

.p-top__resale_select_box {
  width: 100%;
  padding: 9px 10px;
  font-family: "NotoSansJP", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "Yu Gothic UI", "Arial", sans-serif;
  color: #333;
  appearance: none;
  background-color: #fff;
  border: solid 2px #004582;
  border-radius: 3px;
}

.p-top__resale_select_box_wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.p-top__resale_select_box_wrap::before {
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: auto;
  content: "";
  border-top: 2px solid #9d9d9d;
  border-left: 2px solid #9d9d9d;
  transform: rotate(225deg);
}

.p-top__flow_block {
  display: flex;
  gap: 30px;
  width: 98%;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .p-top__flow_block {
    flex-direction: column;
    max-width: 740px;
  }
}
@media screen and (max-width: 1100px) {
  .p-top__flow_block {
    width: 100%;
  }
}

.p-top__flow_box {
  position: relative;
  width: calc((100% - 90px) / 4);
  background-color: #fff;
}
.p-top__flow_box:not(:last-child)::before {
  position: absolute;
  top: 0;
  right: -22px;
  bottom: 0;
  width: 13px;
  height: 15px;
  margin: auto;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  background-color: #004582;
}
@media screen and (max-width: 1100px) {
  .p-top__flow_box {
    width: 100%;
  }
  .p-top__flow_box:not(:last-child)::before {
    top: auto;
    right: 0;
    left: 0;
    bottom: -21px;
    width: 18px;
    height: 12px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}

.p-top__flow_ttl {
  padding: 8px 12px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.9px;
  background-color: #004582;
}

.p-top__flow_img_block {
  position: relative;
  display: flex;
  align-items: center;
  width: 93%;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
  border-bottom: solid 1px #dbdbdb;
}
.p-top__flow_img_block::before {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 25px;
  height: 8px;
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  background-color: #dbdbdb;
}

.p-top__flow_img {
  width: 65px;
  height: auto;
}

.p-top__flow_main_txt {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #004582;
}

.p-top__flow_txt {
  padding: 17px;
  font-size: 15px;
  line-height: 1.6;
}

.p-top__voice_block {
  position: relative;
}

.p-top__voice_contents {
  position: inherit;
  z-index: 1;
}

.p-top__voice_swiper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  filter: drop-shadow(0 7px 29px rgba(100, 100, 111, 0.2));
}
@media screen and (max-width: 600px) {
  .p-top__voice_swiper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.p-top__voice_swiper_item {
  width: 500px;
  padding: 22px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}
@media screen and (max-width: 600px) {
  .p-top__voice_swiper_item {
    padding: 15px;
  }
}

.p-top__voice_info_block {
  display: flex;
  gap: 20px;
  margin-bottom: 13px;
}
@media screen and (max-width: 600px) {
  .p-top__voice_info_block {
    flex-direction: column;
    margin-bottom: 21px;
  }
}

.p-top__voice_info_img_wrap {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .p-top__voice_info_img_wrap {
    width: 100%;
  }
}

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

.p-top__voice_info_box {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .p-top__voice_info_box {
    width: 100%;
  }
}

.p-top__voice_info_pref {
  position: relative;
  width: 100%;
  padding-bottom: 2px;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  color: #004582;
  border-bottom: solid 1px #e7e7e7;
}
.p-top__voice_info_pref::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 19px;
  height: 24px;
  margin: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
}

.is-webp .p-top__voice_info_pref::before {
  background-image: url("/img/page/top/webp/top_voice_map_icon.webp");
}

.is-no-webp .p-top__voice_info_pref::before {
  background-image: url("/img/page/top/top_voice_map_icon.png");
}

.p-top__voice_info_th,
.p-top__voice_info_td {
  padding: 4px 10px 5px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .p-top__voice_info_th,
  .p-top__voice_info_td {
    padding: 2px 18px;
    font-size: 15px;
    line-height: 1;
  }
}

.p-top__voice_info_td {
  padding: 4px 9px 5px;
}

.p-top__voice_info_th {
  color: #004582;
  text-align: center;
  background-color: #e7e7e7;
}

.p-top__voice_review_ttl_block {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 2px;
  padding-left: 30px;
  margin-bottom: 10px;
  border-bottom: solid 1px #e7e7e7;
}
.p-top__voice_review_ttl_block::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 27px;
  height: 23px;
  margin: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .p-top__voice_review_ttl_block::before {
    bottom: auto;
    width: 23px;
    height: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-top__voice_review_ttl_block {
    flex-direction: column;
    align-items: normal;
  }
}

.is-webp .p-top__voice_review_ttl_block::before {
  background-image: url("/img/page/top/webp/top_voice_comment_icon.webp");
}

.is-no-webp .p-top__voice_review_ttl_block::before {
  background-image: url("/img/page/top/top_voice_comment_icon.png");
}

.p-top__voice_review_ttl {
  font-size: 17px;
  font-weight: bold;
  color: #004582;
}
@media screen and (max-width: 600px) {
  .p-top__voice_review_ttl {
    line-height: 1;
  }
}

.p-top__voice_review_month {
  font-size: 15px;
  color: #838383;
}

.p-top__voice_review_content_txt {
  font-size: 15px;
  line-height: 1.5;
}

.p-top__voice_pagination {
  margin-top: 58px;
}
@media screen and (max-width: 600px) {
  .p-top__voice_pagination {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1350px) {
  .swiper-button-prev._voice,
  .swiper-button-next._voice {
    top: 50%;
    left: -40px;
  }
}
@media screen and (max-width: 1100px) {
  .swiper-button-prev._voice,
  .swiper-button-next._voice {
    top: 50%;
    left: -58px;
    width: 75px;
    height: 74px;
    background-color: rgba(229, 237, 243, 0.8784313725);
    filter: drop-shadow(0 4px 5px rgba(44, 61, 86, 0.2));
    border-radius: 55px;
  }
  .swiper-button-prev._voice::after,
  .swiper-button-next._voice::after {
    position: absolute;
    right: 20px;
    font-size: 14px;
    color: #004582;
  }
}

@media screen and (max-width: 1350px) {
  .swiper-button-next._voice {
    right: -40px;
    left: auto;
  }
}
@media screen and (max-width: 1100px) {
  .swiper-button-next._voice {
    right: -58px;
    left: auto;
  }
  .swiper-button-next._voice::after {
    right: auto;
    left: 20px;
  }
}

.swiper-pagination._voice {
  padding: 0 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .swiper-pagination._voice {
    display: none;
  }
}

.p-top__voice_review_content_block {
  position: relative;
  height: 85px;
  margin: 0;
  overflow: hidden;
}

.p-top__voice_review_btn {
  position: relative;
  margin-top: 15px;
}
.p-top__voice_review_btn::before {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 105px;
  content: "";
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%);
  opacity: 1;
  transition: 0.8s;
}

.p-top__voice_review_btn a {
  position: relative;
  display: block;
  width: 200px;
  padding: 4px 10px;
  margin: 0 auto;
  font-size: 14px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #004582;
  border: solid 1px #004582;
  transition: 0.2s;
}
@media screen and (min-width: 601px) {
  .p-top__voice_review_btn a:hover {
    opacity: 0.7;
  }
}
.p-top__voice_review_btn a::before {
  position: absolute;
  top: calc(50% - 5px);
  right: 18px;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(225deg);
}

.p-top__voice_review_btn.__close::before {
  opacity: 0;
}

.p-top__voice_review_btn.__close a {
  color: #004582;
  background-color: #fff;
}
.p-top__voice_review_btn.__close a::before {
  top: calc(50% - 1px);
  border-top: 1px solid #004582;
  border-left: 1px solid #004582;
  transform: rotate(45deg);
}

.p-top__media {
  position: relative;
  display: flex;
  gap: 115px;
}
.p-top__media::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  margin: auto;
  content: "";
  background: #d7d7d7;
}
@media screen and (max-width: 1100px) {
  .p-top__media {
    flex-direction: column;
    gap: 85px;
  }
  .p-top__media::before {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .p-top__media {
    gap: 63px;
  }
}

.p-top__media_info_block {
  width: calc((100% - 70px) / 2);
}
@media screen and (max-width: 1100px) {
  .p-top__media_info_block {
    width: 100%;
  }
}

.p-top__media_link {
  position: relative;
  display: block;
  padding: 22px 35px 22px 10px;
  color: #333;
  border-bottom: solid 1px #e1e1e1;
}
.p-top__media_link:hover {
  color: #0A246A;
}
.p-top__media_link::before {
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid #0A246A;
  border-left: 2px solid #0A246A;
  transition: right 0.3s ease;
  transform: rotate(135deg);
}
.p-top__media_link:hover::before {
  right: 2px;
}
.p-top__media_link::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #4f6bb7;
  transition: width 0.3s ease;
}
.p-top__media_link:hover::after {
  width: 100%;
}

.p-top__media_sub_info {
  display: flex;
  align-items: baseline;
}

.p-top__media_time {
  margin-right: 2px;
  font-size: 16px;
  color: #004582;
}

.p-top__media_new {
  width: fit-content;
  padding: 1px 10px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #d72d48;
  border-radius: 20px;
  animation: flash 2s cubic-bezier(0, 0, 1, 1) infinite;
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.p-top__media_ttl {
  margin-top: 2px;
  line-height: 1.5;
}

.p-top__media_column_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 26px;
}
@media screen and (max-width: 600px) {
  .p-top__media_column_wrap {
    width: 100%;
    margin: 0 auto;
  }
}

.p-top__media_column_cover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 158px;
  border-radius: 4px;
  opacity: 0.2;
  transition: background-color 0.3s ease;
}

.p-top__media_column_link {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  transition: 0.2s;
}
@media screen and (max-width: 600px) {
  .p-top__media_column_link {
    margin: 0 8px;
  }
}
@media screen and (min-width: 601px) {
  .p-top__media_column_link:hover {
    color: #004582;
    background-color: #e9edf1;
  }
  .p-top__media_column_link:hover &gt; .p-top__media_column_img_wrap &gt; .p-top__media_column_cover {
    background-color: #164779;
  }
  .p-top__media_column_link:hover &gt; .p-top__media_column_txt &gt; .p-top__media_column_tag {
    background-color: #f3f3f3;
  }
  .p-top__media_column_link:hover &gt; .p-top__media_column_txt &gt; .p-top__media_column_name {
    color: #004582;
  }
}

.p-top__media_column_img_wrap {
  position: relative;
  width: 156px;
}
@media screen and (max-width: 600px) {
  .p-top__media_column_img_wrap {
    width: 124px;
  }
}

.p-top__media_column_img {
  width: 158px;
  height: 109px;
  border-radius: 4px;
  object-fit: cover;
}
@media screen and (max-width: 600px) {
  .p-top__media_column_img {
    width: 124px;
    height: 107px;
  }
}

.p-top__media_column_txt {
  flex: 1;
  padding: 7px 5px;
}

.p-top__media_column_tag {
  width: fit-content;
  padding: 1px 10px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #004582;
  background-color: #dce4eb;
  border-radius: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 600px) {
  .p-top__media_column_tag {
    margin-bottom: 2px;
  }
}

.p-top__media_column_name {
  padding: 1px 8px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
}
@media screen and (max-width: 1100px) {
  .p-top__media_column_name {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .p-top__media_column_name {
    padding: 4px 5px;
    font-size: 15px;
  }
}

.p-top__media_title {
  text-align: left;
}
.p-top__media_title::before {
  right: auto;
  bottom: -11px;
}
@media screen and (max-width: 1100px) {
  .p-top__media_title {
    text-align: center;
  }
  .p-top__media_title::before {
    right: 0;
    bottom: 0;
  }
}

@media screen and (max-width: 1100px) {
  .p-top__maker_block {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }
}

.p-top__maker_bg {
  padding: 50px 44px 3px;
  margin: -17px auto;
  background-color: #fff;
}
@media screen and (max-width: 1100px) {
  .p-top__maker_bg {
    padding: 50px 17px 3px;
    background-color: rgba(255, 255, 255, 0.86);
  }
}
@media screen and (max-width: 1100px) {
  .p-top__maker_bg {
    padding: 32px 17px 1px;
  }
}

.b-maker_pickup__box {
  position: relative;
  gap: 10px;
  width: 100%;
  margin-bottom: 0;
}
.b-maker_pickup__box::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: calc(100% - 47px);
  margin: auto;
  content: "";
  background-color: #d5d5d5;
}
@media screen and (max-width: 1100px) {
  .b-maker_pickup__box::before {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .b-maker_pickup__box {
    gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  .b-maker_pickup__box {
    gap: 25px;
  }
}

.b-maker_pickup__block {
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 1100px) {
  .b-maker_pickup__block {
    width: 100%;
  }
}

.b-maker_pickup__list {
  gap: 6px;
  border: none;
}
@media screen and (max-width: 1100px) {
  .b-maker_pickup__list {
    padding: 20px 37px 32px;
    background-color: #fff;
  }
}
@media screen and (max-width: 600px) {
  .b-maker_pickup__list {
    padding: 15px 17px 26px;
  }
}

.b-maker_pickup__listItem {
  width: calc((100% - 18px) / 4);
}
@media screen and (max-width: 1100px) {
  .b-maker_pickup__listItem {
    width: calc((100% - 24px) / 5);
  }
}
@media screen and (max-width: 600px) {
  .b-maker_pickup__listItem {
    width: calc((100% - 12px) / 3);
  }
}

.b-maker_pickup__img {
  width: 85%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .b-maker_pickup__ttl {
    padding: 5px;
    font-size: 16px;
  }
}

.p-top__faq_block {
  width: 98%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-top__faq_block {
    width: 100%;
  }
}

.b-faq__btn.__open,
.b-faq__btn:hover {
  background-color: #cedbe7;
}

.p-top__faq_wrap {
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .p-top__faq_wrap {
    margin-bottom: 32px;
  }
}

.p-top__area_ttl {
  padding: 3px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 2.5px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.p-top__area_map {
  position: relative;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: normal !important;
  width: 95%;
  height: 573px;
  margin: 46px auto 0;
  background-repeat: no-repeat;
  background-position: 231px 94px;
  background-size: 611px;
}
@media screen and (max-width: 1100px) {
  .p-top__area_map {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-top__area_map {
    margin: 25px auto 0;
  }
}
.p-top__area_map::before {
  position: absolute;
  top: -60px;
  right: 0;
  width: 187px;
  height: 200px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1100px) {
  .p-top__area_map::before {
    display: none;
  }
}

.is-webp .p-top__area_map {
  background-image: url("/img/page/top/webp/top_area_map.webp");
}
@media screen and (max-width: 1100px) {
  .is-webp .p-top__area_map {
    background-image: none;
  }
}
.is-webp .p-top__area_map::before {
  background-image: url("/img/page/top/webp/top_area_free.webp");
}

.is-no-webp .p-top__area_map {
  background-image: url("/img/page/top/top_area_map.png");
}
@media screen and (max-width: 1100px) {
  .is-no-webp .p-top__area_map {
    background-image: none;
  }
}
.is-no-webp .p-top__area_map::before {
  background-image: url("/img/page/top/top_area_free.png");
}

.p-top__area_box {
  position: absolute;
}
@media screen and (max-width: 1100px) {
  .p-top__area_box {
    position: initial;
    margin-bottom: 20px;
  }
}

.p-top__area_group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  background-color: #ececec;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.p-top__area_group a {
  position: relative;
  display: block;
  width: 80px;
  padding: 3px 12px 3px 9px;
  font-size: 16px;
  color: #4d4d4d;
  background-color: #fff;
  transition: 0.2s;
}
.p-top__area_group a::before {
  position: absolute;
  top: calc(50% - 2px);
  right: 10px;
  display: inline-block;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 1px solid #9d9d9d;
  border-left: 1px solid #9d9d9d;
  transform: rotate(135deg);
}
@media screen and (max-width: 600px) {
  .p-top__area_group a {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .p-top__area_group li {
    width: calc((100% - 16px) / 3);
  }
}

.tohoku_box {
  top: 150px;
  right: 0;
  width: 288px;
}
@media screen and (max-width: 1100px) {
  .tohoku_box {
    width: 100%;
  }
}

.area_ttl_1 {
  background-color: #78b3cc;
}

@media screen and (min-width: 601px) {
  .tohoku_box a:hover {
    color: #78b3cc;
    background-color: #eff7ff;
  }
  .tohoku_box a:hover::before {
    border-color: #78b3cc;
  }
}
.kanto_box {
  right: 0;
  bottom: 0;
  width: 207px;
}
@media screen and (max-width: 1100px) {
  .kanto_box {
    width: 100%;
  }
}

.area_ttl_2 {
  background-color: #4e8fac;
}
@media screen and (max-width: 1100px) {
  .area_ttl_2 {
    width: 100%;
  }
}

@media screen and (min-width: 601px) {
  .kanto_box a:hover {
    color: #3d9fcb;
    background-color: #f1f9fd;
  }
  .kanto_box a:hover::before {
    border-color: #3d9fcb;
  }
}
.chubu_box {
  top: 0;
  left: 340px;
  width: 201px;
}
@media screen and (max-width: 1100px) {
  .chubu_box {
    width: 100%;
  }
}

.area_ttl_3 {
  background-color: #086993;
}

@media screen and (min-width: 601px) {
  .chubu_box a:hover {
    color: #1884b3;
    background-color: #ecf7ff;
  }
  .chubu_box a:hover::before {
    border-color: #1884b3;
  }
}
.kansai_box {
  right: 226px;
  bottom: 0;
  width: 288px;
}
@media screen and (max-width: 1100px) {
  .kansai_box {
    width: 100%;
  }
}

.area_ttl_4 {
  background-color: #00457e;
}

@media screen and (min-width: 601px) {
  .kansai_box a:hover {
    color: #015eab;
    background-color: #f2f7ff;
  }
  .kansai_box a:hover::before {
    border-color: #015eab;
  }
}
.chugoku_box {
  top: 0;
  left: 0;
  width: 292px;
}
@media screen and (max-width: 1100px) {
  .chugoku_box {
    width: 100%;
  }
}

.area_ttl_5 {
  background-color: #003c67;
}

@media screen and (min-width: 601px) {
  .chugoku_box a:hover {
    color: #0b63a1;
    background-color: #eff3f9;
  }
  .chugoku_box a:hover::before {
    border-color: #0b63a1;
  }
}
.kyusyu_box {
  top: 209px;
  left: 0;
  width: 292px;
}
@media screen and (max-width: 1100px) {
  .kyusyu_box {
    width: 100%;
  }
}

.area_ttl_6 {
  background-color: #003354;
}

@media screen and (min-width: 601px) {
  .kyusyu_box a:hover {
    color: #3f6fab;
    background-color: #edf1f9;
  }
  .kyusyu_box a:hover::before {
    border-color: #3f6fab;
  }
}
.p-top__bottom_img_wrap {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

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

.p-top__resale_graph_block {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 10px;
}

.p-top__resale_graph_label_vertical {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 245px;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .p-top__resale_graph_label_vertical {
    height: 200px;
  }
}

.p-top__resale_graph_label_vertical .label {
  padding-right: 10px;
  font-size: 12px;
  line-height: 26px;
  text-align: right;
}

.p-top__resale_graph_box {
  display: flex;
  align-items: flex-end;
  height: 240px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .p-top__resale_graph_box {
    height: auto;
  }
}

.p-top__resale_graph_bar_wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 323px;
  height: 220px;
  padding: 0 12px;
  background: repeating-linear-gradient(#efefef, #efefef 20%, #fff 20%, #fff 40%);
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
@media screen and (max-width: 600px) {
  .p-top__resale_graph_bar_wrap {
    width: 100%;
    height: 180px;
  }
}

.p-top__resale_graph_inner {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .p-top__resale_graph_inner {
    width: 100%;
  }
}

.p-top__resale_graph_bar {
  position: relative;
  width: 30px;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #005f91;
  animation: graphAnim 0.9s forwards cubic-bezier(0.42, 0, 0.21, 0.97);
}
.p-top__resale_graph_bar:nth-child(2) {
  background-color: #4280b2;
}
.p-top__resale_graph_bar:nth-child(3) {
  background-color: #73a0c5;
}
.p-top__resale_graph_bar:nth-child(4) {
  background-color: #c4d6e4;
}
@media screen and (max-width: 600px) {
  .p-top__resale_graph_bar {
    width: 25px;
  }
}

.p-top__resale_graph_label_horizontal {
  display: flex;
  justify-content: space-between;
}

.p-top__resale_graph_label_horizontal .label {
  width: 25%;
  padding-top: 6px;
  font-size: 12px;
  text-align: center;
}

@keyframes graphAnim {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}</pre></body></html>