@charset "utf-8";

/*
Author: あそびラボ
Version: 1.3
*/
/*=======================================================
　基本設定
=======================================================*/
@font-face {
  font-family: "noto-sans-jp";
  src: url(../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff) format("woff");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "noto-sans-jp";
  src: url(../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff) format("woff");
  font-weight: bold;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-style: normal;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  line-break: strict;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:focus,
a:focus {
  outline: none;
}

body,
.ly_head,
.ly_main,
.ly_foot {
  min-width: 1024px;
}

body {
  background: #fff;
  font-family: "noto-sans-jp", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
  color: #222;
}

article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
  display: block;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

ul,
ol {
  list-style: none;
}

p,
li,
dt,
dd,
th,
td {
  -ms-line-break: strict;
  line-break: strict;
  word-break: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

picture {
  line-height: 0;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  outline: none;
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #fff inset;
}

input[type="checkbox"] {
  display: none;
}

input[type="radio"] {
  display: none;
}

button,
textarea {
  font-family: inherit;
  font-size: 100%;
}

/* PC SP */
.pc {
  display: initial;
}

.sp {
  display: none;
}

@media only screen and (min-device-width: 1025px) {

  /* PCのみホバー効果 */
  a:hover,
  .hp_hover:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
}

@media screen and (max-width: 750px) {

  body,
  .ly_head,
  .ly_main,
  .ly_foot {
    min-width: 750px;
    max-width: 750px;
    width: 100%;
  }

  body {
    font-size: 28px;
    line-height: 1.5;
  }

  .sp {
    display: initial;
  }

  .pc {
    display: none;
  }
}

/*=============================
　共通レイアウト
==============================*/
/* 全体のWrapper */
.ly_allWrapper {
  overflow: hidden;
  max-width: 2000px;
  margin: 0 auto;
}

/* inner */
.ly_head_inner,
.ly_foot_inner,
.ly_cont,
.ly_cont_inner,
.ownCompanyLoan {
  width: 1024px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.ly_cont_inner .chusyaku{
  margin-top: -30px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .ly_cont_inner .chusyaku{
    margin: -29px auto 20px;
    text-align: center;
    font-size: 20px;
  }
}

.bl_media {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
}

.bl_media_imgWrapper {
  flex: 0 1 496px;
}

.bl_media_body {
  flex: 1;
}

.bl_media_ttl {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.bl_media_body>*:not(:first-of-type) {
  margin-top: 25px;
}

.bl_media_body>.bl_media_txt+.el_att {
  margin-top: 8px;
}

.bl_media_body>.bl_bulletList+.bl_media_txt {
  margin-top: 25px;
}

@media screen and (min-width: 751px) {
  .bl_media.el_reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 750px) {

  /* inner */
  .ly_cont,
  .ly_cont_inner,
  .ownCompanyLoan {
    width: 690px;
  }

  /* bl_media */
  .bl_media_imgWrapper {
    flex: 0 1 690px;
  }

  .bl_media_imgWrapper.sp {
    display: block;
    margin-bottom: 24px;
  }

  .bl_media_ttl {
    font-size: 36px;
    padding-bottom: 0;
    margin-bottom: 32px;
    text-align: center;
  }

  .bl_media_ttl::after {
    display: none;
  }

  .bl_media_body>*:not(:first-of-type) {
    margin-top: 42px;
  }

  .bl_media_body>.bl_media_txt+.el_att {
    margin-top: 16px;
  }

  .bl_media_body>.bl_bulletList+.bl_media_txt {
    margin-top: 42px;
  }
}

/*=============================
　共通パーツ
==============================*/
/* 各sectionメイン見出し */
.el_sec_mainTtl {
  text-align: center;
}

/* bl_bulletList */
.bl_bulletList>li {
  padding-left: 1em;
  position: relative;
}

.bl_bulletList>li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.bl_bulletList.bl_bulletList__square>li {
  padding-left: calc(1em + 8px);
}

.bl_bulletList.bl_bulletList__square>li::before {
  content: "■";
}

/* el_btn */
.el_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 3px;
  font-weight: 700;
}

/* el_label */
.el_label {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}

/* ※ */
.el_att_list li:first-of-type::before {
  content: "※1";
}

.el_att_list li:nth-of-type(2)::before {
  content: "※2";
}

.el_att_list li:nth-of-type(3)::before {
  content: "※3";
}

.el_att_list li:nth-of-type(4)::before {
  content: "※4";
}

.el_att_list li:nth-of-type(5)::before {
  content: "※5";
}

.el_att_list .el_att {
  padding-left: 2em;
}

.el_att {
  padding-left: 1em;
  position: relative;
  font-size: 12px;
}

.el_att::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

span.el_att {
  display: block;
}

.el_link {
  text-decoration: underline;
  color: #0000ff;
}

.el_txt {
  text-align: center;
}

@media screen and (max-width: 750px) {
  .el_att {
    font-size: 18px;
  }
}

/*=============================
　ヘルプタグ
==============================*/
/* bold */
.hp_bold {
  font-weight: bold !important;
}

/* opacity1 */
.hp_opacity1 {
  opacity: 1 !important;
}

/* 電話リンク */
.hp_tel {
  pointer-events: none;
}

/* アクセントカラー */
.hp_color__accent {
  color: #ff684f;
}

@media screen and (max-width: 750px) {

  /* 電話リンク */
  .hp_tel {
    pointer-events: auto;
  }
}

/*=============================
　header
==============================*/
.ly_head {
  width: 100%;
  height: 88px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.ly_head.is_active {
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
}

.bl_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ロゴ */
.bl_head_logo {
  width: 184px;
}

.bl_head_logo>a {
  display: flex;
}

/* ヘッダー右側エリア */
.bl_head_box {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ナビ */
.bl_gloNav {
  z-index: 100;
}

.bl_gloNav_inner {
  display: flex;
  gap: 40px;
}

.bl_gloNav_inner>li>a {
  font-weight: 700;
  letter-spacing: 0;
}

.bl_head_btn {
  font-size: 20px;
  color: #fff;
  background: #03c755;
  border-radius: 2px;
  border: 2px solid #fff;
  gap: 16px;
  width: 200px;
  height: 56px;
}

.bl_head_btn::before {
  content: "";
  width: 36px;
  height: 34px;
  background: url("../../img/3s/common/icon_line.svg") top center / contain no-repeat;
}

/* スマホ用非表示 */
.bl_burger {
  display: none;
}

@media screen and (max-width: 750px) {
  .ly_head {
    height: 120px;
  }

  .ly_head_inner {
    width: 100%;
    z-index: 110;
    padding-left: 30px;
  }

  /* ロゴ */
  .bl_head_logo {
    width: 236px;
    position: relative;
    z-index: 100;
  }

  .bl_head_box {
    gap: 0;
  }

  /* ボタンエリア */
  .bl_head_btn {
    font-size: 36px;
    border-radius: 0;
    border: none;
    gap: 26px;
    width: 230px;
    height: 120px;
    padding-bottom: 4px;
    line-height: calc(50 / 36);
  }

  .bl_head_btn::before {
    width: 66px;
    height: 64px;
  }

  /* ハンバーガーボタン */
  .bl_burger {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
    border: 3px solid #FF684F;
    background: #fff;
  }

  .bl_burger_inner {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .bl_burger_bar {
    width: 84px;
    height: 4px;
    background: #FF684F;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
  }

  .bl_burger_bar:first-child {
    top: 19px;
    transition: transform 0.3s ease;
  }

  .bl_burger_bar:nth-child(2) {
    top: 39px;
    transition: opacity 0.3s ease;
  }

  .bl_burger_bar:nth-child(3) {
    bottom: 51px;
    transition: transform 0.3s ease;
  }

  .bl_burger.is_active .bl_burger_bar:first-child {
    transform: rotate(-45deg) translate(-51%, -15px);
    transition: transform 0.3s ease;
  }

  .bl_burger.is_active .bl_burger_bar:nth-child(2) {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .bl_burger.is_active .bl_burger_bar:nth-child(3) {
    transform: rotate(45deg) translate(-50%, 13px);
    transition: transform 0.3s ease;
  }

  .bl_burger_txt {
    width: 84px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* ナビ */
  .bl_gloNav {
    width: 100%;
    height: 100%;
    background: url("../../img/3s/common/nav_bg.jpg") top center / cover no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .bl_gloNav.is_active {
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
  }

  .bl_gloNav_inner {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: scroll;
    gap: 64px;
    padding-bottom: 250px;
  }

  .bl_gloNav_inner>li {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .bl_gloNav_inner>li>a {
    font-size: 32px;
    font-weight: 700;
  }

  /* 閉じるボタン */
  .bl_gloNav_btn {
    width: 240px;
    height: 80px;
    font-size: 34px;
    background: #FF684F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 16px;
    padding-bottom: 5px;
    margin: 0 auto;
    border-radius: 4px;
    font-weight: 700;
  }

  .bl_gloNav_btn::before {
    content: "";
    background: url(../../img/3s/common/burger_close.svg) top center / contain no-repeat;
    width: 24px;
    height: 24px;
    margin-top: 5px;
  }
}

/*=============================
　footer
=============================*/
.ly_main {
  min-height: calc(100vh - 285px);
  /* pxはfooterの高さ */
}

.ly_foot {
  background: #fafafa;
}

.bl_foot_box {
  padding: 32px 0;
  display: flex;
  gap: 140px;
}

.bl_foot_logo {
  flex: 0 1 110px;
}

.bl_foot_box .bl_box_list {
  flex: 1;
}

.bl_foot_box .bl_box_item:first-of-type {
  margin-bottom: 24px;
}

.bl_foot_box .bl_box_item:nth-of-type(2) {
  margin-bottom: 16px;
}

.bl_foot_box .bl_box_item .bl_item_def {
  display: flex;
}

.bl_foot_box .bl_box_item .bl_item_def>dt {
  flex: 0 1 133px;
  font-size: 15px;
  font-weight: 700;
}

.bl_foot_box .bl_box_item .bl_item_def>dd {
  flex: 1;
}

/* ナビ */
.bl_foot_gloNav_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.bl_foot_gloNav_inner>li>a {
  padding-left: 14px;
  font-size: 15px;
  letter-spacing: 0.04em;
  position: relative;
  display: block;
}

.bl_foot_gloNav_inner>li>a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #639bdd;
  position: absolute;
  margin-top: 1px;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

.bl_foot_box .bl_box_item:nth-of-type(3) .bl_foot_gloNav_inner>li:nth-of-type(4) {
  width: 100%;
}

/* コピーライト */
.bl_foot_copyright {
  text-align: center;
  padding: 6px 0 8px;
  background: #FF684F;
}

.bl_foot_copyright small {
  color: #fff;
  font-size: 12px;
  font-family: Verdana;
  /* Android */
}

/* 自社ローンバナー */
.ownCompanyLoan {
  width: 640px;
  height: 96px;
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 900;
}
.ownCompanyLoan a:hover{
  opacity: inherit;
}

.ownCompanyLoan img {
  opacity: 1;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .ownCompanyLoan {
    width: 60%;
    bottom: 60px;
  }
}

/* ページトップボタン */
.bl_pagetop {
  width: 1024px;
  height: 0;
  margin: 0 auto;
  text-align: right;
  position: relative;
}

.bl_pagetop span {
  width: 88px;
  height: 60px;
  z-index: 900;
}

.bl_pagetop img {
  opacity: 0;
}

.bl_pagetop .fade img {
  transition: all 0.5s ease-in-out;
}

.bl_pagetop .in img {
  opacity: 1;
  cursor: pointer;
}

@media screen and (max-width: 1400px) {

  /* ページトップボタン */
  .bl_pagetop {
    width: 100%;
  }

  .bl_pagetop span {
    right: 30px;
  }
}

@media screen and (max-width: 750px) {
  .ly_main {
    min-height: calc(100vh - 940px);
    /* pxはfooterの高さ */
  }

  .ly_foot_inner {
    width: 100%;
    height: auto;
  }

  .bl_foot_box {
    padding: 64px 30px 80px;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .bl_foot_logo {
    flex: 0 1 296px;
    order: 2;
  }

  .bl_foot_box .bl_box_list {
    flex: auto;
    width: 100%;
  }

  .bl_foot_box .bl_box_item:first-of-type {
    margin-bottom: 47px;
  }

  .bl_foot_box .bl_box_item:nth-of-type(2) {
    margin-bottom: 40px;
  }

  .bl_foot_box .bl_box_item .bl_item_def {
    flex-wrap: wrap;
  }

  .bl_foot_box .bl_box_item .bl_item_def>dt {
    flex: auto;
    font-size: 28px;
    margin-bottom: 24px;
  }

  .bl_foot_box .bl_box_item .bl_item_def>dd {
    flex: auto;
    width: 100%;
  }

  /* ナビ */
  .bl_foot_gloNav_inner {
    gap: 20px 40px;
  }

  .bl_foot_gloNav_inner>li>a {
    padding-left: 22px;
    font-size: 24px;
  }

  .bl_foot_gloNav_inner>li>a::before {
    border-width: 8px 0 8px 14px;
  }

  /* コピーライト */
  .bl_foot_copyright {
    padding: 8px 0 11px;
  }

  .bl_foot_copyright small {
    font-size: 20px;
    text-align: center;
  }

  /* ページトップボタン */
  .bl_pagetop {
    width: 750px;
  }

  .bl_pagetop span {
    width: 147px;
    height: 100px;
    right: 25px;
    bottom: 25px;
  }
}