@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');


/*!
Theme Name: ARVI THEME
*/


/* common-css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

input::placeholder{
	color: #ccc;
}
input::-ms-input-placeholder{
	color: #ccc;
}
input:-ms-input-placeholder{
	color: #ccc;
}

body{
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: #333;
    position: relative;
    padding-top: 77px;
    font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body.home .wrap,
.wrap{
    max-width: 870px;
    margin: 0 auto;
}

a{
    transition: .4s;
    text-decoration: none;
}
a:hover{
    opacity: .6;
    text-decoration: none;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}


/* FADEIN */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 800ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 800ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    transition : all 800ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 800ms;
    }

.fadeino {
    opacity : 0;
    transition : all 800ms;
    }

.ts1 {
    transition-delay: 300ms;
}

.ts2 {
    transition-delay: 600ms;
}

.ts3 {
    transition-delay: 900ms;
}

.ts4 {
    transition-delay: 1200ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

.fadeino.scrollin {
    opacity : 1;
}
@supports (-ms-ime-align:auto) {
    .fadein {
        opacity : 1;
        transform : inherit;
        transition : inherit;
    }
    .fadeinr {
        opacity : 1;
        transform : inherit;
        transition : inherit;
    }
    .fadeinb {
        opacity : 1;
        transform : inherit;
        transition : inherit;
        }

    .fadeinl {
        opacity : 1;
        transform : inherit;
        transition : inherit;
        }

    .fadeino {
        opacity : 1;
        transition : inherit;
        }

    .fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
        opacity : 1;
        transform : inherit;
        }

    .fadeino.scrollin {
    opacity : 1;
    }
}


/* COMMON */
.contact-btn a{
    color: #fff;
    background: linear-gradient(90deg, #566BB4 0%, #01A3A7 100%);
    border-radius: 8px;
    font-weight: bold;
    display: block;
    width: 230px;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


/* HEADER */
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    padding: 14px 70px 14px 120px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
#header .header-logo{
    margin-right: 57px;
}
#header .header-logo img{
    width: 80px;
}
#header .header-r{
    opacity: 0;
    transition: .4s;
    transition-delay: .4s;
}
body.loaded #header .header-r{
    opacity: 1;
}
#header .header-l,
#header .header-r,
#header .header-menu ul,
#header .lang-select,
#header .lang-select ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#header .header-menu ul li:not(:last-child){
    margin-right: 35px;
}
#header .header-menu ul li a{
    font-weight: bold;
    position: relative;
}
#header .header-menu ul li{
    transform: translateY(20px);
    transition: .4s;
    opacity: 0;
}
#header .header-menu ul li:nth-of-type(1){
    transition-delay: .1s;
}
#header .header-menu ul li:nth-of-type(2){
    transition-delay: .2s;
}
#header .header-menu ul li:nth-of-type(3){
    transition-delay: .3s;
}
#header .header-menu ul li:nth-of-type(4){
    transition-delay: .4s;
}
body.loaded #header .header-menu ul li{
    transform: translateY(0);
    opacity: 1;
}
#header .header-menu ul li a::before{
    content: "";
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -6px;
    height: 4px;
    width: 0;
    background-color: #3465B3;
    transition: .4s;
}
#header .header-menu ul li a:hover{
    opacity: 1;
}
/* #header .header-menu ul li a:hover::before, */
#header .header-menu ul li a.current::before{
    width: 100%;
}
#header .header-menu ul li a.current{
    pointer-events: none;
}
#header .lang-select{
    margin-right: 35px;
}
#header .lang-select .icon-img{
    margin-right: 12px;
    line-height: 1;
}
#header .lang-select .icon-img img{
    vertical-align: middle;
}
#header .lang-select ul li{
    line-height: 1.4;
}
#header .lang-select ul li:first-child{
    border-right: 1px solid #C4C4C4;
    margin-right: 10px;
    padding-right: 10px;
}
#header .lang-select ul li a{
    color: #C4C4C4;
    line-height: 1.4;
    text-transform: uppercase;
    display: inline-block;
    padding: 0;
    font-weight: bold;
}
#header .lang-select ul li.wpml-ls-current-language a{
    font-weight: bold;
    color: #333;
}
#header .wpml-ls-legacy-list-horizontal{
    padding: 0;
    border: none;
    position: relative;
    top: -1px;
}


/* DRAWER */
#drawer{
    display: none;
}
.nav-toggle{
    display: none;
}


