@charset "UTF-8";
/* Basis
===================================== */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  line-height: 1.6;
  overflow: hidden;
  color: #646464;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6em;
  letter-spacing: 1px;
}

a[href^="tel:"] {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
}

.pcNone {
  display: none !important;
}

/* Effect
===================================== */
/* ====== フェードイン ====== */
.effect_fadeIn_once {
  opacity: 0;
}

.effect_fadeLeftIn_once {
  opacity: 0;
  transform: translate(-30px, 0);
}

.effect_fadeRightIn_once {
  opacity: 0;
  transform: translate(30px, 0);
}

.effect_fadeBottomIn_once {
  opacity: 0;
  transform: translate(0, 30px);
}

.effect_end {
  opacity: 1;
  transform: translate(0);
}

.effect_fadeIn_once.effect_end {
  transition-property: opacity;
  transition-duration: 2s;
}

.effect_fadeLeftIn_once.effect_end {
  transition-property: opacity, transform;
  transition-duration: 2s;
}

.effect_fadeRightIn_once.effect_end {
  transition-property: opacity, transform;
  transition-duration: 2s;
}

.effect_fadeBottomIn_once.effect_end {
  transition-property: opacity, transform;
  transition-duration: 1s;
}

/* Header
===================================== */
header > div#header {
  position: relative;
  z-index: 1000;
  max-width: 1200px;
  margin: 0 auto;
}
header > div#header h1#headerLogo,
header > div#header p#headerLogo {
  position: absolute;
  top: 0;
  left: 38px;
  box-sizing: border-box;
  text-align: center;
}
header > div#header h1#headerLogo::before,
header > div#header p#headerLogo::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}
header > div#header h1#headerLogo {
  width: 302px;
  height: 498px;
  padding: 75px 40px 0;
}
header > div#header p#headerLogo {
  width: 180px;
  height: 296px;
  padding: 25px 22px 0;
}
header > div#header p#headerLogo img {
  max-width: 100%;
}
header > div#header h1#headerLogo img,
header > div#header p#headerLogo img {
  opacity: 0;
}
header > div#header h1#headerLogo img:nth-child(2),
header > div#header p#headerLogo img:nth-child(2) {
  margin: -5.4% 0 0;
}
header > div#header h1#headerLogo img:nth-child(3),
header > div#header p#headerLogo img:nth-child(3) {
  margin: -0.1% 0 3.6%;
}
header > div#header h1#headerLogo.effect_trigger_once,
header > div#header p#headerLogo.effect_trigger_once {
  transform: none;
}
header > div#header h1#headerLogo.effect_trigger_once::before,
header > div#header p#headerLogo.effect_trigger_once::before {
  opacity: 0;
  transform: translate(0, -50px);
}
header > div#header h1#headerLogo.effect_trigger_once img,
header > div#header p#headerLogo.effect_trigger_once img {
  opacity: 0;
}
header > div#header h1#headerLogo.effect_trigger_once.effect_end::before,
header > div#header p#headerLogo.effect_trigger_once.effect_end::before {
  transition-property: opacity, transform;
  transition-duration: 1s;
  opacity: 1;
  transform: translate(0);
}
header > div#header h1#headerLogo.effect_trigger_once.effect_end img,
header > div#header p#headerLogo.effect_trigger_once.effect_end img {
  transition-property: opacity;
  transition-duration: 1s;
  opacity: 1;
}
header > div#header h1#headerLogo.effect_trigger_once.effect_end img:nth-child(1),
header > div#header p#headerLogo.effect_trigger_once.effect_end img:nth-child(1) {
  transition-delay: 1s;
}
header > div#header h1#headerLogo.effect_trigger_once.effect_end img:nth-child(2),
header > div#header p#headerLogo.effect_trigger_once.effect_end img:nth-child(2) {
  transition-delay: 1.3s;
}
header > div#header h1#headerLogo.effect_trigger_once.effect_end img:nth-child(3),
header > div#header p#headerLogo.effect_trigger_once.effect_end img:nth-child(3) {
  transition-delay: 1.6s;
}
header > div#header h1#headerLogo.effect_trigger_once.effect_end img:nth-child(4),
header > div#header p#headerLogo.effect_trigger_once.effect_end img:nth-child(4) {
  transition-delay: 2s;
}
header > div#header nav#headerMenu {
  position: absolute;
  top: 24px;
  right: 40px;
  padding: 62px 0 0;
}
header > div#header nav#headerMenu::before {
  content: "";
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 52px;
  background: url(../image/header_menu_icon.svg) no-repeat;
}
header > div#header nav#headerMenu > ul.menu {
  display: none;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}
header > div#header nav#headerMenu > ul.menu > li > a {
  display: block;
  padding: 5px 1em 3px;
  border-top: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}
header > div#header nav#headerMenu > ul.menu > li > a:hover {
  color: #000;
  background: #fff;
}
header > div#header nav#headerMenu > ul.menu > li:first-child > a {
  border: none;
}

/* Footer
===================================== */
footer {
  margin: 120px 0 0;
  padding: 0 0 10px;
  color: #fff;
  background: #000;
}
footer > div#footer {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 0;
}
footer > div#footer p.name {
  margin: 50px 0 0 30px;
}
footer > div#footer address {
  margin: 1em 0 0 30px;
}
footer > div#footer address dl {
  font-size: 1.3rem;
}
footer > div#footer address dl > dt {
  margin: 0 0 -1.6em;
}
footer > div#footer address dl > dd {
  margin: 0 0 0 5em;
}
footer > div#footer address dl > dt.address {
  margin-right: -2em;
  letter-spacing: 2em;
}
footer > div#footer address dl > dd.address > a.map {
  display: inline-block;
  opacity: 0.39;
  line-height: 1.2;
  margin: 0 0 0 5px;
  transition: opacity 0.5s;
}
footer > div#footer address dl > dd.address > a.map:hover {
  opacity: 1;
}
footer > div#footer > div.reservation {
  position: relative;
  padding-left: 4%;
}
footer > div#footer > div.reservation p.button {
  position: absolute;
  bottom: 30px;
}
footer > div#footer > div.reservation p.button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: url(../image/footer_reservation_on.svg) no-repeat;
  transition: width 0.5s;
}
footer > div#footer > div.reservation p.button a:hover::before {
  width: 100%;
}
footer > div#footer > div.link {
  margin: 0 0 0 auto;
}
footer > div#footer > div.link ul.icon {
  display: flex;
  float: right;
}
footer > div#footer > div.link ul.icon::after {
  content: "";
  display: block;
  clear: both;
}
footer > div#footer > div.link ul.icon > li {
  margin: 0 0 0 16px;
}
footer > div#footer > div.link ul.icon > li > a {
  opacity: 0.39;
  transition: opacity 0.5s;
}
footer > div#footer > div.link ul.icon > li > a:hover {
  opacity: 1;
}
footer > div#footer > div.link p.asobina {
  margin: 74px 0 0;
}
footer > div#footer > div.link p.asobina > a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
footer > div#footer > div.link p.asobina > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../image/footer_asobina.svg) no-repeat;
  transition: transform 0.5s;
}
footer > div#footer > div.link p.asobina > a:hover::before {
  transform: scale(1.1);
}

p#copyright {
  font-size: 1rem;
  text-align: center;
}

/* Common
===================================== */
/* ====== backToTop ====== */
p#backToTop {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 10;
  line-height: 1;
  margin: 0 0 0 40%;
}
p#backToTop > a {
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.5s;
}
p#backToTop > a::before {
  content: url(../image/icon_backToTop.svg);
  display: block;
}
p#backToTop > a:hover {
  opacity: 0.7;
}

/* ====== anchor ====== */
a[href^="https://yoshikikuremoto.com/"] {
  display: inline-flex;
  column-gap: 2px;
  padding-right: 2px;
  color: inherit;
  text-decoration: none;
}
a[href^="https://yoshikikuremoto.com/"] img {
  margin-top: -3px;
}

/* MainContents
------------------------------------- */
div.contents + div.contents {
  margin-top: 200px;
}

div#topImage {
  margin: 0 0 200px;
  background: no-repeat center bottom;
  background-size: cover;
}
div#topImage > div.contents {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}

body:not(#indexPage) div#topImage::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -70px;
  height: 140px;
  opacity: 0.5;
  background-color: #ad7f49;
}
body:not(#indexPage) div#topImage div.contents {
  z-index: 1;
}
body:not(#indexPage) div#topImage div.contents h1.main {
  position: absolute;
  bottom: -72px;
  max-width: 100%;
}
body:not(#indexPage) div#topImage div.contents h1.main > img {
  max-width: 100%;
}

