@charset "UTF-8";
/* loading */
.loadingAnim{
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s;
}
.loadingAnim_line{
    line-height: 1;
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    overflow: hidden;
	width: 260px;
    height: 25px;
    margin: auto;
    transition: all .6s cubic-bezier(.785, .135, .15, .86) 0s;
    transition-delay: 1s;
    text-align: center;
}

.loaded .loadingAnim_line{
    overflow: hidden;
}

.loadingAnim:before,
.loadingAnim:after{
    line-height: 1;
    position: absolute;
    z-index: 99;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 50%;
    margin-right: auto;
    margin-left: auto;
    content: ' ';
    transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
    transition-delay: .3s;
    background-color: #fff;

}
.loadingAnim:before{
    top: 0;
}
.loadingAnim:after{
    bottom: 0;
}

.loaded .loadingAnim:before{
    height: 0;
    -webkit-transform: translateY(-1%);
    -ms-transform: translateY(-1%);
    transform: translateY(-1%);
}
.loaded .loadingAnim:after{
    height: 0;
    -webkit-transform: translateY(1%);
    -ms-transform: translateY(1%);
    transform: translateY(1%);
}
.loadingAnim_line svg {
	width: 260px;
    height: 25px;
}
.loadingAnim_line svg .st2 {
  fill:#1E8EA4;
  stroke:#1E8EA4;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 1;
  -webkit-animation: intactis 1.5s ease-in 0s;
  animation: intactis 1.5s ease-in 0s;
}
.loaded #loadingAnim {
	opacity: 0;
	z-index: -1;
}
@-webkit-keyframes intactis {
  0% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  40% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  50% {
    fill:transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill:#1E8EA4;
  }
}

/*header*/
.txtFixed {
  position: absolute;
  right: 0;
}

#main-header {
  width: 100%;
  background: #ffffff;
  position: fixed;
  z-index: 99999;
}
#main-header .logoIcon {
	display: none;
}

#main-header.on {
  background: #1e8ea4;
}

#main-header a {
  text-decoration: none;
  color: inherit;
}

#main-header .navGlobal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  height: 7.2095vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
#main-header .navGlobal.on {
  background: #1e8ea4;
}

#main-header .navGlobal.on .navGlobalIn {
  display: none;
}
#main-header .navGlobal .logo {
  height: 100%;
  margin: 0px 2%;
  display: block;
}
#main-header .navGlobal .logo a {
	display: block;
	position: relative;
    width: 260px;
    height: 100%;
}
#main-header .navGlobal .logo a svg {
  width: 260px;
  height: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

#main-header .navGlobal .logo a .svg01_header {
  fill: #1e8ea4;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
#main-header .navGlobal.on .logo a .svg01_header {
  fill: #fff;
}
#main-header .navGlobal .logo img {
  width: 100%;
  max-width: 22.05259vw;
}


#main-header .navGlobal .navGlobalIn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
	 -ms-flex-pack: end;
   justify-content: flex-end;
  padding-right: 7.2095vw;
}

#main-header .navGlobal .navGlobalIn li {
  width: calc(96% / 6);
  text-align: center;
}

#main-header .navGlobal .navGlobalIn li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.27226vw;
}

#main-header .navGlobal .navGlobalIn li span {
  display: block;
  font-weight: normal;
}

#main-header .btn-menu {
  z-index: 20000;
  position: absolute;
  top: 0px;
  right: 0px;
  background: #1e8ea4;
  cursor: pointer;
  display: block;
  width: 7.2095vw;
  height: 7.2095vw;
}


#main-header .btn-menu > span {
  position: absolute;
  left: 2.29008vw;
  right: 0;
  width: 2.54453vw;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}


#main-header .btn-menu > span:nth-child(1) {
  top: 2.54453vw;
}


#main-header .btn-menu > span:nth-child(2) {
  top: 3.56234vw;
  width: 1.27226vw;
}

#main-header .btn-menu > span:nth-child(3) {
  top: 4.58015vw;
}

#main-header .btn-menu.on span {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#main-header .btn-menu.on span:nth-child(1) {
  top: 3.39271vw;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#main-header .btn-menu.on span:nth-child(2) {
  opacity: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

#main-header .btn-menu.on span:nth-child(3) {
  top: 3.39271vw;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}


#main-header .main-menu {
  background: #1e8ea4;
  display: none;
  height: calc( 100vh - 85px );
}

#main-header .main-menu.on {
  border-top: 1px solid #ffffff;
  display: block;
}

#main-header .main-menu .menu-inner {
  padding: 5.08906vw 3.39271vw 5.08906vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #ffffff;
  position: relative;
}

#main-header .main-menu .menu-inner .menu-item {
  width: 50%;
}

#main-header .main-menu .menu-inner .menu-item.menu-item1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#main-header .main-menu .menu-inner .menu-item.menu-item2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

#main-header .main-menu .menu-inner .menu-item.menu-item3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

#main-header .main-menu .menu-inner .menu-item.menu-item4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

#main-header .main-menu .menu-inner .menu-item .listChoice {
  margin-bottom: 5.93723vw;
}

#main-header .main-menu .menu-inner .menu-item .listChoice li {
  margin-bottom: 2.12044vw;
  padding-left: 2.12044vw;
  position: relative;
}

#main-header .main-menu .menu-inner .menu-item .listChoice li:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  left: 4px;
  border: 2px solid #ffffff;
  top: 8px;
}

#main-header .main-menu .menu-inner .menu-item .listChoice li a {
  font-size: 2rem;
}


#main-header .main-menu .menu-inner .listIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0.84818vw;
  bottom: 9.75403vw;
}

#main-header .main-menu .menu-inner .listIcon img {
  width: auto;
  max-height: 2.79898vw;
  margin: 0px 2.79898vw;
}

/*footer*/
#main-footer {
  background: #000000;
  color: #ffffff;
  text-align: center;
}

#main-footer .backTop {
  right: 0;
  background: #3b3b3b;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  padding-top: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: auto;
  position: fixed;
  bottom: 10vh;
  right: 2%;
  z-index: 9999;
}
#main-footer .backTop i {
    font-size: 2rem;
}

#main-footer .backTop:hover {
  background: #1e8ea4;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#main-footer .footer-inner {
  padding: 5.51315vw 0px 3.81679vw;
  position: relative;
}
#main-footer .footer-inner .footer-logo {
	width: 325px;
	height: 31px;
	margin: 0 auto;
	display: block;
}
#main-footer .footer-inner .footer-logo .svg02_header {
	fill: #fff;
}

#main-footer .footer-inner > a img {
  width: 27.56573vw;
}

#main-footer .footer-inner .listInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3.39271vw 0px;
  padding: 0px 1.69635vw;
  text-align: center;
}

#main-footer .footer-inner .listInfo li:last-child a {
  border-right: 1px solid #ffffff;
}

#main-footer .footer-inner .listInfo li a {
  font-size: 1.18745vw;
  border-left: 1px solid #ffffff;
  padding: 0px 1.69635vw;
}

#main-footer .footer-inner .listIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#main-footer .footer-inner .listIcon img {
  width: auto;
  max-height: 1.95081vw;
  margin: 0px 1.95081vw;
}

#main-footer .coppyRight {
  text-align: center;
  font-size: 1.10263vw;
  color: #fff;
  padding: 2vw 0px 1.01781vw;
  line-height: 1;
  font-family: poppins, "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}

main section:last-child {
	padding-bottom: 50px;
}

.bg-white {
  background-color: #fff !important;
}