/* FOOTER */
.otgs-development-site-front-end{
    display: none;
}
#footer{
    position: relative;
}
#footer .footer-top{
    background-color: #000;
    padding: 40px 0;
}
#footer .footer-top ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
#footer .footer-top ul li a{
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}
#footer .footer-top ul li:not(:last-child){
    margin-right: 35px;
}
#footer .footer-bottom{
    position: relative;
    padding: 20px 0 80px;
    background-color: #fff;
}
#footer .footer-bottom .copyright{
    text-align: center;
    font-size: 12px;
}
#footer .footer-bottom .logo-img{
    line-height: 1;
    position: absolute;
    right: 0;
    bottom: 30px;
}
#footer .footer-bottom .logo-img img{
    width: 220px;
}


/* TOP */
.mv{
    height: calc(100vh - 77px);
    position: relative;
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.mv .mv-bg{
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.mv .mv-bg .sp-video{
    display: none;
}
.mv .mv-bg img.ps-ab{
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.mv .mv-bg video{
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv .flex{
    justify-content: space-between;
}
.mv .flex .box{
    width: 55vh;
    height: 55vh;
    text-align: center;
}
.mv .flex .box.n1{
    margin-right: 35px;
    background-color: rgba(11,84,190,.7);
    color: #fff;
}
.mv .flex .box.n2{
    background-color: rgba(255,255,255,.7);
}
.mv .flex .box .item{
    width: 100%;
}
.mv .flex .box.n1 .item .logo-img{
    width: 71%;
}
.mv .flex .box.n1 .item .logo-img img{
    transform: translateX(-5px);
}
.mv .flex .box.n2 .item .logo-img{
    width: 53%;
}
.mv .flex .box .item .logo-img{
    margin: 0 auto 35px;
}
.mv .flex .box .item .logo-img img{
    width: 100%;
}
.mv .flex .box .text{
    font-weight: bold;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv .flex .box a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    cursor: pointer;
}
.mv .flex .box a:hover{
    opacity: 1;
}
.mv .flex .box a:hover .arrow-img{
    bottom: 20px;
}
.mv .flex .box .arrow-img{
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 37px;
    transition: .4s;
}
.mv .mv-news-box{
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,.5);
}
.mv .mv-news-box a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 18px 30px;
    font-weight: bold;
    background-color: rgba(0,0,0,.5);
}
.mv .mv-news-box a:hover{
    opacity: 1;
    background-color: #000;
}
.mv .mv-news-box a:hover .arrow-img{
    right: 20px;
}
.mv .mv-news-box .arrow-img{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 30px;
    line-height: 1;
    transition: .4s;
}
.mv .mv-news-box .text.top{
    margin-right: 20px;
}
.mv .mv-news-box .text:not(.top){
    text-decoration: underline;
    max-width: 600px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home-sec01{
    text-align: center;
    background-color: rgba(81,134,214,.6);
    color: #fff;
    position: relative;
    padding: 80px 0;
}
.home-sec01 .text.top{
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 60px;
}
.home-sec01 .text:not(.top){
    letter-spacing: 0.2em;
    line-height: 3;
}
.home-sec02{
    position: relative;
    background-color: #fff;
}
.home-sec02 .tab-list.fixed{
    position: sticky;
    left: 0;
    width: 100%;
}
.home-sec02 .tab-list{
    z-index: 1;
    position: relative;
}
.home-sec02 .tab-list ul{
    display: flex;
    flex-wrap: wrap;
}
.home-sec02 .tab-list ul li{
    line-height: 1;
    width: 50%;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: .4s;
}
.home-sec02 .tab-list ul li.current{
    pointer-events: none;
}
.home-sec02 .tab-list.fixed ul li{
    height: 70px;
}
.home-sec02 .tab-list ul li.n1{
    background-color: #2058AC;
}
.home-sec02 .tab-list ul li.n2{
    background-color: #fff;
}
.home-sec02 .tab-list ul li img{
    transition: .4s;
}
.home-sec02 .tab-list ul li.n1 img{
    width: 202px;
}
.home-sec02 .tab-list ul li.n2 img{
    width: 137px;
}
.home-sec02 .tab-list.fixed ul li.n1 img{
    width: 101px;
}
.home-sec02 .tab-list.fixed ul li.n2 img{
    width: 69px;
}
.home-sec02 .tab-content{
    padding: 80px 0 114px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.home-sec02 .tab-content:not(.show){
    display: none;
}
.home-sec02 .tab-content img.ps-ab{
    top: 0;
    right: 0;
    z-index: -1;
    will-change: transform;
    transition: transform .1s;
}
.home-sec02 .tab-content img.ps-ab.fixed{
    position: fixed;
}
.home-sec02 .tab-content.c-01{
    color: #fff;
    background-color: #2058AC;
}
.home-sec02 .tab-content .box:not(:last-child){
    margin-bottom: 80px;
}
.home-sec02 .tab-content .text-box{
    text-align: center;
    margin-bottom: 30px;
}
.home-sec02 .tab-content .text-box .text.top{
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 0.2em;
}
.home-sec02 .tab-content .text-box .text:not(.top){
    line-height: 2;
}
.home-sec02 .tab-content .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.home-sec02 .tab-content .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
.home-sec02 .tab-content .img-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home-sec02 .tab-content .img-box .img-box-item{
    width: 31%;
}
.home-sec02 .tab-content .img-box .img-box-item .img img{
    width: 100%;
}
.home-sec02 .tab-content .img-box .img-box-item .caption{
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}
.home-sec02 .tab-content img.shadow{
    box-shadow: 0 4px 100px rgba(0,32,81,.5);
}
.home-sec02 .tab-content .img{
    text-align: center;
}
.home-sec02 .tab-content.c-02 .text-box .text.top{
    color: #06437C;
}
.home-sec02 .tab-content.c-02 .img-box-item .caption{
    color: #06437C;
    margin-bottom: 20px;
}
.home-sec02 .tab-content.c-02 .img-box-item .text{
    letter-spacing: 0.1em;
}
.home-sec02 .tab-content.c-02 .att{
    font-weight: bold;
    color: #06437C;
    margin-top: 15px;
    text-align: center;
}
.home-sec03{
    background-color: #F5F6F7;
    padding: 80px 0 100px;
    position: relative;
}
.home-sec03 .text.top{
    text-align: center;
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
}
.home-sec03 .flex{
    justify-content: center;
}
.home-sec03 .img,
.home-sec03 .text-box{
    width: 50%;
}
.home-sec03 .img{
    text-align: right;
    padding-right: 50px;
}
.home-sec03 .text-box .text{
    line-height: 2;
}
.home-sec03 .contact-btn{
    margin-top: 40px;
}
.home-sec03 .contact-btn a{
    margin: 0 auto;
}


/* PAGE */
.page-mv{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15.6vw;
    z-index: 0;
}
.page-mv .page-title{
    text-align: center;
    color: #fff;
}
.page-mv .page-title span{
    font-size: 32px;
    display: block;
    font-weight: bold;
}
.page-mv video{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}



/* NEWS */
.l-content {
    overflow: hidden
}
@media(min-width: 880px) {
    .l-content {
        background-image: linear-gradient(to right, #fff 0%, #fff 60%, #F3F4F8 60%, #F3F4F8 100%)
    }
}
@media(min-width: 880px) {
    .l-content__inner {
        max-width: 1050px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between
    }
}
.l-archive {
    padding: 0 8% 50px;
    background-color: #FFF
}
@media(min-width: 880px) {
    .l-archive {
        flex: 1;
        padding: 0 40px 100px 0
    }
}
.l-article {
    padding: 0 8% 50px;
    background-color: #FFF
}
@media(min-width: 880px) {
    .l-article {
        flex: 1;
        padding: 0 40px 100px 0
    }
}
.l-sidebar {
    padding: 0;
    background-color: #F3F4F8
}
@media(min-width: 880px) {
    .l-sidebar {
        width: 265px;
        padding: 90px 0 50px 40px;
    }
}
.l-main {
    overflow: hidden
}
.c-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #FFF;
    color: #000;
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 3px 0 0 3px;
    width: 85%
}
.c-input::placeholder {
    color: rgba(0, 0, 0, 0.3)
}
.c-submit {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0 3px 3px 0;
    width: 15%;
    background: url(img/common/icon-search.png) no-repeat center/auto #334482;
    border: none
}

.p-side__block {
    padding: 50px 8%;
    border-bottom: 2px solid #334482
}
@media(min-width: 880px) {
    .p-side__block {
        padding: 0 0 38px;
        border: none;
        position: relative
    }
    .p-side__block::after {
        content: "";
        width: 300%;
        height: 2px;
        background-color: #334482;
        position: absolute;
        bottom: 0;
        left: -40px;
    }
}
.p-side__block:nth-last-of-type(1)::after {
    content: none
}
.p-side__title {
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: 0.15em;
    font-weight: bold;
}
@media(min-width: 880px) {
    .p-side__title {
        margin-top: 25px;
    }
}
.p-side__title span {
    font-weight: normal;
    font-size: 16px;
    display: block;
    letter-spacing: 0
}
.p-side__list {
    margin-top: 20px;
}
@media(min-width: 880px) {
    .p-side__list {
        margin-top: 40px;
    }
}
.p-side__list li a {
    display: block;
    border-top: 1px dashed rgba(0, 0, 0, 0.3);
    font-size: 13px;
    font-weight: normal;
    padding: 15px 0;
    color: #000
}
@media(min-width: 880px) {
    .p-side__list li a {
        font-size: 16px;
        padding: 22px 0
    }
    .p-side__list li a:hover {
        text-decoration: underline
    }
}
.p-side__column {
    margin: 20px 0 0
}
.p-side__column li a {
    display: flex;
    overflow: hidden;
    padding: 15px 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.3);
    font-size: 13px;
    color: #000
}
@media(min-width: 880px) {
    .p-side__column li a:hover {
        text-decoration: underline
    }
}
.p-side__column__thumb {
    width: 80px;
    height: 50px;
    position: relative;
    overflow: hidden;
    margin: 0 10px 10px 0;
    border-radius: 4px;
}
.p-side__column__thumb img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}
.p-side__column__title {
    line-height: 1.5;
    font-weight: normal;
    width: calc(100% - 90px);
    font-size: 14px;
}
@media(min-width: 880px) {
    .p-side__column__title {
        font-size: 14px;
    }
}
.p-kv {
    background: url("./img/img_header_map.png") no-repeat top center/auto;
    width: 100%;
    height: 250px;
    padding: 100px 0 0;
    position: relative
}
@media(min-width: 880px) {
    .p-kv {
        height: 320px;
        background-size: 100%;
        padding: 182px 0 0
    }
}
.p-kv__title {
    text-align: center;
    color: #FFF;
    font-size: 32px;
    line-height: 1.5
}
.p-kv__title span {
    display: block;
    font-weight: normal;
    font-size: 16px;
}
@media(min-width: 880px) {
    .p-articleList {
        margin: -17px 0 50px;
    }
}
.p-articleList .no-article{
    margin-top: 80px;
}
.p-articleList__item a {
    display: block;
    color: #000;
    border-bottom: 1px solid #EEE;
    padding: 18px 0
}
@media(min-width: 880px) {
    .p-articleList__item a {
        padding: 60px 0;
        transition: 0.3s
    }
    .p-articleList__item a:hover {
        opacity: .7
    }
    .p-articleList__item a:hover .p-articleList__title {
        text-decoration: underline
    }
}
.p-articleList__head {
    display: flex
}
@media(min-width: 880px) {
    .p-articleList__head {
        margin: 0 0 30px;
    }
}
.p-articleList__thumb {
    width: 100px;
    height: 80px;
    position: relative;
    overflow: hidden
}
@media(min-width: 880px) {
    .p-articleList__thumb {
        width: 200px;
        height: 130px;
    }
}
.p-articleList__thumb img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}
.p-articleList__detail {
    padding-left: 15px;
    flex: 1
}
@media(min-width: 880px) {
    .p-articleList__detail {
        padding-left: 40px;
    }
}
.p-articleList__info {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin: 0 0 10px;
    font-size: 1.20px;
}
@media(min-width: 880px) {
    .p-articleList__info {
        margin: 0 0 10px;
        font-size: 16px;
    }
}
.p-articleList__time {
    margin: 0 10px 0 0;
    font-size: 12px;
}
@media(min-width: 880px) {
    .p-articleList__time {
        margin: 0 19px 0 0;
        font-size: 16px;
    }
}
.p-articleList__cat {
    color: #FFF;
    border-radius: 4px;
    width: 90px;
    height: 22px;
    line-height: 22px;
    background-color: #334482;
    text-align: center;
    font-size: 12px;
}
@media(min-width: 880px) {
    .p-articleList__cat {
        font-size: 13px;
        width: 107px;
        height: 26px;
        line-height: 26px;
    }
}
.p-articleList__title {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
}
@media(min-width: 880px) {
    .p-articleList__title {
        font-size: 20px;
    }
}
.p-articleList__desc {
    display: none;
}
@media(min-width: 880px) {
    .p-articleList__desc {
        display: block;
        line-height: 1.75;
        font-size: 16px;
        font-weight: normal;
    }
}
@media(min-width: 880px) {
    .p-article {
        padding: 38px 0 0;
    }
}
.p-article__title {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 20px;
    font-weight: bold;
}
@media(min-width: 880px) {
    .p-article__title {
        font-size: 30px;
    }
}
.p-article__info {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin: 0 0 20px;
    font-size: 1.20px;
}
@media(min-width: 880px) {
    .p-article__info {
        margin: 0 0 28px;
        font-size: 16px;
    }
}
.p-article__time {
    margin: 0 10px 0 0;
    font-size: 12px;;
}
@media(min-width: 880px) {
    .p-article__time {
        margin: 0 19px 0 0;
        font-size: 16px;
    }
}
.p-article__cat {
    color: #FFF;
    border-radius: 4px;
    width: 90px;
    height: 22px;
    line-height: 22px;
    background-color: #334482;
    text-align: center;
    font-size: 12px;
}
@media(min-width: 880px) {
    .p-article__cat {
        font-size: 13px;
        width: 107px;
        height: 26px;
        line-height: 26px;
    }
}
.p-article__content h2 {
    font-size: 18px;
    line-height: 1.3;
    border-left: 2px solid #334482;
    margin: 60px 0 20px;
    padding: 10px 10px 10px 15px;
    background-color: #F3F4F8;
    font-weight: normal
}
@media(min-width: 880px) {
    .p-article__content h2 {
        font-size: 24px;
        margin: 80px 0 44px;
        padding: 16px 10px 16px 23px;
        font-weight: 500
    }
}
.p-article__content h3 {
    font-size: 16px;
    line-height: 1.3;
    border-bottom: 1px solid #000;
    margin: 60px 0 20px;
    padding: 0 0 12px 10px;
    font-weight: normal
}
@media(min-width: 880px) {
    .p-article__content h3 {
        font-size: 20px;
        margin: 72px 0 34px;
        padding: 0 0 16px 25px;
    }
}
.p-article__content ul {
    margin: 0 0 30px;
}
.p-article__content ul li {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 5px;
    padding: 0 0 0 20px;
    position: relative;
    font-weight: normal
}
@media(min-width: 880px) {
    .p-article__content ul li {
        font-size: 16px;
        padding: 0 0 0 30px;
    }
}
.p-article__content ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #F3F4F8;
    position: absolute;
    top: 5px;
    left: 0
}
@media(min-width: 880px) {
    .p-article__content ul li::before {
        width: 13px;
        height: 13px;
    }
}
.p-article__content ol {
    margin: 0 0 30px;
    counter-reset: item
}
.p-article__content ol li {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 5px;
    padding: 0 0 0 20px;
    position: relative;
    font-weight: normal
}
@media(min-width: 880px) {
    .p-article__content ol li {
        font-size: 16px;
        padding: 0 0 0 30px;
    }
}
.p-article__content ol li::before {
    counter-increment: item;
    content: counter(item) ".";
    position: absolute;
    top: 0;
    left: 0
}
.p-article__content > div{
    max-width: 100%;
}
.p-article__content p {
    font-size: 14px;
    line-height: 1.75;
    font-weight: normal;
    text-align: justify;
    margin: 0 0 30px;
}
@media(min-width: 880px) {
    .p-article__content p {
        font-size: 16px;
    }
}
.p-article__content figure {
    text-align: center;
    margin: 0 0 32px;
}
.p-article__content figcaption {
    font-size: 13px;
    color: #AAA;
    font-weight: normal;
    margin-top: 5px;
}
@media(min-width: 880px) {
    .p-article__content figcaption {
        font-size: 14px;
    }
}
.p-article__content img {
    width: auto;
    height: auto;
    max-width: 100%
}
.p-article__content blockquote p {
    font-size: 1.20px;
    position: relative;
    padding: 0 0 0 17px;
}
.p-article__content blockquote p::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0
}
.p-mainColumn {
    width: 90%;
    max-width: 1010px;
    margin: 0;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 13px;
    border: 1px solid #FFF;
    font-size: 14px;
    color: #FFF;
    font-weight: normal;
    animation-name: fadeColumn;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.84, 0.04, 0.92, 0.46);
    animation-delay: 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 0
}
@media(min-width: 880px) {
    .p-mainColumn {
        bottom: 10vw;
        display: flex;
        padding: 16px 30px 11px;
        font-size: 16px;
    }
}
.p-mainColumn__header {
    display: flex
}
@media(min-width: 880px) {
    .p-mainColumn__header {
        bottom: 10vw;
        width: 200px;
    }
}
.p-mainColumn__cat {
    margin: 0 20px 0 0
}
@media(min-width: 880px) {
    .p-mainColumn__text {
        overflow: hidden;
        flex: 1
    }
}
.p-mainColumn__text span {
    display: block;
    text-align: right;
    background: url("./img/icon_more.png") no-repeat center right/10px;
    padding: 2px 15px 1px 0
}
@media(min-width: 880px) {
    .p-mainColumn__text span {
        float: right
    }
}
.p-mainColumn__text a {
    color: #FFF;
    display: block
}
@keyframes fadeColumn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
.p-spNav {
    position: fixed;
    width: 100%;
    right: -100%;
    top: 0;
    bottom: 0;
    z-index: 10;
    transition: 0.2s
}
.p-spNav.js-active {
    right: 0
}
.p-spNav__inner {
    padding-top: 60px;
    height: 100%;
    background-color: #000
}
.p-spNav__list {
    margin: 0 0 54px;
}
.p-spNav__list li a {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    color: #FFF;
    border-bottom: 1px solid #555
}
.p-spNav__btn {
    height: 60px;
    padding: 0 20px;
}
.p-breadcrumbs {
    font-size: 13px;
    font-weight: normal;
    color: #CCC;
    padding: 10px 0
}
.p-breadcrumbs a {
    color: #334482
}
.p-search {
    display: flex
}
.p-pager {
    margin-top: 50px;
    text-align: center
}
.p-pager span {
    display: inline-block;
    margin: 0 10px;
    text-decoration: underline
}
.p-pager a {
    display: inline-block;
    margin: 0 10px;
}

