@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*header*/
.header {
  height: 135px;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 900;
}
  .header-content-wrapper {
  width: 80%;
  max-width: 1300px;
  height: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.menu-content ul {
  display:flex;
  list-style: none;
  justify-content: flex-end;
  }
.menu-content ul li:not(:first-child) {
    margin-left: 80px;
}
.menu-content ul li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 2.4rem;
    font-weight: 600;
}
#menu-btn-check {
    display: none;
}
@media(max-width:1190px){
  .header-content-wrapper {
  max-width: 1000px;
    height: 130px;
}
.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;
}
  .menu-content{
    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 ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
  .menu-content ul {
    display: inline-block;
  }
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#333;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content 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;
}

  }
.footer__container {
  width: 100%;
   background-color: #f9bf13;
}
.footer__main-container {
 display: flex;
 flex-wrap:wrap;
  max-width: 1000px;
  justify-content: space-between;
  margin: 0 auto;
  color: #fff;
  padding: 0 186px 0;
  }
.footer__top-btn {
  width: 100%;
  text-align: right;
  margin-top: 30px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 2.0rem;
}
.site-map__main-links {
  margin-bottom: 50px;
}
.site-map__main-links li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
.footer small {
  color: #fff;
}
  .footer__copyright {
  padding-top: 50px;
  margin: 0 auto;
  }
  .footer_content {
    padding-bottom: 20px;
    margin: 0 auto;
  }
@media(max-width:840px){
  .site-map {
    margin: 0 auto;
  }
  .footer__main-container {
 display: flex;
 flex-wrap:wrap;
  justify-content: space-between;
  margin: 0 auto;
  color: #fff;
  padding: 0 100px 0;
  }
  .footer__copyright {
  padding-top: 50px;
  margin: 0 auto;
  }
  .footer_content {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 auto;
  }
}




