@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

/* common */

*{

}

body{

}

ul{
  list-style: none;
}

div#wrapper{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #473931;
  line-height: 1.8em;
}

a{
  text-decoration: none;
}

a:hover{
  opacity: 0.6;
  text-decoration: none;
}

a:visible{
  text-decoration: none;
}


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

 
/* header */

header{
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  z-index: 99;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

h1{
  width: 60%;
  padding: 16px 0 16px 20px;
  box-sizing: border-box;
}

h1 img{
  height: 50px;
}

header.change-color{
  background: #49C2F1;
}

/* nav */

.openbtn{
  width: 30px;
  height:30px;
  margin-right: 20px;
  background: url(img/menu_btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
}


.openbtn.active{
  background:url(img/menu_close.svg); 
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 9999;
}

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:0;
    right: -120%;
  width:60%;
    height: 100vh;/*ナビの高さ*/
  background:#49C2F1;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    list-style-type: none;
    margin: 100px 0;
    padding: 0;
}

/*リストのレイアウト設定*/

#g-nav li{
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: block;
  border-bottom: 1px solid #fff;
}

#g-nav li:last-child{
  border: none;
}

#g-nav li a{
  color: #fff;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#g-nav li.access{
  border: none;
}

#g-nav li.btn a{
  padding: 50px 0 0 0; 
}

#g-nav li img{
  width: 100%;
}


@media screen and (min-width:981px) {
#g-nav{
  width:30%;
}
}



/* container */
div#container{

}

/* mv */
section#mv{
  width: 100%;
  margin: 0 auto;
  position: relative;
}


.slick-slide img{
  width: 100%;
  padding-top: 90px;
  display: block;
}

ul.slider li.a,
ul.slider li.b,
ul.slider li.c
{
    background: #49C2F1;
}

ul.slider li.d{
  background: #448BB8;
}

ul.slider li.e{
  background: #EE8D8A;
}

ul.slider li.f{
  background: #66CCCC;
}



.slick-dots {
    position: absolute;
    bottom: -83px;
    display: block;
    width: 100%;
    padding: 30px 0 30px 20px;
    box-sizing: border-box;
    margin: 0;
    list-style: none;
    text-align: left;
    background: #fff;
}

.slick-dots li button:before{
  content: url(img/slick/off.svg);
  width: 10px;
  opacity: 1;
}

.slick-dots li.slick-active button:before{
  content: url(img/slick/active.svg);
  opacity: 1 !important;
}

section#mv div.button{
  position: absolute;
  bottom: -85px;
  right: 0;
  z-index: 1;
}

section#mv div.button img{
  width: 150px;
}

@media screen and (min-width:981px) {

.slick-slide img{
  max-width: 980px;
  margin:0 auto;
}

.slick-dots {
    position: absolute;
    bottom: -120px;
    display: block;
    width: 100%;
    padding: 50px 0 50px 60px;
    box-sizing: border-box;
    margin: 0;
    list-style: none;
    text-align: left;
    background: #fff;
}

section#mv div.button{
  position: absolute;
  bottom: -110px;
  right: 40px;
  z-index: 1;
}

section#mv div.button img{
  width: 200px;
}


}

@media screen and (min-width:1020px) {
.slick-dots {
    padding: 50px 0 50px 300px;
}

section#mv div.button{
  right: 100px;
}


}




/* section01 */
section#section01{
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  background: url(img/back01.jpg);
  line-height: 0;
}

section#section01 div.inner{
  width: 100%;
  margin: 0 auto;
}

section#section01 div.inner h2{
  width: 80%;
  margin: 0 auto;
}

section#section01 div.inner p{
  width: 100%;
  margin: 0 auto;
}

section#section01 div.inner img{
  width: 100%;
}

section#section01 div.wave{
  display: none;
}

@media screen and (min-width:981px) {

section#section01{
  padding-top: 150px;
}

section#section01 div.inner{
  width: 980px;
  margin: 0 auto;
  padding-bottom: 0px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

section#section01 div.inner h2{
  width: 45%;
}

section#section01 div.inner p{
  width: 45%;
}

section#section01 div.wave{
  display: block;
}

section#section01 div.wave img{
  width: 100%;
}

}

/* section02 */
section#section02{
  width: 100%;
  margin: 0 auto;
  background: #49C2F1;
  line-height: 0
}

section#section02 div.inner{
}

section#section02 div.inner h2,
section#section02 div.inner p
{
  width: 80%;
  margin: 0 auto;
}

