@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

@keyframes loop {
  0% {
    transform: translateY(-100%);
  }
  6% {
    transform: translateY(0);
  }
  94% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

a {
  color: #00c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a div {
  color: black;
}

.hover_fade {
  opacity: 1;
  transition: 0.3s;
}

.hover_fade:hover {
  opacity: 0.6;
  text-decoration: none;
}

.fa, .fas {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.indent {
  text-indent: 1em;
  margin-left: -1em;
}

.unindent {
  text-indent: -1em;
  margin-left: 2em !important;
}

.lmargin {
  margin-left: 1em;
}

.txt_umargin2 {
  margin-bottom: 2em !important;
}

.txt_umargin4 {
  margin-bottom: 4em !important;
}

.txt_umargin6 {
  margin-bottom: 6em !important;
}

.mark_yellow {
  background: linear-gradient(0deg, rgba(255, 255, 0, 0.7) 0%, rgba(255, 255, 0, 0.2) 60%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
}

.mark_orange {
  background: linear-gradient(0deg, rgba(255, 165, 0, 0.7) 0%, rgba(255, 165, 0, 0.2) 60%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
}

.mark_blue {
  background: linear-gradient(0deg, rgba(102, 255, 255, 0.7) 0%, rgba(102, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
}

.red {
  color: #e50001;
}

.blue {
  color: #0B66AD;
}

.black {
  color: #000000;
}

.pink {
  color: #e62e8b;
}

.strong {
  font-weight: bold;
}

.size14 {
  font-size: 1.4rem;
}

.size16 {
  font-size: 1.6rem;
}

.size18 {
  font-size: 1.8rem;
}

.loop {
  overflow: hidden;
}

.loop img {
  width: 100%;
  height: 100%;
  animation: loop 8s linear infinite;
}

.inview {
  opacity: 0;
}

.inview.animated {
  opacity: 1;
}

#nav-tgl {
  display: none;
}

@media (max-width: 559px) {
  .nav-tgl-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.5);
    width: 38px;
    height: 38px;
    padding: 4px;
    vertical-align: middle;
    cursor: pointer;
    z-index: 9999;
  }
  .toggle {
    font-size: 0.8rem;
    color: #e50001;
  }
  .toggle span, .toggle span:before, .toggle span:after {
    position: absolute;
    background-color: #e50001;
    height: 4px;
    /*線の太さ*/
    width: 36px;
    /*長さ*/
    border-radius: 4px;
    display: block;
    content: '';
    transition: .3s ease-in-out;
    /*滑らかに表示*/
  }
  .toggle span:before {
    bottom: -12px;
  }
  .toggle span:after {
    bottom: -24px;
  }
  .drower-menu-wrap {
    overflow: auto;
    display: flex;
    flex-flow: row-reverse wrap;
    align-items: flex-start;
    align-content: flex-start;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 999;
    /*最前面に*/
    width: 100%;
    height: calc(100% - 60px);
    background-color: rgba(255, 255, 255, 0.9);
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
  }
  .drower-menu-wrap .drower-menu {
    width: 100%;
    text-align: left;
  }
  .drower-menu-wrap .drower-menu a li {
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 1;
    transition: .3s;
  }
  .drower-menu-wrap .drower-menu a li:hover {
    opacity: 0.5;
  }
  .drower-menu-wrap #drower-menu-top {
    margin-bottom: 20px;
  }
  .drower-menu-wrap #drower-menu-top .drower-menu-top-list {
    height: 64px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding-top: calc(32px - 0.9rem);
    box-sizing: border-box;
  }
  .drower-menu-wrap #drower-menu-top .drower_menu_pamph {
    color: #056229;
    background-color: #dae798;
  }
  .drower-menu-wrap #drower-menu-top .drower_menu_app {
    color: #5b5400;
    background-color: #fff899;
  }
  .drower-menu-wrap #drower-menu-bottom .drower-menu-bottom-list {
    background-color: #231815;
    text-align: center;
    padding: 16px 0;
    margin-bottom: 10px;
  }
  .drower-menu-wrap #drower-menu-bottom .drower-menu-bottom-list a {
    color: white;
    font-weight: bold;
  }
  .drower-menu-wrap #drower-menu-bottom .drower-menu-bottom-list a:hover {
    text-decoration: none;
  }
  #nav-tgl:checked ~ .toggle span {
    background-color: rgba(255, 255, 255, 0);
  }
  #nav-tgl:checked ~ .toggle span:before, #nav-tgl:checked ~ .toggle span:after {
    background-color: #e50001;
    bottom: -10px;
  }
  #nav-tgl:checked ~ .toggle span:before {
    transform: rotate(-45deg);
  }
  #nav-tgl:checked ~ .toggle span:after {
    transform: rotate(45deg);
  }
  #nav-tgl:checked ~ .drower-menu-wrap {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 560px) {
  .toggle,
  .drower-menu-wrap {
    display: none;
  }
}

