@charset "utf-8";
/*
Author: あそびラボ
Version: 1.2
*/
/*=======================================================
　基本設定
=======================================================*/
@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;
}
@font-face {
  font-family: "noto-serif-jp";
  src: url(../../../fonts/Noto_Serif_JP/NotoSerifJP-Regular.woff) format("woff");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "noto-serif-jp";
  src: url(../../../fonts/Noto_Serif_JP/NotoSerifJP-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,
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  label:hover {
    cursor: pointer;
  }
}
@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 {
  width: 1024px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  /* inner */
  .ly_cont,
  .ly_cont_inner {
    width: 690px;
  }
}
/*=============================
　共通パーツ
==============================*/
/* 各sectionメイン見出し */
.el_sec_mainTtl {
  text-align: center;
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 40px;
  position: relative;
}
/* 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_att {
  padding-left: 1em;
  position: relative;
}
.el_att::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
span.el_att {
  display: block;
}
.bl_media_list{
  display: grid;
}
.bl_media{
  display: flex;
  gap: 32px;
}
.bl_media_imgWrapper{
  flex: 0 1 496px;
}
.bl_media_body{
  flex: 1;
}
.bl_media_body > p + p{
  margin-top: 25px;
}
@media screen and (min-width: 751px) {
  .bl_media.el_reverse{
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 750px) {
  /* 各sectionメイン見出し */
  .el_sec_mainTtl {
    font-size: 40px;
  }
  .bl_media_body > p + p{
    margin-top: 42px;
  }
}
/*=============================
　ヘルプタグ
==============================*/
/* 明朝体 */
.hp_mincho {
  font-family: "noto-serif-jp", "游明朝体", "Yu Mincho", YuMincho,
    "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
}
/* bold */
.hp_bold {
  font-weight: bold !important;
}
/* opacity1 */
.hp_opacity1 {
  opacity: 1 !important;
}
/* アクセントカラー */
.hp_color__accent {
  color: #FFE3A5;
  font-weight: bold;
}
.hp_color__accent02{
  color: #9B1613;
  font-weight: 700;
}
/*=============================
　header
==============================*/
.ly_head {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.ly_head.is_scroll{
  background: #fff;
}
.bl_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ロゴ */
.bl_head_logo {
  width: 184px;
}
.bl_head_logo > a {
  display: flex;
}
.bl_head_btn {
  width: 293px;
  height: 80px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #BA322F 0%, #6E1412 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 1px;
}
.bl_head_btn::before {
  content: "";
  width: 48px;
  height: 48px;
  background:url("../../../img/contact/lawyer/common/icon_contact.svg") top center / contain no-repeat;
}
@media screen and (max-width: 750px) {
  .ly_head {
    height: 120px;
  }
  .ly_head_inner {
    width: 100%;
    z-index: 110;
  }
  /* ロゴ */
  .bl_head_logo {
    width: 275px;
    margin-left: 30px;
  }
  .bl_head_btn {
    width: 366px;
    height: 120px;
    font-size: 28px;
    padding: 0 0 2px;
  }
  .bl_head_btn::before {
    display: none;
  }
}
/*=============================
　footer
=============================*/
.ly_main {
  min-height: calc(100vh - 162px); /* pxはfooterの高さ */
}
.ly_foot{
  background: #363636;
}
.bl_foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px 0 47px;
}
/* ロゴ */
.bl_foot_logo {
  width: 184px;
  display: flex;
}
/* ナビ */
.bl_foot_gloNav{
  padding-top: 22px;
}
.bl_foot_gloNav_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.bl_foot_gloNav_inner > li > a {
  padding-left: 16px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
}
.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 #FFE3A5;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-top: 2px;
}
/* コピーライト */
.bl_foot_copyright {
  width: 100%;
  height: 32px;
  background: #9B1613;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 3px;
}
.bl_foot_copyright small {
  color: #fff;
  font-size: 12px;
  font-family: Verdana; /* Android */
}
/* ページトップボタン */
.bl_pagetop {
  width: 1024px;
  height: 0;
  margin: 0 auto;
  text-align: right;
  position: relative;
}
.bl_pagetop span {
  width: 64px;
  height: 64px;
  z-index: 80;
}
.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) {
  /* footer */
  .ly_foot_inner {
    padding: 64px 0;
    width: 100%;
    gap: 64px;
  }
  /* ロゴ */
  .bl_foot_logo {
    width: 324px;
    margin: 0 auto;
    order: 2;
  }
  /* ナビ */
  .bl_foot_gloNav {
    padding-top: 0;
    width: 100%;
    order: 1;
  }
  .bl_foot_gloNav_inner {
    gap: 64px;
    justify-content: center;
  }
  .bl_foot_gloNav_inner > li > a {
    padding-left: 24px;
    font-size: 26px;
  }
  .bl_foot_gloNav_inner > li > a::before {
    border-width: 9px 0 9px 14px;
  }
  /* コピーライト */
  .bl_foot_copyright {
    height: 41px;
  }
  .bl_foot_copyright small {
    font-size: 18px;
  }
  /* ページトップボタン */
  .bl_pagetop {
    width: 750px;
  }
  .bl_pagetop span {
    width: 104px;
    height: 104px;
    border-radius: 117px;
    right: 30px;
    bottom: 25px;
  }
}
