@charset "utf-8";


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

レイアウト

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/* header ////////////////////////////////////////////////////////////////////////////////////////////*/
#header-wrapper {
  width: 100%;
  height: 110px;
  background: #f8ecd8;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

#header-wrapper::after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  background: #f8ecd8;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 110px;
  z-index: 1000;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#26000000', endColorstr='#00000000', GradientType=0);
}

#header-wrapper>* {
  z-index: 1000;
}

#header-wrapper .header-logo {
  width: 260px;
  height: 60px;
  position: absolute;
  left: 50px;
  /* top: 15px; */
  z-index: 1001;
}

#header-wrapper .header-logo svg {
  position: absolute;
  left: 0;
  top: 0;
}

#header-wrapper #bnr-point {
  width: 200px;
  height: 200px;
  display: block;
  position: absolute;
  bottom: -230px;
  right: 50px;
  border-radius: 125px;
  background: #f8ecd8;
  overflow: hidden;
  z-index: 100;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.21, 1.3);
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

#header-wrapper #bnr-point img {
  width: 70%;
  height: auto;
  margin-bottom: 10px;
  margin-top: 20%;
  position: relative;
}

#header-wrapper #bnr-point span {
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

#header-wrapper #bnr-point:hover {
  text-decoration: none;
}

#header-wrapper #bnr-point::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  border-radius: 18px;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: -moz-linear-gradient(45deg, #EEAECC, #EA5150, #FFBD8A, #7E549F, #4F86BB, #6DBA8D, #EDC31C, #E48F15);
  background: -webkit-linear-gradient(45deg, #EEAECC, #EA5150, #FFBD8A, #7E549F, #4F86BB, #6DBA8D, #EDC31C, #E48F15);
  background: linear-gradient(45deg, #EEAECC, #EA5150, #FFBD8A, #7E549F, #4F86BB, #6DBA8D, #EDC31C, #E48F15);
  background-size: 800% 800%;
  animation: mainbtn 20s linear infinite;
}

#header-wrapper #bnr-point::after {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  border-radius: 18px;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../img/common/arrow.svg) no-repeat center;
  background-size: 8px;
}

@media screen and (max-width: 1100px) {
  #header-wrapper {
    display: none;
  }
}

@media screen and (min-width: 901px) {
  #bnr-point {
    display: none;
    opacity: 0;
  }

  #header-wrapper #bnr-point::before,
  #header-wrapper #bnr-point::after {}

  #header-wrapper #bnr-point:hover::before,
  #header-wrapper #bnr-point:hover::after {}
}

@media screen and (max-width: 1200px) {
  #header-wrapper #bnr-point {
    width: 160px;
    height: 160px;
    margin-top: 16%;
  }

  #header-wrapper #bnr-point span {
    display: block;
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 0.7rem;
  }

  #header-wrapper #bnr-point img {
    margin-bottom: 0;
  }

  #header-wrapper #bnr-point::before {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    bottom: 10%;
    left: 50%;
  }

  #header-wrapper #bnr-point::after {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    bottom: 10%;
    background: url(../img/common/arrow.svg) no-repeat center;
    background-size: 6px;
  }

}

@media screen and (max-width: 900px) {
  .drawer #header-wrapper {
    position: fixed;
    left: 0;
    top: -2px;
  }

  .drawer #header-wrapper::after {
    top: 60px;
  }

  .drawer #header-wrapper::before {
    content: "";
    width: 100%;
    height: 60px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #FFFFFF;
    z-index: 1001;
  }

  .drawer #header-wrapper #bnr-point {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    bottom: inherit;
    right: inherit;
    border-radius: 0;
    background: #FFF;
    z-index: 100;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    margin-top: 60px;
    padding: 10px 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  .drawer #page {
    position: absolute;
    top: 60px;
    left: 0;
  }

  #header-wrapper::after {
    top: 60px;
  }

  #header-wrapper #bnr-point img {
    width: 80%;
    height: auto;
    margin-bottom: 5px;
    margin-top: 5px;
  }

  #header-wrapper #bnr-point span {
    display: block;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
  }

  #header-wrapper #bnr-point:hover {
    text-decoration: none;
  }

  #header-wrapper #bnr-point::before,
  #header-wrapper #bnr-point::after {
    display: none;
  }

}

#header-wrapper #globalNav>ul {
  display: block;
  /* width: 700px; */
  margin: 0 auto 0 30%;
  padding-top: 30px;
}

#header-wrapper #globalNav>ul>li {
  display: inline-block;
  height: 80px;
  margin: 0 30px;
}

#header-wrapper #globalNav>ul>li:last-child {
  margin-right: 0;
}

#header-wrapper #globalNav>ul>li a {
  position: relative;
  z-index: 11;
}

#header-wrapper #globalNav>ul>li.nav-home>a {
  background: url(../img/common/icon-home.png) no-repeat center -1px;
  background-size: 60px;
}

#header-wrapper #globalNav>ul>li.nav-news>a {
  background: url(../img/common/icon-news.png) no-repeat center -1px;
  background-size: 60px;
}

#header-wrapper #globalNav>ul>li.nav-overview>a {
  background: url(../img/common/icon-overview.png) no-repeat center -1px;
  background-size: 60px;
}

#header-wrapper #globalNav>ul>li.nav-content>a {
  background: url(../img/common/icon-content.png) no-repeat center -1px;
  background-size: 60px;
}

#header-wrapper #globalNav>ul>li.nav-admission>a {
  background: url(../img/common/icon-admission.png) no-repeat center -1px;
  background-size: 60px;
}

#header-wrapper #globalNav>ul>li.nav-recruite>a {
  background: url(../img/common/icon-recruite.png) no-repeat center -1px;
  background-size: 60px;
}

#header-wrapper #globalNav>ul>li>a {
  display: block;
  padding: 60px 6px 10px;
}

#header-wrapper #globalNav>ul>li>a span {
  font-weight: 500;
  font-family: 'kiwi Maru', serif;
  font-size: 1.4rem;
}



@media screen and (max-width: 1200px) {

  #header-wrapper #globalNav>ul {
    display: block;
    width: 600px;
    margin: 0 auto;
    padding-top: 30px;
  }

  #header-wrapper #globalNav>ul>li {
    margin-right: 10px;
  }

  #header-wrapper #globalNav>ul>li>a {
    display: block;
    padding: 40px 10px 0;
  }

  #header-wrapper #globalNav>ul>li>a span {
    font-weight: 500;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 1100px) {

  #header-wrapper #globalNav>ul {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
  }

  #header-wrapper #globalNav>ul>li {
    margin-right: 10px;
  }

  #header-wrapper #globalNav>ul>li>a {
    display: block;
    padding: 40px 0 0;
  }

  #header-wrapper #globalNav>ul>li>a span {
    font-weight: 500;
    font-size: 0.8rem;
  }

  #header-wrapper #globalNav ul li ul li {
    font-size: 0.8rem;
  }
}


/*navカレント表示*/
.template #header-wrapper #globalNav ul li.nav-home ul {
  height: 50px;
  -webkit-transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  z-index: 0;
}

.about #header-wrapper #globalNav ul li.nav-home ul {
  height: 50px;
  -webkit-transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  z-index: 0;
}

