@charset "UTF-8";
@import url('http://fonts.cdnfonts.com/css/canto');

body {
    font-family:'Roboto','Hiragino Sans','Meiryo',
    'Hiragino Kaku Gothic ProN',sans-serif;
    font-size: 12px;
    color: #333;
}

/* 画面外にいる状態 */
.fadein {
    opacity : 0.0;
    transform : translate(0, 50px);
    transition : all 1800ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/*-- メインブルー　#0893dd --*/
/*-- 薄ブルー　#ebf5fa --*/

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*----------------------- PC -----------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/

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

/*----------------------   header   ----------------------*/

#sp { display: none; }

header {
  display: block;
  width: 1500px;
  margin: 0 auto;
}
header .head_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
header .head_menu .menu_box {
  display: block;
  width: 50%;
}
header .head_menu .menu_box h1 img {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  padding-top: 30px;
}
header .head_menu .menu_box h1 span {
  display: inline-block;
  vertical-align: middle;
  color: #0893dd;
  font-size: 16px;
  padding: 40px 15px 5px;
}
header .head_menu .menu_box ul { display: flex; }
header .head_menu .menu_box li {
  list-style: none;
  font-size: 18px;
  text-align: center;
  display: table;
}
header .head_menu .menu_box li span {
  font-size: 12px;
}
header .head_menu .menu_box li a {
  display: table-cell;
  vertical-align: middle;
  width: 190px;
  height: 100px;
  color: #0893dd;
  text-decoration: none;
  transition: .3s;
}
header .head_menu .menu_box li a:hover {
  color: white;
  background-color: #0893dd;
  transition: .3s;
}

/*----------------------   wrapper   ----------------------*/

#wrapper { display: none; }
.slide.pc {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 50%;
  overflow: hidden;
}
@keyframes slideshow {
    0% { opacity: 0; }
   10% { opacity: 1; }
   28% { opacity: 1; }
   38% { opacity: 0; }
  100% { opacity: 0; }
}
.slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  animation: slideshow 32s linear infinite;
}
.slide img:nth-child(2) { animation-delay: 8s; }
.slide img:nth-child(3) { animation-delay: 16s; }
.slide img:nth-child(4) { animation-delay: 24s; }
.slide img:last-child { animation-delay: 32s; }
.slide.sp { display: none; }
/*
#wrapper {
  width: 1500px;
  margin: 0 auto 50px;
  height: 750px;
  position:relative;
  color: #fff;
  text-shadow: rgba(0,0,0,0.1) 2px 2px 0px;
}
#slider-wrap {
  width: 1500px;
  height: 750px;
  position: relative;
  overflow: hidden;
}
#slider-wrap ul#slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#slider-wrap ul#slider li {
  float: left;
  position: relative;
  width: 1500px;
  height: 750px;
}
.btns{
  position: absolute;
  width: 50px;
  height: 60px;
  top: 50%;
  margin-top: -25px;
  line-height: 57px;
  text-align: center;
  cursor: pointer;
  background: #0893dd;
  z-index: 100;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.btns:hover{ background:rgba(8,147,221,0.5); }
#next{ right:-50px; border-radius:7px 0px 0px 7px; }
#previous{ left:-50px; border-radius:0px 7px 7px 7px; }
#counter{
  top: 30px;
  right: 35px;
  width: auto;
  position: absolute;
}
#slider-wrap.active #next{ right: 0px;}
#slider-wrap.active #previous{ left: 0px;}
#pagination-wrap{
  min-width: 20px;
  margin-top: 700px;
  margin-left: auto;
  margin-right: auto;
  height: 15px;
  position: relative;
  text-align: center;
}
#pagination-wrap ul { width:100%; }
#pagination-wrap ul li{
  margin: 0 4px;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  position: relative;
  top: 0;
}
#pagination-wrap ul li.active{
  width: 12px;
  height: 12px;
  top: 3px;
  opacity: 1;
  box-shadow: rgba(0,0,0,0.1) 1px 1px 0px;
}
#slider-wrap ul, #pagination-wrap ul li{
  -webkit-transition: all 0.3s cubic-bezier(1,.01,.32,1);
  -moz-transition: all 0.3s cubic-bezier(1,.01,.32,1);
  -o-transition: all 0.3s cubic-bezier(1,.01,.32,1);
  -ms-transition: all 0.3s cubic-bezier(1,.01,.32,1);
  transition: all 0.3s cubic-bezier(1,.01,.32,1);
}

*/

