@charset "utf-8";
*{
  padding:0;
  margin:0;
  list-style: none;
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
}
/* 各要素の囲い */
#wrap{
  display:flex;
}
#main{
  width:100%;
  position: relative;
  min-height: 100vh;
  padding-bottom: 120px;/*←footerの高さ*/
  box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}
#side{
  width:0%;
  background-color: #e4eefc;
}
/* サイドメニュー */
#side ul{}
#side ul li{
  padding:0 15% 0;
  margin:5% 0;
}
.logo{
  width:100%
}
.note{
  width:30%;
}
.note:hover{
  opacity: 0.3;
  transition: all 100ms 0s ease;/*マウスホバーのアニメーションプロパティ*/
}
/* サイドメニューリンクのプロパティ */
#side ul li a{
  color:#5f789a;
  text-decoration: none;
  transition: all 100ms 0s ease;/*マウスホバーのアニメーションプロパティ*/
}
/* サイドメニューリンクのホバープロパティ */
#side ul li a:hover{
  color:#143869;
  font-weight: 800;
}
/* サイドメニュー追尾 */
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 5%;
}
/*--header--*/
/*--
header {
    font-size: 15px;
    font-size: .9375rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    letter-spacing: .05em;
    background: rgba(255,255,255,0.7);
}

header .inner {
    display: flex;
    width: 100%;
    height: 60px;
    flex-flow: row wrap;
    justify-content: center;
}
/*ハンバーガーメニュー三本線の設定 色*/
/*ハンバーガー3本線を非表示*/
header .humberger-wrap {
  display:none;
}

header nav {
  position:relative;
}

header nav, header ul {
  display:flex;
}

header nav li {
  cursor:pointer;
}

header nav li img{
  width:60px;
}

header nav a {
  line-height:60px;
  display:block;
  height:60px;
  padding:0 30px;
}
/* トップ・ヘッダー */
#header{
  width:100%;
  height:auto;
}
#header img{
    width:100%;
    vertical-align: bottom;
}
#contenttop{
  padding:0;
}
#contenttop ul{
  margin: 40px 0 40px 0;
  display: flex;
  justify-content: space-between;
}
#contenttop li{
}
#contenttop li h1{
  width:auto;
}
#contenttop .topbtnl{
  width:17%;
}
#contenttop .topbtnr{
  width:17%;
}
#contenttop .topbtnl img{
  width:100%;
  vertical-align: bottom;
}
#contenttop .topbtnr img{
  width: 50%;
  vertical-align: bottom;
}
#contenttext {
  padding:3% 10%;
}
#contentimg{
  padding:5% 20%;
}
#contentimg img{
  width:100%;
  vertical-align: bottom;
  margin:0 0 20px 0;
}
/* 下のページ切り替えボタン */
#contentbottom{
  padding:0 5%;
}
#contentbottom ul{
  display: flex;
  justify-content: space-between;
}
#contentbottom li{
  width: 17s%;
  text-align: center;
  display: block;
}
#contentbottom li a img{
  width:100%;
  vertical-align: bottom;
}
/* 下のページ切り替えボタン */
#contentbottom{
  padding:0 5%;
}
#contentbottom ul{
  display: flex;
  justify-content: space-between;
}
#contentbottom li{
  width: 17s%;
  text-align: center;
  display: block;
}
#contentbottom li a img{
  width:100%;
  vertical-align: bottom;
}
/* フッター */
#footer{
  background-color: #e4eefc;
  padding:6px 5% 3% 5%;
  position: absolute;
  bottom: 0;
  width:100%
}
@media screen and (max-width:767px){
  /*3本線の表示*/
header .humberger-wrap {
  display:block;
}

/*3本線の位置*/
header .humberger-wrap {
  position: absolute;
  top: 0;
  right: 20px;
  width: 40px;
  height: 100%;
  cursor: pointer;
}

/*humberger-border1,2,3の線*/
header .humberger-wrap [class*=humberger-border]  {
  position: absolute;
  width: 40px;
  height: 2px;
  transition: .4s all ease;
  transform-origin: center center;
  background: #333;
}
/*1本目の線*/
header .humberger-wrap .humberger-border-1 {
  top:20px;
  right:0;
}
/*2本目の線*/
header .humberger-wrap .humberger-border-2 {
  top:30px;
  right:0;
}
/*3本目の線*/
header .humberger-wrap .humberger-border-3 {
  top:40px;
  right:0;
}

/*開閉ボタンopen時の横線1本目*/
  header .humberger-wrap.opened .humberger-border-1 {
      top: 30px;
      transform: rotate(45deg);
  }
  /*開閉ボタンopen時の横線2本目*/
  header .humberger-wrap.opened .humberger-border-2 {
  top: 30px;
      transform: rotate(-45deg);
  }
  /*開閉ボタンopen時の横線3本目*/
  header .humberger-wrap.opened .humberger-border-3 {
  top: 30px;
      transform: rotate(-45deg);
  opacity:0;
  }
/*メニューを非表示*/
header nav {
  display:none;
}

/*open時に一番上のヘッダーの背景色を変化*/
header.opened {
  background: rgba(255,255,255,0.9);
}

header.opened nav {
  display: block;
  min-height: 100vh;
  top:60px;
  background: rgba(255,255,255,0.9);
  width: 100%;
}

header nav ul.header-navigation {
  flex-flow: column nowrap;
}

header nav ul.header-navigation li a {
  display: block;
  height: auto;
  margin: 0;
  padding: 10px 0;
  font:15px bold;
  color: #5f789a;
  text-decoration: none;
  text-align: center;
}

header nav ul.header-navigation li a:hover {
  color:#143869;
}
  #wrap{
    display:flex;
    flex-direction: column-reverse;
  }
  #main{
    width:100%;
    position: relative;
    min-height: 100vh;
    padding-bottom: 120px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
    margin:60px 0 0 0;
  }
  #side{
    width:100%;
    background-color: #e4eefc;
    display: none;
  }
  #contenttext {
    padding:0;
  }
  #contentimg{
    padding:5% 5%;
  }
  #contenttop .topbtnl{
    width:30%;
  }
  #contenttop .topbtnr{
    width:30%;
  }
  #contenttop .topbtnl img{
    width:100%;
    vertical-align: bottom;
  }
  #contenttop .topbtnr img{
    width: 50%;
    vertical-align: bottom;
  }
  /* 下のページ切り替えボタン */
  #contentbottom li{
    width: 40%;
    text-align: center;
    display: block;
  }
  /* フッター */
  #footer{
    background-color: #e4eefc;
    padding:6px 5% 3% 5%;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    width:100%
  }
}
@media screen and (min-width:767px){
    header {
        display: none;
    }
}
/* ハンバーガーメニューオープン時背景スクロールを固定 */
.scroll-prevent {
  /*動き固定*/
  position: fixed;
  width: 100%;
}
header nav {
    position:fixed;
    top: 0;
    overflow-y: scroll;
}
.headerlogo{
  position: fixed;
  left: 10px;
  top: 5px;
  width: 170px;
  height: 50px;
}
