/* ------------------------------------------------
   global header
*/
/* 高さ定義 */
.gl-h-container {
  background: #FFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 1024px) {
  .gl-h-container {
    height: 100px;
    /* padding-top: 16px; */
  }

  .mv {
    margin-top: 100px;
  }

  a[name] {
    position: relative;
    top: -100px;
  }
}

@media screen and (max-width: 1023px) {
  .gl-h-container {
    height: 64px;
    /* padding-top: 8px;
    padding-bottom: 8px; */
  }

  .mv {
    margin-top: 64px;
  }

  .gl-h-nav.drawer-nav {
    margin-top: 64px;
  }

  a[name] {
    position: relative;
    top: -64px;
  }
}

/* */

.gl-h-container {
  position: relative;
  width: 100%;
  z-index: 50;
  top: 0;
}

.admin-bar .gl-h-container {
  top: 32px;
}

@media screen and (min-width: 1024px) {

  .gl-h-container,
  .gl-f,
  .gl-h-nav .-children {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.gl-h-container.-pos-fix {
  position: fixed;
}

/* ------------ */
.gl-h-container.-color-light {
  color: #333;
  background-color: #FFF;
}

.gl-h-container.-color-dark {
  color: #FFF;
  background-color: #000;
}

.drawer:not(.drawer-open) .gl-h-container.-color-dark .drawer-hamburger-icon,
.gl-h-container.-color-dark .drawer-hamburger-icon::after,
.gl-h-container.-color-dark .drawer-hamburger-icon::before {
  background-color: #FFF;
}



.gl-h-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}

@media screen and (max-width: 1023px) {
  .gl-h-title {
    height: 64px;
    margin: 0;
  }
}

.gl-h-logo {
  line-height: 0;
  font-size: 32px;
  display: flex;
  align-items: center;
}

.gl-h-logo img {
  width: 70px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 1023px) {
  .gl-h-logo img {
    width: 46px;
    position: unset;
  }
}

.gl-h-catch {
  font-size: 16px;
  font-size: 10px;
  margin-left: 75px;
  line-height: 1.7;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .gl-h-catch {
    font-size: 10px;
    line-height: 14px;
    margin-left: 5px;
  }
}

.gl-h .menu a,
.gl-h-logo a {
  text-decoration: none;
  color: inherit;
}

.gl-h ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.gl-h dd {
  margin-left: 0;
}

.gl-h-logo {
  margin: 0;
}

.gl-h-nav.drawer-nav {
  color: inherit;
}

.gl-h .menu a {
  font-weight: bold;
  display: block;
}

.gl-h-buttons {
  display: flex;
  justify-content: flex-end;
  width: 80%;
}

.btn-h-member {
  font-size: 14px;
  font-weight: bold;
  width: 90%;
  max-width: 220px;
  padding: .7em .3em;
  position: relative;
  transition: all .7s;
  margin: auto 0;
  text-align: center;
  border: solid 2px var(--accent-color);
  color: var(--accent-color);
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .btn-h-member {
    margin: auto;
  }
}

.btn-h-member::before {
  position: absolute;
  left: 16px;
  top: 11px;
  content: "";
  background: url(../images/icon-lesson-room.svg);
  width: 20px;
  height: 20px;
}


.btn-h-member::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/arrow-r-g.svg) no-repeat center / contain;
}




.btn-h-trial {
  font-size: 14px;
  font-weight: bold;
  width: 90%;
  max-width: 216px;
  background: var(--btn-color);
  border: solid 2px var(--btn-color);
  color: #fff;
  padding: .7em;
  padding-left: 25px;
  position: relative;
  transition: all .7s;
  margin: auto 0;
  border-radius: 35px;
  text-align: center;
}

.btn-h-trial:hover {
  background: #B71504;
  border: solid 2px #B71504;
  opacity: 1;
}

.btn-h-trial.icon::before {
  position: absolute;
  left: 20px;
  top: 11px;
  content: "";
  background: url(../images/icon-trial-lesson-w.svg);
  width: 20px;
  height: 20px;
}

.btn-h-trial::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/arrow-r-w.svg) no-repeat center / contain;
}

.gl-h-tell span {
  font-weight: normal;
  font-size: 12px;
  font-size: 10px;
  background: #EEE;
  padding: 0 .5em;
}

.gl-h-tell {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  position: relative;
  text-align: right;
}

.gl-h-tell::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  background: url(../images/icon-tel-black.svg);
  background-size: cover;
  width: 16px;
  height: 16px;
}