/* Page
===================================== */
/* Index
------------------------------------- */
body#indexPage div#topImage {
  height: 548px;
  overflow: hidden;
  background-image: url(../image/index_topImage.jpg);
}
body#indexPage div#topImage p.catchPhrase {
  position: absolute;
  top: 50%;
  right: calc((100% - 420px) * 0.169);
  width: calc((100% - 420px) * 0.831);
  max-width: 648px;
  height: calc((100% - 420px) * 0.292);
  max-height: 226px;
  margin: calc((100% - 420px) * -0.146) 0 0;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6));
}
body#indexPage div#topImage p.catchPhrase > img {
  max-width: 100%;
}
body#indexPage div#topImage p.catchPhrase > img:nth-child(2) {
  margin-top: -7.7%;
}
body#indexPage div#topImage p.catchPhrase.effect_trigger_once > img {
  position: relative;
  opacity: 0;
}
body#indexPage div#topImage p.catchPhrase.effect_trigger_once.effect_end > img {
  animation: boundIn 2s forwards;
}
body#indexPage div#topImage p.catchPhrase.effect_trigger_once.effect_end > img:nth-child(2) {
  animation-delay: 2s;
}
@keyframes boundIn {
  0% {
    top: 100%;
    opacity: 0;
  }
  60% {
    top: -40%;
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
body#indexPage div#status {
  display: none;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
body#indexPage div#status > div {
  position: absolute;
  right: 0;
  z-index: 100;
  box-sizing: border-box;
  margin: -260px 0 0;
  padding: 10px;
  background: rgba(80, 80, 80, 0.9);
}
body#indexPage div#status button {
  cursor: pointer;
}
body#indexPage div#status button:not(.closeIcon) {
  display: block;
  position: relative;
  margin: 20px auto 0;
  padding: 0.2em 15px;
  color: #fff;
}
body#indexPage div#status button:not(.closeIcon)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 4px;
  background: #d6bf9f;
  transition: width 0.3s;
}
body#indexPage div#status button:not(.closeIcon):hover::before {
  width: 100%;
}
body#indexPage div#status > div.main {
  width: 240px;
}
body#indexPage div#status > div.main > h2.title {
  line-height: 1;
  margin: 0 0 10px;
  padding: 0.5em 0.5em 0.4em;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  background: #323232;
}
body#indexPage div#status > div.main > p.nonBusiness,
body#indexPage div#status > div.main > dl.date,
body#indexPage div#status > div.main > p.notes,
body#indexPage div#status > div.main > button.details {
  display: none;
}
body#indexPage div#status > div.main > dl.date {
  align-items: center;
  padding: 0.5em 0 0.2em;
  color: #fff;
  background: #323232;
}
body#indexPage div#status > div.main > dl.date > dt {
  margin: 0 0 0 1em;
  text-align: center;
}
body#indexPage div#status > div.main > dl.date > dd {
  margin: 0 0 0 auto;
  padding: 0 1em 0 0;
  text-align: center;
}
body#indexPage div#status > div.main > p.nonBusiness {
  line-height: 1;
  padding: 1em 0;
  color: #fff;
  text-align: center;
  background: #323232;
}
body#indexPage div#status > div.main > p.notes {
  margin: 10px 0 0;
  padding: 0.2em 0.5em;
  color: #000;
  font-size: 1.2rem;
  word-break: break-all;
  background: #dcdcdc;
}
body#indexPage div#status > div.main[data-state=open] > dl.date {
  display: flex;
}
body#indexPage div#status > div.main[data-state=open] > p.notes {
  display: block;
}
body#indexPage div#status > div.main[data-state=part] > dl.date {
  display: flex;
}
body#indexPage div#status > div.main[data-state=part] > p.notes,
body#indexPage div#status > div.main[data-state=part] > button.details {
  display: block;
}
body#indexPage div#status > div.main[data-state=closed] > dl.date {
  display: flex;
  font-weight: bold;
  background: #ede39c;
}
body#indexPage div#status > div.main[data-state=closed] > dl.date > dt {
  color: #000;
}
body#indexPage div#status > div.main[data-state=closed] > dl.date > dd {
  color: #cc0000;
}
body#indexPage div#status > div.main[data-state=closed] > p.notes {
  display: block;
}
body#indexPage div#status > div.main[data-state=nonBusiness] > p.nonBusiness {
  display: block;
}
body#indexPage div#status > div.main[data-state=nonBusiness] > p.notes {
  display: block;
}
body#indexPage div#status > div.main[data-state=error] > p.nonBusiness {
  display: block;
}
body#indexPage div#status > div.area {
  pointer-events: none;
  display: block;
  top: 250px;
  width: 460px;
  opacity: 0;
  color: #fff;
  transition: opacity 0.2s;
}
body#indexPage div#status > div.area[data-display=true] {
  pointer-events: auto;
  opacity: 1;
}
body#indexPage div#status > div.area > div.inner {
  background: #323232;
}
body#indexPage div#status > div.area h3.title {
  padding: 10px 0 14px;
  font-size: 1.8rem;
  text-align: center;
}
body#indexPage div#status > div.area dl.state {
  clear: both;
  padding: 0 15px 1em 18px;
  font-size: 1.4rem;
}
body#indexPage div#status > div.area dl.state > dt {
  float: left;
  width: 10em;
  font-weight: bold;
}
body#indexPage div#status > div.area dl.state > dd.mark {
  float: left;
  width: 2em;
  text-align: center;
}
body#indexPage div#status > div.area dl.state > dd.date,
body#indexPage div#status > div.area dl.state > dd.text {
  margin: 0 0 0 12.2em;
}
body#indexPage div#status > div.area dl.state > dd.text {
  word-break: break-all;
}
body#indexPage div#status > div.area button.closeIcon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 14px;
  height: 14px;
}
body#indexPage div#status > div.area button.closeIcon img {
  vertical-align: top;
}
body#indexPage div.contents > div.inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
body#indexPage div.contents#renewal {
  margin: -170px 0 -80px;
  text-align: center;
}
body#indexPage div.contents#topWelcome {
  position: relative;
}
body#indexPage div.contents#topWelcome::before, body#indexPage div.contents#topWelcome::after {
  content: "";
  display: block;
  position: absolute;
}
body#indexPage div.contents#topWelcome::before {
  top: 0;
  left: 0;
  width: calc(50% - 300px);
  height: 230px;
  background: #646464;
}
body#indexPage div.contents#topWelcome::after {
  top: 28px;
  right: 0;
  width: calc(50% + 420px);
  height: 320px;
  background: #eae0cf;
}
body#indexPage div.contents#topWelcome > div.inner {
  position: relative;
  z-index: 1;
  padding-top: 56px;
}
body#indexPage div.contents#topWelcome h2.title {
  margin-bottom: 40px;
  text-align: center;
}
body#indexPage div.contents#topWelcome h2.title::before, body#indexPage div.contents#topWelcome h2.title::after {
  content: none;
}
body#indexPage div.contents#topWelcome div.details {
  width: 500px;
  margin: 0 auto;
}
body#indexPage div.contents#topWelcome p.text {
  margin-bottom: 30px;
  text-align: center;
}
body#indexPage div.contents#topWelcome p.image {
  position: absolute;
  top: 56px;
  right: calc(50% + 250px);
  max-width: 348px;
  width: 29%;
}
body#indexPage div.contents#topWelcome p.image > img {
  max-width: 100%;
}
body#indexPage div.contents#topWelcome p.detail {
  width: fit-content;
  margin: 0 auto;
}
body#indexPage div.contents#topWelcome p.detail a {
  display: block;
  position: relative;
}
body#indexPage div.contents#topWelcome p.detail a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: url(../image/index_topWelcome_reservation_on.svg) no-repeat;
  transition: width 0.5s;
}
body#indexPage div.contents#topWelcome p.detail a:hover::before {
  width: 100%;
}
body#indexPage div.contents#topWelcome div.image {
  display: flex;
  column-gap: 8px;
  position: absolute;
  top: 56px;
  left: calc(50% + 250px);
  max-width: 358px;
  width: 29.8333333333%;
}
body#indexPage div.contents#topWelcome div.image img {
  max-width: 100%;
}
body#indexPage div.contents#topWelcome.effect_trigger_once::before, body#indexPage div.contents#topWelcome.effect_trigger_once::after {
  transform: scaleX(0);
}
body#indexPage div.contents#topWelcome.effect_trigger_once h2.title,
body#indexPage div.contents#topWelcome.effect_trigger_once div.details {
  opacity: 0;
  transform: translate(0, 30px);
}
body#indexPage div.contents#topWelcome.effect_trigger_once p.image,
body#indexPage div.contents#topWelcome.effect_trigger_once div.image {
  opacity: 0;
}
body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end::before, body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end::after {
  transform: scaleX(1);
  transition-property: transform;
  transition-duration: 0.5s;
}
body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end::before {
  transform-origin: left;
}
body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end::after {
  transform-origin: right;
}
body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end h2.title,
body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end div.details {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 1s;
}
body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end p.image,
body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end div.image {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 1s;
}
body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end p.image {
  transition-delay: 0.5s;
}
body#indexPage div.contents#topWelcome.effect_trigger_once.effect_end div.image {
  transition-delay: 0.75s;
}
body#indexPage div.contents#topWelcome .inner {
  padding-left: 40px;
}
body#indexPage div.contents#introduction h2.title {
  position: absolute;
  right: 0;
  width: 48.3%;
  max-width: 570px;
}
body#indexPage div.contents#introduction h2.title > img {
  max-width: 100%;
}
body#indexPage div.contents#introduction div.details {
  position: absolute;
  top: 150px;
  right: 0;
  width: 47.5%;
  max-width: 570px;
}
body#indexPage div.contents#introduction div.details > p.text {
  line-height: 2;
}
body#indexPage div.contents#introduction div.details > p.phrase {
  margin: 20px 0 0;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
