* {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

html {
    font-size: 62.5%;
    font-family: "Noto Sans JP", sans-serif;
}

body {
    max-width: 1920px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .2s;
}

img:hover {
    opacity: .8;
    filter: opacity(80%);
    /*  cursor: pointer;*/
}


header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    height: 120px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-width: 1920px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

header .container {
    max-width: 90%;
    padding: 0;
}

header .logo {
}

@media screen and (max-width: 767px) {
    header .logo img {
        width: 100%;
    }
}

header .nav {
    padding: 30px 0;
    justify-content: end;
}

header .nav>li {}

header .nav>li>a {
    font-weight: 700;
    font-size: 18px;
    line-height: 22.5px;
    letter-spacing: 2.25px;
    vertical-align: middle;
    color: #323232;
    padding: 20px 0 20px 40px;
}

header .nav>li>a::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 26px;
    background-color: #000;
    vertical-align: sub;
    margin-left: 40px;
}

header .nav>li:last-child>a::after {
    display: none;
}

#index-mv {}

#index-mv .pic {
    position: relative;
}

#index-mv .pic img {
    width: 100%;
}

#index-mv .pic .info {
    position: absolute;
    top: 38%;
    left: 20%;
}

#index-mv .pic .info p {
    font-weight: 600;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: 2.25px;
    color: #1069AD;
}

#index-mv .pic .scroll {
    font-weight: 400;
    font-size: 9.53px;
    line-height: 15px;
    letter-spacing: 1px;
    vertical-align: middle;
    color: #347FB9;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 5%;
    height: 100%;
    display: flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

#index-mv .pic .scroll .s {
    /* writing-mode: sideways-rl !important; */
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    margin-bottom: 10px;
}

#index-mv .pic .scroll .line {
    display: block;
    width: 1px;
    height: 200px;
    margin: 30% 0;
    position: relative;
}

#index-mv .pic .scroll .line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #347FB9;
    animation: scroll 2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

@-webkit-keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}


#index-mv .pic .scroll .dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #347FB9;
}

.tit {
    font-weight: 600;
    font-size: 72px;
    line-height: 45px;
    letter-spacing: 2.25px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #347FB9;
    position: relative;
    text-align: left;
}

.tit .line {
    display: inline-block;
    width: 10%;
    height: 1px;
    background-color: #347FB9;
    vertical-align: middle;
}

.tit .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #347FB9;
    vertical-align: middle;
    margin-left: 20px;
    margin-right: 20px;
}


.tit .t {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

#index-about {
    position: relative;
    padding-top: 15%;
    overflow: hidden;
}

#index-about .txt {
    margin-top: 10%;
}

#index-about .txt p {
    font-weight: 400;
    font-size: 15px;
    line-height: 34px;
    letter-spacing: 2.6px;
    color: #000000;
}

#index-about .pic {
    position: absolute;
    right: 0;
}

#index-about .pic::after {
    content: '';
    display: block;
    width: 130%;
    height: 110%;
    background-color: #F2F2F2;
    position: absolute;
    top: 10%;
    left: -20%;
    z-index: -1;
}

#index-about .pic img {}

#index-about .pic1 {
    position: absolute;
    top: 0;
    z-index: -1;
}

#index-about .pic1 img {}

#index-about button {
    margin-top: 27%;
    background-color: transparent;
}

button {
    border: none;
}

button>a {
    display: block;
    transition: all .3s;
    width: 244px;
    line-height: 53px;
    background-color: #347FB9;
    text-align: center;
    border-radius: 999px;
    position: relative;
    border: 1px solid #347FB9;
}

button .t {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 2.38px;
    vertical-align: middle;
    color: #fff;
}

button .line {
    display: inline-block;
    width: 80px;
    height: 1px;
    background-color: #fff;
    margin: 0 6px;
    vertical-align: middle;
    transition: all .3s;
}

button .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 3px;
    vertical-align: middle;
}

