body {
  margin: 0;
}


/* ---------------------------------------------------------------------------------------------

　   HEADER - PC

--------------------------------------------------------------------------------------------- */
#header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
  z-index: 99;
  position: fixed;
  top: 0;
  background-color: #fff;
}
.header_box {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.logo {
  width: 20%;
  height: auto;
  text-align: center;
}
.logo img {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin-top: 5px;
}
.header {
  width: 80%;
  display: flex;
  justify-content: space-between;
}
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.nav-button {
  display: none;
}
.nav a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
  margin: 0 10px;
  font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}
.nav a:hover {
  opacity: .5;
}
.nav li {
  display: inline-block;
  margin: 0 10px;
}
.nav-wrap.open {
  display: block;
}
.nav-wrap.close {
  display: none;
}
.nav-wrap {
  margin: 0 auto;
}
@media screen and (min-width: 1001px) {
  .nav-wrap {
    display: block !important;
  }
}
.content {
  padding: 20px;
}
@media screen and (max-width: 1000px) {
  .logo {
    margin-bottom: -20px;
    width: 100%;
  }
  .logo img {
    width: 100%;
    height: 70px;
    margin-top: 0;
  }
  .nav-button {
    display: block;
    cursor: pointer;
    position: absolute;
  }
  .nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
  }
  .nav-wrap .nav {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .nav-wrap li {
    display: block;
    margin: 2em;
    text-align: center;
  }
  .nav-wrap li a {
    color: #fff;
    font-size: 18px;
  }
  /*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
    z-index: 20;
    position: absolute;
    width: 40px;
    height: 36px;
    top: 32px;
    right: 30px;
    background-color: #fff;
    border: none;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 16px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(16px) rotate(-45deg);
    transform: translateY(16px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);
  }
}

/* タブレットサイズ */
@media only screen and ( max-width : 768px ) {
  .logo img {
    max-width: 60%;
  }
}
/* spサイズ */
@media only screen and ( max-width : 768px ) {
  .logo img {
    max-width: 80%;
  }
}




/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer .top_link_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 60px 0;
}
#footer .top_link_box a {
  width: 100%;
  max-width: 25%;
  height: auto;
  text-align: center;
}
#footer .top_link_box a img {
  height: 80px;
  width: auto;
}
#footer .top_link_box a p {
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  margin-top: 10px;
}
#footer .top_link_box a:hover img {
  animation: rubberBand 2s infinite;
}
#footer .top_link_box a p {
  transition: .5s;
}
#footer .top_link_box a:hover p {
  opacity: .5;
}

@media only screen and ( max-width : 768px ) {
  #footer .top_link_box a img {
    height: 60px;
  }
  #footer .top_link_box a p {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
  }
}
@media only screen and ( max-width : 480px ) {
  #footer .top_link_box {
    flex-wrap: wrap;
  }
  #footer .top_link_box a {
    max-width: 50%;
    margin-bottom: 30px;
  }
}



/* 上に戻るボタン */
#footer #pageTop  {
  position: fixed;
  bottom: 80px;
  right: 20px;
}
#footer #pageTop a {
  display: block;
  z-index: 999;
  border-radius: 30px;
  width: 80px;
  height: 80px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#footer #pageTop a:hover {
  text-decoration: none;
  animation: fadeOutUp 2s infinite;
}
#footer #pageTop a span {
  position: relative;
  top: 19px;
  color: #000;
}
#footer #pageTop a .sp_text {
  display: none;
}


#footer .footer_main {
  background-color: #000;
  padding: 30px 10px;
}
#footer .footer_main .main_content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .footer_main .main_content .logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 30px;
}
#footer .footer_main .main_content .text_box {
  color: #fff;
}
#footer .footer_main .cr_text {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
  font-size: 16px;
  letter-spacing: 2px;
  color: #fff;
}

@media only screen and ( max-width : 1000px ) {
  #footer .footer_main .main_content .logo {
    max-width: 200px;
  }
}
@media only screen and ( max-width : 768px ) {
  #footer #pageTop  {
    position: relative;
    bottom: 0;
    right: 0;
  }
  #footer #pageTop a {
    z-index: 1;
    border-radius: 0;
    width: 100%;
    height: 60px;
    background-color: #999;
  }
  #footer #pageTop a .sp_text {
    display: block;
    text-align: center;
    font-weight: 100;
  }
  #footer #pageTop a .pc_text {
    display: none;
  }
}
@media only screen and ( max-width : 560px ) {
  #footer .footer_main .main_content {
    flex-wrap: wrap;
  }
  #footer .footer_main .main_content .logo {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  #footer .footer_main .main_content .logo img {
    max-width: 200px;
    position: relative;
  }
  #footer .footer_main .cr_text {
    font-size: 14px;
  }
}
@media only screen and ( max-width : 480px ) {
  #footer .footer_main .cr_text {
    font-size: 12px;
  }
}
