@charset "UTF-8";
/*------------------------------------
全体設定　ここから
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 800
-------------------------------------*/
/* 初期設定 */
html {
  font-size: 62.5%;
}
body {
  width: 100%;
  font-size: 1.6rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  color: #323232;
  text-align: justify;
  word-break: break-all;
}

body,
header,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a,
dl,
dd,
dt,
div,
span,
time,
figure,
figcaption,
article,
section,
aside {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-weight: normal;
}
h2:not([class]) {
  color: #333;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5em;
}
h2:not([class]) span{
  font-size: 0.75em;
  font-weight: 700;
}
h2:not([class])::before{
  content: "";
  background: #4fc3f7;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
h3{
  font-size: 2.4rem;
}

p{
  line-height: 2;
}
img,
svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
a {
  display: inline;
  text-align: center;
  vertical-align: baseline;
  text-decoration: none;
  color: #333;
}
ul li {
  list-style-type: none;
}

.flex-container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sp-newline,
.sp-only{
  display: none;
}

@media screen and (max-width: 768px){
  .pc-newline,
  .pc-only{
    display: none;
  }
  .sp-newline,
  .sp-only{
    display: block;
  }
  .sp-left{
    text-align: justify;
  }
}
@media screen and (max-width: 570px){
  body {
    font-size: 1.5rem;
  }
  p{
    line-height: 1.75;
  }
  h2:not([class]){
    font-size: 2.4rem;
    margin-bottom: 1.0em;
    padding-left: 2.0rem;
  }
  h2:not([class])::before{
    width: 10px;
    height: 10px;
  }
  h3{
    font-size: 2.0rem;
  }
}

/* 初期設定----------------------------------------------- */

/* セクション設定 */
.section-wrapper{
  padding: 12rem 4rem 12rem;
}
.section-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
  .section-wrapper{
    padding: 8rem 4rem;
  }
}
@media screen and (max-width: 570px){
  .section-wrapper{
    padding: 6rem 2rem;
  }
}

/** -----------------------------------
ボタン
-------------------------------------**/
.button {
  display: inline-flex;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: 500;
  border-radius: 6rem;
  padding: 0.8em 1.5em;
  justify-content: center;
  align-items: center;
  background: #ffc400;
  transition: all .2s;
}
.button.contact::before{
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon-mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 8px;
}
.button:hover{
  opacity: 0.8;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
  .button{
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 570px){
  .button{
    font-size: 1.6rem;
  }
}

/** -----------------------------------
ヘッダー
-------------------------------------**/
#header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 10;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#header .header-logo{
  color: #29b6f6;
  font-size: 18px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  text-align: left;
  line-height: 1;
}
#header .header-logo h1{
  color: #606060;
  font-size: 10px;
  margin-top: 5px;
}

