@charset "UTF-8";
:root {
  --leading-trim: calc((1em - 1lh) / 2);
  --color-white: #fff;
  --color-accent: #f7dd01;
  --color-accent02: #920783;
  --color-accent03: #ff00e3;
  --color-accent04: #fffd10;
  --color-accent05: #f4e7f2;
  --color-txt: #222;
  --color-black: #00172c;
}
/*
Author: あそびラボ
Version: 1.2
*/
/* =======================================================
　基本設定
======================================================= */
@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: rgba(0, 0, 0, 0);
}
*,
*:focus,
a:focus {
  outline: none;
}
body,
.ly_head,
.ly_main,
.ly_foot {
  min-width: 750px;
}
body {
  font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 28px;
  line-height: calc(41/28);
  color: #222;
  letter-spacing: 0.06em;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  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;
}
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;
}
input[type=checkbox] {
  display: none;
}
button,
textarea {
  font-family: inherit;
  font-size: 100%;
  color: #222;
}
select {
  color: #222;
}
/* PC SP */
.pc {
  display: initial;
}
.sp {
  display: none;
}
/* =============================
　共通レイアウト
============================== */
/* 全体のWrapper */
.ly-all-wrapper {
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}
/* inner */
.ly-cont-inner {
  position: relative;
  width: 690px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}
/* =============================
　ヘルプタグ
============================== */
/* 明朝体 */
.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;
}
/* アクセントカラー */
.hp-color--accent {
  color: var(--color-accent);
}
.hp-color--accent03 {
  color: var(--color-accent03);
}
.--img-wrapper {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.--border {
  position: relative;
}
.--border::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "";
  border: 2px solid var(--color-gray);
  transform: translate(-50%, -50%);
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mb-56 {
  margin-bottom: 56px;
}
.mb-64 {
  margin-bottom: 64px;
}
.mb-72 {
  margin-bottom: 72px;
}
.fz-32 {
  font-size: 32px;
  line-height: calc(46/32);
}
.fz-38 {
  font-size: 38px;
}
.fz-40 {
  font-size: 40px;
  line-height: calc(59/40);
}
.fz-48 {
  font-size: 48px;
  line-height: calc(69/48);
}
.fz-52 {
  font-size: 52px;
  line-height: calc(75/52);
}
.fz-58 {
  font-size: 58px;
}
/* =======================================================
header
======================================================= */
.ly-header {
  position: relative;
  padding: 26px 0 40px;
}
.ly-header::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 228px;
  content: "";
  background: linear-gradient(107deg, #b117a0 0%, #6c0662 100%);
  transform: translateX(-50%);
}
.bl-header {
  width: 694px;
}
.bl-header-hgroup-sttl {
  margin: 0 auto 26px;
}
.bl-header-hgroup-ttl {
  width: 654px;
  margin: 0 auto;
}
/* =======================================================
共通
======================================================= */
.el-att {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.el-att::before {
  content: "※";
}
.el-att.--01::before {
  content: "※1";
}
.el-att.--02::before {
  content: "※2";
}
.el-att.--03::before {
  content: "※3";
}
.el-att.--04::before {
  content: "※4";
}
a,
button {
  transition: all 0.5s ease;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}
/* =======================================================
footer
======================================================= */
.ly-foot {
  padding: 25px 0 23px;
  background: var(--color-accent02);
}
.bl-foot-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5em;
  align-items: center;
  font-size: 13px;
  line-height: calc(19/13);
  color: var(--color-white);
}
.bl-foot-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.bl-foot-nav::before {
  content: "▶";
}