@charset "UTF-8";
/* variables
----------------------------------------------------*/
/* wrapper
----------------------------------------------------*/
.wrapper {
  width: 100vw;
  overflow: hidden;
}

/* header
----------------------------------------------------*/
#header {
  display: block;
  position: relative;
  width: 100vw;
  height: 400px;
  background: #fff;
}
@media only screen and (max-width: 640px) {
  #header {
    height: 40vh;
  }
}

.header-logo {
  position: absolute;
  top: 70px;
  right: 70px;
  width: 50px;
}
@media only screen and (max-width: 640px) {
  .header-logo {
    top: 50px;
    right: 40px;
    width: 10.5vw;
  }
}

.header-info {
  position: absolute;
  top: 70px;
  left: 70px;
  font-family: "DIN", sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.3;
}
@media only screen and (max-width: 640px) {
  .header-info {
    top: 40px;
    left: 40px;
    font-size: 3vw;
  }
}

.gnav {
  position: absolute;
  top: 70px;
  right: 240px;
  font-weight: 500;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 640px) {
  .gnav {
    top: 110px;
    right: initial;
    left: 35px;
  }
}
.gnav li {
  margin-left: 1.5em;
  font-size: 20px;
}
@media only screen and (max-width: 640px) {
  .gnav li {
    margin-left: 0;
    margin-right: 1em;
    font-size: 4vw;
  }
}

/* hero
----------------------------------------------------*/
.hero {
  position: relative;
  width: 100vw;
  height: 64.285vw;
  z-index: 1;
  transition: opacity 1.2s 0.3s ease;
  opacity: 0;
}
@media only screen and (max-width: 640px) {
  .hero {
    margin: 0 auto;
    width: 100vw;
    height: 50vh;
  }
}
.hero.inview {
  opacity: 1;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 640px) {
  .hero-slide {
    width: 100%;
  }
}
.hero-slide div {
  width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* about
----------------------------------------------------*/
#about {
  margin-top: 150px;
}
@media only screen and (max-width: 640px) {
  #about {
    margin-top: 100px;
  }
}
#about .inner {
  margin: 0 auto;
  width: 95%;
  max-width: 630px;
  height: 500px;
}
@media only screen and (max-width: 640px) {
  #about .inner {
    width: 90%;
    height: auto;
  }
}
#about p {
  margin: 0 auto;
  font-size: min(3.6vw, 18px);
  font-weight: 500;
  line-height: 2.5;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 640px) {
  #about p {
    line-height: 2.2;
    writing-mode: lr-tb;
  }
}

/* schedule
----------------------------------------------------*/
#schedule {
  position: relative;
  margin-top: 150px;
}
#schedule .inner {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}
#schedule .title {
  position: absolute;
  right: 1.5em;
  height: 500px;
}
@media only screen and (max-width: 640px) {
  #schedule .title {
    right: initial;
    width: 100%;
    height: 100px;
  }
}
#schedule .title h2 {
  font-size: min(7vw, 30px);
  font-weight: 600;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 640px) {
  #schedule .title h2 {
    text-align: center;
    writing-mode: lr-tb;
  }
}
#schedule #calendar {
  margin: 0 auto;
  padding-top: 50px;
  width: 80%;
  max-width: 750px;
}
@media only screen and (max-width: 640px) {
  #schedule #calendar {
    padding-top: 80px;
    width: 100%;
  }
}