#header .flex-container{
  align-items: center;
  flex-wrap: nowrap;
}
#header .gnav-pc-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .gnav-pc-wrap ul.gnav-pc{
  display: flex;
  text-align: center;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide {
  display: flex;
  align-items: center;
  height: 8rem;
  margin: 0 1.5vw;
  position: relative;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide a.parent_menu {
  transition:	all .2s;
  position: relative;
  padding-right: 1.5rem;
  transition: .2s all;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide:hover a.parent_menu{
  color: #29b6f6;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide a.parent_menu::after{
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 0.17rem solid;
  border-bottom: 0.17rem solid;
  transform-origin: center;
  transform: translateY(-50%) rotate(45deg);
  transition: .2s all;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide:hover a.parent_menu::after{
  transform: translateY(-50%) rotate(-135deg);
}

#header .gnav-guide-pc {
  position: absolute;
  display: flex;
  visibility: hidden;
  opacity: 0;
  top: 8rem;
  left: 0;
  transition: 0.2s all;
}
#header .gnav-guide-pc.is-active {
  visibility: visible;
  opacity: 1;
}

#header .gnav-guide-pc .menu-area{
  background-color: #29b6f6;
  transition: 0.2s all;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
#header .gnav-guide-pc .menu-area ul{
  display: flex;
  flex-wrap: wrap;
}
#header .gnav-guide-pc .menu-area ul li{
  white-space: nowrap;
  width: 100%;
  text-align: left;
}
#header .gnav-guide-pc .menu-area ul li a{
  display: inline-block;
  transition: .2s all;
  color: #fff;
  text-align: left;
  font-size: 1.4rem;
  padding: 1em;
  border-bottom: 1px solid;
  width: 100%;
  vertical-align: middle;
}
#header .gnav-guide-pc .menu-area ul li:last-of-type a{
  border-bottom: none;
}
#header .gnav-guide-pc .menu-area ul li a::before{
  content: "▶︎";
  font-size: 0.5em;
  margin-right: 1em;
}
#header .gnav-guide-pc .menu-area ul li a:hover{
  opacity: 0.6;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 960px){
  #header .gnav-pc-wrap{
    display: none;
  }
}
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  #header{
    height: 6rem;
    padding-right: 0.2rem;
    padding-left: 1rem;
    border-radius: 6px;
    top: 10px;
    width: calc(100% - 20px);
  }
  #header .header-logo{
    font-size: 16px;
  }
  #header .header-logo h1{
    margin-top: 3px;
  }
}

/*	ハンバーガーメニュー（ボタン）	*/
.openbtn{
  position: relative;
  background: #0288d1;
  cursor: pointer;
  width: 55px;
  height: 55px;
  border-radius: 5px;
  transition: all .2s;
}
.openbtn span{
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 50%;
  transition: all .2s;
}
.openbtn span:nth-of-type(1) {
  top:18px;
}
.openbtn span:nth-of-type(2) {
  top:26px;
}
.openbtn span:nth-of-type(3) {
  top:34px;
}
.openbtn.is-active span{
  width: 55%;
  left: 12.7px;
}
.openbtn.is-active span:nth-of-type(1){
  top: 20px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.is-active span:nth-of-type(2){
  opacity: 0;
}
.openbtn.is-active span:nth-of-type(3) {
  top: 32px;
  transform: translateY(-6px) rotate(45deg);
}
/** -------- スマホ -------- **/
@media screen and (max-width: 960px){
}
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  .openbtn{
    transform: scale(0.9);
  }
}


/*	ハンバーガーメニュー（メニュー）	*/
.gnav-sp-wrap{
  display: none;
  z-index: 7;
}
.gnav-sp-list{
  visibility: hidden;
  background: #29b6f6;
  position: fixed;
  width: 95vw;
  height: 100svh;
  top: 0;
  right: 0;
  transition: all 0.4s;
  z-index: 9;
  padding: 12rem 4rem 4rem;
  overflow: auto;
  transform: translateX(100%);
  gap:10px;
}
.gnav-sp-list.is-active{
  visibility: visible;
  transform: translateX(0%);
}
.gnav-sp-list .accordion-header {
  width: 100%;
  margin-bottom: 10px;
}
.gnav-sp-list .accordion-header summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 15px 10px 5px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.gnav-sp-list .accordion-header summary::-webkit-details-marker {
  display: none;
}
.gnav-sp-list .accordion-header summary::after {
  content: '';
  width: 9px;
  height: 5px;
  transition: transform .2s;
  background-image: url(../images/common/icon-arrow-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
.gnav-sp-list .accordion-header[open] summary::after {
  transform: rotate(180deg);
}
.gnav-sp-list .accordion-header .detail {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  transition: all .2s;
}
.gnav-sp-list .accordion-header[open] .detail {
  transform: none;
  opacity: 1;
  margin-top: 5px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.gnav-sp-list ul.detail li{
  width: 100%;
  margin: 5px 0;
}
.gnav-sp-list ul.detail li a{
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  vertical-align: middle;
  margin-left: 0.5em;
}
.gnav-sp-list ul.detail li a::before{
  content: "▶︎";
  font-size: 0.5em;
  margin-right: 1em;
}
.gnav-sp-list .contact{
  width: 100%;
  margin-top: 1rem;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 960px){
  .gnav-sp-wrap{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  .gnav-sp-list{
    padding: 10rem 2rem 4rem;
  }
}



#cta{
  background-image: url(../images/common/cta-bg.png);
  background-position: top 40% center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#cta::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(179, 229, 252, 0.7);
  z-index: -1;
}
#cta .cta-wrapper{
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#cta .cta-wrapper .text{
  gap: 10px 0;
  display: flex;
  flex-direction: column;
}
#cta .cta-wrapper .text p{
  color: #323232;
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 700;
}
#cta .cta-wrapper .text p span{
  color: #0189d2;
  font-size: 2.8rem;
  font-weight: 700;
}