button>a:hover {
    background-color: #fff;
    border-color: #347FB9;
}

button>a:hover .t {
    color: #347FB9;
}

button>a:hover .line {
    background-color: #347FB9;
}

button>a:hover .dot {
    background-color: #347FB9;
}

#index-service {
    margin-top: 17%;
}

#index-service .tit {
    text-align: right;
    margin-bottom: 10%;
}

#index-service .tit .line {
    width: 60%;
    max-width: 542px;
}

#index-service .tit .t {
    margin-right: 30px;
}

#index-service .item {
    background-color: #F2F2F2;
    padding: 7% 7%;
    margin-bottom: 5%;
}

#index-service .item .txt {}

#index-service .item .num {
    font-weight: 600;
    font-size: 80px;
    line-height: 1;
    letter-spacing: 1.68px;
    color: #347FB966;
}

#index-service .item h2 {
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 1.68px;
    color: #000000;
    margin-top: 5%;
}

#index-service .item h2::after {
    content: '';
    display: block;
    width: 100%;
    border: 2px dotted #347FB9;
    margin: 8% 0;
    max-width: 294px;
}

#index-service .row {
    justify-content: space-between;
}

#index-service .item .txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 1.3px;
    color: #000;
}

#index-service .item .pic {
    position: relative;
    max-width: 416px;
}

#index-service .item .pic::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #fff;
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
}

#index-service .item .pic img {
    width: 100%;
    position: relative;
    z-index: 1;
}

#index-contact {
    margin-top: 10%;
    padding-top: 5%;
    position: relative;
}

#index-contact::after {
    display: block;
    content: '';
    width: 70%;
    height: 85%;
    background-color: #F2F2F2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#index-contact .txt {}

#index-contact .txt p {
    font-weight: 400;
    font-size: 14px;
    line-height: 34px;
    letter-spacing: 2.6px;
    color: #000000;
}

#index-contact .swiper-container {
    width: 100%;
    height: 100%;
}

#index-contact #pSwiper {}

#index-contact iframe {
    padding-right: 2%;
}

#index-contact #pSwiper .swiper-slide {
    margin-bottom: 16px;
}

#index-contact #pSwiper .swiper-slide img {}

#index-contact .swiper-button-prev {
    top: 45%;
    left: -3%;
}

#index-contact .swiper-button-prev::after,
#index-contact .swiper-button-next::after {
    display: none;
}

#index-contact .swiper-button-next {
    top: 45%;
    right: -3%;
}

#index-news {
    margin-top: 6%;
    background-color: #F2F2F2;
    padding: 5% 0;
    text-align: center;
}

#index-news .tit {
    text-align: center;
    font-size: 34px;
    margin-bottom: 4%;
}

#index-news .item {
    width: 100%;
}

#index-news .item>a {
    display: block;
    border-bottom: 1px solid #347FB9;
    padding-bottom: 10px;
    margin-bottom: 30px;
    padding: 2%;
}

#index-news .item>a .date {
    width: 110px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    background-color: #347FB9;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.4px;
    vertical-align: middle;
}

#index-news .item>a .tit {
    text-align: left;
    position: relative;
    margin-bottom: 10px;
}

#index-news .item>a .tit h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 2.8px;
    color: #000000;
    width: calc(100% - 200px);
}

#index-news .item>a .tit .line {
    width: 80px;
    height: 1px;
    background-color: #347FB9;
    margin-right: 6px;
    position: absolute;
    right: 38px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .3s;
}

#index-news .item>a .tit .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: #347FB9;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .3s;
}

#index-news button {
    margin-top: 3%;
}

#index-news .item>a:hover {
    background-color: #347FB9;
    transition: all .1s;
}

#index-news .item>a:hover .tit .line,
#index-news .item>a:hover .tit .dot {
    /*    width: 0;*/
    background-color: #fff;
}

#index-news .item>a:hover .tit h2 {
    color: #fff;
}


