@charset "UTF-8";

/*================================
ヘッダー
================================*/

/*------------------------------
PCの場合のヘッダーレイアウト
------------------------------*/


.head-in{
    padding:10px 2%;
    border-bottom:1px solid #008ed3;
    padding-bottom:10px;
}

.head-logo{
    max-width:280px;
}

/* ヘッダー privacy、Englishボタン */

.btn-en{
    margin-left:10px;
    display: block;
}

.btn-en a{
    background: #008ed3;
    color:#fff;
    font-size:1.3rem;
    display: block;
    padding:4px 20px;
}

.btn-en a:hover{
    background:#00a00b;
}

.head-btn a:link,
.head-btn a:visited,
.head-btn a:hover{
    text-decoration:none;
}

.btn-privacy{
    color:#717071;
    font-weight: bold;
    /* font-family: din-condensed, sans-serif; */
    font-family:var(--engo);
    font-weight: 400;    
    font-style: normal;
    margin-right:20px;
    position:relative;
}

.btn-privacy::before{
    font-family:"Material Icons";
    content:"\e5df";
    color:#717071;
    font-size:2.8rem;
    position:absolute;
    top:-10px;
    left:-1em;
}



/* スマホの時のヘッダー設定　*/
@media(max-width:768px){
    header{
        padding-top:60px;
    }
    .h1-head{
        margin: 20px auto;
    }
}



/*======================================================
グローバルナビ
======================================================*/

/* PCの時はナビが横並び・上部固定 */

header nav{
    border-bottom:3px solid #008ed3;
}

.g-nav{
    display: flex;
}

.g-nav > li{
    font-size: clamp(1.2rem, 1.6vw,1.6rem);
    font-weight: bold;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding:0.5em;
    text-align: center;
    padding:10px 40px;
}

@media(max-width:850px){
    .g-nav > li{
        padding:10px 20px;
    }
}

.g-nav > li:last-of-type{
    margin-left:auto;
}

.g-nav > li > a{
    display: block;
    color:#222;
    display: block;
    line-height: 1.2em;;
}

nav li a:link, nav li a:visited{
    color: #222;
    text-decoration: none;
}

nav li a:hover p{
    color: #1484c3;
}

nav li a:hover{
    color: #1484c3;
}

.g-nav .nav-en{
    font-size:1.0rem;
    color:#1484c3;
    text-align: left;
}

.g-nav .nav-name{
    position: relative;
}

.g-nav .nav-name:before{
    font-family:"Material Icons";
    content:"\e5df";
    color:#008ed3;
    font-size:2.8rem;
    position:absolute;
    top:0;
    left:-1em;
}


/*----------------------------------
 ナビ固定
----------------------------------*/
 
  /* ロゴのデザイン */
  .head-logo {
    /* アニメーションの変化時間 */
    transition: 0.5s;
  }
  
  /* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
 header nav.scroll-nav {
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    position: fixed;
    top:0;
    text-align: center;
    width:100%;
    /* padding:10px 0; */
    transition: 0.5s;
    z-index: 10;
  }

/*======================================================
スマホドロワーメニュー
======================================================*/

#drawer-checkbox {
    display: none;
  }
  #drawer-icon {
    cursor: pointer;
    display: inline-block;
    height: 70px;
    width: 75px;
    /* position: relative; */
    position: absolute;
    right:0;
    top:0;    
    background:#333;
    color:#fff;
    padding-top:36px;
    text-align: center;
    font-size:1.3rem;
  }
  #drawer-icon span {
    background:  #fff;
    /* border-radius: 4px; */
    display: block;
    height: 1px;
    left: 50%;
    margin: -8% 0 0 -28%;
    position: absolute;
    top: 40%;
    transition: all 0.3s ease-in-out;
    width: 60%;
  }
  #drawer-icon span::before,
  #drawer-icon span::after {
    -webkit-transform: rotate(0);
    background: #fff;
    /* border-radius: 4px; */
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    margin: -8% 0 0 -50%;
    position: absolute;
    top: 50%;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  #drawer-icon span::before {
    margin-top: -24%;
  }
  #drawer-icon span::after {
    margin-top: 19%;
  }
  #drawer-checkbox:checked ~ #drawer-icon span {
    background: rgba(51, 51, 51, 0);
  }
  #drawer-checkbox:checked ~ #drawer-icon span::before,
  #drawer-checkbox:checked ~ #drawer-icon span::after {
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    margin: -8% 0 0 -42%;
    position: absolute;
    top: 50%;
    width: 100%;
  }
  #drawer-checkbox:checked ~ #drawer-icon span::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #drawer-checkbox:checked ~ #drawer-icon span::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #drawer-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: 250px;
    max-width: 90%;
    height: 100%;
    background: #008ed3;
    transition: all 0.3s ease-in-out 0s;
    transform: translateX(-100%);
  }
  #drawer-checkbox:checked ~ #drawer-content {
    transform: translateX(0);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
  }
  
  #drawer-close {
    display: none;
    position: fixed;
    z-index: 39;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
  }
  #drawer-checkbox:checked ~ #drawer-close {
    display: block;
    opacity: 0.3;
  }

  #drawer-content li{
      list-style: none;
      border-bottom:1px dashed #fff;
      color:#fff;
  }

  #drawer-content li a{
      color:#fff;
      text-decoration: none;
      padding:1em;
      display: block;
  }

  #drawer-content .nav-name{
    color:#fff;
    font-size:1.5rem;
    font-weight:bold
  }

  #drawer-content li a:active{
      background: #456fbe;
  }
.cls-1{
  stroke:#1484c3;
}

.cls-2{
    stroke:#1484c3;
}

/*--------------------------------
フッター
--------------------------------*/

.f-nav-wrapper{
    background: #008dd2;
    padding:4px 20px;
    color:#fff;
}

.f-nav-wrapper ul{
    max-width:768px;
    margin: auto;
}

.f-nav li a{
    color:#fff;
    font-size:1.5rem;
}

.f-logo-wrapper{
    padding:10px;
}

.f-logo{
    max-width:260px;
    margin: 20px auto;
}

.f-nav li a{
    padding: 6px 20px;
    display: inline-block;
    text-decoration: none;
}

/*  ページトップへ戻る  */

#pageTop {
  position: fixed;
  bottom: 0;
  right: 50px;
 font-size:3.0rem;
    width:60px;
}

@media(max-width:480px){
    #pageTop a{
        display: none !important;
    }
}

#pageTop i {
  padding-top: 6px
}

#pageTop a {
  display: block;
  z-index: 999;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding:10px 0;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

footer li, footer p, footer a:link, footer a:visited{
    color:#fff;
}

  /*----------------------------------------
バナーエリア
----------------------------------------*/

.Tbn-wrapper{
    background: #f2f2f2;
    padding:20px;
}

.Tbn-field{
    padding:40px 0;
    max-width: 1000px;
    margin: auto;
}

.Tbn-field > div{
    text-align: center;
}

.Tbn-field > div > div{
    margin-bottom:20px;
}


