@charset "utf-8";
/*======================================================

  共通レイアウト

======================================================*/

/*----------------------------------------
      BASE
----------------------------------------*/
html{
   font-size:62.5%; 
}
body{
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 500;
  font-size:1.6rem;
  line-height: 1.7;
  color:#222222;
}
.cf:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
}
:root .cf::after { /* IE9 */
  content: ""\9;
  clear: both\9;
  display: block\9;
  height: 0\9;
}
table {
  width: 100%;
}
a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  backface-visibility: hidden;
}
#wrapper{
  position: relative;
}
#contents{
  overflow: hidden;
}

/*----------------------------------------
      HEADER
----------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.7);
  z-index: 999;
  transition:0.3s;
 }
header .inner{
  max-width:1200px;
  width:92%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
header.showing .inner{
  padding: 1% 0;
}
header .logo_area{
  width: 30%;
  max-width: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;  
  transition:0.3s;
}
header.showing .logo_area{
  width: 19%;
}
header .logo_area a{
  display:block;
}
header .inner .logo_area a img{
  max-width:100%;
}
header .r_area{
  width: 45%;
  margin-left: auto;
  transition:0.3s;
}
header.showing .r_area{
  display:flex;
  flex-direction:row-reverse;
  width: 80%;
  align-items: center;
}
header .r_area .btn_area{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 530px;
  margin-left: auto;
}
header.showing .r_area .btn_area{
  width: 40%;
  max-width:100%;
}
header .r_area .btn_area li{
  line-height:1;
  width: 32%;
}
header .r_area .btn_area li a{
  display: block;
  background: #226AD8;
  color: #fff;
  font-weight: 600;
  padding: 6% 8%;
  font-size: 1.4rem;
  text-align: center;
  position:relative;
  border:2px solid #226AD8;
}
header.showing .r_area .btn_area li a{
  font-size: 1.2rem;
  padding: 6% 7%;
}
header .r_area .btn_area li a:before{
  content:"";
  background:url(../Image/common/img_arrow_01.png) no-repeat;
  background-size:contain;
  width: 5px;
  height: 10px;
  display:block;
  position:absolute;
  top:50%;
  right: 5%;
  transform:translateY(-50%);
}
header .r_area .btn_area li:nth-child(2) a{
  background: #1C306F;
  border:2px solid #1C306F;
}

@media screen and (min-width : 992px ) {
  header .inner .logo_area a:hover{
    opacity:0.6;
  }
  header .r_area .btn_area li a:hover{
    background:#fff;
    color:#226AD8;
  }
  header .r_area .btn_area li a:hover:before{
  background:url(../Image/common/img_arrow_03.png) no-repeat;
  background-size:contain;
  }
  header .r_area .btn_area li:nth-child(2) a:hover{
    background:#fff;
    color:#1C306F;
  }
  header .r_area .btn_area li:nth-child(2) a:hover:before{
  background:url(../Image/common/img_arrow_02.png) no-repeat;
  background-size:contain;
  }
}
header #gNavi .navi{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
header.showing #gNavi{
  width: 58%;
}
header #gNavi .navi li{
  line-height: 1;
  width: 20%;
}
header #gNavi .navi li a{
  display: block;
  padding: 18% 3%;
  text-align: center;
  position:relative;
  font-weight: 700;
}
header.showing #gNavi .navi li a{
  font-size:1.4rem;
}

@media screen and (min-width : 992px ) {

  #gNavi ul li a:after{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #0a479d;
    left:initial;
    right: 0;
    bottom: 0;
    transition: 0.4s;
  }
  #gNavi ul li a:hover:after{
    width: 100%;
    right:initial;
    left:0;
  }
}
/*----------------------------------------
      CV AREA
----------------------------------------*/
#cv_area{
  background: url(../Image/common/bg_foot.jpg) no-repeat;
  background-size:cover;
  padding: 6rem 0;
  color: #fff;
  text-align:center;
}
#cv_area .ttl_wrap{
  margin-bottom: .5em;
}
#cv_area .ttl_wrap + p{
  margin-bottom: 2.5em;
}
#cv_area .ttl_wrap .en{
  color:#fff;
}
#cv_area .ttl_wrap .en:before {
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    width: 6%;
}
#cv_area .ttl_wrap .ttl_01 {
    font-size: 3.4rem;
}
#cv_area .contact_area{
  background:#fff;
  color:#333333;
  padding: 5.5% 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cv_area .contact_area .l_box{
  width: 48%;
  line-height: 1;
  border-right: 1px solid #C3D2DE;
}
#cv_area .contact_area .l_box .m_txt{
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}
#cv_area .contact_area .l_box .tel{
  font-weight: bold;
  margin-bottom: 1rem;
}
#cv_area .contact_area .l_box .tel a{
  font-size: 6.3rem;
  display: inline-block;
   color: #333333;
}
#cv_area .contact_area .l_box .tel a:before{
  content:"";
  background:url(../Image/common/img_tel.png) no-repeat;
  width: 35px;
  height: 46px;
  display: inline-block;
}
@media screen and (min-width : 992px ) {
  #cv_area .contact_area .l_box .tel a{
    pointer-events:none;
}
}
#cv_area .contact_area .l_box .s_txt{
  font-size: 1.4rem;
  font-weight: 500;
}
#cv_area .contact_area .r_box{
  width: 48%;
}
#cv_area .contact_area .r_box a{
  display: block;
  max-width: 450px;
  width: 100%;
  background: #1C2F6E;
  border: 2px solid #1C2F6E;
  color: #fff;
  margin:auto;
  margin-top:1rem;
  line-height:1;
  padding: 4% 0;
  position:relative;
  font-weight: 700;
}
#cv_area .contact_area .r_box a:first-child{
  margin-top:0;
}
#cv_area .contact_area .r_box a:nth-child(2){
  background: #216AD7;
  border: 2px solid #216AD7;
}
#cv_area .contact_area .r_box a:before{
  content:"";
  background:url(../Image/common/img_arrow_01.png) no-repeat;
  width:8px;
  height:14px;
  display:block;
  position:absolute;
  right:2%;
  top:50%;
  transform:translateY(-50%);
}
@media screen and (min-width : 992px ) {
  #cv_area .contact_area .r_box a:hover{
    background:#fff;
    color:#1C2F6E;
  }
  #cv_area .contact_area .r_box a:hover:before{
    background:url(../Image/common/img_arrow_02.png) no-repeat;
  }
  #cv_area .contact_area .r_box a:nth-child(2):hover{
    background:#fff;
    color:#216AD7;
  }
  #cv_area .contact_area .r_box a:nth-child(2):hover:before{
    background:url(../Image/common/img_arrow_03.png) no-repeat;
  }
}

