@charset "UTF-8";

body {
    font-family: 'Noto Sans JP', sans-serif;
}

img {
    vertical-align: middle;
}

/*-- header --*/
#siteHeader{
    margin: 35px 0;
}
#siteHeader .l-wrapper{
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    align-items: center;
}
#headerLogo h1{
    margin: 0;
    margin-left: 50px;
    /* ▼ヘッダーの余白調整のために追加 */
    line-height: 1;
}
.global-menu{
    margin-right: 35px;
}
.global-menu a{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 0 15px;
}
.global-menu a:hover{
    color: #b4332c;
}
.nav-last{
    padding-right: 0;
}

#siteMain {
    padding: 2rem 0;
}

/*-- scroll --*/
#scroll{
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    opacity: 0;
    transition: all 300ms ease;
}

/*-- top page --*/
/*-- トップ画像 --*/
.top-image{
    width: 87.5%;
    position: relative;
}
.top-image img{
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    width: 100%;
    /* margin-bottom: 70px; */
}
.top-image p{
    position: absolute;
    bottom: 110px;
    right: -12.5%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 72px;
    line-height: 90px;
    color: #11399a;
    text-decoration: underline;
    text-align: right;
    text-shadow: 1px 1px 3px #e7e7e7;
}
.image-slide {
    margin: 0;
    padding-left: 0;
}

#companyPageCover.top-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
    border-radius: 0 25px 25px 0;
}
#companyPageCover.top-image img {
    border-radius: 0;
    margin: 0;
}

/* ステートメント */
#statement {
    width: 100%;
    margin: 0 auto;
    padding: 20px 50px 50px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 1.25rem;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#statement.bgimg0 {
    background-image: url(../images/top/helicopter-old-yellow.png);
}
#statement.bgimg1 {
    background-image: url(../images/top/helicopter-new.png);
}
#statement.bgimg2 {
    background-image: url(../images/top/hover.png);
}

/*-- 見出し --*/
.title{
    border: #b4332c solid 3px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    margin-bottom: 50px;
    /* margin-right: 50px; */
}
.title.mr50 {
    margin-right: 50px;
}
.title h2{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    text-transform: capitalize;
    color: #11399a;
    margin: 15px 0;
    margin-left: 100px;
}
.square{
    background-color: #b4332c;
    margin: 0;
	width: 36px;
	height: 78px;
	transform: skewX(-25deg);
}
.deco-1{
    position: absolute;
    top: -3px;
    left: 30px;
}
.deco-2{
    position: absolute;
    top: -3px;
    left: -20px;
}

/*-- top-service --*/
.service{
    margin: 0 50px 70px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service--inner{
    width: 48%;
    box-sizing: border-box;
    margin-bottom: 50px;
}
.service h3{
    color: #11399a;
    margin: 15px 0 5px 0;
    font-size: 21px;
}
.service p{
    color: #000;
    margin: 0;
}
/* .service-button{
    position: relative;
    border: rgba(17, 57, 154, 0) solid 2px;
    box-sizing: border-box;
    border-radius: 5px;
} */
.service-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    overflow: hidden;
    border: 2px solid rgba(17, 57, 154, 0);
    border-radius: 5px;
}
.service-button:hover{
    border: rgba(17, 57, 154, 1) solid 2px;
    box-sizing: border-box;
    transition: 300ms ease;
}
.service-button img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
    /* object-fit: cover; */
    /* border-radius: 3px; */
}
.service-button div{
    position: absolute;
    background-color: #11399a;
    width: 50px;
    height: 100%;
    top: 0;
    right: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background-image: url(../images/top/next.svg);
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: center center;
}

