@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
img {
  max-width: 100%; /*画像を親要素に収める*/
  height: auto;
}
body {
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
a:hover {
  opacity: 0.5;
}
/*ul {
  list-style: none;
}*/
*, *:before, *:after {
  box-sizing: border-box;
}
/* ヘッダー */
.header {
  height: 85px;
  width: 100%;
  top: 0;
  left: 0;
  align-items: center;
  background-color: #92a5d5;
  position: fixed;
  z-index: 1000;
}
.header_wrapper{
  height: 100%;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  align-items: center;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between; /*両端に配置*/
}
.header_logo {
  margin-top: 20px;
}
.header a {
  color: #fff;
}
.header nav {
  display: flex;
}
/*チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}
/*ナビゲーション*/
.header_navigation_menu {
  font-size: 2.0rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-content: space-between;
}
.header_navigation_menu li {
  margin: 0 60px;
}
.header_navigation_icon {
  display: flex;
  align-items: center;
}
.header_navigation_icon li {
  margin-left: 15px;
}
/*PC表示　1740px以下の場合に適用*/
@media(max-width:1740px) {
  .header_navigation_menu {
    margin: 0 30px;
  }
  .header_navigation_menu li {
    margin: 0 30px;
  }
  .header_navigation_icon {
    margin-left: 0px;
  }
}
/*PC表示　1430px以下の場合に適用*/
@media(max-width:1430px) {
  .header_wrapper {
    padding: 20px 30px;
  }
  .header_logo {
    width: 250px;
    margin-top: 20px;
  }
  .header_navigation_menu {
    font-size: 1.6rem;
    margin-left: 30px;
  }
  .header_navigation_menu li {
    margin: 0;
  }
  .header_navigation_icon {
    margin-left: 0px;
  }
}
/*タブレット表示　1023px以下の場合に適用*/
@media(max-width:1023px) {
  .header{
  height: 60px; 
  }
  .header_wrapper {
    padding: 0 20px;
  }
  .header_logo {
    margin-top: 10px;
    width: 150px;
  }
  .header_navigation_menu {
    padding-left: 20px;
  }
  .header_navigation ul li {
    font-size: 1.2rem;
    margin-left: 10px;
  }
  .header_navigation_icon {
    margin-left: 20px;
  }
}
/*モバイル表示　767px以下の場合に適用*/
@media(max-width:767px) {
  .header{
    height: 45px;
  }
  .header_logo {
    width: 120px;
  }
  /*ハンバーガーボタンの設置スペース*/
  .open-button {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 45px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }
  /*ハンバーガーボタン*/
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #171c61;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: 8px;
  }
  .open-button span:after {
    top: 8px;
  }
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .open-button span {
    background: rgba(255, 255, 255, 0);
  }
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .open-button span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #drawer_input:checked ~ .open-button span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .header_navigation {
    z-index: 1000;
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 100%;
    background-color: rgba(146, 165, 213, 0.9);
    width: 85%;
    height: 100%;
    padding-top: 20px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
    transition: .5s;
  }
  .header_navigation_menu, .header_navigation_icon {
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
  }
  .header_navigation ul li {
    margin: 0 auto;
    font-size: 1.6rem;
    margin-top: 15px;
  }
  .header_navigation img {
    width: 55%;
  }
  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .header_navigation {
    left: 0; /* メニューを画面に入れる */
  }
  main {
    margin-top: 45px; /* 上の空白を50pxに指定 */
  }
}
/*フッター*/
.footer {
  width: 100%;
  background-color: #92a5d5;
}
.footer a {
  color: #595757;
}
.footer_container {
  width: 100%;
  max-width: 1200px;
  margin: 45px auto;
  padding: 45px 10px 0;
}
.footer_content_wrapper {
  display: flex;
  justify-content: space-between; /*両端に配置*/
}
.footer_navigation {
  display: flex;
}
.footer_navigation_menu {
  font-size: 2.0rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-content: space-between;
}
.footer_navigation_menu li {
  font-size: 1.8rem;
  margin-left: 20px;
}
.footer_navigation_icon {
  display: flex;
}
.footer_navigation_icon li {
  list-style: none;
  margin-left: 10px;
}
.footer_address {
  display: flex;
  justify-content: space-between;
}
.footer_address p {
  font-size: 2.0rem;
  text-align: left;
}
.footer_copyright {
  width: 100%;
  height: 90px;
  line-height: 90px;
  background-color: #595757;
  color: #fff;
}
.footer_privacy{
  display: none;
}
/*フッター PC表示　1220px以下の場合に適用*/
@media(max-width:1220px) {
  .footer_container {
    margin: 20px auto 10px;
    padding: 20px 10px 0;
  }
  .footer_logo {
    width: 200px;
  }
  .footer_navigation_menu li {
    font-size: 1.4rem;
  }
  .footer_navigation_buttton {
    width: 130px;
  }
  .footer_address p {
    font-size: 1.6rem;
  }
  .footer_navigation_icon {
    width: 130px;
  }
  .footer_navigation_icon li {
    list-style: none;
    margin-left: 5px;
  }
  .footer_copyright {
    font-size: 1.0rem;
    height: 45px;
    line-height: 45px;
  }
}
/*フッター　タブレット表示　1023px以下の場合に適用*/
@media(max-width:1023px) {
    .footer_container {
    padding: 10px 20px 0;
  }
    .footer_logo {
    width: 150px;
  }
  .footer_navigation_menu {
    display: none;
  }
  .footer_navigation_icon {
    display: none;
  }
  .footer_privacy{
  display: block;
  font-size:1.3rem;
}
    .footer_address p {
    font-size: 1.3rem;
      line-height: 1.6rem;
  }
    .footer_copyright {
    height: 30px;
    line-height: 30px;
  }
}
/*フッター　モバイル表示　424px以下の場合に適用*/
@media(max-width:424px) {
    .footer_logo {
    width: 150px;
  }
  .footer_privacy{
  font-size:1.2rem;
}
    .footer_address p {
    font-size: 1.2rem;
      line-height: 1.2rem;
  }
    .footer_copyright {
          font-size: 1.0rem;
    height: 20px;
    line-height: 20px;
  }
}