@charset "UTF-8";
/*スマホ*/
/*　++++++++++++++++++++++++++++++
共通パーツ類
++++++++++++++++++++++++++++++　*/
/* フォント　Montserrat　*/
.font-montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.arrow-heading {
  position: relative;
  padding-left: 20px;
  display: inline-block;
  font-size: 12px;
  /*
  &.scrolled {
    &::after {
      width: 3000px;
    }
  }
    */
}
@media (min-width: 768px) {
  .arrow-heading {
    font-size: clamp(30px, 2.9166666667vw, 35px);
    padding-left: 45px;
  }
}
.arrow-heading::before {
  content: "";
  width: 9.46px;
  height: 17.06px;
  display: inline-block;
  background-image: url(../img/front-page/h2_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media (min-width: 768px) {
  .arrow-heading::before {
    width: clamp(25px, 2.5vw, 30px);
    height: clamp(44px, 4.5vw, 54px);
  }
}
.arrow-heading::after {
  content: "";
  width: 1000px;
  height: 1px;
  display: inline-block;
  background: #000;
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 1.5s;
}
@media (min-width: 768px) {
  .arrow-heading::after {
    left: 195px;
    width: 3000px;
  }
}

.arrow-heading_l {
  position: relative;
  padding-left: 35px;
  display: inline-block;
  height: 21.6px;
  width: auto;
  /*
  &.scrolled {
    &::after {
      width: 3000px;
    }
  }
  */
}
@media (min-width: 768px) {
  .arrow-heading_l {
    height: clamp(30px, 3.5833333333vw, 43px);
    padding-left: clamp(40px, 4.1666666667vw, 50px);
  }
}
.arrow-heading_l::before {
  content: "";
  width: 20.55px;
  height: 37.07px;
  display: inline-block;
  background-image: url(../img/front-page/h2_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media (min-width: 768px) {
  .arrow-heading_l::before {
    left: clamp(15px, 1.6666666667vw, 20px);
    width: clamp(20px, 2.5vw, 30px);
    height: clamp(38px, 4.5vw, 54px);
    left: 0;
  }
}
.arrow-heading_l::after {
  content: "";
  width: 33%;
  height: 1px;
  display: inline-block;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 1.5s;
}
@media (min-width: 768px) {
  .arrow-heading_l::after {
    width: 3000px;
  }
}
.arrow-heading_l img {
  width: auto;
  height: 100%;
}

.paren-Box {
  padding: 10px;
  position: relative;
  max-width: 400px;
  width: 92.3076923077vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .paren-Box {
    max-width: 700px;
    width: 700px;
  }
}
.paren-Box::before {
  content: "";
  border: solid 1px;
  border-right: none;
  width: 9px;
  height: 100%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .paren-Box::before {
    border: solid 2px;
    border-right: none;
  }
}
.paren-Box::after {
  content: "";
  border: solid 1px;
  border-left: none;
  width: 9px;
  height: 100%;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .paren-Box::after {
    border: solid 2px;
    border-left: none;
  }
}
.paren-Box p {
  font-size: 23px;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
}
@media (min-width: 768px) {
  .paren-Box p {
    font-size: clamp(40px, 3.75vw, 45px);
  }
}

#fixed-btn {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 0.8s;
}
@media (min-width: 768px) {
  #fixed-btn {
    right: -100px;
    left: auto;
    width: auto;
    top: 50%;
    bottom: auto;
    transform: translate(0, -50%);
  }
}
#fixed-btn.scrolled {
  bottom: 0;
}
@media (min-width: 768px) {
  #fixed-btn.scrolled {
    right: 0;
  }
}
#fixed-btn > ul {
  display: flex;
  justify-content: space-between;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  #fixed-btn > ul {
    border-radius: 10px 0 0 10px;
    flex-direction: column;
    max-width: 56px;
  }
}
#fixed-btn > ul li {
  width: 33.33333%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  #fixed-btn > ul li {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #fixed-btn > ul li:hover {
    opacity: 0.8 !important;
  }
}
#fixed-btn > ul li a {
  padding: 20px 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 768px) {
  #fixed-btn > ul li a {
    writing-mode: vertical-rl;
    height: auto;
    font-size: 16px;
  }
}
#fixed-btn > ul li a span {
  padding-left: 30px;
  position: relative;
}
@media (min-width: 768px) {
  #fixed-btn > ul li a span {
    padding: 30px 20px 10px;
  }
}
#fixed-btn > ul li a span:before {
  content: "";
  display: inline;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media (min-width: 768px) {
  #fixed-btn > ul li a span:before {
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
#fixed-btn > ul .request {
  background: #F06FC8;
}
#fixed-btn > ul .request a span::before {
  background-image: url(../img/front-page/fixed-btn_request.svg);
  width: 20.97px;
}
#fixed-btn > ul .opencampus {
  background: #3386F0;
}
#fixed-btn > ul .opencampus a span::before {
  background-image: url(../img/front-page/fixed-btn_opencampus.svg);
  width: 19.65px;
}
#fixed-btn > ul .line {
  background: #06C755;
}
#fixed-btn > ul .line a span::before {
  background-image: url(../img/front-page/fixed-btn_line.svg);
  width: 24px;
}