/*-- top news --*/
/* .news-title{
    margin-bottom: 30px;
} */
#topNews{
    margin: 0 50px;
    padding: 20px 0;
    background-image: url(/media/001/202211/news-bg.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    border-radius: 5px;
}
#topNews ul{
    list-style: none;
    padding: 0;
}
.topNews--inner{
    margin: 30px 0;
}
.topNews--inner a{
    color: #000;
}
.topNews--inner a:hover{
    color: #b4332c;
}
.topnews-flex{
    display: flex;
    flex-direction: column;
}
.topnews-left{
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 5px;
}
.topnews-category{
    margin: 0;
    margin-right: 10px;
}
.topnews-time{
    margin: 0;
    padding-right: 1em;
}
.topnews-right{
    top: -3px;
    left: 200px;
}
.topnews-right p{
    margin: 0;
    font-weight: bolder;
}

/*-- banner --*/
#banner .l-wrapper{
    display: flex;
    justify-content: center;
    /* margin-top: 100px; */
    margin-bottom: 100px;
}
.banner-wrapper{
    width: 34%;
    margin: 20px;
    border-radius: 5px;
}
.banner-img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
    border-radius: 10px;
}
.banner-under{
    margin-top: 100px;
}
#banner .l-wrapper a{
    display: block;
    border-radius: 10px;
    position: relative;
}
.banner-wrapper a::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 57, 154, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    border-radius: 10px;
}
.banner-wrapper a:hover::after{
    background-color: rgba(17, 57, 154, 0);
    transition: 300ms;
}
.banner-text{
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: 5;
}
.banner-text h3{
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-family: Arial, Helvetica, sans-serif;
}
.banner-text p{
    margin: 0;
    color: #fff;
    font-size: 21px;
    margin-top: -10px;
}
.banner-view{
    display: flex;
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 5;
}
.banner-view p{
    color: #fff;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.banner-view img{
    width: 18px;
    height: auto;
    margin-left: 10px;
}


/*-- service page --*/
/*-- service-main --*/
.service-main{
    display: flex;
    justify-content: space-between;
}
.service-main--inner{
    width: 74%;
    /* margin-right: 50px; */
}
.service-main--inner .title{
    margin-right: 0;
}
/* .service-img img{
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-bottom: 30px;
    width: 100%;
} */
#pageCover {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 0 25px 25px 0;
}
.service-img img {
    width: 100%;
    height: auto;
}
.img-second{
    display: flex;
    justify-content: space-between;
    margin: 40px 0 40px 50px;
}
.img-second--innner{
    width: 50%;
}
.second-1{
    margin-right: 10px;
}
.second-2{
    margin-left: 10px;
}
.img-second--innner img{
    border-radius: 10px;
    width: 100%;
}
/* .service-main--inner p{
    margin: 20px 20px 20px 60px;
} */
/* .service-main--inner p{
    margin: 20px 0 20px 50px;
    font-size: 15px;
} */

.service-contct{
    background-color: #e7e7e7;
    margin-left: 50px;
    margin-bottom: 70px;
    padding: 50px 70px;
    border-radius: 10px;
}
.service-contct p{
    text-align: left;
    color: #11399a;
    font-weight: bolder;
    font-size: 19px;
    margin: 0 auto;
}

