@charset "utf-8";
/* latin */
@font-face {
  font-family: 'Work Sans ExtraLight';
  font-style: normal;
  font-weight: 350;
  src: local('Work Sans ExtraLight'), local('WorkSans-ExtraLight'), url(https://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3s4H8mNhN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Work Sans Bold';
  font-style: normal;
  font-weight: 500;
  src: local('Work Sans Bold'), local('WorkSans-Bold'), url(https://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3x4X8mNhN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
   font-family: "Noto Sans Regular JP";
   font-weight: 400;
   src: local("Noto Sans CJK JP Regular"),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.woff2) format('woff2'),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.woff) format('woff'),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.otf) format('opentype');
}
@font-face {
   font-family: "Noto Sans Medium JP";
   font-weight: 500;
   src: local("Noto Sans CJK JP Medium"),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.woff2) format('woff2'),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.woff) format('woff'),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.otf) format('opentype');
}
@font-face {
   font-family: "Noto Sans Bold JP";
   font-weight: 700;
   src: local("Noto Sans CJK JP Bold"),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff2) format('woff2'),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff) format('woff'),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.otf) format('opentype');
}
@font-face {
   font-family: "Noto Sans DemiLight JP";
   font-weight: 350;
   src: local("Noto Sans CJK JP DemiLight"),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-DemiLight.woff2) format('woff2'),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-DemiLight.woff) format('woff'),
        url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-DemiLight.otf) format('opentype');
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, main, menu, nav, section, summary, time, mark, audio, video { margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; }
ul, li { list-style:none; }
button, a{
  outline: none;
  text-decoration: none;
}
body {
  font-family: "Noto Sans Regular JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
/* 案件によって
  text-align: justify;
  text-justify: distribute;
  word-break: normal;
  line-break: strict;
*/
}
.clearfix:after {
  content:" ";
  display:block;
  clear:both;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*header*/
body{
  padding: 90px 0 0;
}
#header{
  background: #0a3591;
  padding: 28px 4%;
  height: 90px;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 11;
}
.header-top{
  opacity: 0;
  transition:opacity 0.3s ease; 
  -webkit-transition:opacity 0.3s ease; 
  -moz-transition:opacity 0.3s ease; 
  -o-transition:opacity 0.3s ease;
}
#header.on .header-top{
  opacity: 1;
}
.logo{
  float: left;
}
.gnav{
  float: right;
}
.gnav li{
  float: left;
  margin: 0 0 0 50px;
}
.gnav li a{
  color: #fff;
  display: block;
  line-height: 32px;
  font-family: "Noto Sans Bold JP";
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.2em;
  position: relative;
}
.gnav li:last-child a{
  padding: 0 30px;
  border: 1px solid #fff;
  border-radius: 2px;
  transition:all 0.3s ease; -webkit-transition:all 0.3s ease; -moz-transition:all 0.3s ease; -o-transition:all 0.3s ease;
}
.gnav li:last-child a:hover{
  background: #fff;
  color: #0a3591;
}
.gnav > ul > li > a:before{
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
  z-index: 9;
}
.gnav > ul > li:hover > a:before{
  transform-origin: left top;
  transform: scale(1, 1);
}