section#section02 div.inner p{
  padding-top: 60px;
}

section#section02 div.inner img{
  width: 100%;
}

@media screen and (min-width:981px) {

section#section02 div.inner{
  width: 980px;
  margin: 0 auto;
  padding-bottom: 100px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section#section02 div.inner h2{
  width: 48%;
}

section#section02 div.inner p{
  width: 40%;
}

section#section02 div.inner h2{
  display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

}

/* section03 */
section#section03{
  width: 100%;
  margin: 0 auto;
  position: relative;
}

section#section03 div.inner{
  padding-bottom: 30px;
}

section#section03 div.inner h2{
  width: 100%;
}

section#section03 div.inner img{
  width: 100%;
}

section#section03 div.inner p{
  width: 75%;
  margin: 0 auto 30px;
  text-align: justify;
}

section#section03 div.inner p span{
  font-weight: bolder;
}

section#section03 div.inner p.small{
  font-size: 0.8em;
  line-height: 1.5em;
}

section#section03 div.inner p.pic{
  margin: 25px auto;
}

section#section03 div.movie{
  width: 75%;
  margin:  0 auto;
  padding-top: 60px;
  margin-top:-60px; 
}

section#section03 div.movie video{
  width: 100%;
}

section#section03 div.wave{
  width: 100%;
  height: 80px;
  background: url(img/wave01.png);
  background-size: contain;
}


@media screen and (min-width:981px) {

section#section03 div.inner{
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
}

section#section03 div.inner h2{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-image: url(img/wave_pc02.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

section#section03 div.inner h2 img{
  width: 980px;
}

section#section03 div.inner div.dis{
  width: 860px;
  margin:  0 auto;
  font-size: 1.2em;
  line-height: 1.8em;
}

section#section03 div.inner p{
  width: 100%;
}

section#section03 div.inner p.pic{
  width: 50%;
  margin: 25px auto;
}

section#section03 div.movie{
  width: 100%;
}

}


/* section04 */

section#section04{
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  background: #E4F6FD;
  position: relative;
}

#svg-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

section#section04 div.inner h2{
  width: 80%;
  margin: 0 auto;
  padding-bottom: 50px;
}

section#section04 div.inner h3{
  margin-bottom: 17px;
}

section#section04 div.inner img{
  width: 100%;
}

section#section04 div.point{
  width: 80%;
  margin: 0 auto 53px;
}

section#section04 div.point.last{
  margin-bottom: 0;
}

section#section04 div.point p{
  width: 100%;
  text-align: justify;
}

section#section04 div.point p.dis{
  margin-bottom: 30px;
}

section#section04 div.point p span{
  font-weight: bolder;
}

@media screen and (min-width:981px) {

section#section04 {
  padding-top: 60px;
}

section#section04 div.inner{
  width: 980px;
  margin: 0 auto;
}

section#section04 div.inner h2{
  width: 80%;
}

section#section04 div.inner h3 img{
display:block;
  width: 100%;
  height: auto;
  object-fit:cover;
}

section#section04 div.point_wrap{
  width: 100%;
      display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section#section04 div.point{
  width: 30%;
  margin: 0 auto;
  display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

section#section04 div.point p{
flex-grow:1;
}

section#section04 div.point img.img{
  margin-top: auto;
  display: block;
}


}

/* section05 */

section#section05{
  width: 100%;
  margin: 0 auto;
  padding-top: 84px;
  background: #E4F6FD;
  position: relative;
}

section#section05 div.inner{
  width: 80%;
  margin: 0 auto;
  padding-bottom: 80px;
}

section#section05 h2{
  width: 100%;
  text-align: center;
  line-height: 0;
}

section#section05 h2 img{
  width: 100%;
}

section#section05 div.box_inner{
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  border-left:1px solid #49C2F1;
  border-right:1px solid #49C2F1;
  border-bottom:1px solid #49C2F1;
  border-radius: 0 0 10px 10px;  
  box-sizing: border-box;
  background: #C8EDFB;
  position: relative;
}


section#section05 h3{
  width: 80%;
  margin: 0 auto;
  padding-top: 55px;
  padding-bottom: 22px;
  text-align: center;
}

section#section05 p{
  width: 80%;
  margin: 0 auto;
  text-align: justify;
}

section#section05 h3 img{
  width: 100%;
}

section#section05 div.movie{
  width: 80%;
  margin: 0 auto;
}

section#section05 div.movie video{
  width: 100%;
}