.kyouiku #header-wrapper #globalNav ul li.nav-news ul {
  height: 50px;
  -webkit-transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  z-index: 0;
}

.annai #header-wrapper #globalNav ul li.nav-overview ul {
  height: 50px;
  -webkit-transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  z-index: 0;
}

.shien #header-wrapper #globalNav ul li.nav-content ul {
  height: 50px;
  -webkit-transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  z-index: 0;
}

.shien #header-wrapper #globalNav ul li.nav-admission ul {
  height: 50px;
  -webkit-transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  z-index: 0;
}

.soudan #header-wrapper #globalNav ul li.nav-recruite ul {
  height: 50px;
  -webkit-transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  z-index: 0;
}

/*遷移中*/
body.transition #header-wrapper #globalNav ul li ul,
body.transition.template #header-wrapper #globalNav ul li.nav-home ul,
body.transition.about #header-wrapper #globalNav ul li.nav-home ul,
body.transition.kyouiku #header-wrapper #globalNav ul li.nav-news ul,
body.transition.annai #header-wrapper #globalNav ul li.nav-overview ul,
body.transition.shien #header-wrapper #globalNav ul li.nav-content ul,
body.transition.shien #header-wrapper #globalNav ul li.nav-admission ul,
body.transition.soudan #header-wrapper #globalNav ul li.nav-recruite ul {
  height: 0 !important;
  -webkit-transition: all .3s cubic-bezier(0, 0, 0.2, 1);
  transition: all .3s cubic-bezier(0, 0, 0.2, 1);
}

/*subnav*/
/* #header-wrapper #globalNav ul li ul {
  display: block;
  width: 300px;
  height: 0px;
  position: absolute;
  margin: 0 auto;
  top: 110px;
  background: #666;
  font-family: 'Kiwi Maru', serif;
  font-size: 1.3rem;
  -webkit-transition: all .3s 0.3s;
  transition: all .3s linear 0.3s;
  z-index: 1;
} */

/* #header-wrapper #globalNav ul li ul li {
  display: inline-block;
} */

/* #header-wrapper #globalNav ul li ul li a {
  color: #FFFFFF;
  display: block;
  line-height: 50px;
  padding: 0 15px;
} */

/* サブメニューの初期設定（非表示） */
#globalNav ul li ul.submenu {
  display: none;
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0 -50px;
  width: 300px;
  top: 100%;
}

/* リストアイテムのスタイル */
#globalNav ul li ul.submenu li {
  display: block;
  width: 300px;
  height: auto;
  font-family: 'Kiwi Maru', serif;
  font-size: 1.3rem;
  -webkit-transition: all .3s 0.3s;
  transition: all .3s linear 0.3s;
}


/* リストアイテムのリンクのスタイル */
#globalNav ul li ul.submenu li a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  height: 100%;
}

/* ホバー時にサブメニューを表示 */
#globalNav ul li:hover ul.submenu {
  display: block;
}

/* サブメニューのホバー時のスタイル */
#globalNav ul li ul.submenu li a:hover {
  /* background-color: #444; */
}

@media screen and (min-width: 901px) {
  #header-wrapper #globalNav ul li:hover ul {
    height: 50px;
    z-index: 10;
    -webkit-transition: all .3s cubic-bezier(0, 0, 0.2, 1);
    transition: all .3s cubic-bezier(0, 0, 0.2, 1) 0.3s;
  }

  #header-wrapper #globalNav ul li>a span {
    transition: all ease 0.1s;
  }

  #header-wrapper #globalNav ul li:hover>a {
    background-size: 32px;
    background-position: center 6px;
  }

  #header-wrapper #globalNav ul li.nav-home:hover>a span {
    color: #F08E4C;
  }

  #header-wrapper #globalNav ul li.nav-news:hover>a span {
    color: #47A0A0;
  }

  #header-wrapper #globalNav ul li.nav-overview:hover>a span {
    color: #E48F15;
  }

  #header-wrapper #globalNav ul li.nav-content:hover>a span {
    color: #7E549F;
  }

  #header-wrapper #globalNav ul li.nav-admission:hover>a span {
    color: #5eae7a;
  }

  #header-wrapper #globalNav ul li.nav-recruite:hover>a span {
    color: #9DA3A6;
  }

  #header-wrapper #globalNav ul li ul li a span {
    position: relative;
    padding: 0 10px;
  }

  #header-wrapper #globalNav ul li ul li a span::after {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -5px;
    background: #FFF;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.3s ease-in;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  #header-wrapper #globalNav ul li ul li a:hover span::after {
    content: "";
    width: 110%;
  }

}

