@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
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;
}


/*---------- 共通　----------*/
.main {
  background-color: #f6f8f9;
}

.section__common-title {
/*  margin-bottom: 40px;*/
}

img,video {
  width: 100%;
}


/*---------- /共通終わり　----------
-----------------------------------*/

/*---------- ヘッダー始まり　----------*/

.header {
  height: 50px;
  background-color: #000;
  width: 100%;
  
  position: relative;
}


.header__title {
  font-size: 1.6rem;
  color: #fff;
  text-align: left;
  padding: 12px 24px;
  
  position: absolute;
}

/*
.header__nav {
  display: none;
}
*/

/*---------- /ヘッダー終わり　----------
-----------------------------------*/

/*---------- ハンバーガーメニュー始まり　----------*/
.open-button,.close-button {
  display: none;
}

@media(max-width: 1160px) {
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  
  .open-button span,
  .open-button span:before,
  .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #777;
    display: block;
    content: "";
  }
  
  .open-button span:before {
    bottom: -8px;
  }
  
  .open-button span:after {
    bottom: -16px;
  }
  
  /*---------- SPナビゲーションボタン始まり　----------*/
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 20px;
    padding: 20px;
  }
  
  .header__nav {
    display: none;
    z-index: 1000;
    /*fixedとはウィンドウに対して位置を変えられる スタティック意外だから大丈夫*/
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    width: 70%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  
  .header__nav-link {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  
  .header__nav-link:first-child {
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
  
  .header__nav-link a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
  }
  
  /*---------- /SPナビゲーションボタン終わり　----------*/
}

/*---------- /ハンバーガーメニュー終わり　----------
----------------------------------------------------------------------*/

/*---------- PCヘッダー始まり　----------*/
@media(min-width: 1160px) {
  .header {
    height: 83px;
  }
  
  .header__content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
  }
  
  .header__title {
    font-size: 3.2rem;
    padding-top: 26px;
    position: absolute;
    left: 0;
    font-weight: 600;
  }
  
  .header__nav {
    display: block;
    text-align: right;
  }
  
  .header__nav-links {
    display: flex;
    justify-content: flex-end;
  }
  
  .header__nav-link a {
    display: block;
    padding: 26px 30px 0;
    color: #fff;
    text-decoration: none;
    font-size: 2.4rem;
    height: 83px;
  }
}

/*---------- /PCヘッダー終わり　----------
------------------------------------------------------------------*/

/*---------- footer　----------*/
.footer {
  height: 350px;
  padding: 30px 0;
  background-color: #7a7b7c;
  font-size: 1.4rem;
  color: #fff;
  position: relative;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer__nav {
  display: flex;
  text-align: left;
  justify-content: left;
  padding: 0 30px;
  font-weight: 600;
  font-size: 1.4rem;
}

.footer__nav__main-links {
  
}

.footer__nav__service-links {
  margin-left: 30px;
}

.footer__nav-link {
  
}

.footer__nav-link a {
  
}

.footer__copyright {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}

/*---------- /footer終わり ----------
-----------------------------------*/

/*---------- PCfooter　----------*/
@media(min-width: 1160px) {
  .footer {
    padding: 70px 0 45px;
  }
  
  .footer__content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  
  .footer__nav {
    padding: 0;
    font-weight: 400;
  }
  
  .footer__nav-link {
    padding: 0;
    margin-bottom: 10px;
  }
  
  .footer__copyright {
    font-size: 2.0rem;
    font-weight: 600;
  }
}

/*---------- /PCfooter終わり ----------
----------------------------------------------------------------------------*/