section#section05 p img{
  width: 100%;
  padding-bottom: 22px;
}

section#section05 div.profile{
  width: 80%;
  margin: 0 auto;
  padding-top: 55px;
}

section#section05 div.profile div.pic{
  width: 100%;
}

section#section05 div.profile div.pic img{
  width: 100%;
}

section#section05 div.profile div.txt{
  width: 100%;
}

section#section05 div.profile div.txt p{
  width: 100%;
  font-size: 0.9em;
}

section#section05 div.profile div.txt p.name{
  font-size: 0.9em;
  font-weight: bolder;
  padding-bottom: 10px;
}

section#section05 div.profile div.txt p.name span{
  font-size: 1.2em;
}

section#section05 div.wave{
  width: 100%;
  height: 80px;
  background: url(img/wave02.png);
  background-size: contain;
  position: absolute;
  bottom: -50px;
}

@media screen and (min-width:981px) {

section#section05{
  padding-top: 150px;
}

section#section05 div.inner{
  width: 980px;
}

section#section05 h3{
  width: 40%;
}

section#section05 div.box_inner{
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  border-left:3px solid #49C2F1;
  border-right:3px solid #49C2F1;
  border-bottom:3px solid #49C2F1;
  border-radius: 0 0 10px 10px;  
  box-sizing: border-box;
  background: #C8EDFB;
  position: relative;
}

section#section05 div.profile{
  width: 80%;
  margin: 0 auto;
  padding-top: 55px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section#section05 div.profile div.pic{
  width: 46%;
}

section#section05 div.profile div.pic img{
  width: 100%;
}

section#section05 div.profile div.txt{
  width: 46%;
}

}


/* section06 */
section#section06{
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 130px;
  background: url(img/back02.jpg);
}

section#section06 div.inner{
  width: 80%;
  margin: 0 auto;
}

section#section06 h2{
  width: 100%;
  padding-bottom: 30px;
  text-align: center;
  line-height: 0;
}

section#section06 h2 img{
  width: 70%;
}

section#section06 div.tab_box div.btn_area {
  margin:0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section#section06 div.tab_box p.tab_btn{
  width: 33%;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease 0s;
  opacity: 0.4;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 1em 2em 0 0.5em;
}

section#section06 div.tab_box p.tab_btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: scaleY(1.3) perspective(.6em) rotateX(5deg);
  transform-origin: bottom left;
  border-radius: 8px 8px 0 0;
}

section#section06 div.tab_box p.tab_btn.a::before {
  background: #3399CC;
}

section#section06 div.tab_box p.tab_btn.b::before {
  background: #EE8D8A;
}

section#section06 div.tab_box p.tab_btn.c::before {
  background: #66CCCC;
}


section#section06 div.tab_box p.tab_btn img{
  width: 100%;
}

section#section06 div.tab_box p.active {
  opacity: 1;
}

section#section06 div.tab_box div.panel_area {
    width: 100%;
    border-top: solid 2px #3399CC;
    border-bottom: solid 2px #3399CC;
    background: #fff;
    padding: 0px 20px;
    box-sizing: border-box;
}

section#section06 div.tab_box div.tab_panel {
    display:none;
}

section#section06 div.tab_box div.tab_panel.active {
    display:block;
}

section#section06 div.tab_box div.panel_area ul{

}

section#section06 div.tab_box div.panel_area ul li{
  padding: 20px 10px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px #3399CC dotted;
}

section#section06 div.tab_box div.panel_area ul li:last-child{
  border: none;
}

section#section06 div.tab_box div.panel_area ul li div.text{
  width: 70%;
  font-size: 0.8em;
  line-height: 1.6em;
}

section#section06 div.tab_box div.panel_area ul li div.pic{
  width: 20%;
}

section#section06 div.tab_box div.panel_area ul li div.pic img{
  width: 75%;
}

section#section06 div.tab_box div.panel_area ul li div.pic img.small{
  width: 90%;
}



@media screen and (min-width:450px) {
section#section06 div.tab_box div.btn_area {
  margin:0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

section#section06 div.tab_box div.panel_area {
    width: 100%;
    border-top: solid 2px #3399CC;
    border-bottom: solid 2px #3399CC;
    background: #fff;
    padding: 0px 20px;
    box-sizing: border-box;
}

section#section06 div.tab_box p.tab_btn{
  width: 33%;
  padding: 2em 2em 0 0em;
  text-align: left;
}