#cta .cta-wrapper .button-wrap{
  z-index: 1;
  width: 40%;
}
#cta .cta-wrapper .button{
  width: 100%;
  font-size: 2rem;
  padding: 0.8em 0;
  position: relative;
  transition: .2s all;
}
#cta .cta-wrapper .button:hover{
  opacity: 1;
  margin-top: 5px;
}
#cta .cta-wrapper .button::before{
  position: absolute;
  content: "";
  background-image: none;
  width: 100%;
  height: 100%;
  background-color: #dfac00;
  bottom: -5px;
  left: 0;
  z-index: -1;
  margin: 0;
  border-radius: 6rem;
  transition: .2s all;
}
#cta .cta-wrapper .button:hover::before{
  bottom: 0;
}
#cta .cta-wrapper .button::after{
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-top: 2px solid;
  border-right: 2px solid;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 960px){
  #cta .cta-wrapper .text{
    width: 100%;
    text-align: center;
  }
  #cta .cta-wrapper .button-wrap{
    width: 100%;
    max-width: 30rem;
    margin: 2rem auto 0;
  }
}
@media screen and (max-width: 768px){
  #cta .cta-wrapper .text p{
    font-size: 2.0rem;
  }
  #cta .cta-wrapper .text p span{
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 570px){
  #cta .cta-wrapper{
    padding: 2rem;
  }
  #cta .cta-wrapper .text p{
    font-size: 1.8rem;
  }
  #cta .cta-wrapper .text p span {
    font-size: 2.2rem;
  }
  #cta .cta-wrapper .button{
    font-size: 1.8rem;
  }
}

/** -----------------------------------
フッター
-------------------------------------**/
#footer {
  background-color: #0288d1;
  padding: 6rem;
  color: #fff;
}
#footer .footer-wrap{
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}
#footer .flex-container{
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#footer .flex-container .flex-item.info{
  width: 48%;
}
#footer .flex-container .flex-item.info .footer-logo{
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  text-align: left;
  line-height: 1.1;
  color: #fff;
}
#footer .flex-container .flex-item.info .footer-logo span{
  font-size: 1.6rem;
  display: block;
  margin-top: 5px;
}

#footer .flex-container .flex-item.nav{
  width: 48%;
}
#footer .flex-container .flex-item.nav .gnav-footer-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2rem;
}
#footer ul.gnav-footer{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#footer ul.gnav-footer li.parent{
  font-size: 1.5rem;
  font-weight: 700;
  width: 100%;
}
#footer ul.gnav-footer li.child{
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
  text-align: justify;
  margin-left: 10px;
  font-weight: 400;
}
#footer ul.gnav-footer a{
  color: #fff;
  font-weight: inherit;
}