.service-article{
    margin: 50px 0 100px 50px;
    /* margin-left: 50px;
    margin-bottom: 100px; */
}
.service-article h3{
    border-bottom: #11399a solid 2px;
    display: inline;
    font-size: 21px;
    color: #11399a;
    margin: 0;
    padding-bottom: 5px;
}
.service-article ul{
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.service-article li{
    border-bottom: #91a9d7 solid 1px;
}
/* .service-article li:last-child{
    border-bottom: none;
} */
.service-article a{
    display: block;
    color: #000;
}
.service-article a:hover{
    color: #b4332c;
    background-color: #fffafa;
}
.service-article-inner{
    display: flex;
    align-items: center;
}
.service-article-left{
    display: flex;
    margin: 30px;
}
.service-article-left p{
    margin: 0;
    font-size: 12px;
}
.service-article-right{
    margin: 30px 0;
}
.service-article-right p{
    margin: 0;
    font-weight: bolder;
}

/*-- service menu --*/
.service-menu{
    width: 18%;
    margin-right: 50px;
}
.service-menu--inner{
    background-color: #fff;
    /* border: #11399a solid 1px;
    border-radius: 10px;
    margin-right: 100px; */
    text-align: center;
    width: 100%;
    padding-bottom: 2rem;
}
.service-menu-title{
    background-color: #11399a;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
}
.service-menu--inner h3{
    margin: 0;
    color: #fff;
    font-size: 15px;
    padding: 15px 0;
}
.service-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-menu li{
    font-size: 12px;
    text-align: left;
    padding: 20px 10px;
    margin-left: 5px;
    margin-right: 5px;
    border-bottom: 1px solid #91a9d7;
}
.service-menu li:last-child{
    border-bottom: none;
}
.service-menu li a{
    color: #000;
    display: block;
}
.service-menu li a:hover{
    color: #b4332c;
}


/*-- news page --*/
.news-title{
    margin: 0 0 0 42px;
}
.news-title div{
    display: flex;
}
.news-title p{
    margin: 0;
    margin-right: 10px;
    color: #11399a;
    font-size: 12px;
}
.news-title h3{
    margin: 0;
    color: #11399a;
    font-size: 21px;
}

.news-text{
    margin-bottom: 50px;
}

/*-- news-list --*/
.list-category{
    margin: 0 50px;
    margin-bottom: 50px;
}
.list-category ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.list-category li{
    margin-right: 10px;
    width: 20%;
}
.list-category li:last-child{
    margin-right: 0;
}
.list-category a{
    display: block;
    color: #11399a;
    background-color: #fff;
    border: #11399a solid 1px;
    border-radius: 5px;
}
.list-category a:active{
    color: #fff;
    background-color: #11399a;
}
.list-box p{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 15px;
    text-align: center;
    margin: 14px 0;
}

.list{
    margin: 0 50px;
}
.list-top{
    border-bottom: #11399a solid 1px;
    padding-bottom: 30px;
}
.list-top a{
    display: block;
    position: relative;
    margin: 0 50px;
    color: #11399a;
}
.list-top a::after{
    content: url(../images/next2.svg);
    position: absolute;
    width: 15px;
    height: 10px;
    top: 50%;
    right: 0;
}
.float{
    float: left;
    margin: 6px 50px 30px 0;
    border-radius: 5px;
}
.list-time{
    margin: 0;
    font-size: 12px;
    width: calc(100% - 200px);
}
.list-top h3{
    margin: 0;
    width: calc(100% - 100px);
    font-size: 21px;
}
.summary-text{
    margin: 10px 0 0;
    display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 2;
    width: calc(100% - 200px);
    color: #000;
    font-size: 15px;
}
.list-inner{
    padding: 30px 50px;
    padding-left: 65px;
    border-bottom: #11399a solid 1px;
}
.list-inner a{
    display: flex;
    position: relative;
    align-items: center;
    color: #11399a;
}
.list-inner a::after{
    content: url(../images/next2.svg);
    position: absolute;
    width: 15px;
    height: 10px;
    top: 35%;
    right: 0;
}
.list-inner .img-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 75px;
    border-radius: 50%;
    margin-right: 65px;
    overflow: hidden;
}
.list-inner img{
    width: auto;
    height: 75px;
}
.list-inner-text{
    width: 100%;
}
.list-inner-text p{
    margin: 0;
    font-size: 12px;
}
.list-inner-text h3{
    margin: 0;
    padding-right: 30px;
    font-size: 16px;
}


/*-- view more --*/
.view-rigft{
    display: flex;
    justify-content: flex-end;
}
.view{
    width: 120px;
    height: 31px;
}
.view a{
    color: #11399a;
}
.view a:hover{
    color: #fff;
    background-color: transparent;
    transition: none;
}
.view--inner{
    box-sizing: border-box;
    background-color: #fff;
    border: #11399a solid 1px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.view--inner:hover{
    background-color: #11399a;
    transition: 300ms;
}
.view--inner p{
    margin: 0;
    padding-right: 5px;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
}
.next-img{
    background-repeat: no-repeat;
    background-image: url(../images/next_1.svg);
    background-position: center center;
    display: flex;
    align-items: center;
}
.next-img img{
    width: 9px;
    height: 7px;
}
.view:hover img{
    transition: 300ms;
    opacity: 0;
}