body#indexPage div.contents#introduction div.details > p.phrase > img {
  max-width: 100%;
  margin: 0 0 0.5em;
}
body#indexPage div.contents#introduction p.image {
  width: 50%;
  max-width: 600px;
  text-align: center;
}
body#indexPage div.contents#introduction p.image > img {
  max-width: 100%;
}
body#indexPage div.contents#introduction .inner.effect_trigger_once h2.title,
body#indexPage div.contents#introduction .inner.effect_trigger_once div.details {
  opacity: 0;
}
body#indexPage div.contents#introduction .inner.effect_trigger_once h2.title {
  transform: translate(-30px, 0);
}
body#indexPage div.contents#introduction .inner.effect_trigger_once div.details {
  transform: translate(0, 30px);
}
body#indexPage div.contents#introduction .inner.effect_trigger_once.effect_end h2.title,
body#indexPage div.contents#introduction .inner.effect_trigger_once.effect_end div.details {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 1s;
}
body#indexPage div.contents#introduction .inner.effect_trigger_once.effect_end div.details {
  transition-delay: 1s;
}
body#indexPage div.contents#news {
  margin-top: 120px;
}
body#indexPage div.contents#news > div.inner {
  max-width: 1400px;
  padding: 40px 0;
  background: #505050 url(../image/index_news_bg.svg) no-repeat center bottom;
}
body#indexPage div.contents#news > div.inner h2.title {
  text-align: center;
}
body#indexPage div.contents#news > div.inner dl.news {
  box-sizing: border-box;
  max-width: 1100px;
  max-height: 18em;
  overflow-y: auto;
  margin: 0 auto;
  padding: 1.8em 50px 0;
  color: #fff;
}
body#indexPage div.contents#news > div.inner dl.news > dt {
  margin: 0 0 -1.6em 2em;
}
body#indexPage div.contents#news > div.inner dl.news > dd.title {
  margin: 0 0 0.5em 10em;
  padding: 0 0 0 0.5em;
  border-bottom: 1px dashed #fff;
}
body#indexPage div.contents#news > div.inner dl.news > dd.text {
  margin: 0 0 1.8em;
  padding: 0 0 1.8em 10.5em;
  border-bottom: 1px solid #fff;
}
body#indexPage div.contents#news > div.inner dl.news > dd:last-child {
  border-bottom: none;
}
body#indexPage div.contents#news > div.inner dl.news > dd.noItem {
  padding: 0;
  text-align: center;
}
body#indexPage div.contents#news > div.inner p.more {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  margin: -24px auto 74px;
  padding: 0 50px;
  text-align: right;
}
body#indexPage div.contents#news > div.inner p.more > a {
  display: block;
  position: absolute;
  right: 0;
}
body#indexPage div.contents#news > div.inner p.more > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 30px;
  background: url(../image/index_news_list_on.svg) no-repeat;
  transition: width 0.5s;
}
body#indexPage div.contents#news > div.inner p.more > a:hover::before {
  width: 100%;
}
body#indexPage div.contents#course {
  position: relative;
}
body#indexPage div.contents#course::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 50px);
  height: 350px;
  background: #eae0cf;
}
body#indexPage div.contents#course > div.inner {
  overflow: hidden;
}
body#indexPage div.contents#course > div.inner h2.title {
  position: absolute;
  top: 36px;
  right: calc(50% + 50px);
  max-width: 540px;
  width: 45%;
}
body#indexPage div.contents#course > div.inner h2.title > img {
  max-width: 100%;
}
body#indexPage div.contents#course > div.inner div.image {
  width: 1200px;
  padding: 15% 0 0;
}
body#indexPage div.contents#course > div.inner div.image::after {
  content: "";
  display: block;
  clear: both;
}
body#indexPage div.contents#course > div.inner div.image > p {
  float: left;
  margin: 0 0 18px 18px;
}
body#indexPage div.contents#course > div.inner div.image > p:first-child {
  margin-left: 0;
}
body#indexPage div.contents#course > div.inner div.image > p:nth-child(4) {
  height: 30px;
}
body#indexPage div.contents#course > div.inner div.image.effect_trigger_once > p {
  opacity: 0;
}
body#indexPage div.contents#course > div.inner div.image.effect_trigger_once.effect_end > p {
  opacity: 1;
  transition: opacity 1s;
  transition-delay: 1s;
}
body#indexPage div.contents#course > div.inner div.image.effect_trigger_once.effect_end > p:nth-child(2) {
  transition-delay: 1.2s;
}
body#indexPage div.contents#course > div.inner div.image.effect_trigger_once.effect_end > p:nth-child(3) {
  transition-delay: 1.4s;
}
body#indexPage div.contents#course > div.inner div.image.effect_trigger_once.effect_end > p:nth-child(4) {
  transition-delay: 1.8s;
}
body#indexPage div.contents#course > div.inner div.image.effect_trigger_once.effect_end > p:nth-child(5) {
  transition-delay: 1.6s;
}
body#indexPage div.contents#course > div.inner div.about {
  display: flex;
  margin: 0 0 -172px;
}
body#indexPage div.contents#course > div.inner div.about div.introduction {
  position: relative;
  top: -172px;
  min-width: 550px;
  width: 58.3%;
  padding: 35px 0;
  border-top: 18px solid #fff;
  border-right: 18px solid #fff;
  color: #fff;
  background: #505050;
}
body#indexPage div.contents#course > div.inner div.about div.introduction > h3.title {
  margin: 0 10px 30px;
  text-align: center;
}
body#indexPage div.contents#course > div.inner div.about div.introduction > h3.title > img {
  max-width: 100%;
}
body#indexPage div.contents#course > div.inner div.about div.introduction > ul.list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 90px;
}
body#indexPage div.contents#course > div.inner div.about div.introduction > ul.list > li {
  width: 50%;
  line-height: 2.3;
}
body#indexPage div.contents#course > div.inner div.about div.introduction.effect_trigger_once > h3.title {
  opacity: 0;
}
body#indexPage div.contents#course > div.inner div.about div.introduction.effect_trigger_once > ul.list {
  opacity: 0;
  transform: translate(0, 30px);
}
body#indexPage div.contents#course > div.inner div.about div.introduction.effect_trigger_once.effect_end > h3.title {
  opacity: 1;
  transition: opacity 2s;
}
body#indexPage div.contents#course > div.inner div.about div.introduction.effect_trigger_once.effect_end > ul.list {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 2s;
  transition-delay: 1s;
}
body#indexPage div.contents#course > div.inner div.about p.detail {
  margin: 0 0 0 auto;
}
body#indexPage div.contents#course > div.inner div.about p.detail > a {
  display: block;
  position: relative;
  margin: 0.25em 0 0;
}
body#indexPage div.contents#course > div.inner div.about p.detail > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: url(../image/index_course_detail_on.svg) no-repeat;
  transition: width 0.5s;
}
body#indexPage div.contents#course > div.inner div.about p.detail > a:hover::before {
  width: 100%;
}
body#indexPage div.contents#course.effect_trigger_once::before {
  opacity: 0;
  transform: translate(-50%, 0);
}
body#indexPage div.contents#course.effect_trigger_once > div.inner > h2.title {
  opacity: 0;
  transform: translate(30px, 0);
}
body#indexPage div.contents#course.effect_trigger_once.effect_end {
  transform: none;
}
body#indexPage div.contents#course.effect_trigger_once.effect_end::before {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#indexPage div.contents#course.effect_trigger_once.effect_end > div.inner > h2.title {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
body#indexPage div.contents#mtbLesson {
  position: relative;
}
body#indexPage div.contents#mtbLesson::before {
  content: "";
  display: block;
  position: absolute;
  top: 90px;
  right: 0;
  bottom: 0;
  min-width: 800px;
  width: calc(50% + 540px);
  background: #eae0cf;
}
body#indexPage div.contents#mtbLesson::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 672px;
  width: calc(50% + 90px);
  height: 230px;
  background: #505050;
}
body#indexPage div.contents#mtbLesson > div.inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
body#indexPage div.contents#mtbLesson > div.inner h2.title {
  padding: 1em 0;
}
body#indexPage div.contents#mtbLesson > div.inner h2.title > img {
  max-width: 100%;
}
body#indexPage div.contents#mtbLesson > div.inner div.image {
  width: 1200px;
}
body#indexPage div.contents#mtbLesson > div.inner div.image::after {
  content: "";
  display: block;
  clear: both;
}
body#indexPage div.contents#mtbLesson > div.inner div.image > p {
  float: left;
  margin: 0 0 18px 18px;
}
body#indexPage div.contents#mtbLesson > div.inner div.image > p:first-child {
  margin-left: 0;
}
body#indexPage div.contents#mtbLesson > div.inner div.image > p:nth-child(4) {
  height: 110px;
}
body#indexPage div.contents#mtbLesson > div.inner div.image.effect_trigger_once > p {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 1s;
}
body#indexPage div.contents#mtbLesson > div.inner div.image.effect_trigger_once > p:nth-child(2) {
  transition-delay: 1.2s;
}
body#indexPage div.contents#mtbLesson > div.inner div.image.effect_trigger_once > p:nth-child(3) {
  transition-delay: 1.4s;
}
body#indexPage div.contents#mtbLesson > div.inner div.image.effect_trigger_once > p:nth-child(4) {
  transition-delay: 1.6s;
}
body#indexPage div.contents#mtbLesson > div.inner div.image.effect_trigger_once > p:nth-child(5) {
  transition-delay: 1.8s;
}
body#indexPage div.contents#mtbLesson > div.inner div.image.effect_trigger_once.effect_end > p {
  opacity: 1;
}
body#indexPage div.contents#mtbLesson.effect_trigger_once::before {
  transform: translate(100%, 0);
}
body#indexPage div.contents#mtbLesson.effect_trigger_once::after {
  transform: translate(-100%, 0);
}
body#indexPage div.contents#mtbLesson.effect_trigger_once.effect_end {
  transform: none;
}
body#indexPage div.contents#mtbLesson.effect_trigger_once.effect_end::before {
  transform: translate(0);
  transition-property: transform;
  transition-duration: 0.5s;
}
body#indexPage div.contents#mtbLesson.effect_trigger_once.effect_end::after {
  transform: translate(0);
  transition-property: transform;
  transition-duration: 0.5s;
}
body#indexPage div.contents#mtbLesson p.detail {
  position: absolute;
  right: 56px;
  bottom: 3.5em;
  background: #eae0cf;
}
body#indexPage div.contents#mtbLesson p.detail > a {
  display: inline-block;
  position: relative;
}
body#indexPage div.contents#mtbLesson p.detail > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: url(../image/index_information_details_more_on.svg) no-repeat;
  transition: width 0.5s;
}
body#indexPage div.contents#mtbLesson p.detail > a:hover::before {
  width: 100%;
}
body#indexPage div.contents#mtbLesson p.catch {
  margin: 0 0 0.5em 5em;
}
body#indexPage div.contents#information {
  position: relative;
}
body#indexPage div.contents#information > div.inner {
  position: static;
}
body#indexPage div.contents#information div.wordsBox {
  display: flex;
}
body#indexPage div.contents#information div.wordsBox::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 414px;
  background: #646464;
}
body#indexPage div.contents#information div.wordsBox h2.title {
  position: relative;
  z-index: 1;
  padding: 20px 40px;
  text-align: center;
}
body#indexPage div.contents#information div.wordsBox h2.title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #fff;
}
body#indexPage div.contents#information div.wordsBox div.words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 992px;
  margin: 7.7% 0 0;
}
body#indexPage div.contents#information div.wordsBox div.words > div.growUp,
body#indexPage div.contents#information div.wordsBox div.words > div.antelope {
  box-sizing: border-box;
  width: 50%;
  padding: 0 5%;
}
body#indexPage div.contents#information div.wordsBox div.words > div.text {
  box-sizing: border-box;
  width: 100%;
  padding: 0 50px;
  text-align: center;
}
body#indexPage div.contents#information div.wordsBox div.words img {
  max-width: 100%;
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once {
  transform: none;
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once h2.title::before {
  opacity: 0;
  transform: translate(0, -200px);
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once h2.title img {
  opacity: 0;
  transform: translate(0, -50px);
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once div.words > div {
  opacity: 0;
  transform: translate(0, -50px);
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once.effect_end h2.title::before {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0;
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once.effect_end h2.title img {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once.effect_end div.words > div {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once.effect_end div.words > div.growUp {
  transition-delay: 1s;
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once.effect_end div.words > div.antelope {
  transition-delay: 1.5s;
}
body#indexPage div.contents#information div.wordsBox.effect_trigger_once.effect_end div.words > div.text {
  transition-delay: 2s;
}
body#indexPage div.contents#information div.detailsBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 120px 0 0;
}
body#indexPage div.contents#information div.detailsBox > div.details {
  display: flex;
  flex-flow: column;
  width: 370px;
  margin: 0 0 30px;
  padding: 0 0 1.8em;
  background: #f5f5f5;
}
body#indexPage div.contents#information div.detailsBox > div.details h3.title {
  margin: 0 0 2em;
  padding: 20px 0;
  text-align: center;
  background: #505050;
}
body#indexPage div.contents#information div.detailsBox > div.details dl.details {
  line-height: 1.8;
  margin: 0 32px;
  font-size: 1.8rem;
}
body#indexPage div.contents#information div.detailsBox > div.details dl.details > dt {
  margin: 0 0 -1.8em;
}
body#indexPage div.contents#information div.detailsBox > div.details dl.details > dd {
  margin: 0 0 0 7.5em;
}
body#indexPage div.contents#information div.detailsBox > div.details dl.details > dd::before {
  content: "：";
}
body#indexPage div.contents#information div.detailsBox > div.details p.notes {
  margin: 5px 32px 0;
  padding: 0 0 0 1.1em;
  text-indent: -1.1em;
  font-size: 1.3rem;
}
body#indexPage div.contents#information div.detailsBox > div.details p.details {
  line-height: 1.8;
  margin: 0 32px;
  font-size: 1.8rem;
}
body#indexPage div.contents#information div.detailsBox > div.details p.more {
  margin: auto 0 0;
  padding: 18px 0 0;
  text-align: center;
}
body#indexPage div.contents#information div.detailsBox > div.details p.more > a {
  display: inline-block;
  position: relative;
}
body#indexPage div.contents#information div.detailsBox > div.details p.more > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: url(../image/index_information_details_more_on.svg) no-repeat;
  transition: width 0.5s;
}
body#indexPage div.contents#information div.detailsBox > div.details p.more > a:hover::before {
  width: 100%;
}
body#indexPage div.contents#information div.detailsBox.effect_trigger_once > div.details {
  opacity: 0;
  transform: translate(0, 30px);
}
body#indexPage div.contents#information div.detailsBox.effect_trigger_once.effect_end > div.details {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 1s;
}
body#indexPage div.contents#information div.detailsBox.effect_trigger_once.effect_end > div.details:nth-child(2) {
  transition-delay: 0.2s;
}
body#indexPage div.contents#information div.detailsBox.effect_trigger_once.effect_end > div.details:nth-child(3) {
  transition-delay: 0.2s;
}
body#indexPage div.contents#instagram {
  position: relative;
  min-height: 350px;
}
body#indexPage div.contents#instagram::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 50px);
  height: 350px;
  background: #eae0cf;
}
body#indexPage div.contents#instagram > div.inner h2.title {
  position: absolute;
  top: 36px;
  right: calc(50% + 50px);
  z-index: 1;
  width: 45%;
  max-width: 540px;
}
body#indexPage div.contents#instagram > div.inner h2.title img {
  max-width: 100%;
}
body#indexPage div.contents#instagram > div.inner ul.photo {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 14px;
  padding: 15% 0 0;
}
body#indexPage div.contents#instagram > div.inner ul.photo > li {
  position: relative;
  width: calc(25% - 26px);
  margin: 0 0 26px 26px;
  padding: calc(25% - 26px) 0 0;
}
body#indexPage div.contents#instagram > div.inner ul.photo > li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#indexPage div.contents#instagram > div.inner ul.photo.effect_trigger_once > li {
  opacity: 0;
  transform: translate(0, 30px);
}
body#indexPage div.contents#instagram > div.inner ul.photo.effect_trigger_once.effect_end > li {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
body#indexPage div.contents#instagram > div.inner ul.photo.effect_trigger_once.effect_end > li:nth-child(2) {
  transition-delay: 0.7s;
}
body#indexPage div.contents#instagram > div.inner ul.photo.effect_trigger_once.effect_end > li:nth-child(3) {
  transition-delay: 0.9s;
}
body#indexPage div.contents#instagram > div.inner ul.photo.effect_trigger_once.effect_end > li:nth-child(4) {
  transition-delay: 1.1s;
}
body#indexPage div.contents#instagram > div.inner ul.photo.effect_trigger_once.effect_end > li:nth-child(5) {
  transition-delay: 1.3s;
}
body#indexPage div.contents#instagram > div.inner ul.photo.effect_trigger_once.effect_end > li:nth-child(6) {
  transition-delay: 1.5s;
}
body#indexPage div.contents#instagram > div.inner ul.photo.effect_trigger_once.effect_end > li:nth-child(7) {
  transition-delay: 1.7s;
}
body#indexPage div.contents#instagram > div.inner ul.photo.effect_trigger_once.effect_end > li:nth-child(8) {
  transition-delay: 1.9s;
}
body#indexPage div.contents#instagram.effect_trigger_once::before {
  opacity: 0;
  transform: translate(-50%, 0);
}
body#indexPage div.contents#instagram.effect_trigger_once > div.inner h2.title {
  opacity: 0;
  transform: translate(30px, 0);
}
body#indexPage div.contents#instagram.effect_trigger_once.effect_end {
  transform: none;
}
body#indexPage div.contents#instagram.effect_trigger_once.effect_end::before {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#indexPage div.contents#instagram.effect_trigger_once.effect_end > div.inner > h2.title {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
body#indexPage div.contents#welcome h2.title {
  position: relative;
  box-sizing: border-box;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 70px;
  text-align: center;
}
body#indexPage div.contents#welcome h2.title::before, body#indexPage div.contents#welcome h2.title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 60px;
  height: 24px;
  margin: -12px 0 0;
  background: url(../image/index_welcome_title_mark.svg) no-repeat;
}
body#indexPage div.contents#welcome h2.title::before {
  left: 0;
}
body#indexPage div.contents#welcome h2.title::after {
  right: 0;
}
body#indexPage div.contents#welcome p.linkBanner {
  margin: 20px 0 0;
}
body#indexPage div.contents#welcome p.linkBanner a {
  display: block;
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
body#indexPage div.contents#welcome p.linkBanner a::before, body#indexPage div.contents#welcome p.linkBanner a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 82.5%;
  margin: 3.21% 0 0;
  padding: 5.71% 0 0;
  background: no-repeat left bottom;
  background-size: cover;
}
body#indexPage div.contents#welcome p.linkBanner a::before {
  width: 13.75%;
  background-image: url(../image/index_welcome_banner_asobina_off.svg);
}
body#indexPage div.contents#welcome p.linkBanner a::after {
  width: 0;
  background-image: url(../image/index_welcome_banner_asobina_on.svg);
  transition: width 0.5s;
}
body#indexPage div.contents#welcome p.linkBanner a:hover::after {
  width: 13.75%;
}
body#indexPage div.contents#welcome p.linkBanner a > img {
  max-width: 100%;
}
body#indexPage #renewal a img {
  height: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