/*----------------------------------------
      FOOTER
----------------------------------------*/
#footer .top_box{
  background:#1F1F1F;
  color:#fff;
  padding: 4.3rem 0;
}
#footer .top_box .sec_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 92%;
  margin: auto;
}
#footer .top_box .l_box{
  width: 27%;
  font-size: 1.4rem;
  font-weight: 500;
}
#footer .top_box .l_box img {
    max-width: 75%;
    margin-bottom: 1.5rem;
}
#footer .top_box ul.r_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 44%;
}
#footer .top_box ul.r_box li a{
  color: #fff;
  display: block;
  font-weight: 500;
  font-size: 1.4rem;
  position:relative;
}
@media screen and (min-width : 992px ) {
  #footer .top_box ul.r_box li a:after{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    left:initial;
    right: 0;
    bottom: -1rem;
    transition: 0.4s;
  }
  #footer .top_box ul.r_box li a:hover:after{
    width: 100%;
    right:initial;
    left:0;
  }
}
#footer .bottom_box{
  padding: 1rem 0;
}
#footer .bottom_box .sec_inner{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-weight: 500;
  font-size: 1.3rem;
  width: 92%;
  max-width: 1200px;
  margin: auto;
 }

@media screen and (min-width : 992px ) {

}


/*======================================================

  ノートPC @ 992～1199px

======================================================*/
/* @ 1199px～ */
@media screen and (max-width : 1199px){
#cv_area .contact_area .l_box .tel a {
    font-size: 5rem;
}
#footer .top_box .l_box {
    width: 40%;
}
}

/* @ 1199～992pxのみ */
@media  (min-width : 992px) {

}
/*======================================================

  タブレット @ 768～991px

======================================================*/