.main-visual {
	position: relative;
}
.main-visual .inner {
	z-index: 2;
	position: relative;
	padding: 10vh 0;
	height: calc( 100vh - 85px );
}
.main-visual .inner h1 {
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	font-size: 6vw;
	color: #fff;
	line-height: 16vh;
}
.main-visual .inner .sub {
	font-size: 3vw;
	color: #fff;
}
.main-visual #background {
	width: 100vw;
	height: calc( 100vh - 85px );
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	background-size: cover;
	z-index: -1;
}

.main-visual #background iframe {
	position: absolute;
/*
	width: calc( calc( 100vh - 85px ) / 0.5625 );
	height: calc( 100vh - 85px );
*/
	top: 50%;
    transform:translateY(-50%);
}

.main-visual .txtVs {
  margin-bottom: 12.72265vw;
  padding-right: 4.24088vw;
}

.main-visual .txtFixed {
  top: -7.63359vw;
}

#scroll {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 40px;
}

#scroll a {
  display: inline-block;
  font-size: 1.01781vw;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}

#scroll a:after {
  content: '\e900';
  font-family: 'intactis';
  position: absolute;
  font-size: 3rem;
}

/* ====================================================
SERVICE PAGE
==================================================== */
.service {
  background: #ffffff;
}
.service .service-inner {
  padding: 2.54453vw 2% 5.08906vw;
}
.service .service-inner .service-bg {
  height: 16.96353vw;
  width: 146%;
  background: #1e8ea4;
  position: relative;
  left: -50%;
}
.service .service-inner .listService {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: -14.419vw;
  margin-bottom: 5.08906vw;
  position: relative;
}

.service .service-inner .listService li {
  max-width: 31.04326vw;
  margin-right: 3.39271vw;
  position: relative;
}

.service .service-inner .listService li:last-child {
  margin-right: 0;
}

.service .service-inner .listService li:last-child:before {
  right: 4.24088vw;
}

.service .service-inner .listService li .listService-item .img-thumb {
  margin-bottom: 2.12044vw;
  position: relative;
  z-index: 3;
}

.service .service-inner .listService li .listService-item p {
  font-size: 1.5rem;
}

/* ====================================================
CASE PAGE
==================================================== */
.works {
  background: #efefef;
}
.works.works-archive {
  background: #fff;
}
.works .works-inner {
  padding: 2.54453vw 2%;
}
.works .works-inner .list-works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.works .works-inner .list-works li {
  max-width: 31.04326vw;
  margin-right: 3.39271vw;
  margin-bottom: 3.39271vw;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% / 3 - 2.28vw);
}

.works .works-inner .list-works li:nth-child(3n) {
  margin-right: 0;
}

.works .works-inner .list-works li .list-works-item .img-thumb {
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
}
.works .works-inner .list-works li .list-works-item {
	text-align: center;
}
.works .works-inner .list-works li .list-works-item p {
  font-size: 1.8rem;
}
.works .works-inner .list-works li .list-works-item .works-ttl span {
  font-size: 1.2rem;
  display: block;
}
.works .works-inner .list-works li .list-works-item .works-region span + span:before {
	content: '/';
}

.strong {
	position: relative;
}
.strong .strong-bg {
    height: 100%;
    width: calc( calc( calc( 100vw - 1180px ) / 2 ) + 1180px );
    background: #efefef;
    position: absolute;
    left: 0;
}
.strong .strong-inner {
  padding: 40px 2%;
}

.strong .strong-inner .txt02 {
	font-size: 1.5rem;
	line-height: 1.8;
	margin-bottom: 30px;
}

/* ====================================================
SERVICE
==================================================== */
.lead {
  border-bottom: 2px solid #d1d1d1;
  padding: 40px 2%;
  position: relative;
  overflow: hidden;
}
.lead .lead-inner {
	padding-bottom: 75px;
	overflow: hidden;
}
.lead .lead-text p {
	width: 40%;
	font-size: 1.6rem;
	line-height: 1.8;
}
.lead .lead-img {
	width: 55%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	padding-top: 75px;
}

/* ====================================================
ABOUT
==================================================== */
.page-about .lead {
	padding-bottom: 0;
	border-bottom: 0;
}
.page-about .overview,
.page-about .about {
	margin-top: 75px;
	padding-top: 75px;
	border-top: 2px solid #d1d1d1;
}
.page-about .lead .lead-inner {
	padding-bottom: 0;
}
.page-about .lead .lead-text p {
	width: 55%;
	font-size: 1.6rem;
	line-height: 1.8;
}
.page-about .lead .lead-img {
	width: 40%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	padding-top: 75px;
}
.page-about .sign {
	text-align: right;
}
.page-about .sign span {
	margin-left: 1em;
	font-weight: bold;
}
.overview .overview-inner .overview-bg {
  height: 200px;
  width: 146%;
  background: #1e8ea4;
  position: relative;
  left: -50%;
}
.overview-box {
    width: 100%;
    margin-top: -170px;
    background: #efefef;
    position: relative;
    padding: 40px;
}
.overview table.overview-table {
    background: #fff;
    width: 100%;
    margin: 0 auto;
}
.overview table.overview-table tr th,
.overview table.overview-table tr td {
	border: 1px solid #d1d1d1;
	padding: 15px 20px;
	font-size: 16px;
	font-size: 1.6rem;
	vertical-align: top;
}
.overview table.overview-table tr th {
	width: 30%;
}
.overview table.overview-table tr td:last-child {
	width: 70%;
}
.page-about .about {
	padding-bottom: 0;
}
.page-about .about .about-inner {
	padding: 0 0 100px;
}
.page-about .about .about-inner .about-content {
	padding: 0;
}

/* ====================================================
NEWS
==================================================== */
.news {
  background: #ffffff;
  padding-bottom: 0!important;
}
.service + .news {
  background: #efefef;
}
.news .btnStyle {
  margin-bottom: 5.08906vw;
}

.news .news-inner {
  padding: 3.39271vw 0 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news .news-inner .ttl-04 {
  float: left;
  width: 20%;
  padding-left: 1.69635vw;
}

.news .news-inner .listNews {
  float: left;
  width: 80%;
  padding: 0px 3.39271vw;
  margin-bottom: 4.24088vw;
}

.news .news-inner .listNews a:focus, .news .news-inner .listNews a:active {
  outline: none;
}

.news .news-inner .listNews .listNews-item .img-thumb {
  width: 15.26718vw;
  height: 15.26718vw;
  background: #e5e5e5;
  border-radius: 50%;
  margin-bottom: 0.84818vw;
}

.news .news-inner .listNews .listNews-item .img-thumb:focus {
  outline: none;
}

.news .news-inner .listNews .listNews-item .img-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
    border-radius: 50%;
}

.news .news-inner .listNews .listNews-item .news-time {
  color: #949393;
  font-size: 1.01781vw;
  display: block;
}

.news .news-inner .listNews .listNews-item .news-content {
  font-size: 1.27226vw;
  padding: 0px 0.42409vw;
  max-width: 16.11535vw;
}

.news .slick-prev:before, .news .slick-next:before {
  color: black;
}

.news .slick-prev {
  display: none;
  opacity: 0;
}

.news .slick-next:before {
  content: '';
  width: 1.69635vw;
  height: 4.15606vw;
  position: absolute;
  right: 3.39271vw;
  top: -1.69635vw;
  background: url("../images/arr-right.png");
  background-size: 100% 100%;
}

.news .slick-slide {
  width: 18.65988vw;
  outline: none;
}

