@charset "utf-8";
/*スマホ用スタイル*/
body{
  padding: 0;
  margin: 0;
  background-color: #fff;
}
main{
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 14px;
}
header{
  position: relative;
}
header > div{
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
/*ロゴ画像の大きさ*/
header > div img{
    width: 160px;
}
/*PCロゴを非表示する*/
.splogo img{
  display:inline-block;
  margin-top: 10px;
}
/*スマホロゴは表示にする*/
.pclogo img{
  display:none;
}
/*JP/EN切替*/
.language_mobile{
  display: flex;
  justify-content: center;
}
.language_mobile p{
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 0 2em;
  margin: 1em 0.5em;
}
.language_mobile a{
  width: 100%;
}
.languagePC{
  display: none;
}
/*ボタンの位置*/
.btn_menu{
    position: fixed;/*←固定(元：absolute)*/
    top: 10px;
    right: 10px;
    z-index: 1000;/*スライドに隠れないようにする*/
}
/*ボタンのスタイル*/
.btn_menu span{
    height: 50px;
    width: 50px;
    display: flex;
    border-radius: 50%;
    padding: 0;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: #000;
    color: #fff;
}
.nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(28, 73, 158, 0.96);
    height: 0;
    opacity: 0;
    transition: all 300ms;
}
.nav.show ul{
    height: auto;
    opacity: 1;
    position: fixed;/*ヘッダーメニュー固定*/
    width: 100%;/*ヘッダーメニュー固定時幅調整*/
    z-index: 1000;/*スライドに隠れないようにする*/
}
.nav ul li{
    text-align: center;
    border-bottom: solid 1px #ccc;
    padding: 0.5em 0;
    display: none;
}
.nav.show ul li{
    display: block;
  }
.line{
  color: #fff;
}

  /* TOP画像 */
.company {
  background-image: url("img/company.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
.lead{
  color:white;
  text-align:center;
}
.sec1{
  width: auto;
  margin: 0 10px 0px;
}
.sec2,.sec3,.sec4{
  padding: 30px 0;
}
h2{
  margin-bottom: 0;
}
h3{
  margin: 5px;
}
  
/*代表メッセージ*/
.message01{
  width: 90%;
  margin: 0 auto;
  display: block;
  align-items: center;
  font-size:14px;
  text-align: center;
}
.message02{
  width: 90%;
  margin: 0 auto;
  font-size:14px;
}

img.fabio{
  width: 100%;
  height: auto;
  margin: 10px;
}
p.left{
  text-align: left;
}
p.name{
text-align: right;
font-size: 18px;
font-family: "ＭＳ 明朝","MS Mincho", "メイリオ", "meiryo", sans-serif;
}
.overview>dl {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
}
.overview>dl>dt {
  width: 25%;
  font-weight: bold;
  margin-left: 5%;
  font-size: 14px;
}
.c-txt{
  margin: 5px;
}
.center{
  text-align: center;
}

/*PARTNERSHIPS*/
.partnerships img{
  width: 90%;
  padding: 2em 1em;  
  margin: 0 auto;
}
.partnerships h3{
  text-align: center;
  margin: 1em;
}
.partnerships p{
  text-align: left;
}
.partnerships_contents_text_url{
  text-align: center;
  font-size: 0.9em;
}

/*ACCESS*/
.nagono{
  width: 100%;
}
iframe{
  width: 100%;
  height: 500px;
}



/*共通*/
/*↓フッター*/
footer {
  background-color: #1c499e;
  text-align: center;
  width: auto;
  width: 100%;
}
footer #footer_nav {
  background-color: #efefef;
  padding: 5px 0;
}
footer #footer_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer #footer_nav li {
  display: inline;
  border-left: solid 1px #98999a;
  margin-left: 8px;
  padding-left: 8px;
  font-size: smaller;
}
footer #footer_nav li:last-child {
  border-right: solid 1px #98999a;
  padding: 0 8px;
}
footer small {
  display: block;
  padding: 8px 0;
  color: #fff;
}
.flink{
  color: #98999a;
}
/*↑フッター*/ 





