@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,600;1,14..32,600&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #222222;
  overflow-x: hidden;
}

.back_circle {
  position: relative;
}
.back_circle:before {
  content: "";
  width: 50%;
  max-width: 350px;
  aspect-ratio: 1/2;
  background-image: url(../img/circle.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  z-index: -1;
}
.back_circle.right:before {
  right: 0;
}
.back_circle.left:before {
  left: 0;
  transform: rotate(180deg);
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

img {
  object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1080px;
  padding: 100px 0;
  margin: 0 auto;
}
.container_long {
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 60px 0;
  }
}

.flex_box {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}

.page_title {
  background-image: url(../img/page_title_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page_title.faq {
  background-image: url(../img/fv_faq.webp);
}
.page_title.contact {
  background-image: url(../img/fv_contact.webp);
}
.page_title.privacy {
  background-image: url(../img/fv_privacy.webp);
}
.page_title.sitemap {
  background-image: url(../img/fv_sitemap.webp);
}
.page_title .container {
  padding: 60px 0;
}
.page_title h2 {
  margin-bottom: 0;
  font-size: 3.6rem;
}
.page_title h2 span {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .page_title .container {
    padding: 30px 0;
  }
}

#pan {
  width: 90%;
  max-width: 1080px;
  margin: 10px auto 0;
  color: #D9D9D9;
  font-weight: 500;
}
#pan li {
  font-size: 1.4rem;
  display: inline-block;
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
}
#pan li::before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 0px;
}
#pan li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
  color: #FF7F48;
}
#pan li:last-child::before {
  display: none;
}
#pan a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  #pan {
    margin-left: 20px;
  }
}

.btn {
  width: 320px;
  padding: 25px;
  border-radius: 50px;
  border: 1px solid #F05A1A;
  background-color: #F05A1A;
  color: #ffffff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
.btn:hover {
  background-color: #ffffff;
  color: #F05A1A;
}
.btn_box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 280px;
    padding: 20px;
    font-size: 2rem;
  }
}

.link_text {
  font-weight: 500;
  text-decoration: underline;
}
.link_text:hover {
  opacity: 0.7;
}
.link_text_arrow {
  color: #F05A1A;
  font-family: "Inter", sans-serif;
  position: relative;
}
.link_text_arrow span {
  display: inline-block;
  width: 120px;
  height: 2px;
  border-radius: 999px;
  margin-top: 30px;
  background-color: #F05A1A;
  position: absolute;
  bottom: -5px;
  left: 5px;
  transition: 0.3s ease;
}
.link_text_arrow span:before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: #F05A1A;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
}
.link_text_arrow:hover span {
  transform: translateX(10px);
}

.head_text {
  margin-bottom: 40px;
  color: #F05A1A;
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  font-style: italic;
  letter-spacing: 0;
}
.head_text span {
  display: block;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.03em;
}
.head_text_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-style: normal;
}
.head_text_ja span {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-style: italic;
}
.head_text_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .head_text {
    font-size: 3rem;
  }
  .head_text_ja {
    font-size: 2.6rem;
  }
  .head_text_ja span {
    font-size: 1.6rem;
    margin-top: 5px;
  }
}

.makerline {
  display: inline-block;
  background: linear-gradient(transparent 70%, #FF7F48 30%);
}

.orange_border_box {
  border: 3px solid #F05A1A;
  border-radius: 15px;
  background-color: #ffffff;
}
.orange_border_title {
  border-bottom: 1px solid #F05A1A;
  padding-bottom: 7px;
  margin-bottom: 10px;
  color: #F05A1A;
  font-size: 2rem;
}

.tel_num_text {
  text-decoration: underline;
}
.tel_num:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .tel_num {
    pointer-events: none;
  }
  .tel_num_text {
    pointer-events: none;
    text-decoration: none;
  }
}

.scroll_top {
  font-size: 5rem;
  color: #F05A1A;
  position: fixed;
  bottom: 15px;
  right: 30px;
  z-index: 3;
  transform: rotate(-90deg);
}
.scroll_top:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .scroll_top {
    font-size: 3.6rem;
    bottom: 10px;
    right: 10px;
  }
}

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
#contactLink {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #F05A1A;
  color: #ffffff;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 5;
}
#contactLink li {
  border-right: 1px solid #ffffff;
}
#contactLink li:last-child {
  border-right: none;
}
#contactLink a {
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}
#contactLink a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #contactLink {
    display: none;
  }
}