#header-wrapper #globalNav>ul>li.nav-home ul {
  background: -moz-linear-gradient(left, #EEAECC, #F08E4C);
  background: -webkit-linear-gradient(left, #EEAECC, #F08E4C);
  background: linear-gradient(to right, #EEAECC, #F08E4C);
  height: auto;
}

#header-wrapper #globalNav>ul>li.nav-news ul {
  background: -moz-linear-gradient(left, #6DBA8D, #47A0A0);
  background: -webkit-linear-gradient(left, #6DBA8D, #47A0A0);
  background: linear-gradient(to right, #6DBA8D, #47A0A0);
  height: auto;
}

#header-wrapper #globalNav>ul>li.nav-overview ul {
  background: -moz-linear-gradient(left, #E48F15, #EDC31C);
  background: -webkit-linear-gradient(left, #E48F15, #EDC31C);
  background: linear-gradient(to right, #E48F15, #EDC31C);
  height: auto;
}

#header-wrapper #globalNav>ul>li.nav-content ul {
  background: -moz-linear-gradient(left, #b67937, #ffa74d);
  background: -webkit-linear-gradient(left, #b67937, #ffa74d);
  background: linear-gradient(to right, #b67937, #ffa74d);
  height: auto;
}

#header-wrapper #globalNav>ul>li.nav-admission ul {
  background: -moz-linear-gradient(left, #b5df4e, #d6de77);
  background: -webkit-linear-gradient(left, #b5df4e, #d6de77);
  background: linear-gradient(to right, #b5df4e, #d6de77);
  height: auto;
}

#header-wrapper #globalNav>ul>li.nav-recruite ul {
  background: -moz-linear-gradient(left, #BBBDBE, #9DA3A6);
  background: -webkit-linear-gradient(left, #BBBDBE, #9DA3A6);
  background: linear-gradient(to right, #BBBDBE, #9DA3A6);
  height: auto;
}

.btn.color-etc {
  background: -moz-linear-gradient(left, #333333, #111111);
  background: -webkit-linear-gradient(left, #333333, #111111);
  background: linear-gradient(to right, #333333, #111111);
}

.btn.color-contact {
  background: -moz-linear-gradient(left, #FFBD8A, #EA5150, #FFBD8A, #EA5150, #FFBD8A);
  background: -webkit-linear-gradient(left, #FFBD8A, #EA5150, #FFBD8A, #EA5150, #FFBD8A);
  background: linear-gradient(to right, #FFBD8A, #EA5150, #FFBD8A, #EA5150, #FFBD8A);
  background-size: 400%;
}


.btn.color-contact:hover,
a:hover .btn.color-contact {
  animation: grahover 5s linear infinite;
}

#header-wrapper #globalNav a:hover {
  text-decoration: none;
}




@media screen and (max-width: 900px) {
  #header-wrapper {
    height: 60px;
    top: -2px;
  }

  #header-wrapper #globalNav {
    display: none;
    width: 50%;
    position: absolute;
    top: 100%;
    right: 0;
    background: #FFF;
  }

  #header-wrapper #globalNav ul {
    display: block;
    padding-top: 0;
    width: auto;
    margin-bottom: 20px;
  }

  #header-wrapper #globalNav ul li {
    display: block;
    border-bottom: 1px solid #ccc;
    height: auto;
    margin-right: 0;
  }

  #header-wrapper #globalNav ul li a {
    padding: 35px 10px 10px 10px;
  }

  #header-wrapper #globalNav.open {
    display: block;
  }

  #header-wrapper #globalNav .btn.color-contact {
    width: 80%;
    position: relative;
    right: inherit;
    top: inherit;
    margin-bottom: 20px;
  }


  /* #header-wrapper #globalNav ul li ul {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    left: inherit;
    top: inherit;
    overflow: hidden;
    margin-bottom: 0;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
  } */

  #header-wrapper #globalNav ul li ul li {
    display: block;
    border-bottom: 1px solid #fff;
  }

  #header-wrapper #globalNav ul li ul li:last-child {
    border-bottom: none;
  }

  #header-wrapper #globalNav ul li ul li a {
    color: #FFFFFF;
    display: block;
    line-height: 1em;
    padding: 15px 20px;
  }

  .template #header-wrapper #globalNav ul li.nav-home ul,
  .about #header-wrapper #globalNav ul li.nav-home ul,
  .kyouiku #header-wrapper #globalNav ul li.nav-news ul,
  .annai #header-wrapper #globalNav ul li.nav-overview ul,
  .shien #header-wrapper #globalNav ul li.nav-content ul,
  .shien #header-wrapper #globalNav ul li.nav-admission ul,
  .soudan #header-wrapper #globalNav ul li.nav-recruite ul {
    height: auto;
  }


}


.sp-header {
  font-family: 'Kiwi Maru', serif;
  font-size: 1.4rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.sp-header-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #f3cb8f;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp-header-menu li {
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 5px;
  list-style: none;
  text-align: center;

}

.sp-header-menu a {
  text-decoration: none;
  color: white;
}

.sp-header-menu a span {
  display: block;
  font-size: 1.4rem;
}

.sp-header-icon img {
  height: 40px;
}

/* PCでは非表示にする */
@media(min-width: 1101px) {
  .sp-header {
    display: none;
  }
}

@media(max-width: 500px) {
  .sp-header-menu a span {
    display: block;
    font-size: 1.2rem;
  }
}

@media(max-width: 700px) {
  .sp-header-icon img {
    height: 38px;
  }
}



/* drower ////////////////////////////////////////////////////////////////////////////////////////////*/


#infoNav ul li {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}

#infoNav ul li:first-child {
  width: 2em;
  text-align: center;
  font-weight: bold;
  padding: 0 0 0 0;
}

#infoNav ul li:first-child a {
  line-height: 1.2em;
  padding: 40px 0.5em 20px;
}

#infoNav ul li:first-child a:hover {
  text-decoration: none;
}

#infoNav ul li a {
  display: block;
  line-height: 0;
  padding: 5px 0;
}

#infoNav ul li #newsIcon {
  position: absolute;
  left: 0;
  top: 10px;
}


#header-wrapper #globalNav .btn.color-contact {
  width: 200px;
  position: absolute;
  right: 50px;
  top: 35px;
  padding: 0;
  line-height: 50px;
}

@media screen and (min-width: 901px) {
  #drowerWrap {
    position: relative;
  }

  #header-wrapper .telwrap {
    display: none;
  }

  #infoNav {
    position: fixed;
    left: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }


}

@media screen and (max-width: 1200px) {

  /*pcのみ*/
  .pc {
    display: none;
  }


  #header-wrapper .header-logo {
    width: 220px;
    height: 45px;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1001;
    text-align: left;
  }

  #header-wrapper .header-logo img {
    width: 100%;
    height: auto;
  }

  #header-wrapper #globalNav .btn.color-contact {
    width: 150px;
    height: 45px;
    right: 20px;
  }

  #infoNav {
    left: 20px;
  }
}

@media screen and (max-width: 1100px) {
  #header-wrapper .header-logo {
    top: 21px;
    left: 20px;
    z-index: 1001;
    text-align: left;
  }

  #header-wrapper #globalNav .btn.color-contact {
    width: 150px;
    height: 45px;
    right: 20px;
  }
}

@media screen and (max-width: 900px) {
  #header-wrapper .header-logo {
    width: 100px;
    height: 30px;
    position: absolute;
    left: 10px;
    top: 5px;
    z-index: 1001;
    text-align: left;
  }

  #header-wrapper .header-logo img {
    height: 50px;
    width: auto;
  }

  #header-wrapper #globalNav .btn.color-contact {
    right: inherit;
    width: 80%;
    position: relative;
    top: inherit;
    margin-bottom: 10px;
  }


  #drowerWrap {
    width: 100%;
    height: 101vh;
    overflow: auto;
    display: none;
    background: #fff;
    position: relative;
  }

  #drowerWrap:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #FFF;
    opacity: 1;
    z-index: 0;
  }

  #drowerWrap #globalNav {
    width: auto;
    display: block;
    position: relative;
    margin-bottom: 20px;
    left: inherit;
    top: inherit;
    -webkit-transform: none;
    transform: none;
    z-index: 10;
  }

  #drowerWrap #globalNav .box-column-size1 {
    text-align: left;
  }

  #drowerWrap #globalNav .box-column-size1 h2 {}

  #drowerWrap #globalNav .nav-list {
    display: block;
    text-align: center;
    margin-bottom: 50px;
  }

  #drowerWrap #globalNav .nav-list li {
    display: inline-block;
    text-align: left;
    margin-right: 78px;
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  #drowerWrap #globalNav .nav-list li:last-child {
    margin-right: 0;
  }

  #drowerWrap #globalNav .nav-list li a {
    display: block;
  }

  body.drawer #drowerWrap {
    display: block;
  }

  #infoNav {
    margin: 0 0 200px;
    position: relative;
    left: inherit;
    z-index: 100;
  }

  #infoNav ul li {
    border-bottom: none;
    display: inline-block;
    /* height: 35px; */
    vertical-align: top;
    border-right: 1px solid #000;
    padding: 0 15px;
  }

  #infoNav ul li:first-child {
    width: auto;
    text-align: center;
    font-weight: bold;
    padding: 0 0 0 0;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid;
    display: inline-block;
  }

  #infoNav ul li:first-child a {
    line-height: 1.2em;
    padding: 1em 2em 1em 50px;
    position: relative;
  }

  #infoNav ul li a {
    display: inline-block;
    line-height: 0;
    padding: 0;
  }

  #infoNav ul li #newsIcon {
    position: absolute;
    left: 13px;
    top: 8px;
  }

}


/* ///////////////   ハンバーガーメニュー   ///////////////////////*/
@media screen and (min-width: 901px) {

  /*pcのみ*/
  #btn_gNavi {
    display: none;
  }
}

