@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: 'M PLUS 1p', 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;
}*/
.none {
  display: none;
}

/* H E A D E R */
.header {
  padding: 10px;
}
.header-content__logo {
    width: 250px;
    height: auto;
}
.header-content__wrapper img{
    width: 100%;
    height: auto;
}		
/* N a v i g a t i o n */
.open-button, .close-button {
  display: none;
}
@media(max-width:1059px) { 
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;/*カーソルを指にする*/
  }
  .open-button span,.open-button span:before,.open-button span:after {
    position: absolute;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background: #333;
    display: block;
    content:"";
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    font-size: 20px;
    padding: 20px;
  }
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    width: 100%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header nav ul li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li:first-child {
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li a {
    padding: 0 0 0 0;
    font-weight: 600;
    line-height: 30px;
    vertical-align: middle;
    text-decoration: none;
    color: #FFF;
    display: block;
    
  }
  .header nav ul li a span {
    text-align: center;
  }
}

@media(min-width:1060px) { /*幅が1060pxまでは*/
  .header{
    padding: 10px;
  }
  .header-content__wrapper {
  /*  max-width: 1160px;*/
    position: relative;
    display: flex; /* ←ここ！*/
    align-items: center;
    justify-content: space-between;
  }	
  .header h1 {
   /* position: absolute;*/
  }
  .header nav {
    display: block!important;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-end; /*ページ右端に*/
  }
  .header nav ul li {
    list-style: none;
  }
  .header nav li a {
    display: block;
    padding: 26px 30px 0;
    position: relative;
    text-decoration: none;
    font-size: 1.8rem;
    color: #333;
    height: 83px;
    text-align: center;
  }
  /*　メニュー　hover で下線　*/
  .header nav li a::after {
    content:'';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #00368e;
    transform: scale(0, 1);
    transform-origin: center top; /*上部中心基点*/
	  transition: 0.4s;
  }
 .header nav li a:hover::after {
	transform: scale(1,1);
  }
    /**/
  .header nav li a span{
    font-size: 1.2rem;
  }  
}
  @media(max-width:1320px) {
    .header nav li a{
      padding: 26px 15px 0; 
      font-size: 1.6rem;
    } 
    .header nav li a span {
      font-size: 1.0rem;
    }
  }
  /* F o o t e r */  
.footer {
  height: 350px;
  padding: 50px 0;
  background-color: #00368e;
  font-size: 1.4rem;
  color: #FFF;
  position: relative;/*子要素は相対的位置を指定するための親要素設定*/
}
.footer-content__wrapper {
  width: 90%;
  padding: 0 30px;
  margin: 0 auto;
  font-size: 1.4rem;
}

.footer-content__company p span{
  font-size: 1.4rem;  
}
.footer-content__company p {
  font-size: 2.0rem;
}
.footer-content__company address{
  margin: 10px 0 0 0;
  font-size: 1.4rem;
  font-style: normal;
}
.footer-site-map {
  display: none;
}
.footer__copyright {
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 100%;
  text-align: center;
}
  .footer__copyright {
    font-size: 1.4rem;
    font-weight: 400;
}
  @media(min-width:960px) { 
.footer {
  height: 350px;
  padding: 50px 0;
  background-color: #00368e;
  font-size: 1.4rem;
  color: #FFF;
  position: relative;/*子要素は相対的位置を指定するための親要素設定*/
}
.footer-content__wrapper {
  width: 90%;
  display: flex;
  text-align: left;
  justify-content: space-between;
  padding: 0 30px;
  margin: 0 auto;
  font-size: 1.4rem;
}
.footer-content__company {
  padding: 0 0 0 10px;
  border-left: 5px solid #98e200;
}
.footer-content__company p span{
  font-size: 1.4rem;  
}
.footer-content__company p {
  font-size: 2.0rem;
}
.footer-content__company address{
  margin: 10px 0 0 0;
  font-size: 1.4rem;
  font-style: normal;
}
.footer-site-map {
  display: flex;
  padding: 0 30px;
  font-size: 1.4rem;
}
.footer-site-map__links:nth-of-type(2){
  margin: 0 0 0 50px;
}
.footer-site-map__links li {
  margin: 0 0 10px 0;
}
.footer-site-map__links li a {
  color: #FFF;
  text-decoration: none;
  font-weight: normal;
}
 }  
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.4rem;
  line-height: 1.0;
  position: relative;
  display: inline-block;
  padding: 1rem 1.2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
/** Topへ戻るボタン　**/
#page-top {
  width: 100px;
  height: 60px;
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: #98e200;
  opacity: 0.8;
}
.page-top__text a {
  position:relative;
  display: block;
  width: 100px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.page-top__text a::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.page-top__text a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}