@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

html {
  font-family: "NotoSansJP", sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

body {
  margin: 0;
}

main {
  background-color: #fff;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('/font/NotoSansJP-Regular.otf') format('opentype');
  font-display: swap;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
}

@media screen and (min-width: 769px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.inline-block{
  display: inline-block;
}

.content_area {
  width: 1100px;
  margin-inline: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  .content_area {
    width: 90%;
  }
}
@media screen and (max-width: 550px) {
  .content_area {
    width: 95%;
    margin-bottom: 30px;
  }
}

.content_block {
  width: 95%;
  margin: 0 auto;
}

.footer_copyright {
  text-align: center;
  color: #979797;
  margin-top: 14px;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    margin-bottom: 86px;
  }
}

.header {
  background-color: #009362;
  position: inherit;
  z-index: inherit;
  height: auto;
}
.header.--red {
  background-color: #c70000;
}

.header_area {
  margin: auto;
  padding: 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_left {
  margin-top: 4px;
  width: 188px;
}
@media screen and (max-width: 700px) {
  .header_left {
    width: 34%;
  }
}

.header_left_img {
  width: 190px;
}
@media screen and (max-width: 700px) {
  .header_left_img {
    width: 125px;
    max-width: 100%;
  }
}

.header_tel_block {
  display: flex;
  flex-direction: column;
}

.header_tel_box {
  display: flex;
  align-items: center;
}

.header_tel_img {
  width: 20px;
}
@media screen and (max-width: 550px) {
  .header_tel_img {
    width: 14px;
  }
}

.header_tel_number {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-left: 11px;
}
@media screen and (max-width: 550px) {
  .header_tel_number {
    font-size: 22px;
  }
}

.header_tel_box_txt {
  font-size: 15px;
  color: #fff;
  margin-top: -5px;
  margin-bottom: 7px;
}
@media screen and (max-width: 550px) {
  .header_tel_box_txt {
    font-size: 12px;
  }
}

.fixed_footer_box {
  display: none;
}

@media screen and (max-width: 768px) {
  .fixed_footer_box {
    position: fixed;
    bottom: 0;
    z-index: 100;
    display: flex;
    background-color: white;
    height: 70px;
    padding: 5px 6px;
    align-items: center;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.14);
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .fixed_footer_form {
    display: flex;
    width: 35%;
    height: 100%;
    margin-right: 5px;
    padding: 5px;
    background-color: #f1667a;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    line-height: 17.5px;
    color: #fff;
    border-radius: 4px;
    flex-direction: column;
    justify-content: center;
  }
  .fixed_footer_form_sub_txt {
    font-weight: normal;
    font-size: 13px;
  }
  .fixed_footer_tel {
    display: flex;
    width: 73%;
    height: 100%;
    padding: 5px;
    font-weight: bold;
    font-size: 11px;
    text-align: center;
    color: #fff;
    background-color: #8bc53f;
    border-radius: 4px;
    justify-content: center;
    line-height: 13px;
  }
  .fixed_footer_tel_inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .fixed_footer_tel img {
    width: 30px;
    height: fit-content;
    margin-right: 9px;
  }
  .tel_number {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 23px;
  }
  .fixed_footer_active {
    opacity: 1;
    visibility: visible;
  }
}
.go_top_btn {
  position: fixed;
  bottom: 32px;
  right: 50px;
  z-index: 100;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 990px) {
  .go_top_btn {
    right: 25px;
  }
}

@media screen and (min-width: 768px) {
  .go_top_img_pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .go_top_img_pc {
    display: none;
  }
}

.go_top_active {
  opacity: 1;
  visibility: visible;
}

.cv_box_pc {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .cv_box_pc {
    display: none;
  }
}

.cv_box_sp {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 1201px) {
  .cv_box_sp {
    display: none;
  }
}

.cv_box_sp_img {
  width: 450px;
}
@media screen and (max-width: 550px) {
  .cv_box_sp_img {
    width: 324px;
  }
}

.cv_box_btn {
  position: absolute;
  top: 172px;
  left: 393px;
}
.cv_box_btn.--red {
  top: 143px;
  left: 344px;
}
.cv_box_btn:hover {
  opacity: 0.8;
}

.cv_box_btn_form_sp {
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .cv_box_btn_form_sp {
    top: 416px;
    left: 53px;
  }
}
@media screen and (max-width: 550px) {
  .cv_box_btn_form_sp {
    top: 298px;
    left: 34px;
  }
}

.cv_box_btn_tel_sp {
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .cv_box_btn_tel_sp {
    top: 252px;
    left: 50px;
  }
}
@media screen and (max-width: 550px) {
  .cv_box_btn_tel_sp {
    top: 183px;
    left: 33px;
  }
}

@media screen and (max-width: 550px) {
  .cv_box_btn_sp_img {
    width: 260px;
  }
}

.headline-1 {
  padding: 1em;
  margin: 0;
  font-size: 26px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-image: url(/ppc/lt/as/z-archives/img/ttl_bg_pc.jpg);
}
.headline-1.--red {
  background-image: url(/ppc/lt/as/z-archives/img/ttl_bg_pc_red.jpg);
}
@media screen and (max-width: 990px) {
  .headline-1 {
    background-image: url(/ppc/lt/as/z-archives/img/ttl_bg_sp.jpg);
  }
  .headline-1.--red {
    background-image: url(/ppc/lt/as/z-archives/img/ttl_bg_sp_red.jpg);
  }
}
@media screen and (max-width: 550px) {
  .headline-1 {
    font-size: 21px;
  }
}

.headline-2 {
  font-size: 21px;
  border-bottom: 2px #22C18D solid;
  padding: 0.2em 1.3em 0.5em 1.3em;
  margin-top: 35px;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}
.headline-2.--red {
  border-bottom: 2px #d10515 solid;
}
.headline-2::before {
  content: "";
  width: 10px;
  height: 92%;
  background-color: #22C18D;
  position: absolute;
  top: 0;
  left: 0;
}
.headline-2.--red::before {
  background-color: #d10515;
}

.headline-3 {
  font-size: 21px;
  border-bottom: solid 4px #c7eddf;
  padding: 7px;
  margin: 0;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 550px) {
  .headline-3 {
    font-size: 18px;
  }
}
.headline-3 .headline-3:before {
  content: "";
  border-bottom: 4px solid #22C18D;
  bottom: -4px;
  left: 0;
  position: absolute;
  width: 8%;
  z-index: 1;
}
.headline-3.--orange {
  border-bottom: solid 4px #fcf0d6;
}
.headline-3.--orange::before {
  border-bottom: 4px solid #f58638;
}

.br_txt {
  display: inline-block;
}

.headline-2_em {
  color: #22C18D;
}
.headline-2_em.--red {
  color: #c70000;
}

.archives_wrap {
  background-color: #FEFBEC;
  padding: 20px 0;
}

.archives_item_box {
  background-color: #fff;
  box-sizing: border-box;
  width: 31%;
}
@media screen and (max-width: 1200px) {
  .archives_item_box {
    width: 48%;
  }
}

@media screen and (min-width: 1201px) {
  .archives_item_box.__sp {
    display: none;
    background-color: #FEFBEC;
  }
}

@media screen and (max-width: 1200px) {
  .archives_item_box.__sp {
    background-color: #FEFBEC;
  }
}


.archives_item_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 2%;
  margin-bottom: 20px;
}

.archives_item_img {
  width: 100%;
  vertical-align: bottom;
}

.archives_info_wrap {
  padding: 10px 25px 18px;
}
@media screen and (max-width: 550px) {
  .archives_info_wrap {
    padding: 5px 10px;
  }
}

.archives_info_car {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 550px) {
  .archives_info_car {
    font-size: 15px;
  }
}

@media screen and (max-width: 550px) {
  .archives_info_maker {
    font-size: 14px;
  }
}

.archives_info_price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .archives_info_price {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 550px) {
  .archives_info_price {
    margin-top: 5px;
  }
}

.archives_info_price_tag {
  padding: 3px 18px 6px 18px;
  font-size: 16px;
  color: #fff;
  background-color: #f9870b;
  border-radius: 30px;
}
@media screen and (max-width: 1200px) {
  .archives_info_price_tag {
    font-size: 15px;
    padding: 1px 15px 3px 15px;
  }
}
@media screen and (max-width: 550px) {
  .archives_info_price_tag {
    font-size: 12px;
    padding: 0 15px 1px 15px;
  }
}
.archives_info_price_tag.--green {
  background-color: #22C18D;
}

.archives_info_price_txt {
  color: #d30c0c;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 550px) {
  .archives_info_price_txt {
    font-size: 23px;
  }
}

.archives_info_price_txt span {
  font-size: 16px;
}

.archives_info_table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 15px;
}
@media screen and (max-width: 550px) {
  .archives_info_table {
    font-size: 13px;
    margin: 5px 0;
  }
}