@media screen and (max-width: 900px) {

  #gnav-btn {
    color: gray;
    padding: 10px;
    font-size: 30px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
    background-color: white;
    border: solid 1px #d1caca;
    border-radius: 3px;
  }

  #gnav-input:checked~#gnav-content {
    top: 0;
  }

  #gnav-content {
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 10;
    transition: 0.3s;
    width: 100%;
  }

  .humb-menu__title {
    padding: 1.5rem;
  }

  .humb-menu label {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    border-top: 0.5px solid #c7c5c5;
  }

  .humb-menu input {
    display: none;
  }

  .humb-menu .accshow {
    height: 0;
    overflow: hidden;
  }

  .humb-menu .accshow p {
    padding: 1.5rem;
  }

  .humb-menu .cssacc:checked+.accshow {
    height: auto;
  }
}





/* footer ////////////////////////////////////////////////////////////////////////////////////////////*/
#footer-wrapper {
  padding: 0px 50px 0px 50px;
  width: 100%;
  height: -webkit-calc(342px);
  height: -webkit-calc(100vh - 160px);
  height: calc(100vh - 160px);
  overflow: hidden;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}

body.footend #footer-wrapper {
  opacity: 1;
}

#footer-wrapper .footerContents {
  width: 750px;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#footer-wrapper .footerContents::before {
  content: "";
  width: 70px;
  height: 80px;
  display: block;
  background: url(../img/illust/illust_hiyoko1.png) no-repeat top left;
  background-size: 70px;
  left: 50%;
  top: -60px;
  position: absolute;
  z-index: 10;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#footer-wrapper .conversionArea {
  margin-bottom: 20px;
}

#footer-wrapper .conversionArea .btn {
  width: 300px;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}

#footer-wrapper .conversionArea .btn:last-child {
  margin-right: 0;
}

#footer-wrapper .telwrap {
  margin-bottom: 20px;
}

#footer-wrapper .footerContents .add {
  line-height: 25px;
  margin-bottom: 30px;
}

#footer-wrapper .footerContents .btn.mapbtn {
  margin-left: 1em;
  vertical-align: middle;
}

.footer-copyright small {
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  /* font-weight: bold; */
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 1px 2px 3px #808080;
  padding: 0;
  margin-top: -210px;
}

@media screen and (max-width: 900px) {
  #footer-wrapper {
    position: relative;
    width: auto;
    height: auto;
    display: block;
    left: inherit;
    bottom: inherit;
    margin: 0 20px;
    padding: 60px 0 40px 0;
  }

  #footer-wrapper .footerContents {
    width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    top: inherit;
    left: inherit;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  #footer-wrapper .conversionArea {
    margin-bottom: 10px;
  }

  #footer-wrapper .conversionArea .btn {
    width: 80%;
    display: inline-block;
    margin-right: 0px;
  }

  #footer-wrapper .telwrap {
    margin-bottom: 10px;
  }

  #footer-wrapper .footerContents .add {
    line-height: 25px;
    margin-bottom: 20px;
    font-size: 0.8rem;
  }

  #footer-wrapper .footerContents .btn.mapbtn {
    margin-top: 16px;
    display: block;
    width: 40%;
    margin: 10px auto;
    vertical-align: middle;
  }

  #footer-wrapper .footerContents::before {
    top: -30px;
    width: 35px;
    height: 40px;
    background-size: 35px;
  }

  .footer-copyright {
    margin-bottom: 0;
    line-height: 1.3em;
  }

  .footer-copyright small {
    line-height: 1.3em;
  }
}

/*page*/
#page {
  margin-bottom: 80px;
  position: relative;
  /* z-index: 4; */
}

@media screen and (max-width: 900px) {
  #page {
    margin-bottom: 40px;
    position: relative;
    z-index: 4;
    margin-top: -2px;
  }
}


/* main ////////////////////////////////////////////////////////////////////////////////////////////*/
.width-min {
  min-width: 1200px;
  margin: 0 auto;
}