@media screen and (min-width: 1024px) {
  .gl-h-buttons> :not(:last-child) {
    margin-right: 10px;
  }

  .gl-h-nav {
    display: flex;
  }

  .gl-h-nav .menu {
    display: flex;
    width: 100%;
    transition-timing-function: unset !important;
    transition-duration: unset !important;
    transform: unset !important;
    justify-content: flex-end;
    gap: 40px;
  }

  .gl-h .menu>li>a {
    line-height: 24px;
    font-size: min(1vw, 14px);
    padding-bottom: 1em;
    text-align: center;
    transition: .7s;
  }

  .gl-h .menu>li>a:hover {
    opacity: 1;
  }

  .gl-h .menu>li>a:hover span {
    display: inline-block;
    color: var(--accent-color);
  }

  .gl-h .menu>li {
    margin: 0;
  }

  .gl-h .menu>li>a {
    display: block;
    font-size: min(1.1vw, 14px);
  }

  .drawer-nav {
    position: static;
    width: auto;
    height: auto;
    background-color: inherit;
  }
}

@media screen and (max-width: 1023px) {
  .drawer--right.drawer-open .drawer-hamburger {
    right: 0 !important;
  }

  /*============
  .toggle-btn
  =============*/
  .toggle-btn {
    display: block;
    position: fixed;
    top: 0;
    right: 10px;
    width: 16px;
    height: 15px;
    transition: all .5s;
    cursor: pointer;
    z-index: 99;
    position: relative;
  }

  .toggle-btn::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: -1;
    border-radius: 50%;
    top: -12px;
    left: -12px;
  }

  .toggle-btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 16px;
    height: 1px;
    background-color: var(--main-color);
    border-radius: 4px;
    transition: all .5s;
  }

  .toggle-btn span:nth-child(1) {
    top: 0px;
  }

  .toggle-btn span:nth-child(2) {
    top: 7px;
  }

  .toggle-btn span:nth-child(3) {
    bottom: 0px;
  }

  .drawer-open .toggle-btn span {
    background-color: var(--main-color);
  }

  .drawer-open .toggle-btn span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-315deg);
    transform: translateY(8px) rotate(-315deg);
  }

  .drawer-open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .drawer-open .toggle-btn span:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(315deg);
    transform: translateY(-6px) rotate(315deg);
  }



  .gl-h-nav.drawer-nav {
    background: #F0F7FC;
    color: #333;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 170px;
  }

  .gl-h-nav {
    padding: 0 20px 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .drawer--right .drawer-nav {
    right: -100%;
  }

  .gl-h-nav .btn {
    width: 100%;
    font-size: 14px;
    margin-top: 2em;
  }

  .gl-h-nav ul {
    /* margin-bottom: 16px; */
  }

  .gl-h-nav li {
    border-bottom: 1px solid var(--accent-color);
    margin: 0;
    font-size: 14px;
  }

  .gl-h-nav li a:hover {
    color: var(--accent-color);
    opacity: 1;
  }

  .gl-h-nav .menu a {
    display: block;
    padding: 16px 0;
    color: var(--sub-color);


    /* background-image: url(../images/icon-rarr-black.png); */
    /* background-position: right 5px center;
    background-repeat: no-repeat;
    background-size: 5px 8px; */
    /* padding-right: 32px; */

  }

  .gl-h-nav .-has-children a {
    background: none;
    flex-grow: 1;
  }

  /* .gl-h-nav li:last-child {
    border-bottom: 1px solid #fff;
  } */

  .gl-h-nav .-has-children {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-btween;
    align-items: center;
  }

  .gl-h-nav .js-drildown-trigger {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    background-size: cover;
    cursor: pointer;
    position: relative;
    line-height: 1;
  }

  .gl-h-nav .js-drildown-trigger::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f055";
    position: absolute;
    right: 5px;
    color: var(--sub-color);
    font-size: 20px;
  }

  .gl-h-nav .is_show .js-drildown-trigger::after {
    /* background: url(../images/icon-minus-red.png) no-repeat center center; */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f056";
    position: absolute;
    right: 5px;
    color: var(--sub-color);
    border-radius: 50%;
  }

  .gl-h-nav .-has-children .-children {
    flex-basis: 100%;
    background: #fff;
  }

  .gl-h-nav li li {
    border: 0 !important;
  }

  .gl-h-nav .menu li li a {
    font-size: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--accent-color);
    padding-left: 1.5em;
    position: relative;
  }

  .gl-h-nav .menu li li:last-child a {
    border-bottom: none;
  }

  /* .gl-h-nav .menu li li a::before {
    content: "ー";
    left: 1em;
    position: absolute;
  } */

  .gl-h-nav-buttons {
    text-align: center;
  }

  .gl-h-nav-buttons .btn-h-trial {
    width: 100%;
    max-width: 315px;
    padding: 1em;
  }

  .gl-h-nav-tel {
    font-size: 18px;
    line-height: 1.4;
  }

  .gl-h-nav-hours {
    font-weight: normal;
    font-size: 12px;
    background: #EEE;
    padding: 0 5px;
    margin-left: 10px;
  }

}

