@charset "UTF-8";
/* reset
----------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-Mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

:root {
  --lp-base-color: #fff;
  --lp-font-color: #403631;
  --lp-gray-color: #dad4d5;
  --lp-key-color: #F39800;
  --lp-secondary-color:#DF6A70;
  --lp-color01:#00AFC8;
  --lp-color03:#004EA2;
  --lp-pk: #F276AC;
  --lp-bl: #00B0F2;
  --lp-gr: #5BC50F;
  --lp-or: #FB9B00;
  --font-langJa:"Noto Sans JP",sans-serif;
  --font-langEn: "Cabin","Noto Sans JP",sans-serif;
  --font-langNum: "Cabin","Noto Sans JP",sans-serif;
  --font-weight-regular:400;
  --font-weight-bold:700;
  --font-weight-black:700;
  --school-main-color:#2DA0E1;
  --school-sub-color:#0054A7;
  --school-inactive-color:#96CFF0;
  --lp-modal-color:#0083D2;
  --event-color01: #00B0F2;
  --event-color02: #F78600;
  --event-color03: #5BC50F;
  --event-color04: #F276AC;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  min-height: 100%;
  height: auto;
}

body {
  font-family: var(--font-langJa);
  line-height: 1.5;
  color: var(--lp-font-color);
  background-color: var(--lp-base-color);
  font-size: 16px;
  min-height: 0vw;
  font-feature-settings: "palt";
}
body::before {
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/pc/bg_menu.svg);
  background-size: 600px;
}

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

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}

main {
  position: relative;
  display: block;
  padding-top: 40px;
}

.l-inner {
  margin: 0 auto;
  width: 89.8666666667%;
  max-width: 375px;
}

.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

@media screen and (min-width: 961px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
/******************************
* layout
*******************************/
.l-container {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 961px) {
  .l-container {
    width: 100%;
    max-width: 375px;
  }
}

/***********************
* pc用レイアウト
************************/
.lp-wrapper {
  display: block;
}
.lp-wrapper > .g02 {
  position: relative;
  background-color: #fff;
  z-index: 2;
}
@media screen and (min-width: 961px) {
  .lp-wrapper {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 375px 1fr;
    grid-template-rows: auto;
    gap: 0px 0px;
    grid-template-areas: "g01 g02 g03";
  }
  .lp-wrapper > .g01 {
    grid-area: g01;
  }
  .lp-wrapper > .g02 {
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(35, 24, 21, 0.2);
  }
  .lp-wrapper > .g03 {
    grid-area: g03;
  }
}

.lp-pc-mv {
  position: relative;
  background: url(../img/pc/bg_menu.svg);
  background-size: 600px;
}
.lp-pc-mv::before {
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/pc/bg_mv.webp) no-repeat top left/contain;
}
@media screen and (min-width: 961px) {
  .lp-pc-mv {
    display: block;
  }
}

.lp-fixnav {
  position: fixed;
  left: 0;
  top: 0;
  padding: 30px 4%;
  width: 100%;
  height: 100vh;
  overflow: auto;
  display: none;
  z-index: 100;
  background: url(../img/pc/bg_menu.svg);
  background-size: 800px;
}

.lp-fixnav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
}
@media screen and (max-height: 800px) and (min-width: 961px) {
  .lp-fixnav-inner {
    height: auto;
  }
}

.is-drawerActive .lp-fixnav {
  display: block;
}

@media screen and (min-width: 961px) {
  .lp-fixnav {
    position: -webkit-sticky;
    position: sticky;
    display: block;
    z-index: 1;
  }
  .is-drawerActive .lp-fixnav {
    display: block;
  }
}
.pc-menu-logo {
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
}
@media screen and (min-width: 961px) {
  .pc-menu-logo {
    max-width: 220px;
  }
}
.pc-menu-logo img {
  width: 100%;
}

.pc-menu-subtitle01 {
  margin: 24px auto 0;
  max-width: 294px;
  width: 100%;
}