body {
  background: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body header .header_top_pamph img {
  width: 100%;
  height: auto;
}

body header .header_top_h1 h1 {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 559px) {
  body header .header_top_h1 h1 {
    text-align: left;
    padding-left: 10px;
  }
  body header .header_top_h1 h1 img {
    width: calc( 100% - 138px);
    height: auto;
  }
}

@media (min-width: 560px) {
  body header .header_top_h1 h1 img {
    width: 231px;
    height: auto;
  }
}

@media (min-width: 960px) {
  body header .header_top_h1 h1 {
    padding-top: 20px;
  }
}

body header .header_top_form img {
  width: 100%;
  height: auto;
}

body header .header_bottom li {
  color: white;
  font-weight: bold;
  text-align: center;
  background-image: linear-gradient(to bottom, rgba(35, 24, 21, 0) 50%, #231815 50%);
  background-position: 0 100%;
  background-size: auto 200%;
  border: #231815 1px solid;
  box-sizing: border-box;
  transition: 0.3s;
}

body header .header_bottom li:hover, body header .header_bottom li:active {
  color: #231815;
  background-position: 0 0;
}

body header .header_bottom li a {
  color: white;
  padding-top: 10px;
  text-decoration: none;
  transition: 0.3s;
}

body header .header_bottom li a:hover, body header .header_bottom li a:active {
  color: #231815;
}

body .main_wrap .h3_kosyu {
  width: calc( 100% - 20px);
  max-width: 700px;
  padding: 0 10px 10px;
}

body .main_wrap .h3_orange {
  background: linear-gradient(0deg, #fbd3a2 0%, #fbd3a2 20px, rgba(255, 255, 255, 0) 20px, rgba(255, 255, 255, 0) 100%);
}

body .main_wrap .h3_note {
  color: #e50001;
  background: linear-gradient(0deg, #f7c9dd 0%, #f7c9dd 20px, rgba(255, 255, 255, 0) 20px, rgba(255, 255, 255, 0) 100%);
}

body .main_wrap .h3_pink {
  color: #e4007f;
  background: linear-gradient(0deg, #f7c9dd 0%, #f7c9dd 20px, rgba(255, 255, 255, 0) 20px, rgba(255, 255, 255, 0) 100%);
}

body .main_wrap .h3_yellow {
  color: #83503b;
  background: linear-gradient(0deg, #fffbc9 0%, #fffbc9 20px, rgba(255, 255, 255, 0) 20px, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 559px) {
  body .main_wrap .h3_left {
    text-align: left;
  }
}

body .main_wrap .circle {
  font-weight: bold;
  color: white;
  border-radius: 16px;
  padding: 7px 8px;
}

body .main_wrap .class_a {
  background-color: #ef857d;
}

body .main_wrap .class_b {
  background-color: #a9d06b;
}

body .main_wrap .class_c {
  background-color: #f4cf41;
}

body .main_wrap .class_d {
  background-color: #f19674;
}

body .main_wrap .class_e {
  background-color: #61c1be;
}

body .main_wrap .class_f {
  background-color: #54c3f1;
}

body .main_wrap .class_g {
  background-color: #8f82bc;
}

body .main_wrap .class_h {
  background-color: #ee87b4;
}

body .main_wrap .kanabi {
  background-color: #00a29a;
}

body .main_wrap .kyogei1 {
  background-color: #601886;
}

body .main_wrap .kiso1 {
  background-color: #ea5514;
}

body .main_wrap .sidai {
  background-color: #e83828;
}

body .main_wrap .kiso2 {
  background-color: #f8b62d;
}

body .main_wrap .bikou {
  background-color: #8fc31f;
}

body .main_wrap .kyogei2 {
  background-color: #601886;
}

body .main_wrap .one:before {
  background-position: 27px 0;
}

body .main_wrap .two:before {
  background-position: 54px 0;
}

body .main_wrap .three:before {
  background-position: 81px 0;
}

body .main_wrap .four:before {
  background-position: 108px 0;
}

body .main_wrap .five:before {
  background-position: 135px 0;
}

body .main_wrap .six:before {
  background-position: 162px 0;
}

body .main_wrap .seven:before {
  background-position: 189px 0;
}

body .main_wrap .eight:before {
  background-position: 216px 0;
}

body .main_wrap .nine:before {
  background-position: 243px 0;
}

body .main_wrap .ten:before {
  background-position: 270px 0;
}

body .main_wrap .eleven:before {
  background-position: 297px 0;
}

body .main_wrap .twelve:before {
  background-position: 324px 0;
}

body .main_wrap .online_button {
  background-color: #e6e6e6;
}

body .main_wrap .check_button {
  background-color: #f2ecb8;
}

body .main_wrap .waribiki_button {
  background-color: #e4007f;
}

body footer {
  background-color: #494342;
  color: white;
  font-size: 1.4rem;
}

body footer a {
  color: white;
  transition: 0.3s;
}

body footer a:hover, body footer a:active {
  color: #d0d0d0;
}

body footer #footer_bottom {
  background-color: #352f2d;
}

html {
  font-size: 62.5%;
}

html body {
  width: 100%;
  font-size: 1.6em;
}

html body footer,
html body .main_wrap {
  position: relative;
  /* overflow: hidden; */
}

html body header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: white;
  overflow: hidden;
}

@media (max-width: 559px) {
  html body header {
    padding-top: 10px;
    padding-bottom: 16px;
  }
}

@media (min-width: 560px) {
  html body header {
    padding-top: 20px;
  }
}

html body header #header_siryo {
  position: absolute;
  width: 44px;
  height: 44px;
}

html body header #header_siryo img {
  width: 100%;
  height: 100%;
}

@media (max-width: 559px) {
  html body header #header_siryo {
    top: 10px;
    right: calc(10px + 44px + 10px);
  }
}

@media (min-width: 560px) {
  html body header #header_siryo {
    top: 20px;
    right: 10px;
  }
}

