@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #222222; /* RGB */
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.8rem;
  text-align: center;
  
}
section h2 {
  font-size: 3rem;
  line-height: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*=======================================================

ヘッダー

=======================================================*/
.header {
  height: 60px;
  width: 100%;
  background-color: #f6f6f6;
}
.header h1 {
  text-align: left;
  padding: 5px 0 5px 10px;
}
@media(min-width:800px){
  p {
    font-size: 1.8rem;
  }
}

@media(min-width:940px){

.open-button, .close-button{
  display:none;
 }
}
@media(max-width: 940px) {
  .open-button {
    display: block;
    position: absolute;
    right: 25px;
    top: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 30px;
    background: #9e9e9e;
    display: block;
    content:"";
  }
  .open-button span:before {
    bottom: -10px;
  }
  .open-button span:after {
    bottom: -20px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #f6f6f6;
    font-size: 40px;
    padding: 20px;
  }
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #bfdb38;
    width: 40%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0,0,0,0.4);
  }
  .header nav ul{
    display: flex;
    flex-direction: column;
    font-size: 1.8rem;
  }
  .header nav ul li {
    border-bottom: solid 2px rgba(255,255,255,0.5);
    width: 100%;
  }
   .header nav ul li:first-child {
    border-top: solid 2px rgba(255,255,255,0.5);
  }
  .header nav ul li a {
    font-weight:700;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #f6f6f6;
  }
}
@media(min-width: 940px) {
  .header {
    height: 80px;
  }
  .header-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  .header h1 {
    padding-top: 10px;
    position: absolute;
    left: 0;
  }
  .header h1 a img {
	 width: 100%;
  }
  .header nav {
    display: block;
    text-align: center;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .header nav li a {
    display: block;
    padding: 40px 14px 0;
    color: #222222;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
		line-height: 1.8rem;
		letter-spacing:5px;
  }
  .header nav li a span {
		color: #9e9e9e;
		font-size: 1.2rem;
		letter-spacing: 3px;
  }
}
/*=======================================================

フッター

=======================================================*/
.footer {
  background-color: #0c3388;
}
.footer-top{
  height: 240px;
}
.footer-content-wrapper{
  display: flex;
  justify-content: space-between;
  margin: 20px;
}
.footer-content-wrapper address{
  text-align: left;
  color: #f6f6f6;
  margin: 0 20px;
}
.footer-corporation__name{
  text-align: left;
  color: #f6f6f6;
  font-weight: 900;
  padding: 40px 0 0 20px;
}
.footer-corporation__address{
  margin-bottom: 30px;
}

.site-map__main-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: left;
  height: 160px;
  width: 180px;
  gap: 2px;
  color: #f6f6f6;
}
.site-map__main-links li {
  padding: 0 20px 20px 0;
}
.site-map__main-links li a{
  color: #f6f6f6;
  font-weight:700;
  text-decoration: underline;
}
.footer-bottom {
  background-color: #f6f6f6;
  max-height: 120px;
}
.footer__logo{
	width: 100%;
	padding-top: 20px; 
}
.footer__copyright {
  font-size: 1rem;
  color: #9e9e9e;
  padding-bottom: 20px;
}
@media(min-width: 800px) {
  .footer-content-wrapper address{
    margin: 0;
  }
  .footer-corporation__name{
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto ;
    padding: 20px 0 30px;
  }
  .footer-content-wrapper{
    max-width: 800px;
    margin: 0 auto;
  }
  .site-map__main-links{
    position: static;
    width: 300px;
  }
  .site-map{
    margin-right: 0;
    margin-left: auto;
  }
  .site-map__main-links li {
    font-size: 18px;
    padding: 0 0 20px 20px;
}
  .site-map__main-links li a {
    font-weight: 700;
  }
  .footer-bottom {
  height: 100px;
  }
  .footer__copyright {
    font-weight: 400;
	  padding-top: 80px;
  }
}