body#indexPage #renewal a img:hover {
  opacity: 0.65;
  transform: scale(0.95);
}

/* Notice
------------------------------------- */
body#noticePage div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/notice_topImage.jpg);
}
body#noticePage div#topImage::after {
  right: 0;
  min-width: 440px;
  width: calc(50% - 210px);
}
body#noticePage div#topImage h1.main {
  right: 0;
}
body#noticePage div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
}
body#noticePage div.contents > div.inner > h2.title {
  margin: 0 0 100px;
  text-align: center;
}
body#noticePage div.contents > div.inner dl {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 1.8em 50px 0;
}
body#noticePage div.contents > div.inner dl.noItem {
  text-align: center;
}
body#noticePage div.contents > div.inner dl > dt {
  margin: 0 0 -1.6em 2em;
}
body#noticePage div.contents > div.inner dl > dd.title {
  margin: 0 0 0.5em 10em;
  padding: 0 0 0 0.5em;
  border-bottom: 1px dashed #000;
}
body#noticePage div.contents > div.inner dl > dd.text {
  margin: 0 0 1.8em;
  padding: 0 0 1.8em 10.5em;
  border-bottom: 1px solid #000;
}
body#noticePage div.contents > div.inner dl:last-child > dd.text {
  border-bottom: none;
}

/* Course
------------------------------------- */
body#coursePage div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/course_topImage.jpg);
  background-position: center top;
}
body#coursePage div#topImage::after {
  right: 0;
  min-width: 380px;
  width: calc(50% - 180px);
}
body#coursePage div#topImage h1.main {
  right: 0;
}
body#coursePage div#topImage p.catchPhrase {
  margin: 0 0 0 232px;
  padding: 50px 30px 0 0;
  text-align: right;
}
body#coursePage div#topImage p.catchPhrase > img {
  max-width: 100%;
  margin: -25px 0 0;
  transition-property: transform, opacity;
  transition-duration: 0.3s;
}
body#coursePage div#topImage p.catchPhrase > img:first-child {
  margin-top: 0;
}
body#coursePage div#topImage p.catchPhrase.effect_trigger_once > img {
  opacity: 0;
  transform: translate(-30px, 0);
}
body#coursePage div#topImage p.catchPhrase.effect_trigger_once > img:nth-child(3) {
  transition-delay: 0.3s;
}
body#coursePage div#topImage p.catchPhrase.effect_trigger_once > img:nth-child(5) {
  transition-delay: 0.6s;
}
body#coursePage div#topImage p.catchPhrase.effect_trigger_once.effect_end > img {
  opacity: 1;
  transform: none;
}
body#coursePage div#map p.image {
  text-align: center;
}
body#coursePage div#map p.catch {
  width: fit-content;
  margin: 1em auto -180px;
  font-size: 2rem;
}
body#coursePage div.contents:nth-child(2n+4) {
  position: relative;
  z-index: 0;
  margin: 270px 0 232px;
  background: #eae0cf;
}
body#coursePage div.contents:nth-child(2n+4)::before, body#coursePage div.contents:nth-child(2n+4)::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: -10;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
body#coursePage div.contents:nth-child(2n+4)::before {
  top: -140px;
  height: 140px;
  background-image: url(../image/course_contents_bg_top.svg);
}
body#coursePage div.contents:nth-child(2n+4)::after {
  bottom: -102px;
  height: 102px;
  background-image: url(../image/course_contents_bg_bottom.svg);
}
body#coursePage div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
}
body#coursePage div.contents > div.inner h2.title {
  margin: 0 0 50px;
  text-align: center;
}
body#coursePage div.contents > div.inner p.mainImage {
  position: absolute;
}
body#coursePage div.contents > div.inner div.level {
  padding: 42px 0 0;
}
body#coursePage div.contents > div.inner div.level::after {
  content: "";
  display: block;
  clear: both;
}
body#coursePage div.contents > div.inner div.level h3 {
  display: none;
}
body#coursePage div.contents > div.inner div.level ul.level {
  display: flex;
  justify-content: space-evenly;
  float: right;
  min-width: 334px;
  width: calc(50% - 158px);
}
body#coursePage div.contents > div.inner div.level ul.level::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  min-width: 334px;
  width: calc(50% - 158px);
  height: 80px;
  margin: 8px 0 0;
  background: #d6bfa4;
}
body#coursePage div.contents > div.inner div.level ul.level > li {
  position: relative;
}
body#coursePage div.contents > div.inner div.level ul.level.effect_trigger_once::before {
  opacity: 0;
  min-width: 0;
  width: 0;
  transition-property: opacity, min-width, width;
  transition-duration: 0.5s;
}
body#coursePage div.contents > div.inner div.level ul.level.effect_trigger_once > li {
  opacity: 0;
  transform: scale(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
body#coursePage div.contents > div.inner div.level ul.level.effect_trigger_once > li:nth-child(2) {
  transition-delay: 0.7s;
}
body#coursePage div.contents > div.inner div.level ul.level.effect_trigger_once > li:nth-child(3) {
  transition-delay: 0.9s;
}
body#coursePage div.contents > div.inner div.level ul.level.effect_trigger_once.effect_end {
  transform: none;
}
body#coursePage div.contents > div.inner div.level ul.level.effect_trigger_once.effect_end::before {
  opacity: 1;
  min-width: 334px;
  width: calc(50% - 158px);
}
body#coursePage div.contents > div.inner div.level ul.level.effect_trigger_once.effect_end > li {
  opacity: 1;
  transform: scale(1);
}
body#coursePage div.contents > div.inner div.image {
  width: 360px;
  margin: 64px 42px 0 auto;
}
body#coursePage div.contents > div.inner div.image > button {
  position: absolute;
  top: 50%;
  margin: -17.5px 0 0;
  border-radius: 50%;
  background: #969696;
  transition: transform 0.2s;
}
body#coursePage div.contents > div.inner div.image > button.slick-prev {
  left: -42px;
}
body#coursePage div.contents > div.inner div.image > button.slick-next {
  right: -42px;
}
body#coursePage div.contents > div.inner div.image > button:hover {
  transform: scale(1.2);
  background: #505050;
}
body#coursePage div.contents > div.inner div.image p.title {
  text-align: center;
}
body#coursePage div.contents > div.inner div.details {
  width: 700px;
}
body#coursePage div.contents > div.inner div.details::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 700px;
  width: calc(50% + 158px);
  height: 260px;
  margin: -25px 0 0;
  background: #f5f0e3;
}
body#coursePage div.contents > div.inner div.details h3.title {
  padding: 20px 10px 15px;
  color: #000;
  font-size: 3rem;
}
body#coursePage div.contents > div.inner div.details p.text {
  padding: 0 10px;
  line-height: 2;
  color: #000;
  font-size: 1.6rem;
}
body#coursePage div.contents > div.inner div.details p.text + p.text {
  margin-top: 1em;
}
body#coursePage div.contents > div.inner div.details span.mark {
  font-size: 1.2rem;
}
body#coursePage div.contents > div.inner div.details p.mark {
  margin: 0 0 0 1em;
  text-indent: -1em;
}
body#coursePage div.contents > div.inner div.details.effect_trigger_once::before {
  opacity: 0;
  transform: translate(-50%, 0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#coursePage div.contents > div.inner div.details.effect_trigger_once h3.title {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
body#coursePage div.contents > div.inner div.details.effect_trigger_once p.text {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#coursePage div.contents > div.inner div.details.effect_trigger_once.effect_end {
  transform: none;
}
body#coursePage div.contents > div.inner div.details.effect_trigger_once.effect_end::before {
  opacity: 1;
  transform: translate(0);
}
body#coursePage div.contents > div.inner div.details.effect_trigger_once.effect_end h3.title {
  opacity: 1;
  transform: translate(0);
}
body#coursePage div.contents > div.inner div.details.effect_trigger_once.effect_end p.text {
  opacity: 1;
  transform: translate(0);
}
body#coursePage div.contents#bagJump > div.inner div.details::before {
  height: 320px;
}
body#coursePage div.contents#corner > div.inner div.details::before {
  height: 320px;
}
body#coursePage div.contents#kids > div.inner div.details::before {
  height: 350px;
}
body#coursePage div.produce {
  margin: 80px 0 0;
  padding: 50px 0;
  transform: none;
}
body#coursePage div.produce::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 220px;
  margin: -50px 0 0;
  background: #646464;
}
body#coursePage div.produce div.wrap {
  display: flex;
}
body#coursePage div.produce div.wrap h3.title {
  margin: 0 2.9%;
}
body#coursePage div.produce div.wrap p.image {
  position: relative;
  padding: 0 3.8%;
}
body#coursePage div.produce div.wrap p.image::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
body#coursePage div.produce img {
  max-width: 100%;
}
body#coursePage div.produce.effect_trigger_once::before {
  opacity: 0;
  margin-top: -20px;
}
body#coursePage div.produce.effect_trigger_once div.wrap {
  opacity: 0;
  transform: translate(0, 30px);
}
body#coursePage div.produce.effect_trigger_once.effect_end {
  transform: none;
}
body#coursePage div.produce.effect_trigger_once.effect_end::before {
  opacity: 1;
  margin-top: -50px;
  transition-property: opacity, margin-top;
  transition-duration: 0.5s;
}
body#coursePage div.produce.effect_trigger_once.effect_end div.wrap {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