#footer .copyright{
  font-size: 1.0rem;
  text-align: right;
  width: 100%;
  display: block;
  font-weight: 400;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 960px){
  #footer {
    padding: 4rem;
  }
  #footer .flex-container .flex-item.info .footer-logo{
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px){
  #footer .flex-container .flex-item.info .footer-logo{
    text-align: center;
  }
  #footer .flex-container .flex-item.info{
    width: 100%;
    text-align: center;
  }
  #footer .flex-container .flex-item.nav{
    display: none;
  }
  #footer .flex-container .flex-item.nav .gnav-footer-wrap{
    gap: 2rem;
  }
}
@media screen and (max-width: 570px){
  #footer{
    padding: 2rem;
  }
  #footer .flex-container{
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  #footer .flex-container .flex-item.info .footer-logo{
    font-size: 2.4rem;
  }
  #footer .flex-container .flex-item.info .footer-logo span{
    font-size: 1.2rem;
  }
  #footer .copyright{
    font-size: 9px;
    text-align: center;
  }
}


/** -----------------------------------
下層ページ
-------------------------------------**/
#lower-page{
  background: #e1f5fe;
  padding-top: 5rem;
}
#lower-page h2{
  font-size: 3.2rem;
  color: #2ab4f8;
  line-height: 1.5;
}
#lower-page h2 span{
  font-size: 0.8em;
  color: #202020;
}
#lower-page .category-wrap-parent p{
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
  margin-bottom: 10px;
}
#lower-page .category-wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
#lower-page .category-wrap p{
  font-weight: 700;
  letter-spacing: 0.02em;
  border-right: 1px solid #fff;
  padding-right: 15px;
  white-space: nowrap;
}
#lower-page .category-wrap a{
  color: #2ab4f8;
  font-size: 1.5rem;
  font-weight: 400;
  background: #fff;
  border: 1px solid;
  border-radius: 128px;
  padding: 0.5em 1.2em;
  transition: .2s all;
}
#lower-page .category-wrap a.active,
#lower-page .category-wrap a:hover{
  color: #fff;
  background: #2ab4f8;
  border-color: #2ab4f8;
}
#lower-page .school-wrap{
  background: #fff;
  border-radius: 12px;
  padding: 4rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-top: 4rem;
}
#lower-page .school-wrap .info{
  align-items: flex-start;
}
#lower-page .school-wrap .info .img{
  width: 38%;
}
#lower-page .school-wrap .info .img img{
  object-fit: contain;
}
#lower-page .school-wrap .info .text{
  width: 57%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#lower-page .school-wrap .info .text h3{
  font-weight: 700;
  letter-spacing: 0.03em;
}
#lower-page .school-wrap .info .text .address,
#lower-page .school-wrap .info .text .license-list{
  position: relative;
  padding-left: 2.5em;
  font-size: 1.5rem;
  font-weight: 400;
}
#lower-page .school-wrap .info .text .address::before,
#lower-page .school-wrap .info .text .license-list::before{
  position: absolute;
  content: "";
  left: 0;
  width: 24px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#lower-page .school-wrap .info .text .address::before{
  background-image: url(../images/common/icon-map.png);
  top: 4px;
}
#lower-page .school-wrap .info .text .license-list::before{
  background-image: url(../images/common/icon-license.png);
  top: 1px;
}

#lower-page .school-wrap .info .text .license-list{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
#lower-page .school-wrap .info .text .license-list li{
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 1px 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}

#lower-page .license-wrap{
  width: 100%;
  margin-top: 4rem;
  gap: 10px 0;
}
#lower-page .license-wrap h4{
  width: 100%;
  font-weight: 700;
  font-size: 1.8rem;
}
#lower-page .license-wrap h4::before{
  content: "";
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  background: #4fc3f7;
  border-radius: 50%;
  margin-right: 0.4em;
}
#lower-page .accordion-003 {
  width: 48%;
}
#lower-page .accordion-003 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 15px 10px 10px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid #d7d7d7;
  font-size: 15px;
  letter-spacing: 0.05em;
}
#lower-page .accordion-003 summary::-webkit-details-marker {
  display: none;
}
#lower-page .accordion-003 summary::before{
  width: 23px;
  height: 23px;
  content: "";
  background: rgba(42,180,248,0.1);
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
#lower-page .accordion-003 summary::after {
  content: '';
  width: 9px;
  height: 5px;
  transition: transform .2s;

  background-image: url(../images/common/icon-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
#lower-page .accordion-003[open] summary::after {
  transform: rotate(180deg);
}
#lower-page .accordion-003 .detail {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  transition: all .2s;
}
#lower-page .accordion-003[open] .detail {
  transform: none;
  opacity: 1;
  margin-top: 5px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