/* admissions
----------------------------------------------------*/
#admissions {
  position: relative;
  margin-top: 150px;
}
#admissions .inner {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}
#admissions .title {
  position: absolute;
  left: 0;
  height: 500px;
}
@media only screen and (max-width: 640px) {
  #admissions .title {
    right: initial;
    width: 100%;
    height: 100px;
  }
}
#admissions .title h2 {
  font-size: min(7vw, 30px);
  font-weight: 600;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 640px) {
  #admissions .title h2 {
    text-align: center;
    writing-mode: lr-tb;
  }
}
#admissions .chart {
  margin: 0 auto;
  padding-top: 50px;
  width: 80%;
  max-width: 750px;
}
@media only screen and (max-width: 640px) {
  #admissions .chart {
    padding-top: 80px;
    width: 100%;
  }
}
#admissions .chart table {
  width: 100%;
  border-bottom: solid 1px #bbb;
}
#admissions .chart table th, #admissions .chart table td {
  padding: 1em 0;
  font-weight: 400;
  border-top: solid 1px #bbb;
}
#admissions .chart table th {
  font-size: min(3.2vw, 15px);
  font-weight: 500;
  white-space: nowrap;
}
#admissions .chart table td {
  padding-left: 2em;
  font-size: min(3.5vw, 17px);
}
#admissions .chart table p.note {
  margin-top: 1em;
  font-size: min(3vw, 13px);
}
#admissions .welcome {
  margin-top: 3em;
  padding: 1.5em 1em;
  width: 100%;
  font-size: min(4vw, 19px);
  text-align: center;
  background: #f1f1f1;
}
#admissions .btn-map {
  position: relative;
  display: inline-block;
  margin-left: 0.5em;
  top: -2px;
}
#admissions .btn-map a {
  display: block;
  padding: 5px 10px 6px 12px;
  font-size: min(3vw, 13px);
  line-height: 1;
  z-index: 14;
  color: #fff;
  background: #777;
  border-radius: 20px;
  transition: opacity 0.3s ease;
}
#admissions .btn-map a:hover {
  opacity: 0.7;
}

/* contact
----------------------------------------------------*/
#contact {
  width: 100%;
  background: #f1f1f1;
}
#contact .inner {
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
  padding: 120px 0 170px;
}
@media only screen and (max-width: 640px) {
  #contact .inner {
    padding: 80px 0 120px;
  }
}
#contact p {
  font-size: min(4.7vw, 19px);
  font-weight: 500;
  text-align: center;
}

.btn-contact {
  margin-top: 30px;
}
.btn-contact a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 120px;
  font-size: min(5vw, 30px);
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  background: #003;
  border-radius: 100px;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 640px) {
  .btn-contact a {
    height: 90px;
  }
}
.btn-contact a:hover {
  opacity: 0.7;
}

#footer {
  padding-top: 120px;
  width: 100%;
  height: 800px;
  background: #fff url(/common/images/footer.jpg) no-repeat bottom center;
  background-size: 100%;
}
@media only screen and (max-width: 640px) {
  #footer {
    padding-top: 80px;
    background-size: 200%;
  }
}
#footer .inner {
  margin: 0 auto;
  width: 85%;
}

.footer-contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .footer-contents {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .footer-title {
    width: 100%;
  }
}
.footer-title p {
  margin-top: 2em;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 640px) {
  .footer-title p {
    text-align: center;
  }
}

.footer-logo {
  margin-top: 10px;
  width: 285px;
}
@media only screen and (max-width: 640px) {
  .footer-logo {
    margin: 0 auto;
    width: 200px;
  }
}

.footer-nav {
  margin-left: 10vw;
}
@media only screen and (max-width: 640px) {
  .footer-nav {
    margin-top: 50px;
    margin-left: 0;
    width: 100%;
  }
}
.footer-nav ul {
  width: 100%;
}
.footer-nav li {
  font-size: min(4vw, 15px);
  font-weight: 500;
}
@media only screen and (max-width: 640px) {
  .footer-nav li {
    text-align: center;
  }
}
.footer-nav li + li {
  margin-top: 0.5em;
}
@media only screen and (max-width: 640px) {
  .footer-nav li + li {
    margin-top: 1em;
  }
}

.copyright {
  margin-top: 20px;
}
@media only screen and (max-width: 640px) {
  .copyright {
    margin-top: 50px;
    width: 100%;
    text-align: center;
  }
}
.copyright small {
  font-size: min(2.8vw, 12px);
}

/* scroll-img
----------------------------------------------------*/
.scroll-img {
  padding-top: 150px;
}

