@charset "utf-8";

body {
  margin-top: 200px;
}

label[for="menu-btn-check"]{
    display: none;
}

#header .header_wrap {
  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;
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
}

#header .logo {
  margin-left: 20px;
}

#header .logo img {
  width: 446.84px;
}

#header .header_wrap nav {
   margin: 0 auto 0 auto;
}

#header .header_wrap ul {
   list-style: none;
   margin: 0;
   display: flex;
}
#header .header_wrap li {
   margin: 0 0 0 30px;
}

  #header .header_wrap a {
    text-decoration: none;
    color: #4b4b4b;
    font-size: 1.3rem;
  }

.pc-nav a:hover{
 color:#F7CB4D;
 border-bottom:2px solid #F7CB4D;
 }
 
@media screen and (max-width: 1024px) {

  body {
    margin-top: 170px;
  }

  #header .logo img {
    width: 336px;
  }
  
  .pc-nav {
	display: block;
  }

}

@media screen and (max-width: 768px) {
  body {
  margin-top: 150px;
  }
  
  #header .header_wrap {
    padding: 0 3%;
  }

  #header .logo {
    margin-left: 0;
  }

  #header .logo img {
    width: 224px;
    max-width: 60vw;
  }

  #header .header_wrap {
    width: 100%;
  }
  
  #header .header_wrap li {
    font-size: 14px;
  }
  .pc-nav {
	display: none;
  }
  .pc-nav2 {
	display: block;
  }
  
  label[for="menu-btn-check"]{
    display: flex;
  }
  
  #header .header_wrap ul {
    display: block;
  }
  
}


/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
#footer {
  margin-top: 60px;
  background: #003461;
  position: relative;
  text-align: center;
}

#footer * {
  color: #fff;
}

.fixed_navi {
  width: 100%;
  align-items: center;
}

.footermenu{
    list-style: none;
    display:flex;
    justify-content:space-around;
    padding:0;
}

.fixed_navi a {
  text-decoration: none;
  color: #4b4b4b;
  font-size: 1.3rem;
}

.fixed_navi a:hover {
 color:#F7CB4D;
 border-bottom:2px solid #F7CB4D;
}

/* ----------------------------------------------------------------------------------------------------
*  トップに戻るボタン
* --------------------------------------------------------------------------------------------------*/
#scroll-to-top {
  position: fixed;
  z-index: 2147483647;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  font-family: sans-serif;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 2px;
}

.scroll-to-top-not-display { 
	display: none; 
} 


/* ----------------------------------------------------------------------------------------------------
*  ハンバーガーメニュー
* --------------------------------------------------------------------------------------------------*/

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

 #menu-btn-check {
    display: none;
}

.pc-nav2 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.pc-nav2 ul {
    padding: 70px 10px 0;
}
.pc-nav2 ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.pc-nav2 ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}

.pc-nav2 ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.pc-nav2 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定*/
}

 #menu-btn-check:checked ~ .pc-nav2 {
    left: 0;/*メニューを画面内へ*/
}

.pan {
  padding-left:0;
  margin-left:0;
  text-align:right;
}

/*ぱんクズリスト用*/
.pan li{
  display:inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.pan li:after{/* >を表示*/
  content: '>';
  padding: 0 3px;
  color: #555;
}

.pan li:last-child:after{
  content: '';
}

.pan li a {
    text-decoration: none;
    color: #52b5ee;/*色*/
    font-size: 0.8em;

}

.pan li a:hover {
    text-decoration: underline;
}
/*ぱんクズリスト用ここまで*/

/*いいねボタンイメージ*/
.content_class img{
    background-color: #3584bb;
    cursor: pointer;
}

/*サイトポリシー*/
.policy-cont{
 text-align: center;
 }
.policy-cont ul{
 margin: 0 ;
 padding: 0 ;
 }
.policy-cont li{
 list-style: none;
 display: inline-block;
 width: 10%;
 min-width: 200px;
 }
.policy-cont li:not(:last-child){
 border-right:2px solid #ddd;
 }
.policy-cont a{
 text-decoration: none;
 color: #333;
 }
.policy-cont a:hover{
 color:#F7CB4D;
 border-bottom:2px solid #F7CB4D;
 }

.phyou{
  width: 100%;
  border-collapse: collapse;
}

.phyou tr{
  border-bottom: solid 2px white;
}

.phyou tr:last-child{
  border-bottom: none;
}

.phyou th{
  position: relative;
  text-align: center;
  width: 30%;
  background-color: #3584bb;
  color: white;
  padding: 10px 0;
}

.phyou th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.phyou td{
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding: 10px 5px 10px 20px
}

.souitem {
	padding-top: 100px;
}

.ptyuutitle{
 color:#3584bb;
 padding-top: 200px;
 margin-top:-200px;
 }

/*サイトマップ*/

.sitemenu{
  color: #1e366a;
  border-bottom: solid #1e366a 1px;/*下のボーダー*/
  padding: 0.5em 0 0.5em 1.5em;
}

.sitemenu li{
  line-height: 1.5;
  padding: 0.5em 0;
}

.sitemenu2{
  color: #1e366a;
  border-bottom: solid #1e366a 1px;/*下のボーダー*/
  padding: 0.5em 0 0.5em 1.5em;
}

.sitemenu2 li{
  line-height: 1.5;
  padding: 0.5em 0;
}

/*サイドバー*/

.side {
  background-color:#f0f8ff;
  width:200px;
  text-align:center;
} 

.side a {
  text-decoration: none;
  color: #4b4b4b;
  font-size: 1.3rem;
}

.side a:hover {
 color:#F7CB4D;
 border-bottom:2px solid #F7CB4D;
}

.maincontent {
  width:100%;
  margin-left:20px
}

article {
  display:flex;
}

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

article {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
  min-width: initial;
 }
.maincontent {
  margin: 0;
 }
.side {
  width: 100%;
 }

.side li{
 list-style: none;
}

}
