/* CSS Document */

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  word-break: break-all;
  background: #FCE145;
}

a {
  color: #7db9e7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:hover img {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

img, video, object {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  display: block;
}


#backToTop {
  position: fixed;
  z-index: 9999;
  background:#fff;
  border-radius: 5px;
  bottom: 25px;
  right: 25px;
}

#backToTop a {
  display: block;
  text-decoration: none;
  color: #FCE145;
  padding: 15px;
  font-weight: bold;
}

/*--------------------------------
　全体
---------------------------------*/

header .inner {
    width:auto;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background:#ffffff;
}
.inner {
    width:auto;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
/*--------------------------------
　header
---------------------------------*/

#header h1 img{
margin:auto
}


/*--------------------------------
　globalnavi
---------------------------------*/

.gnav {
  background-color: #eee;
}

/*--------------------------------
　section
---------------------------------*/


#section01,#section02,#section03 {
  text-align: center;
  padding:0 1em;
}

h2{
  font-size: 1.5em;
  margin:2.5em 0 1em 0;
}
h3{
  font-size: 1.3em;
  margin:0.5em 0 1em 0;
  text-align: center;
}

h5{
  background:#7FCFCC;
  color:#ffffff;
  margin-top:1em;
  margin-bottom:0.5em;
  text-align:center;
  border-radius: 5px;
}

.contents {
     width: 100%;
     background-color: #ffffff;
     max-width: 1050px;
     margin: auto;
     text-align: left;
     border-radius: 10px;
 }
 .text-center {
     text-align: center;
 }
 .flexbox {
     display: flex;
 }
 .box1 {
     width: 50%;
     margin: 2em auto;
     padding: 0 2em;
 }
 .box1 img{
   margin: auto;
 }
 .box2 {
     width: 50%;
     margin: 2em auto;
     padding: 0 2em;
 }
 .box2 img{
   margin: auto;
 }
 .p1{
   margin-top:1em;
 }
 @media screen and (max-width: 767px) {
     .flexbox {
         display: block;
     }
     .flexbox .box1 {
         width: 100%;
         margin: 0 auto;
     }
     .flexbox .box2 {
         width: 100%;
         margin: 0 auto;
     }
     .box1 {
         border:none;
         margin-bottom: 2em;
         padding-top: 2em;
         padding-bottom: 2em;
         border-bottom: 2px solid #FCE145;
     }
     .box2 {
         border:none;
         padding-top: 2em;
         padding-bottom: 2em;
     }
 }

 #section02 {
   margin-top: 3em;
 }

 #section03 {
   margin-top: 3em;
   margin-bottom: 3em;
 }
 
 #section03 .table{
 width:100%;
 }
 
 #section03 .table td {
 border:1px solid #bbb;
 padding:5px
 }
 
 
 /* モーダルCSSここから */
 .modalArea {
   visibility: hidden; /* displayではなくvisibility */
   opacity : 0;
   position: fixed;
   z-index: 10; /* サイトによってここの数値は調整 */
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transition: .4s;
 }

 .modalBg {
   width: 100%;
   height: 100%;
   background-color: rgba(30,30,30,0.9);
 }

 .modalWrapper {
   position: absolute;
   top: 50%;
   left: 50%;
   transform:translate(-50%,-50%);
   width: 90%;
   max-width: 650px;
   height: auto;
   max-height: 100%;
   padding: 10px;
   background-color: #fff;
   overflow-y: scroll;
 }

 .closeModal {
   position: absolute;
   top: 0.5rem;
   right: 1rem;
   cursor: pointer;
 }

 .is-show { /* モーダル表示用クラス */
   visibility: visible;
   opacity : 1;
   
 }
 /* モーダルCSSここまで */


 /* 以下ボタンスタイル */
 button {
   margin-top: 2em;
   padding: 10px;
   background-color: #fff;
   border: 1px solid #282828;
   border-radius: 5px;
   cursor: pointer;
   font-size: 100%;
 }

 #openModal {
 }
 

/*--------------------------------
  Footer
---------------------------------*/

#footer {
  height:50px;
  text-align: center;
}

#footer .inner {
  padding: 20px 10px;
}

#footer .footer-link a {
  color: #fff;
}

#footer .copyright {
  font-size: 12px;
}

#footer .copyright a {
  color: #333;
}

/*media Queries 767
----------------------------------------------------*/

@media screen and (max-width: 767px) {
  ｝