footer {
    background-color: #347FB9;
    padding: 3% 0;
}

footer .container {
    max-width: 90%;
}

footer .flogo {
    max-width: 250px;
}

footer .flogo img {
    width: 100%;
}

footer .ftxt {
    margin-top: 2%;
}

footer .ftxt p {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 2.6px;
    color: #fff;
}

footer .nav {
    display: flex;
    justify-content: end;
}

footer .nav>li {}

footer .nav>li>a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.5px;
    letter-spacing: 2.25px;
    vertical-align: middle;
    color: #fff;
    padding: 0 20px;
}

footer .sns {
    margin-top: 6%;
    display: flex;
    justify-content: end;
}

footer .sns>li {}

footer .sns>li>a {
    display: block;
    padding: 0 20px;
}

footer .copyright {
    margin-top: 6%;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.2px;
    vertical-align: middle;
    color: #fff;
    text-align: right;
    padding-right: 20px;
}

#breadcrumb {
    margin-top: 12%;
}

#breadcrumb a {
    font-weight: 400;
    font-size: 12px;
    line-height: 22.62px;
    letter-spacing: 2.4px;
    vertical-align: middle;
    color: #808080;
}

.companyPage {}

.companyPage #company1 {
    position: relative;
    margin-top: 7%;
}

.companyPage #company1 .tit {
    font-size: 40px;
    font-weight: 500;
}

.companyPage #company1 .txt {
    margin-top: 10%;
}

.companyPage #company1 .txt p {
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
    letter-spacing: 3px;
    color: #000;
}

.companyPage #company1 .pic {
    position: relative;
    width: 60%;
    margin-left: auto;
    padding-top: 4%;
    text-align: right;
}

.companyPage #company1 .pic::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15%;
    left: -8%;
    background-color: #F2F2F2;
    z-index: -1;
}

.companyPage #company1 .pic img {
    width: 100%;
    max-width: 797px;
}

.companyPage #company2 {
    margin: 10% 0;
}

.companyPage #company2 h2 {
    text-align: center;
    margin-bottom: 6%;
}

.companyPage #company2 h2 .t {
    font-size: 40px;
}

.companyPage #company2 table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.companyPage #company2 table tr {
    border-top: 1px solid #CBCBCB;
}

.companyPage #company2 table tr:last-child {
    border-bottom: 1px solid #CBCBCB;
}

.companyPage #company2 table tr td {}

.companyPage #company2 table tr td:nth-child(1) {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 2.6px;
    vertical-align: middle;
    color: #347FB9;
    padding: 20px;
}

.companyPage #company2 table tr td:nth-child(2) {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 2.6px;
    vertical-align: middle;
    color: #000;
}

#n-ban {
    margin-top: 2%;
    position: relative;
    padding-bottom: 6%;
}

#n-ban::after {
    content: '';
    display: block;
    width: 100%;
    height: 60%;
    position: absolute;
    bottom: 0;
    background-color: #347FB9;
    z-index: -1;
}

#n-ban .pic {
    position: relative;
    background-color: transparent;
}

#n-ban .pic img {
    width: 100%;
}

#n-ban .pic img:hover {
    opacity: 1;
    filter: opacity(100%);
}

#n-ban .pic p {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    font-weight: 500;
    font-size: 40px;
    line-height: 33px;
    letter-spacing: 2.2px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #fff;
}

#servicePage {
    position: relative;
}

#servicePage .item {
    margin-top: 8%;
}

#servicePage .item .tit {
    font-size: 3.7rem;
}

#servicePage .item .ntit {
    width: 100%;
    position: absolute;
    left: 0;
}

#servicePage .item .ntit .line {}

#servicePage .item .ntit .dot {}

#servicePage .item .tit .t {}

#servicePage .item .subtit {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 20px;
    letter-spacing: 4px;
    color: #000000;
    margin: 3% 0;
}