/*----------------------   content01   ----------------------*/

#content01 {
  background-color: #ebf5fa;
  color: #0893dd;
  display: block;
  width: 1200px;
  margin: 80px auto;
  position: relative;
}
#content01 ul { display: flex; }
#content01 li {
  list-style: none;
  margin: 0 50px;
  padding: 30px;
  font-size: 18px;
  text-align: center;
}
#content01 li.title {
  display: flex;
  align-items: center;
  height: 20px;
  padding: 15px 30px;
  margin: auto 0;
  font-size: 22px;
  font-weight: 500;
  border-right: 1px solid #0893dd;
}
#content01 li.day {
  font-weight: nomal;
  color: #333;
  padding: 0 50px;
  margin: auto 0;
}
#content01 li.text {
  font-weight: 500;
  color: #333;
  font-size: 20px;
  padding: 0 50px;
  margin: auto 0;
}
#content01 li.more {
  font-weight: 500;
  display: block;
  margin: 0 0 0 auto;
}
#content01 li.more a {
  text-decoration: none;
  color: #0893dd;
}

/*----------------------   content02   ----------------------*/

#content02 {
  display: block;
  margin: 0 auto;
  text-align: center;
}
#content02 h2 {
  color: #0893dd;
  font-size: 28px;
  padding-bottom: 40px;
}
#content02 h2 span {
  font-size: 18px;
  font-weight: 300;
  line-height: 3;
}
#content02 p {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
}

/*----------------------   content03   ----------------------*/

#content03 {
  display: block;
  width: 1500px;
  margin: 100px auto;
  position: relative;
}
#content03 .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 40px;
}
#content03 .wrap .mini_wrap {
  background-color: #ebf5fa;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 700px;
  margin: 0 auto;
  position: relative;
}
#content03 .wrap .mini_wrap div img {
  display: block;
  width: 330px;
  padding: 40px 30px 40px 40px;
}
#content03 .wrap .mini_wrap div.text_box  {
  display: block;
  width: 370px;
  padding: 40px 40px 40px 0;
}
#content03 .wrap .mini_wrap div.text_box h3 {
  color: #0893dd;
  font-size: 28px;
  padding-bottom: 20px;
}
#content03 .wrap .mini_wrap div.text_box p {
  font-size: 16px;
  line-height: 1.5;
}
#content03 .wrap .mini_wrap div.text_box a {
  display: block;
  font-size: 16px;
  background-color: #0893dd;
  border: 1px solid #0893dd;
  color: white;
  text-align: center;
  margin: 25px 0 0;
  padding: 15px 0;
  text-decoration: none;
  transition: .3s;
}
#content03 .wrap .mini_wrap div.text_box a:hover {
  background-color: #ebf5fa;
  border: 1px solid #0893dd;
  color: #0893dd;
  transition: .3s;
}

/*----------------------   content04   ----------------------*/

#content04 {
  display: block;
  width: 100%;
  background-image: url('../image/contact_wrap.jpg');
  background-size: cover;
  position: relative;
  padding-bottom: 70px;
}
#content04 h2 {
  text-align: center;
  color: white;
  font-size: 28px;
  padding: 70px 0 50px;
}
#content04 h2 span {
  font-size: 18px;
  line-height: 3;
  font-weight: 300;
}
#content04 .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 1000px;
  margin: 0 auto;
}
#content04 .wrap div {
  display: table;
  width: 450px;
}
#content04 .wrap div a {
  display: table-cell;
  vertical-align: middle;
  color: #0893dd;
  text-align: center;
  width: 450px;
  height: 100px;
  background-color: white;
  border: 3px solid white;
  text-decoration: none;
  font-size: 20px;
  font-weight: nomal;
  transition: .3s;
}
#content04 .wrap div a:hover {
  background-color: #46aee5;
  border: 3px solid #fff;
  color: white;
  transition: .3s;
}
#content04 .wrap div h3 {
  font-size: 16px;
  font-weight: nomal;
}
#content04 .wrap div p {
  font-size: 32px;
  font-weight: nomal;
  line-height: 1.5;
}
#content04 .wrap div p span { font-size: 14px; }