#modal-content {
    display: none;
    position: fixed;
    z-index: 1001;
    width: 85%;
    margin: 0;
    padding: 32px 0 0;
    box-sizing: border-box;
    background: #FFF;
    max-height: 687px;
    height: 90vh;
    top: 50%;
    transform: translateY(-50%)
}
@media(min-width: 1022px) {
    #modal-content {
        padding: 50px 0 0
    }
}
#modal-content h2 {
    margin: 0 0 10px;
    padding: 0 0 15px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: solid 1px #333
}
@media(min-width: 1022px) {
    #modal-content h2 {
        margin: 0 0 20px
    }
}
#modal-content p {
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.6
}
@media(min-width: 1022px) {
    #modal-content p {
        font-size: 16px;
        line-height: 2
    }
}
#modal-content .close {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #000;
    font-size: 0;
    cursor: pointer
}
#modal-content .close a {
    display: block;
    width: 100%;
    height: 100%
}
#modal-content .close a::before,
#modal-content .close a::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 4%;
    margin: -4% 0 0 -33%;
    background: #FFF;
    content: ""
}
#modal-content .close a::before {
    transform: rotate(-45deg)
}
#modal-content .close a::after {
    transform: rotate(45deg)
}
#modal-content .close-btn {
    position: absolute;
    top: 17px;
    right: 17px
}
#modal-content .contact-btn{
    margin-top: 20px;
}
#modal-content .contact-btn a{
    margin: 0 auto;
}
.p-modal__content {
    padding-bottom: 32px;
    overflow: auto
}
@media(min-width: 1022px) {
    .p-modal__content {
        padding-bottom: 50px
    }
}
#modal-content-inner {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    overflow: auto
}
#modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.5)
}
.icon-arrow {
    margin: 0 10px 0 0;
    position: relative;
    top: 2px
}
.icon-arrow::after {
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    background: url(img/common/arrow.svg) top left no-repeat;
    background-size: contain
}