.contact_link_pc {
  display: block;
  width: 160px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 30px 20px;
  background-color: #F05A1A;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
  position: fixed;
  bottom: 10px;
  right: 25px;
  z-index: 3;
}
.contact_link_pc:before {
  content: "";
  width: 105%;
  aspect-ratio: 1/1;
  border: 1px solid #F05A1A;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.contact_link_pc i {
  display: block;
  margin: 0 auto 5px;
  font-size: 4rem;
}
.contact_link_pc:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .contact_link_pc {
    display: none;
  }
}

.header {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.header_top_content {
  border-bottom: 1px solid #F05A1A;
  padding: 5px 20px;
  align-items: center;
  justify-content: space-between;
}
.header_logo a {
  width: 300px;
}
.header_logo a:hover {
  opacity: 0.7;
}
.header_logo img {
  width: 100%;
}
.header_contact_btn_list {
  align-items: center;
  gap: 15px;
}
.header_contact_btn_list .btn {
  width: 175px;
  padding: 5px 5px 10px;
  font-size: 1.4rem;
  line-height: 1.2;
}
.header_contact_btn_list .btn span {
  font-size: 1.2rem;
}
.header_bottom_content {
  padding: 7px 0;
}
.header_bottom_content ul {
  align-items: center;
  flex-wrap: wrap;
}
.header_bottom_content li:first-child a {
  border-left: 1px solid #F05A1A;
}
.header_bottom_content a {
  display: block;
  border-right: 1px solid #F05A1A;
  padding: 10px 50px;
}
.header_bottom_content a:hover {
  color: #F05A1A;
}
@media screen and (max-width: 767px) {
  .header_logo a {
    width: 180px;
  }
  .header_top_content {
    padding: 5px 10px;
    flex-direction: row;
  }
  .header_contact_btn_list {
    display: none;
  }
  .header_bottom_content {
    display: none;
  }
}

.burger_btn {
  display: none;
  color: #F05A1A;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.burger_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .burger_btn {
    display: block;
  }
}