html body header .header_top,
html body header .header_bottom {
  max-width: 960px;
  margin: 0 auto;
}

html body header .header_top {
  display: flex;
  flex-wrap: wrap;
}

html body header .header_top .header_top_div {
  text-align: center;
}

html body header .header_top .header_top_div .inner {
  font-weight: bold;
  box-sizing: border-box;
}

@media (max-width: 559px) {
  html body header .header_top .header_top_div {
    width: 100%;
    margin-bottom: 10px;
  }
  html body header .header_top .header_top_div .inner {
    width: 100%;
  }
  html body header .header_top .header_top_h1 {
    padding-top: 6px;
    text-align: left;
  }
  html body header .header_top .header_top_h1 .inner {
    width: 95%;
    height: auto;
  }
  html body header .header_top .header_top_pamph,
  html body header .header_top .header_top_form {
    display: none;
  }
}

@media (min-width: 560px) and (max-width: 1087px) {
  html body header .header_top {
    margin-bottom: 30px;
  }
  html body header .header_top .header_top_h1 {
    width: 100%;
    height: 64px;
    margin-bottom: 10px;
  }
  html body header .header_top .header_top_h1 .inner {
    width: 231px;
    height: 37px;
    margin: 0 auto;
  }
  html body header .header_top .header_top_pamph {
    width: 50%;
    height: 75px;
  }
  html body header .header_top .header_top_pamph .inner {
    width: 270px;
    height: auto;
    margin: 0 auto;
  }
  html body header .header_top .header_top_form {
    width: 50%;
    height: 75px;
  }
  html body header .header_top .header_top_form .inner {
    width: 270px;
    height: auto;
    margin: 0 auto;
  }
}

@media (min-width: 1088px) {
  html body header .header_top {
    margin-bottom: 30px;
  }
  html body header .header_top .header_top_h1 {
    order: 2;
    width: calc( 100% - 540px);
  }
  html body header .header_top .header_top_h1 .inner {
    width: 231px;
    height: 37px;
    margin: 0 auto;
  }
  html body header .header_top .header_top_pamph {
    order: 1;
  }
  html body header .header_top .header_top_pamph .inner {
    width: 270px;
    height: 75px;
    margin: 0 auto;
  }
  html body header .header_top .header_top_form {
    order: 3;
  }
  html body header .header_top .header_top_form .inner {
    width: 270px;
    height: 75px;
    margin: 0 auto;
  }
}

