@charset "UTF-8";

@font-face{
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src:
  local("Noto Sans CJK JP"),
  url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Reegular.woff2)format('woff2'),
  url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Reegular.woff)format('woff'),
  url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Reegular.otf)format('opentype');
}
html{
  font-size: 62.5%;
}
body{
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
}
ul {
  list-style: none;
}
a{
  color: #333;
  text-decoration: none;
}
a:hover{
  cursor: pointer;
}
img{
	max-width: 100%;
	height:auto;
}
input{
	-webkit-appearance:none;
	appearance:none;
	border-radius: 0;
}
.txt{
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.75px;
  text-align: left;
}

/* -----------------------------------
 *
 * header
 *
 *------------------------------------*/
/*ナビメニューのスタイルを指定*/
nav.NavMenu{
  position: fixed; /*表示位置を固定*/
  z-index: 2; /*重ね順を変更*/
  top: 0; /*表示位置を指定*/
  left: 0; /*表示位置を指定*/
  background: #fff;/*背景を白にする*/
  color: #000; /*文字色を黒にする*/
  text-align: center; /*テキストを中央揃え*/
  width: 100%; /*全幅表示*/
  transform: translateY(-100%); /*ナビを上に隠す*/
  transition: all 0.6s; /*アニメーションの時間を指定*/
}
nav.NavMenu ul{
  background: #84ADD3;
  margin: 0 auto;
  padding: 0;
}
nav.NavMenu ul li{
  font-size: 1.1rem;
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px dotted #333;
}
nav.NavMenu ul li:nth-last-of-type(even){
  background-color: #538CC2;
}
nav.NavMenu ul li:last-child{
  padding-bottom: 0;
  border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a{
  display: block; /*クリックできる領域を広げる*/
  color: #fff;
  padding: 1em 0;
}
nav.NavMenu.active{
  transform: translateY(0%);
}
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    left: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
}

.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #000;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
    left: 6px;
}

.Toggle span:nth-child(1) {
    top: 9px;
}

.Toggle span:nth-child(2) {
    top: 18px;
}

.Toggle span:nth-child(3) {
    top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.logo{
  width: 54px;
  height: 42.85px;
  display: block;
  position: fixed;    /* bodyに対しての絶対位置指定 */
  right: 13px;
  top: 12px;
  cursor: pointer;
  z-index: 3;
}
.nav-logo{
  display: none;
}
@media (min-width: 768px) {
  .Toggle{
    display: none;
  }
  .logo{
    display: none;
  }
  .nav-logo{
    display: block;
    width: 54px;
    height: 42.85px;
    padding: 12px;
  }
}

/* -----------------------------------
 *
 * footer
 *
 *------------------------------------*/
 footer .footer-top__menu li{
   height: 100px;
   text-align: center;
 }
 footer .footer-top__menu li.footer-top__menu01{
   background-color: #538CC2;
 }
 footer .footer-top__menu li.footer-top__menu02{
   background-color: #84ADD3;
 }
 footer .footer-top__menu li a{
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 3.6px;
  line-height: 18px;
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
 }
.footer-box{
  background-color: #538CC2;
  padding: 42px 24px 16px;
}
.footer-box__title{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 24px;
}
.footer-logo{
  width: 54px;
  height: 42.85px;
}
.footer-text{
  font-weight: bold;
  color: #fff;
}
.footer-adress{
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-adress dd{
  line-height: 1.2;
  text-align: right;
}
.footer-tel{
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 42px;
}
.contact{
  display: block;
  font-size: 1.2rem;
  color: #333;
  background-color: #fff;
  width: 100%;
  text-align: center;
  padding: 3px 0;
  border-radius: 5px;
}
.bomb:before {
  font-family: "Font Awesome 5 Free";
  content: '\f1e2';
  font-weight: 900;
}
.privacy{
  text-align: center;
  font-size: 1.2rem;
  margin-top: 4px;
}
.privacy a{
  color: #ffffff;
}
.copyright{
  display: block;
  font-size: 1.0rem;
  color: #fff;
  text-align: center;
  margin-top: 80px;
}
@media (min-width: 768px) {
  .footer-top__menu{
    display: flex;
  }
  .footer-top__menu01,.footer-top__menu02{
    display: block;
    width: 50%;
  }
  .footer-box__pc{
    max-width: 1000px;
    margin: 0 auto;
  }
  .footer-inline{
    display: flex;
    justify-content: space-around;
  }
  .footer-logo{
    margin-right: 20px;
  }
  .footer-address__text__pc{
    margin-right: 20px;
  }
  .footer-br__pc{
    display: none;
  }
  .footer-tel{
    justify-content: space-around;
  }
  .contact{
    width: 50%;
    margin: 0 auto;
  }
}

/* ------------------------------- */
@media (min-width: 768px) {
  nav.NavMenu{
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 2px;
    border-bottom: 2px solid #F3F3F3;
    transform: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav.NavMenu ul{
    background: #fff;
    width: 70%;
    display: flex;
    margin: 0;
  }
  nav.NavMenu ul li{
    font-size: 1.0em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: none;
  }
  nav.NavMenu ul li:hover{
    border-bottom: solid 2px #333;
  }
  nav.NavMenu ul li a{
    display: block; /*クリックできる領域を広げる*/
    color: #111;
    padding: 1em 0;
  }
  nav.NavMenu ul li:nth-last-of-type(even){
    background-color: #fff;
  }
}