#servicePage .item .txt {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 32px;
    letter-spacing: 0.8px;
    vertical-align: middle;
    color: #293962;
    margin-top: 6%;
}

#servicePage .list {
    background-color: #F3F5F7;
    padding: 3%;
    margin-top: 3%;
    margin-bottom: 6%;
}

#servicePage .list ul {
    display: flex;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}

#servicePage .list li {
    width: calc(100% / 3 - 2%);
    position: relative;
}

#servicePage .list li img {
    width: 100%;
    position: relative;
}

#servicePage .list li .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 5%;
}

#servicePage .list li .info p {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 1.5px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
    min-height: 38px;
}

#servicePage .list li .info::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.png') no-repeat;
    background-size: 100%;
}

#new-list {}

#new-list .tit,
#new-article .tit,
#privacyPage .tit {
    text-align: center;
    font-size: 4rem;
    font-weight: 500;
    margin-top: 3%;
}

#new-list .cate {
    margin-top: 6%;
    margin-bottom: 0;
    display: flex;
    display: inline-flex;
    width: 100%;
    flex-wrap: wrap;
}

#new-list .cate li {
    width: calc(100% / 4 - 1%);
    margin-right: 1.333%;
}

#new-list .cate li:last-child {
    margin-right: 0;
}

#new-list .cate li>a {
    width: 100%;
    line-height: 56px;
    display: block;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 2.8px;
    text-align: center;
    color: #3B3B3B;
    background-color: #F3F5F7;
}

#new-list .cate li.on a,
#new-list .cate li.on a:hover,
#new-list .cate li a:hover {
    background-color: #347FB9;
    color: #fff;
}

#newsPage #index-news {
    background-color: #fff;
    margin-top: 0;
}

#newsPage #index-news .item>a {
    background-color: #F3F5F7;
    padding: 2%;
    border: none;
    transition: all .1s;
}

#newsPage #index-news .item>a:hover {
    background-color: #347FB9;
}

#newsPage #index-news .item>a:hover .date {
    background-color: #fff;
    color: #347FB9;
}

#newsPage #index-news .item>a:hover h2 {
    color: #fff;
}

#newsPage #index-news .item>a:hover .line,
#newsPage #index-news .item>a:hover .dot {
    background-color: #fff;
}

#newsPage .Pagination {

    margin-top: 3%;
}

#newsPage .Pagination a {
    display: inline-block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    color: #000000;
    font-size: 1.4rem;
    font-weight: 400;
}

#newsPage .Pagination a.page-num-current {
    background-color: #347FB9;
    color: #fff;
}

#newsPage .Pagination .line,
#new-article .pre-next>a .line {width: 70px;height: 1px;background-color: #347FB9;display: inline-block;vertical-align: middle;margin-left: 10px;margin-right: 10px;}

#newsPage .Pagination .dot,
#new-article .pre-next>a .dot {

    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #347FB9;
    display: inline-block;
    vertical-align: middle;
}

#new-article .item {}

#new-article .date {
    width: 110px;
    line-height: 23px;
    background-color: #347FB9;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
}

#new-article .item h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 4px;
    vertical-align: middle;
    color: #000;
    margin-top: 2%;
    margin-bottom: 3%;
}

#new-article .item .con {
    background-color: #F3F5F7;
    border-top: 1px solid #347FB9;
    padding: 2% 2%;
}

#new-article .item .con p,
#new-article .item .con span {
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1.4px;
    color: #000000;
    margin-bottom: 20px;
}

#new-article .pre-next {
    display: flex;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    margin: 6% 0;
    width: 100%;
}

#new-article .pre-next>a {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 2.38px;
    vertical-align: middle;
    color: #347FB9;
    display: flex;
    justify-content: space-between;
}


#new-article .prev {
    width: 244px;
    border-radius: 50px;
    border: 1px solid #347FB9;
    padding: 15px;
}

#new-article .over {
    text-decoration: underline;
}

