@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Rubik:ital,wght@0,400;0,500;0,700;1,600&display=swap');
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media all and (max-width: 1024px) {
  body {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  }
}

body.fadeout::after {
  opacity: 1;
}

.pc {display: block !important;}
.sp {display: none !important;}
@media only screen and (max-width: 1024px) {
  .pc {display: none !important;}
  .sp {display: block !important;}
}


a[href^="tel:"] {
  cursor: default;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/* fonts
------------------------------------------------------- */
a {
  color: #666;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s ease;

}

a:hover,
a:active {text-decoration: none;}

a:visited {}
a:hover,
a:active {text-decoration: underline;}
a[href^="tel:"] {
  cursor: default;
}

.taC {text-align: center !important;}
.taR {text-align: right !important;}
.taL {text-align: left !important;}

.bold {font-weight: bold !important;}
.normal {font-weight: normal !important;}
.red{color:#ff0000 !important;}


/* img
------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
/* img hover */
a:hover img{
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
}


/* header
------------------------------------------------------- */
.header {
  padding: 25px 20px 30px;
  display: block;
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: center;
}
.header h1 {
  width: 370px;
  position: absolute;
  top:20px;
  left:30px;
  margin-right: 30px;
}
.header h1 img{
  width: 100%;
}

.header .navButton {
  display: none;
}
/* gNav
------------------------------------------------------- */
.header .gNav {
  z-index: 100;
  transition: all .5s;
}
.header .gNav ul{
  display: flex;
  justify-content: space-between;
}
.header .gNav ul li{
  margin-left: 1.2em;
}
.header .gNav ul li a {
  position: relative;
  display: block;
  text-align: right;
  font-weight: 500;
  color: #000;
  font-size: 1 08%;
  text-decoration: none;
}
.header .gNav ul li a:after{
  content: "";
  height: 3px;
  width: 0;
  background: rgba(93,160,255,0.8);
  position: absolute;
  bottom:-3px;
  left:0px;
  transform: translateY(-50%);
  transition: all .5s;
}
.header .gNav ul li a:hover:after {
  width: 100%;
}
.header .gNav.open {
  transform: translateX(0);
}
@media screen and (max-width: 1240px) {
  .headTel {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .header {
    height: 55px;
    padding: 0 15px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: #fff;
  }
  .header h1 {
    position: relative;
    top:5px;
    left:0;
    margin-right:auto;
  }
  /* navButton */
  .header .navButton,
  .header .navButton span {
    display: inline-block;
    transition: all .4s;
  }
  .header .navButton {
    position: fixed;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    cursor: pointer;
    float: right;
    background: #fff;
    z-index: 200;/*20*/
  }
  .header .navButton span {
    position: absolute;
    left: 10px;
    width: 35px;
    height: 2px;
    background-color: #014099;
  }
  .header .navButton span:nth-of-type(1) {
    top: 16px;
  }
  .header .navButton span:nth-of-type(2) {
    top: 26px;
  }
  .header .navButton span:nth-of-type(3) {
    bottom: 16px;
  }
  .header .navButton span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
  }
  .header .navButton.active span:nth-of-type(3){
    bottom: 11px;
  }
  @-webkit-keyframes menu-bar01 {
    0% {
      -webkit-transform: translateY(13px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(13px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar01 {
    0% {
      transform: translateY(13px) rotate(45deg);
    }
    50% {
      transform: translateY(13px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .header .navButton span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }
  .header .navButton span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
  }
  @-webkit-keyframes menu-bar02 {
    0% {
      -webkit-transform: translateY(-13px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-13px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar02 {
    0% {
      transform: translateY(-13px) rotate(-45deg);
    }
    50% {
      transform: translateY(-13px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .header .navButton.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
  }
  @-webkit-keyframes active-menu-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(13px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(13px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(13px) rotate(0);
    }
    100% {
      transform: translateY(13px) rotate(45deg);
    }
  }
  .header .navButton.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header .navButton.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
  }
  @-webkit-keyframes active-menu-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-13px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-13px) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-13px) rotate(0);
    }
    100% {
      transform: translateY(-13px) rotate(-45deg);
    }
  }
  
  /*gNav*/
  .header .gNav {
    transform: translateX(100%);
    width: 70%;
    height: 100%;
    background: #014099;
    position: fixed;
    padding-top:55px;
    right:0;
    top:0;
    bottom: 0;
  }
  .header .gNav.open{
  }
  .header .gNav ul{
    display: block;
  }
  .header .gNav ul li{
    margin-right:auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .header .gNav ul li:first-child{
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .header .gNav ul li a{
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.5rem;
    width: 100%;
    position: relative;
    color: #fff;
  }
  .header .gNav ul li a:after{
    display: none;
  }
  .header .gNav ul li::before{
    
  }
}
@media all and (max-width: 767px) {
  .header h1 {
    width: 255px;
  }
}


/*layer*/
#layer {
  position: absolute;
}
#layer img {
  transform: scale(1.2, 1.2);
}
@media all and (max-width: 1024px) {
  #layer {
    display: none;
  }
}



/*mv 
--------------------------------------------------------------------------------------*/
.mv {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.mv.contact{
  margin-bottom: 50px;
}
.mvTxt {
  position: absolute;
  top:50%;
  width: 100%;
  text-align: center;
  z-index: 50;
  transform: translateY(-30px);
  color: #fff;
}
.mvTxt h2 {
  margin-bottom:10px;
  text-align: center;
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 260%;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1;
}
.mvTxt h2 span{
  opacity: 0;
  display: inline-block;
  animation:move 2s ease-out forwards;
  transform: translateY(-100px) scale(1.4);
}
.mvTxt h2 span:nth-child(1){animation-delay: 0.5s;}
.mvTxt h2 span:nth-child(2){animation-delay: 0.6s;}
.mvTxt h2 span:nth-child(3){animation-delay: 0.7s;}
.mvTxt h2 span:nth-child(4){animation-delay: 0.8s;}
.mvTxt h2 span:nth-child(5){animation-delay: 0.9s;}
.mvTxt h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 160%;
  font-weight: 600;
  text-align: center;
  display: block;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.1em;
}
.mvTxt h3 span{
  opacity: 0;
  display: inline-block;
  animation:fade 2s ease-out forwards;
  animation-delay: 2.2s;
}
.mvTxt p{
  font-size: 140%;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
@keyframes move {
  100% {
    transform: translate(33%, 0);
    opacity:  1;
  }
}
@keyframes fade{
  100% {
    opacity:  1;
  }
}
/*topMvInfo*/
.mvInfo {
  background: rgba(0,0,0,0.8);
  padding: 10px 20px;
  position: absolute;
  bottom:20px;
  left: 0;
  right: 0;
  z-index: 70;
  width: 70%;
  margin: auto;
  display: flex;
  transition: all 1s 1s;
  animation:fade 2s ease-out forwards;
  animation-delay: 1s;
  opacity: 0;
}
.mvInfo h3 {
  color: #fff;
  width: 15%;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}
.mvInfo ul {
  border-left: 1px solid #ccc;
  padding-left: 15px;
  width: 85%;
}
.mvInfo ul li a {
  display: block;
  color: #fff;
}
.mvInfo ul li a span {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #ccc;
}
.mvInfo.active {
  transform: translateY(0);
}
.mv-page {
  width: 100%;
  height: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 2px solid #014099;
  margin-bottom: 40px;
}
.mv-page >h2{
  font-size: 200%;
  font-weight: 700;
  color: #014099;
  letter-spacing: 0.1em;
}
@media all and (max-width: 1024px) {
  .mv {
    margin:55px 0 50px;
    overflow: inherit;
  }
  .mv.contact{
    margin-bottom: 30px;
  }
  .mvTxt {
  }
  .mvTxt h3 span {
    font-size: 100%;
  }
  .mvInfo {
    width: 90%;
    padding: 10px;
    display: block;
  }
  .mvInfo h3 {
    width: 100%;
    display: block;
    font-size:100%;
    line-height: 1;
  }
  .mvInfo ul {
    border-left: none;
    padding-left: 0;
    width: 100%;
  }
  .mvInfo ul li {
    font-size: 82%;
  }
}
@media all and (max-width: 580px) {
  .mvInfo {
    bottom:0;
  }
}
/*slider*/
#slider {
  position: relative;
  z-index: -1;
  overflow: hidden;
}
#slider li {
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s linear, transform 7.5s linear; /*transform FadeTime + IntarvalTime + α秒*/
  position: relative;
}
#slider li:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
#slider li.show_ {
  opacity: 1;
}
#slider li.zoom_ {
  transform: scale(1.1);
}
#slider li > img {
  display: block;
}
/*mvImg*/
.mvImg{
  position: relative;
  z-index: -1;
  width: 100%;
}


/* sec
------------------------------------------------------- */
.sec {
  padding: 0 100px;
  position: relative;
	margin: auto;
	max-width: 1540px;
}
.sec.line{
  border-bottom: solid 1px #014099;
  margin-bottom: 100px;
  padding-bottom: 100px;
}
.sec > h2 {
  font-size: 100%;
  font-weight:  normal;
  border-bottom: 2px solid #014099;
  color: #014099;
  margin: 0 20px;
  line-height: 2;
  position: absolute;
  left:0;
  min-width: 190px;
}
.sec > h2 span{
  display: block;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 162%;
  line-height: 1;
  letter-spacing: 0.05em;
}
.sec .secInner {
  width: 100%;
  padding: 0 0 0 20%;
  margin: auto;
}

/*sec2Col*/
.sec .secInner .sec2Col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec .secInner .sec2Col > div {
  width: 48%;
  margin-bottom: 20px;
}
.sec .secInner .sec2Col > div.sec2ColCont {
  padding: 50px;
}
@media all and (max-width: 1344px) {
  .sec > h2 {
    display: inline-block;
    clear: both;
    margin-bottom: 30px;
    margin-left:0;
    padding-left:0px;
    padding-right: 30px;
    position: inherit;
    left:auto;
    min-width: 30%;
  }
}
@media all and (max-width: 1024px) {
  .sec {
    padding: 0 15px;
  }
  .sec.line{
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .sec .secInner {
    padding: 0 0 50px;
  }
  .sec .secInner .sec2Col {
    border: none;
  }
  .sec .secInner .sec2Col > div {
    width: 100%;
  }
  .sec .secInner .sec2Col > div.sec2ColCont {
    padding: 15px;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 580px) {
  .sec.line{
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}




/*　bg-fix　*/
.bg-fix-wrap {
  margin: 100px auto;
  height: 50vh;
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
  position: relative;
}
.bg-fix {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0); 
    z-index: -1;
}
.bg-fix::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg01.jpg") no-repeat;
  background-size: cover;
  background-position: top center;
}
@media all and (max-width: 1024px) {
  .bg-fix-wrap {
    height: 300px;
  }
}

/* footer
------------------------------------------------------- */
.footer {
  background:#014099;
  color:#fff;
}

.footer .footerTop {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  background:url(../img/common/bg_footContact.jpg) no-repeat top left;
  background-size:cover;
  background-attachment:fixed;
  border-bottom: solid 1px #fff;
}
.footer .footerTop > div {
  width: 50%;
  /* width: 100%; */
  padding: 4em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footerRecruit{
  border-left: solid 1px rgba(255, 255, 255, 0.34);
}
.footer .footerTop > div:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  transition: all .3s;
}
.footer .footerTop > div:hover:after {
  height: 100%;
}
.footer .footerTop > div a {
  display: block;
  color: #fff;
  position: relative;
  z-index: 20;
  text-decoration: none;
}
.footer .footerTop > div h2 {
  font-size: 2.0rem;
  text-align: center;
  font-weight: bold;
  font-family: " Loto", sans-serif;
  display: block;
}
.footer .footerTop > div h2 span{
  padding: 15px 5em;
  border: solid 2px #fff;
  border-radius: 50px;
  display: inline-block;
}
.footer .footerTop > div.footerContact:after {
  background-color:rgba(1,64,153,0.6);
}
.footer .footerTop > div.footerRecruit:after {
  background-color:rgba(1,64,153,0.8);
}
/*footerMiddle*/
.footer .footerMiddle {
  padding:50px 0;
  text-align: center;
}
.footer .footerMiddle h2 {
  font-weight: 700;
  margin-bottom: 15px;
}
.copy {
  font-family: 'Rubik', sans-serif;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  color: #000;
  font-size: 92%;
}
@media all and (max-width: 1024px) {
  .footer .footerTop {
    background-attachment: inherit;
  }
  .footer .footerTop > div {
    /* width: 100%; */
    padding: 30px 5px;
  }
  .footer .footerTop > div:after {
    height: 100%;
  }
  .footer .footerTop > div h2 {
    font-size: 1.6rem;
  }
  .footer .footerTop > div h2 span{
    /* padding: 20px 10px; */
    padding: 0;
    border:none;
  }
  .footer .footerMiddle {
    padding: 50px 25px 25px;
  }
  .footer .footerMiddle .footerMiddleBox  h2 {
    margin-bottom: 0;
  }
  .copy {
  }
}
@media all and (max-width: 480px) {
  .footer .footerTop > div:before {
    font-size: 200%;
    padding-top: 10px;
  }
}


/* title
------------------------------------------------------- */
.ttlBkL{
  font-size: 186%;
  text-align: left;
  margin-bottom: 30px;
}
.ttlBl{
  font-weight: bold;
  font-size:114%;
  color: #014099;
  margin-bottom: 10px;
  padding-top:20px;
}
@media all and (max-width: 1024px) {
  .ttlBkL {
    font-size: 170%;
  }
}



/* btn
------------------------------------------------------- */
.btnCommon {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btnCommon a {
  display: block;
  padding: 20px;
  width: 100%;
  max-width: 380px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: #000;
  position: relative;
  background: #fafcfe;
  /* IE6-9 */
  transition: all .3s;
}
.btnCommon a p {
  background: #fff;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  text-align: center;
  line-height: 50px;
  transition: all .3s;
}
.btnCommon a p span {
  display: block;
  transition: all .3s;
}
.btnCommon a p .btnIcon {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 60px;
}
.btnCommon a:hover {
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.btnCommon a:hover p {
  border-radius: 5px;
  color: #014099;
}
.btnCommon a:hover p .btnIcon {
  opacity: 1;
  transform: translate(30px, -50%);
}
.btnCommon.btn2col {
  display: flex;
  justify-content: center;
}
.btnCommon.btn2col a {
  margin: 0 15px;
}
@media all and (max-width: 1024px) {
  .btnCommon.btn2col {
    flex-wrap: wrap;
  }
  .btnCommon.btn2col a {
    margin: 5px 15px;
  }
}

/* pageTop
------------------------------------------------------- */
.pageTop {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 10%;
  right: 20px;
  z-index: 150;
  transition: all .5s;
}
.pageTop a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  border: solid 8px #c4d6f0;
  box-sizing: border-box;
  opacity: 0.9;
}
.pageTop a span {
  position: absolute;
  color: #014099;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.64952em 0.375em;
  border-bottom-color: currentColor;
  border-top: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50% ,-50%);
}
.pageTop a:hover {
  border-radius: 8px;
}
.pageTop.active {
  opacity: 1;
  pointer-events: inherit;
}
@media all and (max-width: 1024px) {
  .pageTop {
    bottom: 5%;
    right: 10px;
  }
  .pageTop a {
    width: 40px;
    height: 40px;
    border: solid 6px #c4d6f0;
  }
}


/* clearfix
------------------------------------------------------- */
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.cf {
  display: inline-block;
}
* html .cf {
  height: 1%;
}
.cf {
  display: block;
}


/* Service
------------------------------------------------------- */
.secService {
}
.serviceList{
  margin-top: 40px;
  padding:30px;
  background: #eff2f5;
}
.serviceList ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.serviceList ul li{
  background: #fff;
  width: 30%;
}
.serviceList ul li .serviceImg{
}
.serviceList ul li .serviceTxt{
  padding: 15px;
}
.serviceList ul li .serviceTxt h4{
  color: #014099;
  font-weight: normal;
  text-align: center;
  font-size:2.0rem;
  margin-bottom: 10px;
  line-height: 1;
}
.serviceList ul li .serviceTxt p{
  text-align: left;
  font-size: 1.4rem;
}
@media all and (max-width: 768px) {
  .serviceList{
    padding: 20px;
  }
  .serviceList ul li{
    width: 48%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 480px) {
  .serviceList{
    margin-top: 20px;
  }
  .serviceList ul li{
    width: 100%;
  }
}


.secCompany{
  padding-bottom: 100px;
}
@media all and (max-width: 768px) {
  .secCompany{
    padding-bottom: 40px;
  }
}

.flowList{
  width: 100%;
}
.flowList li{
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding:10px 20px;
  background-color: #eff2f5;
  border-radius: 11px;
}
.flowList li:not(:last-of-type):after{
  content: "▼";
  position: absolute;
  left: 1em;
  bottom: -25px;
  font-size: 12px;
  color: #ccc;
}
.flowList li p:nth-child(1){
  font-size: 1.7rem;
  font-weight: 500;
}
.flowList li p:nth-child(2){
  font-size: 1.5rem;
}
@media all and (max-width: 768px) {
  .flowList li p:nth-child(1){
    font-size: 1.6rem;
  }
  .flowList li p:nth-child(2){
    font-size: 1.4rem;
  }
}

/* table
------------------------------------------------------- */
/*type01*/
.type01 {
  width: 100%;
  border-collapse: separate;
  border-top: 1px solid #b9c2cf;
  height: 100%;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.type01 th,
.type01 td {
  border-bottom: 1px solid #b9c2cf;
  padding: 10px 20px 10px 0;
  text-align: left;
  vertical-align: middle;
}
.type01 th {
  white-space: nowrap;
  /* width: 23%; */
  height: 100%;
}
.type01 th span{
  background: #d6e0ef;
  padding: 10px 18px;
  line-height: 1.8;
  display: block;
  height: 100%;
}
.type01 td span{
  font-size: 1.5rem;
  color: #555;
}
/*type02*/
.type02 {
  width: 100%;
  border-collapse:collapse !important;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.type02 th,
.type02 td{
  border: 1px solid #b9c2cf;
  padding:8px 10px;
  text-align: left;
}
.type02 tr:nth-child(even) td{
  background: #f8fbff;
}
.type02 th{
  background: #eef7ff;
  vertical-align: middle;
}
.type02 thead> tr > th{
  text-align: center;
  font-weight: normal;
  color: #014099;
}
.type02 td.taC{
  text-align: center;
}
@media screen and (max-width:767px) {
  .type01,.type02 {
    width: 100%;
    font-size: 1.3rem;
  }
  .type01,
  .type01 thead,
  .type01 tbody,
  .type01 tr,
  .type01 th,
  .type01 td{
    width: 100%;
    display: block;
  }
  .type01 th{
    text-align: center;
    width: auto;
    padding: 3px 0;
  }
  .type01 td {
    padding: 12px 0;
  }
  .type02 th{
    white-space: nowrap;
  }
  .type02 th,
  .type02 td{
    padding:6px 5px;
  }
}


/**/
.secSlider{
  width: 100%;
  margin: 0 0 100px;
}
.secSlider img{
  pointer-events: none;
}
.loopslider{
  width: 100%;
}
@media screen and (max-width:767px) {
  .secSlider{
    margin: 0 0 50px;
  }
}


/* form
------------------------------------------------------------ */
.secContact{
  margin-bottom: 60px;
}
.secContact > .secInner{
}
.txtBlCnt{
  color: #014099;
  font-weight: bold;
  text-align: center;
  margin:30px auto 50px;
}
.txtBlCnt span{
  padding: 14px 4em;
  border: solid 6px #c4d6f0;
  border-radius: 50px;
  display: inline-block;
}
@media screen and (max-width:767px) {
  .secContact{
    margin-bottom: 40px;
  }
  .txtBlCnt span{
    padding: 12px 1.5em;
    border-radius: 60px;
  }
}

#form{
	width: 100%;
	margin: 0 auto 40px;
}
.formTbl{
  margin-bottom: 30px;
}
.itemTag{
	padding: 2px 8px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	text-align: center;
	color: #fff;
	font-weight: 400;
	font-size: 85.8%;
	display: inline-block;
	line-height: 1.3;
	margin-left: 10px;
	background: #f23d3d;
	float: right;
}
.note{
	color: #999999;
	padding:2px 5px;
	text-align: left;
}
.privacyTtl{
  margin-bottom: 10px;
  font-weight: bold;
  display: block;
}
.privacy{
	background-color: #fefbf3;
	color: #444;
	padding: 20px;
	font-size:78%;
	height: 15vh;
	overflow-y: scroll;
}
.errorTxt {
	margin-bottom: 20px;
	color: #ff0000;
	text-align: center;
	padding: 10px;
	background-color: rgba(255,255,255,0.8);
}
.errorTxtS {
	margin-top:5px;
	color: #ff0000;
	display: block;
	font-size: 88%;
	line-height:1.1;
}

/*btn*/
#submitBtn{
	width:100%;
	margin:30px auto;
	text-align:center;
	color: #fff !important;
	background-repeat: no-repeat;
	font-weight: 700;
	line-height: 1.4615;
	vertical-align: middle;
	border: none;
	text-decoration: none !important;
	-webkit-transition: background .2s ease;
	-o-transition: background .2s ease;
	transition: background .2s ease;
	position:relative;
	-webkit-border-radius:32px;
	-moz-border-radius: 32px;
	border-radius: 32px;
}
#submitBtn input{
	font-size:110%;
	display:inline-block;
	height:100%;
	padding:15px 4em;
	margin: 0 10px;
	border: none;
	color: #fff;
	font-weight:700;
	-webkit-border-radius:32px;
	-moz-border-radius: 32px;
	border-radius: 32px;
	cursor: pointer;
  -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all  0.5s ease;

}
.formBtn{
	background-color: #444;
}
#submitBtn input:hover {
	background-color: #aaa;
}
.wpcf7-spinner{
  display: none;
}

input.txt,
textarea.txt,
select.txt {
	border: 1px solid #becbe2;
	border-radius: 3px;
	-webkit-box-shadow: inset 0px 3px 4px 0px #eee;
	box-shadow: inset 0px 3px 4px 0px #eee;
	padding: 5px;
	max-width: 100%;
	font-size: 100%;
	background-color: #fff;
}
input.txt {
	padding: 5px 2px;
}
input.txt:focus,
textarea.txt:focus {
	border: 1px solid #f19900;
	background-color:#F9FFEF;
}
input.check {
	position: relative;
	top: 2px;
	margin-right: 3px;
}
input.s01,select.s01 { width: 5em;}
input.s02,select.s02 {	width: 50px;}

input.m01,select.m01 { width: 150px;}
input.m02,select.m02 { width: 250px;}
input.m03,select.m03 { width: 350px;}
input.m04,select.m04 { width: 650px;}

textarea.l01,input.l01,select.l01 {width: 98%;}
textarea.l02,input.l02,select.l02 {width: 50%;}
@media screen and (max-width:767px){
.note{display: block;}
.itemTag{
	float:none;
}
#submitBtn{
	width:auto;
}
input.txt {
	padding: 15px 2px;
}
input.m02,select.m02 { width: 100%;}
input.m03,select.m03 { width: 100%;}
input.m04,select.m04 { width: 100%;}
}

/* error */
input.err,
textarea.err,
select.err {
	border-color: #ff6060;
	background: #fff0f0;
}
input.err:focus,
textarea.err:focus {
	border-color: #ee5959;
}


@media screen and (max-width:767px){
	.formTbl{
		width: 100%;
	  box-sizing:border-box;
    border-top: solid 1px #b9c2cf
	}
	.formTbl th {
		text-align: center;
    width: auto;
    padding: 10px 0;
    border-top: none;
	}
  .formTbl,
  .formTbl thead,
  .formTbl tbody,
  .formTbl tr,
  .formTbl th,
  .formTbl td{
    width: 100%;
    display: block;
  }
	.formTbl td{
		border-top: none;
    border- bottom: none;
	}
	.formTbl td.name li:first-child{
		margin-bottom: 10px;
	}
}

/* form
---------------------------------------------------------- */
.check_layout input{
    display:none;
}
.check_layout label{
    display:inline-block;
    position:relative;
    padding-left:25px;
}
.check_layout label:before,.check_layout label:after{
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:15px;
    height:15px;
}
.check_layout label:before{
    background:#fafafa;
    border:1px solid #666666;
}
.check_layout input:checked + label:after{
	left:1px;
	top:-1px;
	content:"\f00c";
	color:#004ea2;
	height:15px;
	margin:auto;
	font-size:108%;
	font-family: FontAwesome;
}


/* news (wp)
------------------------------------------------------- */
.p-news-sec{
  margin:20px auto 60px;
  max-width: 1100px;
  padding: 0 20px;
}
.p-news__list{
  width: 100%;
  margin: 0 auto ;
}
.p-news__list .p-news__item{
  display: block;
  padding-bottom: 1.2em;
  margin-bottom: 1.2em;
  border-bottom: solid 1px #ddd;
}

.p-news__ttl{
  margin-bottom: 40px;
}
.p-news__ttl time{
  display: block;
  font-size:100%;
  color: #666;
}
.p-news__ttl h3{
  display: block;
  font-weight: 700;
  font-size: 124%;
  line-height: 1.7;
}
.p-news__thumb{
  text-align: center;
  margin-bottom: 40px;
}
.p-news__thumb img{
  max-width: 800px;
}
.p-news-sec >p{
  margin-bottom: 2em;
}

.p-news__link{
  display: flex;
  justify-content: space-between;
  padding-top:4em;
}
.p-news__link li{
  width: calc(100% / 3);
}
.p-news__link li a{
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: underline;
  font-size: 88%;
  color: #666;
}
.p-news__link li a:hover{
  color:#999;
  text-decoration: none;
}
.p-news__link li:nth-child(1) a{
  justify-content: flex-start;
}
.p-news__link li:nth-child(1) a::before{
  content: '<';
}
.p-news__link li:nth-child(2) a{
  justify-content: center;
}
.p-news__link li:nth-child(3) a{
  justify-content: flex-end;
}
.p-news__link li:nth-child(3) a::after{
  content: '>';
}

@media screen and (max-width:767px){
  .p-news-sec{
    margin-bottom: 30px;
  }
  .p-news__ttl{
    margin-bottom: 20px;
  }
  .p-news__thumb{
    margin-bottom: 20px;
  }
  .p-news__link{
    padding-top:2em;
  }
  
}

/* pager  */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination span:not(.dots) {
  margin: 0 12px;
  padding: 3px 12px;
  display: block;
}
.pagination a{
  margin: 0 12px;
  padding: 6px 14px 8px;
  background-color: #eeeeee;
  border-radius: 50%;
  display: block;
  transition: all .3s;
}
.pagination a:hover{
  background-color: #999;
  color: #FFF;
}