.width-max {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

.wide-width-max {
  margin: 0 200px;
  display: block;
  position: relative;
}

.width-max>*:last-child,
.wide-width-max>*:last-child {
  margin-bottom: 0;
}

main article {
  padding-bottom: 0;
}

@media screen and (max-width: 1500px) {
  .wide-width-max {
    margin: 0 150px;
  }

  .width-max {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1400px) {
  .wide-width-max {
    margin: 0 150px;
  }

  .width-max {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1200px) {
  .wide-width-max {
    margin: 0 100px;
  }

  .width-max {
    margin: 0 auto;
  }
}

@media screen and (max-width: 900px) {
  .width-min {
    min-width: auto;
    min-width: inherit;
  }

  .width-max {
    max-width: auto;
    max-width: inherit;
    margin: 0 20px;
  }

  .wide-width-max {
    margin: 0 20px;
  }

  .wide-width-max .column-flex.box-column5 .box-column-size1 {
    width: 48%;
  }
}

@media screen and (max-width: 600px) {
  .wide-width-max {
    margin: 0 20px;
  }

  .wide-width-max .column-flex.box-column5 .box-column-size1 {
    width: 100%;
  }


}


/* column ////////////////////////////////////////////////////////////////////////////////////////////*/
/*カラムレイアウト*/
.lay-column1 {
  width: 70%;
  margin: 0 auto;
}

.lay-column2,
.lay-column3 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

/*2カラム*/
.lay-column2>* {
  width: 48%;
  margin-bottom: 1rem;
  /*margin-bottom: 4%;  IE11でflexbox内で%指定の上下マージンが効かないよう…*/
}

.lay-column2>*:nth-last-child(-n+2) {
  margin-bottom: 0;
}

/*2カラム(分割の割合を調整)*/
.lay-column2.typeA>*:nth-child(odd) {
  width: 30%;
}

.lay-column2.typeA>*:nth-child(even) {
  width: 66%;
}

/*3カラム*/
.lay-column3>* {
  width: 32%;
  margin-bottom: 1rem;
  /*margin-bottom: 2%; */
}

.lay-column3>*:nth-last-child(-n+3) {
  margin-bottom: 0;
}

/*2カラム(分割の割合を調整)*/
.lay-column3.typeA>*:nth-child(3n+1) {
  width: 20%;
}

.lay-column3.typeA>*:nth-child(3n+2) {
  width: 40%;
}

.lay-column3.typeA>*:nth-child(3n) {
  width: 30%;
}

.LtoR {
  -webkit-flex-direction: row;
  flex-direction: row;
}

.RtoL {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}


/*tel*/
.tel {
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin-top: 10px;
}

.tel:before {
  content: "TEL";
  border: 1px solid #000;
  padding: 0.2em 0.5em;
  margin-right: 0.5em;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  font-weight: bold;
}

/* column ////////////////////////////////////////////////////////////////////////////////////////////*/
.column-flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}


.flex-end {
  justify-content: flex-end;
}

.row-revers {
  flex-direction: row-reverse;
}

.box-column-size1,
.box-column-size2,
.box-column-size3,
.box-column-size4 {
  margin-bottom: 0;
}


/*追加*/
section:last-child {
  margin-bottom: 0;
}

.box-column-size1 *:last-child,
.box-column-size2 *:last-child,
.box-column-size3 *:last-child,
.box-column-size4 *:last-child {
  margin-bottom: 0%;
}

/**/


.box-column1 {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.column-flex.box-column2 .box-column-size1 {
  width: 49%;
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);
}

.column-flex.box-column2 .box-column-size2 {
  width: 100%;
}

.column-flex.box-column2 .box-column-size3 {
  width: 100%;
}

.box-column-size1.textcolumn {
  padding-top: 1em;
}

.column-flex.box-column3 .box-column-size1 {
  width: 300px;
  position: relative;
}

.column-flex.box-column3 .box-column-size2 {
  width: 650px;
}

.column-flex.box-column3 .box-column-size3 {
  width: 650px;
}

.column-flex.box-column3 .box-column-size1 .pickup {
  width: 410px;
  margin-left: -90px;
  position: relative;
  top: 0;
}

.column-flex.box-column4 .box-column-size1 {
  width: 24.25%;
  width: -webkit-calc(25% - 45px);
  width: calc(25% - 45px);
}

.column-flex.box-column4 .box-column-size2 {
  width: 49.5%;
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);
}

.column-flex.box-column4 .box-column-size3 {
  width: 74.75%;
  width: -webkit-calc(75% - 30px);
  width: calc(75% - 30px);
}

.column-flex.box-column5 .box-column-size1 {
  width: 19%;
}

.column-flex.box-column5 .box-column-size2 {
  width: 39.4%;
}

.column-flex.box-column5 .box-column-size3 {
  width: 59.6%;
}

.column-flex.box-column5 .box-column-size4 {
  width: 79.8%;
}

@media screen and (max-width: 1400px) {
  .column-flex.box-column2 .box-column-size1 {
    width: 49.8%;
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }

  .column-flex.box-column3 .box-column-size1 {
    width: 32%;
    width: -webkit-calc(33.333% - 15px);
    width: calc(33.333% - 15px);
  }

  .column-flex.box-column3 .box-column-size2 {
    width: 64.2%;
    width: -webkit-calc(66.666% - 15px);
    width: calc(66.666% - 15px);
  }

  .column-flex.box-column3 .box-column-size3 {
    width: 48%;
    width: -webkit-calc(48% - 15px);
    width: calc(48% - 15px);
  }

  .column-flex.box-column4 .box-column-size1 {
    width: 24%;
    width: -webkit-calc(25% - 22.5px);
    width: calc(25% - 22.5px);
  }

  .column-flex.box-column4 .box-column-size2 {
    width: 49.8%;
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }

  .column-flex.box-column4 .box-column-size3 {
    width: 74.8%;
    width: -webkit-calc(75% - 15px);
    width: calc(75% - 15px);
  }

}




@media screen and (max-width: 900px) {

  .column-flex.box-column4 .box-column-size3 {
    width: auto;
  }

  .column-flex.box-column2 .box-column-size1 {
    width: 100%;
    margin-bottom: 20px;
  }

  .column-flex.box-column2 .box-column-size1:last-child {
    margin-bottom: 0;
  }

  .column-flex.box-column3 .box-column-size1,
  .column-flex.box-column3 .box-column-size2,
  .column-flex.box-column3 .box-column-size3 {
    width: 100%;
  }

  .column-flex.box-column3 .box-column-size1 .pickup {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
    margin-left: 0;
  }

  .column-flex.box-column5 .box-column-size1 {
    width: 100%;
  }

  .column-flex.box-column4 .box-column-size1 {
    width: auto;
    margin-bottom: 1em;
  }

  .column-flex.box-column4 .box-column-size2 {
    width: auto;
    margin-bottom: 1em;
  }

  .column-flex.box-column4 .box-column-size3 {
    width: auto;
    margin-bottom: 1em;
  }

  .column-flex.box-column4 *:last-child {
    margin-bottom: 0;
  }

}


/* box ////////////////////////////////////////////////////////////////////////////////////////////*/
.box {
  background: #FFF;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}

.box>*:last-child {
  margin-bottom: 0;
}

.box-color {
  background: #fff;
  padding: 25px;
  box-sizing: border-box;
}

.box-color .box-innner {
  background: #FFF;
  padding: 20px;
  box-sizing: border-box;
}

.box-color .box-innner * {
  color: #000;
}

.box-color .box-innner>*:last-child {
  margin-bottom: 0;
}

.about .box-color {
  background: #FAE7F0;
}

.kyouiku .box-color {
  background: #D3EADD;
}

.annai .box-color {
  background: #F1F1BE;
}

.shien .box-color {
  background: #CADBEA;
}

.soudan .box-color {
  background: #f2f2f2;
}

.etc .box-color {
  background: #f2f2f2;
}

.box.box-head-title {
  padding-top: 0;
}



/*borderbox*/
.borderBox {
  padding: 1px !important;
  box-sizing: border-box;
}

.borderBoxInner {
  background: #FFFFFF;
  padding: 25px;
  position: relative;
  height: 100%;
}

.border-box-padding {
  padding: 25px 25px 40px 25px;
}



@media screen and (max-width: 900px) {
  .borderBoxInner {
    background: #FFFFFF;
    padding: 15px;
  }

  .box-color {
    padding: 15px;
  }

  ul.list-dot dt {
    width: 80%;
    padding: 3px 5px 0;
    font-family: 'Kiwi Maru', serif;
    font-weight: bold;
    font-size: 1.6rem;
  }
}

.box-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

基本要素

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/* title ////////////////////////////////////////////////////////////////////////////////////////////*/
.title1 {
  font-size: 2.5rem;
  margin-bottom: 80px;
}

.title2 {
  font-size: 2.0rem;
}

.title3 {
  font-size: 1.6rem;
}

.title4 {
  font-size: 1.0rem;
}

.title5 {
  font-size: 1rem;
}

.title6 {
  font-size: 0.8rem;
  margin-bottom: 1em;
}

.title4.eng {
  font-weight: bold;
  font-size: 1.2rem;
}

.pagetitle .title1 {
  margin-bottom: 0em;
}

.pagetitle .title1 .lead {
  display: block;
  padding-top: 50px;
}

.pagetitle .title1 .name-eng {
  height: 24px;
  width: auto;
}

.pagetitle .title1 span {
  display: block;
  padding-top: 20px;
  line-height: 0;
}

.pagetitle .title1 .name-jp {
  height: 18px;
  width: auto;
}


/*deco*/
section .title2.decoration,
section .title3.decoration {
  text-align: center;
}

.decoration {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.decoration::before {
  content: "";
  height: 60px;
  width: 225px;
  position: absolute;
  left: 30%;
  top: 50%;
  background: url(../img/content/daily_title01.png) no-repeat left center;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}



#annai .decoration::after {
  content: "";
  height: 60px;
  width: 225px;
  position: absolute;
  right: 0;
  top: 50%;
  background: url(../img/content/daily_title02.png) no-repeat right center;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

section .title2.decoration02,
section .title3.decoration02 {
  text-align: center;
}

.decoration02 {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.decoration02::before {
  content: "";
  height: 60px;
  margin-top: -15px;
  margin-left: 26%;
  width: 110px;
  position: absolute;
  left: 0;
  top: 50%;
  /* top: 8px; */
  background: url(../img/admission/ico-admission01.png) no-repeat left center;
  z-index: 1;
  -moz-transform: none;
  -webkit-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
  left: 5%;
  top: 0;
}


#annai .decoration02::after {
  content: "";
  height: 60px;
  width: 400px;
  position: absolute;
  right: 0;
  top: 50%;
  background: url(../img/admission/ico-admission02.png) no-repeat right center;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* #annai .decoration::before {
  content: "";
  height: 60px;
  width: 225px;
  position: absolute;
  left: 30%;
  top: 50%;
  background: url(../img/admission/ico-admission01.png) no-repeat left center;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
} */

/* .decoration::after {
  content: "";
  height: 60px;
  width: 225px;
  position: absolute;
  right: 0;
  top: 50%;
  background: url(../img/admission/ico-admission01.png) no-repeat right center;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
} */

/* .daily-text02::after {
  content: "";
  height: 50px;
  width: 225px;
  position: absolute;
  right: 0;
  top: 50%;
  background: url(../img/content/daily_title01.png) no-repeat right center;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
} */

.decoration span {
  display: inline-block;
  padding: 5px 15px;
  position: relative;
  z-index: 10;
  line-height: 30px;
}

.decoration02 span {
  display: inline-block;
  padding: 5px 15px;
  margin-left: -20px;
  position: relative;
  z-index: 10;
  line-height: 30px;
}

#about .decoration::before {
  background: url(../img/h/h_about_l.svg) no-repeat right center;
}

#about .decoration::after {
  background: url(../img/h/h_about_r.svg) no-repeat right center;
}

#about .decoration::before {
  background: url(../img/h/h_about_l.svg) no-repeat right center;
}

