@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
*,body *{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .08em;
  transition: all .4s;
  -webkit-transition: .4s;
  transition: .4s;
}
body{
  background-color: #f7f7f8;
}
a{
/*  cursor: pointer;*/
}
*:hover{
/*  cursor: pointer;*/
  transition: all .4s;
  -webkit-transition: .4s;
  transition: .4s;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

  ヘッダースタイル

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/*
  ヘッダー基本
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.Header {
  background-color: #fff;
  height: 60px;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
/*box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);*/

}
.HeaderDiv {
  width: 1200px;
  height: 60px;
  margin: 0 auto 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.HeaderH1{
  display: grid;
  place-items: center;
}
.HeaderH1 > a{
  display: block;
  width: 130px;
  height: 45px;
  margin-left: 5px;
}
.HeaderH1 > a > img{
  width: 100%;
}
.HeaderUl{
  display: -webkit-flex;
  display: flex;
}
.HeaderUl li{
  width: 135px;
  text-align: center;
}
.HeaderUl li > a{
  display: grid;
  place-items: center;
  width: 135px;
  height: 59px;
  font-size: 16px;
  color: #2a2b2d;
  padding-top: 20px;
  border-bottom: 2px solid #fff;
}
.HeaderUl li > a:hover{
  background-color: #f7f7f8;
  border-bottom: 2px solid #2a2b2d;
}
.HeaderH2{
  margin-left: auto;
  place-items: center;
  width: 200px;
  height: 60px;
}
.HeaderH2 > a{
  display: block;
  width: 200px;
  height: 59px;
  padding: 5px 0 5px 20px;
  background-color: #f7f7f8;
}
.HeaderH2 > a > span{
  font-size: 14px;
  font-weight: 400;
  color: #777a7f;
}
.HeaderH2 > a > p{
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #2a2b2d;
}
.HeaderH2 > a > p::after{
  position: absolute;
  bottom: 5px;
  right: 5px;
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2a2b2d;
}
.HeaderH2 > a:hover{
  background-color: #777a7f;
}
.HeaderH2 > a:hover > p::after{
  border-top: 6px solid #f7f7f8;
}
.HeaderH2 > a:hover > span{
  color: #2a2b2d;
}
.HeaderH2 > a:hover > p{
  color: #f7f7f8;
}
/*
  メイン
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.IndexMain{
  padding-top: 88px;
  background-color: #f7f7f8;
  width: 100%;
  min-height: 100vh;
}
#MainFrame{
  display: -webkit-flex;
  display: flex;
/*
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
*/
}
.main{
  background-color: #f7f7f8;
  min-height: 100vh;
  padding: 40px 0 40px 20px;
  text-align: left;
/*  min-width: 1060px;*/
/*
  width: 1060px;
  overflow: auto;
*/
}

/*
  サイド
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.NavSide{
  background-color: #384b66;
  min-width: 140px;
  max-width: 140px;
  min-height: 100vh;
}
.NavSideUl{

}
.NavSideUl > li{
}
.NavSideUl > li > a{
  display: block;
  height: 46px;
  width: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  background-color: #384b66;
}
.NavSideUl > li > a > span{
  color: #fff;
}
.NavSideUl > li > a:hover{
  background-color: #e9f3fc;
}
.NavSideUl > li > a:hover > span{
  color: #0076be;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
footer.Footer{
  width: 100%;
}
.Copyright{
  margin: 40px auto auto 0;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  color: #fff;
  padding: 10px 0;
  background-color: #061651;
}
.Copyright > a{
  color:#fff;
  font-size: 10px;
  font-weight: 300;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="time"],
input[type="date"],
input[type="password"],
textarea{
  background-color: rgba(255,255,255,.4);
  border: 1px solid #d2d2d2;
  color: #222222;
}
