@charset "utf-8";
/* CSS Document */

*, ::before, ::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Zen Old Mincho', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-style: normal;
  font-weight: 500;
  font-size: 1.2rem;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  z-index: 0;
  font-feature-settings: "pkna"1;
  overflow-x: hidden;

}
a {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: inherit;
  font-feature-settings: "palt";
  line-height: 1.65;
}
p {
  margin-bottom: 0;
}
pre {
  margin-bottom: 0;
}
dl {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
ol {
  margin-bottom: 0;
  list-style: decimal;
  padding-left: 1em;
}
img
{
    max-width: 100%;
    height: auto;
}
/*-----------------------------------------------------------------*/

#header
{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 1rem;
    height: 140px;
    background: rgba(255,255,255,0.80);
    z-index: 100;
}
.logo
{
    padding: 2rem 1rem 1rem 5rem;
    position: absolute;
  top: 1rem;
  left: 1rem;
    width: 300px;
}
.h_r
{
    margin-left: auto;
    display: flex;
    justify-content: space-between;
}
.gnav
{
    display: flex;
    align-items: center;
}
.gnav ul
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gnav ul li
{
    font-size: 1.6rem;
    text-align: center;
    margin-right: 3vw;
}
.gnav ul li a
{
    position: relative;
    transition: 0.3s;
    display: inline-block;
}
.gnav ul li a::after
{
    position: absolute;
    bottom: -8px;
    left: 0;
    content: "";
  transition: 0.3s;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: #004AAD;
}
.gnav ul li a:hover::after
{
    width: 100%;
}
.gnav ul li span
{
    display: block;
    color: #004AAD;
    font-size: 2.4rem;
}
.h_tel
{
    padding: 0 5rem;
    display: flex;
    flex-direction: column;
}
.h_telbtn
{
    margin-bottom: 1rem;
}
.mv
{
    position: relative;
}
.catch
{
    position: absolute;
    top: 200px;
    right: 160px;
    font-size: 4.8rem;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    line-height: 1.6;
    font-weight: 600;
    text-align: right;
}
.catch_bg
{
    position: absolute;
    top: 228px;
  right: 20px;
}
.greeting
{
    padding: 3% 0 0;
}
.wrap
{
    max-width: calc(1500px + 6%);
    margin: 0 auto;
    padding: 3%;
}
.greeting_box
{
    margin: 0 auto;
    position: relative;
}
.greeting_box::before
{
    content: "";
    background: url("images/greeting_bg.png") no-repeat top right;
    position: absolute;
    top: -100px;
    right: 10%;
    width: 732px;
    height: 377px;
    z-index: -1;
    background-size: contain;
}
.greeting_txt
{
    font-size: 5rem;
    color: #004EA2;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.6;
}
.flex
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.ac
{
    align-items: center;
}
.business
{
    padding: 3% 0;
}
.f_inner .img
{
    width: 60%;
    height: 100%;
}
.f_inner .img img
{
    height: 702px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.f_inner .txt
{
    width: 40%;
    padding: 0 4vw;
}
.en
{
font-family: "Cormorant Garamond", serif;
}
.h3_ttl
{
    font-size: 7rem;
    font-weight: 500;
    padding-bottom: 2rem;
    position: relative;
    margin-bottom: 8rem;
    color: #004EA2;
}

.h3_ttl span
{
    display: block;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    color: #004AAD;
}
.sub_ttl
{
    font-size: 2.4rem;
    margin-bottom: 3rem;
}
.business p
{
    font-size: 1.8rem;
    margin-bottom: 5rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.btn
{
    padding: 5rem;
    text-align: center;
    margin-bottom: 5rem;
}
.btn a
{
    padding: 2rem 18rem 2rem 4rem;
    font-size: 1.8rem;
    color: #004EA2;
    background: #FFFFFF;
    position: relative;
    border: 1px solid #004EA2;
    border-radius: 50px;
}
.btn a::before
{
    content: "";
    background: url("images/arrow-forward.png")no-repeat top center;
    background-size: cover;
    width: 102px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%);
}

.company
{
    padding: 3% 0;
}
.list
{
    padding-bottom: 3rem;
}
.list li
{
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #004EA2;
    font-size: 1.8rem;
}
.list dl
{
    display: flex;
    align-items: flex-start;
}
.list dt
{
    width: 30%;
}
.list dd
{
    width: 70%;
}
.recruit
    {
        background: url("images/recruit_bg.png") no-repeat top center;
        padding: 0 3%;
        background-size: cover;
    }
    .recruit_wrap
    {
        padding: 6% 3%;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        color: #FFFFFF;
        background: #004EA2;
    }
.recruit .h3_ttl
{
    color: #FFFFFF;
}
.recruit .h3_ttl span
{
    color: #FFFFFF;
}
.recruit .btn
{
    padding-top: 10vw;
    padding-bottom: 0;
}
.recruit p
{
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    line-height: 1.8; 
}
.access
{
    padding: 6% 0;
}
.access_txt
{
    width: 30%;
    position: relative;
    height: 100%;
    padding: 3vw;
}
.access_txt::before
{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url("images/access_bg.png")no-repeat top center;
    background-size: cover;
    width: 373px;
    height: 513px;
}
.access_img
{
    width: 70%;
}
.contact
{
    background: url("images/contact_bg.png")no-repeat top center;
    background-size: cover;
    padding: 8% 3%;
}
.contact .wrap
{
    max-width: calc(800px + 6%);
}
.contact .h3_ttl
{
    text-align: center;
    color: #FFFFFF;
}
.contact .h3_ttl span
{
    color: #FFFFFF;
}
.contact p
{
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 5rem;
    font-size: 1.8rem;
}
.footerarea
{
}
.footerarea .wrap
{
    display: flex;
    justify-content: space-between;
    max-width: 1800px;
    align-items: center;
}
        
.footerarea nav li
{
    font-size: 1.8rem;
}
.t18
{
    font-size: 1.8rem;
}
.f_tel
{
    font-size: 2.8rem;
    position: relative;
    padding: 1rem 0 1rem 3rem;
}
.f_tel::before
{
    content: "";
    background: url("images/tel_icon.png") no-repeat top center;
    top: 50%;
    left: 0;
    background-size: 100%;
    width: 25px;
    height: 26px;
    position: absolute;
    transform: translateY(-50%);
}

.pagetop
{
    padding: 2rem;
}
.copy
{
    border-top: 1px solid #FFFFFF;
    padding: 3rem 0;
    font-size: 1.6rem;
    text-align: center;
    background: #004EA2;
    color: #FFFFFF;
}
.fadeInUpTrigger,
.fadeInDownTrigger,
.fadeInUpTriggerOnce{
    opacity:0;
}
#page-top a{
  text-transform: uppercase;
  transition: all 0.3s;
}
/*------------------------------------------------------------------

ハンバーガーメニュー

-------------------------------------------------------------------*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:0;
    right: -120%;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background: #313D94;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: center;
    font-size: 1.6rem;
    border-bottom: 1px solid #FFFFFF;
}

#g-nav li a{
  color: #FFFFFF;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#g-nav ul li span
{
    display: block;
    font-style: normal;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 0.5rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:0;
  right: 0;
  cursor: pointer;
    width: 100px;
    height:100px;
    background: #004EA2;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 28px;
    height: 3px;
    border-radius: 2px;
  background-color: #FFFFFF;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:36px; 
}

.openbtn1 span:nth-of-type(2) {
  top:44px;
}

.openbtn1 span:nth-of-type(3) {
  top:52px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 39px;
    left: 36px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 51px;
    left: 36px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*--------------------------------------------------------------------------

下層ページ

--------------------------------------------------------------------------*/

.h2_ttl
{
    background: url("images/h2_ttl.png") no-repeat top center;
    background-size: cover;
    padding: 26rem 0 15rem;
    text-align: center;
    color: #FFFFFF;
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 5rem;
}
.h2_ttl span
{
    display: block;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 700;
}
.container
{
    max-width: calc(1200px + 6%);
    margin: 0 auto;
    padding: 3%;
}
.h3
{
    text-align: center;
    font-size: 3.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 5rem;
}
.h3::before
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    border-radius: 3px;
    background: #004AAD;
    width: 10rem;
}
.h4_ttl
{
    font-size: 2.8rem;
    font-weight: 600;
    padding: 1rem 0 2rem 3rem;
    border-bottom: 1px solid #406ACC;
    margin-bottom: 3rem;
    border-left: 10px solid #406ACC;
}
.box .flex
{
    margin-bottom: 8rem;
}
.txt
{
    width: 50%;
}
.img
{
    width:  46%;
}
.txt p
{
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 400;
    margin-bottom: 1rem;
}
.rev
{
    flex-direction: row-reverse;
}
#table01 {
    width: 80%;
    margin: 0 auto 3rem;
    font-size: 1.8rem;
}
#table01 tr {
    border-bottom: 1px solid #b5b1b1;
}
#table01 th {
    width: 30%;
    vertical-align: middle;
}
#table01 th, #table01 td {
    padding: 24px 0;
    border: none;
}
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {

  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {

}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #d04444;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #004aad;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
    text-align: center;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.container p
{
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.flow_design02 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_design02 ul {
  padding: 0;
}

.flow_design02 li {
  list-style-type: none;
}

.flow_design02 dd {
  margin-left: 0;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

.flow02 > li {
  padding: 40px 10px;
}

.flow02 > li:not(:last-child) {
  border-bottom: 3px solid #004AAD;
  position: relative;
}

.flow02 > li:not(:last-child)::before,
.flow02 > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 15%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow02 > li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: #004AAD;
}

.flow02 > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}

.flow02 > li dl {
  margin: 0;
}

.flow02 > li dl dt {
  font-size: 3rem;
  font-weight: 600;
  border-bottom: 2px dotted #878787;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
    letter-spacing: 0.1em;
}

.flow02 > li dl dt .icon02 {
  font-size: 0.6em;
  color: #fff;
  background: #004AAD;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 0.5em;
}
/*--------------------------------------------------------------------------

pc

--------------------------------------------------------------------------*/
@media only screen and (min-width: 846px){
    
    .sp-only
    {
        display: none!important;
    }
    .tab-only
    {
        display: none!important;
    }
    .sp-tab-only
    {
        display: none!important;
    }
    
}

/*--------------------------------------------------------------------------

tablet

--------------------------------------------------------------------------*/

@media only screen and (min-width: 560px) and (max-width: 845px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: none !important;
  }
    #header {
  height: 100px;
}
    .logo {
  width: 260px;
        padding: 1rem 1rem 1rem 3rem;
}
    .tel_btn {
  margin-right: 90px;
}
    .mv {
        height: 50vh;
}
    .mv > img
    {
        height: 50vh;
        object-fit: cover;
        width: 100%;
    }
    .catch {
  font-size: 3.8rem;
}
    .catch_bg {
  top: 210px;
  right: 20px;
}
    .greeting_txt {
  font-size: 4rem;
}
    .f_inner .img {
  width: 100%;
}
    .f_inner .txt {
  width: 100%;
  padding: 0 4vw;
}
    .recruit {
  padding: 0 0%;
}
    
}