/* 202302 lp_eng */

.lp_eng .mv .nr{
    width: 100%;
    height: calc(100vh - 77px);
    background: rgba(0, 50, 131, 0.5);
    position: absolute;
    top: 0px;
    left: 0px;
}

.lp_eng .mv .mv-bg {
    pointer-events: none;
    position: fixed;
    top: 77px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.lp_eng .contact-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp_eng .contact-btn a .icon-img{
    display: flex;
    align-items: center;
    margin-right: 6px;
}

.lp_eng .mv-content{
    width: 875px;
    display: flex;
    justify-content: center;
    position: relative;
    height: 100vh;
    height: calc(100vh - 77px);
    align-items: center;
}

.lp_eng .mv .mv-news-box {
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,.5);
    position: absolute;
    bottom: 60px;
    margin: auto;
    text-align: center;
    left: auto;
    right: auto;
    width: 100%;
    display: block;
}

body.home.lp_eng .wrap, .wrap {
    max-width: 946px;
    margin: 0 auto;
}
.lp_eng .home-sec01 {
    padding: 60px 0 60px;
}

.lp_eng .home-sec01 .text.top{
    margin-top: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.lp_eng .home-sec01 .text:not(.top) {
    font-weight: 400;
    font-size: 16px;
    line-height: 33px;
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 36px;

}

.lp_eng .list_of_fuctions{
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
gap: 14px;
width: 946px;
background: rgba(9, 68, 123, 0.7);
}

.lp_eng .list_of_fuctions h3{
    font-weight: 700;
font-size: 28px;
line-height: 41px;
letter-spacing: 0.2em;
margin-bottom: 14px;
}
.lp_eng .list_of_fuctions .rows_top{
    display: flex;
    width: 100%;
}

.lp_eng .list_of_fuctions .rows{
    display: flex;
    width: 50%;
}
.lp_eng .list_of_fuctions .rows li{
    font-weight: normal;
    font-size: 16px;
    line-height: 23px;
    display: flex;
    letter-spacing: 0.2em;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
}
.lp_eng .list_of_fuctions .rows li span{
    width: 25px;
    display: flex;
    justify-content: center;
    margin-right: 5px;
    align-items: center;
}

.lp_eng .list_of_fuctions .rows li img{
    display: flex;
}
.lp_eng .list_of_fuctions .rows li.ls{
    margin-top: 12px;
}
.lp_eng .list_of_fuctions .rows .rows0{
}

.lp_eng .list_of_fuctions .rows .rows1{
}
.lp_eng .list_of_fuctions .rows .rows2{
    display: flex;

}

.lp_eng .list_of_fuctions .rows.rows_sp_last_s {
    display: none;
}

.lp_eng .list_of_fuctions .rows.rows_sp_last {
    display: flex;
}
.lp_eng .list_of_fuctions .rows.rows_sp_last ul{
display: flex;
    flex-wrap: wrap;
}
.lp_eng .list_of_fuctions .rows.rows_sp_last ul li{
width: 50%;
}



.lp_eng .contact-btn-w{
    margin: auto;
    text-align: center;
    width: 100%;
}
.lp_eng .contact-btn-w a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #fff;
    border-radius: 8px;
    font-weight: bold;
    width: 300px;
    text-align: center;
    padding: 11px 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 50px auto 0;
}
.lp_eng .contact-btn-w a .icon-img {
    display: flex;
    align-items: center;
    margin-right: 6px;
}
.lp_eng .contact-btn-w a span {
    background: linear-gradient(90deg, #556CB5 37.39%, #02A4A7 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
font-size: 24px;
line-height: 38px;
}


.lp_eng .home-sec02 .tab-content .text-box .text.top, .home-sec01 .text.top {
    font-size: 28px;
    letter-spacing: 0.2em;
}


.lp_eng .home-sec02 .tab-content .img-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 2.5%;
}