.news .slick-slide:focus, .news .slick-slide:active {
  outline: none;
}


/* ====================================================
CONTACT
==================================================== */
.contact {
  background: url("../images/contact-bg.png");
  background-size: cover;
  background-position: center;
}

.contact .contact-inner {
  padding: 40px 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact .contact-inner .ttl-04 {
  margin-right: 8.48176vw;
  padding-left: 1.69635vw;
}

.contact .contact-inner .contact-content {
  width: 100%;
  padding-right: 10px;
}

.contact .contact-inner .contact-content .btnStyle a {
  cursor: inherit;
  pointer-events: none;
}

.contact .contact-inner .contact-content .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.69635vw 0px 2.54453vw;
}

.contact .contact-inner .contact-content .contact-info span {
  font-size: 1.35708vw;
}

.contact .contact-inner .contact-content .contact-info .phone {
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  padding-left: 1.27226vw;
}

.contact .contact-inner .contact-content .contact-info .phone:before {
  content: '\ea1d';
  font-family: 'intactis';
  margin-right: 5px;
}

.contact .contact-inner .contact-content .contact-info .email {
  font-size: 2.2rem;
  padding-left: 2.12044vw;
  font-weight: bold;
  position: relative;
}

.contact .contact-inner .contact-content .contact-info .email:before {
  content: '\e901';
  font-family: 'intactis';
  margin-right: 5px;
}

.contact .contact-inner .contact-content .contact-btnGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact .contact-inner .contact-content .contact-btnGroup > p {
  width: 31%;
}


/* ====================================================
ABOUT
==================================================== */
.about {
  background: #ffffff;
}

.about .about-inner {
  padding: 5.08906vw 2% 8.48176vw;
}

.about .about-inner .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 1.69635vw;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  color: #000;
  text-align: left;
}

.about .about-inner .about-content .about-left {
  width: 45%;
  overflow: hidden;
  margin-right: 5.08906vw;
}
.about .about-inner .about-content .about-left .logo .svg01_header {
	fill: #1e8ea4;
}
.about .about-inner .about-content .about-left img {
  margin-bottom: 1.69635vw;
  width: 22.05259vw;
}

.about .about-inner .about-content .about-left .ttl-05 {
  margin: 2.12044vw 0px 0px;
}
.about .about-inner .about-content .about-left p {
  line-height: 2;
  font-size: 1.27226vw;
}

.about .about-inner .about-content .about-left .txt01 {
  font-size: 1.35708vw;
}

.about .about-inner .about-content .about-left p.btnStyle.btn-style01 {
  line-height: inherit;
  margin-top: 2.12044vw;
  text-align: left;
}

.about .about-inner .about-content .about-left p.btnStyle.btn-style01 a {
  text-align: center;
}

.about .about-inner .about-content .about-right {
  width: 100%;
}

.about .about-inner .about-content .about-right .maps-block {
  width: 100%;
  height: 100%;
}
.about .about-inner .about-content .about-right .maps-block #map-canvas {
	height: 100%;
}

.tabwrap {
  width: 100%;
  background: #FFFFFF;
}



/* ====================================================
BREAD CRUMB
==================================================== */
.breadCum {
  font-size: 1.18745vw !important;
  padding-left: 2%;
}
.breadCum.inner {
	margin: 10px auto;
}
.breadCum ol {
	display: flex;
	justify-content: flex-start;
}
.breadCum ol li + li:before{
	content: '\edbe';
	font-family: 'intactis';
	font-size: 0.8em;
    padding: 0 5px;
}


.bg-fixed {
  position: relative;
  top: 0;
}

.bg-fixed.on {
  position: fixed !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, 0) !important;
      -ms-transform: translate(-50%, 0) !important;
          transform: translate(-50%, 0) !important;
  z-index: 9999;
  padding: 10px 0px;
  margin: 0px 0px 0px;
  width: 100%;
  background: #FFFFFF;
}

.tabScroll {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
  position: relative;
  top: 0;
  background: #FFFFFF;
}

.tabScroll li {
  display: inline-block;
  margin: 0 1%;
}

.tabScroll .tabItem {
  display: inline-block;
  width: 100%;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 20px;
  background: #FFFFFF;
  font-size: 1.35708vw;
}

.baner {
  height: 85px;
  line-height: 85px;
  position: relative;
}

.baner h1 {
  display: inline-block;
  position: relative;
  padding-left: 2%;
}

.baner h1 span {
  display: inline-block;
  vertical-align: middle;
}

.baner h1 span:first-child {
  font-size: 4vw;
  font-family: poppins, "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  font-weight: 600;
}

.baner h1 span:last-child {
  font-size: 2.4vw;
  margin-left: 10px;
  font-weight: normal;
}

.baner:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background-image: url("../images/baner_bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #1E8EA4;
}
.page-webIndex .baner:after {
  width: 40%;
}
.page-integrate .baner:after {
  width: 50%;
}
.page-utilize .baner:after {
  width: 50%;
}
.page-crm .baner:after {
  width: 53%;
}
.page-support .baner:after {
  width: 47%;
}
.page-estimate .baner:after {
  width: 57%;
}
.page-contact .baner:after {
  width: 57%;
}
.page-partners .baner:after {
  width: 58%;
}
.page-privacy .baner:after {
  width: 56%;
}

/* ====================================================
WORKS PAGE
==================================================== */
#concept {
  margin-bottom: 40px;
  position: relative;
}

#concept .content {
  padding-bottom: 25px;
}

#concept .title {
  margin-bottom: 30px;
}

#concept .title a {
  font-size: 20px;
  font-weight: bold;
  position: relative;
}

#concept .title a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13px;
  background-color: #fff408;
  z-index: -1;
}