.archives_info_table_th,
.archives_info_table_td {
  padding: 3px;
}

.archives_info_table_th {
  font-weight: normal;
  width: 40%;
}
@media screen and (max-width: 550px) {
  .archives_info_table_th {
    text-align: left;
    line-height: 1.4;
  }
}

.archives_info_table_tr:nth-child(odd) {
  background-color: #DDF2EA;
}

@media screen and (max-width: 768px) {
  .sp_bg_green {
    background-color: #DDF2EA;
  }
}

@media screen and (max-width: 768px) {
  .archives_info_table_tr.sp_bg_white {
    background-color: #fff;
  }
}

.archives_cv_sp_img {
  width: 100%;
}

.kanpu_block {
  background-color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: bold;
  width: 810px;
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 550px) {
  .kanpu_block {
    font-size: 14px;
    padding: 12px 14px;
    line-height: 1.2;
    text-align: left;
    margin-top: -8px;
  }
}

.kanpu_block::before {
  content: "";
  display: inline-block;
  width: 112px;
  height: 107px;
  background-image: url("/ppc/lt/as/z-archives/img/tori_2.png");
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -90px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .kanpu_block::before {
    display: none;
  }
}

.kanpu_strong_txt {
  font-weight: bold;
  color: #FF5943;
}

.kanpu_attention_txt {
  color: #b9b9b9;
  font-size: 15px;
  font-weight: normal;
}
@media screen and (max-width: 550px) {
  .kanpu_attention_txt {
    font-size: 12px;
  }
}