#about .decoration::after {
  background: url(../img/h/h_about_r.svg) no-repeat right center;
}

#kyouiku .decoration::before {
  background: url(../img/content/daily_title01.png) no-repeat left center;
}

#kyouiku .decoration::after {
  background: url(../img/content/daily_title02.png) no-repeat left center;
}

/* #annai .decoration::before {
  background: url(../img/admission/ico-admission01.png) no-repeat right center;
} */

/* #annai .decoration::after {
  background: url(../img/admission/ico-admission02.png) no-repeat right center;
} */

#shien .decoration::before {
  background: url(../img/h/h_shien_l.svg) no-repeat left center;
}

#shien .decoration::after {
  background: url(../img/h/h_shien_r.svg) no-repeat left center;
}

#soudan .decoration::before {
  background: url(../img/h/h_soudan_l.svg) no-repeat left center;
}

#soudan .decoration::after {
  background: url(../img/h/h_soudan_r.svg) no-repeat left center;
}

#kubun .decoration02::before {
  background: url(../img/admission/ico-admission01.png) no-repeat left center;
}

#kubun .decoration02::after {
  background: url(../img/admission/ico-admission02.png) no-repeat left center;
}

#hantei .decoration02::before {
  background: url(../img/admission/ico-admission01.png) no-repeat left center;
}

#hantei .decoration02::after {
  background: url(../img/admission/ico-admission02.png) no-repeat left center;
}

#nyuen .decoration02::after {
  background: url(../img/admission/ico-admission02.png) no-repeat left center;
}

@media screen and (max-width: 900px) {
  .decoration::before {
    width: 55px;
  }

  .decoration::after {
    width: 55px;
  }


  #about .decoration::after {
    background: url(../img/h/h_about_r.svg) no-repeat right center;
    background-size: 55px;
    width: 55px;
  }

  #about .decoration::before {
    background: url(../img/h/h_about_l.svg) no-repeat right center;
    background-size: 55px;
    width: 55px;
  }

  #about .decoration::after {
    background: url(../img/h/h_about_r.svg) no-repeat right center;
    background-size: 55px;
    width: 55px;
  }

  #kyouiku .decoration::before {
    background: url(../img/content/daily_title01.png) no-repeat left center;
    /* background-size: 60px; */
    width: 55px;
  }


  #kyouiku .decoration::after {
    background: url(../img/content/daily_title02.png) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #annai .decoration::before {
    background: url(../img/admission/ico-admission01.png) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #annai .decoration::after {
    background: url(../img/admission/ico-admission02.png) no-repeat right center;
    background-size: 55px;
    width: 55px;
  }

  #shien .decoration::before {
    background: url(../img/h/h_shien_l.svg) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #shien .decoration::after {
    background: url(../img/h/h_shien_r.svg) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #soudan .decoration::before {
    background: url(../img/h/h_soudan_l.svg) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #soudan .decoration::after {
    background: url(../img/h/h_soudan_r.svg) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #kubun .decoration02::before {
    background: url(../img/admission/ico-admission01.png) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #kubun .decoration02::after {
    background: url(../img/admission/ico-admission02.png) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #hantei .decoration02::before {
    background: url(../img/admission/ico-admission01.png) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #hantei .decoration02::after {
    background: url(../img/admission/ico-admission02.png) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  #nyuen .decoration02::before {
    background: url(../img/admission/ico-admission01.png) no-repeat left center;
    background-size: 55px;
    width: 55px;
    margin-left: -10px;
  }

  #nyuen .decoration02::after {
    background: url(../img/admission/ico-admission02.png) no-repeat left center;
    background-size: 55px;
    width: 55px;
  }

  .decoration02::before {
    content: "";
    height: 60px;
    margin-top: -15px;
    margin-left: 5%;
    width: 110px;
    position: absolute;
    left: 0;
    top: 50%;
    /* top: 8px; */
    background: url(../img/admission/ico-admission01.png) no-repeat left center;
    z-index: 1;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    left: 0;
    top: 0;
  }

}



@media screen and (max-width: 900px) {


  section .title2.decoration,
  section .title3.decoration {
    margin-bottom: 20px;
  }

  .decoration::before {
    content: "";
    margin-top: -15px;
    margin-left: -10px;
    width: 110px;
    position: absolute;
    left: 0;
    /* top: 8px; */
    background: url(../img/content/daily_title01.png) no-repeat left center;
    z-index: 1;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .decoration::after {
    content: "";
    height: 60px;
    width: 110px;
    position: absolute;
    right: 0;
    background: url(../img/h/h_about_r.svg) no-repeat right center;
    z-index: 1;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    background-size: 110px;
  }

  .decoration span {
    width: 80%;
    width: -webkit-calc(100% - 84px);
    width: calc(100% - 44px);
    margin: 0 auto;
    padding: 0;
    line-height: 1.2em;
    font-size: 1.1rem;
  }

  section .title2.decoration02,
  section .title3.decoration02 {
    margin-bottom: 20px;
  }



  .decoration02::after {
    content: "";
    height: 18px;
    width: 110px;
    position: absolute;
    right: 0;
    top: 8px;
    background: url(../img/admission/ico-admission02.png) no-repeat right center;
    z-index: 1;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    background-size: 110px;
  }

  .decoration02 span {
    width: 80%;
    width: -webkit-calc(100% - 84px);
    width: calc(100% - 44px);
    margin: 0 auto;
    padding: 0;
    line-height: 1.2em;
    font-size: 1.8rem;
    font-weight: 700;
  }
}


.title-dot {
  padding: 0 0 0 25px;
  display: block;
  position: relative;
}

.title-dot:before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 8px;
  position: absolute;
  left: 0px;
  top: 7px;
}

