@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: "MSゴシック", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h1 {
  font-size: 3.6rem;
}
section h2 {	
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
img {
  max-width: 100%;
  height: auto;
}
.header {
  height: 70px;
  background-color: #fff;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
.all{
    padding-top: 70px;
	overflow: hidden;
}
.header__logo1 {
  position: absolute;
  width: 235px;
  left: 15px;
  top: 20px;
}
.header__logo2 {
  position: absolute;
  width: 92px;
  right: 90px;
  top: 10px;
}
/* navigation*/
.open-button, .close-button {
  display: none;
}
.open-button {
  display: block;
  position: absolute;
  right: 20px;
  top: 25px;
  width: 30px;
  height: 40px;
  cursor: pointer;
}
.open-button span, .open-button span:before, .open-button span:after {
  position: absolute;
  height: 3px;
  width: 35px;
  border-radius: 20px;
  background: #333;
  display: block;
  content: "";
}
.open-button span:before {
  bottom: -10px;
}
.open-button span:after {
  bottom: -20px;
}
.close-button {
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  color: #333;
  font-size: 30px;
  padding: 20px;
    cursor: pointer;  
}
.header nav {
  display: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 60px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #f3f3f3;
  width: 30%;
  height: 100%;
  padding: 50px;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5)
}
.header ul li {
  border-bottom: solid 1px #fff
}
.header ul li a {
  font-weight: 600;
  line-height: 40px;
  vertical-align: middle;
  text-decoration: none;
  color: #333;
}
@media(max-width:600px) {
  .header {
    height: 50px;
  }
    .main{
   all: 50px;
    }
  .header__logo1 {
    width: 190px;
    left: 10px;
  }
  .header__logo2 {
    width: 45px;
    right: 60px;
    top: 15px;
  }
  .open-button {
    right: 5px;
    top: 17px;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 2px;
    width: 30px;
  }
  .open-button span:before {
    bottom: -10px;
  }
  .open-button span:after {
    bottom: -20px;
  }
}
.footer {
  height: 400px;
  padding: 50px auto 50px;
  list-style: none;
  text-align: left;
  max-width: 1040px;
  margin: 20px auto;
  width: 100%;
  position: relative;
}
.footer__site-map {
  margin-top: 40px;
  position: relative;
}
.footer__list a {
  text-decoration: none;
  color: #333;
  line-height: 35px;
}
@media(min-width:1080px) {
  .footer__list {
    position: absolute;
    left: 0px;
  }
  .footer__ue {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
  }
  .footer__sns {
    position: absolute;
    right: 0px;
  }
  .footer__sns ul {
    display: flex;
    gap: 20px;
  }
  .footer__copyright {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%)
  }
}
@media(min-width:850px) {
  .footer__list {
    position: absolute;
    left: 40px;
  }
  .footer__ue {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;    
  }
  .footer__sns {
    position: absolute;
    right: 40px;
  }
  .footer__sns ul {
    display: flex;
    gap: 20px;
  }
  .footer__copyright {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%)
  }
}
@media(max-width:849px) {
  .footer__list {
    position: relative;
    left: 30px;
  }
  .footer__ue {
    position: absolute;
    right: 30px;
    top: 20px;
      cursor: pointer;  
  }
  .footer__sns {
    position: absolute;
    top: 250px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%)
  }
  .footer__sns ul {
    display: flex;
    gap: 30px;
  }
  .footer__copyright {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%)
  }
}
h2.title{
    font-family: 'Roboto', sans-serif;    
}