@charset "UTF-8";
/*----------------------------------------------------------
更新日：2024年12月2日

=共通スタイル
=ヘッダーエリア(#header)
=メインエリア基本セッティング(#main)
=フッターエリア(#footer)
=スマホ (728px以下)

-------------------------------------------------------------*/
/* =共通スタイル
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-width: 375px;
  min-height: 100vh;
  background: #EEECEC;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #252121;
}
body.stop {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

hr {
  border: 0;
  border-bottom: 1px solid #929090;
}

.pc {
  display: inherit;
}

.sp {
  display: none;
}

.base-width {
  position: relative;
  max-width: 728px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.btn-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25em 0;
}
.btn-area .btn {
  margin: 0 1em;
}

.btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.8em;
  border-radius: 100vw;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  cursor: pointer;
}
.btn .arrow {
  position: absolute;
  top: 50%;
  right: 1.1em;
  width: 0.4em;
  transform: translate(0, -50%);
}
.btn.btn-red {
  background: #DF000E;
}
.btn.btn-black {
  background: #252121;
}
.btn.tel-btn .tel {
  position: absolute;
  top: 50%;
  left: 1.3em;
  transform: translateY(-50%);
}
.btn.tel-btn div {
  padding-left: 1em;
}
.btn.tel-btn div span:first-child {
  font-size: 16px;
}
.btn.tel-btn div span:last-child {
  font-size: 22px;
}
.btn.back {
  width: 100%;
  max-width: 16.4em;
}
.btn.back .arrow {
  right: auto;
  left: 1.1em;
  transform: translate(0, -50%) rotate(180deg);
}

.move:hover img {
  animation: bullet-move 0.6s linear infinite;
}

@keyframes bullet-move {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translateX(0.5em);
  }
  100% {
    transform: translateX(0);
  }
}
.txt-link {
  color: inherit;
}
.txt-link:not(:hover) {
  text-decoration: underline;
}

.notice li {
  padding-left: 1.5em;
  font-size: 0.875em;
  text-indent: -1.5em;
}
.notice li:before {
  content: "※";
  margin-right: 0.5em;
}
.notice li + li {
  margin-top: 1em;
}

.caution {
  color: #E60020;
}

.obi {
  padding: 0 0.25em;
  background: #DF000E;
  font-weight: 600;
  color: #FFF;
}

.no-link {
  pointer-events: none;
  color: #AAA !important;
}

.table {
  border-collapse: collapse;
  width: 100%;
}
.table th, .table td {
  padding: 0.4em 0.8em;
  border: 1px solid;
  vertical-align: middle;
  text-align: left;
}
.table th {
  background: #F9F8F8;
  white-space: nowrap;
}
.table td {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal {
  display: none;
}
.modal .modal-main {
  position: absolute;
  inset: 0;
  width: calc(100% - 40px);
  margin: 0 auto;
  z-index: 100000;
}
.modal .overlay {
  position: fixed;
  inset: 0;
  margin: auto;
  background: rgba(41, 42, 48, 0.8);
  z-index: 99999;
}

#reserve {
  position: fixed;
  top: 50%;
  right: 0;
  box-shadow: 0 0 0.8em 0 rgba(0, 0, 0, 0.2);
  transform: translate(0, -55%);
  z-index: 999;
}
#reserve ul li a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70px;
  padding: 1em 0;
  background: #FFF;
  writing-mode: vertical-rl;
  line-height: 1.2;
  font-weight: 700;
}
#reserve ul li a img {
  display: inline-block;
  margin-bottom: 0.5em;
}
#reserve ul li a.trial {
  background: #252121;
  letter-spacing: 0.25em;
}
#reserve ul li a.trial img {
  width: 25px;
}
#reserve ul li a.lesson {
  color: #DF000E;
}
#reserve ul li a.lesson img {
  width: 21px;
}

#page-top {
  position: fixed;
  right: 40px;
  bottom: 0;
  width: max-content;
  border-radius: 100%;
  box-shadow: 0 0 0.8em 0 rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.2s;
  transform: translateY(100%);
}
#page-top.active {
  bottom: 40px;
  transform: translateY(0);
}

/* ピンポイントレイアウト調整用 */
.nowrap {
  white-space: nowrap;
}