section#section06 div.tab_box p.tab_btn img{
width: 60px;
    max-width: 80%;
    padding-left: 20px;
}




}

@media screen and (min-width:521px) {


section#section06 div.tab_box div.btn_area {
  margin:0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}


section#section06 div.tab_box p.tab_btn{
  width: 33%;
  padding: 2em 2em 0 0em;
  text-align: left;
}

section#section06 div.tab_box p.tab_btn img{
    width: 100px;
    max-width: 60%;
    padding-left: 20px;
}

}

@media screen and (min-width:981px) {

section#section06 div.inner{
  width: 980px;
}

section#section06 h2 img{
  width: 300px;
}


section#section06 div.tab_box div.btn_area {
  margin:0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

section#section06 div.tab_box p.tab_btn img{
  width: 35%;
  padding-left: 40px;
}


section#section06 div.tab_box p.tab_btn{
  width: 33%;
  padding: 2em 2em 0 0em; 
  text-align: left;
}

section#section06 div.tab_box div.tab_panel ul{
  padding: 30px 0;
}
section#section06 div.tab_box div.panel_area ul li{
  width: 80%;
  margin: 0 auto;
  padding:30px 30px; 
}

section#section06 div.tab_box div.panel_area ul li div.pic{
  width: 20%;
  display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

section#section06 div.tab_box div.panel_area ul li div.pic img{
  width: 60%;
}

section#section06 div.tab_box div.panel_area ul li div.pic img.small{
  width: 70%;
}


section#section06 div.tab_box div.panel_area ul li div.text{
  width: 70%;
  font-size: 1em;
}
}

/* section07 */

section.section07{
  width: 100%;
  margin: 0 auto;
  background: #E4F6FD;
  position: relative;
}

section.section07 div.wave{
  width: 100%;
  height: 80px;
  background: url(img/wave01.png);
  background-size: contain;
  position: absolute;
  top: -80px;
}


section.section07 div.inner{
  width: 80%;
  margin: 0 auto;
  padding-top: 50px;
}


section.section07 div.box_inner{
  width: 100%;
  padding: 10px;
  background: #49C2F1;
  box-sizing: border-box;
  position: relative;
}

section.section07 div.box_inner:before{
  content: "";
  background: url(img/img36.png) no-repeat;
  background-size: contain;
  position: absolute;
  width: 60px;
  height: 60px;
  top: -10px;
  left: -10px;
}

section.section07 div.box_inner:after{
  content: "";
  background: url(img/img37.png) no-repeat;
  background-size: contain;
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -10px;
  right: -10px;
}

section.section07 div.box_inner div.box_border{
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
  border: 1px dotted #fff;
}

section.section07 div.box_inner img{
  width: 100%;
}

section.section07 img.tel{
  padding: 20px 0;
}

@media screen and (min-width:981px) {

section.section07 div.inner{
  width: 980px;
  margin: 0 auto;
}

section.section07 div.box_inner div.box_border{
  display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

}

section.section07 div.box_inner div.item{
  width: 40%;
  margin: 0 auto;
}

}

/* section08 */

section#section08{
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  background: #E4F6FD;
}

section#section08 div.inner{
  width: 80%;
  margin: 0 auto;
}

section#section08 div.inner h2{
  width: 100%;
}

section#section08 div.inner h2 img{
  width: 100%;
}

section#section08 p{
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}

section#section08 p img{
  width: 95%;
}

section#section08 div.plan{
  width: 100%;
  margin: 0 auto;
  padding-bottom: 38px;
}

section#section08 div.plan h3{
  width: 100%;
  background: #49C2F1;
  border-radius: 10px 10px 0 0;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

section#section08 div.plan h3 img{
  width: 100%;
}

section#section08 div.plan ul{
  background: #fff;
  border-radius: 0 0 10px 10px;   
  padding: 0 15px 0 15px;
  box-sizing: border-box; 
}

section#section08 div.plan.subsc ul{
  padding: 0 15px 15px 15px;
}

section#section08 div.plan ul li{
  width: 100%;
  line-height: 0;
  border-bottom: 1px dotted #49C2F1;
  text-align: center;
}

section#section08 div.plan ul li:last-child{
  border-bottom:none; 
}

section#section08 div.plan.subsc ul li{
  padding-top: 10px;
  padding-bottom: 10px;
}

section#section08 div.plan.subsc ul li:last-child{
  padding-top: 10px;
  padding-bottom: 0;
}

section#section08 div.plan ul li img{
  width: 95%;
}