/*↓PC用スタイル*/
@media(min-width:544px){
    header{
      display:flex;
      justify-content: space-between;
      padding: 0 10px;
      background-color: rgba(0, 0, 0, 0.75);
      position: fixed;
      width: 100%;
      top:0;
      z-index: 10000;
      border-top:10px solid #1c499e;/*ヘッダーの上にライン*/
      font-weight: bold;
      align-items: center;
    }
    header > div{
      width: 300px;
    }
    /*JP/EN切替*/
    .language_mobile{
      display: none;
    }
    .languagePC{
      display: initial;
      padding-left: 30px;
    }
    .languagePC ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 5px 0 0 0;
    margin: 0;
    }
    .languagePC ul li {
      margin: 0 5px;
    }
    .languagePC ul li a {
      font-size: 14px;
    }
    .languagePC_a {
      color: #6f7579;
    }
    .languagePC_a:hover{
      color: #fff;    
      transition: all .3s ease;
      -webkit-transition: all .3s ease;
    }
    .line_active {
      color: #fff;
      border-bottom: solid 3px #2bb3e9;
      display: block;
      position: relative;
      text-decoration: none;    
      padding: 0 0 2.5px;
    }
    .line_active::after {
      bottom: 0;
      content: "";
      display: block;
      position: absolute;
      width: 0;
    }
    /*PC画像を表示する*/
    .pclogo img{
      display:inline-block;
    }
    /*スマホ画像は非表示にする*/
    .splogo img{
      display:none;
    }

    footer{
      width:  100%;
      align-items: center;
      justify-content: space-between;
    }
    .br_footernav{
      display: none;
    }
    main{
      margin: 0 auto;
      width: 90%;
    }

    p {
      text-align: center;
      font-size: 18px;
    }

    .btn_menu{
      display: none;
    }
    .nav{
      width: 100%;
    }
  .nav ul{
    display: flex;
    justify-content: flex-end;
    opacity: 1;
    height: auto;
    background: initial;
    min-width: 620px;
    padding:10px 30px 0 0;
  }
  .nav ul li{
    border: none;
    margin: 0 20px;
    display: block;
  }
  /*ヘッダーリンク選択の線付け*/
  .line {
    display: block;
    padding: 0 0 5px;
    position: relative;
    text-decoration: none;
  }
  .line::before,
  .line::after {
    border-bottom: solid 3px #2bb3e9;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
  }
  .line::before {
    left: 25%;/*左線の開始位置(中央)*/
  }
  .line::after {
    right: 25%;/*右線の開始位置(中央)*/
  }
  .line:hover::before,
  .line:hover::after {
    width: 80%;/*線の長さ(中央から)*/
  }
  /*線付けここまで*/
  .stayline{
    display: block;
    padding: 0 0 5px;
    position: relative;
    text-decoration: none;
    color: #98999a;/*クリックしても色変えない*/
    width: 140%;
  }

  .br_sp{
    display: none;
  }

    /*代表メッセージ*/
    .message01{
      width: 100%;
      display: flex;
      flex-direction:row-reverse;
    }
    img.fabio{
      width: 280px;
      height: auto;
      margin: 0 15px;
    }
    .message02{
      width: 100%;
    }
    /*会社概要*/
    h1{
      font-size: 32px;
    }
    .company {
      margin-top: 85px;
      height: 500px;
    }
    .lead p{
      font-size: 20px;
    }
    .overview{
      width: 65%;
      margin: 0 auto;
    }
    .c-txt{
      text-align: left;
      padding-left: 30%;
    }
    .overview>dl>dt {
      float: left;
      font-size: 18px;
    }

  /*PARTNERSHIPS*/
  .partnerships_contents{
    display: flex;    
    align-items: center;
  }
  .partnerships img{
    width: 300px;
    padding: 3.75em 1em;
  }
  .partnerships_contents_text{
    margin-left: 1em;
    width: calc(100% - 300px);
  }
  .partnerships h3{
    margin: 0 0 1em 0;
    text-align: left;
  }
  .partnerships_contents_text_url{
    text-align: left;
    font-size: 1em;
  }
  /*アクセス*/
  .sec_contents{
    width: 100%;
    margin: auto;
  }
  .center_inner{
    display: flex;
  }
  .center_inner > img {
    flex : 1 1 auto; width: 0%;
  }

  .c-tbl>dl {
    display: flex;
    padding: 1rem;
  }
  .c-tbl.row2>dl>dt{
    width: 25%;
  }
  .c-txt p {
    margin: 0;
  }
}