#concept .text {
  font-size: 14px;
}
#works-detail #works {
  background: #fff;
}
#works-detail img {
  max-width: 100%;
}
#works-detail .works-main {
  margin-bottom: 45px;
}
#works-detail .works-main .image-slider {
  margin-left: 13%;
  margin-right: 13%;
  margin-top: 30px;
  margin-bottom: 45px;
}
#works-detail .works-main .image-slider .item {
	margin: 0;
}
#works-detail .works-main .image-slider .item figcaption {
	text-align: center;
	font-size: 1.4rem;
	line-height: 3;
}
#works-detail .works-main .image-slider .owl-prev,
#works-detail .works-main .image-slider .owl-next {
  position: absolute;
  top: 50%;
}
#works-detail .works-main .image-slider .owl-prev:hover,
#works-detail .works-main .image-slider .owl-next:hover {
  background-color: transparent;
}
#works-detail .works-main .image-slider .owl-prev:focus,
#works-detail .works-main .image-slider .owl-next:focus {
  outline: 0;
}
#works-detail .works-main .image-slider .owl-prev {
  left: 0;
  -ms-transform: translate(-200%, -50%);
  -webkit-transform: translate(-200%, -50%);
  transform: translate(-200%, -50%);
}
#works-detail .works-main .image-slider .owl-next {
  right: 0;
  -ms-transform: translate(200%, -50%);
  -webkit-transform: translate(200%, -50%);
  transform: translate(200%, -50%);
}
#works-detail .works-main .title-slider {
  text-align: center;
  font-size: 4rem;
  margin-top: 30px;
}
#works-detail .works-main .title-slider span {
	font-size: 2rem;
	display: block;
}
#works-detail .works-main .tagline {
	font-size: 1.6rem;
	margin-top: 1em;
	text-align: center;
}
#works-detail .works-main .works-link {
	text-align: center;
}
#works-detail .works-main .works-link a {
	font-size: 2rem;
	padding: 10px 60px;
	background: #1e8ea4;
	color: #fff;
	display: inline-block;
	position: relative;
}
#works-detail .works-main .works-link a:after {
	content: '\e911';
	font-family: 'intactis'; 
	font-size: 1.4rem;
	vertical-align: top;
	position: absolute;
	right: 5px;
	top: 5px;
}
.listRegion {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.listRegion li {
	margin-bottom: 0;
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	      box-sizing: border-box;
	margin-bottom: 30px;
	padding: 0 20px;
	text-align: center;
	color: #1e8ea4;
}
.listRegion li:nth-child(3n+1),
.listRegion li:nth-child(3n+2),
.listRegion li:last-child {
	margin-bottom: 0;
}
.listRegion li .text {
	font-size: 16px;
}
.listRegion li .img {
  margin-bottom: 10px;
  padding: 29px;
  border: 2px solid #1e8ea4;
  border-radius: 50%;
}
.listRegion li .img i {
	font-size: 7rem;
}
.listRegion li .text {
  font-size: 14px;
}

.listRegion:after {
  content: '';
  display: block;
  clear: both;
}

.listPoint {
  margin-bottom: 30px;
}

.listPoint .listItem {
  margin-bottom: 30px;
  padding: 0 45px;
  position: relative;
}

.listPoint .listItem p {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
}

.listPoint .listItem span {
  font-size: 1.4rem;
}

.listPoint .listItem .img-thumb {
  margin-bottom: 5px;
  border-radius: 50%;
  overflow: hidden;
  width: 80%;
  margin: 0 auto 10px;
}

.listPoint .listItem .img-thumb img {
  width: 100%;
}

.listPoint .listItem .number {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 45px;
  z-index: 0;
  font-family: bebas-neue-by-fontfabric, sans-serif;
  font-weight: 700;
  line-height: 1;
}

.listPoint .listItem .listTitle {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.listPoint .listItem .listTitle:after {
  content: '';
  width: 15px;
  height: 15px;
  border: 2px solid #000;
  position: absolute;
  top: 5px;
  left: 0;
}

.listPoint .listItem .listTitle a {
  color: #000;
  font-size: 24px;
  font-weight: bold;
}

.listPoint .listItem .text {
  font-size: 14px;
}

/* ====================================================
SERVICE PAGE
==================================================== */
.page-service img {
  max-width: 100%;
}

.page-service p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.problem-inner {
  width: 100%;
  padding: 3.39271vw 0px;
  position: relative;
  overflow: hidden;
}
.problem-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-center;
      -ms-flex-pack: flex-center;
          justify-content: flex-center;
  margin: 0 10;
}
.problem p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.problem .problem-right {
  width: 45%;
}

.problem .problem-right img {
  width: 100%;
}

.problem .problem-inner .problem-left {
  width: 50%;
  margin-right: 4%;
  padding: 3.39271vw 2% 4.24088vw;
}

.service-00 {
  padding: 3.39271vw 2% 0.42409vw;
}

.service-00 + .service-00 {
  border-top: 2px solid #d1d1d1;
}
.service-00 .service-00-inner {
	display: flex;
}
.service-00 .service-00-inner .img-01 {
  margin-bottom: 5.08906vw;
}

.service-00 .service-00-inner .img-02 {
  margin-bottom: 6.78541vw;
  position: relative;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.service-00 .service-00-inner .img-02:after {
  content: '';
  display: block;
  clear: both;
}

.service-00 .service-00-inner .img-02 span {
	font-family: poppins, "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	font-weight: 600;
	color: #dbdbdb;
	font-size: 2.2rem;
	letter-spacing: 0.8em;
}

.service-00 .service-00-inner .service-left {
  width: 45%;
  margin-right: 3%;
}
.service-00 .service-00-inner .service-left h3 {
	display: flex;
}
.service-00 .service-00-inner .service-left h3 span.ttl {
	font-size: 3.8rem;
	line-height: 3.8;
	padding-left: 1em;
	letter-spacing: 0.2rem;
}
.service-00 .service-00-inner .service-left h3 span.icon {
	width: 103px;
	height: auto;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.service-00 .service-00-inner .service-left h3 span.icon .txt {
	font-family: poppins, "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
}
.service-00 .service-00-inner .service-left h3 span.icon .num {
	font-family: bebas-neue-by-fontfabric, sans-serif;
    font-weight: 700;
    font-size: 8rem;
    line-height: 1;
}

.service-00 .service-00-inner .service-right {
  width: 52%;
  padding-top: 5.08906vw;
}

.service-00 .service-00-inner .service-right p {
  margin-bottom: 3.81679vw;
}

.service-01 .img-01 {
  width: 36.13232vw;
}

.service-02 .img-01 {
  width: 36.47159vw;
}

.service-03 {
  border-bottom: none;
}

.service-03 .img-01 {
  width: 42.324vw;
}

.page-webIndex .tabScroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.page-webIndex .problem {
  border: none;
  padding-bottom: 0;
}

.page-webIndex .problem .problem-inner .problem-left {
  padding-top: 0;
}

.page-webIndex .works-inner .txt02 {
  font-size: 1.35708vw;
  margin-bottom: 4.24088vw;
}

.page-webIndex .otherWork {
  background: #FFFFFF;
  margin-top: 3.81679vw;
  padding-bottom: 3.39271vw;
}

.package {
  background: #efefef;
}

.package .package-inner {
  padding: 3.39271vw 2%;
}

.package .package-inner .listPackage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}

.package .package-inner .listPackage li {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc( 100% / 3 );
  padding: 30px;
}
.package .package-inner .listPackage li:after {
	content: '';
	height: 60%;
	width: 1px;
	background: #ccc;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.package .package-inner .listPackage li:nth-child(3n) {
  margin-right: 0;
}
.package .package-inner .listPackage li:nth-child(3n):after {
	display: none;
}
.package .package-inner .listPackage li:nth-child(n+4):before {
	content: '';
	height: 1px;
	width: 60%;
	background: #ccc;
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	margin: auto;
}
.package .package-inner .listPackage li .listPackage-item .img-thumb {
  margin-bottom: 5px;
  position: relative;
  z-index: 3;
  text-align: center;
}
.package .package-inner .listPackage li .listPackage-item .img-thumb img {
	width: 90px;
}

.package .package-inner .listPackage li .listPackage-item p {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  line-height: 2.4;
}
.package .package-inner .listPackage li .listPackage-item span {
  font-size: 1.6rem;
  display: inline-block;	
}
.package .package-inner .listPackage li .listPackage-item span.note {
	font-size: 1.2rem;
	text-align: center;
    display: block;
    margin-top: 1em;
}
.package .package-inner .listPackage li .listPackage-item span.note:before {
	content: '※';
}
.package .package-inner .others {
	margin-top: 50px;
}
.package .package-inner .others:before {
	content: '';
	height: 1px;
	width: 80%;
	background: #ccc;
	margin: 0 auto;
	display: block;
	margin-bottom: 50px;
}
.package .package-inner .others p {
  font-size: 2rem;
  text-align: center;	
}
.package .package-inner .others p span {
	font-size: 1.4rem;
	display: block;
	margin-top: 2em;
}

.performance {
  background: #FFFFFF;
}

.performance .performance-inner {
  padding: 3.39271vw 2% 0;
}

.performance .performance-inner .listPerformance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px 3.39271vw;
}

.performance .performance-inner .listPerformance li {
  max-width: 31.04326vw;
  margin-right: 3.39271vw;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% / 3 - 2.28vw);
}
.performance .performance-inner .listPerformance li:nth-child(n+4) {
  margin-top: 5.08906vw;
}
.performance .performance-inner .listPerformance li:nth-child(3n) {
  margin-right: 0;
}