/*----------------------   footer   ----------------------*/

footer {
  display: block;
  width: 1500px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
footer div {
  display: block;
  width: 750px;
  position: relative;
}
footer div p {
  display: inline-block;
  vertical-align: middle;
  color: #0893dd;
  font-size: 16px;
  padding-top: 5px;
}
footer div h5 {
  color: #0893dd;
  font-size: 18px;
  font-weight: 300;
  padding-top: 20px;
  line-height: 1.5;
}
footer div img {
  display: inline-block;
  vertical-align: middle;
  width: 230px;
  color: #0893dd;
  margin-right: 15px;
}
footer div ul {
  display: flex;
  width: 700px;
  margin: 20px 0 0 auto;
}
footer div ul li {
  list-style: none;
  margin: 0 0 0 90px;
  font-size: 18px;
  text-align: right;
}
footer div ul li a {
  color: #0893dd;
  text-decoration: none;
  transition: 0.8s; /*変形の時間*/
  position: relative; /*アンダーラインの位置を決めるための基準 */
}
footer div ul li a::after {
  opacity: 0;
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #0893dd;
  bottom: -10px;       /*アンダーラインが位置する、各リストの下端からの高さ　ヘッダーの下端に合わせています*/
  visibility: hidden; /*ホバー前に、アンダーラインを可視化しない*/
}
footer div ul li a:hover::after {
  visibility: visible; /*ホバー後、アンダーラインを可視化する*/
  opacity: 1;       /*アンダーラインが透明な状態からアニメーションが開始され、ホバーを話して終了する際も、徐々に透明な状態に戻る。*/
  transition: 0.8s; /*変形の時間*/
}
footer div p.copyright {
  display: block;
  width: auto;
  color: #0893dd;
  text-align: right;
  margin-top: 50px;
  font-size: 12px;
  letter-spacing: .1em;
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 50px;
  bottom: -50px;
  background: #0893dd;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 23px;
  color: #fff;
  position: absolute;
  width: 23px;
  height: 23px;
  top: -3px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

}

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*----------------------- SP -----------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/

@media screen and (max-width: 749px) {

#sp ,
header#pc { display: none; }
header#sp {
  display: block;
  width: 100%;
  height: 80px;
}
header#sp .header {
  display: block;
  width: 300px;
  padding: 20px;
}
header#sp .header h1 img {
  display: inline-block;
  vertical-align: middle;
  width: 45%;
}
header#sp .header h1 p {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  color: #0893dd;
  padding-left: 10px;
}
/*　ハンバーガーメニューボタン　*/
.hamburger {
   display: block;
   position: fixed;
   z-index: 3;
   top: 15px;
   right: 20px;
   width: 35px;
   height: 35px;
   cursor: pointer;
   text-align: center;
   background-color: #0893dd;
   padding: 5px;
}
.hamburger span {
   display: block;
   position: absolute;
   width: 25px;
   height: 3px ;
   left: 10px;
   background: #fff;
   -webkit-transition: 0.3s ease-in-out;
   -moz-transition: 0.3s ease-in-out;
   transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) { top: 11px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 31px; }