.overlay {
  display: none;
  width: 100%;
  padding: 90px 20px;
  background-color: #ffffff;
  box-shadow: 0 0 20px #e5e5e5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.overlay .header_contact_btn_list {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.overlay .header_contact_btn_list .btn {
  width: 160px;
}
.overlay .header_contact_btn_list + ul {
  border-bottom: 1px solid #F05A1A;
}
.overlay .header_contact_btn_list + ul li {
  border-top: 1px solid #F05A1A;
}
.overlay .header_contact_btn_list + ul a {
  display: block;
  padding: 10px 15px;
  position: relative;
}
.overlay .header_contact_btn_list + ul a i {
  position: absolute;
  top: 15px;
  right: 25px;
  transition: 0.3s ease;
}
.overlay .header_contact_btn_list + ul a:hover {
  opacity: 0.7;
}
.overlay .header_contact_btn_list + ul a:hover i {
  right: 20px;
}
.overlay i {
  color: #F05A1A;
}
.overlay i.fa-xmark {
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 15px;
  right: 15px;
}
.overlay i.fa-xmark:hover {
  opacity: 0.7;
}
.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  border-top: 2px solid #F05A1A;
}
.footer a:hover {
  opacity: 0.7;
}
.footer_top_content .container.flex_box {
  padding: 70px 0;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px 50px;
}
.footer_top_content_left {
  width: 50%;
  max-width: 360px;
}
.footer_top_content_left a {
  margin-bottom: 50px;
}
.footer_top_content_right {
  flex: 1;
  max-width: 460px;
}
.footer_top_content_right dl {
  margin-bottom: 30px;
  font-weight: 500;
}
.footer_top_content_right a {
  display: block;
}
.footer_shop_address {
  flex-wrap: wrap;
}
.footer_shop_address dt {
  width: 100px;
}
.footer_shop_address dd {
  width: calc(100% - 100px);
}
.footer_shop_address dd:not(:last-child) {
  margin-bottom: 30px;
}
.footer_shop_address dd a {
  margin-bottom: 0;
}
.footer_caution_message {
  margin-bottom: 15px;
  color: #F05A1A;
  font-size: 2rem;
  font-weight: 700;
}
.footer_caution_message + a img {
  margin: 0 0 30px auto;
}
.footer_secom_message + a img {
  margin: 0 0 0 auto;
}
.footer_middle_content {
  background-color: #FFECD6;
}
.footer_middle_content .container {
  padding: 70px 0;
}
.footer_middle_content ul {
  justify-content: center;
  justify-content: space-between;
  gap: 30px 50px;
}
.footer_middle_content li {
  width: 100%;
  max-width: 550px;
  border-radius: 15px;
  padding: 40px 50px;
  background-color: #ffffff;
}
.footer_middle_content li:nth-child(1) {
  border-color: #E50012;
}
.footer_middle_content li p {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.footer_middle_content li dd:nth-of-type(1) {
  margin-bottom: 10px;
}
.footer_menu {
  background-color: #F05A1A;
  color: #ffffff;
}
.footer_menu .container {
  padding: 20px 0;
}
.footer_menu ul {
  margin-bottom: 10px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 50px;
  font-size: 1.4rem;
}
.footer_menu .copyright {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer_top_content .container.flex_box {
    padding: 45px 0;
  }
  .footer_top_content_left {
    width: 100%;
  }
  .footer_top_content_left a {
    width: 150px;
    margin-bottom: 15px;
  }
  .footer_top_content_right {
    max-width: none;
  }
  .footer_top_content_right dl {
    margin-bottom: 20px;
  }
  .footer_shop_address dt {
    width: 100%;
  }
  .footer_shop_address dd {
    width: 100%;
  }
  .footer_shop_address dd:not(:last-child) {
    margin-bottom: 15px;
  }
  .footer_caution_message {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  .footer_secom_message {
    margin-bottom: 10px;
  }
  .footer_middle_content .container {
    padding: 45px 0;
  }
  .footer_middle_content li {
    padding: 30px;
  }
  .footer_middle_content li p {
    font-size: 1.8rem;
  }
  .footer_menu ul {
    align-items: flex-start;
  }
  .footer_menu .copyright {
    text-align: left;
  }
}

.main_visual_slider {
  width: 100%;
}
.main_visual .slick-slider.only_sp {
  display: none;
}
.main_visual .slick-next,
.main_visual .slick-prev {
  width: 50px;
  height: 50px;
  z-index: 2;
}
.main_visual .slick-next:before,
.main_visual .slick-prev:before {
  font-size: 5rem;
  opacity: 1;
}
.main_visual .slick-prev {
  left: 0 !important;
}
.main_visual .slick-next {
  right: 0;
}
@media screen and (max-width: 767px) {
  .main_visual .slick-slider.only_sp {
    display: block;
  }
  .main_visual .slick-slider.only_pc {
    display: none;
  }
  .main_visual .slick-next,
  .main_visual .slick-prev {
    width: 30px;
    height: 30px;
  }
  .main_visual .slick-next:before,
  .main_visual .slick-prev:before {
    font-size: 3.5rem;
  }
  .main_visual .slick-prev {
    left: 10px !important;
  }
  .main_visual .slick-next {
    right: 10px;
  }
}

.news .container {
  align-items: flex-start;
  gap: 20px 10%;
}
.news .head_text {
  margin-bottom: 0;
}
.news_content_area {
  flex: 1;
  max-width: 700px;
}
.news li:not(:last-child) {
  border-bottom: 1px solid #DCDDDD;
}
.news li a {
  display: block;
  width: 100%;
}
.news li a:hover {
  color: #F05A1A;
}
.news dl {
  flex-wrap: wrap;
}
.news dt,
.news dd {
  padding: 20px 25px;
}
.news_date {
  width: 130px;
  color: #B5B5B6;
  font-weight: 600;
}
.news_title {
  width: calc(100% - 130px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-weight: 500;
}
.news .btn_box {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .news_content_area {
    width: 100%;
    max-width: none;
  }
  .news dt {
    padding: 10px 10px 5px;
  }
  .news dd {
    padding: 0 10px 10px;
  }
  .news_date {
    width: 100%;
  }
  .news_title {
    width: 100%;
  }
  .news .btn_box {
    padding-right: 40px;
  }
}

.point {
  background-color: #FFECD6;
  text-align: center;
  position: relative;
}
.point:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 50vw 0 50vw;
  border-color: #FFECD6 #ffffff transparent #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.point_title.top {
  margin-bottom: 80px;
  font-size: 2.4rem;
  font-weight: 500;
}
.point_title.top img {
  display: inline-block;
  margin-right: 10px;
}
.point ul {
  flex-wrap: wrap;
  align-items: center;
  gap: 80px 40px;
}
.point li {
  width: 100%;
  max-width: 330px;
  padding: 80px 0 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.point li p {
  flex: 1;
  font-size: 2rem;
  line-height: 1.2;
}
.point li p span {
  font-size: 3.2rem;
}
.point li img {
  margin: 25px auto 0;
}
.point_icon {
  display: inline-block;
  width: 105px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 20px;
  background-color: #F05A1A;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.point_icon i {
  display: block;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .point_title.top {
    font-size: 2.2rem;
  }
  .point_title.top img {
    width: 150px;
    margin-right: 5px;
  }
  .point li p {
    font-size: 1.8rem;
  }
  .point li p span {
    font-size: 2.4rem;
  }
  .point li img {
    margin: 25px auto 0;
  }
}

.step_title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
.step_title span {
  font-size: 3.6rem;
}
.step.loan ul.flex_box:nth-of-type(1) {
  margin-bottom: 0;
}
.step ul.flex_box {
  align-items: center;
}
.step ul.flex_box:nth-of-type(1) {
  margin-bottom: 60px;
  gap: 30px;
}
.step ul.flex_box:nth-of-type(1) li {
  width: 235px;
  aspect-ratio: 1/1;
  text-align: center;
}
.step ul.flex_box:nth-of-type(1) li h3 {
  margin-bottom: 30px;
  font-size: 2rem;
}
.step ul.flex_box:nth-of-type(1) li:not(:last-child) {
  position: relative;
}
.step ul.flex_box:nth-of-type(1) li:not(:last-child):after {
  font-family: FontAwesome;
  content: "\f0da";
  color: #D9D9D9;
  font-size: 4rem;
  position: absolute;
  top: 50%;
  right: -27px;
  transform: translateY(-50%);
}
.step ul.flex_box:nth-of-type(2) {
  gap: 20px 40px;
}
.step ul.flex_box:nth-of-type(2) li {
  width: 50%;
  max-width: 500px;
  padding: 45px 10px;
  text-align: center;
}
.step ul.flex_box:nth-of-type(2) li p {
  margin-bottom: 25px;
  font-size: 2.4rem;
  font-weight: 500;
}
.step ul.flex_box:nth-of-type(2) li img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .step_title {
    font-size: 2.2rem;
  }
  .step_title span {
    font-size: 2.8rem;
  }
  .step ul.flex_box:nth-of-type(1) {
    margin-bottom: 60px;
    gap: 50px;
  }
  .step ul.flex_box:nth-of-type(1) li:not(:last-child):after {
    top: 95%;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .step ul.flex_box:nth-of-type(2) {
    gap: 40px;
  }
  .step ul.flex_box:nth-of-type(2) li {
    width: 100%;
  }
  .step ul.flex_box:nth-of-type(2) li p {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}

.cta {
  background-image: url(../img/cta_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta .container {
  padding: 60px 0;
}
.cta ul {
  justify-content: center;
  align-items: center;
  gap: 20px 50px;
}
.cta li {
  width: 100%;
  max-width: 400px;
}
.cta .btn {
  width: 100%;
  padding: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.cta .btn span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.cta.loan {
  margin-bottom: 120px;
}
.cta.shop {
  margin-bottom: 50px;
}
.cta.shop p {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}
.cta.shop ul {
  gap: 15px 50px;
  align-items: center;
}
.cta.shop .btn {
  padding: 15px;
  font-size: 1.8rem;
}
.cta.shop .btn span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cta .container {
    padding: 40px 0;
  }
  .cta.loan {
    margin-bottom: 50px;
  }
  .cta.shop {
    margin-bottom: 30px;
  }
  .cta.shop p {
    margin-bottom: 20px;
  }
  .cta.shop .btn {
    padding: 10px;
    font-size: 1.6rem;
  }
  .cta.shop .btn span {
    font-size: 1.4rem;
  }
}

.column {
  margin-top: 100px;
}
.column ul {
  gap: 20px;
}
.column li {
  margin: 0 10px;
}
.column .slick-list {
  padding-bottom: 30px !important;
}
.column a {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px #E5e5e5;
  cursor: pointer;
}
.column a:hover {
  opacity: 0.7;
  transform: translateY(10px);
}
.column img {
  width: 100%;
  aspect-ratio: 4/3;
}
.column_text_area {
  padding: 20px;
  background-color: #ffffff;
}
.column_title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.6rem;
  font-weight: 500;
}
.column_date {
  margin: 5px 0;
  color: #AEAEAE;
  font-size: 1.4rem;
  font-weight: 500;
}
.column_text {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .column {
    margin-top: 50px;
  }
}

.access ul {
  border-top: 2px solid #F05A1A;
}
.access li {
  border-bottom: 2px solid #F05A1A;
  padding: 40px 45px;
  background-color: #ffffff;
  justify-content: space-between;
  gap: 30px 12%;
}
.access li:nth-child(1) {
  border-bottom: 0;
}
.access li:nth-child(1) dl dt, .access li:nth-child(2) dl dt {
  background-color: #E50012;
}
.access li:nth-child(1) .orange_border_title, .access li:nth-child(2) .orange_border_title {
  color: #E50012;
  border-color: #E50012;
}
.access_info_area {
  flex: 1;
}
.access_address {
  margin-bottom: 20px;
  font-weight: 500;
}
.access dl:not(.access_time) {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
}
.access dl:not(.access_time) dt {
  width: 55px;
  border-radius: 30px;
  background-color: #F05A1A;
  color: #ffffff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.access dl:not(.access_time) dd {
  width: calc(100% - 55px);
  padding-left: 10px;
  font-weight: 500;
}
.access dl.access_time {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 30px 40px;
  text-align: center;
}
.access dl.access_time dt {
  margin-bottom: 5px;
  font-size: 1.8rem;
}
.access_gmap_area {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 2/1;
}
.access_gmap_area iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .access li {
    padding: 30px 15px;
  }
  .access dl {
    flex-direction: row;
  }
  .access dl.access_time {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 30px 40px;
    text-align: center;
  }
  .access dl.access_time dt {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
  .access_gmap_area {
    aspect-ratio: 1/1.2;
  }
  .access_gmap_area iframe {
    width: 100%;
    height: 100%;
  }
}

.loan.top ul {
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
}
.loan.top li {
  width: 285px;
  aspect-ratio: 1/1;
  padding: 30px 10px;
  text-align: center;
  box-shadow: 0 0 20px #e5e5e5;
  transition: 0.3s ease;
}
.loan.top li:hover {
  opacity: 0.7;
  transform: translateY(20px);
}
.loan.top a {
  display: block;
  width: 100%;
  height: 100%;
}
.loan.top h3 {
  margin-top: 5px;
  font-size: 2.4rem;
}
.loan.top img {
  margin: 25px auto 0;
}
.loan_head_text {
  margin-bottom: 40px;
  font-size: 4rem;
}
.loan_head_text span {
  color: #F05A1A;
}
.loan_head_text.center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .loan_head_text {
    font-size: 2.6rem;
  }
}
.loan_mv .flex_box {
  padding: 80px 0;
  justify-content: flex-end;
  align-items: center;
  gap: 30px 6%;
}
.loan_mv img:nth-of-type(1) {
  width: 45%;
  max-width: 900px;
}
.loan_mv img:nth-of-type(2) {
  width: 45%;
  max-width: 825px;
}
@media screen and (max-width: 767px) {
  .loan_mv .flex_box {
    padding: 40px 10px;
    justify-content: center;
  }
  .loan_mv img:nth-of-type(1), .loan_mv img:nth-of-type(2) {
    width: 100%;
  }
}

.trouble {
  background-color: #DCDDDD;
  position: relative;
}
.trouble:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 50vw 0 50vw;
  border-color: #DCDDDD #ffffff transparent #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.trouble .loan_head_text {
  font-size: 3.2rem;
}
.trouble ul {
  flex-wrap: wrap;
  gap: 30px 40px;
}
.trouble li {
  width: 100%;
  max-width: 330px;
  aspect-ratio: 1/1;
  padding: 60px 20px 30px;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 500;
}
.trouble img {
  margin: 25px auto 0;
}
@media screen and (max-width: 767px) {
  .trouble ul {
    align-items: center;
  }
  .trouble .loan_head_text {
    font-size: 2.2rem;
  }
  .trouble img {
    margin: 15px auto 0;
  }
}

.point {
  margin-top: 50px;
}
.point.loan {
  background-color: #ffffff;
}
.point.loan:after {
  display: none;
}
.point.loan ul {
  gap: 40px;
}
.point.loan li {
  aspect-ratio: 1/1;
  border-radius: 15px;
  padding: 40px 10px;
  background-image: url(../img/loan_free_bg.webp);
  background-position: center;
  background-size: cover;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.point.loan li p {
  font-size: 2.4rem;
  font-weight: 500;
}
.point.loan li p span {
  color: #F05A1A;
  font-size: 2.4rem;
  font-weight: 700;
}
.point.loan li img {
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .point.loan li p {
    font-size: 2rem;
  }
  .point.loan li p span {
    font-size: 2rem;
  }
}
.point_title {
  margin-bottom: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 4%;
}
.point_title .loan_head_text {
  margin-bottom: 0;
  position: relative;
}
.point_title .loan_head_text:before {
  content: "";
  width: 120px;
  height: 55px;
  background-image: url(../img/loan_free_point_title.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 105%;
  left: 50%;
  transform: translateX(-50%);
}
.point_title img {
  width: 15%;
  max-width: 156px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point_title .loan_head_text:before {
    width: 70px;
    height: 30px;
  }
}

.features ul.flex_box {
  flex-direction: column;
  gap: 40px;
}
.features_point {
  width: 100%;
  max-width: 960px;
  padding: 40px 50px;
  margin: 0 auto 60px;
  gap: 10px;
  font-size: 2rem;
  font-weight: 500;
}
.features_point i {
  margin-right: 5px;
  color: #F05A1A;
  font-size: 2.4rem;
}
.features_point span {
  color: #F05A1A;
  font-weight: 700;
}
.features_info {
  gap: 10px;
}
.features_info h3 {
  padding-bottom: 0;
  margin-bottom: 30px;
  font-weight: 500;
}
.features_info dl {
  width: 90%;
  margin: 0 0 0 auto;
  flex-wrap: wrap;
}
.features_info dt,
.features_info dd {
  padding: 15px 30px;
}
.features_info dt {
  width: 25%;
  border-right: 1px solid #F05A1A;
}
.features_info dt:not(:last-of-type) {
  border-bottom: 1px solid #F05A1A;
}
.features_info dd {
  width: 75%;
}
.features_info dd:not(:last-child) {
  border-bottom: 1px solid #F05A1A;
}
.features_info .js_scrollable {
  width: 90%;
  margin: 0 0 0 auto;
  overflow-x: scroll;
}
.features_info table {
  width: 100%;
  min-width: 775px;
  white-space: nowrap;
}
.features_info table th {
  text-align: center;
}
.features_info table thead th {
  border-bottom: 1px solid #F05A1A;
  padding: 15px 5px;
}
.features_info table thead th:not(:last-child) {
  border-right: 1px solid #F05A1A;
}
.features_info table tbody tr:not(:last-child) {
  border-bottom: 1px solid #F05A1A;
}
.features_info table tbody th,
.features_info table tbody td {
  padding: 15px 5px;
  text-align: center;
}
.features_info table tbody th:not(:last-child),
.features_info table tbody td:not(:last-child) {
  border-right: 1px solid #F05A1A;
}
@media screen and (max-width: 767px) {
  .features_point {
    padding: 30px 20px;
    margin: 0 auto 40px;
    font-size: 1.8rem;
  }
  .features_point i {
    margin-right: 5px;
    font-size: 2rem;
  }
  .features_info {
    gap: 10px;
  }
  .features_info h3 {
    margin-bottom: 10px;
  }
  .features_info dl {
    width: 100%;
    margin: 0;
    flex-direction: column;
  }
  .features_info dt {
    width: 100%;
    border-right: none;
    padding: 10px 10px 0;
  }
  .features_info dt:not(:last-of-type) {
    border-bottom: none;
  }
  .features_info dd {
    width: 100%;
    padding: 5px 10px 10px;
  }
  .features_info .js_scrollable {
    width: 100%;
    margin-top: 30px;
  }
}

.about ul {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  flex-direction: column;
  gap: 70px;
}
.about li {
  align-items: flex-start;
  gap: 20px 40px;
}
.about img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
}
.about p {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .about ul {
    gap: 50px;
  }
}

.howtouse:before {
  max-width: 600px;
}
.howtouse ul {
  width: 100%;
  max-width: 1030px;
  margin: 40px auto 0;
  flex-direction: column;
  gap: 60px;
}
.howtouse li {
  align-items: flex-start;
  gap: 20px 40px;
}
.howtouse li:nth-of-type(2n + 2) {
  flex-direction: row-reverse;
}
.howtouse img {
  width: 100%;
  max-width: 400px;
}
.howtouse_text {
  flex: 1;
}
.howtouse h3 {
  padding-bottom: 0;
  margin-bottom: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .howtouse li:nth-of-type(2n + 2) {
    flex-direction: column;
  }
}

.merit {
  background-color: #FFECD6;
}
.merit ul {
  margin-top: 100px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px 15px;
}
.merit li {
  width: 100%;
  max-width: 350px;
  padding: 80px 20px 50px;
  flex-direction: column;
  position: relative;
}
.merit li span {
  display: block;
  width: 105px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 20px;
  background-color: #F05A1A;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.merit li span i {
  display: block;
  margin: 0 auto;
  font-size: 3rem;
}
.merit h3 {
  padding-bottom: 0;
  margin-bottom: 15px;
  color: #F05A1A;
  text-align: center;
  font-size: 2rem;
}
.merit p {
  flex: 1;
}
.merit img {
  max-width: 215px;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .merit ul {
    align-items: center;
  }
  .merit img {
    margin: 20px auto 0;
  }
}

.faq ul {
  flex-direction: column;
  gap: 30px;
}
.faq li {
  padding: 25px 40px;
  cursor: pointer;
  position: relative;
}
.faq li.opened i.fa-plus {
  display: none;
}
.faq li.opened i.fa-minus {
  display: block;
}
.faq li.opened .faq_answer {
  display: block;
}
.faq li.opened .faq_answer .flex_box {
  animation: show 0.7s forwards;
}
@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq_question span, .faq_answer span {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  padding-right: 10px;
  color: #F05A1A;
  line-height: 1.5;
}
.faq_answer {
  margin-top: 15px;
  display: none;
}
.faq_answer .flex_box {
  justify-content: flex-start;
}
.faq_answer p span {
  font-size: 1.6rem;
  font-weight: 400;
  color: #ff0000;
}
.faq i {
  font-size: 3rem;
  position: absolute;
  top: 30px;
  right: 30px;
  color: #F05A1A;
}
.faq i.fa-minus {
  display: none;
}
@media screen and (max-width: 767px) {
  .faq li {
    padding: 10px 25px 10px 10px;
  }
  .faq_question span, .faq_answer span {
    font-size: 2rem;
    padding-right: 5px;
  }
  .faq_answer .flex_box {
    flex-direction: row;
  }
  .faq i {
    font-size: 2rem;
    top: 20px;
    right: 15px;
  }
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #F05A1A;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  text-align: left;
  background-color: #FFFFFF;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #DCDDDD;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #DCDDDD;
}
form input[type=tel], form input[type=text], form input[type=email], form input[type=number], form input[type=date], form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  background-color: #FFFFFF;
}
form input[type=number] {
  max-width: 250px;
}
form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  width: 100%;
  background-color: #FFFFFF;
  color: #000;
}
form input, form select {
  vertical-align: middle;
  border-radius: 5px;
}
form .boxW100 input, form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
form .must {
  margin: 0 0 0 10px;
  font-size: 12px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form dl {
    display: block;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #FFFFFF;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.must {
  display: inline-block;
  background-color: red;
  font-size: 16px;
  line-height: 1.5em;
  color: #FFFFFF;
  margin: 0 10px 0 0;
  padding: 2px 5px;
}

.backBtn {
  border: 1px solid #DCDDDD;
  background-color: #DCDDDD;
  color: #222222;
}
.backBtn:hover {
  opacity: 0.7;
}

.contact_head {
  padding: 20px;
  margin-bottom: 50px;
  background-color: #FFECD6;
  font-size: 2.8rem;
}
.contact_head span {
  display: inline-block;
  padding: 0 10px;
  color: #F05A1A;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .contact_head {
    font-size: 2rem;
  }
  .contact_head span {
    display: block;
    padding: 0;
    font-size: 2.2rem;
  }
}
.contact_caution {
  width: 100%;
  max-width: 850px;
  padding: 30px 50px;
  margin: 0 auto 60px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact_caution {
    padding: 30px 20px;
  }
}
.contact_agree_area {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 60px;
}
.contact_agree_area_title {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
}
.contact_agree_area_title i {
  display: inline-block;
  margin-right: 10px;
  color: #E50012;
  font-size: 3rem;
  vertical-align: middle;
}
.contact_agree_area_title + p {
  margin-bottom: 5px;
  font-weight: 700;
}
.contact_agree_area_text {
  width: 100%;
  height: 300px;
  border: 1px solid #DCDDDD;
  padding: 30px 40px;
  overflow: scroll;
}
.contact_agree_area_text dl {
  padding: 0;
  margin: 0;
  background-color: transparent;
}
.contact_agree_area_text dl dt,
.contact_agree_area_text dl dd {
  width: 100%;
  padding: 0;
  border-bottom: none;
}
.contact_agree_area_text dl dt {
  color: #F05A1A;
  font-size: 1.8rem;
}
.contact_agree_area_text dl ol {
  margin-top: 10px;
  font-weight: 400;
}
.contact_agree_area_text + dl {
  padding: 0;
  margin: 20px 0 0 0;
  background-color: rgba(229, 0, 18, 0.2);
}
.contact_agree_area_text + dl dt,
.contact_agree_area_text + dl dd {
  padding: 25px;
  border-bottom: none;
}
.contact_agree_area_text + dl dt {
  width: 35%;
}
.contact_agree_area_text + dl dd {
  width: 65%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact_agree_area_title {
    font-size: 2.2rem;
  }
  .contact_agree_area_text {
    padding: 30px 20px;
  }
  .contact_agree_area_text + dl dt,
  .contact_agree_area_text + dl dd {
    width: 100%;
  }
  .contact_agree_area_text + dl dt {
    padding: 15px 20px 10px;
  }
  .contact_agree_area_text + dl dd {
    padding: 0px 20px 15px;
  }
}
.contact_message {
  margin-bottom: 20px;
  font-weight: 700;
}
.contact_form_area {
  padding: 40px 30px;
  margin-bottom: 60px;
}
.contact_form_area h3 {
  padding: 15px 25px;
  margin-bottom: 30px;
  background-color: #FFECD6;
  color: #F05A1A;
  font-size: 2rem;
}
.contact_form_area h3:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact_form_area {
    padding: 30px 20px;
    margin: 0 auto 25px;
  }
  .contact_form_area h3 {
    font-size: 1.8rem;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  .contact_form_area h3:not(:first-child) {
    margin-top: 30px;
  }
}
.contact_birth_area label {
  display: inline-block;
  margin-bottom: 10px;
}
.contact_birth_area input {
  width: 80px;
}

.privacy_title {
  margin-bottom: 40px;
  font-size: 2.4rem;
}
.privacy_title + p {
  margin-bottom: 30px;
}
.privacy ol {
  padding-left: 20px;
  margin-bottom: 40px;
  list-style-type: decimal;
  list-style-position: outside;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
}
.privacy_date {
  text-align: right;
}
.privacy_contact_info {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  padding: 30px 40px;
  margin-top: 60px;
  background-color: #FFECD6;
}
.privacy_contact_info h3 {
  padding-bottom: 0;
  font-size: 1.8rem;
  font-weight: 500;
}
.privacy_contact_info dd:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .privacy_title {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .privacy_contact_info {
    padding: 20px 25px;
    margin-top: 40px;
  }
}

.sitei_news {
  margin-bottom: 50px;
}
.sitei_news_title {
  border-bottom: 1px solid #222;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 500;
}
.sitei_news_main {
  border-left: 1px solid #F05A1A;
  padding: 10px 0 10px 20px;
  margin: 10px 0 0 20px;
}
.sitei_kikan_info {
  margin-bottom: 50px;
}
.sitei_kikan_info h3 {
  margin-bottom: 10px;
}
.sitei_kikan_info_text {
  margin-top: 10px;
  color: #F05A1A;
  font-size: 1.8rem;
  font-weight: 500;
}
.sitei_crame .privacy_contact_info {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sitei_news {
    margin-bottom: 35px;
  }
  .sitei_news_main {
    margin: 10px 0 0 10px;
  }
  .sitei_kikan_info {
    margin-bottom: 35px;
  }
  .sitei_kikan_info h3 {
    font-size: 1.8rem;
  }
  .sitei_kikan_info_text {
    font-size: 1.6rem;
  }
  .sitei_kikan_info a {
    word-wrap: break-word;
  }
  .sitei_crame .privacy_contact_info h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}

.hansyakai ol {
  margin-bottom: 0;
}

.sitemap .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 30px;
}
.sitemap ul {
  width: 48%;
  border-bottom: 1px solid rgba(68, 68, 68, 0.4);
}
.sitemap a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(68, 68, 68, 0.4);
  padding: 20px 10px;
  position: relative;
}
.sitemap a i {
  color: #F05A1A;
  position: absolute;
  top: 27px;
  right: 50px;
  transition: 0.3s ease;
}
.sitemap a:hover {
  color: #F05A1A;
}
.sitemap a:hover i {
  right: 40px;
}
@media screen and (max-width: 767px) {
  .sitemap .container {
    flex-direction: column;
    align-items: center;
  }
  .sitemap ul {
    width: 100%;
    max-width: 500px;
  }
  .sitemap ul:nth-of-type(1) {
    border-bottom: none;
  }
  .sitemap a {
    padding: 10px 5px;
  }
  .sitemap a i {
    top: 17px;
    right: 30px;
  }
  .sitemap a:hover i {
    right: 20px;
  }
  .sitemap .sub_menu {
    width: 90%;
  }
}