.pc-menu-subtitle02 {
  margin: 20px auto 0;
  max-width: 340px;
  width: 100%;
}

.pc-menu-toc {
  margin: 10px auto 0;
  max-width: 315px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pc-menu-toc li {
  position: relative;
}
.pc-menu-toc li a {
  display: block;
}

.menu-toc-link {
  position: relative;
  z-index: 0;
  padding: 0.5em 1em;
  display: block;
  border-radius: 50px;
  border: 2px solid #fff;
  color: #fff;
  background-color: #004FA2;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  font-size: min(5.33vw,20px);
  box-shadow: 2px 2px 0px 0px #00a0e9;
  cursor: pointer;
}
.menu-toc-link[data-color=pink] {
  background-color: var(--event-color04);
  color: #fff;
}
.menu-toc-link[data-color=blue] {
  background-color: var(--event-color01);
  color: #fff;
}
.menu-toc-link .small {
  font-size: 16px;
}
.menu-toc-link:hover {
  color: #004FA2;
  background-color: #FFF000;
}

.bnr-header-main {
  margin: 0 auto 0;
  padding: 20px 0;
  max-width: 320px;
}
.bnr-header-main a:hover, .bnr-header-main a:focus {
  opacity: 0.6;
}

/******************************
* ハンバーガーメニュー
*******************************/
.hamburger {
  position: fixed;
  content: "";
  top: 0;
  right: 4%;
  bottom: 0;
  left: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
  outline: 0;
  border: 0;
  width: 20px;
  height: 30px;
  transition: background-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  background-color: rgba(255, 255, 255, 0);
}
.hamburger .text {
  margin-top: 30px;
  display: block;
  color: #004fa3;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  transition: opacity 0.3s ease-in-out;
  transition-property: opacity, width, margin;
}

.hamburger__line {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: background 0.2s cubic-bezier(0.23, 1, 0.58, 1);
  margin: auto;
  border-radius: 0.25em;
  background-color: #004fa3;
  width: 20px;
  height: 2px;
  border-radius: 2px;
}
.hamburger__line:after, .hamburger__line:before {
  display: block;
  position: absolute;
  content: "";
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1), top 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s;
  border-radius: inherit;
  background-color: inherit;
  width: 100%;
  height: 100%;
}
.hamburger__line:before {
  top: -5px;
}
.hamburger__line:after {
  top: 5px;
}

.is-drawerActive .hamburger__line {
  background-color: transparent;
}
.is-drawerActive .hamburger__line:after,
.is-drawerActive .hamburger__line:before {
  top: 0;
  background-color: #004fa3;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s, top 0.2s cubic-bezier(0.23, 1, 0.58, 1);
}
.is-drawerActive .hamburger__line:before {
  transform: rotate(-45deg);
}
.is-drawerActive .hamburger__line:after {
  transform: rotate(45deg);
}

@media screen and (min-width: 961px) {
  .hamburger {
    display: none;
  }
}
/******************************
* header
*******************************/
.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 95px;
  z-index: 100;
  background-color: white;
  height: 40px;
}
@media screen and (min-width: 961px) {
  .l-header {
    left: 50%;
    transform: translateX(-50%);
    max-width: 375px;
  }
}
.l-header .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 97%;
  max-width: 375px;
  height: 100%;
}

.c-logo {
  width: 114px;
  flex-shrink: 0;
}
.c-logo img {
  vertical-align: middle;
}
.c-logo a {
  display: block;
}

.header-link-main {
  width: 70px;
}
.header-link-main img {
  width: 100%;
  height: auto;
}
.header-link-main a:hover {
  opacity: 0.6;
}

/***********************
* footer
***********************/
.l-footer {
  padding: 15px 6.5% 15px;
  background: #004fa3;
  color: #fff;
}
@media screen and (min-width: 961px) {
  .l-footer {
    padding-bottom: 15px;
  }
}

.footer-logo {
  margin: 0 auto;
  width: 191px;
}

