/* ---------------------------------------- 
 - 基本設計
---------------------------------------- */
/* font */
@font-face {
  font-family: 'LINESeedJP';
  src: url('/shr/font/LINESeedJP_OTF_Rg.woff2') format('woff2'),
       url('/shr/font/LINESeedJP_OTF_Rg.woff') format('woff');
  font-weight: 400;   /* ← normal ではなく数値に */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LINESeedJP';
  src: url('/shr/font/LINESeedJP_OTF_Bd.woff2') format('woff2'),
       url('/shr/font/LINESeedJP_OTF_Bd.woff') format('woff');
  font-weight: 700;   /* ← bold ではなく数値に */
  font-style: normal;
  font-display: swap;
}
p{
  font-family: var(--font_txt);
}
/* font */
/* root */
:root{
    --color_grad: linear-gradient(to top right,#162789 -10%,#65d6ff  130%);
    --color_white:#fff;
    --color_blue:#162789;
    --color_black:#1E232B;
    --color_gray:#eeeeee;
    --font_txt:"Zen Kaku Gothic New", sans-serif;
    --font_ttl:'LINESeedJP',sans-serif;
}
/* root */
h1,h2,h3,h4,h5{
        letter-spacing: 0.1em;
}
*{

    margin: 0;
    padding: 0;
    list-style: none;
}
img{
    width: 100%;
}
a{
    text-decoration: none;
}

/* ---------------------------------------- 
 - header
---------------------------------------- */
header{
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
      transform: translateY(0);
      transition: top .3s ease, background-color .3s ease, .3s ease;
        padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}
.header_area{
    position: relative;
    width: 90%;
    height: 100%;
    margin: 0 auto;
}
.header_logo{
    display: flex;
    align-items: center;
}
.header_logo a{
  display: flex;
  align-items: center;
}
.header_logo_area{
        position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 30px;

}
.header_logo_img path{
    fill:var(--color_white) !important;
}
.header_logo_img{
width: 120px;
}
.header_logo_txt{
    font-family: var(--font_ttl);
    font-weight: normal;
    color: var(--color_white);
    font-size: 11px;
}
/* nav */
    .nav_pc{
        display: none;
    }
  .openbtn1 {
  position: absolute;
  top: 50%;
  right: 0;
    z-index: 9999;
    cursor: pointer;
    width: 48px;
    height: 18px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
  left: 50%;
    height: 1.5px;
    background-color: var(--color_white);
    width: 30px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  
  .header_top_add .openbtn1 span,.header_lower .openbtn1 span{
     background-color: var(--color_blue);
  }
    .header_top_add .header_logo_txt,.header_lower .header_logo_txt{
        color: var(--color_blue);
  }
  .header_top_add,.header_lower{
    background-color: var(--color_white);
    animation-name: gnavAnime;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
    @keyframes gnavAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .header_top_add path,.header_top_add rect,.header_lower path,.header_lower rect{
    fill: var(--color_blue) !important;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 0px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 50%;
  }
  .openbtn1 span:nth-of-type(3) {
      top:100%;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 0px;
  left: 45%;
    transform: translateY(6px) rotate(-45deg);
    width: 30px;
  }
  .openbtn1.active span:nth-of-type(2) {
  display: none;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 12px;
    left: 45%;
    transform: translateY(-6px) rotate(45deg);
    width: 30px;
  }
   .openbtn1.active span{
    background-color: var(--color_white);
   }
    #g-nav.panelactive{
        background-color: var(--color_white);
            position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100vh;
    height:100%;
    overflow-y:scroll ;
    }
  #g-nav.panelactive .ham_nav {
    display: block;
    width: 90%;
    height: 80px;
    padding: 0;
    margin: 0 auto;
  }
    .g-nav_top{
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
  }
    .g-nav_logo{
    width: 120px;
  }
  .ham_nav {
    display: none;
  }
  #g-nav ul{
    padding: 0;
    text-align: left;
  }
  #g-nav.panelactive ul li{
    text-align: left;
  }