.performance .performance-inner .listPerformance li .listPerformance-item .img-thumb {
  margin-bottom: 5px;
  position: relative;
  z-index: 3;
}

.performance .performance-inner .listPerformance li .listPerformance-item p {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
}
.performance .performance-inner .listPerformance li .listPerformance-item span {
  font-size: 1.4rem;
  display: inline-block;
}
.flow {
  background-image: url("../images/web/flow-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.flow .ttl-04 {
  color: #FFFFFF;
}
.flow .flow-inner {
  padding: 5.93723vw 2% 6.78541vw;
  margin-bottom: 6.78541vw;
}
.flow .flow-inner .four-stepInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1.4rem;
  color: #FFFFFF;
}
.flow .flow-inner .four-stepInner .step0 {
  width: 24.42748vw;
  margin-top: 1.69635vw;
}
.flow .flow-inner .four-stepInner .step0 .stepInner {
  font-weight: bold;
  font-size: 2.20526vw;
  height: 60px;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
  position: relative;
  background-color: #88bebd;
  margin: 0 20px;
}
.flow .flow-inner .four-stepInner .step0 .stepInner img {
  display: inline-block;
  max-width: 100%;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}
.flow .flow-inner .four-stepInner .step0.step2 .stepInner {
  background-color: #5ca9ab;
}
.flow .flow-inner .four-stepInner .step0.step3 .stepInner {
  background-color: #3c919c;
}
.flow .flow-inner .four-stepInner .step0.step4 .stepInner {
  background-color: #27889d;
}
.flow .flow-inner .four-stepInner .step0 .stepInner:before {
	position: absolute;
	content: '';
	background-color: #88bebd;
	-webkit-transform: skew(20deg);
	-moz-transform: skew(20deg);
	transform: skew(20deg);
    display: block;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 30px;
}
.flow .flow-inner .four-stepInner .step0.step2 .stepInner:before {
  background-color: #5ca9ab;	
}
.flow .flow-inner .four-stepInner .step0.step3 .stepInner:before {
  background-color: #3c919c;	
}
.flow .flow-inner .four-stepInner .step0.step4 .stepInner:before {
  background-color: #27889d;	
}
.flow .flow-inner .four-stepInner .step0 .stepInner:after {
	position: absolute;
	content: '';
	background-color: #88bebd;
	-webkit-transform: skew(20deg);
	-moz-transform: skew(20deg);
	transform: skew(20deg);
    display: block;
    right: -15px;
    top: 0;
    bottom: 0;
    width: 30px;
}
.flow .flow-inner .four-stepInner .step0.step2 .stepInner:after {
  background-color: #5ca9ab;	
}
.flow .flow-inner .four-stepInner .step0.step3 .stepInner:after {
  background-color: #3c919c;	
}
.flow .flow-inner .four-stepInner .step0.step4 .stepInner:after {
  background-color: #27889d;	
}


.flow .flow-inner .four-stepInner .step0 p {
	padding: 0 20px;
}

.flow .flow-inner .four-stepInner .txt01 {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 10px 0px 5px;
}

.related-posts {
	background: #efefef;
}
.related-posts .related-posts-inner {
    padding: 3.39271vw 2% 0;
}
.related-posts .related-posts-inner .news-wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-bottom: 50px;
}
.related-posts .related-posts-inner .news-wrap .item {
	background: #fff;
	border-radius: 6px;
	width: calc( calc( 100% - 90px) / 4 );
	position: relative;
	margin-left: 30px;
}
.related-posts .related-posts-inner .news-wrap .item:first-child {
	margin-left: 0;
}

/* ====================================================
PRICE PAGE
==================================================== */
.price {
  background: #ffffff;
}
.price .price-inner .price-bg {
  height: 200px;
  width: 146%;
  background: #1e8ea4;
  position: relative;
  left: -50%;
}
.price-box {
    width: 100%;
    margin-top: -170px;
    background: #efefef;
    position: relative;
    padding: 40px;
}
.price-box p.att {
	text-align: center;
	font-size: 16px;
	font-size: 1.6rem;
	border-bottom: 2px solid #d1d1d1;
	padding-bottom:  40px ;
	margin-bottom: 40px;
	line-height: 1.66;
}
.price-box table.price-table {
    background: #fff;
    width: 100%;
}
.price-box table.price-table tr th,
.price-box table.price-table tr td {
	border: 1px solid #d1d1d1;
	padding: 15px 20px;
	font-size: 16px;
	font-size: 1.6rem;
	vertical-align: top;
}
.price-box table.price-table tr th {
	width: 30%;
}
.price-box table.price-table tr td:last-child {
	width: 40%;
}
.price-box table.price-table td dl {
	display: flex;
	justify-content: space-between;
}
.price-box table.price-table td dl + dl,
.price-box table.price-table td ul li + li {
	margin-top: 0.5em;
}
.price-box table.price-table td ul li {
	text-indent: -1em;
	padding-left: 1em;
}
.price-box table.price-table td ul li:before {
	content: '・';
}
.price-box .tax {
	font-size: 1.4rem;
	line-height: 2;
}
.page-price .performance .performance-inner .listPerformance li .listPerformance-item {
	text-align: center;
}
.page-price section + section.price {
	margin-top: 100px;
}

/* ====================================================
CTA
==================================================== */
.cta {
	margin: 50px 0;
}