/* AdmissionCharge
------------------------------------- */
body#admissionChargePage div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/admissionCharge_topImage.jpg);
}
body#admissionChargePage div#topImage::after {
  right: 0;
  min-width: 870px;
  width: calc(50% + 300px);
}
body#admissionChargePage div#topImage h1.main {
  right: 0;
}
body#admissionChargePage div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
}
body#admissionChargePage div.contents > div.inner h2.title {
  margin: 0 0 50px;
  text-align: center;
}
body#admissionChargePage div.contents > div.inner div.section div.detail {
  margin-bottom: 10em;
}
body#admissionChargePage div.contents > div.inner div.section div.detail h3.title {
  padding: 15px 10px;
  margin-bottom: 1em;
  color: #000;
  font-size: 3rem;
  font-weight: bold;
  min-width: 360px;
  width: calc(50% - 145px);
}
body#admissionChargePage div.contents > div.inner div.section div.detail h3.title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 360px;
  width: calc(50% - 145px);
  height: 80px;
  margin: -15px 0 0;
  background: #d7bfa3;
}
body#admissionChargePage div.contents > div.inner div.section div.detail h3.title.effect_trigger_once::before {
  opacity: 0;
  min-width: 0;
  width: 0;
  transition-property: opacity, min-width, width;
  transition-duration: 0.5s;
}
body#admissionChargePage div.contents > div.inner div.section div.detail h3.title.effect_trigger_once > span {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#admissionChargePage div.contents > div.inner div.section div.detail h3.title.effect_trigger_once.effect_end {
  transform: none;
}
body#admissionChargePage div.contents > div.inner div.section div.detail h3.title.effect_trigger_once.effect_end::before {
  opacity: 1;
  min-width: 360px;
  width: calc(50% - 145px);
}
body#admissionChargePage div.contents > div.inner div.section div.detail h3.title.effect_trigger_once.effect_end > span {
  opacity: 1;
  transform: translate(0);
}
body#admissionChargePage div.contents > div.inner div.section div.detail table {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
body#admissionChargePage div.contents > div.inner div.section div.detail table th,
body#admissionChargePage div.contents > div.inner div.section div.detail table td {
  width: 9em;
  height: 4em;
  vertical-align: middle;
  border: 2px solid #8E8C87;
  font-size: 1.2em;
  text-align: center;
}
body#admissionChargePage div.contents > div.inner div.section div.detail table th {
  line-height: 1.2em;
  background-color: #F5F0E3;
}
body#admissionChargePage div.contents > div.inner div.section div.detail table th > span.child {
  font-size: 1.2rem;
}
body#admissionChargePage div.contents > div.inner div.section div.detail table span.note {
  vertical-align: super;
  font-size: 1.2rem;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.bikePark p.note {
  padding-left: 3.9em;
  text-indent: -3.9em;
}
body#admissionChargePage div.contents > div.inner div.section div.detail p.note {
  max-width: 840px;
  margin: 0 auto;
  padding-top: 2em;
}
body#admissionChargePage div.contents > div.inner div.section div.detail p.note.effect_trigger_once {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#admissionChargePage div.contents > div.inner div.section div.detail p.note.effect_trigger_once.effect_end {
  opacity: 1;
  transform: translate(0);
}
body#admissionChargePage div.contents > div.inner div.section div.detail div.note p.button.writtenOauth a {
  display: block;
  width: 248px;
  height: 68px;
  overflow: hidden;
  margin: 30px auto 0;
  background: url(../image/admissionCharge_button_writtenOauth_on.svg);
}
body#admissionChargePage div.contents > div.inner div.section div.detail div.note p.button.writtenOauth a::before {
  content: "";
  display: block;
  width: 248px;
  height: 68px;
  opacity: 1;
  background: url(../image/admissionCharge_button_writtenOauth_off.svg) no-repeat;
  transition: opacity 0.2s;
}
body#admissionChargePage div.contents > div.inner div.section div.detail div.note p.button.writtenOauth a:hover::before {
  opacity: 0;
}
body#admissionChargePage div.contents > div.inner div.section div.detail div.note.effect_trigger_once {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#admissionChargePage div.contents > div.inner div.section div.detail div.note.effect_trigger_once.effect_end {
  opacity: 1;
  transform: translate(0);
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app h3.title {
  min-width: 400px;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app h3.title.effect_trigger_once.effect_end::before {
  min-width: 400px;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > p.text {
  width: fit-content;
  margin: 0 auto;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance {
  max-width: 600px;
  margin: 30px auto;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance h4 {
  font-weight: bold;
  text-align: center;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance ul.guidance {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  column-gap: 30px;
  height: 250px;
  margin: 0 auto;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance ul.guidance > li {
  margin: 12px 0;
  text-align: center;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance ul.guidance > li.badge img {
  height: 82px;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance dl.guidance {
  display: flex;
  align-items: center;
  column-gap: 30px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance dl.guidance > dt {
  font-weight: bold;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance dl.guidance > dt::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(4em + 10px);
  top: 0;
  width: 1px;
  height: 100%;
  background: #000;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance dl.guidance > dd {
  padding: 0.25em 0;
}
body#admissionChargePage div.contents > div.inner div.section div.detail.app > div.guidance p.notes {
  margin-left: 1em;
  font-size: 1.2rem;
  text-indent: -1em;
}

/* Rental
------------------------------------- */
body#rentalPage div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/rental_topImage.jpg);
}
body#rentalPage div#topImage::after {
  right: 0;
  min-width: 440px;
  width: calc(50% - 160px);
}
body#rentalPage div#topImage h1.main {
  right: 0;
}
body#rentalPage div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
}
body#rentalPage div.contents > div.inner h2.title {
  margin: 0 0 50px;
  text-align: center;
}
body#rentalPage div.contents > div.inner ul.image {
  float: right;
  width: 42%;
}
body#rentalPage div.contents > div.inner ul.image > li {
  float: right;
  padding-bottom: 20px;
}
body#rentalPage div.contents > div.inner ul.image > li > img {
  width: 100%;
}
body#rentalPage div.contents > div.inner ul.image::after {
  clear: both;
}
body#rentalPage div.contents > div.inner div.detail {
  width: 700px;
}
body#rentalPage div.contents > div.inner div.detail::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 700px;
  width: calc(50% + 158px);
  height: 900px;
  margin: -25px 0 0;
  background: #f5f0e3;
}
body#rentalPage div.contents > div.inner div.detail.effect_trigger_once::before {
  opacity: 0;
  transform: translate(-50%, 0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#rentalPage div.contents > div.inner div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body#rentalPage div.contents > div.inner div.detail.effect_trigger_once.effect_end::before {
  opacity: 1;
  transform: translate(0);
}
body#rentalPage div.contents > div.inner div.detail > h3.title {
  padding: 15px 10px;
  color: #000;
  font-size: 3rem;
  font-weight: bold;
  min-width: 360px;
  width: calc(50% - 145px);
}
body#rentalPage div.contents > div.inner div.detail > h3.title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 360px;
  width: calc(50% - 145px);
  height: 80px;
  margin: -15px 0 0;
  background: #d7bfa3;
}
body#rentalPage div.contents > div.inner div.detail > h3.title.effect_trigger_once::before {
  opacity: 0;
  min-width: 0;
  width: 0;
  transition-property: opacity, min-width, width;
  transition-duration: 0.5s;
}
body#rentalPage div.contents > div.inner div.detail > h3.title.effect_trigger_once > span {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#rentalPage div.contents > div.inner div.detail > h3.title.effect_trigger_once.effect_end {
  transform: none;
}
body#rentalPage div.contents > div.inner div.detail > h3.title.effect_trigger_once.effect_end::before {
  opacity: 1;
  min-width: 360px;
  width: calc(50% - 145px);
}
body#rentalPage div.contents > div.inner div.detail > h3.title.effect_trigger_once.effect_end > span {
  opacity: 1;
  transform: translate(0);
}
body#rentalPage div.contents > div.inner div.detail > dl,
body#rentalPage div.contents > div.inner div.detail > table {
  color: #000;
}
body#rentalPage div.contents > div.inner div.detail > dl.effect_trigger_once,
body#rentalPage div.contents > div.inner div.detail > table.effect_trigger_once {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#rentalPage div.contents > div.inner div.detail > dl.effect_trigger_once.effect_end,
body#rentalPage div.contents > div.inner div.detail > table.effect_trigger_once.effect_end {
  opacity: 1;
  transform: translate(0);
}
body#rentalPage div.contents > div.inner div.detail > dl dt {
  font-size: 1.5em;
  padding: 20px 10px 15px;
}
body#rentalPage div.contents > div.inner div.detail > dl dd {
  padding: 0 10px 2em;
}
body#rentalPage div.contents > div.inner div.detail > table.accessory {
  font-size: 1.5em;
}
body#rentalPage div.contents > div.inner div.detail > table.accessory th,
body#rentalPage div.contents > div.inner div.detail > table.accessory td {
  padding: 20px 1em 0 10px;
}
body#rentalPage div.contents > div.inner div.detail > table.accessory td {
  text-align: right;
}