.footer-copy {
  margin-top: 15px;
  font-size: 10px;
  text-align: center;
}

/***********************
* footer　固定メニュー
************************/
.fixed-menu {
  display: flex;
  padding: 0 2%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
  background-color: #fff;
}
@media screen and (min-width: 961px) {
  .fixed-menu {
    display: none;
  }
}

.fixed-menu-item {
  padding: 0.5em 0.25em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 50%;
  max-width: 175px;
  height: auto;
  border-radius: 10px;
}
.fixed-menu-item .label {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.1em;
}
.fixed-menu-item::before {
  content: "";
  margin-right: 0.5em;
  width: 1.5em;
  height: 1.5em;
}
.fixed-menu-item.menu01 {
  background: #90D958;
  border-bottom: 5px solid #00A046;
}
.fixed-menu-item.menu01::before {
  position: relative;
  background: #fff;
  -webkit-mask-image: url(../img/sp/reserve/ico_reserve_document.svg);
          mask-image: url(../img/sp/reserve/ico_reserve_document.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.fixed-menu-item.menu02 {
  background-color: #FF4E87;
  border-bottom: 5px solid #D8222D;
}
.fixed-menu-item.menu02::before {
  background: #fff;
  -webkit-mask-image: url(../img/sp/reserve/ico_reserve_web.svg);
          mask-image: url(../img/sp/reserve/ico_reserve_web.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.fixed-menu-item:hover {
  opacity: 1;
}

/***********************
* utility
************************/
.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.u-en {
  font-family: var(--font-langEn);
}

.u-num {
  font-family: var(--font-langNum);
}

.u-tal {
  text-align: left;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right;
}

.u-fwb {
  font-weight: 700;
}

.u-primary {
  color: var(--key-color);
}

.u-secondary {
  color: var(--lp-secondary-color);
}

.u-gray {
  color: #9FA0A0;
}

.u-yellow {
  color: #FFF000;
}

.u-color01 {
  color: var(--lp-pk);
}

.u-color02 {
  color: var(--lp-bl);
}

.u-color03 {
  color: var(--lp-gr);
}

.u-color04 {
  color: var(--lp-or);
}

.u-event-color01 {
  color: var(--event-color01);
}

.u-event-color02 {
  color: var(--event-color02);
}

.u-event-color03 {
  color: var(--event-color03);
}

.u-event-color04 {
  color: var(--event-color04);
}

.bg-primary {
  background-color: var(--lp-key-color);
}

.bg-secondary {
  background-color: var(--lp-secondary-color);
}

.bg-yellow {
  background-color: #FFF100;
}

.u-link {
  text-decoration: underline;
}

* + .c-btn01-lead {
  margin-top: 20px;
}

.c-btn01-lead {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.18em;
}

.c-btn01-lead + .c-btn01 {
  margin-top: 4px;
}

.c-btn01 a {
  position: relative;
  padding: 1em 1em;
  display: block;
  color: #fff;
  background: var(--lp-color03);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-width: 2px;
  border-radius: 35px;
  border-bottom: 4px solid #003269;
}
.c-btn01 a:hover, .c-btn01 a:focus {
  opacity: 0.6;
}
.c-btn01 a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background-color: #fff;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-size: contain;
  mask-image: url(../img/common/icon_arrow.svg);
  mask-size: contain;
  transition: background 0.3s linear;
  width: 1em;
  height: 1em;
}
.c-btn01 a .line {
  position: relative;
}
.c-btn01 a .line::before {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: 0.5em;
  background: #FFF100;
  mix-blend-mode: multiply;
  z-index: 2;
}

.c-btn01[data-color=green] a {
  text-align: center;
  color: var(--lp-color01);
  background: linear-gradient(-36deg, #fff 35%, #E7F6F9 0);
  border: 2px solid var(--lp-color01);
}
.c-btn01[data-color=green] a:after {
  background: var(--lp-color01);
}
.c-btn01[data-color=green] a:hover, .c-btn01[data-color=green] a:focus {
  opacity: 0.6;
}

.c-btn03 a {
  position: relative;
  margin: 0 auto 0;
  padding: 0.75em 2.5em 0.75em 0.5em;
  display: block;
  color: #fff;
  background: var(--lp-color03);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-size: min(3.73vw,14px);
  letter-spacing: 0.2em;
  text-align: center;
  border-bottom: 4px solid #003269;
  border-radius: 40px;
  width: 215px;
}
.c-btn03 a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_arrow.svg) no-repeat center/contain;
}
.c-btn03 a:hover, .c-btn03 a:focus {
  opacity: 0.6;
}

.c-btn03.line a {
  background-color: #06C755;
  width: 245px;
  border-bottom-color: #218B3A;
}

.c-btn04 {
  text-align: right;
}
.c-btn04 a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-size: min(3.73vw,14px);
  letter-spacing: 0.2em;
}
.c-btn04 a span {
  position: relative;
  padding-left: 1em;
  display: inline-block;
  border-bottom: 1px solid;
}
.c-btn04 a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_triangle.svg) no-repeat center/contain;
}
.c-btn04 a:hover, .c-btn04 a:focus {
  opacity: 0.6;
}