.introduce_ttl {
  font-size: 20px;
  text-align: center;
  margin: 20px auto;
  font-weight: bold;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 990px) {
  .introduce_ttl {
    display: none;
  }
}

.introduce_ttl::before,
.introduce_ttl::after {
  content: "";
  display: inline-block;
  width: 79px;
  height: 14px;
  background-image: url("/ppc/lt/as/z-archives/img/arrow.png");
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 9px;
  left: -100px;
}

.introduce_ttl::after {
  right: -100px;
  left: inherit;
}

.introduce_ttl.--red::before,
.introduce_ttl.--red::after {
  background-image: url("/ppc/lt/as/z-archives/img/arrow_red.png");
}

.introduce_ttl_wrap {
  background-color: #fff;
  border-top: solid 3px #009362;
  border-bottom: solid 3px #009362;
}
.introduce_ttl_wrap.--red {
  border-top: solid 3px #c70000;
  border-bottom: solid 3px #c70000;
}
@media screen and (max-width: 550px) {
  .introduce_ttl_wrap {
    border: none;
  }
}

.bg_green_img {
  width: 100%;
  padding: 30px 0;
  background: url(/ppc/lt/as/z-archives/img/form_bg.png) #F5FFFB no-repeat bottom/contain;
}
.bg_green_img.--red {
  background: url(/ppc/lt/as/z-archives/img/form_bg_red.png) #fff8f8 no-repeat bottom/contain;
}

#form_w {
  position: relative;
  width: 520px;
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  border-radius: 7px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 4px 2px;
}
@media (min-width: 769px) {
  #form_w {
    margin-top: -10px;
  }
}

/* 入力フォーム　フォームスタイル */
.form_box {
  padding: 35px 20px 20px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .form_box {
    font-size: 1em;
    box-sizing: border-box;
    padding-top: 45px;
  }
}

.form_box input:not([class=submit_btn]),
.form_box select {
  width: 100%;
  padding: 3px;
  border: 1px solid #686868;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 16px;
  appearance: none;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .form_box input:not([class=submit_btn]),
  .form_box select {
    width: 100%;
    padding: 12px 6px;
  }
}
@media screen and (max-width: 375px) {
  .form_box input:not([class=submit_btn]),
  .form_box select {
    padding: 6px;
  }
}

.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;
}

.form_box input:not(.submit_btn),
.form_box select {
  height: 44px;
  background-image: url("/ppc/lt/as/z-archives/img/select_mark.png");
  background-repeat: no-repeat;
  background-position: 98% 50%;
  background-size: 7px;
}

.form_box input.no-image {
  background-image: none;
}

.form_box li input[name=as_maker],
.form_box li input[name=name],
.form_box li input[name=phone_number] {
  background-color: #ffffc9;
}