#g-nav-list{
    height: 100vh;
    overflow-y: scroll;
}
  #g-nav-list{
    display: none;
    background: var(--color_grad);
  }
  .panelactive #g-nav-list{
    display: block;
  }
  .panelactive #g-nav-list{
    position: relative;
    min-height: 600px;
  }
  .g-nav_position{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
.g-nav_center{
    width: 90%;
    margin: 0 auto;
}
.g-nav_center_li{
    margin-top: 15px;
}
.g-nav_center_li a p{
    color: var(--color_white);
    font-family: var(--font_ttl);
    font-weight: bold;
    font-size:24px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.panelactive{
    animation-name: gnavAnime;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes gnavAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .g-nav_bottom{
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
  }
  .g-nav_bottom_btn{
    width: 100%;
    height: 48px;
    max-width: 300px;
  }
    .g-nav_bottom_btn a{
        width: 90%;
        height: 100%;
        padding-left: 5%;
        padding-right: 5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        background-color: var(--color_white);
        border-radius: 99px;
        font-family: var(--font_ttl);
        font-weight: bold;
        color: var(--color_blue);
    }
    .g-nav_bottom_btn_space{
        margin-top: 40px;
    }
  .g-nav_bottom_btn img{
    width: 10px;
  }
/* nav END */
@media screen and (min-width:768px){

}
@media screen and (min-width:1024px){
    .header_logo_txt{
        font-size: 12px;
    }
  .openbtn1{
    display: none;
}
.header_top_add .nav_pc_li a,.header_lower .nav_pc_li a{
  color: #00358b;
}
    .nav_pc{
        display:block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }  
    .nav_pc_li{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 20px;
        font-size: 14px;

    }
    .nav_pc_li a{
        font-family: var(--font_txt);
        color: var(--color_white);
        font-weight: 500;
    }
        .navgation_item{
        overflow: hidden;
      }
      .navgation_item a{
        position: relative;
        display: block;
        text-decoration: none;
      }
      .pc_btn{
        height: 35px;
        width: 140px;
        text-align: center;
        background: var(--color_grad);
                border-radius: 99px;
                margin-left: 10px;
      }
      .pc_btn a{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 20px;
      }
      .pc_btn a p{
color: var(--color_white);
      }
      .pc_btn a img{
          width: 8px;
      }
}
/* ---------------------------------------- 
 - header END
---------------------------------------- */
/* ---------------------------------------- 
 - contact
---------------------------------------- */
#contact{
    background: var(--color_grad);
}
.contact_area{
    padding:60px 0 ;
    width: 90%;
    margin: 0 auto;
}
.contact_ttl .contact_ttl_en{
  font-family: var(--font_ttl);
    color: var(--color_white);
    text-align: center;
}
.contact_txt{
    margin-top: 20px;
    text-align: center;
    font-family: var(--font_ttl);
    font-weight: bold;
    font-size: 20px;
    line-height: 175%;
    color: var(--color_white);
}
.contact_btn_area{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content:center ;
    gap: 30px;
}
.contact_btn{
    width: 80%;
    max-width:250px;
    height: 46px;
    background-color: #fff;
    border-radius: 99px; 
}
.contact_btn a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 10px;

}
.contact_btn img{
    width: 8px;
}
.contact_btn p{
    color: var(--color_blue);
    font-family:var(--font_ttl);
    font-size: 14px;
    font-weight: bold;
}
.contact_lower{
  margin-top: 60px;
}
@media screen and (min-width:768px){
  .contact_lower{
  margin-top: 100px;
}
.contact_area{
    padding: 120px 0;
}
.contact_btn_area{
    margin-top: 60px;
}
.contact_txt{
    margin-top: 40px;
    font-size: 26px;
}

}
@media screen and (min-width:1024px){
  .contact_ttl{
    text-align: center;
  }
  .contact_ttl_en{
    font-size: 24px;
    
  }
    .contact_txt {
        margin-top: 60px;
        font-size: 32px;
    }
    .contact_lower{
      margin-top: 120px;
    }
}
/* ---------------------------------------- 
 - contact END
---------------------------------------- */

/* ---------------------------------------- 
 - footer
---------------------------------------- */
.footer_area{
    width: 90%;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 40px;
}
.footer_wrap{
    display: flex;
    flex-wrap: wrap;
        justify-content: space-between;
}
.footer_nav{
    width: 40%;
}
.footer_nav_li{
    display: flex;
    flex-wrap: wrap;

    row-gap:10px;
    font-family: var(--font_txt);
}
.footer_nav_li li {
    width: 100%;
}
.footer_nav_li a{
    font-size: 14px;
    font-weight: 500;
    color: var(--color_blue);
}
.footer_right{
    width: 50%;
}
.footer_logo{
    margin-left: auto;
    width: 120px;
}
.footer_corporate_btn{
    width:160px;
    height: 30px;
    border-radius: 99px;
    margin-left: auto;
    margin-top: 20px;
    background-color: #00358b;
}
.footer_corporate_btn a{
    width: 100%;height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    font-size: 10px;
    color: var(--color_white);
    font-family: var(--font_ttl);
}
.copy{
    margin-top: 20px;
    font-size: 10px;
    text-align: end;
}
.footer_corporate_btn img{
    width: 10px;
}
@media screen and (min-width:768px){
.copy{
    text-align:right;
}
}
@media screen and (min-width:1024px){
    .footer_area{
        margin-top: 80px;
    }
    .footer_nav{
        width: fit-content;
        margin: 0 auto;
    }
.footer_nav_li a{
    font-size: 16px;
    font-weight: 500;
    text-align:center;
}
.footer_nav_li{
    width: auto;
  display: flex;
    column-gap: 20px;
    text-align: center;
}
.footer_nav_li li{
    width: fit-content;
}
    .footer_right{
        width: 90%;
        margin: 0 auto;
    }
        .footer_corporate_btn{
            width: 200px;
            height: 40px;
            
        margin: 0 auto;
        margin-top: 60px;
    }
    .footer_corporate_btn a{
font-size: 14px;
    }
    .copy{
        text-align: center;
        margin-top: 40px;
    }
    .footer_wrap{
    display: block;
}

.footer_logo{
    margin: 0 auto;
    margin-top: 60px;
}
}
/* ---------------------------------------- 
 - footer END
---------------------------------------- */