.gl-h-sns {
  margin: 30px 0 0;
  text-align: center;
}

.gl-h-sns a {
  margin: 0 10px;
}

.gl-h-sns img {
  height: 30px;
}

/* ------------------------------------------------
 */
.gl-h-nav .-has-children .-children {
  display: none;
}

@media screen and (min-width: 1024px) {
  .gl-h-nav .-has-children .-children {
    width: 100%;
    top: 100px;
    left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;

    background: #F4F4F4;
  }

  .gl-h-nav .-has-children ul {
    list-style-type: none;
    padding: 0 5%;
  }

  .gl-h-nav .-has-children li {
    display: inline-block;
    line-height: 2;
  }

  .gl-h-nav .-has-children li:not(:last-child)::after {
    content: "|";
    margin: 0 .5em;
    display: inline-block;
  }

  .gl-h-nav .-has-children .-children a {
    color: #333 !important;
    display: inline;
    font-size: 14px;
  }

  .gl-h-nav .-has-children ul a:hover {
    color: var(--accent-color) !important;
    opacity: 1;
  }

  .gl-h-nav .-has-children .-children {
    position: absolute;
  }
}

/* ------------------------------------------------
   footer
*/
.gl-f {
  background: var(--bg-footer);
  color: #fff;
  font-size: 14px;
  position: relative;
}

.gl-f .ft-bgimg {
  width: 100%;
}

.ft-bgimg-wrap {
  padding-top: 10vw;
}

/* .gl-f .ft-fig01 {
  position: absolute;
  left: 5vw;
  top: -11vw;
  width: 15vw;
}

.gl-f .ft-fig02 {
  position: absolute;
  left: 19vw;
  top: -11.5vw;
  width: 9vw;
  animation: yurayura 7s linear infinite;
}

.gl-f .ft-fig03 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -18.5vw;
  width: 11vw;
}

.gl-f .ft-fig04 {
  position: absolute;
  right: 15vw;
  top: -8vw;
  width: 5vw;
  animation: yurayura 10s linear infinite;
}

.gl-f .ft-fig05 {
  position: absolute;
  right: -3vw;
  top: -17vw;
  width: 15vw;
  z-index: -1;
} */

.gl-f-nav ul {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
}

.gl-f-nav li {
  margin-bottom: 16px;
  margin-top: 0;
}

.gl-f-nav li a {
  text-decoration: none;
  font-weight: bold;
  color: inherit;
  margin-left: 0;
}

.gl-f .sns-list {
  display: flex;
  margin-top: 16px;
}

.gl-f .sns-listitem {
  margin: 0 .5em;
}

.gl-f .sns-listitem img {
    width: 30px;
  }

@media screen and (min-width: 768px) {
  .gl-f-row-flex {
    display: flex;
    justify-content: space-between;
  }

  /* .gl-f .sns-list {
    width: 35%;
  } */

  

  .gl-f-row.-nav {
    width: 60%;
  }

  .gl-f-row.-top {
    padding-top: 20px;
    padding-bottom: 25px;
  }

  .gl-f-row.-bottom {
    padding-top: 25px;
    padding-bottom: 80px;
  }

  .gl-f-nav {
    flex: 0 0 75%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

}

@media screen and (max-width: 767px) {

  .gl-f-row-flex {
    flex-direction: column;
    display: flex;
  }

  .gl-f {
    padding-bottom: 60px;
  }

  .gl-f-row {
    padding-top: 8px;
    padding-bottom: 0;
  }

  .gl-f-row.-nav {
    order: 0;
    padding-top: 8px;
    margin-top: 20px;
  }

  .gl-f .sns-list {
    order: 1;
    margin-top: 24px;
  }

  .gl-f-nav li {
    font-size: 12px;
    flex: 0 0 48%;
  }

  .gl-f-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .gl-f-nav>div {
    width: 48%;
  }

  /* .gl-f-nav>*:not(:last-child) {
    margin-bottom: 25px;
  } */
}

.gl-f-logo a {
  text-decoration: none;
  color: inherit;
}

.gl-f-logo {
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  white-space: wrap;
  margin-bottom: 20px;
}

.gl-f-logo img {
  height: 83px;
  margin-right: 1em;
}

/* @media screen and (min-width: 768px) {


  .gl-f-logo img {
    height: 83px;
    margin-right: 1em;
  }
}

@media screen and (max-width: 767px) {


  .gl-f-logo img {
    height: 32px;
  }
} */



.gl-f-sns a {
  margin-right: 10px;
}

.gl-f-sns img {
  height: 30px;
}

.gl-f address {
  font-style: normal;
  font-weight: bold;
}

.gl-f-copy {
  /*background: #000;
  color: #FFF;*/
  text-align: center;
  line-height: 3;
  background-color: #EEE;
}

.gl-f-copy small {
  font-size: 100%;
}



/* ------------------------ */
.gl-f-link a img {
  height: 68px;
}

@media screen and (min-width: 768px) {
  .gl-f-link {
    /* margin-left: 34%; */
    /* display: flex;
    justify-content: start; */
    width: 100%;
  }

  .gl-f-link> :not(:last-child) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .gl-f-link> :not(:last-child) {
    margin-bottom: 20px;
  }
}

@keyframes yurayura {
  0%, 100% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }
}