header {
  top: 0;
  opacity: 1;
  transition: 0.8s;
}
header.scrolled {
  top: 0;
  opacity: 1;
}
header .headerinner .logo {
  max-width: 260px !important;
}
@media (min-width: 768px) {
  header .headerinner .logo {
    max-width: 472px !important;
  }
}

footer {
  background: #081458;
  padding-bottom: 100px;
  overflow: hidden;
}
footer .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
footer .container .arrow-heading {
  color: #fff;
  margin-bottom: 30px;
}
footer .container .arrow-heading::before {
  filter: invert(100%);
}
footer .container .arrow-heading::after {
  background: #fff;
  left: 100px;
}
@media (min-width: 768px) {
  footer .container .arrow-heading::after {
    left: 240px;
  }
}
@media (min-width: 768px) {
  footer .container .school_name {
    width: 552.07px;
    margin: 50px 0 30px;
  }
}
@media (min-width: 768px) {
  footer .container .flex-Box {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  footer .container .flex-Box > div {
    width: 32%;
  }
}
footer .container .flex-Box > div .base-Box {
  margin-top: 40px;
}
@media (min-width: 768px) {
  footer .container .flex-Box > div .base-Box {
    margin-top: 0;
  }
}
footer .container .flex-Box > div .base-Box .address {
  text-align: center;
  line-height: 1.5;
  color: #fff;
  margin: 15px 0;
}
@media (min-width: 768px) {
  footer .container .flex-Box > div .base-Box .address {
    text-align: left;
    margin: 0 0 15px;
  }
}
footer .container .flex-Box > div .tel-Box {
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  footer .container .flex-Box > div .tel-Box {
    text-align: left;
  }
}
footer .container .flex-Box > div .tel-Box a {
  color: #fff;
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 1px;
  padding-left: 30px;
  position: relative;
}
footer .container .flex-Box > div .tel-Box a::before {
  content: "";
  width: 20.85px;
  height: 20.36px;
  display: inline-block;
  background-image: url(../img/front-page/footer-tel_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
footer .container .flex-Box > div .tel-Box p {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  margin-top: 15px;
}
footer .container .flex-Box > div .footer-link {
  border-top: solid 1px #fff;
  margin: 25px auto 0;
  max-width: 400px;
}
@media (min-width: 768px) {
  footer .container .flex-Box > div .footer-link {
    margin: 80px 0 0;
  }
}
footer .container .flex-Box > div .footer-link li {
  border-bottom: solid 1px #fff;
}
footer .container .flex-Box > div .footer-link li a {
  display: block;
  font-size: 14px;
  line-height: 1;
  padding: 20px 0;
  position: relative;
  color: #fff;
}
@media (min-width: 768px) {
  footer .container .flex-Box > div .footer-link li a:hover::after {
    width: 30px;
    height: 30px;
  }
}
footer .container .flex-Box > div .footer-link li a:after {
  content: "";
  display: inline;
  width: 20px;
  height: 20px;
  background-image: url(../img/front-page/btn_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  filter: invert(100%);
  transition: all 0.3s;
}
footer .container .flex-Box .g-map {
  width: 100%;
  height: 300px;
}
@media (min-width: 768px) {
  footer .container .flex-Box .g-map {
    width: 60%;
    height: auto;
  }
}
footer .container .flex-Box .g-map iframe {
  height: 100%;
}
footer .container .copy-right {
  font-size: 10px;
  text-align: center;
  color: #fff;
  margin-top: 35px;
}
@media (min-width: 768px) {
  footer .container .copy-right {
    font-size: 14px;
    margin-top: 50px;
  }
}

/* footer */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}/*# sourceMappingURL=common.css.map */