@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

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

a {
  color: #333;
  text-decoration: none;
}

@media screen and (min-width: 750px) {
  .pc_none {
    display: none;
  }
}
body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

section {
  max-width: 750px;
  margin: auto;
}

.fv {
  position: relative;
  background-color: #E60012;
}
.fv .fv__btn-link {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 47%;
  height: 19%;
}

.cta {
  padding: 1em 0;
}
.cta .cta_block {
  width: 94%;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0.6em 0.6em 0;
}
.cta .cta_block .cta_lead {
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin: 0 0.4em 1em;
  padding-bottom: 0.4em;
}
.cta .cta_block .cta_btn {
  display: block;
  width: 94%;
  text-align: center;
  margin: 0 auto 1em;
}

.about {
  padding: 0 0 1em;
}
.about .about_block {
  width: 94%;
  background: #fff;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 0 auto;
  padding: 1.2em 1em;
}
.about .about_title {
  color: #1f3d6b;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.8em;
  padding-bottom: 0.6em;
}
.about .about_text {
  line-height: 1.8;
}

.products {
  padding: 1em 0 0;
  text-align: center;
}
.products .products_title {
  width: 50%;
  font-size: 2em;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  margin: 0 auto 0.3em;
  padding-bottom: 0.3em;
}
.products .products_lead {
  font-size: 1.1em;
  margin-bottom: 2em;
}
.products .products_list {
  width: 94%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.products .products_list .products_item {
  width: 50%;
  padding: 1em;
}
.products .products_list .products_item:nth-child(-n+2) {
  border-bottom: 1px solid #eee;
}
.products .products_list .products_item:nth-child(odd) {
  border-right: 1px solid #eee;
}
.products .products_list .products_item .products_img {
  width: 80%;
  margin: 0 auto 1rem;
}
.products .products_list .products_item .products_name {
  font-size: 1.2em;
  font-weight: bold;
}

.point {
  padding: 1.5em 0 0.6em;
}
.point .point_inner {
  width: 94%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1em;
}
.point .point_icon {
  width: 30%;
  max-width: 140px;
}
.point .point_content {
  width: 70%;
}
.point .point_title {
  font-size: 1.4em;
  font-weight: 700;
  color: #e85a00;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.1em;
}
.point .point_text {
  font-size: 1.1em;
  font-weight: 700;
  color: #b04912;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.1em;
  margin-bottom: 0.2em;
}
.point .point_accent {
  color: #e85a00;
  font-size: 1.3em;
}
.point .point_time {
  font-size: 0.9em;
  color: #777;
}

.flow {
  background: #feeee9;
  text-align: center;
  padding: 1em 0 1.4em;
}
.flow .flow_title {
  font-size: 1.6em;
  color: #d35400;
  margin-bottom: 1em;
}
.flow .flow_list {
  list-style: none;
  width: 94%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.flow .flow_list .flow_item {
  position: relative;
  width: 32%;
  background: #fff;
  padding: 0.8em 0.4em 0.6em;
  border: 2px solid #f08a24;
  border-radius: 16px;
}
.flow .flow_list .flow_item .flow_num {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff7a00;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  border-radius: 50%;
  top: -12px;
  left: -10px;
  z-index: 1;
}
.flow .flow_list .flow_item .flow_num::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 19px solid #ff7a00;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  bottom: -7px;
  left: 16px;
  transform: rotate(-34deg);
  z-index: -1;
}
.flow .flow_list .flow_item .flow_icon {
  width: 60%;
  margin: 0 auto 0.4em;
}
.flow .flow_list .flow_item .flow_text {
  font-size: 0.9em;
  font-weight: 700;
  color: #8a3b00;
  line-height: 1.5;
}
.flow .flow_list .flow_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #f08a24;
}

.bank {
  padding: 2em 0;
  background: #eef3f9;
}
.bank .bank_inner {
  width: 94%;
  margin: 0 auto;
}

.bank_title {
  display: grid;
  gap: 8px 15px;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: ". header ." "lead lead lead";
  margin-bottom: 0.6em;
}
.bank_title .bank_icon, .bank_title h2 {
  grid-area: header;
}
.bank_title .bank_icon {
  width: 36px;
  height: 36px;
}
.bank_title h2 {
  color: #2d5fa8;
  font-size: 1.6em;
  margin-left: 42px;
}
.bank_title .bank_lead {
  grid-area: lead;
}
@media screen and (min-width: 750px) {
  .bank_title {
    width: 90%;
    gap: 0 10px;
    grid-template-areas: "icon title" "icon lead";
    grid-template-columns: 70px auto;
    margin: 0 auto 1em;
  }
  .bank_title .bank_icon {
    grid-area: icon;
  }
  .bank_title h2 {
    grid-area: title;
    margin-left: 0;
  }
  .bank_title .bank_icon {
    width: 70px;
    height: 70px;
  }
}

.bank_box {
  display: flex;
  gap: 0.8em;
  background: #fff;
  border-radius: 12px;
  padding: 1em;
}
.bank_box .bank_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 70%;
  list-style: none;
}
.bank_box .bank_list li {
  width: 32%;
}
.bank_box .bank_map {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice {
  padding: 2em 0;
}
.voice .voice_inner {
  width: 94%;
  margin: 0 auto;
}
.voice .voice_inner .voice_title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5em;
}
.voice .voice_inner .voice_item {
  border-radius: 12px;
  padding: 1.2em;
  margin-bottom: 1.4em;
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.1);
}
.voice .voice_inner .voice_item .voice_head {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 0.6em;
}
.voice .voice_inner .voice_item .voice_head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.voice .voice_inner .voice_item .voice_head .voice_name {
  font-weight: bold;
}
.voice .voice_inner .voice_item .voice_head .voice_star {
  color: #f08a24;
  font-size: 1.1em;
}
.voice .voice_inner .voice_text {
  font-size: 0.9em;
  border-top: 1px solid #eee;
  padding-top: 0.6em;
}

.faq {
  padding: 2em 0;
  background: #fff2e7;
}
.faq .faq_title {
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
  color: #e85a00;
  margin-bottom: 1em;
}
.faq .faq_list {
  width: 90%;
  margin: 0 auto;
}
.faq .faq_list .faq_item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 0.8em;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.faq .faq_list .faq_item .faq_q {
  display: flex;
  align-items: center;
  gap: 0.6em;
  width: 100%;
  font-size: 1em;
  padding: 0.8em;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: #e85a00;
}
.faq .faq_list .faq_item .faq_q .faq_icon {
  background: #f08a24;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}
.faq .faq_list .faq_item .faq_q p {
  width: 100%;
  text-align: left;
}
.faq .faq_list .faq_item .faq_q .faq_plus {
  position: relative;
  width: 20px;
  height: 20px;
}
.faq .faq_list .faq_item .faq_q .faq_plus::before, .faq .faq_list .faq_item .faq_q .faq_plus::after {
  content: "";
  position: absolute;
  background: #e85a00;
}
.faq .faq_list .faq_item .faq_q .faq_plus::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq .faq_list .faq_item .faq_q .faq_plus::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.faq .faq_list .faq_item .faq_a {
  display: none;
  padding: 0 0.8em 0.8em;
  font-size: 0.9em;
  line-height: 1.6;
  color: #333;
}
.faq .faq_list .faq_item .faq_a span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e85a00;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 0.4em;
}
.faq .faq_list .faq_item.is-open .faq_a {
  display: block;
}
.faq .faq_list .faq_item.is-open .faq_plus::after {
  display: none;
}

.contact {
  background: #f3f3f3;
  padding: 2em 0;
}
.contact h2 {
  text-align: center;
  padding: 0.6em 0;
}

.form_section {
  width: 94%;
  margin: 0 auto;
}
.form_section dl dt {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.2em;
}
.form_section dl dd {
  border-bottom: 1px solid #cacaca;
  margin-bottom: 1.4em;
  padding-bottom: 1.4em;
}
.form_section input[type=text], .form_section input[type=email], .form_section input[type=tel], .form_section input[type=number] {
  width: 100%;
  padding: 0.4em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: #fff;
}
.form_section input[type=radio], .form_section input[type=checkbox] {
  accent-color: #EB4D4B;
  transform: scale(1.6);
}
.form_section input[type=radio]:checked + span,
.form_section input[type=checkbox]:checked + span {
  color: #EB4D4B;
  font-weight: bold;
}
.form_section input[type=number] {
  width: 80%;
}
.form_section .amount {
  display: flex;
  align-items: flex-end;
}
.form_section .amount input[type=number] {
  margin-right: 0.3em;
}
.form_section i .required, .form_section i .optional {
  display: inline-block;
  background: #ff5f62;
  color: #fff;
  font-size: 0.85em;
  font-style: normal;
  font-weight: normal;
  border-radius: 6px;
  margin-left: 0.4em;
  padding: 0 0.4em;
}
.form_section i .optional {
  background: #727272;
}
.form_section dt.required_dt {
  display: none;
}
.form_section .error_blank {
  color: #ff0000;
}
.form_section .small {
  font-size: 0.9em;
}
@media screen and (min-width: 750px) {
  .form_section dl {
    font-size: 1.6rem;
  }
  .form_section input[type=text], .form_section input[type=email], .form_section input[type=tel], .form_section input[type=number] {
    padding: 0.6em;
    font-size: 1.6rem;
  }
  .form_section .small {
    font-size: 0.8em;
  }
}

.radio_group {
  display: flex;
  flex-direction: column;
}
.radio_group label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1.6;
  padding: 0.6em 0.2em;
  cursor: pointer;
}

.select_wrap {
  position: relative;
}
.select_wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.select_wrap select {
  width: 100%;
  background: #fff;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.6em;
  appearance: none;
}
@media screen and (min-width: 750px) {
  .select_wrap select {
    font-size: 2rem;
  }
}

.card_group {
  display: flex;
  gap: 10px;
}
.card_group label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 16px;
  line-height: 1.6;
  padding: 0.6em 0.2em;
  cursor: pointer;
}
@media screen and (min-width: 750px) {
  .card_group label {
    font-size: 2rem;
  }
}

.form_text {
  height: 14em;
  overflow-y: auto;
  background: #fff;
  font-size: 0.9em;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1em;
  padding: 0.8em;
}
.form_text p {
  margin-bottom: 1em;
}

.required_box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 1em 0;
  padding: 0 0.4em;
}
.required_box .required_text {
  background: #ff5454;
  color: #fff;
  margin-right: 0.8em;
  padding: 0.2em 0.8em;
}
.required_box label {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-weight: bold;
  line-height: 1.6;
  padding: 0.6em 0.2em;
  cursor: pointer;
}
@media screen and (min-width: 750px) {
  .required_box .required_text {
    font-size: 0.8em;
  }
}

.form_submit {
  text-align: center;
  padding: 0 0 2.4em;
}
.form_submit .form_submit_button {
  width: 90%;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  background: #1f6dff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
  padding: 0.8em 0;
}

.company {
  max-width: 750px;
  margin: 0 auto;
  padding: 1.5em 0 4em;
}
.company .company_title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.6em;
  text-align: center;
}
.company .company_table {
  width: 94%;
  border-collapse: collapse;
  margin: 0 auto 1em;
}
.company .company_table th, .company .company_table td {
  padding: 0.5em 0;
  font-size: 1.2rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.company .company_table th {
  width: 20%;
}
.company .company_table tr:last-child th,
.company .company_table tr:last-child td {
  border-bottom: none;
}

.fixed_cta {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.fixed_cta .fixed_wrap {
  max-width: 750px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 0.8em;
  padding: 0.4em;
}
.fixed_cta .fixed_wrap .fixed_cta_btn {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.9em 0;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
}
.fixed_cta .fixed_wrap .fixed_icon {
  width: 1.4em;
}
.fixed_cta .fixed_wrap .fixed_cta_btn_tel {
  background: #fe7317;
}
.fixed_cta .fixed_wrap .fixed_cta_btn_mail {
  background: #e74421;
}