.scroll-01 {
  margin: 0;
}
.scroll-01 li {
  width: 400px;
}
@media only screen and (max-width: 640px) {
  .scroll-01 li {
    width: 75vw;
  }
}

/* fullcalendar
----------------------------------------------------*/
.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 15px;
}
.fc .fc-button-primary {
  font-size: 0.75rem;
  background-color: #ffffff00;
  color: #acaba9;
  border: none;
  outline: none;
}
.fc .fc-button-primary:hover {
  color: #222;
  background: #eee;
}
.fc .fc-today-button {
  background-color: #ffffff00;
  color: #37362f;
  border: none;
  outline: none;
}
.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
  background-color: #ffffff00;
  color: #acaba9;
  box-shadow: none;
}
.fc .fc-button-primary:not(:disabled):focus,
.fc .fc-button-primary:not(:disabled).fc-button-focus {
  background-color: #ffffff00;
  color: #acaba9;
  box-shadow: none;
}
.fc .fc-today-button:disabled {
  opacity: 1;
}
.fc .fc-button-primary:disabled {
  background-color: #ffffff00;
  color: #acaba9;
  box-shadow: none;
}
.fc .fc-scrollgrid {
  background: #fff;
}
.fc .fc-col-header-cell {
  font-size: 0.75rem;
  font-weight: normal;
  color: #b6b5b3;
}
.fc .fc-day-sat {
  color: #3d3dcb;
}
.fc .fc-day-sun {
  color: #d73333;
}
.fc .fc-daygrid-day-number {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  font-family: "DIN", sans-serif;
  font-weight: 400;
  font-size: min(6vw, 2.4rem);
}
.fc .fc-event-title {
  padding-left: 0.5em;
  font-weight: 300;
}
.fc .fc-daygrid-block-event.ichiken-event {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.5em;
  margin-right: 5px;
  padding: 0.2em 0.3em 0.3em;
  background: #ffd !important;
  border-radius: 6px;
}
.fc .fc-daygrid-block-event.ichiken-event .fc-event-title {
  line-height: 2;
}
.fc .fc-daygrid-day-events {
  margin-top: -2em;
  margin-bottom: 0.3em !important;
  margin-left: 5px;
}
.fc .fc-daygrid-day-events a {
  pointer-events: none;
}
.fc .fc-daygrid-dot-event {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fc .fc-event-time {
  padding-top: 0.3em;
  font-family: "DIN", sans-serif;
  font-size: min(6vw, 2rem);
  font-weight: 300;
  line-height: 1;
}
.fc .fc-toolbar-title {
  font-family: YakuHanJP, "DIN", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: min(6vw, 30px);
  letter-spacing: 0.05em;
}
.fc .fc-toolbar-title .jp {
  padding: 0 0.15em;
  font-size: 20px;
}
.fc .fc-list-event-location {
  margin-right: 10px;
  font-size: min(3vw, 0.9em);
  line-height: 1;
  padding: 5px 15px;
  border: solid 1px #ccc;
  border-radius: 20px;
}
.fc .fc-daygrid-day {
  background: url(/common/images/bg_pattern.png);
}
.fc .keiko {
  background: #fff;
}

.btn-application {
  position: relative;
  margin-top: 60px;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
}
.btn-application a {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 500px;
  height: 90px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #eb923b 0%, #f46323 100%);
  transition: opacity 0.15s linear;
  box-sizing: border-box;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .btn-application a {
    width: 100%;
    height: 70px;
  }
}
.btn-application a:hover {
  cursor: pointer;
  opacity: 0.7;
}
.btn-application p {
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .btn-application p {
    font-size: 4vw;
  }
}

.btn-pagetop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100px;
  z-index: 100;
}
@media only screen and (max-width: 640px) {
  .btn-pagetop {
    width: 60px;
  }
}
.btn-pagetop a {
  display: block;
  transition: opacity 0.3s ease;
}
.btn-pagetop a:hover {
  opacity: 0.7;
}

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