.form_submit_btn {
  max-width: 435px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  border: none;
  background-repeat: no-repeat;
  background-size: 3.5%;
  background-position: right 50px top 50%;
  background-color: #FF5943;
  box-shadow: 0 5px #EF2516;
  border-radius: 50px;
  padding: 12px 0 15px;
  font-size: 22px;
  width: 80%;
  margin: 5px 0 3px;
  cursor: pointer;
  font-family: "NotoSansJP";
}
@media screen and (max-width: 768px) {
  .form_submit_btn {
    font-size: 21px;
    width: 100%;
    margin: 5px auto;
  }
}

@media screen and (max-width: 768px) {
  .form_box dl {
    width: 95%;
    margin: 0 auto 10px;
  }
}

.form_content {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1100px) {
  .form_content {
    display: flex;
    justify-content: space-between;
  }
}

.form_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .form_row {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  #user_area {
    display: none;
    margin: 0;
  }
}

.form_title {
  display: inline-block;
  vertical-align: middle;
  width: 40%;
  text-align: left;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .form_title {
    width: 100%;
    padding: 5px 0;
    margin-bottom: 3px;
  }
}

.form_title label[for=as_maker] span {
  line-height: 1;
}

.form_area {
  width: 65%;
  max-width: 280px;
  vertical-align: middle;
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .form_area {
    max-width: inherit;
  }
}
@media screen and (max-width: 768px) {
  .form_area {
    width: 100%;
  }
}

#next_msg {
  display: none;
  text-align: left;
  padding: 0 2% 10px;
  line-height: 1.3;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  #next_msg {
    display: none;
  }
}

.req_on,
.req_off {
  margin-right: 5px;
  padding: 1px 4%;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.8em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .req_on,
  .req_off {
    padding: 2px 2%;
    font-size: 0.9em;
  }
}

.req_on {
  background: #DF2B55;
}

.req_off {
  background: #14afa8;
}

@media screen and (max-width: 768px) {
  .form_label.--block_pc {
    display: inline-block;
  }
}

@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 {
  color: #DF2B55;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .err_msg {
    padding: 2% 0 0;
  }
}

/* 送信ボタン後のloading画像 */
#loading_img {
  display: none; /* 編集しないで下さい */
  width: 10%;
  margin: 15px 45%;
  /* サイズや位置は追記して変更してください。*/
}
@media screen and (max-width: 414px) {
  #loading_img {
    width: 15%;
    margin: 15px 43%;
  }
}

/* レイヤー */
#layer {
  display: none; /* 編集しないで下さい */
  position: fixed; /* 編集しないで下さい */
  width: 100%; /* 編集しないで下さい */
  height: 100%; /* 編集しないで下さい */
  top: 0; /* 編集しないで下さい */
  left: 0; /* 編集しないで下さい */
  z-index: 990; /* 編集しないで下さい */
  background-color: #fff;
  opacity: 0.8;
}

/* レイヤーのコンテンツ */
#close-btn {
  text-align: right;
  font-size: 1.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #close-btn {
    padding: 3%;
  }
}

#dummyBox {
  position: absolute;
  left: 0;
  opacity: 0;
}

#tab_list {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  padding-left: 0;
}

#tab_list li {
  display: table-cell;
  padding: 0;
  float: left;
  position: relative;
  width: 25%;
  margin-bottom: 20px;
  font-size: 1em;
  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_head {
  background: #e8e8e8;
  font-size: 0.75em;
  color: #afafaf;
}

#tab_list li.tab_active[data-type=maker],
#tab_list li.tab_active[data-type=car] {
  color: #fff;
  background: #DF2B55;
}

#tab_list li.tab_active[data-type=maker] .tab_list_head,
#tab_list li.tab_active[data-type=car] .tab_list_head {
  background: #ffdede;
  color: #a80000;
}

#tab_list li.tab_active[data-type=model_year],
#tab_list li.tab_active[data-type=mileage] {
  background: #14afa8;
  color: #fff;
}
#tab_list li.tab_active[data-type=model_year]::after,
#tab_list li.tab_active[data-type=mileage]::after {
  color: #14afa8;
}

#tab_list li.tab_active[data-type=model_year] .tab_list_head,
#tab_list li.tab_active[data-type=mileage] .tab_list_head {
  background: #e3f3c8;
  color: #14afa8;
}

#tab_list li.tab_active::after {
  content: "▼";
  position: absolute;
  color: #14afa8;
  bottom: -1em;
  left: 0;
  right: 0;
}

#tab_list li.tab_active[data-type=maker]:after,
#tab_list li.tab_active[data-type=car]:after {
  color: #ec0000;
}

#tab_list li.disable {
  color: #999;
}

#tab_list .tab_list_head {
  display: block;
}

.tab_box {
  display: none; /* 編集しないで下さい */
}