/* @ 991px～ */
@media screen and (max-width : 991px) {
header {
  position: absolute;
}
header .inner{
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
}
header .r_area .btn_area{
  display: none;
}
ul.drawer-menu{
  padding: 70px 5% 30px;
  z-index: 9999;
  background: rgb(28, 47, 110,0.9);
  box-sizing: border-box;
  min-height: 100vh;
  text-align: center;
}
.drawer-nav{
  background: none;
  z-index: 999;
}
.main_menu li{
  margin-bottom:1.5rem;
}
.main_menu li:nth-child(8){
  margin-bottom:0rem;
  margin-top:3rem;
}
.main_menu li a{
  display: block;
  color: #fff;
  font-weight: 300;
  line-height:1;
}
.main_menu li a p{
  font-size: 1.2rem;
  margin-bottom:0.4rem;
  font-weight: 600;
  opacity: 0.7;
}
.main_menu li a span{
  font-size: 1.7rem;
  font-weight: 500;
}
.drawer--right .drawer-nav {
    right: -77.25rem;
    -webkit-transition: right .6s cubic-bezier(.19,1,.22,1);
    transition: right .6s cubic-bezier(.19,1,.22,1);
}
.drawer-open .drawer-hamburger-icon, 
.drawer-open .drawer-hamburger-icon:after, 
.drawer-open .drawer-hamburger-icon:before {
    background-color: #fff;
}
.drawer-open .drawer-hamburger-icon {
    background-color: transparent!important;
}
.drawer-overlay{
  z-index: 6;
}
.drawer-hamburger{
  width: 2.8rem;
  height: 2.8rem;
  padding: 13px 1.75rem 22px;
  z-index: 99999;
  border:none;
}
.drawer-nav {
  width: 100%;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}
.sub_menu li a{
  display:block;
  background: #fff;
  color: #394883;
  padding: 2% 3%;
  text-align: center;
  width: 46%;
  margin: auto;
}
.sub_menu li.tel a{
  background:none;
  color:#fff;
}
.sub_menu li.tel a span{
  font-size:3rem;
  font-weight:700;
}
.sub_menu li.tel a span:before{
  content:"";
  background:url(../Image/common/img_tel_02.png) no-repeat;
  background-size:contain;
  width: 20px;
  height: 24px;
  display:inline-block;
  margin-right: 2px;
}
#cv_area .l_box {
    width: 48%;
}
#cv_area .l_box .l_txt {
    font-size: 7rem;
}
#cv_area .btn_01 {
    width: 48%;
}
#cv_area .btn_01 a p:after {
    right: -22%;
}
#cv_area .ttl_wrap .ttl_01 {
    font-size: 3rem;
}
#cv_area .contact_area .l_box .tel a {
    font-size: 4rem;
}
/*----------------------------------------
      FOOTER
----------------------------------------*/
#footer {
    padding: 0rem 0;
}
#footer .top_box .sec_inner {
    display: block;
}
#footer .top_box .l_box {
    width: 56%;
    margin: auto;
    text-align: center;
}
#footer .top_box ul.r_box {
    display: none;
}
#footer .top_box .l_box img {
    max-width: 64%;
}
#footer .bottom_box .sec_inner {
    text-align: center;
    flex-direction: column-reverse;
}
}

/*======================================================

  スマホ(大) @ 576～767px

======================================================*/

/* @ 767px～ */
@media screen and (max-width : 767px ) {
header .inner {
    width: auto;
}
header.header {
    padding: 0;
}
header .inner .logo_area {
    width: 225px;
}
.drawer-hamburger{
  padding: 15px 1.75rem 24px;
}
.drawer-hamburger{
  width: 2.5rem;
}
.drawer-nav li .nav_tel a {
  font-size: 2.3rem;
}
.drawer-hamburger {
  padding: 7px 1.5rem 17px;
  top: 0px;
}
.sub_menu li a{
  padding: 4% 3%;
  width: 80%;
}
#cv_area {
    padding: 4rem 0;
}
#cv_area .ttl_wrap .ttl_01 {
    font-size: 2.5rem;
}
#cv_area .ttl_wrap + p {
    text-align: left;
}
#cv_area .ttl_wrap > p {
    font-size: 1.3rem;
}
#cv_area .contact_area {
    display: block;
}
#cv_area .contact_area .l_box {
    border: none;
    width: 100%;
    margin-bottom: 2rem;
}
#cv_area .contact_area .l_box .tel a:before {
    background-size: contain;
    width: 25px;
    height: 25px;
}
#cv_area .contact_area .l_box .m_txt {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
#cv_area .contact_area .r_box {
    width: 100%;
}
#footer .top_box .l_box img {
    max-width: 92%;
}
}
/* @ 576～767pxのみ */
@media  (min-width : 576px) and (max-width : 767px){
}
/*======================================================

  スマホ(小) @ 320～575px

======================================================*/
/* @ 575px～ */
@media screen and (max-width : 575px) {



}