.min-w0 {
  min-width: 0 !important;
}

.mt0, .mv0, .ma0 {
  margin-top: 0 !important;
}

.mr0, .mh0, .ma0 {
  margin-right: 0 !important;
}

.mb0, .mv0, .ma0 {
  margin-bottom: 0 !important;
}

.ml0, .mh0, .ma0 {
  margin-left: 0 !important;
}

.pt0, .pv0, .pa0 {
  padding-top: 0 !important;
}

.pr0, .ph0, .pa0 {
  padding-right: 0 !important;
}

.pb0, .pv0, .pa0 {
  padding-bottom: 0 !important;
}

.pl0, .ph0, .pa0 {
  padding-left: 0 !important;
}

.mr1em, .mh1em, .ma1em {
  margin-right: 1em !important;
}

.mb1em, .mv1em, .ma1em {
  margin-bottom: 1em !important;
}

.ml1em, .mh1em, .ma1em {
  margin-left: 1em !important;
}

.pt1em, .pv1em, .pa1em {
  padding-top: 1em !important;
}

.pr1em, .ph1em, .pa1em {
  padding-right: 1em !important;
}

.pb1em, .pv1em, .pa1em {
  padding-bottom: 1em !important;
}

.pl1em, .ph1em, .pa1em {
  padding-left: 1em !important;
}

.mt2em, .mv2em, .ma2em {
  margin-top: 2em !important;
}

.mr2em, .mh2em, .ma2em {
  margin-right: 2em !important;
}

.mb2em, .mv2em, .ma2em {
  margin-bottom: 2em !important;
}

.ml2em, .mh2em, .ma2em {
  margin-left: 2em !important;
}

.pt2em, .pv2em, .pa2em {
  padding-top: 2em !important;
}

.pr2em, .ph2em, .pa2em {
  padding-right: 2em !important;
}

.pb2em, .pv2em, .pa2em {
  padding-bottom: 2em !important;
}

.pl2em, .ph2em, .pa2em {
  padding-left: 2em !important;
}

.mt3em, .mv3em, .ma3em {
  margin-top: 3em !important;
}

.mr3em, .mh3em, .ma3em {
  margin-right: 3em !important;
}

.mb3em, .mv3em, .ma3em {
  margin-bottom: 3em !important;
}

.ml3em, .mh3em, .ma3em {
  margin-left: 3em !important;
}

.pt3em, .pv3em, .pa3em {
  padding-top: 3em !important;
}

.pr3em, .ph3em, .pa3em {
  padding-right: 3em !important;
}

.pb3em, .pv3em, .pa3em {
  padding-bottom: 3em !important;
}

.pl3em, .ph3em, .pa3em {
  padding-left: 3em !important;
}

/* =ヘッダーエリア(#header)
------------------------------------------------------------*/
#header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 96px;
  min-width: 375px;
  letter-spacing: normal;
  z-index: 9999;
}
#header .h-logo {
  width: 204px;
  margin-left: 40px;
}
#header .sp-menu {
  position: fixed;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #000;
  cursor: pointer;
  z-index: 3;
}
#header .sp-menu span, #header .sp-menu:before, #header .sp-menu:after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 1px;
  background: #FFF;
  transition: 0.2s;
}
#header .sp-menu:before {
  transform: translateY(-8px);
}
#header .sp-menu:after {
  transform: translateY(8px);
}
#header .sp-menu.open span {
  display: none;
}
#header .sp-menu.open:before {
  transform: rotate(45deg);
}
#header .sp-menu.open:after {
  transform: rotate(-45deg);
}
#header .sp-menu.open + nav {
  transform: translateX(0);
}
#header nav {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-width: max-content;
  height: 100%;
  padding: 0 50px;
  background: #F9F8F8;
  border-radius: 20px 0 0 20px;
  font-weight: 700;
  transform: translateX(100%);
  transition: 0.3s;
  z-index: 2;
}
#header nav .inner {
  display: flex;
}
#header nav .inner .btn-menu li:not(:last-of-type) {
  margin-bottom: 20px;
}
#header nav .inner .btn-menu li a {
  width: 254px;
}
#header nav .inner .btn-menu li a:hover {
  opacity: 0.6;
}
#header nav .inner .btn-menu li a .tel {
  position: absolute;
  top: 50%;
  left: 1.3em;
  transform: translateY(-50%);
}
#header nav .inner .btn-menu li a div {
  padding-left: 1em;
}
#header nav .inner .btn-menu li a div span:first-child {
  font-size: 16px;
}
#header nav .inner .btn-menu li a div span:last-child {
  font-size: 22px;
}
#header nav .inner .menu {
  margin-left: 50px;
}
#header nav .inner .menu li a:hover {
  opacity: 0.6;
}
#header nav .inner .menu .main {
  margin-bottom: 30px;
}
#header nav .inner .menu .main li:not(:last-of-type) {
  margin-bottom: 1em;
}
#header nav .inner .menu .main li a {
  color: #DF000E;
}
#header nav .inner .menu .sub li:not(last-of-type) {
  margin-bottom: 0.25em;
}
#header .overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  transform: translateX(-100%);
}
#header .overlay.active {
  transform: translateX(0%);
}