.tab_box ul {
  margin-bottom: 15px;
  padding-left: 0;
  border: solid 1px #bebebe;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .tab_box ul {
    border: none;
  }
}

.tab_box li {
  text-decoration: underline;
  cursor: pointer; /* 編集しないで下さい */
  display: inline-block;
  width: 24%;
  color: #0170b5;
  box-sizing: border-box;
  padding: 7px 10px 10px 10px;
}
.tab_box li:hover {
  text-decoration: none;
  background: #efefef;
}
@media screen and (max-width: 768px) {
  .tab_box li {
    width: 100%;
    padding: 20px 10px;
    font-size: 1em;
    border-bottom: 1px solid #ddd;
  }
}

#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: 16px;
  font-weight: 600;
  overflow-y: scroll;
  box-sizing: border-box;
  border: 1px solid #999;
}
@media screen and (max-width: 768px) {
  #layer_carbox {
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 1em;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (min-width: 768px) {
  .tab_box #car_list li {
    width: 35%;
  }
}

@media screen and (min-width: 768px) {
  .tab_box #model_year_list li {
    width: 35%;
  }
}

@media screen and (min-width: 768px) {
  #next_btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #next_btn {
    border-radius: 10px;
    display: block;
    width: 90%;
    margin: 5px auto 10px;
    padding: 5px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAABHNCSVQICAgIfAhkiAAAALdJREFUKFOVkqEKw0AQRG8/sv8QWypal5jKqIj42nxAY/MXUTFVNTWFQiBwnREL5djrbRaGmHlzN5eVGOM9hHAUkRlf9wjACPcG9VCDgJeHVlC9hBqGIIBh2UlBNfLavP6YI3Og+gma/UsgA8z+HtDsvwf87X/YCz5Bn6GbF2TPDqrx0m8e7QEn+Kp0s/6BDwAnAIP1Ly1whbGFroA+3gVg+gXAUtpXPZErxh7s4xqCfN62tNRp2hfooWM4GtvWVAAAAABJRU5ErkJggg==");
    background-repeat: no-repeat;
    background-size: 3.5%;
    background-position: right 50px top 50%;
    box-sizing: border-box;
    background-color: #FF5943;
    box-shadow: 0 5px #EF2516;
    font-size: 1.3em;
  }
}
@media screen and (max-width: 414px) {
  #next_btn {
    width: 95%;
    font-size: 1.7em;
    background-position: right 30px top 50%;
  }
}

@media screen and (max-width: 768px) {
  #next_btn.disable {
    background: #dadada;
    color: #ffffff;
    font-weight: 500;
    text-shadow: -2px -1px 2px #A8A8A8;
    box-shadow: 0 5px #bdbdbd;
    margin-top: 8px;
  }
}

@media screen and (max-width: 768px) {
  .form_title label {
    display: inline-block;
    vertical-align: sub;
  }
}

.submit_btn_box {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .submit_btn_box {
    display: none;
    text-align: center;
  }
}

dl {
  text-align: center;
}

.form_content_area {
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 550px) {
  .form_content_area {
    margin: 0 auto 12px auto;
  }
}

.form_set {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 23px;
}

.form_check_pc {
  width: 282px;
  margin-right: 14px;
}
@media screen and (max-width: 990px) {
  .form_check_pc {
    display: none;
  }
}

.form_ttl {
  background-color: #F9B132;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 11px 10px;
  text-align: center;
  position: relative;
  border-radius: 7px 7px 0 0;
}
@media screen and (max-width: 768px) {
  .form_ttl {
    display: none;
  }
}

.form_ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f9a22a;
  width: 100px;
  height: 80%;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.form_ttl::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f9a22a;
  width: 100px;
  height: 80%;
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
  border-radius: 7px;
}

.form_ttl_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .form_ttl_sp {
    display: block;
    position: absolute;
    top: -45px;
    width: 100%;
    right: 0;
    left: 0;
  }
}

.form_ttl_sp_img {
  width: 390px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.form_wrap {
  position: relative;
  max-width: 100%;
}

.form_wrap::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 105px;
  background-image: url("/ppc/lt/as/z-archives/img/tori_1.png");
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -52px;
  right: 6px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .form_wrap::before {
    display: none;
  }
}

.form_pref {
  margin-bottom: 18px;
}

.form-agreement {
  margin: 5px 0 10px
}

@media screen and (max-width: 768px) {
  .form-agreement {
    font-size: 13px
  }
}

.form-agreement a {
  color: #29aae1
}