/* ====================================================
Form
==================================================== */
.form {
	text-align: center;
}
.form-inner {
	margin-top: 50px;
}
.form-inner a {
	color: #609;
	text-decoration: underline;
}
.form-inner p {
	font-size: 16px;
	font-size: 1.6rem;
}
.form-table {
	width: 80%;
	margin: 50px auto;
}
.form-table th,
.form-table td {
    border: 1px solid #d1d1d1;
    padding: 15px 20px;
    font-size: 16px;
    font-size: 1.6rem;
}
.form-table th {
	background: #f1f1f1;
	position: relative;
	padding-right: 60px;
	width: 30%;
    vertical-align: middle;
}
.form-table td {
	text-align: left;
    vertical-align: top;
	width: 70%;
}
.form-table td.flex .flex-inner {
	display: flex;
}
.form-table td p {
	margin-top: 1em;
}
.form-table th span {
	display: inline-block;
	position: absolute;
	right: 20px;
	font-size: 1.2rem;
	color: #fff;
	line-height: 1.7;
	padding: 0 .5rem;
	border-radius: 3px;
}
.form-table th span.require {
	background: #ea1600;
}
.form-table th span.any {
	background: #037a90;
}
input[type="text"],
input[type="url"],
input[type="email"] {
    width: 420px;
    padding: 15px 24px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .05rem;
    background-color: #f6f6f6;
    border-radius: 4px;
}
.form-table td.flex span {
	width: 40%;
}
.form-table td.flex span.error {
	width: auto;
}
.form-table td.flex span input {
	width: 100%;	
}
.form-table td.flex span + span {
	margin-left: 10px;
}
textarea {
    width: 100%;
    padding: 15px 24px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .05rem;
    background-color: #f6f6f6;
    border-radius: 4px;
}
select{
    outline:none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
    padding: 15px 24px;
    background-color: #f6f6f6;
    border-radius: 4px;
}
select option{
	background-color: #fff;
	color: #333;
}
select::-ms-expand {
	display: none;
}
select:-moz-focusring { 
	color: transparent; 
	text-shadow: 0 0 0 #828c9a;
}
.select-wrap {
    position:relative;
    width: 420px;
}
.select-wrap:before {
    z-index: 1;
    position: absolute;
    right: 15px;
    top: 0;
    content: "\edc2";
    font-family: 'intactis';
    line-height: 52px;
    color: #7F878C;
    pointer-events: none;
}
.mw_wp_form .error {
	margin-top: 10px;
}
.mwform-file-delete {
	display: none;
}
.mw_wp_form_confirm .select-wrap {
	width: auto;
	background: inherit;
}
.mw_wp_form_confirm .select-wrap:before {
	display: none;
}
.mw_wp_form_confirm .note {
	display: none;
}
.mw_wp_form_confirm .form-table th span {
	display: none;
}
.mw_wp_form_confirm .confnon {
	display: none;
}
.submit-btn p {
	margin-top: 50px;
	display: flex;
	justify-content: center;
}
.submit-btn p button + button {
	margin-left: 20px;
}
.btnStyle button.submit {
    background: #000000;
    color: #ffffff;
    padding: 15px 10px;
    max-width: 420px;
    font-size: 1.5rem;
    width: 100%;
    display: inline-block;
    font-weight: 500;
    position: relative;
    border-radius: 50px;
    border: 1px solid #000;
    cursor: pointer;
}
.btnStyle button.submit:hover {
	background: #1e8ea4;
    border: 1px solid #1e8ea4;
	opacity: 1;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;	
}
.btnStyle button.back-btn {
    color: #000;
    padding: 15px 10px;
    max-width: 210px;
    font-size: 1.5rem;
    width: 100%;
    display: inline-block;
    font-weight: 500;
    position: relative;
    border-radius: 50px;
    border: 2px solid #000;
}
.thanks-msg {
	width: 80%;
	margin: 0 auto 30px;
	padding: 30px 40px;
	background: #efefef;
	border-radius: 6px;
	font-size: 1.6rem;
}
.thanks-msg table {
	width: 100%;
	margin-top: 30px;
}
.thanks-msg table th,
.thanks-msg table td {
	border-bottom: 1px solid #ccc;
}
.thanks-msg table tr:last-child th,
.thanks-msg table tr:last-child td {
	border-bottom: none;
}
.thanks-msg table th {
	width: 30%;
    font-weight: bold;
    padding: 20px 25px;
}
.thanks-msg table td {
    padding: 20px 25px;
    text-align: left;
}
.submitting {
    display: block;
    text-align: center;
    width: 100%;
    padding: 100px 0;
    margin: 0 auto 100px;	
}
@-moz-keyframes throbber-loader {
  0% {
    background: #efefef;
  }
  10% {
    background: #1E8EA4;
  }
  40% {
    background: #efefef;
  }
}
@-webkit-keyframes throbber-loader {
  0% {
    background: #efefef;
  }
  10% {
    background: #1E8EA4;
  }
  40% {
    background: #efefef;
  }
}
@keyframes throbber-loader {
  0% {
    background: #efefef;
  }
  10% {
    background: #1E8EA4;
  }
  40% {
    background: #efefef;
  }
}
/* :not(:required) hides these rules from IE9 and below */
.throbber-loader:not(:required) {
  -moz-animation: throbber-loader 2000ms 300ms infinite ease-out;
  -webkit-animation: throbber-loader 2000ms 300ms infinite ease-out;
  animation: throbber-loader 2000ms 300ms infinite ease-out;
  background: #dde2e7;
  display: inline-block;
  position: relative;
  text-indent: -9999px;
  width: 0.9em;
  height: 1.5em;
  margin: 0 1.6em;
}
.throbber-loader:not(:required):before, .throbber-loader:not(:required):after {
  background: #dde2e7;
  content: '\x200B';
  display: inline-block;
  width: 0.9em;
  height: 1.5em;
  position: absolute;
  top: 0;
}
.throbber-loader:not(:required):before {
  -moz-animation: throbber-loader 2000ms 150ms infinite ease-out;
  -webkit-animation: throbber-loader 2000ms 150ms infinite ease-out;
  animation: throbber-loader 2000ms 150ms infinite ease-out;
  left: -1.6em;
}
.throbber-loader:not(:required):after {
  -moz-animation: throbber-loader 2000ms 450ms infinite ease-out;
  -webkit-animation: throbber-loader 2000ms 450ms infinite ease-out;
  animation: throbber-loader 2000ms 450ms infinite ease-out;
  right: -1.6em;
}


/* ====================================================
NEWS
==================================================== */
.news-container {
	background: #efefef;
	padding: 50px 10px;
}
.news-container h2 {
	text-align: center;
}
.news-wrap {
	width: 1290px;
	margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.news-wrap .alm-reveal {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.news-wrap .alm-reveal + .alm-reveal {
	margin-top: 30px;
}
.news-wrap .item {
	background: #fff;
	border-radius: 6px;
	max-width: 300px;
	position: relative;
	margin-left: 30px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;	
}
.news-wrap .item:hover {
	box-shadow: 0px 0px 10px rgb(50 50 50 / 20%);
}
.news-wrap .item:nth-child(4n+1) {
	margin-left: 0;
}
.news-wrap .item:nth-child(n+5) {
	margin-top: 30px;
}
.news-wrap .item .article-inner {
	position: relative;
}
.news-wrap .item .article-inner .category {
	display: inline-block;
	position: absolute;
	box-sizing: border-box;
	padding: 5px 25px;
	margin: 0 0 0 -10px;
	font-size: 1.4rem;
	color: white;
	background: #1E8FA4;
	top: 15px;
	left: 0;
}
.news-wrap .item .article-inner .category:before {
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	border: none;
	border-bottom: solid 6px transparent;
	border-right: solid 10px #037A90;
}
.news-wrap .item time {
	color: #666;
	font-size: 1.5rem;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.1em;
}
.news-wrap .item .thumb {
}
.news-wrap .item .thumb img {
	width: 100%;
	height: auto;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
.news-wrap .item .article-box {
	padding: 10px 15px 15px;
}
.news-wrap .item .article-ttl {
	color: #333;
	font-size: 1.8rem;
}

.news-detail {
	padding: 50px 10px 100px;
}
.news-detail .inner {
	display: flex;
	justify-content: space-between;
}
.news-detail .inner .main-article {
	width: 830px;
	margin-bottom: 100px;
}
.news-detail .inner .main-article header {
	padding: 65px 30px 20px;
    border: solid 1px #efefef;
	margin-bottom: 50px;
	position: relative;
}
.news-detail .inner .main-article header .category {
	display: inline-block;
	position: absolute;
	box-sizing: border-box;
	padding: 5px 45px;
	margin: 0 0 0 -15px;
	font-size: 1.8rem;
	color: white;
	background: #1E8FA4;
	top: 15px;
	left: 0;
}
.news-detail .inner .main-article header .category:before {
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	border: none;
	border-bottom: solid 10px transparent;
	border-right: solid 15px #037A90;
}

.news-detail .inner .main-article header time {
	color: #666;
	font-size: 1.6rem;
    line-height: 1.4;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.1em;
	display: block;
	text-align: right;
}
.news-detail .inner .main-article header h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    line-height: 1.4;
    font-weight: bold;
}
.news-detail .inner .main-article h2 {
    margin: 75px 0 30px;
    padding: 5px 0 15px;
    font-size: 2.6rem;
    font-weight: bold;
    border-bottom: 2px solid #efefef;
}
.news-detail .inner .main-article h3 {
    margin: 50px 0 15px;
    position: relative;
    padding-left: 1.2em;
    font-size: 2.2rem;
}
.news-detail .inner .main-article h3::after {
    position: absolute;
    top: 50%;
    left:0;
    transform:translateY(-50%);
    content: '';
    width: 10px;
    height:10px;
    border: solid 4px #1e8ea4;
    border-radius:100%;
}
.news-detail .inner .main-article h4 {
    margin: 25px 0 15px;
    font-size: 1.8rem;
    font-weight: bold;
}
.news-detail .inner .main-article p {
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 15px;
}
.news-detail .inner .main-article blockquote p {
	margin-bottom: 0;
}
.news-detail .inner .main-article p.right {
	text-align: right;
}
.news-detail .inner .main-article p.small {
	font-size: 1.4rem;
}
.news-detail .inner .main-article p a {
	color: #1e8ea4;
	text-decoration: underline;
}
.news-detail .inner .main-article figure {
	width: 100%;
	margin: 0;
	text-align: center;
	margin-bottom: 15px;
}
.news-detail .inner .main-article figure img {
	max-width: 100%;
	vertical-align: bottom;
}
.news-detail .inner .main-article figure figcaption {
	font-size: 1.4rem;
	line-height: 3;
	color: #666;
}
.news-detail .inner .main-article .flex-img {
	display: flex;
	justify-content: space-between;
}
.news-detail .inner .main-article .flex-img figure {
	width: 48%;
}
.news-detail .inner .main-article table {
	width: 100%;
	margin-bottom: 15px;
}
.news-detail .inner .main-article table th,
.news-detail .inner .main-article table td {
	font-size: 1.6rem;
	padding: 10px 15px;
	border: 1px solid #ccc;
}
.news-detail .inner .main-article table th {
	background: #efefef;
	text-align: center;
}
.news-detail .inner .main-article table caption {
	text-align: right;
	font-size: 1.4rem;
	line-height: 3;
}
.news-detail .inner .main-article table.table-tw th {
	white-space: nowrap;	
}
.news-detail .inner .main-article table.table-tp th,
.news-detail .inner .main-article table.table-tp td {
	text-align: center;
}
.news-detail .inner .main-article table.table-icon th .th-inner {
	display: flex;
	align-items: center;
}
.news-detail .inner .main-article table.table-icon th .th-inner span + span {
	margin-left: 1em;
}
.news-detail .inner .main-article table.table-icon th .th-inner .icon {
	width: 64px;
}
.news-detail .inner .main-article table.table-icon th .th-inner .text {
	white-space: nowrap;
}
.news-detail .inner .main-article table.table-mc td {
	text-align: center;
}
.news-detail .inner .main-article pre code {
	padding: 15px 20px;
	font-size: 1.6rem;
}
.news-detail .inner .main-article ul.list-normal {
	margin-bottom: 1em;
	padding: 20px 20px;
    background: #f1f1f1;
    border: 1px solid #ccc;
}
.news-detail .inner .main-article ul.list-normal li {
	font-size: 1.6rem;
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.4;
}
.news-detail .inner .main-article ul.list-normal li + li {
	margin-top: 1em;
}
.news-detail .inner .main-article ul.list-normal li:before {
	content: '・';
}
.news-detail .inner .main-article .flex-btn {
	display: flex;
	justify-content: space-between;
}
.news-detail .inner .main-article .flex-btn .btnStyle {
	width: 48%;
}
.news-detail .inner .main-article .btnStyle {
	margin-top: 75px;
}
.news-detail .inner .main-article blockquote {
	border: 1px solid #ccc;
	background: #efefef;
	padding: 15px 25px;
	margin-bottom: 15px;
}
.news-detail .inner .main-article blockquote h2 {
	margin-top: 15px;
	border-bottom: none;
}
.news-detail .inner .main-article footer {
	margin-top: 100px;
	border-top: 2px solid #efefef;
}
.news-detail .inner .main-article footer h2 {
	border-bottom: none;
}
.news-detail .inner .main-article footer .related-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.news-detail .inner .main-article footer .related-tags li {
	margin-top: 15px;
	margin-right: 15px;
}
.news-detail .inner .main-article footer .related-tags li a {
	font-size: 1.6rem;
	color: #1e8ea4;
	border: 1px solid #1e8ea4;
	border-radius: 3px;
	line-height: 2;
	padding: 0 10px;
	display: inline-block;
}
.news-detail .inner .main-article footer .related-tags li a:hover {
	background: #1e8ea4;
	color: #fff;
}
.news-detail .inner .main-article footer .related-tags li a:before {
	content: '\e935';
	font-family: 'intactis';
	margin-right: 0.5em;
}
.news-detail .inner .main-article footer .related-services {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}
.news-detail .inner .main-article footer .related-services li a {
	display: flex;
	justify-content: space-between;
}
.news-detail .inner .main-article footer .related-services li + li {
	margin-top: 30px;
	border-top: 1px solid #efefef;
	padding-top: 30px;
}
.news-detail .inner .main-article footer .related-services li a figure {
	margin-bottom: 0;
	width: 180px;
}
.news-detail .inner .main-article footer .related-services li a .right-box {
	width: calc( 100% - 210px );	
}
.news-detail .inner .main-article footer .related-services li a .right-box h3 {
	margin-top: 0;
	padding-left: 0;
}
.news-detail .inner .main-article footer .related-services li a .right-box h3:after {
	display: none;
}
.news-detail .inner .main-article footer .related-services li a .right-box P {
	margin-bottom: 0;
}
.news-detail .inner aside {
	width: 300px;
}


/* ====================================================
PRIVACY POLICY
==================================================== */
.privacy .inner {
	padding-top: 100px;
}
.privacy .inner h2 {
	text-align: center;
}
.privacy .inner h3 {
    margin: 50px 0 15px;
    position: relative;
    padding-left: 1.2em;
    font-size: 2.2rem;
}
.privacy .inner h3::after {
    position: absolute;
    top: 50%;
    left:0;
    transform:translateY(-50%);
    content: '';
    width: 10px;
    height:10px;
    border: solid 4px #1e8ea4;
    border-radius:100%;
}
.privacy .inner p {
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 15px;
}
.privacy .inner ul.list-normal,
.privacy .inner ul.list-nest {
	counter-reset: my-counter;
}
.privacy .inner ul.list-normal li,
.privacy .inner ul.list-nest > li {
	font-size: 1.6rem;
	line-height: 2;
	padding-left: 2em;
	position: relative;
}
.privacy .inner ul.list-normal li:before,
.privacy .inner ul.list-nest > li:before {
	content: counter(my-counter)'. ';
	counter-increment: my-counter;
	position: absolute;
	left: 0;	
}
.privacy .inner ul.list-nest li ul.list-child {
	counter-reset: child-counter;	
}
.privacy .inner ul.list-nest  li ul.list-child li {
	font-size: 1.6rem;
	line-height: 2;
	padding-left: 3em;
	position: relative;	
}
.privacy .inner ul.list-nest li ul.list-child li:before {
	content: '（'counter(child-counter)'）';
	counter-increment: child-counter;
	position: absolute;
	left: 0;		
}
.privacy .inner .privacy-box {
	border: 1px solid #ddd;
    padding: 30px;
    margin: 20px 0; 
    background: #efefef;
}
.privacy .inner .privacy-box h4 {
    font-size: 1.6rem;
    margin-bottom: 1em;
}
.privacy .inner .privacy-box dl {
	zoom: 1;
}
.privacy .inner .privacy-box dl:before {
	content: "";
    display: block;
}
.privacy .inner .privacy-box dl dt {
	float: left;
    min-width: 68px;
    font-size: 1.4rem;
}
.privacy .inner .privacy-box dl dd {
    font-size: 1.4rem;
    letter-spacing: .075em;
    padding-bottom: 8px;
    overflow: hidden;
}	

/* ====================================================
FAQ
==================================================== */
.faq .faq-inner {
	padding: 2.54453vw 2% 0;
}
.faq .faq-inner h2 {
	text-align: center;
}
.faq .faq-inner .ttl-04 span:after {
	content: '';
    position: relative;
    width: 30px;
    height: 4px;
    background: #1e8ea4;
    margin-left: 0.42409vw;
    display: block;
    margin: 25px auto;
}
.list-faq dl {
	width: 1000px;
	max-width: 100%;
	margin: auto;
}
.list-faq dl dt {
	position: relative;
	background: #efefef;
	padding: 15px 50px;;
	font-size: 1.6rem;
	line-height: 2.4rem;
	cursor: pointer;
}
.list-faq dl dt.active {
	background: #1E8EA4;
	color: #fff;
}
.list-faq dl dt:before {
	content: 'Q. ';
	font-family: 'Poppins', sans-serif;
	display: inline-block;
	font-size: 2rem;
	position: absolute;
	left: 20px;
	line-height: 2.4rem;
}
.list-faq dl dt:after {
	font-family: 'intactis';
	content: "\edc1";
	position: absolute;
	right: 20px;
	line-height: 2.4rem;
}
.list-faq dl dt.active:after {
		content: "\edb9";
}
.list-faq dl dd {
	position: relative;
	padding: 15px 24px 15px 50px;
	font-size: 1.6rem;
	line-height: 2.4rem;
	border: 1px solid #1E8EA4;
	border-top: none;
}
.list-faq dl dd a {
	color: #1E8EA4;
	text-decoration: underline;
}
.list-faq dl dd:before {
	content: 'A. ';
	font-family: 'Poppins', sans-serif;
	display: inline-block;
	font-size: 2rem;
	position: absolute;
	left: 20px;
	line-height: 2.4rem;
}
.list-faq dl + dl {
	margin-top: 15px;
}
	

/* ====================================================
SIDE BAR
==================================================== */
aside .ttl-04 {
	font-size: 4rem;
}
aside div + div {
	margin-top: 50px;
}
aside .categories ul {
	display: flex;
	flex-direction: column;
}
aside .categories ul li {
	width: 100%;
	border-bottom: 1px solid #efefef;
}
aside .categories ul li:first-child {
	border-top: 1px solid #efefef;
}
aside .categories ul li a {
	display: block;
	padding: 15px 20px 15px 10px;
	font-size: 1.8rem;
}
aside .categories ul li a:after {
	content: '\edbd';
	font-family: 'intactis';
	position: absolute;
	right: 10px;
	color: #efefef;
}
aside .categories ul li a:hover,
aside .categories ul li a:after:hover {
	color: #1e8ea4;
}
aside .side-related .side-article time {
	font-size: 1.4rem;
	line-height: 2;
	margin-top: 10px;
	display: block;
}
aside .side-related .related-posts-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
aside .side-related .side-article {
	max-width: 300px;
}
aside .side-related .side-article h4 {
	font-size: 1.6rem;
	line-height: 1.4;
}
aside .side-related article + article {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #efefef;
}

/* ====================================================
404
==================================================== */
.error404 #movie {
	text-align: center;
}
.error404 #movie iframe {
	max-width: 100%;
}

/* ====================================================
Embed style
==================================================== */
.wp-embedded-content {
	margin:  0 auto;
	min-width: 100%;
	width: 100%;
}

/* ====================================================
MEDIA QUERIES
==================================================== */
@media screen and (max-width: 1320px) {
	.news-container .news-wrap {
		width: 960px;
	}
	.news-container .news-wrap .item {
		margin-left: 30px;
	}
	.news-container .news-wrap .item:nth-child(4n+1) {
		margin-left: 30px;
	}
	.news-container .news-wrap .item:nth-child(3n+1) {
		margin-left: 0;
	}
	.news-container .news-wrap .item:nth-child(n+4) {
		margin-top: 30px;
	}
}

@media screen and (max-width: 1040px) {
  .contact .contact-inner .contact-content .contact-btnGroup .btnStyleBase a {
    padding: 1.69635vw 0vw 1.69635vw 0.84818vw;
  }
}
@media (min-width: 1000px) {
	.listPoint {
		margin-left: 70px;
		margin-right: 70px;
	}
	.listPoint .listItem {
		padding: 0 45px;
	}
}
@media screen and (max-width: 960px) {
	.news-container .news-wrap {
		width: 630px;
	}
	.news-container .news-wrap .item:nth-child(4n+1) {
		margin-left: inherit;
	}
	.news-container .news-wrap .item:nth-child(3n+1) {
		margin-left: 30px;
	}
	.news-container .news-wrap .item:nth-child(2n+1) {
		margin-left: 0;
	}
	.news-container .news-wrap .item:nth-child(n+3) {
		margin-top: 30px;
	}
	.related-posts .related-posts-inner .news-wrap .item {
		width: calc( calc( 100% - 20px) / 2 );
		margin-left: 20px;
	}
	.related-posts .related-posts-inner .news-wrap .item:nth-child(2n+1) {
		margin-left: 0;
	}
	.related-posts .related-posts-inner .news-wrap .item:nth-child(n+3) {
		margin-top: 20px;
	}
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .bg-fixed.on {
    padding: 10px 0px;
    margin-top: 0;
  }
  .tabScroll li {
    margin-bottom: 0;
    width: calc(100% / 6);
  }
  .baner h1 span:first-child {
    font-size: 4.41052vw;
  }
  .baner h1 span:last-child {
    font-size: 1.52672vw;
    margin-left: 15px;
  }
  .baner:after {
    width: 63%;
  }

  .listPoint {
    margin: 0 20px;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .listPoint .listItem {
    width: calc(100% / 3);
    margin-bottom: 0;
    padding: 0 20px;
  }
  .listPoint .listItem .number {
    font-size: 8rem;
  }
  .listPoint .listItem .listTitle {
    padding-left: 35px;
  }
  .listPoint .listItem .listTitle:after {
    width: 20px;
    height: 20px;
  }
  .listPoint .listItem .text {
    font-size: 16px;
  }
  #concept {
    margin-bottom: 85px;
    margin-top: 30px;
  }
  #concept:after {
    width: 48%;
  }
  #concept .title a {
    font-size: 33px;
  }
  #concept .text {
    font-size: 16px;
  }
  .mb75 {
    margin-bottom: 75px !important;
  }
}
@media (min-width: 678px) {
  .baner {
    height: 170px;
    line-height: 170px;
  }
  #concept .content {
    width: 60%;
  }
}

/* lang=en */
html:lang(en) #main-header .navGlobal .navGlobalIn li a span {
	display: none;
}

.notice {
  background: #efefef;
  padding: 40px;  
  max-width: 800px;
  margin: 40px auto;
}
.notice ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: flex-start;
}
.notice ul li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.66;
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
}
.notice ul li:before {
  content:'・';
}

.acf-map {
    width: 100%;
    height: 100%;
}

// Fixes potential theme css conflict.
.acf-map img {
   max-width: inherit !important;
}