/*--------------------------------------------------------------------------

sp

--------------------------------------------------------------------------*/
@media screen and (max-width: 559px) {
    .pc-only {
    display: none !important;
  }
  .pc-tab-only {
    display: none !important;
  }

    #header {
  height: 80px;
}
    .logo {
  width: 160px;
        padding: 1rem 1rem 1rem 1rem;
}
    .tel_btn {
  margin-right: 70px;
        height: 80px;
        width: 80px;
}
    .openbtn1 span {
  left: 22px;
}
    .openbtn1 span:nth-of-type(1) {
  top: 26px;
}
    .openbtn1 span:nth-of-type(2) {
  top: 36px;
}
    .openbtn1 span:nth-of-type(3) {
  top: 46px;
}
    .openbtn1.active span:nth-of-type(1) {
  top: 30px;
  left: 29px;
}
    .openbtn1.active span:nth-of-type(3) {
  top: 42px;
  left: 29px;
}
    .mv {
        height: 50vh;
}
    .mv > img
    {
        height: 50vh;
        object-fit: cover;
        width: 100%;
    }
    .catch {
  font-size: 2rem;
        top: 198px;
  right: 60px;
}
    .catch_bg {
  top: 210px;
  right: 20px;
        width: 50%;
}
    .greeting_txt {
  font-size: 2rem;
}
    .greeting_box::before {
  top: -25px;
  right: 10%;
  background-size: 40%;
}
    .h3_ttl {
  font-size: 5rem;
  margin-bottom: 2rem;
        text-align: center;
}
    .sub_ttl {
  font-size: 2rem;
}
    .access_img {
  width: 100%;
        z-index: 1;
}
    
    .f_inner .img img {
  height: 300px;
}
    .f_inner .img {
  width: 100%;
}
    .f_inner .txt {
  width: 100%;
  padding: 0 4vw;
}
    .recruit {
  padding: 0 0%;
        position: relative;
        z-index: 1;
}
  .access_txt {
  width: 100%;
  position: relative;
  height: 100%;
  padding: 3vw;
}
  .access_txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(0);
  background: url("images/access_bg.png")no-repeat top center;
  background-size: cover;
  width: 165px;
  height: 190px;
}
    .conbox {
  margin-bottom: 3rem;
}
    .openbtn1 {
  width: 80px;
  height: 80px;
}
    .h2_ttl {
  padding: 24rem 0 13rem;
  font-size: 4rem;
}
    .h2_ttl span {
  font-size: 2rem;
}
    .h3 {
  font-size: 3rem;
}
    .img {
  width: 100%;
}
    .txt {
  width: 100%;
}
}