/* =メインエリア基本セッティング(#main)
------------------------------------------------------------*/
main {
  flex-grow: 1;
}
main:not(#top-main) {
  overflow: hidden;
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
}
main:not(#top-main) #page-title {
  margin: 1.125em 0;
}
main:not(#top-main) #page-title img {
  height: 100%;
}
main:not(#top-main) #section-nav {
  margin: 0 1.8em 2.5em;
  border-left: 0.25em solid #DF000E;
  background: #FFF;
}
main:not(#top-main) #section-nav ul {
  padding: 0 1em;
}
main:not(#top-main) #section-nav ul li:not(:last-of-type) {
  border-bottom: 1px solid #DCDCDC;
}
main:not(#top-main) #section-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3em;
  padding: 0 0.6em;
  font-weight: 700;
}
main:not(#top-main) #section-nav ul li a span {
  display: flex;
  align-items: center;
}
main:not(#top-main) #section-nav ul li a span:before {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 1px;
  margin: 0 0.4em 0 0.8em;
  background: #252121;
}
main:not(#top-main) .sec {
  margin-bottom: 2.5em;
  padding: 1.8em;
  background: #FFF;
  box-shadow: 0.25em 0.25em 0.8em 0 rgba(0, 0, 0, 0.1);
}
main:not(#top-main) .sec h2 {
  margin-bottom: 2em;
  padding-left: 1em;
  border-left: 0.25em solid #DF000E;
  line-height: 1.5;
}
main:not(#top-main) .sec h2 span {
  display: block;
}
main:not(#top-main) .sec h2 span:first-child {
  font-size: 0.875em;
  font-weight: 500;
  color: #DF000E;
}
main:not(#top-main) .sec h2 span:nth-child(2) {
  letter-spacing: 0.01em;
  font-size: 1.5em;
  font-weight: 700;
}

/* =フッターエリア(#footer)
------------------------------------------------------------*/
#footer {
  padding: 40px 0;
  background: #252121;
  color: #EEECEC;
}
#footer .inner {
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
}
#footer .inner .f-logo {
  width: 200px;
  margin-bottom: 30px;
}
#footer .inner address {
  margin-bottom: 30px;
}
#footer .inner nav {
  margin-bottom: 30px;
}
#footer .inner nav ul {
  display: flex;
  font-size: 14px;
}
#footer .inner nav ul:not(:last-of-type) {
  margin-bottom: 0.5em;
}
#footer .inner nav ul li {
  margin-right: 1em;
  padding-right: 1em;
  line-height: 1.4;
}
#footer .inner nav ul li:not(:last-of-type) {
  border-right: 1px solid;
}
#footer .inner nav ul li a:hover {
  opacity: 0.6;
}
#footer .inner #copyright {
  letter-spacing: normal;
  font-size: 10px;
}