/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
   top: 16px;
   left: 11px;
   background: white;
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
   top: 16px;
   background: white;
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   transform: rotate(45deg);
}
/* メニュー背景　*/
nav.globalMenuSp {
   position: fixed;
   z-index: 2;
   top: 0;
   left: 0;
   background-color: #0893dd;
   text-align: left;
   width: 100%;
   height: auto;
   transform: translateX(100%);
   transition: all 0.6s;
   font-size: 14px;
   padding: 30px 0 80px;
}
nav.globalMenuSp ul {
   margin: 0 auto;
   padding: 0;
   width: 100%;
}
nav.globalMenuSp ul li {
   list-style-type: none;
   padding: 0;
   width: 80%;
   display: block;
   margin: 0 auto;
   transition: .4s all;
   border-bottom: 1px solid white;
}
nav.globalMenuSp ul li a {
   display: block;
   padding: 40px 20px;
   color: white;
   text-decoration :none;
   font-size: 14px;
}
nav.globalMenuSp ul li a span {
   font-size: 10px;
}
/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
   opacity: 100;
   display: block;
   transform: translateX(0%);
}

/*----------------------   wrapper   ----------------------*/

#wrapper { display: none; }
.slide.sp {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
}
@keyframes slideshow {
    0% { opacity: 0; }
   10% { opacity: 1; }
   28% { opacity: 1; }
   38% { opacity: 0; }
  100% { opacity: 0; }
}
.slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  animation: slideshow 32s linear infinite;
}
.slide img:nth-child(2) { animation-delay: 8s; }
.slide img:nth-child(3) { animation-delay: 16s; }
.slide img:nth-child(4) { animation-delay: 24s; }
.slide img:last-child { animation-delay: 32s; }
.slide.pc { display: none; }

/*----------------------   content01   ----------------------*/

#content01 {
  background-color: #ebf5fa;
  color: #0893dd;
  display: block;
  width: 90%;
  margin: 40px auto;
  position: relative;
}
#content01 ul { display: flex; }
#content01 li {
  list-style: none;
  margin: 0 50px;
  padding: 30px;
  text-align: center;
}
#content01 li.title { display: none; }
#content01 li.day {
  font-weight: nomal;
  color: #333;
  padding: 0 15px;
  font-size: 12px;
  margin: auto 0;
}
#content01 li.text {
  font-weight: 500;
  color: #333;
  font-size: 14px;
  padding: 0;
  margin: auto 0;
  display: block;
  text-align: left;
}
#content01 li.more {
  font-weight: 500;
  display: block;
  font-size: 12px;
  margin: 0 0 0 auto;
}
#content01 li.more a {
  text-decoration: none;
  color: #0893dd;
}

/*----------------------   content02   ----------------------*/

#content02 {
  display: block;
  width: 90%;
  margin: 80px auto;
  text-align: center;
}
#content02 h2 {
  color: #0893dd;
  font-size: 24px;
  padding-bottom: 20px;
}
#content02 h2 span {
  font-size: 14px;
  font-weight: 300;
  line-height: 3;
}
#content02 p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}

/*----------------------   content03   ----------------------*/

#content03 {
  display: block;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
#content03 .wrap .mini_wrap {
  background-color: #ebf5fa;
  display: block;
  width: 100%;
  margin: 20px auto 0;
  position: relative;
}
#content03 .wrap .mini_wrap div img {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 40px 0 0;
}
#content03 .wrap .mini_wrap div.text_box  {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
}
#content03 .wrap .mini_wrap div.text_box h3 {
  color: #0893dd;
  font-size: 24px;
  padding-bottom: 20px;
  text-align: center;
}
#content03 .wrap .mini_wrap div.text_box p {
  font-size: 14px;
  line-height: 1.5;
}
#content03 .wrap .mini_wrap div.text_box a {
  display: block;
  font-size: 14px;
  background-color: #0893dd;
  border: 1px solid #0893dd;
  color: white;
  text-align: center;
  margin: 25px 0 0;
  padding: 15px 0;
  text-decoration: none;
  transition: .3s;
}

/*----------------------   content04   ----------------------*/