.deco-ship {
  position: absolute;
  top: -110px;
  right: 9vw;
  width: 100%;
  max-width: 118px;

  animation: yurayura 7s ease-in-out infinite;

}

@media screen and (max-width: 767px) {
  .deco-ship {
    max-width: 94px;
    top: -70px;
  }
}

.deco-yokohama-town {
  /* position: absolute;
  bottom: 0;
  right: 5vw; */
  width: 100%;
  max-width: 476px;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}




.copyright {
  background: var(--bg-footer);
  color: #fff;
  margin: 0;
  padding: .5em;
  text-align: center;
  font-size: 10px;
  border-top: solid 1px #fff;
}

@media screen and (max-width: 767px) {
  .copyright {
    margin-bottom: 64px;
  }

  .page-id-8970 .copyright {
    margin-bottom: 0;
  }
}

/* ------------------------------------------------
 */
/* .gl-fixed {
  position: fixed;
  z-index: 99;
}

.gl-fixed a {
  display: inlin-block;
}

@media screen and (min-width: 768px) {
  .gl-fixed {
    bottom: 16px;
    right: 16px;
  }

  .gl-fixed img {
    height: 64px;
  }
}

@media screen and (max-width: 767px) {
  .gl-fixed {
    bottom: 0;
    right: 0;
    height: 60px;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    padding: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .gl-fixed a:last-child {
    margin-left: 10px;
  }

  .gl-fixed img {
    height: 50px;
  }
} */


/* fixed bottom-bar ------------ */


@media screen and (max-width: 767px) {
  .fixedbar-bottom {
    display: block;
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    padding: 0 10px;
    background: rgba(0, 0, 0, 0.64);
  }

  .fixedbar-bottom ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
  }

  .fixedbar-bottom li {
    width: 42%;
    text-align: center;
    font-size: 14px;
  }

  .fixedbar-bottom li:last-child {
    width: 14%;
    text-align: center;
    font-size: 14px;
  }

  .fixedbar-bottom .line-btn {
    background: #00B900;
    color: #fff;
    font-size: min(3vw, 14px);
    line-height: 1.4;
    font-weight: bold;
    text-align: left;
    width: 100%;
    padding: .4em 0;
    height: 50px;
    margin: auto 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fixedbar-bottom .mail-btn {
    font-size: min(3vw, 14px);
    font-weight: bold;
    background: var(--btn-color);
    border: 2px solid var(--btn-color);
    color: #fff;
    height: 50px;
    padding: .7em;
    position: relative;
    transition: all .7s;
    margin: auto 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fixedbar-bottom .tel-btn {
    font-size: min(3vw, 14px);
    font-weight: bold;
    background: var(--tel-color);
    border: 2px solid var(--tel-color);
    color: #fff;
    height: 50px;
    padding: .7em;
    position: relative;
    transition: all .7s;
    margin: auto 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50px;
  }

  .fixedbar-bottom .mail-btn.arrow {
    position: relative;
    z-index: 3;

  }



  .fixedbar-bottom-icon {
    margin-right: 5px;
  }

  .fixedbar-bottom-icon.-tel {
    margin-right: 0;
  }

  .fixedbar-bottom-icon.-line {
    width: 36px;
    margin-right: 10px;
  }
}