.lp_eng .home-sec02 .tab-content .img-box .img-box-item {
    width: 47%;
    margin-bottom: 80px;
}
.lp_eng .home-sec02 .tab-content .img-box .img-box-item:nth-child(3),
.lp_eng .home-sec02 .tab-content .img-box .img-box-item:nth-child(4)
{
    margin-bottom: 0px;
}


.lp_eng .home-sec02 .tab-content .img-box .img-box-item h4{
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    margin: 20px auto 13px;
    text-align: center;
}
.lp_eng .home-sec02 .tab-content .img-box .img-box-item p{
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 1em;
}

.lp_eng .p3_lightning{
    max-width: 710px;
    height: auto;
}

.lp_eng .home-sec02 .tab-content {
    padding: 80px 0 0px;
}

.lp_eng .home-sec02 .tab-content .text-box .text.text2 {
    color: #7A9FD6;
    margin-bottom: 30px;
}

.lp_eng .home-sec02 .arvi_block{
    padding: 60px 0 0px;
}

.lp_eng .home-sec02 .arvi_logo{
    margin: 0px auto 60px;
    text-align: center;
}

.lp_eng .home-sec02 .tab-content.arvi_block .img-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 4.2%;
}

.lp_eng .home-sec02 .tab-content.arvi_block .img-box .img-box-item {
    width: 30%;
    margin-bottom: 60px;
}
.lp_eng .home-sec02 .tab-content.arvi_block .img-box .img-box-item h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 240%;    
    color: #06437C;
    text-align: center;
}
.lp_eng .home-sec02 .tab-content.arvi_block .img-box .img-box-item  p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 0;
}