/* CenterHouse
------------------------------------- */
body#centerHousePage div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/centerHouse_topImage.jpg);
}
body#centerHousePage div#topImage::after {
  right: 0;
  min-width: 810px;
  width: calc(50% + 210px);
}
body#centerHousePage div#topImage h1.main {
  right: 0;
}
body#centerHousePage div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
}
body#centerHousePage div.contents > div.inner h2.title {
  margin: 0 0 50px;
  text-align: center;
}
body#centerHousePage div.contents > div.inner div.detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 220px;
}
body#centerHousePage div.contents > div.inner div.detail#centerHouse::before {
  height: 690px;
}
body#centerHousePage div.contents > div.inner div.detail::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 700px;
  width: calc(50% + 200px);
  height: 460px;
  margin: -25px 0 0;
  background: #f5f0e3;
}
body#centerHousePage div.contents > div.inner div.detail.effect_trigger_once::before {
  opacity: 0;
  transform: translate(-50%, 0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#centerHousePage div.contents > div.inner div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body#centerHousePage div.contents > div.inner div.detail.effect_trigger_once.effect_end::before {
  opacity: 1;
  transform: translate(0);
}
body#centerHousePage div.contents > div.inner div.detail > p.image {
  order: 2;
  padding-left: 20px;
  padding-right: 0;
}
body#centerHousePage div.contents > div.inner div.detail > p.image > img {
  width: 100%;
}
body#centerHousePage div.contents > div.inner div.detail > div.text {
  order: 1;
  min-width: 360px;
  width: calc(50% - 145px);
}
body#centerHousePage div.contents > div.inner div.detail > div.text > h3.title {
  padding: 15px 0;
  padding-left: 10px;
  color: #000;
  font-size: 3rem;
  font-weight: bold;
  min-width: 390px;
  width: calc(50% - 145px);
}
body#centerHousePage div.contents > div.inner div.detail > div.text > h3.title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 360px;
  width: calc(50% - 145px);
  height: 80px;
  margin: -15px 0 0;
  background: #d7bfa3;
}
body#centerHousePage div.contents > div.inner div.detail > div.text > p {
  color: #000;
  padding: 20px 0 0;
  padding-left: 10px;
}
body#centerHousePage div.contents > div.inner div.detail.effect_trigger_once > div.text > h3.title span,
body#centerHousePage div.contents > div.inner div.detail.effect_trigger_once > div.text > p {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#centerHousePage div.contents > div.inner div.detail.effect_trigger_once > div.text > h3.title::before {
  opacity: 0;
  min-width: 0;
  width: 0;
  transition-property: opacity, min-width, width;
  transition-duration: 0.5s;
}
body#centerHousePage div.contents > div.inner div.detail.effect_trigger_once.effect_end > div.text > h3.title span,
body#centerHousePage div.contents > div.inner div.detail.effect_trigger_once.effect_end > div.text > p {
  opacity: 1;
  transform: translate(0);
}
body#centerHousePage div.contents > div.inner div.detail.effect_trigger_once.effect_end > div.text > h3.title::before {
  opacity: 1;
  min-width: 360px;
  width: calc(50% - 145px);
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1)::before {
  left: auto;
  right: 0;
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1).effect_trigger_once::before {
  min-width: 0;
  width: 0;
  transition-property: opacity, min-width, width;
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1).effect_trigger_once.effect_end {
  transform: none;
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1).effect_trigger_once.effect_end::before {
  min-width: 700px;
  width: calc(50% + 200px);
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1).effect_trigger_once.effect_end > div.text > h3.title::before {
  width: calc(56% - 20px);
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1) > p.image {
  order: 1;
  padding-left: 0;
  padding-right: 20px;
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1) > div.text {
  order: 2;
  flex-shrink: 0;
  width: calc(50% + 60px);
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1) > div.text > h3.title {
  padding-left: 30px;
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1) > div.text > h3.title::before {
  left: auto;
  right: 0;
}
body#centerHousePage div.contents > div.inner div.detail:nth-child(2n+1) > div.text > p {
  padding-left: 30px;
}

/* Rules
------------------------------------- */
body#rulesPage div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/rules_topImage.jpg);
}
body#rulesPage div#topImage::after {
  right: 0;
  min-width: 400px;
  width: calc(50% - 200px);
}
body#rulesPage div#topImage h1.main {
  right: 0;
}
body#rulesPage div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
}
body#rulesPage div.contents > div.inner > h2.title {
  margin: 0 0 100px;
  text-align: center;
}
body#rulesPage div.contents > div.inner > .detail::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 100%;
  min-height: 42em;
  height: calc(100% - 70px);
  margin: -50px 0 0;
  background: #f6f0e4;
}
body#rulesPage div.contents > div.inner > .detail.effect_trigger_once::before {
  opacity: 0;
  min-width: 0;
  width: 0;
  transition-property: opacity, min-width, width;
  transition-duration: 0.5s;
}
body#rulesPage div.contents > div.inner > .detail.effect_trigger_once.effect_end {
  transform: none;
}
body#rulesPage div.contents > div.inner > .detail.effect_trigger_once.effect_end::before {
  opacity: 1;
  min-width: 100%;
}
body#rulesPage div.contents > div.inner > .detail > ol {
  padding: 0 0 0 2.5em;
  color: #000;
  font-size: 1.6rem;
}
body#rulesPage div.contents > div.inner > .detail > ol > li {
  list-style-type: decimal;
  margin: 0 0 0.5em;
}
body#rulesPage div.contents > div.inner > .detail > ol.effect_trigger_once {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#rulesPage div.contents > div.inner > .detail > ol.effect_trigger_once.effect_end {
  opacity: 1;
  transform: translate(0);
}
body#rulesPage div.contents > div.inner > .detail ul.mark {
  margin: 1em 0 0;
  color: #000;
}
body#rulesPage div.contents > div.inner > .detail ul.mark > li {
  padding: 0 0 0 1.5em;
  text-indent: -1em;
}
body#rulesPage div.contents > div.inner > .detail ul.mark.effect_trigger_once {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#rulesPage div.contents > div.inner > .detail ul.mark.effect_trigger_once.effect_end {
  opacity: 1;
  transform: translate(0);
}

/* Access
------------------------------------- */
body#accessPage div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/access_topImage.jpg);
}
body#accessPage div#topImage::after {
  right: 0;
  min-width: 500px;
  width: calc(50% - 100px);
}
body#accessPage div#topImage h1.main {
  right: 0;
}
body#accessPage div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
}
body#accessPage div.contents > div.inner > h2.title {
  margin: 0 0 50px;
  text-align: center;
}
body#accessPage div.contents > div.inner p.googleMap {
  max-width: 800px;
  height: 600px;
  margin: 30px auto 0;
}
body#accessPage div.contents > div.inner p.googleMap > iframe {
  width: 100%;
  height: 100%;
  border: none;
}
body#accessPage div.contents > div.inner > div.detail::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1440px;
  margin: -25px 0 0;
  background: #f5f0e3;
}
body#accessPage div.contents > div.inner > div.detail.effect_trigger_once::before {
  opacity: 0;
  transform: translate(-50%, 0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#accessPage div.contents > div.inner > div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body#accessPage div.contents > div.inner > div.detail.effect_trigger_once.effect_end::before {
  opacity: 1;
  transform: translate(0);
}
body#accessPage div.contents > div.inner > div.detail > h3.title {
  padding: 15px 0;
  padding-left: 10px;
  margin: 50px auto 1em 0;
  color: #000;
  font-size: 3rem;
  font-weight: bold;
  min-width: 360px;
  width: calc(50% - 145px);
}
body#accessPage div.contents > div.inner > div.detail > h3.title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 360px;
  width: calc(50% - 145px);
  height: 80px;
  margin: -15px 0 0;
  background: #d7bfa3;
}
body#accessPage div.contents > div.inner > div.detail > h3.title.effect_trigger_once::before {
  opacity: 0;
  min-width: 0;
  width: 0;
  transition-property: opacity, min-width, width;
  transition-duration: 0.5s;
}
body#accessPage div.contents > div.inner > div.detail > h3.title.effect_trigger_once.effect_end {
  transform: none;
}
body#accessPage div.contents > div.inner > div.detail > h3.title.effect_trigger_once.effect_end::before {
  opacity: 1;
  min-width: 360px;
  width: calc(50% - 145px);
}
body#accessPage div.contents > div.inner > div.detail > table.address {
  width: calc(50% + 200px);
  max-width: 800px;
  margin: 0 auto;
}
body#accessPage div.contents > div.inner > div.detail > table.address.effect_trigger_once {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#accessPage div.contents > div.inner > div.detail > table.address.effect_trigger_once.effect_end {
  opacity: 1;
  transform: translate(0);
}
body#accessPage div.contents > div.inner > div.detail > table.address th,
body#accessPage div.contents > div.inner > div.detail > table.address td {
  vertical-align: top;
  padding: 0 1em 1em 0;
}
body#accessPage div.contents > div.inner > div.detail > table.address th {
  width: 7em;
  font-weight: bold;
}
body#accessPage div.contents > div.inner > div.detail p.reservationButton {
  position: relative;
  width: fit-content;
}
body#accessPage div.contents > div.inner > div.detail p.reservationButton a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: url(../image/access_reservationButton_on.svg) no-repeat;
  transition: width 0.5s;
}
body#accessPage div.contents > div.inner > div.detail p.reservationButton a:hover::before {
  width: 100%;
}
body#accessPage div.contents > div.inner > div.detail > dl {
  padding: 0 10px 20px;
  width: calc(50% + 200px);
  max-width: 800px;
  margin: 0 auto;
}
body#accessPage div.contents > div.inner > div.detail > dl.effect_trigger_once {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#accessPage div.contents > div.inner > div.detail > dl.effect_trigger_once.effect_end {
  opacity: 1;
  transform: translate(0);
}
body#accessPage div.contents > div.inner > div.detail > dl > dt {
  font-weight: bold;
}
body#accessPage div.contents > div.inner > div.detail > dl > dd {
  margin-bottom: 1em;
}
body#accessPage div.contents > div.inner > div.detail > p {
  padding: 0 10px 20px;
  width: calc(50% + 200px);
  max-width: 800px;
  margin: 0 auto;
}
body#accessPage div.contents > div.inner > div.detail > p > em {
  font-size: 1.8rem;
}
body#accessPage div.contents > div.inner > div.detail > p.effect_trigger_once {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#accessPage div.contents > div.inner > div.detail > p.effect_trigger_once.effect_end {
  opacity: 1;
  transform: translate(0);
}

/* PrivacyPolicy
------------------------------------- */
body#privacyPolicyPage div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/privacyPolicy_topImage.jpg);
}
body#privacyPolicyPage div#topImage::after {
  right: 0;
  min-width: 700px;
  width: calc(50% + 100px);
}
body#privacyPolicyPage div#topImage h1.main {
  right: 0;
}
body#privacyPolicyPage div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
  padding-left: 10px;
}
body#privacyPolicyPage div.contents > div.inner > h2.title {
  margin: 0 0 50px;
  text-align: center;
}
body#privacyPolicyPage div.contents > div.inner > div.detail > h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1em;
}
body#privacyPolicyPage div.contents > div.inner > div.detail > h4 {
  font-weight: bold;
  margin-bottom: 1em;
  padding-top: 1em;
}
body#privacyPolicyPage div.contents > div.inner > div.detail p {
  padding-bottom: 1em;
}
body#privacyPolicyPage div.contents > div.inner > div.detail p.company {
  padding: 0 1em;
}
body#privacyPolicyPage div.contents > div.inner > div.detail > ul,
body#privacyPolicyPage div.contents > div.inner > div.detail > dl {
  padding: 0 1em 1em;
}
body#privacyPolicyPage div.contents > div.inner > div.detail > ul > li,
body#privacyPolicyPage div.contents > div.inner > div.detail > dl > li {
  list-style-type: disc;
}
body#privacyPolicyPage div.contents > div.inner > div.detail > ul > dt,
body#privacyPolicyPage div.contents > div.inner > div.detail > dl > dt {
  float: left;
  clear: both;
  padding-right: 1em;
}
body#privacyPolicyPage div.contents > div.inner > div.detail.effect_trigger_once {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#privacyPolicyPage div.contents > div.inner > div.detail.effect_trigger_once.effect_end {
  opacity: 1;
  transform: translate(0);
}