#content04 {
  display: block;
  width: 100%;
  background-image: url('../image/sp/contact_wrap.jpg');
  background-size: cover;
  position: relative;
  padding-bottom: 70px;
  margin-top: 80px;
}
#content04 h2 {
  text-align: center;
  color: white;
  font-size: 24px;
  padding: 70px 0 50px;
}
#content04 h2 span {
  font-size: 16px;
  line-height: 3;
  font-weight: 300;
}
#content04 .wrap {
  width: 90%;
  margin: 0 auto;
}
#content04 .wrap div {
  display: table;
  width: 100%;
  margin: 20px auto 0;
}
#content04 .wrap div a {
  display: table-cell;
  vertical-align: middle;
  color: #0893dd;
  text-align: center;
  width: 80%;
  background-color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 16px;
  padding: 40px 0;
}
#content04 .wrap div h3 {
  font-size: 14px;
  font-weight: nomal;
}
#content04 .wrap div p {
  font-size: 26px;
  font-weight: nomal;
  line-height: 1.5;
}
#content04 .wrap div p span { font-size: 14px; }


/*----------------------   footer   ----------------------*/

footer {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 10px;
}
footer div {
  display: block;
  width: 100%;
  position: relative;
}
footer div p {
  display: block;
  color: #0893dd;
  font-size: 14px;
}
footer div h5 {
  color: #0893dd;
  font-size: 16px;
  font-weight: 300;
  padding-top: 20px;
  line-height: 1.5;
}
footer div img {
  display: inline-block;
  vertical-align: middle;
  width: 45%;
  color: #0893dd;
  margin-right: 15px;
}
footer div ul { display: none; }
footer div p.copyright {
  display: block;
  width: auto;
  color: #0893dd;
  text-align: right;
  font-size: 12px;
  letter-spacing: .1em;
  padding-top: 50px;
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: -50px;
  background: #0893dd;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 23px;
  color: #fff;
  position: absolute;
  width: 23px;
  height: 23px;
  top: -3px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

}

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*---------------------- TAB -----------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/

@media screen and (min-width:768px) and ( max-width:1200px) {

/*----------------------   header   ----------------------*/

#sp { display: none; }

header {
  display: block;
  width: 90%;
  margin: 0 auto;
}
header .head_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
header .head_menu .menu_box {
  display: block;
  width: 50%;
}
header .head_menu .menu_box h1 img {
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  padding-top: 30px;
}
header .head_menu .menu_box h1 span {
  display: inline-block;
  vertical-align: middle;
  color: #0893dd;
  font-size: 14px;
  padding: 40px 15px 5px;
}
header .head_menu .menu_box ul { display: flex; }
header .head_menu .menu_box li {
  list-style: none;
  font-size: 15px;
  text-align: center;
  display: table;
}
header .head_menu .menu_box li span {
  font-size: 10px;
}
header .head_menu .menu_box li a {
  display: table-cell;
  vertical-align: middle;
  width: 190px;
  height: 100px;
  color: #0893dd;
  text-decoration: none;
  transition: .3s;
}
header .head_menu .menu_box li a:hover {
  color: white;
  background-color: #0893dd;
  transition: .3s;
}

/*----------------------   wrapper   ----------------------*/

#wrapper { display: none; }
.slide.tab {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
}
@keyframes slideshow {
    0% { opacity: 0; }
   10% { opacity: 1; }
   28% { opacity: 1; }
   38% { opacity: 0; }
  100% { opacity: 0; }
}
.slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  animation: slideshow 32s linear infinite;
}
.slide img:nth-child(2) { animation-delay: 8s; }
.slide img:nth-child(3) { animation-delay: 16s; }
.slide img:nth-child(4) { animation-delay: 24s; }
.slide img:last-child { animation-delay: 32s; }
.slide.pc { display: none; }

/*----------------------   content01   ----------------------*/

#content01 {
  background-color: #ebf5fa;
  color: #0893dd;
  display: block;
  width: 90%;
  margin: 80px auto;
  position: relative;
}
#content01 ul { display: flex; }
#content01 li {
  list-style: none;
  margin: 0 50px;
  padding: 30px;
  font-size: 18px;
  text-align: center;
}
#content01 li.title {
  display: flex;
  align-items: center;
  height: 20px;
  padding: 15px 30px;
  margin: auto 0;
  font-size: 16px;
  font-weight: 500;
  border-right: 1px solid #0893dd;
}
#content01 li.day {
  font-weight: nomal;
  color: #333;
  padding: 0 50px;
  font-size: 16px;
  margin: auto 0;
}
#content01 li.text {
  font-weight: 500;
  color: #333;
  font-size: 16px;
  padding: 0 50px;
  margin: auto 0;
}
#content01 li.more {
  font-weight: 500;
  display: block;
  font-size: 14px;
  margin: 0 0 0 auto;
}
#content01 li.more a {
  text-decoration: none;
  color: #0893dd;
}