#lower-page .accordion-003[open] .detail .th{
  background: #f5f5f5;
  width: 40%;
  padding: 5px 10px;
  border-top: 2px solid #fff;
  letter-spacing: 0.05em;
  font-size: 14px;
}
#lower-page .accordion-003[open] .detail .td{
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 960px){
  #lower-page h2{
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px){
  #lower-page .category-wrap-parent,
  #lower-page .category-wrap{
    display: none;
  }
  #lower-page .school-wrap .info .img{
    width: 100%;
    margin-bottom: 2rem;
  }
  #lower-page .school-wrap .info .text{
    width: 100%;
  }
  #lower-page .accordion-003{
    width: 100%;
  }
}
@media screen and (max-width: 570px){
  #lower-page h2{
    font-size: 2.4rem;
    line-height: 1.2;
  }
  #lower-page .school-wrap{
    margin-top: 2rem;
    padding: 2rem;
  }
  #lower-page .school-wrap .info .text{
    gap: 10px;
  }
  #lower-page .school-wrap .info .text .address::before,
  #lower-page .school-wrap .info .text .license-list::before{
    width: 20px;
    height: 17px;
  }
  #lower-page .school-wrap .info .text .address,
  #lower-page .school-wrap .info .text .license-list{
    padding-left: 2.0em;
  }
  #lower-page .accordion-003[open] .detail .th{
    font-size: 13px;
    line-height: 1.2;
  }
  #lower-page .accordion-003 summary{
    padding: 7px 15px 7px 5px;
    letter-spacing: 0;
  }
}

#lower-page .school-list{
  margin: 6rem 0;
}
#lower-page .school-list p{
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
  margin-bottom: 15px;
}
#lower-page .school-list table{
  width: 100%;
  border-top: 1px solid #fff;
  border-collapse: collapse;
}
#lower-page .school-list table tr:nth-child(2n+1){
  background: rgba(255, 255, 255, 0.4);
}
#lower-page .school-list table tr td{
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #fff;
}
#lower-page .school-list table tr td:nth-child(1){
  width: 10%;
}
#lower-page .school-list table tr td:nth-child(2){
  width: 40%;
}
#lower-page .school-list table tr td:nth-child(3){
  width: 50%;
  font-weight: 400;
  font-size: 15px;
}
#lower-page .school-list table tr td a{
  text-decoration: underline;
  font-size: 15px;
}

#lower-page .school-list .label{
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
  padding: 2px 15px;
  border-radius: 20px;
  display: inline-block;
  white-space: nowrap;
}
#lower-page .school-list .label.western{
  background: #3999ce;
}
#lower-page .school-list .label.central{
  background: #ef8e81;
}
#lower-page .school-list .label.eastern{
  background: #f1d267;
}
#lower-page .school-list .label.izu{
  background: #77b587;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 960px){
}
@media screen and (max-width: 768px){
  #lower-page .school-list{
    margin: 0 0 4rem;
  }
  #lower-page .school-list table tr td{
    display: block;
    width: 100%!important;
  }
  #lower-page .school-list table tr td:not(:nth-child(3n)){
    border: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 570px){
  #lower-page .school-list p{
    font-size: 16px;
    margin-bottom: 7px;
  }
  #lower-page .school-list table tr td{
    padding: 1rem;
  }
}