.container{
  width: 980px;
  margin: 0 auto;
}
.sp{
  display: none;
}
img{
  vertical-align:bottom;
  max-width: 100%;
}
a{
  transition:all 0.3s ease; -webkit-transition:all 0.3s ease; -moz-transition:all 0.3s ease; -o-transition:all 0.3s ease;
}
@media screen and (max-width:979px){
  .container{
    width: 100%;
    padding: 0 40px;
  }
  body{
    padding: 74px 0 0;
  }
  #header{
    padding: 20px;
    height: auto;
    margin: 0 0 -1px;
  }
  .gnav li{
    margin: 0 0 0 20px;
  }
  
}
@media screen and (max-width:767px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .container{
    padding: 0 20px;
  }
  .menu, .close{
    width: 30px;
    height: 30px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    position: relative;
    float: right;
  }
  .close{
    margin: 10px 5px 31px 0;
  }
  .menu span, .close span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  .close span{
    background: #063395;
  }

  .menu span:nth-child(1) {
    top: 0px;
  }

  .menu span:nth-child(2) {
    top: 9px;
  }

  .menu span:nth-child(3) {
    top: 18px;
  }

  .close span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .close span:nth-child(2) {
    opacity: 0;
    left: -30px;
  }

  .close span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  body{
    padding: 66px 0 0;
  }
  #header{
    padding: 22px 20px 16px;
  }
  .logo img{
    width: 60px;
  }
  .gnav{
    padding: 30px 35px 0;
  }
  .gnav{
    float: none;
    background: #fff;
    position: fixed;
    left: -20px;
    top: -18px;
    width: 100%;
    width: calc(100% + 40px);
    z-index: 9999;
    display: none;
  }
  .gnav ul{
    clear: both;
  }
  .gnav li{
    float: none;
    margin: 0 0 30px;
  }
  .gnav li a{
    color: #063395;
    line-height: 1.5;
    font-size: 15px;
    text-align: center;
  }
  .gnav li:last-child a{
    padding: 11px;
    border: 1px solid #063395;
    background: #063395;
    color: #fff;
  }
  .gnav > ul > li > a:before{
    display: none;
  }
  .overlay{
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(35, 25, 21, 0.5);
    display: none;
  }
}
@media screen and (min-width:768px){
  .gnav{
    display: block !important; 
  }
}
.mainvisual{
  background: #0a3591;
  padding: 0 0 90px;
  overflow: hidden;
}
.mainvisual .container{
  width: 1080px;
  position: relative;
}
.mainvisual .mv{
  margin: 0 0 0 70px;
  height: 580px;
  max-width: 100%;
  position: relative;
}
.mainvisual .wrap{
  overflow: hidden;
}
.mainvisual .wrap:before{
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0a2c73;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  -ms-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}
.mainvisual .wrap:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0a3591;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.mainvisual.on .wrap:before,
.mainvisual.on .wrap:after{
  left: 100%;
}

.mainvisual .slides li{
  overflow: hidden;
}
.mainvisual .slides li:before{
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0a2c73;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.mainvisual .slides li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0a3591;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  -ms-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
}
.mainvisual .slides li.flex-active-slide:before,
.mainvisual .slides li.flex-active-slide:after{
  left: 100%;
}
.mainvisual h1{
  font-family: 'Work Sans Bold';
  font-size: 66px;
  line-height: 1.3;
  color: #fff;
  position: absolute;
  left: 0;
  top: 60px;
  z-index: 9;
  opacity: 0;
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
  transition: .8s;
  -webkit-transition:.8s; 
  -moz-transition:.8s; 
  -o-transition:.8s;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}