@media (max-width: 559px) {
  html body header .header_bottom {
    display: none;
  }
}

html body header .header_bottom ul {
  display: flex;
  flex-wrap: wrap;
}

html body header .header_bottom ul li {
  display: block;
  height: 36px;
}

@media (max-width: 559px) {
  html body header .header_bottom ul li.tab_dummy {
    /* tabのみ8つ枠が要るのでspは1つ非表示 */
    display: none;
  }
}

@media (min-width: 560px) and (max-width: 959px) {
  html body header .header_bottom ul li {
    width: 25%;
    width: calc(100% / 4);
    margin-bottom: 10px;
  }
}

@media (min-width: 960px) {
  html body header .header_bottom ul li {
    /* tabのみ8つ枠が要るのでpcは1つ非表示 */
    width: 14.2%;
    width: calc(100% / 7);
  }
  html body header .header_bottom ul li.tab_dummy {
    display: none;
  }
}

html body header .header_bottom ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

html body .main_wrap {
  width: 100%;
}

@media (max-width: 559px) {
  html body .main_wrap {
    margin-top: 118px;
    margin-bottom: 350px;
  }
  html body .main_wrap section,
  html body .main_wrap .section,
  html body .main_wrap #about_souki {
    padding-top: 118px;
    margin-top: -118px;
  }
  html body .main_wrap .img_pc {
    display: none;
  }
}

@media (min-width: 560px) {
  html body .main_wrap .img_mb {
    display: none;
  }
}

@media (min-width: 560px) and (max-width: 1087px) {
  html body .main_wrap {
    margin-top: 330px;
    margin-bottom: 300px;
  }
  html body .main_wrap section,
  html body .main_wrap .section,
  html body .main_wrap #about_souki {
    padding-top: 330px;
    margin-top: -330px;
  }
}

@media (min-width: 1088px) {
  html body .main_wrap {
    margin-top: 200px;
    margin-bottom: 255px;
  }
  html body .main_wrap section,
  html body .main_wrap .section,
  html body .main_wrap #about_souki {
    padding-top: 200px;
    margin-top: -200px;
  }
}

html body .main_wrap section {
  width: 100%;
}

@media (max-width: 559px) {
  html body .main_wrap section {
    margin-bottom: 80px;
  }
}

@media (min-width: 560px) {
  html body .main_wrap section {
    margin-bottom: 160px;
  }
}

html body .main_wrap h2 {
  width: 100%;
  max-width: 850px;
  height: 41px;
  font-size: 2.8rem;
  text-align: center;
  padding-top: 14px;
  margin: 0 auto 40px;
}

html body .main_wrap h2.h2_red {
  color: white;
  background-color: #e60012;
}

html body .main_wrap h2.h2_blue {
  color: white;
  background-color: #00a0e9;
}

html body .main_wrap h3 {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4;
  margin: 0 auto 30px;
}

html body .main_wrap h3.h3_mosi {
  display: block;
  width: 100%;
  max-width: 510px;
  height: 77px;
  padding-top: 40px;
}