#new-article .next {
    width: 244px;
    border-radius: 50px;
    border: 1px solid #347FB9;
    padding: 15px;
}

#new-article a.prev:hover,
#new-article a.next:hover {
    background-color: #347FB9;
    color: #fff;
}

#new-article .pre-next>a:hover .dot,
#new-article .pre-next>a:hover .line {
    background-color: #fff;
}

#new-article .over:hover {}


#privacyPage {}

#privacyPage .con {
    background-color: #F3F5F7;
    padding: 3%;
    margin-top: 6%;
    margin-bottom: 6%;
}

#privacyPage .con h2 {
    line-height: 32px;
    background-color: #347FB9;
    padding-left: 2%;
    font-weight: 500;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.79px;
    color: #fff;
}

#privacyPage .con p {
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 0.79px;
    color: #111111;
    margin-bottom: 3%;
}

header .header__trigger {
    display: none;
}

.remodal-wrapper {
    opacity: 0;
    filter: opacity(0%);
    transition: all .3s;
    height: 0;
}

.sp {
    display: none !important;
}

.pc {
    display: block !important;
}

.offset-2 {
    margin-left: 10px;
}

header .nav>li:last-child {
    position: relative;
}

header .nav>li:last-child a img {
    width: 13px;
    vertical-align: baseline;
}

header .nav>li:last-child .lan {
    position: absolute;
    width: 150px;
    background: #1069AD;
    display: none;
}

header .nav>li:last-child .lan>li {
    width: 100%;
}

