@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "NBlack";
  font-display: swap;
  src: url("/wp-content/themes/gaschool_LP_wp/font/NotoSansJP-Black.woff2") format("woff2"), url("/wp-content/themes/gaschool_LP_wp/font/NotoSansJP-Black.woff") format("woff"), url("/wp-content/themes/gaschool_LP_wp/font/NotoSansJP-Black.eot") format("eot"), url("/wp-content/themes/gaschool_LP_wp/font/NotoSansJP-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Mround";
  font-display: swap;
  src: url("/wp-content/themes/gaschool_LP_wp/font/MPLUSRounded1c-Bold.woff2") format("woff2"), url("/wp-content/themes/gaschool_LP_wp/font/MPLUSRounded1c-Bold.woff") format("woff"), url("/wp-content/themes/gaschool_LP_wp/font/MPLUSRounded1c-Bold.eot") format("eot"), url("/wp-content/themes/gaschool_LP_wp/font/MPLUSRounded1c-Bold.ttf") format("truetype");
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

#nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 2;
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 91%;
  max-width: 1280px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.head {
  top: 0;
  width: 100%;
  z-index: 11;
  position: fixed;
}

.nav-unshown {
  display: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.trigger {
  opacity: 0;
}
.trigger .up {
  animation: up 1s ease 0.1s 1 normal forwards;
}
.trigger .delay0 {
  animation-delay: 0ms;
}
.trigger .delay1 {
  animation-delay: 100ms;
}
.trigger .delay2 {
  animation-delay: 200ms;
}
.trigger .delay3 {
  animation-delay: 300ms;
}
.trigger .delay4 {
  animation-delay: 400ms;
}
.trigger .delay5 {
  animation-delay: 500ms;
}
.trigger .delay6 {
  animation-delay: 600ms;
}
.trigger .delay7 {
  animation-delay: 700ms;
}
.trigger .delay8 {
  animation-delay: 800ms;
}
.trigger .delay9 {
  animation-delay: 900ms;
}
.trigger .delay10 {
  animation-delay: 1000ms;
}

@keyframes up {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.mt60 {
  margin-top: 60px;
}

/*------------------------------------------------------------
media
------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  .inner {
    width: 87.5%;
  }
  .smenu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    display: block;
  }
  #nav-drawer {
    position: relative;
  }
  .nav-unshown {
    display: none;
  }
  #nav-open {
    display: inline-block;
    width: 57px;
    height: 57px;
    vertical-align: middle;
    padding: 20px 17.5px;
    box-sizing: border-box;
    z-index: 10000;
    position: relative;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 2px; /*線の太さ*/
    width: 22px; /*長さ*/
    border-radius: 10px;
    background: #333;
    display: block;
    content: "";
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    display: none; /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0; /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    padding-bottom: 100px;
    z-index: 9999; /*最前面に*/
    width: 80%; /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px; /*最大幅（調整してください）*/
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.3s ease-in-out; /*滑らかに表示*/
    -webkit-transform: translateX(105%);
    transform: translateX(105%); /*左に隠しておく*/
    -webkit-overflow-scrolling: touch;
  }
  #nav-content .spl {
    padding: 10px 20px;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid #d5d5d5;
    box-sizing: border-box;
    text-decoration: none;
    color: #204060;
    font-weight: bold;
  }
  #nav-content dt {
    padding: 10px 20px;
    font-size: 14px;
    color: #204060;
    border-bottom: 1px solid #d5d5d5;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    background: url("../images/h_menu_tri_g.png") center right 15px no-repeat;
  }
  #nav-content dd {
    display: none;
  }
  #nav-content dd .spl {
    color: #333;
    font-weight: normal;
    padding-left: 40px;
    box-sizing: border-box;
    font-size: 13px;
    border-bottom: 1px dotted #d5d5d5;
    position: relative;
  }
  #nav-content dd .spl:before {
    content: "";
    position: absolute;
    background: #666;
    height: 1px;
    width: 12px;
    top: 20px;
    left: 20px;
  }
  #nav-content dd p:last-of-type .spl {
    border-bottom: 1px solid #d5d5d5;
  }
  #nav-content .last {
    margin-bottom: 100px;
  }
  #nav-input:checked ~ #nav-close {
    display: block; /*カバーを表示*/
    opacity: 0.5;
  }
  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
  #nav-input:checked ~ #nav-open span {
    transform: rotate(45deg);
    top: 27px;
    background: white;
  }
  #nav-input:checked ~ #nav-open span:before {
    bottom: 0;
    transform: rotate(90deg);
  }
  #nav-input:checked ~ #nav-open span:after {
    bottom: 0;
  }
}
@media all and (max-width: 695px) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .inner {
    width: 87.5%;
  }
  #wrapper {
    width: 100%;
    overflow: hidden;
  }
  .gtp {
    bottom: 20px;
    right: 20px;
    z-index: 10;
  }
  .gtp img {
    width: 40px;
    height: auto;
  }
}

#autozip {
    display: none !important;
}
/*--media_end--*/

/*# sourceMappingURL=base.css.map */