.mainvisual.on h1{
  opacity: 1.0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.mainvisual h1 span{
  padding: 0 0 0 40px;
}
.mainvisual p{
  font-size: 26px;
  font-family: "Noto Sans Bold JP";
  color: #fff;
  position: absolute;
  left: 0;
  top: 440px;
  z-index: 9;
  opacity: 0;
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  transition: .8s;
  -webkit-transition:.8s; 
  -moz-transition:.8s; 
  -o-transition:.8s;
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}
.mainvisual.on p{
  opacity: 1.0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
@media screen and (max-width:1080px){
  .mainvisual{
    padding: 0 0 50px;
  }
  .mainvisual .container{
    width: 100%;
    padding: 0;
  }
  .mainvisual h1, .mainvisual p{
    left: 4%;
  }
}
@media screen and (max-width:979px){
  .mainvisual .pc{
    display: none;
  }
  .mainvisual .sp{
    display: block;
  }
  .mainvisual .mv{
    margin: 0 auto;
    height: auto;
    max-width: 100%;
    text-align: right;
  }
  .mainvisual .flexslider .slides img{
    display: inline-block;
  }
}
@media screen and (max-width:767px){
  .mainvisual .mv{
    padding: 0 0 0 60px;
  }
  .mainvisual h1{
    font-size: 32px;
    top: 30px;
  }
  .mainvisual h1 span{
    padding: 0 0 0 20px;
  }
  .mainvisual p{
    font-size: 14px;
    top: 220px;
  }
}
main{
  overflow: hidden;
}
h2.title{
  font-family: 'Work Sans ExtraLight';
  font-size: 50px;
  line-height: 1.3;
  color: #0033a1;
  font-weight: normal;
}
h2.title span{
  font-size: 14px;
  display: block;
  font-family: "Noto Sans DemiLight JP";
}
.news{
  padding: 80px 0 60px;
}
.news h2{
  width: 350px;
  float: left;
  padding: 0 0 0 155px;
}
.news dl{
  width: 630px;
  float: left;
  padding: 10px 0 0;
}
.news dt{
  font-family: 'Work Sans Bold';
  color: #0033a1;
  font-size: 16px;
}
.news dd{
  font-family: "Noto Sans Regular JP";
  margin: 0 0 30px;
}
.news dd a{
  color: #050505;
  font-size: 13px;
}
@media screen and (max-width:979px){
  .news{
    padding: 60px 0 40px;
  }
  .news h2, .news dl{
    width: 100%;
    float: none;
    padding: 0;
  }
  .news h2{
    margin: 0 0 20px;
  }
}
@media screen and (max-width:767px){
  h2.title{
    font-size: 35px;
  }
  h2.title span{
    font-size: 10px;
  }
  .news{
    padding: 40px 0 20px;
  }
  .news dt{
    font-size: 13px;
  }
  .news dd{
    margin: 0 0 20px;
  }
  
}

.message{
  padding: 0 0 90px;
}
.message .message-title{
  text-align: center;
  background: #0a3591;
  padding: 110px 0;
  margin: 0 0 -55px;
}
.message h2{
  color: #fff;
}
.mes1 .photo{
  width: 50%;
  float: left;
}
.mes1 .photo span{
  float: right;
  display: block;
  position: relative;
  overflow: hidden;
}
.mes1 .photo span:before{
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0a2c73;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  -ms-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}
.mes1 .photo span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.mes1 .photo.on span:before,
.mes1 .photo.on span:after{
  left: 100%;
}
.mes1 .photo img{
  max-width: none;
}
.message-intro h3{
  font-family: "Noto Sans Bold JP";
  color: #0033a1;
  font-size: 28px;
  margin: 0 0 30px; 
}
.message-intro p{
  font-size: 16px;
  line-height: 2;
  margin: 0 0 30px;
  font-family: "Noto Sans Regular JP";
}
.message-intro p:last-child, .message-intro p.mb00{
  margin: 0;
}
.mes1{
  margin: 0 0 90px;
}
.mes1 .message-intro{
  width: 50%;
  float: left;
  padding: 180px 0 0 60px;
}
.mes1 h3{
  font-size: 36px;
  margin: 0 0 90px;
}
.mes2{
  margin: 0 0 90px;
}
.mes3 .photo{
  width: 50%;
  float: left;
  overflow: hidden;
  position: relative;
}
.mes3 .photo:before{
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0a2c73;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  -ms-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}
.mes3 .photo:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.mes3 .photo.on:before,
.mes3 .photo.on:after{
  left: 100%;
}
.mes3 .message-intro{
  width: 50%;
  float: left;
  padding: 60px 0 0 60px;
}
.message-intro p.signature{
  font-family: "Noto Sans Regular JP";
  float: right;
}
@media screen and (max-width:979px){
  .message{
    padding: 0 0 60px;
  }
  .message .message-title{
    padding: 70px 0;
    margin: 0 0 -30px;
  }
  .mes1 .photo{
    width: auto;
    float: none;
    margin: 0 0 40px -40px;
    padding: 0 10% 0 0;
  }
  .mes1 .photo img{
    max-width: 100%;
  }
  .mes1 .message-intro {
    width: 100%;
    float: none;
    padding: 0;
  }
  .message-intro h3{
    font-size: 25px;
    margin: 0 0 20px;
  }
  .mes1, .mes2{
    margin: 0 0 50px;
  }

  .mes3 .photo{
    width: 100%;
    float: none;
    text-align: center;
  }
  .mes3 .message-intro{
    width: 100%;
    float: none;
    padding: 30px 0 0;
  }
}
@media screen and (max-width:767px){
  .message{
    padding: 0 0 40px;
  }
  .message .message-title{
    padding: 40px 0 60px;
    margin: 0 0 -30px;
  }
  .message-intro p{
    font-size: 14px;
  }
}

.service{
  padding: 90px 0;
  background: #0a3591;
}
.service .container{
  width: 1080px;
}
.service h2{
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
}
p.intro{
  font-size: 18px;
  max-width: 830px;
  margin: 0 auto 40px;
  color: #fff;
}
.service-box{
  padding: 90px 125px;
  background: #fff;
}
.service-box h3{
  text-align: center;
  font-size: 18px;
  line-height: 2;
  font-family: "Noto Sans Bold JP";
  margin: 0 0 60px;
  color: #0033a1;
}
.service-box h3 span{
  width: 126px;
  display: inline-block;
  background: url(../img/arr1.png) no-repeat left center, url(../img/arr2.png) no-repeat right center;
}
.service-area{
  margin: 0 0 90px;
}
.service-area .photo{
  float: right;
}
.service-area ul{
  padding: 65px 0 0 80px;
  float: left;
}
.service-area ul li{
  margin: 0 0 20px;
  font-size: 18px;
  font-family: "Noto Sans Bold JP";
}
.service-area ul li span{
  color: #0033a1;
}
.business-col{
  width: 375px;
  float: left;
}
.business-col:last-child{
  float: right;
}
.business h4{
  font-family: "Noto Sans Bold JP";
  font-size: 16px;
  margin: 0 0 215px;
  padding: 0 0 0 40px;
  position: relative;
}
.business h4 span{
  font-family: 'Work Sans Bold';
  font-size: 12px;
  display: block;
  color: #0033a1;
}
.business h4:before{
  font-family: 'Work Sans ExtraLight';
  font-size: 60px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: -8px;
  color: #0033a1;
}
.bus1 h4:before{
  content: "1";
}
.bus2 h4:before{
  content: "2";
}
.business p{
  line-height: 2;
}
.business ul{
  height: 280px;
  border-radius: 3px;
  background: #0a3591;
  margin: 0 0 50px;
  padding: 25px 20px;
  position: relative;
}
.bus1 ul:before{
  content: "";
  width: 100%;
  height: 174px;
  background: url(../img/icon01.png) no-repeat center;
  position: absolute;
  left: 0;
  bottom: 100%;
  margin: 0 0 -12px;
}
.bus2 ul:before{
  content: "";
  width: 100%;
  height: 179px;
  background: url(../img/icon02.png) no-repeat center;
  position: absolute;
  left: 0;
  bottom: 100%;
  margin: 0 0 -12px;
}
.business ul li{
  border-radius: 2px;
  background: #fff;
  color: #0033a1;
  font-size: 13px;
  margin: 0 0 4px;
  padding: 0 20px;
  height: 36px;
  display: flex;
  align-items: center;
  font-family: "Noto Sans Bold JP";
}
.business ul li:last-child{
  margin: 0;
}
.business .bus2 ul li{
  height: 56px;
}
@media screen and (max-width:1080px){
  .service .container{
    width: 100%;
  }
}
@media screen and (max-width:979px){
  .service{
    padding: 50px 0;
  }
  .service-box{
    padding: 40px;
  }
  .service-area{
    margin: 0 0 40px;
  }
  .service-box h3{
    margin: 0 0 30px;
  }
  .service-area ul{
    float: none;
    padding: 0;
    width: 50%;
    margin: 0 auto 20px;
  }
  .service-area .photo{
    float: none;
    text-align: center;
  }
  .business-col{
    width: 100%;
    float: none;
  }
  .business-col.bus1{
    margin: 0 0 40px;
  }
  .business h4{
    margin: 0 0 200px;
  }
  .business ul{
    margin: 0 0 20px;
  }
}
@media screen and (max-width:767px){
  .service{
    padding: 40px 0;
  }
  .service h2{
    margin: 0 0 20px;
  }
  p.intro{
    font-size: 14px;
    margin: 0 0 25px;
  }
  .service-box{
    padding: 40px 15px;
  }
  .service-box h3{
    font-size: 16px;
    line-height: 36px;
  }
  .service-area ul{
    width: 180px;
    margin: 0 auto 30px;
  }
  .service-area ul li{
    font-size: 14px;
    margin: 0 0 10px;
  }
  .business h4{
    margin: 0 0 170px;
  }
  .business ul{
    height: auto;
    margin: 0 0 15px;
    padding: 7px;
  }
  .bus1 ul:before{
    height: 136px;
    background-size: 220px 136px;
    margin: 0 0 -7px;
  }
  .bus2 ul:before{
    height: 155px;
    background-size: 205px 155px;
    margin: 0 0 -7px;
  }
  .business ul li, .business .bus2 ul li{
    margin: 0 0 2px;
    padding: 5px 15px;
    height: auto;
  }
}

.consultant{
  padding: 90px 0;
}
.consultant h2{
  margin: 0 0 50px;
}
.consultant .photo{
  width: 383px;
  float: left;
  position: relative;
}
.consultant .photo:after{
  content: "";
  width: 100%;
  height: 100%;
  background: #0a3591;
  border-radius: 5px;
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
}
.consultant .photo span{
  display: block;
  position: relative;
  overflow: hidden;
}
.consultant .photo span:before{
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0a2c73;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  -ms-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}
.consultant .photo span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 3;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.consultant .photo.on span:before,
.consultant .photo.on span:after{
  left: 100%;
}
.consultant .photo img{
  position: relative;
  z-index: 2;
}
.consultant-info__text{
  width: 550px;
  float: right;
}
.consultant-info__text h3{
  font-size: 18px;
  margin: 0 0 30px;
}
.consultant-info__text p{
  font-weight: bold;
  margin: 0 0 50px;
}
.consultant-info__text dt{
  font-size: 18px;
  line-height: 1.4;
  width: 50px;
  float: left;
}
.consultant-info__text dd{
  font-size: 13px;
  line-height: 2;
  padding: 0 0 0 50px;
  margin: 0 0 30px;
}
@media screen and (max-width:979px){
  .consultant{
    padding: 50px 0;
  }
  .consultant h2{
    margin: 0 0 30px;
  }
  .consultant .photo{
    float: none;
    margin: 0 auto 60px;
  }
  .consultant-info__text{
    width: 100%;
    float: none;
  }
  .consultant-info__text h3{
    margin: 0 0 20px;
  }
  .consultant-info__text p{
    margin: 0 0 30px;
  }
  .consultant-info__text dd{
    margin: 0 0 20px;
  }
}
@media screen and (max-width:767px){
  .consultant{
    padding: 40px 0 20px;
  }
  .consultant h2{
    margin: 0 0 20px;
  }
  .consultant .photo{
    width: 200px;
    margin: 0 auto 50px;
  }
  .consultant .photo:after{
    left: 10px;
    top: 10px;
  }
  .consultant-info__text h3{
    margin: 0 0 10px;
    font-size: 14px;
  }
  .consultant-info__text p{
    margin: 0 0 20px;
    font-size: 12px;
  }
  .consultant-info__text dt{
    font-size: 15px;
    line-height: 26px;
    width: 40px;
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .consultant-info__text dd{
    padding-left: 40px;
    margin: 0 0 15px;
  }

}

.company{
  background: #0a3591;
  padding: 110px 0 0;
}
.company h2{
  text-align: center;
  margin: 0 0 60px;
  color: #fff;
}
.company-wrap{
  background: #fff;
  background: -moz-linear-gradient(left, #fff 0%, #fff 50%, #0033a1 51%, #0033a1 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #fff), color-stop(50%, #fff), color-stop(51%, #0033a1), color-stop(100%, #0033a1));
  background: -webkit-linear-gradient(left, #fff 0%, #fff 50%, #0033a1 51%, #0033a1 100%);
  background: -o-linear-gradient(left, #fff 0%, #fff 50%, #0033a1 51%, #0033a1 100%);
  background: -ms-linear-gradient(left, #fff 0%, #fff 50%, #0033a1 51%, #0033a1 100%);
  background: linear-gradient(to right, #fff 0%, #fff 50%, #0033a1 51%, #0033a1 100%);
}
.company-wrap .container{
  background: #fff;
  border-radius: 0 5px 0 0;
}
.company dl{
  padding: 80px 0;
}
.company dt{
  color: #0033a1;
  width: 190px;
  float: left;
  padding: 2px 0 0;
}
.company dd{
  padding: 0 0 0 190px;
  font-size: 16px;
  margin: 0 0 25px;
}
.company dd span{
  font-size: 12px;
}
.company dd:last-child{
  margin: 0;
}
.company ul li{
  width: 50%;
  float: left;
}
@media screen and (max-width:979px){
  .company{
    padding: 50px 0 0;
  }
  .company h2{
    margin: 0 0 50px;
  }
  .company-wrap .container{
    border-radius: 0;
  }
  .company dl{
    padding: 40px 0;
  }
}
@media screen and (max-width:767px){
  .company{
    padding: 40px 0 0;
  }
  .company h2{
    margin: 0 0 40px;
  }
  .company dl{
    padding: 30px 0;
  }
  .company dt{
    width: 95px;
    padding: 2px 0 0;
    font-size: 11px;
  }
  .company dd{
    padding: 0 0 0 95px;
    font-size: 13px;
    margin: 0 0 15px;
  }
  .company dd span{
    font-size: 11px;
  }
  
  .company ul li{
    width: 100%;
    float: none;
    margin: 0 0 10px;
  }
  .company ul li:last-child{
    margin: 0;
  }
}

.contact{
  padding: 44px 0 88px;
  background: url(../img/bg02.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  font-size: 13px;
}
.contact h2{
  color: #fff;
  margin: 0 0 77px;
  font-size: 60px;
  line-height: 1.28;
}
input[type="text"]{
  width: 100%;
  padding: 14px 10px;
  border-radius: 3px;
  border: none;
}
textarea{
  width: 100%;
  padding: 12px 10px;
  border-radius: 3px;
  border: none;
  min-height: 135px;
}
.contact-left{
  width: 510px;
  float: left;
}
.contact-left dt{
  width: 165px;
  float: left;
  padding: 10px 0 0;
}
.contact-left dd{
  padding: 0 0 0 165px;
  margin: 0 0 20px;
}
.contact-left dd:last-child{
  margin: 0;
}
.contact-right{
  width: 400px;
  float: right;
}
.contact-right dt{
  margin: 0 0 9px;
}
.contact-right dd{
  margin: 0 0 15px;
}
.btn{
  display: block;
  width: 100%;
  background: #4373bc;
  border: none;
  border-radius: 3px;
  color: #fff;
  padding: 13px;
  cursor: pointer;
}
@media screen and (max-width:979px){
  .contact{
    padding: 50px 0;
  }
  .contact-left, .contact-right{
    width: 100%;
    float: none;
  }
  .contact-left{
    margin: 0 0 20px;
  }
  .contact-right dt{
    width: 165px;
    float: left;
    padding: 10px 0 0;
  }
  .contact-right dd {
    padding: 0 0 0 165px;
    margin: 0 0 20px;
  }
  .contact h2{
  margin: 0 0 50px;
  font-size: 50px;
  line-height: 1.28;
}
}
@media screen and (max-width:767px){
  .contact{
    padding: 40px 0 60px;
    font-size: 11px;
    background: url(../img/bg02_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .contact-left, .contact-right{
    width: 100%;
    float: none;
  }
  .contact-left{
    margin: 0 0 15px;
  }
  .contact dt{
    width: 100%;
    float: none;
    padding: 0 0 5px;
  }
  .contact dd {
    padding: 0;
    margin: 0 0 15px;
  }
  input[type="text"]{
    padding: 10px;
  }
  textarea{
    padding: 10px;
  }
}

#copyright{
  text-align: center;
  padding: 30px 0;
  font-size: 12px;
}
.pagetop{
  position: fixed;
  right: 4%;
  bottom: 80px;
  display: none;
}
@media screen and (max-width:767px){
  #copyright{
    padding: 20px 0;
    font-size: 10px;
  }
  .pagetop{
    bottom: 40px;
    right: 10px;
  }
  .pagetop img{
    width: 40px;
  }
}

.modalBuilder{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition:opacity 0.3s ease; -webkit-transition:opacity 0.3s ease; -moz-transition:opacity 0.3s ease; -o-transition:opacity 0.3s ease;
  display: none;
  opacity: 0;
}
.modalBuilder.show{
  display: flex;
  opacity: 1;
}
.modalOverlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.modalContent{
  position: relative;
  z-index: 1;
  padding: 60px;
  background: #fff;
  border-radius: 4px;
  max-height: 90%;
  overflow: auto;
}
.modalContent .modalClose{
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.modalBuilder h2{
  margin: 0 0 50px;
}
.modalBuilder dl{
  font-size: 13px;
  line-height: 2;
}
.modalBuilder dt{
  width: 125px;
  float: left;
  font-weight: bold;
}
.modalBuilder dd{
  padding: 0 0 26px 125px;
}
.btn-list{
  margin: 0 0 0 125px;
}
.btn-list li{
  width: 140px;
  float: left;
  margin: 0 10px 0 0;
}
.btn-list li:last-child{
  width: 200px;
}
.btn-list .btn{
  background: #999;
}
.btn-list li:last-child .btn{
  background: #0a3591;
}
.thankyou{
  color: #0a3591;
}
.thankyou h3{
  font-size: 22px;
  margin: 0 0 10px;
}
.thankyou p{
  line-height: 2;
}
.error-message{
  font-size: 14px;
  text-align: center;
  background: #d46567;
  color: #fff;
  font-family: "Noto Sans Bold JP"; 
  border-radius: 2px;
  margin: 0 0 20px;
  line-height: 1.8;
  padding: 8px 10px;
}
@media screen and (max-width:767px){
  .modalContent{
    padding: 20px;
    margin: 0 20px;
  }
  .modalContent .modalClose img{
    width: 40px;
  }
  .modalBuilder h2{
    margin: 0 0 20px;
  }
  .modalBuilder dl{
    max-height: calc(100% - 150px);
    overflow: auto;
  }
  .modalBuilder dt{
    width: 100%;
    float: none;
  }
  .modalBuilder dd{
    padding: 0 0 10px;
  }
  .btn-list{
    margin: 0;
  }
  .thankyou h3{
    font-size: 18px;
  }
  .btn-list{
    display: flex;
  }
  .btn-list li{
    width: 40%;
    margin: 0 5% 0 0;
  }
  .btn-list li:last-child{
    width: 55%;
  }
  .error-message{
    font-size: 12px;
  }
}