.c-list01 li {
  position: relative;
  padding-left: 1em;
}
.c-list01 li::before {
  content: "※";
  position: absolute;
  left: 0;
  display: block;
}

.c-link01 {
  position: relative;
  display: block;
  padding-right: 1.25em;
  color: var(--lp-pk);
  font-weight: 700;
}
.c-link01::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--lp-pk);
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
  mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/***********************
* 講習のご予約はこちら
************************/
.c-button-block {
  padding: 16px 0;
}

.c-button-block + .c-event-link {
  padding-top: 0;
}

.sec-method + .c-event-link {
  padding-top: 0;
}

.c-event-link {
  padding: 30px 0;
}
.c-event-link a:hover {
  opacity: 0.6;
}

/***********************
* 日程、単元リンクボタン
************************/
.c-pdf-btn-wrap {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  width: 100%;
}
.c-pdf-btn-wrap > * {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/***********************
* マーカー
************************/
.marker-yellow {
  background: linear-gradient(transparent 70%, #FFF000 30%);
}

/***********************
* FV
**********************/
.mv {
  position: relative;
}

/*******************
* イベントbox 
********************/
.sec-event {
  padding: 0 0 20px;
  overflow: hidden;
  background: url(../img/pc/bg_menu.svg);
  background-size: 800px;
}

.event-title {
  margin: 0 auto 0;
  padding-top: 14px;
  width: 94%;
}

.c-box01 {
  position: relative;
  border-radius: 15px;
  background-color: #fff;
  border: 4px solid var(--event-color02);
}
.c-box01.blue {
  border-color: var(--event-color01);
}
.c-box01.green {
  border-color: var(--event-color03);
}
.c-box01.pink {
  border-color: var(--event-color04);
}

.c-box01-title {
  position: relative;
  padding: 0.5em 0.5em;
  font-size: 21px;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
.c-box01-title.orange {
  background: var(--event-color02);
}
.c-box01-title.blue {
  background: var(--event-color01);
}
.c-box01-title.green {
  background: var(--event-color03);
}
.c-box01-title.pink {
  background: var(--event-color04);
}
.c-box01-title .circle {
  position: absolute;
  right: 10%;
  top: -3em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5em;
  background: #F59600;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.52;
  letter-spacing: 0.1em;
  font-size: min(4.53vw, 17px);
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  border-radius: 100%;
}

.c-box01-lead {
  padding: 0.15em 2em;
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 900;
}
.c-box01-lead.orange {
  color: var(--event-color02);
}
.c-box01-lead.blue {
  color: var(--event-color01);
}
.c-box01-lead.green {
  color: var(--event-color03);
}
.c-box01-lead.pink {
  color: var(--event-color04);
}

.c-box01-subtitle {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 27px;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-align: center;
}
.c-box01-subtitle.orange {
  color: var(--event-color02);
}
.c-box01-subtitle.blue {
  color: var(--event-color01);
}
.c-box01-subtitle.green {
  color: var(--event-color03);
}
.c-box01-subtitle.pink {
  margin-left: 0;
  color: var(--event-color04);
}

.c-box01-subtitle span {
  background: linear-gradient(transparent 60%, #FFF000 40%);
}

.c-box01-body {
  padding: 20px 6% 10px;
  text-align: center;
  border-radius: 0 0 24px 24px;
}

.c-box01-text01 {
  margin-top: 1.5em;
  font-size: 13px;
  line-height: 1.6153846154;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-align: left;
}

.c-box01-text02 {
  margin-top: 1em;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.c-box01.blue .c-box01-text02 {
  padding-right: 16%;
}

.c-box01-label {
  margin-top: 0.5em;
  padding: 0.25em 1.5em;
  display: block;
  font-size: 13px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  background-color: #7A7271;
  text-align: center;
}

.c-box01-button {
  margin-top: 0.5em;
  display: block;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1em 0.5em;
  border: 3px solid var(--event-color02);
  border-radius: 50px;
}
.c-box01-button.orange span:after {
  background-color: var(--event-color02);
}
.c-box01-button.blue {
  border-color: var(--event-color01);
}
.c-box01-button.blue span:after {
  background-color: var(--event-color01);
}
.c-box01-button.green {
  border-color: var(--event-color03);
}
.c-box01-button.green span:after {
  background-color: var(--event-color03);
}
.c-box01-button.pink {
  border-color: var(--event-color04);
}
.c-box01-button.pink span:after {
  background-color: var(--event-color04);
}
.c-box01-button:hover {
  opacity: 0.6;
}
.c-box01-button span {
  position: relative;
  display: inline-block;
  padding-right: 1.5em;
}
.c-box01-button span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.c-box01-illust01 {
  position: absolute;
  right: -6%;
  top: 30%;
  width: 32%;
  aspect-ratio: 111/70;
  z-index: 2;
}

.c-box01-illust02 {
  position: absolute;
  left: -2%;
  top: 21%;
  width: 19%;
  aspect-ratio: 211/377;
  z-index: 2;
}

.c-box01-illust03 {
  position: absolute;
  right: -1%;
  top: 25%;
  width: 16%;
  aspect-ratio: 190/343;
  z-index: 2;
}

.c-box01-illust04 {
  position: absolute;
  right: -5%;
  top: 27%;
  width: 21%;
  aspect-ratio: 222/302;
}

[class^=c-box01-illust] img {
  height: auto;
}

.c-box01 + .c-box01 {
  margin-top: 20px;
}

.c-box02-button {
  margin-top: 10px;
  margin-left: auto;
  text-align: right;
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.c-box02-button.orange {
  color: var(--event-color02);
}
.c-box02-button.orange span:after {
  background-color: var(--event-color02);
}
.c-box02-button.blue {
  color: var(--event-color01);
}
.c-box02-button.blue span:after {
  background-color: var(--event-color01);
}
.c-box02-button.green {
  color: var(--event-color03);
}
.c-box02-button.green span:after {
  background-color: var(--event-color03);
}
.c-box02-button.pink {
  color: var(--event-color04);
}
.c-box02-button.pink span:after {
  background-color: var(--event-color04);
}
.c-box02-button:hover {
  opacity: 0.6;
}
.c-box02-button span {
  position: relative;
  display: inline-block;
  padding: 0 1.5em;
}
.c-box02-button span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.c-box02 {
  position: relative;
  padding: 20px 4.5%;
  border-radius: 15px;
  background-color: #fff;
  border: 4px solid #fff;
}
.c-box02.orange {
  border: 4px solid var(--event-color02);
}
.c-box02.blue {
  border-color: var(--event-color01);
}
.c-box02.green {
  border-color: var(--event-color03);
}
.c-box02.pink {
  border-color: var(--event-color04);
}
.c-box02:first-child {
  border-radius: 15px 15px 0 0;
}
.c-box02:last-child {
  border-radius: 0 0 15px 15px;
}

.c-box02-thumb {
  background-color: #999999;
  aspect-ratio: 297/198;
}

.c-box02-body {
  margin-top: 20px;
}

.c-box02-title {
  position: relative;
  padding: 0.5em 0.5em;
  font-size: 20px;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
.c-box02-title.orange {
  background: var(--event-color02);
}
.c-box02-title.blue {
  background: var(--event-color01);
}
.c-box02-title.green {
  background: var(--event-color03);
}
.c-box02-title.pink {
  background: var(--event-color04);
}
.c-box02-title .circle {
  position: absolute;
  right: 10%;
  top: -3em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5em;
  background: #F59600;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.52;
  letter-spacing: 0.1em;
  font-size: min(4.53vw, 17px);
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  border-radius: 100%;
}

.c-box02-subtitle {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-weight: 900;
}
.c-box02-subtitle.pink {
  color: var(--event-color04);
}

.c-box02-lead {
  padding: 0.15em 2em;
  font-size: 24px;
  letter-spacing: 0.06em;
  font-weight: 900;
}
.c-box02-lead.orange {
  color: var(--event-color02);
}
.c-box02-lead.blue {
  color: var(--event-color01);
}
.c-box02-lead.green {
  color: var(--event-color03);
}
.c-box02-lead.pink {
  color: var(--event-color04);
}

.c-box02-text01 {
  margin-top: 1em;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.c-box02-text01.orange {
  color: var(--event-color02);
}
.c-box02-text01.blue {
  color: var(--event-color01);
}
.c-box02-text01.green {
  color: var(--event-color03);
}
.c-box02-text01.pink {
  color: var(--event-color04);
}

.event-btn02 {
  margin-top: 20px;
}

/*******************
* event-list
********************/
.sec-eventlist {
  padding-top: 20px;
}

.event-tab {
  margin-top: 20px;
}
.event-tab .tab-area {
  display: flex;
  justify-content: center;
  padding: 0 15px;
  gap: 10px;
}
.event-tab .tab02 {
  padding: 8px 12px;
  background: var(--school-inactive-color);
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  min-height: 40px;
  border-radius: 10px 10px 0 0;
  width: 7em;
  border: none;
}
.event-tab .tab02.is-active {
  background: var(--school-main-color);
}
.event-tab .panel02 {
  display: none;
  padding: 0;
  background: var(--school-inactive-color);
}
.event-tab .panel02.is-active {
  display: block;
}

.ev-area-title {
  padding: 0.5em 1em;
  color: #fff;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.57;
  letter-spacing: 0.2em;
  background: var(--school-main-color);
}

.ev-area-body {
  padding: 18px 0;
}

.eventlist-title-wrap {
  margin: 0 auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 33.3% 33.3% 33.3%;
  grid-template-rows: auto;
  gap: 0px 0px;
  max-width: 375px;
  width: 100%;
}
.eventlist-title-wrap .g01 {
  grid-area: 1/1/2/4;
}
.eventlist-title-wrap .g02 {
  grid-area: 1/2/2/4;
}

.eventlist-title img {
  width: 100%;
}

.eventlist-lead {
  padding-left: 2%;
  padding-right: 4%;
  margin-top: auto;
  font-size: min(4vw,15px);
  line-height: 166.6666666667%;
  font-weight: 500;
}

.eventlist {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  gap: 30px 0;
  margin-top: 35px;
  padding-bottom: 35px;
}
.eventlist::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: url(../img/border-dot-green.svg) repeat-x left top;
}

.ev-box01 {
  border-radius: 15px;
  background: #fff;
  border: 4px solid var(--lp-color03);
}
.ev-box01 + .ev-box01 {
  margin-top: 30px;
}

.ev-box01-title {
  border-radius: 10px 10px 0 0;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.57;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--lp-color03);
}
.ev-box01-title span {
  position: relative;
  display: block;
  padding: 0.25em 1em 0.25em 2.5em;
}
.ev-box01-title .jh::before {
  position: absolute;
  right: 2%;
  bottom: 0;
  content: "";
  display: block;
  aspect-ratio: 115/64;
  width: 34%;
  background: url(../img/sp/eventlist/before_jh.png) no-repeat center bottom/contain;
}
.ev-box01-title .sc::before {
  position: absolute;
  right: 3%;
  bottom: 0;
  content: "";
  display: block;
  aspect-ratio: 115/64;
  width: 34%;
  background: url(../img/sp/eventlist/before_sc.png) no-repeat center bottom/contain;
}

.ev-box01-body {
  padding: 20px 4%;
}

.ev-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  padding: 1.5em 4% 1em;
  border: 1px solid var(--lp-color01);
}
.ev-item:before {
  display: block;
  position: absolute;
  top: -2px;
  right: -2px;
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: #fff url(../img/sp/eventlist/item_q_before.svg) no-repeat center/contain;
  z-index: 2;
}
.ev-item + .ev-item {
  margin-top: 20px;
}
.ev-item .ev-title {
  position: relative;
  margin-top: 0;
  padding-bottom: 0.5em;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  font-size: min(5.33vw,20px);
  color: var(--lp-color03);
  border-bottom: 1px solid var(--lp-color01);
}
.ev-item .ev-title .circle {
  position: absolute;
  right: 2%;
  bottom: -0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5em;
  background: #FFF400;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.52;
  letter-spacing: 0.1em;
  font-size: min(4.53vw,17px);
  aspect-ratio: 1/1;
  border-radius: 100%;
  z-index: 2;
}
.ev-item .ev-title .circle.--bottom {
  bottom: -2.5em;
}
.ev-item .ev-title:has(.circle) {
  padding-right: 3.5em;
}
.ev-item .ev-target span {
  display: block;
  padding: 0.5em 1.5em;
  color: #fff;
  background-color: var(--lp-color01);
  border-radius: 15px;
  font-size: 14px;
  font-size: min(3.73vw,14px);
  letter-spacing: 0;
  text-align: center;
}
.ev-item .ev-subject {
  text-align: center;
  background-color: var(--lp-color01);
  border: 4px solid var(--lp-color01);
  border-radius: 3px;
  display: flex;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-size: min(3.73vw,14px);
  border-radius: 5px;
}
.ev-item .ev-subject .title {
  position: relative;
  display: block;
  color: var(--lp-color01);
  background-color: #fff;
  width: 50%;
  border-radius: 3px;
}
.ev-item .ev-subject .text {
  margin: auto;
  display: block;
  color: #fff;
}
.ev-item .ev-date {
  display: grid;
  grid-template-columns: repeat(1, auto 1fr);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  font-size: min(4.26vw,16px);
  color: var(--lp-color01);
}
.ev-item .ev-date dt {
  min-width: 4em;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.ev-item .ev-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  font-size: min(4.26vw,16px);
}
.ev-item .ev-place {
  padding: 0.15em 1em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  line-height: 1.5;
  background: #E3E1E1;
}
.ev-item .ev-placelist {
  padding-left: 1em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
}
.ev-item .ev-placelist dt {
  font-weight: 700;
}
.ev-item .ev-placelist dt {
  margin-top: 0.5em;
}
.ev-item .ev-placelist .row2 {
  display: flex;
}

/*********************
* bnr
********************/
.bnr-main {
  margin: 0 auto 0;
  padding: 20px 0;
  max-width: 375px;
}
.bnr-main a:hover, .bnr-main a:focus {
  opacity: 0.6;
}

/*********************
* totop
********************/
.totop {
  display: none;
  position: fixed;
  z-index: 100;
  width: 55px;
  right: 15px;
  bottom: 90px;
}
.totop.is-show {
  display: block;
}