/* ------------------------------------------------------------------
	スマホ (728px以下)
-------------------------------------------------------------------*/
@media screen and (max-width: 728px) {
  /* =共通スタイル
  ------------------------------------------------------------*/
  body {
    font-size: 3.87vw;
  }

  a {
    transition: 0s;
  }

  .sp {
    display: inherit;
  }

  .pc {
    display: none;
  }

  .base-width {
    padding: 0 1.8em;
  }

  .btn-area .btn {
    margin: 0;
  }

  .btn {
    font-size: 1.12em;
  }
  .btn.tel-btn {
    width: 100%;
  }
  .btn.tel-btn .tel {
    left: 1.4em;
    width: 5.55vw;
  }
  .btn.tel-btn div {
    padding-left: 1em;
  }
  .btn.tel-btn div span:first-child {
    font-size: 0.89em;
  }
  .btn.tel-btn div span:last-child {
    font-size: 1.18em;
  }

  #reserve {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    transform: translateY(0);
  }
  #reserve ul {
    display: flex;
    width: 100%;
  }
  #reserve ul li:first-of-type {
    width: 47.5%;
  }
  #reserve ul li:last-of-type {
    flex-grow: 1;
  }
  #reserve ul li a {
    flex-direction: row;
    width: 100%;
    height: 17.4vw;
    padding: 0;
    writing-mode: inherit;
  }
  #reserve ul li a img {
    margin: 0 0.5em 0 0;
  }
  #reserve ul li a.trial {
    letter-spacing: 0.05em;
  }
  #reserve ul li a.trial img {
    width: 6.03vw;
  }
  #reserve ul li a.lesson img {
    width: 5.6vw;
  }

  #page-top {
    right: 1.8em;
  }
  #page-top.active {
    bottom: 22vw;
  }
  #page-top a img {
    width: 13.8vw;
  }

  /* =ヘッダーエリア(#header)
  ------------------------------------------------------------*/
  #header {
    height: 26.5vw;
  }
  #header .h-logo {
    width: 61.5vw;
    margin-left: 1.8em;
  }
  #header .sp-menu {
    right: 1.25em;
    width: 16.9vw;
    height: 16.9vw;
  }
  #header .sp-menu span, #header .sp-menu:before, #header .sp-menu:after {
    width: 44%;
  }
  #header .sp-menu:before {
    transform: translateY(-2.5vw);
  }
  #header .sp-menu:after {
    transform: translateY(2.5vw);
  }
  #header nav {
    align-items: flex-start;
    width: 80%;
    padding: 34vw 2.5em 2em;
    border-radius: 4vw 0 0 4vw;
  }
  #header nav .inner {
    display: block;
    width: 100%;
  }
  #header nav .inner .btn-menu {
    margin-bottom: 1.8em;
  }
  #header nav .inner .btn-menu li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  #header nav .inner .btn-menu li a {
    width: 100%;
  }
  #header nav .inner .btn-menu li a .tel {
    left: 1.4em;
    width: 5.55vw;
  }
  #header nav .inner .btn-menu li a div {
    padding-left: 1em;
  }
  #header nav .inner .btn-menu li a div span:first-child {
    font-size: 0.89em;
  }
  #header nav .inner .btn-menu li a div span:last-child {
    font-size: 1.18em;
  }
  #header nav .inner .menu {
    margin-left: 0;
    text-align: right;
  }
  #header nav .inner .menu .main {
    margin-bottom: 1.8em;
    font-size: 1.24em;
  }

  /* =メインエリア基本セッティング(#main)
  ------------------------------------------------------------*/
  /* =フッターエリア(#footer)
  ------------------------------------------------------------*/
  #footer {
    padding: 1.8em 1.8em 22vw;
  }
  #footer .inner .f-logo {
    width: 48vw;
    margin-bottom: 1.8em;
  }
  #footer .inner address {
    margin-bottom: 1.8em;
  }
  #footer .inner nav {
    margin-bottom: 1.8em;
  }
  #footer .inner nav ul {
    font-size: 0.875em;
  }
  #footer .inner nav ul li {
    margin-right: 1em;
    padding-right: 1em;
    line-height: 1.4;
  }
  #footer .inner nav ul li:not(:last-of-type) {
    border-right: 1px solid;
  }
  #footer .inner #copyright {
    font-size: 0.6em;
  }
}
/* ------------------------------------------------------------------
	ここまで
-------------------------------------------------------------------*/