html body .main_wrap h3.h3_kanabi {
  background: linear-gradient(0deg, #f8f8f8 0%, #f8f8f8 109px, #00a29a 109px, #00a29a 100%);
}

html body .main_wrap h3.h3_kiso1 {
  background: linear-gradient(0deg, #f8f8f8 0%, #f8f8f8 109px, #ea5514 109px, #ea5514 100%);
}

html body .main_wrap h3.h3_sidai {
  background: linear-gradient(0deg, #f8f8f8 0%, #f8f8f8 109px, #e83828 109px, #e83828 100%);
}

html body .main_wrap h3.h3_kyogei {
  background: linear-gradient(0deg, #f8f8f8 0%, #f8f8f8 109px, #601886 109px, #601886 100%);
}

html body .main_wrap h3.h3_kiso2 {
  background: linear-gradient(0deg, #f8f8f8 0%, #f8f8f8 109px, #f8b62d 109px, #f8b62d 100%);
}

html body .main_wrap h3.h3_bikou {
  background: linear-gradient(0deg, #f8f8f8 0%, #f8f8f8 109px, #8fc31f 109px, #8fc31f 100%);
}

html body .main_wrap h4 {
  text-align: center;
  font-size: 2.1rem;
  margin: 0 auto 20px;
}

html body .main_wrap h4.h4_souki {
  width: calc( 100% - 20px);
  max-width: 620px;
  background-color: #e62e8b;
  color: white;
  padding: 10px 0;
}

html body .main_wrap h4.order_h4 {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 24px;
}

html body .main_wrap h4.h4_stayset {
  width: calc( 100% - 20px);
  max-width: 470px;
  height: 50px;
  background-color: #fffcd7;
  font-size: 2.2rem;
  padding: 35px 10px 0;
  margin-bottom: 0px;
}

@media (max-width: 559px) {
  html body .main_wrap h4.h4_stayset {
    height: 75px;
  }
}

html body .main_wrap .hr_h4 {
  width: 100%;
  max-width: 490px;
  border: 0;
  margin: 0 auto 20px;
}

html body .main_wrap .hr_h4_blue {
  border-bottom: #00a0e9 8px solid;
}

html body .main_wrap .hr_h4_red {
  border-bottom: #e60012 8px solid;
}

html body .main_wrap .hr_h4_green {
  border-bottom: #8bc448 8px solid;
}

html body .main_wrap h5 {
  text-align: center;
  margin: 0 auto 20px;
}

html body .main_wrap h5.h5_stayset {
  font-size: 2.5rem;
  font-weight: bold;
}

html body .main_wrap h5.h5_stayset span {
  font-size: 1.9rem;
  color: #b6b6b6;
}

html body .main_wrap .section {
  width: 100%;
  margin-bottom: 80px;
}

html body .main_wrap .img_wrap {
  width: calc( 100% - 20px);
  max-width: 600px;
  margin: 0 auto 20px;
}

html body .main_wrap .img_wrap img {
  width: 100%;
  height: auto;
}

html body .main_wrap .movie_wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
}

html body .main_wrap .movie_wrap .playmark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 25%;
  margin: 0 auto;
}

html body .main_wrap .flex_wrap {
  display: flex;
  flex-wrap: wrap;
}

html body .main_wrap .download_button_wrap {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 20px);
}

html body .main_wrap .download_button_wrap a {
  width: 226px;
  height: 50px;
}

html body .main_wrap .download_button_wrap a img {
  width: 100%;
  height: auto;
}

@media (max-width: 559px) {
  html body .main_wrap .download_button_wrap a {
    margin: 0 auto;
  }
}

html body .main_wrap .order_download_button {
  max-width: 482px;
  margin: 0 auto 45px;
}

@media (max-width: 559px) {
  html body .main_wrap .order_download_button a.order_download_button_1 {
    margin-bottom: 10px;
  }
}

@media (min-width: 560px) {
  html body .main_wrap .order_download_button .order_download_button_1 {
    margin-right: 30px;
  }
}

html body .main_wrap .stayset_download_button {
  max-width: 718px;
  margin: 0 auto 20px;
}

@media (max-width: 559px) {
  html body .main_wrap .stayset_download_button a {
    margin: 0 auto;
  }
  html body .main_wrap .stayset_download_button a.order_download_button_1 {
    margin-bottom: 10px;
  }
}

@media (min-width: 560px) {
  html body .main_wrap .stayset_download_button .order_download_button_1 {
    margin-right: 20px;
  }
}

html body .main_wrap .schedule_download_button {
  max-width: 226px;
  margin: 0 auto 20px;
}

@media (max-width: 559px) {
  html body .main_wrap .schedule_download_button a {
    margin: 0 auto;
  }
}

html body .main_wrap .mosi_download_button {
  max-width: 718px;
  margin: 0 auto 40px;
}

@media (max-width: 559px) {
  html body .main_wrap .mosi_download_button a {
    margin: 0 auto;
  }
  html body .main_wrap .mosi_download_button a.order_download_button_1 {
    margin-bottom: 10px;
  }
}

@media (min-width: 560px) {
  html body .main_wrap .mosi_download_button .order_download_button_1 {
    margin-right: 20px;
  }
}

html body .main_wrap .class_link_wrap {
  width: calc( 100% - 20px);
  max-width: 440px;
  margin: 0 auto 30px;
}

@media (min-width: 960px) {
  html body .main_wrap .class_link_wrap {
    max-width: 700px;
  }
}

html body .main_wrap .class_link_wrap .item1 {
  text-align: center;
  width: 36px;
  height: 36px;
  margin-top: 10px;
  margin-right: 20px;
}

html body .main_wrap .class_link_wrap .item2 {
  width: calc( 100% - 56px);
  font-size: 2.1rem;
  font-weight: bold;
  margin-top: 10px;
}

@media (min-width: 960px) {
  html body .main_wrap .class_link_wrap .item2 {
    width: calc( 100% - 288px);
    margin-right: 20px;
  }
}

html body .main_wrap .class_link_wrap .item3 {
  width: 212px;
  margin: 0 auto;
}

html body .main_wrap .class_link_wrap .item31,
html body .main_wrap .class_link_wrap .item32 {
  width: 96px;
  height: 36px;
}

html body .main_wrap .class_link_wrap .item31 img,
html body .main_wrap .class_link_wrap .item32 img {
  width: 100%;
  height: auto;
}

html body .main_wrap .class_link_wrap .item31 {
  margin-right: 20px;
}

html body .main_wrap .event_link_wrap {
  width: calc( 100% - 20px);
  max-width: 420px;
  margin: 0 auto 30px;
}

@media (min-width: 960px) {
  html body .main_wrap .event_link_wrap {
    max-width: 660px;
  }
}

html body .main_wrap .event_link_wrap .item1 {
  text-align: center;
  width: 20px;
  height: 20px;
  margin-right: 20px;
}

html body .main_wrap .event_link_wrap .item2 {
  width: calc( 100% - 40px);
  font-size: 2.1rem;
  font-weight: bold;
}

@media (min-width: 960px) {
  html body .main_wrap .event_link_wrap .item2 {
    width: calc( 100% - 292px);
    margin-right: 20px;
  }
}

html body .main_wrap .event_link_wrap .item3 {
  width: 232px;
  font-size: 2.1rem;
  font-weight: bold;
  margin-left: 40px;
}

@media (min-width: 960px) {
  html body .main_wrap .event_link_wrap .item3 {
    margin: 0 auto;
  }
}

html body .main_wrap a.event_link:hover {
  text-decoration: none !important;
}

html body .main_wrap .qanda_wrap {
  width: 100%;
  max-width: 460px;
  margin: 0 auto 40px;
}

html body .main_wrap .qanda_wrap .question {
  width: calc( 100% - 20px);
  background-color: #fffddf;
  padding: 10px;
  margin-bottom: 20px;
}

html body .main_wrap .qanda_wrap .answer {
  width: 100%;
  color: #e4007f;
}

html body .main_wrap .h3_wrap {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

html body .main_wrap .h3_wrap .h3_wrap_up {
  height: 50px;
  text-align: center;
}

html body .main_wrap .h3_wrap .h3_wrap_up img {
  width: 50px;
  height: 50px;
}

html body .main_wrap .h3_wrap .h3_wrap_up_a {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 21px, #ef857d 21px, #ef857d 29px, rgba(255, 255, 255, 0) 29px, rgba(255, 255, 255, 0) 100%);
}

html body .main_wrap .h3_wrap .h3_wrap_up_b {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 21px, #a9d06b 21px, #a9d06b 29px, rgba(255, 255, 255, 0) 29px, rgba(255, 255, 255, 0) 100%);
}

html body .main_wrap .h3_wrap .h3_wrap_up_c {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 21px, #f4cf41 21px, #f4cf41 29px, rgba(255, 255, 255, 0) 29px, rgba(255, 255, 255, 0) 100%);
}

html body .main_wrap .h3_wrap .h3_wrap_up_d {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 21px, #f19674 21px, #f19674 29px, rgba(255, 255, 255, 0) 29px, rgba(255, 255, 255, 0) 100%);
}

html body .main_wrap .h3_wrap .h3_wrap_up_e {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 21px, #61c1be 21px, #61c1be 29px, rgba(255, 255, 255, 0) 29px, rgba(255, 255, 255, 0) 100%);
}

html body .main_wrap .h3_wrap .h3_wrap_up_f {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 21px, #54c3f1 21px, #54c3f1 29px, rgba(255, 255, 255, 0) 29px, rgba(255, 255, 255, 0) 100%);
}

html body .main_wrap .h3_wrap .h3_wrap_up_g {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 21px, #8f82bc 21px, #8f82bc 29px, rgba(255, 255, 255, 0) 29px, rgba(255, 255, 255, 0) 100%);
}

html body .main_wrap .h3_wrap .h3_wrap_up_h {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 21px, #ee87b4 21px, #ee87b4 29px, rgba(255, 255, 255, 0) 29px, rgba(255, 255, 255, 0) 100%);
}

html body .main_wrap .school_badge {
  margin: 0 auto 30px;
}

html body .main_wrap .school_badge .span_left {
  margin-right: 10px;
}

html body .main_wrap .school_badge .badge_nana {
  color: #0075c2;
}

html body .main_wrap .school_badge .badge_kita {
  color: #e85298;
}

html body .main_wrap .school_badge .badge_hiko {
  color: #6fba2c;
}

html body .main_wrap .school_badge .badge_online {
  color: #ef845d;
}

html body .main_wrap .school_badge_short {
  width: 230px;
}

html body .main_wrap .school_badge_long {
  width: 290px;
}

html body .main_wrap .taisyo_wrap {
  width: calc(100% - 20px);
  max-width: 420px;
  background-color: #fdeff5;
  line-height: 1.2;
  padding: 20px 10px;
  margin: 0 auto 30px;
}

html body .main_wrap .calender_wrap {
  margin: 0 auto 20px;
}

html body .main_wrap .calender_wrap .item {
  width: 270px;
  height: auto;
  margin-bottom: 10px;
}

html body .main_wrap .calender_wrap .item img {
  width: 100%;
  height: 100%;
}

html body .main_wrap .calender_wrap1 {
  width: 270px;
}

html body .main_wrap .calender_wrap3 {
  width: 270px;
}

@media (min-width: 960px) {
  html body .main_wrap .calender_wrap3 {
    width: 830px;
  }
  html body .main_wrap .calender_wrap3 .item1,
  html body .main_wrap .calender_wrap3 .item2 {
    margin-right: 10px;
  }
}

html body .main_wrap .calender_wrap4 {
  width: 270px;
}

@media (min-width: 960px) {
  html body .main_wrap .calender_wrap4 {
    width: 550px;
  }
  html body .main_wrap .calender_wrap4 .item1,
  html body .main_wrap .calender_wrap4 .item3 {
    margin-right: 10px;
  }
}

html body .main_wrap .ninzu_wrap {
  width: calc( 100% - 20px);
  max-width: 360px;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  margin: 0 auto 20px;
  background-color: #fff791;
}

html body .main_wrap .ninzu_wrap .gakuseikaikan {
  color: #0075c2;
}

html body .main_wrap .ninzu_wrap .sunroot {
  color: #59b047;
}

html body .main_wrap .ninzu_wrap .span_left {
  margin-right: 10px;
}

html body .main_wrap .kosyu_badge {
  text-align: center;
  font-weight: bold;
  margin: 0 auto 20px;
}

html body .main_wrap .kosyu_badge .span_left {
  margin-right: 10px;
}

html body .main_wrap .kosyu_badge .badge_jitsugi {
  color: #1d2088;
}

html body .main_wrap .kosyu_badge .badge_waribiki {
  color: #e4007f;
}

html body .main_wrap .kosyu_badge_short {
  width: 230px;
}

html body .main_wrap .kosyu_badge_long {
  width: 290px;
}

html body .main_wrap .saigen_wrap {
  width: 270px;
  margin: 0 auto 20px;
}

@media (min-width: 960px) {
  html body .main_wrap .saigen_wrap {
    width: 100%;
    max-width: 850px;
  }
}

html body .main_wrap .saigen_wrap .img_wrap {
  width: 270px;
}

html body .main_wrap p {
  width: calc(100% - 20px);
  max-width: 440px;
  line-height: 1.5;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

html body .main_wrap p.souki_txt {
  margin-bottom: 20px;
}

html body .main_wrap p.explain_txt {
  margin-bottom: 40px;
}

html body .main_wrap p.answer_txt {
  margin-bottom: 20px;
}

html body .main_wrap p.jokyo_link {
  max-width: 300px;
  margin-bottom: 30px;
}

html body .main_wrap p.datetime_txt {
  max-width: 300px;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

html body .main_wrap p.mosi_day {
  max-width: 550px;
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

html body .main_wrap p.mosi_number {
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

html body .main_wrap p.mosi_place {
  text-align: center;
  margin-bottom: 20px;
}

html body .main_wrap .order_note_lists {
  width: calc(100% - 20px);
  max-width: 460px;
  margin: 0 auto;
}

html body .main_wrap .order_note_list {
  line-height: 1.5;
  margin: 0 0 45px 45px;
}

html body .main_wrap .order_note_list p {
  margin-bottom: 22px;
}

html body .main_wrap .order_note_list:before {
  display: block;
  float: left;
  width: 27px;
  height: 27px;
  content: " ";
  background-image: url("../img/list_head_num.png");
  background-size: 1200% 100%;
  margin-left: -45px;
}

html body .main_wrap .link_button {
  display: block;
  width: calc( 100% - 20px);
  max-width: 620px;
  height: 50px;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 559px) {
  html body .main_wrap .link_button img {
    width: 320px;
    height: 50px;
  }
}

@media (min-width: 560px) {
  html body .main_wrap .link_button img {
    width: 560px;
    height: 50px;
  }
}

html body .main_wrap .link_button_note {
  display: block;
  width: calc( 100% - 20px);
  max-width: 600px;
  height: 41px;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  color: black;
  background-color: #fff89b;
  padding-top: 16px;
  margin: 0 auto 40px;
}

html body .main_wrap .link_button_note:hover {
  text-decoration: none;
}

html body .main_wrap .link_button_pagetop {
  display: block;
  width: 162px;
  height: 36px;
  margin: 0 auto;
}

html body .main_wrap .link_button_pagetop img {
  width: 100%;
  height: auto;
}

html body footer {
  padding: 10px 0;
}

html body footer #footer_bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.5;
  padding: 60px 0;
}

html body footer #footer_bottom #footer_bottom_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 30px;
}

@media (min-width: 960px) {
  html body footer #footer_bottom #footer_bottom_wrap {
    width: 98%;
    max-width: 941px;
    padding-left: 2%;
  }
  html body footer #footer_bottom #footer_bottom_wrap #footer_bottom_inner_inq {
    width: 80%;
  }
  html body footer #footer_bottom #footer_bottom_wrap #footer_bottom_inner_siryo {
    width: 20%;
  }
  html body footer #footer_bottom #footer_bottom_wrap .footer_bottom_inner {
    text-align: left;
  }
}

@media (min-width: 560px) and (max-width: 959px) {
  html body footer #footer_bottom #footer_bottom_wrap .footer_bottom_inner {
    width: 35%;
    margin-left: 15%;
    text-align: left;
  }
}

@media (max-width: 559px) {
  html body footer #footer_bottom #footer_bottom_wrap .footer_bottom_inner {
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
}

.details {
	transition: .3s;
	overflow: hidden;
	margin-top: -10px;
	padding-bottom: 20px;
	&:last-of-type {
		margin-bottom: 0;
	}
}
.details[open] {
	margin-top: 0;
	padding-bottom: 10px;
} 
.details-summary1 {
	
	padding: 15px;
    transition: .3s;
	transform: translateY(10px);
	background-color: #E4007F;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	&:hover {
		cursor: pointer;
	}
}
.details-summary1::-webkit-details-marker {
	display: none;
}
.details-summary2 {
	
	padding: 15px;
    transition: .3s;
	transform: translateY(10px);
	background-color: #00a5a0;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	&:hover {
		cursor: pointer;
	}
}
.details-summary2::-webkit-details-marker {
	display: none;
}
.details-summary3 {
	
	padding: 15px;
    transition: .3s;
	transform: translateY(10px);
	background-color: #bde300;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	&:hover {
		cursor: pointer;
	}
}
.details-summary3::-webkit-details-marker {
	display: none;
}
.details-summary4 {
	
	padding: 15px;
    transition: .3s;
	transform: translateY(10px);
	background-color: #0000ff;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	&:hover {
		cursor: pointer;
	}
}
.details-summary4::-webkit-details-marker {
	display: none;
}
.details-summary5 {
	
	padding: 15px;
    transition: .3s;
	transform: translateY(10px);
	background-color: #800080;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	&:hover {
		cursor: pointer;
	}
}
.details-summary5::-webkit-details-marker {
	display: none;
}
.details[open] .details-summary {
	transform: translateY(0);
}
.details-content {
	padding: 20px;
	background-color: #fff;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
}

.top-banner{
	display: flex;
	flex-wrap:wrap;
}
.top-banner li {
	width: calc(100%/3);/*←画像を横に並べる数*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.top-banner li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
	border:solid 1px #ffffff; /*←画像を1pxのグレーの枠線で囲む指定の場合*/
}