/*-- contact --*/
.contact-section{
    position: relative;
    z-index: 20;
}
#contact .l-wrapper{
    justify-content: center;
    background-color: #fff;
    border: #11399a solid 2px;
    width: 83%;
    margin-bottom: -80px;
    border-radius: 5px;
}
.contact--inner{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact--inner h2{
    font-size: 18px;
    color: #11399a;
    margin: 65px 0 65px 50px;
}
.mail-line{
    width: 1px;
    height: 100px;
    margin: 30px 35px;
    background-color: #11399a;
}
.tell-box{
    color: #11399a;
    margin: 54px 0;
}
.tell{
    font-size: 18px;
    font-weight: bolder;
}
.tell p{
    margin: 0;
}
.tell-time{
    font-size: 12px;
}
.tell-time p{
    margin: 0;
}
.mail-form{
    background: url(../images/mail-form2.svg) no-repeat;
    margin: 53px 50px 44px 40px;
}
.mail-form{
    display: inline-block;
}
.mail-form:hover{
    background-color: transparent;
}
.mail-form:hover img{
    opacity: 0;
    transition: 300ms;
}

/*-- footer --*/
#siteFooter{
    background-color: #e7e7e7;
    z-index: 1;
}
#siteFooter--inner{
    padding: 145px 100px 50px 100px;
    display: flex;
    justify-content: space-between;
}
.footer-left a {
    display: inline-block;
}
.footer-left img{
    margin-bottom: 10px;
}
.footer-left p{
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0;
}
.footer-left--inner{
    display: flex;
}
.footer-left--inner p{
    padding-right: 13px;
}
.footer-right{
    display: flex;
    margin-left: 10px;
}
.footer-right ul{
    padding: 0;
    margin: 0;
}
.footer-right li{
    list-style: none;
}
.footer-right--inner1 p{
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
.footer-right--inner1 li{
    padding-left: 10px;
    margin: 10px 0;
    font-size: 14px;
}
.footer-right--inner1 a{
    color: #515151;
}
.footer-right--inner1 a:hover{
    color: #b4332c;
}
.footer-right--inner2{
    margin-left: 70px;
}
.footer-right--inner2 li{
    margin: 0;
    margin-bottom: 23px;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
.footer-right--inner2 a{
    color: #000;
}
.footer-right--inner2 a:hover{
    color: #b4332c;
}
.copyright{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    text-align: center;
    margin: 0;
    padding-bottom: 20px;
}


.global-menu, .menu-list {
    text-transform: capitalize;
}
.service-menu-title {
    border-top: 1px solid #11399a;
    border-right: 1px solid #11399a;
    border-left: 1px solid #11399a;
}
.service-menu ul {
    border-right: 1px solid #11399a;
    border-bottom: 1px solid #11399a;
    border-left: 1px solid #11399a;
    border-radius: 0 0 10px 10px;
}

.article-body {
    width: 90%;
    margin: 0 auto;
    padding-top: 10px;
    font-size: 16px;
}
.article-body h2 {
    display: block;
    font-size: 21px;
}
.article-body h3 {
    display: inline-block;
    font-size: 18px;
}
.article-body h2, .article-body h3 {
    padding-bottom: 5px;
    color: #11399a;
    border-bottom: 2px solid #11399a;
}
.article-body p {
    text-align: justify;
}

[class*=column-image], [class*=column-media], [class*=column-eximage] {
    margin-top: 20px;
}
[class*=column-image] img, [class*=column-media] img, [class*=column-eximage] img {
    border-radius: 6px;
}

.basic-table {
    width: 100%;
    margin: 20px 0 40px;
    border-collapse: collapse;
}
.basic-table th {
    width: 18%;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}
.basic-table th, .basic-table td {
    padding: 20px;
    border-bottom: 1px dotted #91a9d7;
}

p.caption {
    font-size: .875rem;
    text-align: center;
}

@media screen and (max-width:1200px) {
    .title {
        margin-right: 20px;
    }
}