/* Inquiry
------------------------------------- */
body.inquiry div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/inquiry_topImage.jpg);
}
body.inquiry div#topImage::after {
  right: 0;
  min-width: 490px;
  width: calc(50% - 110px);
}
body.inquiry div#topImage h1.main {
  right: 0;
}
body.inquiry div.contents {
  position: relative;
}
body.inquiry div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
}
body.inquiry div.contents > div.inner > h2.title,
body.inquiry div.contents > div.inner > h2.title + p.text {
  margin: 0 0 50px;
  text-align: center;
}
body.inquiry div.contents > div.inner div.detail {
  margin: 0 0 50px;
}
body.inquiry div.contents > div.inner div.detail::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  min-height: 1420px;
  background: #f5f0e3;
  margin: -25px 0 0;
}
body.inquiry div.contents > div.inner div.detail.effect_trigger_once::before {
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  opacity: 0;
  transform: translate(-50%, 0);
}
body.inquiry div.contents > div.inner div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body.inquiry div.contents > div.inner div.detail.effect_trigger_once.effect_end::before {
  opacity: 1;
  transform: none;
}
body.inquiry div.contents > div.inner div.detail > h3.title {
  padding: 15px 0;
  padding-left: 10px;
  margin-bottom: 25px;
  color: #000;
  font-size: 3rem;
  font-weight: bold;
  min-width: 420px;
  width: calc(50% - 180px);
}
body.inquiry div.contents > div.inner div.detail > h3.title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 420px;
  width: calc(50% - 180px);
  height: 80px;
  margin: -15px 0 0;
  background: #d7bfa3;
}
body.inquiry div.contents > div.inner div.detail > h3.title.effect_trigger_once::before {
  opacity: 0;
  min-width: 0;
  width: 0;
  transition-property: opacity, min-width, width;
  transition-duration: 0.5s;
}
body.inquiry div.contents > div.inner div.detail > h3.title.effect_trigger_once > span {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body.inquiry div.contents > div.inner div.detail > h3.title.effect_trigger_once.effect_end {
  transform: none;
}
body.inquiry div.contents > div.inner div.detail > h3.title.effect_trigger_once.effect_end::before {
  opacity: 1;
  min-width: 420px;
  width: calc(50% - 180px);
}
body.inquiry div.contents > div.inner div.detail > h3.title.effect_trigger_once.effect_end > span {
  opacity: 1;
  transform: translate(0);
}

body#deleteAccountPage div.contents > div.inner div.detail > h3.title {
  width: calc(50% - 100px);
}
body#deleteAccountPage div.contents > div.inner div.detail > h3.title::before {
  width: calc(50% - 100px);
  height: 120px;
}