section#section08 div.plan_hojin{
  width: 100%;
}

section#section08 div.plan_hojin h3{
  width: 100%;
  background: #e85298;
  border-radius: 10px 10px 0 0;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

section#section08 div.plan_hojin h3 img{
  width: 100%;
}

section#section08 div.plan_hojin p{
  background: #fffcdb;
  border-radius: 0 0 10px 10px;   
  padding:15px 25px;
  margin-bottom: 0;
  box-sizing: border-box; 
  font-size: 0.9em;
  text-align: justify;
}

section#section08 div.plan_hojin p span{
  color: #e85298;
}

@media screen and (min-width:981px) {

section#section08 div.inner{
  width: 980px;
}

section#section08 div.inner h2{
  text-align: center;
  margin-bottom: 20px;
}

section#section08 div.inner h2 img{
  width: 500px;
}

section#section08 p img{
  width: 40%;
}

section#section08 div.plan_box{
  display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


section#section08 div.plan{
  width: 48%;
}

section#section08 div.plan_hojin{
  width: 100%;
  margin: 0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section#section08 div.plan_hojin h3{
  width: 40%;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: 10px 0px 0px 10px;
    display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

section#section08 div.plan_hojin h3 img{
  width: 100%;
}

section#section08 div.plan_hojin p{
  width: 60%;
  border-radius: 0px 10px 10px 0px;
  font-size: 1.2em;
  line-height: 2em;
  padding:50px 25px;
}

}

/* section09 */

section#section09{
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  background: #E4F6FD;
}

section#section09 div.inner{
  width: 80%;
  margin: 0 auto;
}

section#section09 div.inner h2{
  width: 100%;
  padding-bottom: 30px;
}

section#section09 div.inner h2 img{
  width: 100%;
}

section#section09 ul{
 
}

section#section09 ul li{
  padding-bottom: 30px;
}

section#section09 ul li h3{
  padding-bottom: 10px;
  font-weight: bolder;
  position: relative;
  text-indent: -1rem;
  padding-left: 1rem;
}

section#section09 ul li h3:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(img/img34.svg) no-repeat;
  background-size: contain;
  transform: translateY(4px);
}

section#section09 ul li p{
  padding-left: 1rem;
  text-align: justify;
}

section#section09 ul li p a{
  color: #E85298;
}

@media screen and (min-width:981px) {

section#section09 div.inner{
  width: 980px;
}

section#section09 div.inner h2{
  text-align: center;
}

section#section09 div.inner h2 img{
  width: 500px;
}

section#section09 ul{
  width: 760px;
  margin: 0 auto;
}

}


/* footer */

footer{
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
  background: #E4F6FD;  
  font-family: 'Zen Maru Gothic', sans-serif;
}

footer div.inner{
  width: 80%;
  margin: 0 auto;
}

footer div.inner h2{
  width: 100%;
  padding-bottom: 10px;
}

footer div.inner h2 img{
  width: 100%;
}

footer div.time{
  width: 100%;
}

footer div.time img.schedule{
  width: 100%;
}

footer div.time p{
  font-size: 0.8em;
  line-height: 1.5em;
}

footer div.time p span{
  color: #49c2f1;
}

footer div.map{
  padding: 20px 0;
}

footer div.map iframe{
  margin-bottom: 20px;
}

footer div.map p{
  width: 80%;
  padding: 20px 0;
  margin: 0 auto;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;  
}

footer div.address p{
font-size: 0.8em;
}

footer div.address p a{
color: #473931;
}

footer small{
  width: 100%;
  padding-top: 50px;
  padding-bottom: 20px;
  display: block;
  text-align: center;
}

@media screen and (min-width:981px) {

footer div.inner{
  width: 980px;
}

footer div.inner h2 img{
  width: 300px;
}

footer div.info_wrap{
  display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer div.time{
  width: 48%;
}

footer div.address_wrap{
  width: 48%;
}

footer div.map{
  padding: 0 0 20px 0;
}

footer div.address p{
font-size: 1em;
}

}

/* page-top */


#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 9;
}
#page-top a {
  background: #72C7CA;
  text-decoration: none;
  color: #fff;
  width: 40px;
  padding: 18px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}


@media screen and (min-width:981px) {
#page-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 14px;
  line-height: 1;
  z-index: 9;
}
#page-top a {
  background: #72C7CA;
  text-decoration: none;
  color: #fff;
  width: 50px;
  padding: 28px 10px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
}