.lp_eng .contact-btn-2 {
    margin: auto;
    text-align: center;
    width: 100%;
}
.lp_eng .contact-btn-2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(90deg, #566BB4 0%, #01A3A7 100%);
    border-radius: 8px;
    font-weight: bold;
    width: 300px;
    text-align: center;
    padding: 11px 0;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    margin: 50px auto 60px;
}
.lp_eng .contact-btn-2 a .icon-img {
    display: flex;
    align-items: center;
    margin-right: 6px;
}
.lp_eng .contact-btn-2 a span {
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
}
.lp_eng .home-sec03 .flex {
    max-width: 780px;
    margin: auto;
    justify-content: flex-start;
}
.lp_eng .home-sec03 .img {
    text-align: left;
    padding-right: 0px;
    width: 45%;
}

.lp_eng .home-sec03 .text-box {
    width: 55%;
}
.lp_eng .home-sec03 .contact-btn-2 a {
    margin: 50px auto 0px;
}
.lp_eng .home-sec03 {
    background-color: #F5F6F7;
    padding: 80px 0 60px;
    position: relative;
}
.sp_only{
    display: none;
}
@media screen and (max-width: 991px){


    .mv {
        position: static;
        height: calc(100vh - 59px)!important;
    }


    .lp_eng .mv-content {
        width: 100%;
    }
    .lp_eng .mv .nr {
    height: 100vh;
    }
    .lp_eng .mv .mv-bg {
        top: 0px;
    }
    .lp_eng .home-sec01 .logo{
        margin: auto;
        text-align: center;
            width: 65%;
    }
    .lp_eng .home-sec01 .text:not(.top) {
        text-align: left;
        font-size: 15px;
line-height: 30px;
    }
    .lp_eng .list_of_fuctions .rows_top {
        display: block;
        width: 100%;
    }
    .lp_eng .list_of_fuctions {
        padding: 20px 14px;
        width: 100%;
    }
    .lp_eng .list_of_fuctions .rows {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    .lp_eng .list_of_fuctions .rows li {
        font-weight: normal;
        font-size: 10px;
        line-height: 17px;
        display: flex;
        letter-spacing: 0.2em;
        justify-content: flex-start;
        align-items: center;
        padding: 12px 0px;
    }
    .lp_eng .list_of_fuctions .rows li.ls {
        margin-top: 0;
    }
    .lp_eng .contact-btn-w a {
        width: 95%;
    }
    .lp_eng .home-sec02 .tab-content .img-box {
        display: block;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0px 0px;
    }
    .lp_eng .home-sec02 .tab-content .img-box .img-box-item {
        width: 100%;
        margin-bottom: 60px;
    }
    .lp_eng .home-sec02 .tab-content .img-box .img-box-item h4 {
        font-size: 20px;
        line-height: 28px;
    }
    .lp_eng .home-sec02 .tab-content .text-box .text:not(.top) {
        font-size: 16px;
    }
    .home-sec02 .tab-content .box:last-child {
        margin-bottom: 80px;
    }
    .lp_eng .contact-btn-w a {
        margin: 30px auto 0;
    }
    .lp_eng .home-sec02 .tab-content.arvi_block .img-box {
        display: block;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0px 0px;
    }
    .lp_eng .home-sec02 .tab-content.arvi_block .img-box .img-box-item {
        width: 100%;
        margin-bottom: 40px;
    }
    .lp_eng .home-sec02 .tab-content.arvi_block .img-box .img-box-item h4 {
        font-weight: 700;
        font-size: 20px;
        line-height: 240%;
        color: #06437C;
        text-align: center;
    }
    .lp_eng .contact-btn-2 a {
        width: 95%;
    }
    .lp_eng .home-sec02 .tab-content.arvi_block .img-box .img-box-item:last-child {
        margin-bottom: 80px;
    }
    .lp_eng .home-sec03 .flex {
        max-width: 780px;
        margin: auto;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .lp_eng .p3_lightning {
        max-width: 710px;
        height: auto;
        width: 100%;
    }
    .home-sec03 .text.top {
        font-size: 24px;
        line-height: 35px;
        letter-spacing: 0.2em;
    }
    .lp_eng .home-sec03 .img {
        text-align: center;
        padding-right: 0px;
        width: 100%;
    }
    .sp_only{
        display: block;
    }
    .lp_eng .home-sec03 .text-box {
        width: 100%;
    }


    .lp_eng .list_of_fuctions .rows .rows2 {
    display: flex;
    flex-direction: column;
    }
    .lp_eng .list_of_fuctions .rows .rows2 ul{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    }
    .lp_eng .list_of_fuctions .rows .rows2 ul li{
    width: 50%;
    }

    .lp_eng .list_of_fuctions .rows.rows_sp_last {
            display: none;
    }
    .lp_eng .list_of_fuctions .rows.rows_sp_last_s {
        display: flex;
    }
    .lp_eng .list_of_fuctions .rows.rows_sp_last_s ul{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    }
    .lp_eng .list_of_fuctions .rows.rows_sp_last_s ul li{
    width: 50%;
    }
    #footer .footer-top ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }

}