.title-dot:before {
  background: -moz-linear-gradient(left, #EEAECC, #F08E4C);
  background: -webkit-linear-gradient(left, #EEAECC, #F08E4C);
  background: linear-gradient(to right, #EEAECC, #F08E4C);
}

.about .title-dot:before {
  background: -moz-linear-gradient(left, #EEAECC, #F08E4C);
  background: -webkit-linear-gradient(left, #EEAECC, #F08E4C);
  background: linear-gradient(to right, #EEAECC, #F08E4C);
}

.kyouiku .title-dot:before {
  background: -moz-linear-gradient(left, #6DBA8D, #47A0A0);
  background: -webkit-linear-gradient(left, #6DBA8D, #47A0A0);
  background: linear-gradient(to right, #6DBA8D, #47A0A0);
}

.annai .title-dot:before {
  background: -moz-linear-gradient(left, #EDC31C, #E48F15);
  background: -webkit-linear-gradient(left, #EDC31C, #E48F15);
  background: linear-gradient(to right, #EDC31C, #E48F15);
}

.shien .title-dot:before {
  background: -moz-linear-gradient(left, #4F86BB, #7E549F);
  background: -webkit-linear-gradient(left, #4F86BB, #7E549F);
  background: linear-gradient(to right, #4F86BB, #7E549F);
}

.soudan ul.list-dot:before {
  background: -moz-linear-gradient(left, #BBBDBE, #9DA3A6);
  background: -webkit-linear-gradient(left, #BBBDBE, #9DA3A6);
  background: linear-gradient(to right, #BBBDBE, #9DA3A6);
}

.etc .title-dot:before {
  background: -moz-linear-gradient(left, #333333, #111111);
  background: -webkit-linear-gradient(left, #333333, #111111);
  background: linear-gradient(to right, #333333, #111111);
}


.box-title {
  background: #666666;
  text-align: center;
  padding: 10px 25px;
  color: #FFFFFF;
  margin-bottom: 0;
}



@media screen and (max-width: 1400px) {
  .pagetitle .title1 {}
}

@media screen and (max-width: 900px) {
  .title1 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .title2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .title3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .title4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .title5 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .title6 {
    font-size: 0.8rem;
    margin-bottom: 0.5em;
  }

  .title4.eng {
    font-weight: bold;
    font-size: 1.2rem;
  }

  .pagetitle .title1 {
    margin-bottom: 15%;
  }

  .pagetitle .title1 .lead {
    display: block;
    padding-top: 0.5em;
  }

  .pagetitle .title1 .name-eng {
    height: 18px;
    width: auto;
  }

  .pagetitle .title1 span {
    padding-top: 5px;
  }


}


/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

btn

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.btn {
  display: inline-block;
  box-sizing: border-box;
  line-height: 1em;
  box-sizing: border-box;
  background: #000000;
  color: #FFF;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn.btn-l {
  /* height: 50px; */
  border-radius: 25px;
  color: #FFFFFF;
  padding: 1em 1.5em;
}

.btn.btn-m {
  height: 35px;
  border-radius: 18px;
  color: #FFFFFF;
  padding: 0.5em 1.5em;
}

.btn.btn-s {
  height: 25px;
  border-radius: 13px;
  color: #FFFFFF;
  padding: 0 1.5em;
  font-size: 0.7rem;
  line-height: 25px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 900px) {
  .btn.btn-l {
    height: auto;
    border-radius: 25px;
    color: #FFFFFF;
    padding: 1em 1.5em;
  }

  .btn.btn-m {
    height: auto;
    border-radius: 18px;
    color: #FFFFFF;
    padding: 0.5em 1.5em;
  }

  .btn.btn-s {
    height: auto;
    border-radius: 13px;
    color: #FFFFFF;
    padding: 0 1.5em;
    font-size: 0.7rem;
    line-height: 25px;
    letter-spacing: 0.2em;
  }

}

.btn.color-about {
  background: -moz-linear-gradient(left, #EEAECC, #F08E4C, #EEAECC, #F08E4C);
  background: -webkit-linear-gradient(left, #EEAECC, #F08E4C, #EEAECC, #F08E4C);
  background: linear-gradient(to right, EEAECC, #F08E4C, #EEAECC, #F08E4C);
  background-size: 400%;
}

.btn.color-kyouiku {
  background: -moz-linear-gradient(left, #6DBA8D, #47A0A0, #6DBA8D, #47A0A0);
  background: -webkit-linear-gradient(left, #6DBA8D, #47A0A0, #6DBA8D, #47A0A0);
  background: linear-gradient(to right, #6DBA8D, #47A0A0, #6DBA8D, #47A0A0);
  background-size: 400%;
}

.btn.color-annai {
  background: #5b2c02;
  background: #5b2c02;
  background: #5b2c02;
  background-size: 400%;
}

.btn.color-shien {
  background: -moz-linear-gradient(left, #4F86BB, #7E549F, #4F86BB, #7E549F);
  background: -webkit-linear-gradient(left, #4F86BB, #7E549F, #4F86BB, #7E549F);
  background: linear-gradient(to right, #4F86BB, #7E549F, #4F86BB, #7E549F);
  background-size: 400%;
}

.btn.color-soudan {
  background: -moz-linear-gradient(left, #BBBDBE, #9DA3A6, #BBBDBE, #9DA3A6);
  background: -webkit-linear-gradient(left, #BBBDBE, #9DA3A6, #BBBDBE, #9DA3A6);
  background: linear-gradient(to right, #BBBDBE, #9DA3A6, #BBBDBE, #9DA3A6);
  background-size: 400%;
}

.btn.color-etc {
  background: -moz-linear-gradient(left, #333333, #111111, #333333, #111111);
  background: -webkit-linear-gradient(left, #333333, #111111, #333333, #111111);
  background: linear-gradient(to right, #333333, #111111, #333333, #111111);
  background-size: 400%;
}



.btn.color-about:hover,
.btn.color-kyouiku:hover,
.btn.color-annai:hover,
.btn.color-shien:hover,
.btn.color-soudan:hover,
.btn.color-etc:hover {
  animation: grahover 3s linear infinite;
}

@keyframes grahover {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

main p a {
  border-bottom: 1px solid #ed8000;
}
.kyouiku main p a {
  border-bottom: 1px solid #6DBA8D;
}

.kyouiku main p a:hover {
  color: #6DBA8D;
}

.annai main p a {
  border-bottom: 1px solid #E48F15;
}

.annai main p a:hover {
  color: #E48F15;
}

.shien main p a {
  border-bottom: 1px solid #7E549F;
}

.shien main p a:hover {
  color: #7E549F;
}

.soudan main p a {
  color: #9DA3A6;
}

.soudan main p a:hover {
  color: #9DA3A6;
}


/* //////////////////////////////////////////////////////////////////////////////////////////

 list

 ////////////////////////////////////////////////////////////////////////////////////////////*/

/*通常リスト*/
ul.list {
  border-top: #ccc solid 1px;
}

ul.list>li {
  border-bottom: #ccc solid 1px;
  padding: 15px 0;
}

/*ドット付きリスト*/
ul.list-dot {
  border-top: #ccc solid 1px;
}

ul.recruite.list-dot {
  border-top: none;
}

ul.list-dot>li {
  border-bottom: #ccc solid 1px;
  padding: 15px 0 15px 2em;
  display: block;
  position: relative;
}

ul.recruite.list-dot>li {
  border-bottom: #ed8000 solid 1px;
  padding: 15px 0 15px 2em;
  display: block;
  position: relative;
}

ul.list-dot>li:before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 8px;
  position: absolute;
  left: 10px;
  top: 21px;
}

ul.recruite.list-dot>li:before {
  background: -moz-linear-gradient(left, #fde88f, #ed8000);
  background: -webkit-linear-gradient(left, #fde88f, #ed8000);
  background: linear-gradient(to right, #fde88f, #ed8000);
}

ul.list-dot>li:before {
  background: -moz-linear-gradient(left, #ceda00, #8dc21f);
  background: -webkit-linear-gradient(left, #ceda00, #8dc21f);
  background: linear-gradient(to right, #ceda00, #8dc21f);
}


.about ul.list-dot>li:before {
  background: -moz-linear-gradient(left, #EEAECC, #F08E4C);
  background: -webkit-linear-gradient(left, #EEAECC, #F08E4C);
  background: linear-gradient(to right, #EEAECC, #F08E4C);
}

.kyouiku ul.list-dot>li:before {
  background: -moz-linear-gradient(left, #6DBA8D, #47A0A0);
  background: -webkit-linear-gradient(left, #6DBA8D, #47A0A0);
  background: linear-gradient(to right, #6DBA8D, #47A0A0);
}

.annai ul.list-dot>li:before {
  background: -moz-linear-gradient(left, #EDC31C, #E48F15);
  background: -webkit-linear-gradient(left, #EDC31C, #E48F15);
  background: linear-gradient(to right, #EDC31C, #E48F15);
}

.shien ul.list-dot>li:before {
  background: -moz-linear-gradient(left, #4F86BB, #7E549F);
  background: -webkit-linear-gradient(left, #4F86BB, #7E549F);
  background: linear-gradient(to right, #4F86BB, #7E549F);
}

.soudan ul.list-dot>li:before {
  background: -moz-linear-gradient(left, #BBBDBE, #9DA3A6);
  background: -webkit-linear-gradient(left, #BBBDBE, #9DA3A6);
  background: linear-gradient(to right, #BBBDBE, #9DA3A6);
}

.etc ul.list-dot>li:before {
  background: -moz-linear-gradient(left, #333333, #111111);
  background: -webkit-linear-gradient(left, #333333, #111111);
  background: linear-gradient(to right, #333333, #111111);
}

.contact .gra {
  background: -moz-linear-gradient(left, #FFBD8A, #EA5150);
  background: -webkit-linear-gradient(left, #FFBD8A, #EA5150);
  background: linear-gradient(to right, #FFBD8A, #EA5150);
}


/*数字付きリスト*/
ol.list {
  counter-reset: listnum;
  border-top: #ccc solid 1px;
}

ol.list>li {
  padding: 15px 0 15px 2em;
  border-bottom: #ccc solid 1px;
}

ol.list>li::before {
  content: counter(listnum)'.';
  counter-increment: listnum;
  width: 2rem;
  margin-left: -2em;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: 'Asap', sans-serif;
}

/*定義リスト(縦ならび)*/
dl.list-vertical {
  border-top: 1px solid #CCC;
}

dl.list-vertical>dt {
  font-weight: bold;
  padding-top: 15px;
}

dl.list-vertical>dd {
  border-bottom: 1px solid #CCC;
  padding-bottom: 15px;
}

dl.list-vertical>dd dl.list-vertical {
  border-top: none;
  padding-top: 0;
}

dl.list-vertical>dd dl.list-vertical dd {
  border-bottom: none;
  padding-bottom: 0;
}

/*定義リスト(横ならび)*/
dl.list-horizontal {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  border-top: 1px solid #CCC;
}

dl.list-horizontal>* {
  padding: .5em 0;
  border-bottom: 1px solid #CCC;
}

dl.list-horizontal>dt {
  width: 20%;
  font-weight: bold;
}

dl.list-horizontal>dd {
  width: 80%;
  padding-left: 5%;
}

dl.list-horizontal>dd.btnWrap {
  padding-right: 186px;
  position: relative;
}

dl.list-horizontal>dd.btnWrap div.btnbox {
  width: 166px;
  display: block;
  position: absolute;
  right: 0;
  top: 9px;
}

dl.list-horizontal>dd.btnWrap div.btnbox a {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

dl.list-horizontal>dd dl.list-horizontal {
  border-top: none;
  padding-top: 0;
}

dl.list-horizontal>dd dl.list-horizontal dt {
  width: 40%;
}

dl.list-horizontal>dd dl.list-horizontal dd {
  width: 60%;
}

dl.list-horizontal>dd dl.list-horizontal dt:first-of-type,
dl.list-horizontal>dd dl.list-horizontal dd:first-of-type {
  padding-top: 0;
}

dl.list-horizontal>dd dl.list-horizontal dt:last-of-type,
dl.list-horizontal>dd dl.list-horizontal dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

@media screen and (max-width: 900px) {
  dl.list-horizontal>* {
    padding: .5em 0;
    border-bottom: 1px solid #CCC;
  }

  dl.list-horizontal>dt {
    width: 30%;
    font-weight: bold;
  }

  dl.list-horizontal>dd {
    width: 70%;
    padding-left: 5%;
  }

  dl.list-horizontal>dd.btnWrap {
    padding-right: inherit;
  }

  dl.list-horizontal>dd.btnWrap div.btnbox {
    width: 100%;
    display: block;
    position: relative;
    right: inherit;
    top: inherit;
    margin: 10px auto 0;
  }

  dl.list-horizontal>dd.btnWrap div.btnbox a {
    display: block;
    margin-bottom: 10px;
    text-align: center;
  }

  dl.list-horizontal>dd dl.list-horizontal {
    border-top: none;
    padding-top: 0;
  }

  dl.list-horizontal>dd dl.list-horizontal dt {
    width: 40%;
  }

  dl.list-horizontal>dd dl.list-horizontal dd {
    width: 60%;
  }

  dl.list-horizontal>dd dl.list-horizontal dt:first-of-type,
  dl.list-horizontal>dd dl.list-horizontal dd:first-of-type {
    padding-top: 0;
  }

  dl.list-horizontal>dd dl.list-horizontal dt:last-of-type,
  dl.list-horizontal>dd dl.list-horizontal dd:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/*イラストとか*/
.nonosama {
  height: 68px;
  width: 48px;
  display: block;
  position: relative;
  background: url(../img/illust/illust_nonosama_single.png) no-repeat;
  background-size: 48px;
}

.nonosama2 {
  height: 72px;
  width: 52px;
  display: block;
  background: url(../img/illust/illust_nonosama.png) left no-repeat;
  background-size: 156px;
}

.nonosama2.eyel {
  background-position: -104px 0;
}

.nonosama2.eyer {
  background-position: -52px 0;
}

/*parts*/
time {
  color: #999;
  letter-spacing: 0.1em;
}

.disnon {
  display: none;
}