@charset "utf-8";
/*
Author: あそびラボ
Version: 1.5
*/
/* =======================================================
　基本設定
======================================================= */
@font-face {
  font-family: noto-sans-jp;
  font-weight: normal;
  src: url("./fonts/Noto_Sans_JP/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-sans-jp;
  font-weight: bold;
  src: url("./fonts/Noto_Sans_JP/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-serif-jp;
  font-weight: normal;
  src: url("./fonts/Noto_Serif_JP/NotoSerifJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-serif-jp;
  font-weight: bold;
  src: url("./fonts/Noto_Serif_JP/NotoSerifJP-Bold.woff") format("woff");
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  font-style: normal;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  outline: none;
  box-shadow: none;
  line-break: strict;
  -webkit-tap-highlight-color: rgb(0 0 0 / 0%);
}
*,
*:focus,
a:focus {
  outline: none;
}
body,
.ly_head,
.ly_main,
.ly_foot {
  min-width: 1024px;
}
body {
  font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.04em;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}
article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
  display: block;
}
table {
  border-spacing: 0;
  border-collapse: separate;
}
ul,
ol {
  list-style: none;
}
p,
li,
dt,
dd,
th,
td {
  -ms-line-break: strict;
  line-break: strict;
  word-break: break-word;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
picture {
  line-height: 0;
}
input,
button,
select,
textarea {
  font-size: 16px;
  appearance: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 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 (device-width >= 1025px) {
  /* PCのみホバー効果 */
  a,
  .hp_hover {
    transition: all 0.3s ease;
  }
  a:hover,
  .hp_hover:hover {
    opacity: 0.7;
  }
  label:hover {
    cursor: pointer;
  }
}
@media screen and (width <= 750px) {
  body,
  .ly_head,
  .ly_main,
  .ly_foot {
    width: 100%;
    min-width: 750px;
    max-width: 750px;
  }
  body {
    font-size: 28px;
    line-height: 1.5;
  }
  .sp {
    display: initial;
  }
  .pc {
    display: none;
  }
}
/* =============================
　共通レイアウト
============================== */
/* 全体のWrapper */
.ly_allWrapper {
  max-width: 2000px;
  margin: 0 auto;
  overflow: hidden;
}
/* inner */
.ly_head_inner,
.ly_foot_inner,
.ly_cont,
.ly_cont_inner {
  position: relative;
  width: 1024px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}
/* 2カラム */
.ly_cont__col {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
}
.ly_cont_main {
  width: 700px;
}
.ly_cont_side {
  width: 280px;
}
/* bl_media */
.bl_mediaList {
  display: grid;
  gap: 56px;
}
.bl_media {
  display: grid;
  grid-template: auto 1fr / 496px auto;
  grid-template-areas: "imgWrapper title" "imgWrapper body";
  gap: 0 40px;
}
.bl_media:has(.bl_media_tt) {
  gap: 24px 32px;
}
.bl_media__rev {
  grid-template: 1fr auto / auto 496px;
  grid-template-areas:
    "title imgWrapper "
    "body imgWrapper";
}
.bl_media.el_btmTxt {
  grid-template: auto 1fr auto / 496px auto;
  grid-template-areas: "imgWrapper title" "imgWrapper body" "btm_txt btm_txt";
}
.bl_media_imgWrapper {
  grid-area: imgWrapper;
}
.bl_media_ttl {
  grid-area: title;
  padding-bottom: 16px;
}
.bl_media_body {
  display: flex;
  flex-direction: column;
  grid-area: body;
  gap: 25px;
}
.bl_media_btmTxt {
  grid-area: btm_txt;
  margin-top: 25px;
}
/* bl_card */
.bl_cardUnit {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.bl_card {
  position: relative;
  width: 320px;
}
/* bl_btnList */
.bl_btnList {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
@media screen and (width >= 751px) {
  .bl_media.el_reverse {
    grid-template-areas: "title imgWrapper" "body imgWrapper";
  }
}
@media screen and (width <= 750px) {
  /* inner */
  .ly_head_inner,
  .ly_foot_inner,
  .ly_cont,
  .ly_cont_inner {
    width: 690px;
  }
  /* 2カラム */
  .ly_cont__col {
    gap: 80px;
  }
  .ly_cont_main,
  .ly_cont_side {
    width: 100%;
  }
  /* bl_media */
  .bl_media {
    grid-template: auto / auto;
    grid-template-areas: "imgWrapper" "title" "body";
  }
  .bl_media.el_btmTxt {
    grid-template: auto / auto;
    grid-template-areas: "imgWrapper" "title" "body" "btm_txt";
  }
  .bl_media_imgWrapper {
    margin-bottom: 24px;
  }
  .bl_media_ttl {
    margin-bottom: 16px;
    font-size: 32px;
  }
  .bl_media_body {
    gap: 42px;
  }
  /* bl_card */
  .bl_card {
    width: 100%;
  }
}
/* =============================
　共通パーツ
============================== */
/* 各sectionメイン見出し */
.el_sec_mainTtl {
  position: relative;
  line-height: 1.5;
  text-align: center;
}
/* bl_bulletList */
.bl_bulletList > li {
  position: relative;
  padding-left: 1em;
}
.bl_bulletList > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.bl_bulletList.bl_bulletList__square > li {
  padding-left: calc(1em + 8px);
}
.bl_bulletList.bl_bulletList__square > li::before {
  content: "■";
}
/* bl_numList */
.bl_numList {
  counter-reset: num;
}
.bl_numList > li {
  position: relative;
  padding-left: 1.2em;
}
.bl_numList > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(num) ".";
  counter-increment: num;
}
.bl_numList.bl_numList__circle > li:first-of-type::before {
  content: "①";
}
.bl_numList.bl_numList__circle > li:nth-of-type(2)::before {
  content: "②";
}
.bl_numList.bl_numList__circle > li:nth-of-type(3)::before {
  content: "③";
}
.bl_numList.bl_numList__circle > li:nth-of-type(4)::before {
  content: "④";
}
.bl_numList.bl_numList__circle > li:nth-of-type(5)::before {
  content: "⑤";
}
.bl_numList.bl_numList__brackets {
  counter-reset: cnt;
}
.bl_numList.bl_numList__brackets > li {
  padding-left: 2em;
  counter-increment: cnt;
}
.bl_numList.bl_numList__brackets > li::before {
  content: "(" counter(cnt) ") ";
}
/* el_btn */
.el_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
}
/* el_label */
.el_label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  color: #fff;
  background: #000;
}
/* ※ */
.el_att {
  position: relative;
  padding-left: 1em;
}
.el_att::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
.el_att.center {
  padding-left: 0;
  text-align: center;
}
.el_att.center::before {
  position: relative;
}
.el_att01,
.el_att02,
.el_att03 {
  padding-left: 2.5em;
}
.el_att01::before {
  content: "※1";
}
.el_att02::before {
  content: "※2";
}
.el_att03::before {
  content: "※3";
}
span.el_att {
  display: block;
}
.el_link {
  color: #00f;
  text-decoration: underline;
}
.el_txt {
  text-align: center;
}
/* =============================
　ヘルプタグ
============================== */
/* ユニット */
.hp_unit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* 明朝体 */
.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;
}
/* italic */
.hp_italic {
  transform: skewX(-10deg);
}
/* 打ち消し線 */
.hp_strikethrough {
  padding: 3px 0 0 8px;
  letter-spacing: 0;
  background-image: linear-gradient(#222, #222);
  background-repeat: repeat-x;
  background-position: 0 50%;
  background-size: 100% 1px;
}
/* opacity1 */
.hp_opacity1 {
  opacity: 1 !important;
}
/* 電話リンク */
.hp_tel {
  pointer-events: none;
}
/* アクセントカラー */
.hp_color__accent {
  font-weight: 700;
  color: #007364;
}
.hp_color__accent02 {
  font-weight: 700;
  color: #d25e21;
}
/* 影付き角丸白ボックス */
.hp_shadowRadiusWhiteBox {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 9px 0 rgb(0 0 0 / 35%);
}
@media screen and (width <= 750px) {
  /* ユニット */
  .hp_unit {
    display: block;
  }
  /* 電話リンク */
  .hp_tel {
    pointer-events: auto;
  }
}
/* =============================
　header
============================== */
.ly_head {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 16px 0;
}
.bl_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.ly_head.is_scroll {
  background: #9b785d;
}
/* ロゴ */
.bl_head_logo > a {
  display: flex;
  width: 170px;
}
.bl_head_logo > a > img {
  opacity: 0;
}
.bl_head_logo > a > img.is_loaded {
  opacity: 1;
}
.bl_head_container {
  display: flex;
  gap: 40px;
  align-items: center;
}
.bl_gloNav_inner {
  display: flex;
  gap: 40px;
  font-weight: 700;
  color: #fff;
}
.bl_head_btn {
  padding: 10px 36px 11px;
  font-weight: 700;
  color: #4e280b;
  background: linear-gradient(180deg, #d8b073 0%, #f9f2b5 100%);
  border: 1px solid #fff;
  border-radius: 4px;
}
/* スマホ用非表示 */
.bl_burger {
  display: none;
}
@media screen and (width <= 750px) {
  .ly_head {
    z-index: 9998;
    padding: 16px 30px;
  }
  .ly_head.is_scroll {
    background: #fff;
  }
  .ly_head_inner {
    width: auto;
  }
  /* ロゴ */
  .bl_head_logo > a {
    width: 266px;
  }
  .bl_head_container {
    padding-right: 121px;
  }
  .bl_gloNav {
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding-top: 200px;
    background: #f3dfb8;
    transform: translateX(100%);
    transition: all 0.5s ease;
  }
  .bl_gloNav.is_active {
    transform: translateX(0);
  }
  .bl_gloNav::after {
    position: absolute;
    right: 0;
    bottom: 52px;
    width: 526px;
    height: 86px;
    content: "";
    background: url("./images/common/burger_deco.svg") top center / contain no-repeat;
  }
  .bl_gloNav_inner {
    display: grid;
    gap: 56px;
    align-self: start;
    font-size: 32px;
    color: #6b492d;
  }
  .bl_gloNav_inner li a {
    display: flex;
    letter-spacing: 0.2em;
  }
  .bl_gloNav_inner li a::before {
    content: "◆";
  }
  .bl_head_btn {
    padding: 27px 28px;
    font-size: 32px;
    line-height: calc(46 / 32);
    border-color: #805b3f;
    border-width: 2px;
  }
  .bl_burger {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 104px;
    padding: 19px 15px 10px;
    background: #6b492d;
    border-radius: 4px;
  }
  .bl_burger.is_active .bl_burger_bars::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .bl_burger.is_active .bl_burger_bars::after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .bl_burger.is_active .bl_burger_bar {
    display: none;
  }
  .bl_burger_bars {
    position: relative;
    display: block;
    height: 40px;
    margin-bottom: 19px;
  }
  .bl_burger_bars::before,
  .bl_burger_bars::after {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 4px;
    content: "";
    background: #fff;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }
  .bl_burger_bars::before {
    top: 0;
  }
  .bl_burger_bars::after {
    bottom: 0;
  }
  .bl_burger_bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    background: #fff;
    transform: translate(-50%, -50%);
  }
  .bl_burger_txt {
    display: flex;
    width: 68px;
    margin: 0 auto;
  }
}
/* =============================
　footer
============================= */
.ly_foot {
  background: #d8b073;
}
.ly_foot_inner {
  padding: 24px 48px 32px 0;
}
.bl_foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
/* ロゴ */
.bl_foot_logo {
  display: flex;
  width: 170px;
}
/* ナビ */
.bl_foot_gloNav_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.bl_foot_gloNav_inner > li > a {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 15px;
}
.bl_foot_gloNav_inner > li > a::before {
  width: 0;
  height: 0;
  margin-bottom: 2px;
  content: "";
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 5px 0 5px 8px;
}
/* コピーライト */
.bl_foot_copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  text-align: center;
  background: #000;
}
.bl_foot_copyright small {
  font-family: Verdana; /* Android */
  font-size: 12px;
  color: #fff;
}
/* ページトップボタン */
.bl_pagetop {
  position: relative;
  width: 1024px;
  height: 0;
  margin: 0 auto;
  text-align: right;
}
.bl_pagetop span {
  z-index: 900;
  width: 66px;
  height: 66px;
}
.bl_pagetop img {
  opacity: 0;
}
.bl_pagetop .fade img {
  transition: all 0.5s ease-in-out;
}
.bl_pagetop .in img {
  cursor: pointer;
  opacity: 1;
}
@media screen and (width <= 1400px) {
  /* ページトップボタン */
  .bl_pagetop {
    width: 100%;
  }
  .bl_pagetop span {
    right: 30px;
  }
}
@media screen and (width <= 750px) {
  .ly_foot_inner {
    width: 100%;
    padding: 0 0 80px;
  }
  .bl_foot {
    display: grid;
    grid-template-areas:
      "gloNav"
      "logo";
    grid-template-columns: 1fr;
  }
  /* ロゴ */
  .bl_foot_logo {
    grid-area: logo;
    justify-self: center;
    width: 432px;
  }
  /* ナビ */
  .bl_foot_gloNav {
    width: 100%;
    margin-bottom: 80px;
  }
  .bl_foot_gloNav_inner {
    display: grid;
    grid-area: glonav;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .bl_foot_gloNav_inner > li > a {
    gap: 8px;
    padding: 31px 28px 33px;
    font-size: 28px;
    border-bottom: 2px solid #fff;
  }
  .bl_foot_gloNav_inner > li:nth-of-type(even) > a {
    border-left: 2px solid #fff;
  }
  .bl_foot_gloNav_inner > li > a::before {
    margin-bottom: 0;
    border-width: 8px 0 8px 14px;
  }
  /* コピーライト */
  .bl_foot_copyright {
    height: 48px;
  }
  .bl_foot_copyright small {
    font-size: 16px;
  }
  /* ページトップボタン */
  .bl_pagetop {
    width: 750px;
  }
  .bl_pagetop span {
    width: 106px;
    height: 106px;
  }
}
