@charset "UTF-8";

* {
  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;
  text-align: inherit;
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

img {
  object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  line-height: 1.5;
  font-weight:700;
}

.container {
  width: 90%;
  max-width: 1080px;
  /*padding: 100px 0;*/
  padding: 0;
  margin: 0 auto;
}
.container_long {
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .container {
    /*padding: 60px 0;*/
    padding: 0;
  }
}

.orange_border_box {
  border: 3px solid #F05A1A;
  border-radius: 15px;
  background-color: #ffffff;
}

.flex_box {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}

.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);
}
.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;
  }
}

header {
  padding: 0;
}
.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_contact_btn_list a.btn:link,
.header_contact_btn_list a.btn:visited {
  color: #ffffff;
}
.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;
}
.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 a:link,
.cta a:visited {
  color: #ffffff;
}
.cta a:hover {
  color: #F05A1A;
}
.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;
  }
}

footer {
  background-color: transparent;
  padding: 0;
  font-size: inherit;
}
.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  border-top: 2px solid #F05A1A;
  background-color: #ffffff;
  color: #222222;
}
.footer a:link,
.footer a:hover {
  color: #ffffff;
}
.footer img {
  width: auto;
}
.footer a:hover {
  opacity: 0.7;
}
.footer_menu {
  background-color: #F05A1A;
  color: #ffffff;
}
.footer_menu a{
  color: #ffffff;
}
.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_middle_content a:link,
.footer_middle_content a:visited {
  color: #222222;
}
.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;
  }
}



#articleArea img {
  display: inline-block;
}
header .header_top_content .header_contact_btn_list a:hover{
  color: #F05A1A;
}
#articleArea h2,#articleArea h3{
  font-weight: 700;
}
#articleTitle article{
  border-bottom:none;
}
@media screen and (max-width: 767px) {
  #articleTitle {
     padding: 0; 
     border-top: none; 
  }
}
.footer_shop_address dd a:link{
  color: #222;
}