.rule dl {
  width: 800px;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
  display: flex;
  flex-wrap: wrap;
}
.rule dt {
  width: 30%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule dd {
  width: 70%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule .caution {
  color: #ff0000;
}
.rule .cancel_price {
  margin-top: 10px;
}
.rule .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 890px) {
  .rule dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .rule dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 5px 5px;
  }
  .rule dd {
    width: 100%;
    padding: 0px 5px 10px;
  }
}

.term p {
  margin-bottom: 50px;
}
.term dl + p {
  margin-bottom: 0;
  text-align: right;
}
.term dt {
  display: inline-block;
  border-bottom: 2px solid #53A75E;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.term dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
.term ol {
  list-style-type: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.term ol ol {
  padding-left: 20px;
  margin-top: 10px;
  row-gap: 0;
}
.term .cancel_price {
  margin-top: 20px;
}
.term .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .term p {
    margin-bottom: 30px;
  }
  .term dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .term dd {
    padding-left: 10px;
    margin-bottom: 25px;
  }
}

.err_page h2 {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.5;
}
.err_page h2 span {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
}
.err_page h2 p {
  font-size: 2rem;
}
.err_page .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .err_page h2 {
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .err_page h2 span {
    display: block;
    padding-left: 0;
    font-size: 2rem;
  }
  .err_page h2 p {
    font-size: 1.6rem;
  }
  .err_page .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .err_page.notFound h2 span {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.5rem;
  }
}
.thanks {
  background-color: #53A75E;
}
.thanks .head_text {
  margin-bottom: 50px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .thanks .head_text {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */