  /*======= common style =======*/
@charset "utf-8";

/* import font */

/* import font */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-weight: 400;
    color: #000000;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.4;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

@media only screen and (max-width: 360px) {
    body {
        min-width: 320px;
    }
}

a {
    text-decoration: none;
    color: unset;
    transition: 0.2s;
}

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

ul,
li {
    list-style-type: none;
    margin: 0px;
}

img {
    display: block;
    max-width: 100%;
    transition: .2s;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.container {
    max-width: 1260px;
    padding: 0 20px;
    margin: 0 auto;
    transition: 0.2s;
}

.container-980 {
    max-width: 1010px;
    padding: 0 15px;
    margin: 0 auto;
    transition: 0.2s;
}

@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    section.section {
        padding: 60px 0 !important;
    }
}

.cl-white {
    color: #ffffff;
}

.cl-black {
    color: #000000;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.btn-site {
    font-size: 22px;
    font-weight: 600;
    border: 2px solid #fff;
    color: #fff;
    min-width: 192px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    background-color: transparent;
    transition: 0.3s;
}   

.btn-site:hover {
    background-color: #000;
    color: #fff;
    opacity: 1;
    border-color: #000000;
}

.btn-site.--bg-black {
    background-color: #000000;
    border-color: #000000;
    color: #fff;
}

.btn-site img {
    max-width: 27px;
}

.btn-site span {
    flex: 1;
    text-align: center;
}

.section-title h2 {
    font-size: 88px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.2s;
}

.section-title  span {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
}

.section-title__collum {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-title  p {
    font-size: 15px;
    font-weight: 600;
    margin-top: 5px;
}



/* =====start - header===== */
.wrap__eyecatch {
    background-image: url(../images/hero-home-bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

.wrap__eyecatch.--home {
    max-height: 800px;
}

.eyecatch {
    padding-left: 180px;
    position: relative;
    transition: 0.2s;
}

.home-slide {
    height: 700px;
}

.home-slide .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eyecatch__text {
    position: absolute;
    height: auto;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.eyecatch__text h2 {
    font-size: 120px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.eyecatch__text p {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    text-shadow: text-shadow: 0px 5px 6px rgb(22 21 21 / 80%);;
}

.mask-bg {
    color: transparent;
    /* display: inline-block; */
    font-size: 36px;
    font-weight: bold;
    overflow: hidden;
    position: relative;
    transition: color 0ms 850ms;
    text-shadow: 0px 5px 6px rgb(22 21 21 / 80%);
}
.mask-bg::after {
    background: linear-gradient(to right, #362ae0 0%,#3b79cc 50%,#42d3ed 100%);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(0, 101%);
}
   
.mask-bg.is-animated::after {
    animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.170, 1);
}


@keyframes mask-bg {
0% {
    transform: translate(0, 101%);
}
40%, 60% {
    transform: translate(0, 0%)
}
100% {
    transform: translate(0, -100%)
} 
}

.use_animate_on_screen.gradient {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.use_animate_on_screen.gradient::before {
    content: "";
    display: block;
    position: absolute;
    background: #ac3c92;
    background: linear-gradient(to right, #362ae0 0%,#3b79cc 50%,#42d3ed 100%);
    transform: translateX(-101%);
    transition: all 1.2s 0s ease;
    width: 100%;
    height: 20rem;
    z-index: 1;
    animation: fadeRight 1.2s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeRight {
    0% {
        transform: translateX(-101%);
    }
    100% {
        transform: translateX(101%);
    }
}

header {
    background-color: transparent;
    position: relative;
    max-height: 100px;
}

header .container {
    padding-left: 180px;
    padding-right: 180px;
    max-width: 100%;
    transition: 0.2s;
}

.header__bg-ab {
    position: absolute;
    content: "";
    width: 30%;
    background-color: #0857cf;
    height: 100%;
    right: 0px;
    top: 0px;
    transition: 0.2s;
}

.header__bg-ab::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    top: 0px;
    left: -46px;
    border-style: solid;
    border-width: 0px 0px 100px 46px;
    border-color: transparent transparent #0857cf transparent;
}

.header__inner {
    position: relative;
    height: 100px;
}

.header__logo {
    background-color: #fff;
    padding: 21.5px 24px;
    width: 390px;
    height: 100%;
}

.header__logo a {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__logo span {
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
}

.header__logo img {
    width: 68px;
}

.header__text {
    flex: 1;
    justify-content: space-between;
}

.header__menu {
    gap: 24px;
}

.header__nav {
    padding: 0px 54px 0px 32px;
    gap: 30px;
    flex: 1;
}

.header__menu-item a {
    font-size: 20px;
    color: #fff;
    padding: 10px 0px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: block;

    -webkit-transition: background-size 0.6s cubic-bezier(0.86, 0, 0.07, 1), color 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    transition: background-size 0.6s cubic-bezier(0.86, 0, 0.07, 1), color 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    background-image: -webkit-gradient( linear, left top, left bottom, from(#fff), to(#fff) );
    background-image: linear-gradient(#fff, #fff);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    text-decoration: none;
}

.header__menu-item a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
    opacity: 1;
}

.header__phone a {
    display: flex;
    align-items: center;
    font-size: 30px;
    color: #fff;
    padding: 10px 0px;
    font-weight: 600;
    letter-spacing: 1px;
    gap: 6px;
    white-space: nowrap;
}

.header__phone a img {
    max-width: 16px;
}

.header__link {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.header__link .btn-site {
    min-width: 174px;
    padding: 6px 10px;
}

.header__link .btn-site:hover {
    background-color: transparent;
    border-color: #fff;
}
/* =====end - header===== */


/* =========start - footer========= */
footer {
    background-color: #000000;
    padding: 70px 0px 60px;
    color: #fff;
}

.footer__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.footer__site-name h3{
    font-size: 20px;
    font-weight: 600;
}

.footer__info {
    display: flex;
    align-items: flex-start;
    gap: 84px;
    row-gap: 40px;
}

.footer__info-item li {
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
}

.wrap__footer-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 40px;
}

.copyright {
    font-size: 13px;
    font-weight: 300;
    margin-top: 36px;
}

.footer__menu li a {
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
    text-transform: uppercase;
    line-height: 30px;

    -webkit-transition: background-size 0.6s cubic-bezier(0.86, 0, 0.07, 1), color 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    transition: background-size 0.6s cubic-bezier(0.86, 0, 0.07, 1), color 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    background-image: -webkit-gradient( linear, left top, left bottom, from(#fff), to(#fff) );
    background-image: linear-gradient(#fff, #fff);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    padding-bottom: 2px;
    text-decoration: none;
}

.footer__menu li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
    opacity: 1;
}

.footer__menu li {
    margin-bottom: 10px;
}

.footer__menu li:last-child {
    margin-bottom: 0px;
}

.footer__menu li a span {
    font-size: 13px;
}

.wrap-footer__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* =========end - footer========= */

/* css button back to top */
#back-to-top {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 90px;
    height: 90px;
    background-color: #174f9f;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #fff;
    font-size: 14px;
    
}

#back-to-top img {
    margin-bottom: 5px;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
  }

#back-to-top:hover {
    opacity: 0.7;
}
/* css button back to top */

/*======== css for page ========*/
.home-service {
    position: relative;
    width: 100%;
    height: auto;
}

.service__desc {
    position: relative;
    background-color: #fff;
    padding: 60px 0px;
    height: 650px;
}

.service__desc .__inner {
    position: relative;
    z-index: 2;
}

.service__desc .__inner ul li {
    list-style-type: circle;
    font-size: 18px;
    margin-bottom: 8px;
}

.service__desc::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/service-bg-03.png);
    background-size: auto;
    background-position: right;
    background-repeat: no-repeat;
}

.service__desc .__inner p {
    font-size: 15px;
    margin-top: 40px;
    font-weight: 600;
}

.service__banner {
    position: relative;
}

.service__banner .container {
    transform: translateY(-250px);
}

.service__banner::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/service-bg-02.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.service__banner-item {
    width: 100%;
    height: 390px;
    border: 7px solid #000;
    padding: 6px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 112px;
    margin-bottom: 40px;
    transition: 0.2s;
}

.service__banner-item:last-child {
    margin-bottom: 0px;
}

.service__banner-item h3 {
    font-size: 35px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0px 5px 6px rgb(22 21 21 / 80%);
}

.service__banner-item.--one {
    background-image: url(../images/service-img-07.jpg);
}

.service__banner-item.--two{
    background-image: url(../images/service-img-09.jpg);
    align-items: flex-end;
}

.service__banner-item.--three {
    background-image: url(../images/service-img-08.jpg);
}

.wrap__about-reruit {
    position: relative;
    margin-top: 150px;
    padding-bottom: 60px;
}

.wrap__about-reruit::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/bg-contact-recruit.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.home__about {
    position: relative;
    transform: translateY(-226px);
}

.home__about-img {
    max-width: 1100px;
    margin: -120px auto 0px;
    position: relative;
    z-index: 2;
}

.home__about-title {
    position: relative;
    padding: 100px 0px 200px;
}

.home__about-title::after {
    position: absolute;
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    width: 81%;
    background-image: url(../images/about-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.home__about-title .__inner {
    position: relative;
    z-index: 2;
    justify-content: space-between;
    padding-right: 205px;
}

.home__recruit {
    margin-top: -120px;
    position: relative;
    padding: 50px 0px;
}

.home__recruit .__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

.home__recruit::after {
    position: absolute;
    content: "";
    height: 100%;
    right: 0;
    top: 0;
    width: 89%;
    background-image: url(../images/recruit-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; 
}

.home__recruit .__inner > img {
    width: 50%;
    max-height: 310px;
    object-fit: cover;
    min-height: 180px;
}

.home__recruit-text {
    flex: 1;
    padding: 0px 20px 0px 42px;
}

.home__recruit-text p {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0px;
}

.home__new {
    padding: 70px 0px;
    background-color: #1f4f99;
}

.home__new-title {
    align-items: flex-end;
    justify-content: space-between;
    padding-right: 120px;
}

.new__list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.new__item {
    width: calc(100%/4 - 22.5px);
    margin-right: 30px;
    margin-bottom: 30px;
}

.new__item:last-child {
    margin-right: 0px;
    margin-bottom: 0px;
}

.new__item .__thumb {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.new__item .__thumb a {
    position: relative;
    overflow: hidden;
    height: 0;
    position: relative;
    width: 100%;
    background: #f4f4f4;
    padding-top: 72%;
    display: block;
}

.new__item .__thumb a img {
    object-fit: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

.new__item .__thumb a:hover img {
    transform: scale(1.1);
}

.new__item .__desc {
    padding: 10px 0px;
}

.new__item .__desc h3 a {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.new__item .__desc h3 a:hover {

}

.new__item .__desc span {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}

.contact__part {
    padding: 60px 0px;
    background-image: url(../images/contact-bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact__part-box {
    margin: 10px auto 48px;
    background-color: #1f4f99;
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    max-width: 504px;
    padding: 10px 20px;
}

.wrap__contact-link {
    row-gap: 40px;
    justify-content: space-between;
    align-items: stretch;
}

.contact-link__item {
    width: calc(100%/2 - 50px);
    background-color: #fff;
    padding: 14px 40px 14px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-link__item .__icon {
    width: 60px;
    height: 60px;
    background-color: #1f4f99;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link__item .__icon img {
    width: auto;
}

.contact-link__item span {
    flex: 1;
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1f4f99;
    white-space: nowrap;
}

.contact-link__item:hover {
    opacity: 0.9;
}

.contact-link__item span.tel {
    font-size: 26px;
    letter-spacing: 2px;
}

.burger {
    display: none;
}

.banner-page {
    height: 450px;
}

.banner-page img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.eyecatch__text.page {
    background-color: #fff;
    padding: 27px 50px 27px 180px;
    top: 60px;
    transform: translate(0px)!important;
    left: 0px;
    right: unset;
    z-index: 30;
    height: 160px;
    display: flex;
    align-items: center;
}

.eyecatch__text.page::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    top: 0px;
    right: -70px;
    border-style: solid;
    border-width: 160px 70px 0px 0px;
    border-color:rgb(255, 255, 255) transparent transparent ;
}

.eyecatch__text.page .section-title h2 {
    color: #000000;
    font-size: 60px;
    margin-bottom: 0px;
    letter-spacing: 4px;
}

.eyecatch__text.page .section-title .__desc span {
    color: #000000;
}

.eyecatch__text h2 {
    font-size: 50px;
    /*text-shadow: 0px 5px 6px rgb(22 21 21 / 80%);*/
}

.wrap-content__page {
    padding: 106px 0px 80px;
    position: relative;
    overflow: hidden;
}

.wrap-content__page.page-about {
    padding-bottom: 0px;
/*    background-color: #e6e6e6;*/
}

.wrap-content__page.page-about::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 73%;
    left: 0px;
    top: 260px;
    z-index: -1;
    background-image: url(../images/about-content-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-page__inner {
    width: 1100px;
    margin: 0 auto;
    transition: 0.2s;
}

.about__box {
    width: 100%;
    margin-bottom: 138px;
    background-color: #fff;
    padding: 64px 56px 60px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 18%);
    position: relative;
    z-index: 2;
}


.about__box.flex-layout {
    display: flex;
    align-items: center;
}

.flex-layout .img-full-height {
    height: 100%;
    object-fit: cover;
    width: 46.9%;
}

.about__box.pd-0 {
    padding: 0px;
}

.about__box:last-child {
    margin-bottom: 0px;
}

.about__box h3 {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: #000000;
    font-size: 40px;
    font-weight: 600;
    padding: 7px 12px 4px;
    line-height: 1;
    white-space: nowrap;
}

.about__box .font-ShinryuSou {
    font-size: 130px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    display: block;
}

.about__box span img {
    margin: 0 auto;
}

.about__policy-list {
    padding-top: 18px;
}

.about__policy-list li h4 {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.about__policy-list li {
    margin-bottom: 56px;
}

.about__policy-list li:last-child {
    margin-bottom: 0px;
}


.about__policy-list li h4::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 6px;
    background-color: #a7a472;
    bottom: 0px;
    left: 0px;
}

.about__policy-list li p {
    font-size: 17px;
    font-weight: 500;
}

.about__box .__inner-collum {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about__box .__inner-collum img {
    width: 400px;
    height: 315px;
    object-fit: cover;
}

.about-company__info {
    flex: 1;
    padding-right: 40px;
}

.about-company__info li {
    display: flex;
    align-items: flex-start;
}

.about-company__info li span {
    font-size: 23px;
    font-weight: 600;
    width: 160px;
}

.about-company__info li  p {
    flex: 1;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    padding-top: 3px;
}

.about-company__info li:not(:last-child) {
    margin-bottom: 36px;
}

.about__box .__map {
    margin-top: 40px;
}

.about__box .__map img,
.about__box .__map iframe {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.flex-layout .about-company__info {
    padding: 56px;
}
/*====== end css for page ======*/
/*service--------------------------------------------------*/
.wrap-content__page.page-service {
    padding-bottom: 70px;
}

.wrap-content__page.page-service .inner {
    width: 1100px;
    margin: 0 auto;
}

.wrap-content__page.page-service .inner section {
    margin-bottom: 180px;
    position: relative;
}

.wrap-content__page.page-service .inner section#service02 {
    margin-bottom: 90px;
}

.wrap-content__page.page-service .inner section:after {
    position: absolute;
    content: "";
    border-bottom: 4px solid #E7EEFA;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 0 calc(50vw - 50%);
    height: 4px;
    bottom: -80px;
}

.wrap-content__page.page-service .inner h2 {
    font-size: 38px;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    position: relative;
    color: #1f4f99;
    line-height: 50px;
    text-shadow: 0px 5px 6px rgb(243 235 235 / 80%);
}

.wrap-content__page.page-service .inner h2:before {
    position: absolute;
    content: "";
    background-color: #1f4f99;
    width: 4px;
    height: 40px;
    transform: skewX(-45deg);
    top: -10px;
    left: -20px;
}

.second p {
    margin: 0 0 40px;
}

.second a {
    color: #1f4f99;
    text-decoration: underline;
}

.second .num {
    position: relative;
    font-size: 80px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #1f4f99;
    line-height: 1;
    margin: 0 0 10px;
}

.second .num:after {
    position: absolute;
    content: "";
    background-color: #1f4f99;
    width: 2px;
    height: 38px;
    transform: skewX(-45deg);
    bottom: -10px;
    left: 90px;
}

.objWrap .inner {
    display: flex;
}

.objWrap .inner .text {
    margin-right: 60px;
    width: 60%;
    font-size: 18px;
}

.objWrap .inner .text p {
    margin-bottom: 30px;
}

.objWrap .inner .photo {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 0 calc(50vw - 50%);
    position: relative;
    z-index: -1;
}

.objWrap .inner .photo:before {
    position: absolute;
    top: 0;
    left: 30%;
    background-color: #E7EEFA;
    width: 100%;
 height: 160px;
    content: "";
    z-index: -2;
}

.objWrap .inner .photo img {
    position: relative;
    top: -100px;
}

.faqSrv p.lead {
    margin: 0 0 20px;
    padding: 10px 10px 10px 106px;
    font-size: 24px;
    font-weight: 500;
    background: url(../image/icon_truck.png) no-repeat 0 14px;
    background-size: 60px;
    color: #0857cf;
    position: relative;
    text-shadow: 0 0 1px #0857cf;
}

.faqSrv p.lead:before {  
  content: "";
  position: absolute;
  left: 70px;
  width: 10px;
  height: 10px;
  top: 30px;
  background: #D8E4F8;
  border-radius: 50%;
}

.faqSrv p.lead:after {
  content: "";
  position: absolute;
  left:84px;
  width: 16px;
  height: 16px;
  top: 20px;
  background: #D8E4F8;
  border-radius: 50%;
}

.faqSrv p.lead span {
    position: relative;
}

.faqSrv p.lead span:before {
    position: absolute;
    width: 100%;
    height: 12px;
    content: "";
    background-color: #FF3;
    z-index: -1;
    bottom: 0;
}

.faqSrv .qaList {
    margin: 0 0 40px;
}

.faqSrv .qaList .title .title-q {
    background-color: #1f4f99;
 padding: 20px 24px;
    color: #FFF;
    font-weight: 500;
    font-size: 20px;
}

.faqSrv .qaList .title .title-text {
    padding: 22px 65px 22px 24px;
    width: 100%;
    font-weight: 500;
}

.faqSrv .qaList span {
    display: inline-block;
}

.faqSrv .qaList .inner {
    display: flex;
    align-items: start;
}

.faqSrv .qaList .title-a {
 display: inline-block;
    font-weight: 500;
    font-size: 20px;
 padding: 20px 24px;
    background-color: #E7EEFA;
    color: #1f4f99;
}

.answer-text {
                    display: block;
                    padding: 20px 60px 20px 20px;
                    line-height: 1.8;
                    background-color: #FFF;
                    width: 100%;
                }

.faqSrv .qaList dt {
    background-color: #F3F2F1;
    /*cursor: pointer;
    background: url(../image/plus.png) #F3F2F1 no-repeat 98% center;*/
}

.faqSrv .qaList dd {
    /*display: none;*/
}

.faqSrv .qaList ul {
    margin: 0 80px;
    display: flex;
}

.faqSrv .qaList ul li {
    margin: 0 20px 0 0;
}

.faqSrv2 {
    display: flex;
    justify-content: space-between;
}

.faqSrv2 div {
    width: 46%;
    display: flex;
    flex-direction: column;
}

.faqSrv2 div h3.lead {
    margin: 0 0 20px;
    padding: 10px 10px 10px 106px;
    font-size: 24px;
    font-weight: 500;
    background: url(../image/icon_truck.png) no-repeat 0 14px;
    background-size: 60px;
    color: #0857cf;
    position: relative;
    text-shadow: 0 0 1px #0857cf;
    line-height: 1.4;
}

.faqSrv2 div h3.lead:before {  
  content: "";
  position: absolute;
  left: 70px;
  width: 10px;
  height: 10px;
  top: 30px;
  background: #D8E4F8;
  border-radius: 50%;
}

.faqSrv2 div h3.lead:after {
  content: "";
  position: absolute;
  left:84px;
  width: 16px;
  height: 16px;
  top: 20px;
  background: #D8E4F8;
  border-radius: 50%;
}

.faqSrv2 div p.text {
    /*flex-grow: 1;*/
}

.faqSrv2 div.btn {
    width: 390px;
    margin-top: 10px;
}

.wrap-content__page.page-service .inner #service00 h2 {
    font-size: 40px;
    color: #1f4f99;
    margin-bottom: 30px;    
}

.servicePoint {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.servicePoint .image {
    width: 500px;
    padding: 20px;
    position:relative;
    background: linear-gradient(to bottom, #14126F 70%, #00A0E9);
}

.servicePoint .image:before{
    position: absolute;
    content: "";
    background-image: url(../image/point.png);
    background-size: 100px;
    width: 100px;
    height: 100px;
    top: -20px;
    left: -40px;
    transform: rotate(-12deg);
}

.servicePoint .image img {
    max-width: 100%;
    height: auto;
}

.servicePoint .text {
    width: 460px;
}

.servicePoint .text h3 {
    color: #00A0E9;
    font-size: 20px;
    margin-bottom: 24px;
}

.servicePoint .text .kaiketu {
    display: flex;
    align-items: center;
}

.servicePoint .text .kaiketu img {
    width: 140px;
    height: auto;
}

.servicePoint .text .kaiketu p {
    background-color: #EE784B;
    padding: 10px 20px;
    position:relative;
    color: #FFF;
    border-radius: 10px;
    margin-left: 20px;
    margin-top: -20px;
}

.servicePoint .text .kaiketu p:before {
 content: "";
 position: absolute;
 top: 50%;
 left: -20px;
 margin-top: -10px;
 border: 10px solid transparent;
 border-right: 16px solid #EE784B;
}

.servicePoint .text .kaiketu2 {
    margin: -60px 0 0;
    padding: 80px 20px 20px;
    background-color: #EE784B;
    border-radius: 10px;
}

.servicePoint .text .kaiketu2 ul li {
    color: #FFF;
    background: url(../image/check.png) no-repeat 0 2px;
    background-size: 20px;
    margin: 0 0 4px;
    padding: 0 0 0 24px;
}

.phanloai p{
    margin: 20px 0px 0px;
    
}
.phanloai li{
    list-style: circle;
    margin-left: 30px;
    font-weight: bold; 
}

.btn {
    margin: 0 0 60px;
}

.btn a {
    display: block;
    padding: 13px 14px;
    border: 2px solid #1f4f99;
    background: url(../image/arrow-right-icon.png) #1f4f99 no-repeat 90% center;
    background-size: 27px;
    color: #FFF;
    opacity: 1;
    text-decoration: none;
}

.btn a:hover {
    background: url(../image/arrow-right-icon-02.png) #FFF no-repeat 90% center;
    background-size: 27px;
    color: #1f4f99;
}
/*contact--------------------------------------------------*/
.wrap-content__page.page-contact .inner {
    width: 1100px;
    margin: 0 auto;
}

.contactForm table {
    width: 100%;
    margin: 0 0 40px;
    border: 4px solid #DDD;
}

.contactForm table th {
    text-align: left;
    font-weight: 400;
    padding: 32px 20px;
    width: 30%;
    border-bottom: 1px dotted #CCC;
    font-weight: bold;
}

.contactForm table th .hs {
    display: inline-block;
    width: 60px;
    text-align: center;
    background-color: #1f4f99;
    color: #FFF;
    margin-left: 8px;
    font-size: 14px;
}

.contactForm table td {
    padding: 32px 20px;
    border-bottom: 1px dotted #CCC;
}

.contactForm table td .note {
    display: block;
    margin-top: 4px;
    font-size: 14px;
}

.contactForm table tr:nth-child(2n) {
    background-color: #EEE;
}

.contactForm table td input[type="text"] {
 font-family: 'Noto Sans JP', "ăƒ’ăƒ©ă‚®ăƒè§’ă‚´ ProN W3", "Hiragino Kaku Gothic ProN", "ăƒ¡ă‚¤ăƒªă‚ª", Meiryo, "ï¼­ï¼³ ï¼°ă‚´ă‚·ăƒƒă‚¯", "MS P Gothic", sans-serif;
    font-size: 16px;
    padding: 8px;
    width: 50%;
    box-shadow: inset 1px 1px 3px rgb(0 0 0 / 7%);
    border: 1px solid #CCC;
}

.contactForm table td input.l[type="text"] {
    width: 100%;
    box-shadow: inset 1px 1px 3px rgb(0 0 0 / 7%);
    border: 1px solid #CCC;
    padding: 8px;
}

.contactForm table td input.s[type="text"] {
    width: 10%;
    box-shadow: inset 1px 1px 3px rgb(0 0 0 / 7%);
    border: 1px solid #CCC;
    padding: 8px;
    margin: 0 4px 0 0;
}

.contactForm table td input.zip[type="text"],
.contactForm table td input.zip {
    width: 20%;
    margin: 0 0 4px 4px;
    box-shadow: inset 1px 1px 3px rgb(0 0 0 / 7%);
    border: 1px solid #CCC;
    padding: 8px;
 font-family: 'Noto Sans JP', "ăƒ’ăƒ©ă‚®ăƒè§’ă‚´ ProN W3", "Hiragino Kaku Gothic ProN", "ăƒ¡ă‚¤ăƒªă‚ª", Meiryo, "ï¼­ï¼³ ï¼°ă‚´ă‚·ăƒƒă‚¯", "MS P Gothic", sans-serif;
    font-size: 16px;
}

.contactForm table td textarea {
 font-family: 'Noto Sans JP', "ăƒ’ăƒ©ă‚®ăƒè§’ă‚´ ProN W3", "Hiragino Kaku Gothic ProN", "ăƒ¡ă‚¤ăƒªă‚ª", Meiryo, "ï¼­ï¼³ ï¼°ă‚´ă‚·ăƒƒă‚¯", "MS P Gothic", sans-serif;
    font-size: 16px;
    padding: 8px;
    width: 100%;
    display: block;
    height: 160px;
    border: 1px solid #CCC;
    box-shadow: inset 1px 1px 3px rgb(0 0 0 / 7%);
}

.contactForm .mw_wp_form table td .error {
color: #FF6F6F;
}

.formBtn {
    text-align: center;
}

.formBtn input[type="submit"] {
    padding: 8px 20px;
 font-family: 'Noto Sans JP', "ăƒ’ăƒ©ă‚®ăƒè§’ă‚´ ProN W3", "Hiragino Kaku Gothic ProN", "ăƒ¡ă‚¤ăƒªă‚ª", Meiryo, "ï¼­ï¼³ ï¼°ă‚´ă‚·ăƒƒă‚¯", "MS P Gothic", sans-serif;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
    width: 150px;
    border-radius: 10px;
    border: none;
}

.formBtn input[type="submit"]:hover{
    background-color: rgb(91, 91, 237);
}
.mwform-radio-field {
margin-right: 20px;
}

.mw_wp_form_confirm .mailcheck {
display: none;
}

/*contact--------------------------------------------------*/
