@charset "utf-8";

/*
Author: あそびラボ
Version: 1.3
*/

/* =======================================================
　基本設定
======================================================= */
@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 {
  max-width: 750px;
  margin: 0 auto;
}
body {
  margin-bottom: 92px;
  font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 28px;
  line-height: 1.6;
  color: #222;
  letter-spacing: 0.04em;
  background: #fff;
  box-shadow: 0 -6px 10px #0000001a;
  -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: optimize-contrast;
}
picture {
  line-height: 0;
}
input,
button,
select,
textarea {
  font-size: 16px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
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,
  button,
  .hp_hover {
    transition: all 0.3s ease;
  }
  a:hover,
  button:hover,
  .hp_hover:hover {
    opacity: 0.7;
  }
  label:hover {
    cursor: pointer;
  }
}
@media screen and (max-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: 690px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* bl_media */
.bl_media {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.bl_media_imgWrapper {
  flex: 0 1 496px;
}
.bl_media_body {
  flex: 1;
}
.bl_media_body > *:not(:first-of-type) {
  margin-top: 24px;
}
@media screen and (max-width: 750px) {
  /* inner */
  .ly_cont,
  .ly_cont_inner {
    width: 690px;
  }
}

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

/* bl_bulletList */
.bl_bulletList > li {
  position: relative;
  padding-left: 1em;
}
.bl_bulletList > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  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: "⑤";
}

/* el_btn */
.el_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
}
.el_btn.shine::before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-animation: shine 1s infinite;
  animation: shine 1s infinite;
}
@-webkit-keyframes shine {
  100% {
    left: 100%;
  }
}
@keyframes shine {
  100% {
    left: 100%;
  }
}
/* ※ */
.el_att {
  position: relative;
  padding-left: 1em;
}
.el_att::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
.el_att01,
.el_att02,
.el_att03 {
  padding-left: 2em;
}
.el_att01::before{
  content: '※1';
}
.el_att02::before{
  content: '※2';
}
.el_att03::before{
  content: '※3';
}
span.el_att {
  display: block;
}
.el_txt {
  text-align: center;
}

/* =============================
　ヘルプタグ
============================== */
/* 明朝体 */
.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__red {
  color: #f00;
}
.hp_color__yellow {
  color: #F5FF00;
}
.hp_color__green {
  color: #388b88;
}
.el_underline {
  text-decoration: underline;
}