body.inquiry div.contents > div.inner div.detail div.caution {
  width: fit-content;
  margin: 0 auto 3em;
}
body.inquiry div.contents > div.inner div.detail div.caution h4 {
  margin: 1.5em 0 0;
  font-weight: bold;
}
body.inquiry div.contents > div.inner div.detail div.caution p.howto + h4 {
  margin-top: 0;
}
body.inquiry div.contents > div.inner div.detail div.caution ul.circle > li {
  position: relative;
  padding-left: 1.25em;
}
body.inquiry div.contents > div.inner div.detail div.caution ul.circle > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0.4em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #646464;
}
body.inquiry div.contents > div.inner div.detail div.caution p.howto {
  margin-top: 1.5em;
}
body.inquiry div.contents > div.inner div.detail > ul {
  padding-left: 1.5em;
  margin-bottom: 50px;
}
body.inquiry div.contents > div.inner div.detail > ul li {
  list-style-type: disc;
}
body.inquiry div.contents > div.inner div.detail.effect_trigger_once > ul {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body.inquiry div.contents > div.inner div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body.inquiry div.contents > div.inner div.detail.effect_trigger_once.effect_end > ul {
  opacity: 1;
  transform: translate(0);
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry table {
  max-width: 800px;
  width: calc(50% + 200px);
  margin: 0 auto;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry table th,
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry table td {
  vertical-align: top;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry table th {
  padding: 0 20px 40px 10px;
  box-sizing: border-box;
  width: 25%;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry table th span.required {
  color: #f00;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry table td {
  padding: 0 0 40px;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry input[type=text],
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 2px 5px;
  border: 1px solid #505050;
  border-radius: 3px;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry input[type=checkbox] + label {
  cursor: pointer;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry p.error {
  color: #f00;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .application {
  width: fit-content;
  margin: 0 auto 40px;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .application p.error {
  margin-left: 1.25em;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .button,
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .buttonBlock {
  text-align: center;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .button button,
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .buttonBlock button {
  color: #fff;
  background-color: #0e0000;
  cursor: pointer;
  padding: 0.5em 1em;
  border: 1px solid #505050;
  border-radius: 5px;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .button.back button {
  color: #000;
  background-color: #fff;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .button {
  padding: 0 10px 40px;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .button a {
  text-decoration: none;
}
body.inquiry div.contents > div.inner div.detail #form.contents .inquiry .button a:hover {
  text-decoration: underline;
}
body.inquiry div.contents > div.inner div.detail.effect_trigger_once #form.contents {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body.inquiry div.contents > div.inner div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body.inquiry div.contents > div.inner div.detail.effect_trigger_once.effect_end #form.contents {
  opacity: 1;
  transform: translate(0);
}
body.inquiry div.contents > div.inner #form.contents.confirm .inquiry > p {
  margin-bottom: 25px;
}
body.inquiry div.contents > div.inner #form.contents.confirm .inquiry table tr {
  border-top: 1px solid #505050;
  border-bottom: 1px solid #505050;
}
body.inquiry div.contents > div.inner #form.contents.confirm .inquiry table tr th {
  padding: 40px 20px 40px 10px;
}
body.inquiry div.contents > div.inner #form.contents.confirm .inquiry table tr td {
  padding: 40px 0;
}
body.inquiry div.contents > div.inner #form.contents.confirm .inquiry .buttonBlock {
  padding: 1em;
}
body.inquiry div.contents > div.inner #form.contents.confirm .inquiry .buttonBlock form {
  display: inline-block;
  width: 30%;
}
body.inquiry div.contents > div.inner #form.contents.finish h3.title {
  margin-bottom: 1em;
  font-size: 1.2;
  text-align: center;
}
body.inquiry div.contents > div.inner #form.contents.finish div.inquiry {
  text-align: center;
}
body.inquiry div.contents > div.inner #form.contents.error ul.link {
  margin-top: 1em;
  text-align: center;
}
body.inquiry div.flatpickr-current-month {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}
body.inquiry div.flatpickr-current-month > select {
  order: 1;
}
body.inquiry div.flatpickr-months span.flatpickr-prev-month,
body.inquiry div.flatpickr-months span.flatpickr-next-month {
  padding-top: 0;
}
body.inquiry span.flatpickr-weekday:nth-child(1),
body.inquiry span.flatpickr-day:nth-child(7n-6) {
  color: #f00;
}
body.inquiry span.flatpickr-day.prevMonthDay:nth-child(7n-6),
body.inquiry span.flatpickr-day.nextMonthDay:nth-child(7n-6) {
  color: rgba(255, 0, 0, 0.3);
}
body.inquiry span.flatpickr-weekday:nth-child(7),
body.inquiry span.flatpickr-day:nth-child(7n) {
  color: #00f;
}
body.inquiry span.flatpickr-day.prevMonthDay:nth-child(7n),
body.inquiry span.flatpickr-day.nextMonthDay:nth-child(7n) {
  color: rgba(0, 0, 255, 0.3);
}

/* mtbLesson
------------------------------------- */
body#mtbLessonPage div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/mtbLesson_topImage.jpg);
}
body#mtbLessonPage div#topImage::after {
  right: 0;
  min-width: 890px;
  width: calc(50% + 315px);
}
body#mtbLessonPage div#topImage h1.main {
  right: 0;
}
body#mtbLessonPage div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
}
body#mtbLessonPage div.contents > div.inner h2.title {
  margin: 0 0 50px;
  text-align: center;
}
body#mtbLessonPage div.contents > div.inner p.information {
  text-align: center;
  transition-delay: 0.2s;
}
body#mtbLessonPage div.contents > div.inner ul.internalLink {
  display: flex;
  justify-content: center;
  margin: 10px 0 80px;
  transition-delay: 0.4s;
}
body#mtbLessonPage div.contents > div.inner ul.internalLink > li > a {
  display: block;
  position: relative;
}
body#mtbLessonPage div.contents > div.inner ul.internalLink > li > a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 30px;
  transition: width 0.3s;
}
body#mtbLessonPage div.contents > div.inner ul.internalLink > li > a:hover::before {
  width: 100%;
}
body#mtbLessonPage div.contents > div.inner ul.internalLink > li > a[href="#basicCourse"]::before {
  background-image: url(../image/mtbLesson_internalLink_basicCourse_on.svg);
}
body#mtbLessonPage div.contents > div.inner ul.internalLink > li > a[href="#kids"]::before {
  background-image: url(../image/mtbLesson_internalLink_kids_on.svg);
}
body#mtbLessonPage div.contents > div.inner ul.internalLink > li > a[href="#private"]::before {
  background-image: url(../image/mtbLesson_internalLink_private_on.svg);
}
body#mtbLessonPage div.contents > div.inner ul.internalLink > li img {
  display: block;
}
body#mtbLessonPage div.contents > div.inner div.detail {
  position: relative;
}
body#mtbLessonPage div.contents > div.inner div.detail::before {
  content: "";
  position: absolute;
  left: calc(-50vw + 50%);
  z-index: -1;
  width: calc(50vw + 200px);
  height: calc(100% - 84px);
  margin: -25px 0 0;
  background: #f5f0e3;
}
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once::before {
  opacity: 0;
  transform: translate(calc(-50vw - 200px), 0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once.effect_end::before {
  opacity: 1;
  transform: translate(0);
}
body#mtbLessonPage div.contents > div.inner div.detail > p.image {
  order: 2;
  padding-left: 20px;
  padding-right: 0;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text::after {
  content: "";
  display: block;
  clear: both;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > h3.title {
  position: relative;
  padding: 15px 0;
  padding-left: 10px;
  color: #000;
  font-size: 3rem;
  font-weight: bold;
  min-width: 390px;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > h3.title::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(-50vw + 50%);
  top: 0;
  z-index: -1;
  min-width: 360px;
  width: calc(50vw - 145px);
  height: 100%;
  background: #d7bfa3;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > p.image.main {
  float: left;
  width: 50%;
  padding: 2em 0 0;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > p.image.main > img {
  max-width: 100%;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > div.caution {
  float: right;
  max-width: 40%;
  color: #fff;
  background: #505050;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > div.caution > p.caution {
  padding: 0.2em 0 0.1em;
  font-size: 2rem;
  text-align: center;
  background: #000;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > div.caution > div.textBox {
  line-height: 1.8;
  padding: 0.5em 2em;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > div.caution h4 {
  margin: 0 0 0.5em;
  padding: 0 0 0.25em;
  border-bottom: 1px solid #fff;
  font-size: 2rem;
  text-align: center;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > div.caution p.text + p.text {
  margin-top: 1.6em;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > div.caution p.sale {
  margin: 0.5em 0 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > p.image.decoration {
  pointer-events: none;
  float: right;
  padding: 4em 0 0;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > dl.details {
  float: left;
  width: 55%;
  padding: 2em 0 0;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > dl.details > dt {
  position: relative;
  width: 6.8em;
  padding: 0 1em;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > dl.details > dt::before {
  content: "【";
  position: absolute;
  left: 0;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > dl.details > dt::after {
  content: "】";
  position: absolute;
  right: 0;
  top: 0;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > dl.details > dt > span {
  display: block;
  text-align-last: justify;
}
body#mtbLessonPage div.contents > div.inner div.detail > div.text > dl.details > dd {
  margin: -1.6em 0 0.5em 9.5em;
}
body#mtbLessonPage div.contents > div.inner div.detail p.button {
  margin: 5em 0 10em;
}
body#mtbLessonPage div.contents > div.inner div.detail p.button > a {
  display: block;
  position: relative;
  height: 84px;
  overflow: hidden;
  margin: 0 auto;
}
body#mtbLessonPage div.contents > div.inner div.detail p.button > a::before, body#mtbLessonPage div.contents > div.inner div.detail p.button > a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
body#mtbLessonPage div.contents > div.inner div.detail p.button > a::after {
  opacity: 0;
  transition: opacity 0.3s;
}
body#mtbLessonPage div.contents > div.inner div.detail p.button > a:hover::after {
  opacity: 1;
}
body#mtbLessonPage div.contents > div.inner div.detail#basicCourse > p.button > a {
  max-width: 820px;
}
body#mtbLessonPage div.contents > div.inner div.detail#basicCourse > p.button > a::before {
  padding: 10.2% 0 0;
  background-image: url(../image/mtbLesson_basicCourse_reservation_off.svg);
}
body#mtbLessonPage div.contents > div.inner div.detail#basicCourse > p.button > a::after {
  background-image: url(../image/mtbLesson_basicCourse_reservation_on.svg);
}
body#mtbLessonPage div.contents > div.inner div.detail#kids {
  margin-top: 300px;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids::before {
  height: 58em;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.text {
  position: relative;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  height: calc(100% + 250px);
  margin: 0 0 0 -50vw;
  background: #eae0cf url(../image/mtbLesson_kids_bg_bottom.svg) no-repeat left bottom;
  background-size: contain;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.text:first-child {
  padding: 0 0 2em;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.text:first-child::before {
  top: -165px;
  height: calc(100% + 165px);
  background-image: url(../image/mtbLesson_kids_bg_top.svg);
  background-position: 0 0;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.text h3.title::before {
  left: 50%;
  width: calc(50vw - 145px);
  margin-left: -50vw;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.text > p.image.decoration {
  padding-top: 2em;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction {
  position: relative;
  padding: 2em 0;
  color: #fff;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction::before, body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  margin: 0 0 0 -50vw;
  background: #646464;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction::before {
  background: #eae0cf;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction > h4 {
  margin: 0 0 1em;
  font-size: 3rem;
  text-align: center;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction > ul {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction > ul > li {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 380px;
  height: 130px;
  padding: 200px 0 0;
  font-size: 2rem;
  text-align: center;
  background: no-repeat center center;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction > ul > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 130px;
  opacity: 0.6;
  background: #000;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction > ul > li.manners {
  background-image: url(../image/mtbLesson_kids_manner.jpg);
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction > ul > li.heart {
  background-image: url(../image/mtbLesson_kids_heart.jpg);
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction > ul > li.share {
  background-image: url(../image/mtbLesson_kids_share.jpg);
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > div.introduction > ul span {
  position: relative;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > p.button > a {
  max-width: 874px;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > p.button > a::before {
  padding: 9.6% 0 0;
  background-image: url(../image/mtbLesson_kids_reservation_off.svg);
}
body#mtbLessonPage div.contents > div.inner div.detail#kids > p.button > a::after {
  background-image: url(../image/mtbLesson_kids_reservation_on.svg);
}
body#mtbLessonPage div.contents > div.inner div.detail#kids.effect_trigger_once > div.text > h3.title::before {
  opacity: 0;
  transform: translate(calc(-100vw + 145px), 0);
}
body#mtbLessonPage div.contents > div.inner div.detail#kids.effect_trigger_once > div.introduction::after {
  transform: translate(-100vw, 0);
}
body#mtbLessonPage div.contents > div.inner div.detail#kids.effect_trigger_once > div.introduction > h4,
body#mtbLessonPage div.contents > div.inner div.detail#kids.effect_trigger_once > div.introduction > ul {
  opacity: 0;
  transform: translate(0, 30px);
}
body#mtbLessonPage div.contents > div.inner div.detail#kids.effect_trigger_once.effect_end > div.text > h3.title::before {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids.effect_trigger_once.effect_end > div.introduction::after {
  transform: translate(0);
  transition-property: transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#mtbLessonPage div.contents > div.inner div.detail#kids.effect_trigger_once.effect_end > div.introduction > h4,
body#mtbLessonPage div.contents > div.inner div.detail#kids.effect_trigger_once.effect_end > div.introduction > ul {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
body#mtbLessonPage div.contents > div.inner div.detail#private > p.button > a {
  max-width: 968px;
}
body#mtbLessonPage div.contents > div.inner div.detail#private > p.button > a::before {
  padding: 8.7% 0 0;
  background-image: url(../image/mtbLesson_private_reservation_off.svg);
}
body#mtbLessonPage div.contents > div.inner div.detail#private > p.button > a::after {
  background-image: url(../image/mtbLesson_private_reservation_on.svg);
}
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once > div.text > h3.title span,
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once > div.text > p,
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once > div.text > div.caution {
  opacity: 0;
  transform: translate(0, 30px);
}
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once > div.text > h3.title::before {
  opacity: 0;
  transform: translateX(calc(-50vw + 145px));
}
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once > div.text > dl.details {
  opacity: 0;
}
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once.effect_end > div.text > h3.title span,
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once.effect_end > div.text > p,
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once.effect_end > div.text > div.caution {
  opacity: 1;
  transform: translate(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once.effect_end > div.text > h3.title::before {
  opacity: 1;
  transform: translateX(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}
body#mtbLessonPage div.contents > div.inner div.detail.effect_trigger_once.effect_end > div.text > dl.details {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-delay: 1s;
}

/* Reservation
------------------------------------- */
body.reservation div#topImage {
  position: relative;
  height: 320px;
  overflow: visible;
  background-image: url(../image/inquiry_topImage.jpg);
}
body.reservation div#topImage::after {
  right: 0;
  min-width: 772px;
  width: calc(50% + 190px);
}
body.reservation div#topImage h1.main {
  right: 0;
}
body.reservation div.contents > div.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 88px;
}
body.reservation div.contents > div.inner > h2.title,
body.reservation div.contents > div.inner > h2.title + p.text {
  margin: 0 0 50px;
  text-align: center;
}
body.reservation div.contents > div.inner div.detail {
  margin: 0 0 50px;
}
body.reservation div.contents > div.inner div.detail::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  min-height: 65em;
  background: #f5f0e3;
  margin: -25px 0 0;
}
body.reservation div.contents > div.inner div.detail.effect_trigger_once::before {
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  opacity: 0;
  transform: translate(-50%, 0);
}
body.reservation div.contents > div.inner div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body.reservation div.contents > div.inner div.detail.effect_trigger_once.effect_end::before {
  opacity: 1;
  transform: none;
}
body.reservation div.contents > div.inner div.detail > h3.title {
  padding: 15px 0;
  padding-left: 10px;
  margin-bottom: 25px;
  color: #000;
  font-size: 3rem;
  font-weight: bold;
  min-width: 420px;
  width: calc(50% - 180px);
}
body.reservation div.contents > div.inner div.detail > h3.title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: -1;
  min-width: 420px;
  width: calc(50% - 180px);
  height: 80px;
  margin: -15px 0 0;
  background: #d7bfa3;
}
body.reservation div.contents > div.inner div.detail > h3.title.effect_trigger_once::before {
  opacity: 0;
  min-width: 0;
  width: 0;
  transition-property: opacity, min-width, width;
  transition-duration: 0.5s;
}
body.reservation div.contents > div.inner div.detail > h3.title.effect_trigger_once > span {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body.reservation div.contents > div.inner div.detail > h3.title.effect_trigger_once.effect_end {
  transform: none;
}
body.reservation div.contents > div.inner div.detail > h3.title.effect_trigger_once.effect_end::before {
  opacity: 1;
  min-width: 420px;
  width: calc(50% - 180px);
}
body.reservation div.contents > div.inner div.detail > h3.title.effect_trigger_once.effect_end > span {
  opacity: 1;
  transform: translate(0);
}
body.reservation div.contents > div.inner div.detail > ul {
  padding-left: 1.5em;
  margin-bottom: 50px;
}
body.reservation div.contents > div.inner div.detail > ul li {
  list-style-type: disc;
}
body.reservation div.contents > div.inner div.detail.effect_trigger_once > ul {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body.reservation div.contents > div.inner div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body.reservation div.contents > div.inner div.detail.effect_trigger_once.effect_end > ul {
  opacity: 1;
  transform: translate(0);
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation table {
  max-width: 800px;
  width: calc(50% + 200px);
  margin: 0 auto;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation table th,
body.reservation div.contents > div.inner div.detail #form.contents .reservation table td {
  vertical-align: top;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation table th {
  padding: 0 20px 40px 10px;
  box-sizing: border-box;
  width: 25%;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation table td {
  padding: 0 0 40px;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation table td input[type=text],
body.reservation div.contents > div.inner div.detail #form.contents .reservation table td textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 2px 5px;
  border: 1px solid #505050;
  border-radius: 3px;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation table td input[type=radio] {
  margin: 0 0.25em 0 0;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation table td label + label {
  margin-left: 1em;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation span.required,
body.reservation div.contents > div.inner div.detail #form.contents .reservation p.error {
  color: #f00;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation div.agree {
  padding: 0 10px 40px;
  text-align: center;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation p.button,
body.reservation div.contents > div.inner div.detail #form.contents .reservation .buttonBlock {
  text-align: center;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation p.button button,
body.reservation div.contents > div.inner div.detail #form.contents .reservation .buttonBlock button {
  color: #fff;
  background-color: #0e0000;
  cursor: pointer;
  padding: 0.5em 1em;
  border: 1px solid #505050;
  border-radius: 5px;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation p.button {
  padding: 0 10px 40px;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation p.button a {
  text-decoration: none;
}
body.reservation div.contents > div.inner div.detail #form.contents .reservation p.button a:hover {
  text-decoration: underline;
}
body.reservation div.contents > div.inner div.detail.effect_trigger_once #form.contents {
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0.7s;
}
body.reservation div.contents > div.inner div.detail.effect_trigger_once.effect_end {
  transform: none;
}
body.reservation div.contents > div.inner div.detail.effect_trigger_once.effect_end #form.contents {
  opacity: 1;
  transform: translate(0);
}
body.reservation div.contents.confirm > div.inner div.detail::before {
  min-height: 1300px;
}
body.reservation div.contents.confirm > div.inner div.detail #form.contents .reservation > p {
  margin-bottom: 25px;
}
body.reservation div.contents.confirm > div.inner div.detail #form.contents .reservation table tr {
  border-top: 1px solid #505050;
  border-bottom: 1px solid #505050;
}
body.reservation div.contents.confirm > div.inner div.detail #form.contents .reservation table tr th {
  padding: 40px 20px 40px 10px;
}
body.reservation div.contents.confirm > div.inner div.detail #form.contents .reservation table tr td {
  padding: 40px 0;
}
body.reservation div.contents.confirm > div.inner div.detail #form.contents .reservation .buttonBlock {
  padding: 1em;
}
body.reservation div.contents.confirm > div.inner div.detail #form.contents .reservation .buttonBlock form {
  display: inline-block;
  width: 30%;
}
body.reservation div.contents.finish > div.inner div.detail::before {
  min-height: calc(100% - 150px);
}
body.reservation div.contents.finish > div.inner div.reservation {
  text-align: center;
}
body.reservation div.contents.error > div.inner div.detail::before {
  min-height: calc(100% - 150px);
}
body.reservation div.contents.error > div.inner div.reservation {
  text-align: center;
}
body.reservation div.contents.error > div.inner div.reservation ul.link {
  padding: 1em 0 0;
}
body.reservation div.contents.error > div.inner div.reservation ul.link > li {
  margin: 1em 0 0;
}
body.reservation#mtbLessonPrivatePage div.contents > div.inner div.detail::before {
  min-height: 78em;
}