/*----------------------   content02   ----------------------*/

#content02 {
  display: block;
  margin: 0 auto 40px;
  text-align: center;
}
#content02 h2 {
  color: #0893dd;
  font-size: 24px;
  padding-bottom: 40px;
}
#content02 h2 span {
  font-size: 14px;
  font-weight: 300;
  line-height: 3;
}
#content02 p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}

/*----------------------   content03   ----------------------*/

#content03 {
  display: block;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
#content03 .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#content03 .wrap .mini_wrap {
  background-color: #ebf5fa;
  display: block;
  width: 45%;
  margin: 0 auto;
  position: relative;
}
#content03 .wrap .mini_wrap div img {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 40px 40px 0;
}
#content03 .wrap .mini_wrap div.text_box  {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 40px 40px;
}
#content03 .wrap .mini_wrap div.text_box h3 {
  color: #0893dd;
  font-size: 24px;
  padding-bottom: 20px;
  text-align: center;
}
#content03 .wrap .mini_wrap div.text_box p {
  font-size: 14px;
  line-height: 1.5;
}
#content03 .wrap .mini_wrap div.text_box a {
  display: block;
  font-size: 14px;
  background-color: #0893dd;
  border: 1px solid #0893dd;
  color: white;
  text-align: center;
  margin: 25px 0 0;
  padding: 15px 0;
  text-decoration: none;
  transition: .3s;
}

/*----------------------   content04   ----------------------*/

#content04 {
  display: block;
  width: 100%;
  background-image: url('../image/contact_wrap.jpg');
  background-size: cover;
  position: relative;
  padding-bottom: 70px;
}
#content04 h2 {
  text-align: center;
  color: white;
  font-size: 24px;
  padding: 70px 0 50px;
}
#content04 h2 span {
  font-size: 16px;
  line-height: 3;
  font-weight: 300;
}
#content04 .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 80%;
  margin: 0 auto;
}
#content04 .wrap div {
  display: table;
  width: 45%;
  margin: 0 auto;
}
#content04 .wrap div a {
  display: table-cell;
  vertical-align: middle;
  color: #0893dd;
  text-align: center;
  width: 80%;
  background-color: white;
  border: 3px solid white;
  text-decoration: none;
  font-size: 18px;
  font-weight: nomal;
  transition: .3s;
}
#content04 .wrap div a:hover {
  background-color: #46aee5;
  border: 3px solid #fff;
  color: white;
  transition: .3s;
}
#content04 .wrap div h3 {
  font-size: 14px;
  font-weight: nomal;
}
#content04 .wrap div p {
  font-size: 26px;
  font-weight: nomal;
  line-height: 1.5;
}
#content04 .wrap div p span { font-size: 14px; }


/*----------------------   footer   ----------------------*/

footer {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
footer div {
  display: block;
  width: 45%;
  position: relative;
}
footer div p {
  display: block;
  color: #0893dd;
  font-size: 14px;
}
footer div h5 {
  color: #0893dd;
  font-size: 16px;
  font-weight: 300;
  padding-top: 20px;
  line-height: 1.5;
}
footer div img {
  display: inline-block;
  vertical-align: middle;
  width: 45%;
  color: #0893dd;
  margin-right: 15px;
}
footer div ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer div ul li {
  display: inline;
  padding: 0 10px;
  margin: 0;
  font-size: 12px;
}
footer div p.copyright {
  display: block;
  width: auto;
  color: #0893dd;
  text-align: right;
  margin-top: 50px;
  font-size: 12px;
  letter-spacing: .1em;
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 50px;
  bottom: -50px;
  background: #0893dd;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 23px;
  color: #fff;
  position: absolute;
  width: 23px;
  height: 23px;
  top: -3px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

}