header .nav>li:last-child .lan>li>a {
    display: block;
    color: #fff;
    padding: 10px 0;
    font-size: 18px;
    text-align: center;
    margin-left: -8px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {

    #index-service {
        margin-top: 20%;
    }

    .offset-2 {
        margin-left: 9%;
    }

    main {
        overflow-x: hidden;
    }

    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .remodal-wrapper {
        position: fixed;
        top: 0;
        z-index: 0;
        width: 100%;
        background: #fff;
        padding: 10px 0;
        height: auto;
    }

    .remodal-wrapper.open {
        opacity: 1;
        filter: opacity(100%);
        z-index: 3;
        /* height: auto; */
    }

    .remodal-wrapper .remodal {
        max-width: 100%;
        min-height: 100vh;
        padding: 0;
        margin: 0;
        overflow: hidden;
        transform: none;
    }

    .remodal-wrapper .modal__head {
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: space-between; */
        /* height: 60px; */
        margin: 0 auto;
        padding: 0;
    }

    .remodal-wrapper .modal__head .container {
        max-width: 90%;
        padding: 0;
    }

    .remodal-wrapper .modal__head .logo {
        max-width: 200px;
        width: 100%;
        margin-top: 6px;
    }

    .remodal-wrapper .modal__head .trigger {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        margin-left: -5px;
        text-decoration: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        background-color: transparent;
        outline: none;
        color: #000;
    }

    .remodal-wrapper .modal__head .trigger .line {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 30px;
        height: 1px;
        background-color: #000;
    }

    .remodal-wrapper .modal__head .trigger .line:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .remodal-wrapper .modal__head .trigger .line:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .remodal-wrapper .modal__head .trigger .line::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: currentColor;
    }

    .remodal-wrapper .modal__body {}

    .remodal-wrapper .modal__navi {
        margin-top: 15px;
    }

    .remodal-wrapper .modal__navi .list {}

    .remodal-wrapper .modal__navi .list>li {
        border-top: 1px solid #e5e5e5;
    }

    .remodal-wrapper .modal__navi .list>li>a {
        display: block;
        padding: 17px 27px;
        font-size: 13px;
        letter-spacing: 0.2em;
        color: #000;
    }

    header {
        padding: 10px 0;
        z-index: 2;
        /* position: relative; */
        height: auto;
    }

    header .nav {
        display: none;
    }

    header .logo {
        max-width: 200px;
        margin-top: 6px;
    }

    header .logo>a {
        display: block;
    }

    header .header__trigger {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        width: 60px;
        height: 60px;
        margin-left: 3px;
        text-decoration: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        background-color: transparent;
        outline: none;
        color: #000;
    }

    header .header__trigger .line {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 30px;
        height: 3px;
    }

    header .header__trigger .line::before {
        content: '';
        display: block;
        width: 21px;
        height: 1px;
        background-color: #000;
    }

    header .header__trigger .line::after {
        content: '';
        display: block;
        width: 3px;
        height: 3px;
        background-color: #000;
        border-radius: 50%;
    }

    #index-mv .pic {
        height: 540px;
    }

    #index-mv .pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #index-mv .pic .info p {
        font-size: 1.6rem;
    }

    #index-mv .pic .info {
        left: 5%;
    }

    #index-about .pic {
        position: relative;
        padding-bottom: 10%;
        width: 80%;
        margin-left: auto;
    }

    #index-about .pic img {
        position: relative;
        z-index: 1;
    }

    #index-about .pic::after {
        z-index: 0;
        left: -10%;
    }

    #index-about button {
        margin-top: 7%;
        margin-bottom: 13%;
    }

    .tit {
        font-size: 3.8rem;
    }

    #index-service .item .pic {
        margin-top: 10%;
        margin-bottom: 10%;
    }

    #index-contact #pSwiper {
        margin-top: 6%;
    }

    #index-news .item>a .tit h2 {
        width: 100%;
        height: 22px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #index-news .item>a .tit .line,
    #index-news .item>a .tit .dot {
        display: none;
    }

    #index-news {
        padding-bottom: 10%;
    }

    footer {
        padding: 10% 0;
    }

    footer .flogo {
        margin: 0 auto;
        margin-bottom: 30px;
    }

    footer .ftxt {
        text-align: center;
    }

    footer .nav,
    footer .sns {
        justify-content: center;
        margin-top: 6%;
        margin-bottom: 12%;
    }

    footer .copyright {
        text-align: center;
        padding: 0;
    }

    #new-list .cate li {
        width: calc(100% / 2 - 1%);
        margin-bottom: 2%;
    }

    #new-list .cate li:nth-child(2n+2) {
        margin-right: 0;
    }

    #new-list .cate li>a {
        font-size: 1.2rem;
    }

    #new-article .pre-next {
        flex-wrap: wrap;
    }

    #new-article .pre-next>a {
        width: 48%;
    }

    #new-article .pre-next>a.over {
        margin: 0 auto;
        text-align: center;
        display: block;
    }

    #new-list .tit,
    #new-article .tit,
    #privacyPage .tit {
        margin-bottom: 10%;
        font-size: 2.5rem;
    }

    #servicePage .item .tit,
    .companyPage #company1 .tit,
    .companyPage #company2 h2 .t {
        font-size: 2.5rem;
    }

    #servicePage .item .subtit {
        font-size: 1.8rem;
    }

    .companyPage #company1 .txt p {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    #servicePage .list ul {
        flex-wrap: wrap;
    }

    #servicePage .list li {
        width: 100%;
        margin-bottom: 6%;
    }

    #servicePage .item .ntit .line {
        width: 7%;
    }

    #servicePage .item .ntit .dot {
        margin: 0;
    }

    .companyPage #company1 .pic {
        width: 85%;
    }

    .companyPage #company2 table tr,
    .companyPage #company2 table tr td {
        display: block;
        width: 100%;
    }

    .companyPage #company2 table tr,
    .companyPage #company2 table tr td:nth-child(1),
    .companyPage #company2 table tr td {
        padding: 10px;
    }

    #privacyPage .con p {
        margin-bottom: 10%;
    }

    #servicePage .list li .info p {
        font-size: 1.5rem;
    }

    #breadcrumb {
        margin-top: 26%;
    }
}