@charset "utf-8";

/*-----------------------
    page_contents.css
------------------------*/

/*----- about -----*/

.about {
    padding: 90px 0 60px;
}
.about .ttl img {
    height: 34px;
}
.about .title {
    margin: 5px 0 30px;
}
.about .title > div {
    display: flex;
}
.about .title .text {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.5;
}
.about .frame {
    display: flex;
    justify-content: space-between;
}
.about .frame .conts {
    width: 56%;
}
.about .frame .pic {
    width: 40%;
}
.about .frame .pic img {
    aspect-ratio: 4/3;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .about {
        padding: 7vw 0 5vw;
    }
    .about .ttl img {
        height: 3vw;
    }
    .about .title {
        margin: .5vw 0 3vw;
    }
    .about .title .text {
        font-size: 4vw;
    }
    
}
@media screen and (max-width: 767px){
    
    .about {
        padding: 60px 0;
    }
    .about .ttl img {
        height: 24px;
    }
    .about .title {
        margin: 10px 0 20px;
        display: inline-block;
    }
    .about .title > div {
        display: inline;
    }
    .about .title .text {
        display: inline;
        font-size: 25px;
    }
    .about .frame {
        display: block;
    }
    .about .frame .conts {
        width: 100%;
    }
    .about .frame .pic {
        margin: 20px auto 0;
        width: min(400px,100%);
    }
    
}

/* tech */

.tech {
    padding: 100px 0;
    background: url("/system_panel/uploads/images/bg_scene.jpg") top center #f4f4f4 no-repeat;
    background-size: cover;
}
.tech .pic {
    margin-top: 60px;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .tech {
        padding: 8vw 0;
    }
    .tech .pic {
        margin-top: 5vw;
    }
    
}
@media screen and (max-width: 767px){
   
    .tech {
        padding: 50px 0;
    }
    .tech .pic {
        margin-top: 30px;
    }
    
}

/* features */

.features {
    padding: 110px 0 70px;
    background: url("/system_panel/uploads/images/bg_features.jpg") center no-repeat;
    background-size: cover;
    color: var(--white);
}
.features_ul {
    margin-top: 60px;
}
.features_ul .li {
    margin-bottom: 30px;
    padding: 30px 60px;
    background: #32346c;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.features_ul .li .icon {
    width: 150px;
}
.features_ul .li .conts {
    width: calc(100% - 150px - 50px);
}
.features_ul .li .conts .title {
    display: flex;
    gap: 0 10px;
    margin-bottom: 30px;
}
.features_ul .li .conts .title .num,
.features_ul .li .conts .title .text {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.5;
}
.features_ul .li .conts .title .num {
    color: var(--orange);
}
.features_ul .li .conts .p {
    line-height: 1.5;
    margin: 12px 0;
}
.features_ul .li .conts .p.disc {
    padding-left: 18px;
    text-indent: -18px;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .features {
        padding: 8vw 0 6vw;
    }
    .features_ul {
        margin-top: 5vw;
    }
    .features_ul .li {
        margin-bottom: 3vw;
        padding: 2vw 4vw;
        align-items: center;
    }
    .features_ul .li .icon {
        width: 14vw;
    }
    .features_ul .li .conts {
        width: calc(100% - 14vw - 5vw);
    }
    .features_ul .li .conts .title {
        gap: 0 1vw;
        margin-bottom: 2.5vw;
    }
    .features_ul .li .conts .title .num,
    .features_ul .li .conts .title .text {
        font-size: 3vw;
    }
    .features_ul .li .conts .p {
        margin: 1.2vw 0;
    }
    .features_ul .li .conts .p.disc {
        padding-left: 1.7vw;
        text-indent: -1.7vw;
    }
    
}
@media screen and (max-width: 767px){
    
    .features {
        padding: 50px 0 25px;
    }
    .features_ul {
        margin-top: 40px;
    }
    .features_ul .li {
        margin-bottom: 25px;
        padding: 20px 5vw;
        display: block;
    }
    .features_ul .li .icon {
        width: 120px;
        margin: 0 auto 20px;
    }
    .features_ul .li .conts {
        width: 100%;
    }
    .features_ul .li .conts .title {
        margin-bottom: 20px;
    }
    .features_ul .li .conts .title .num,
    .features_ul .li .conts .title .text {
        font-size: 21px;
    }
    .features_ul .li .conts .p {
        margin: 10px 0;
    }
    .features_ul .li .conts .p.disc {
        padding-left: 16px;
        text-indent: -16px;
    }

}

/* video */

.video {
    padding: 120px 0 70px;
}
.video_ul {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.video_ul .li {
    width: 46.66%;
    margin-bottom: 50px;
}
.video_ul .li .title {
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 6px solid #ccccdb;
    font-size: 27px;
    line-height: 1.5;
}
.video_ul .li .movie {
    background: #ccccdb;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
.video_ul .li .movie iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .video {
        padding: 9vw 0 6vw;
    }
    .video_ul {
        margin-top: 5vw;
    }
    .video_ul .li {
        width: 47.5%;
        margin-bottom: 4vw;
    }
    .video_ul .li .title {
        margin-bottom: 1.5vw;
        padding-left: 1.5vw;
        font-size: 2.4vw;
    }
    
}
@media screen and (max-width: 767px){

    .video {
        padding: 50px 0 20px;
    }
    .video_ul {
        margin-top: 30px;
        display: block;
    }
    .video_ul .li {
        width: 100%;
        margin-bottom: 30px;
    }
    .video_ul .li .title {
        margin-bottom: 10px;
        padding-left: 10px;
        font-size: 20px;
    }    

}

/* scene */

.scene {
    padding: 100px 0;
    background: url("/system_panel/uploads/images/bg_scene.jpg") top center #f4f4f4 no-repeat;
    background-size: cover;
}
.scene .pic {
    margin: 60px 0 90px;
}
.scene .title {
    margin: 0 auto 35px;
    padding: 16px 0;
    width: 750px;
    background: var(--blue);
    color: var(--white);
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}
.scene .dl {
    border-top: 1px solid var(--text);
    border-left: 1px solid var(--text);
}
.scene .dl > div {
    display: flex;
    width: 100%;
}
.scene .dl > div:nth-of-type(2n) {
    background: var(--white);
}
.scene .dl > div:nth-of-type(2n+1) {
    background: #f6f6f8;
}
.scene .dl > div.dl_head {
    background: #ccccdb;
    text-align: center;
}
.scene .dl .dt,
.scene .dl .dd {
    padding: 24px 60px;
    border-right: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
    box-sizing: border-box;
}
.scene .dl .dt {
    width: 25%;
    text-align: center;
}
.scene .dl .dd {
    width: 75%;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .scene {
        padding: 8vw 0;
    }
    .scene .pic {
        margin: 5vw 0 7vw;
    }
    .scene .title {
        margin: 0 auto 3vw;
        padding: 1.5vw 0;
        width: 66vw;
        font-size: 3.3vw;
    }
    .scene .dl .dt,
    .scene .dl .dd {
        padding: 2vw 3vw;
    }
    
}
@media screen and (max-width: 767px){
        
    .scene {
        padding: 50px 0;
    }
    .scene .pic {
        margin: 40px 0;
    }
    .scene .title {
        margin: 0 auto 20px;
        padding: 12px 0;
        width: 100%;
        font-size: 22px;
    }
    .scene .dl .p {
        line-height: 1.5;
    }
    .scene .dl > div {
        width: 100%;
    }
    .scene .dl .dt,
    .scene .dl .dd {
        padding: 12px 3vw;
    }
    .scene .dl .dt {
        width: 157px;
        text-align: left;
    }
    .scene .dl .dd {
        width: calc(100% - 108px);
    }

}

/* news */

.news {
    padding: 120px 0 20px;
}
.news_ul {
    margin-top: 60px;
}
.news_ul .li {
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
}
.news_ul .li .conts {
    width: 54%;
    order: 2;
}
.news_ul .li .conts .ttl {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--text);
    font-size: 30px;
    font-weight: bold;
    line-height: 1.75;
}
.news_ul .li .conts .grey_box {
    background: #f6f6f6;
    margin: 20px 0;
    padding: 15px 30px;
}
.news_ul .li .conts .m_btn {
    margin-top: 20px;
}
.news_ul .li .pics {
    width: 40%;
}
.news_ul .li .pics .pic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 325px;
}
.news_ul .li .pics .pic img {
    max-height: 325px;
}
.news_ul .li .pics .thumb {
    margin: 4px 2px;
    cursor: pointer;
}
.news_ul .li .pics .thumb img {
    aspect-ratio: 96/65;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .news {
        padding: 9vw 0 2vw;
    }
    .news_ul {
        margin-top: 5vw;
    }
    .news_ul .li {
        margin-bottom: 8vw;
    }
    .news_ul .li .conts .ttl {
        margin-bottom: 1.5vw;
        padding-bottom: 1.5vw;
        font-size: 2.75vw;
    }
    .news_ul .li .conts .grey_box {
        margin: 2vw 0;
        padding: 1.25vw 2vw;
    }
    .news_ul .li .conts .m_btn {
        margin-top: 2vw;
    }
    .news_ul .li .pics .pic {
        height: 30vw;
    }
    .news_ul .li .pics .pic img {
        max-height: 30vw;
    }
    
}
@media screen and (max-width: 767px){

    .news {
        padding: 50px 0 0;
    }
    .news_ul {
        margin-top: 40px;
    }
    .news_ul .li {
        margin-bottom: 40px;
        display: block;
    }
    .news_ul .li .conts {
        width: 100%;
    }
    .news_ul .li .conts .ttl {
        margin-bottom: 10px;
        padding-bottom: 10px;
        font-size: 20px;
    }
    .news_ul .li .conts .grey_box {
        margin: 15px 0;
        padding: 10px 4vw;
    }
    .news_ul .li .pics {
        width: 100%;
        margin-top: 30px;
    }
    .news_ul .li .pics .pic {
        height: 60vw;
    }
    .news_ul .li .pics .pic img {
        max-height: 60vw;
    }
    
}

/*----- products -----*/

.elynx {
    padding: 100px 0 0;
}
.other {
    padding: 100px 0;
}
.product_ul .li {
    margin-bottom: 40px;
    padding: 50px;
    background: url("/system_panel/uploads/images/bg_product.jpg") center no-repeat;
    background-size: cover;
    color: var(--white);
}
.product_ul .li .frame {
    display: flex;
    justify-content: space-between;
}
.product_ul .li .frame .conts {
    width: 54%;
    order: 2;
}
.product_ul .li .frame .conts .ttl {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
}
.product_ul .li .frame .conts .dl {
    border-top: 1px solid var(--white);
    border-left: 1px solid var(--white);
}
.product_ul .li .frame .conts .dl > div {
    display: flex;
    width: 100%;
    font-size: 15px;
    line-height: 1.75;
}
.product_ul .li .frame .conts .dl .dt,
.product_ul .li .frame .conts .dl .dd {
    padding: 12px 18px;
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    box-sizing: border-box;
}
.product_ul .li .frame .conts .dl .dt {
    width: 22%;
}
.product_ul .li .frame .conts .dl .dd {
    width: 78%;
}
.product_ul .li .frame .pic {
    width: 41.5%;
    margin-top: 55px;
}
.product_ul .li .frame .pic img {
    aspect-ratio: 5/4;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .elynx {
        padding: 8vw 0 0;
    }
    .other {
        padding: 8vw 0;
    }
    .product_ul .li {
        margin-bottom: 3vw;
        padding: 4vw;
    }
    .product_ul .li .frame .conts .ttl {
        margin-bottom: 1vw;
        font-size: 2.75vw;
    }
    .product_ul .li .frame .conts .dl > div {
        font-size: 1.4vw;
    }
    .product_ul .li .frame .conts .dl .dt,
    .product_ul .li .frame .conts .dl .dd {
        padding: 1.2vw;
    }
    .product_ul .li .frame .pic {
        width: 44%;
        margin-top: 5vw;
    }
    
}
@media screen and (max-width: 767px){
    
    .elynx {
        padding: 50px 0 0;
    }
    .other {
        padding: 50px 0;
    }
    .product_ul .li {
        margin-bottom: 30px;
        padding: 5vw;
    }
    .product_ul .li .frame {
        display: block;
    }
    .product_ul .li .frame .conts {
        width: 100%;
    }
    .product_ul .li .frame .conts .ttl {
        font-size: 22px;
    }
    .product_ul .li .frame .conts .dl > div {
        display: block;
        font-size: 15px;
        line-height: 1.75;
    }
    .product_ul .li .frame .conts .dl .dt {
        width: 100%;
        padding: 10px 5vw;
        border-bottom: 1px dotted var(--white);
        font-weight: bold;
    }
    .product_ul .li .frame .conts .dl .dd {
        width: 100%;
        padding: 10px 5vw;
    }
    .product_ul .li .frame .pic {
        width: min(400px,100%);
        margin: 30px auto 0;
    }    
}

/*----- company -----*/

.outline {
    padding: 100px 0 0;
}
.outline .dl {
    margin: 60px 0;
}
.outline .dl > div {
    display: flex;
}
.outline .dl .dt,
.outline .dl .dd {
    padding: 20px 0 20px 40px;
    box-sizing: border-box;
}
.outline .dl .dt {
    width: 25%;
    border-bottom: 1px solid var(--blue);
    color: var(--blue);
}
.outline .dl .dd {
    width: 75%;
    border-bottom: 1px solid var(--text);
}
.outline .dl .dd a {
    color: var(--text);
}
.outline .googlemap iframe {
    width: 100%;
    height: 300px;
}
.sdgs {
    position: relative;
    margin: 150px 0 150px;
    padding: 80px 70px 50px;
    background: #f4f4f4;
}
.sdgs .ttl {
    position: absolute;
    top: -40px;
    left: calc(50% - 375px);
    width: 750px;
    padding: 16px 0;
    background: var(--blue);
    color: var(--white);
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}
.sdgs .ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 60px;
    margin-bottom: 40px;
}
.sdgs .ul .li {
    width: 150px;
}
.sdgs .ul .li:nth-of-type(1) {
    width: 258px;
}
.sdgs .p {
    line-height: 1.75;
}

/* partner */

.partner {
    padding: 120px 0;
    background: url("/system_panel/uploads/images/bg_partner.jpg") center bottom no-repeat;
    background-size: cover;
    color: var(--white);
}
.partner .frame {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.partner .frame .conts {
    width: 63%;
}
.partner .frame .pic {
    width: 35%;
}

/* list */

.agent {
    padding: 120px 0 0;
}
.agent .pic {
    margin-top: 130px;
}
.agent .title {
    margin-top: 60px;
    padding-left: 15px;
    border-left: 6px solid #d2d2d8;
    font-size: 27px;
}
.agent_ul {
    margin: 20px 0 90px;
    padding-top: 30px;
    border-top: 1px solid var(--text);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px 80px;
}
.agent_ul .li {
    width: calc(50% - 40px);
    padding: 0 0 0 20px;
    box-sizing: border-box;
}
.agent_ul .li .name {
    margin-bottom: 15px;
}
.agent_ul .li .name a {
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: var(--blue);
    font-size: 25px;
    line-height: 1.5;
}
.agent_ul .li .name a .icon {
    width: 22px;
}
.agent_ul .li .name a:hover {
    color: var(--blue_light);
}
.agent_ul .li .pm a {
    color: var(--text);
}

@media screen and (min-width: 768px) and (max-width: 1260px){

    .outline {
        padding: 8vw 0 0;
    }
    .outline .dl {
        margin: 5vw 0;
    }
    .outline .dl .dt,
    .outline .dl .dd {
        padding: 2vw 0 2vw 4vw;
    }
    .outline .googlemap iframe {
        height: 24vw;
    }
    .sdgs {
        margin: 12vw 0 9vw;
        padding: 8vw 5vw 4vw;
    }
    .sdgs .ttl {
        top: -3vw;
        left: calc(50% - 33vw);
        width: 66vw;
        padding: 1.5vw 0;
        font-size: 3vw;
    }
    .sdgs .ul {
        gap: 0 4vw;
        margin-bottom: 3vw;
    }
    .sdgs .ul .li {
        width: 14vw;
    }
    .sdgs .ul .li:nth-of-type(1) {
        width: 22vw;
    }

    /* partner */

    .partner {
        padding: 9vw 0;
    }
    .partner .frame {
        align-items: center;
    }

    /* list */

    .agent {
        padding: 9vw 0 0;
    }
    .agent .pic {
        margin-top: 9vw;
    }
    .agent .title {
        margin-top: 5vw;
        padding-left: 1.5vw;
        font-size: 2.5vw;
    }
    .agent_ul {
        margin: 2vw 0 7.5vw;
        padding-top: 3vw;
        gap: 4vw 6vw;
    }
    .agent_ul .li {
        width: calc(50% - 3vw);
        padding: 0 0 0 2vw;
    }
    .agent_ul .li .name {
        margin-bottom: 1.5vw;
    }
    .agent_ul .li .name a .icon {
        width: 2vw;
    }
    .agent_ul .li .name a {
        gap: 0 1vw;
        font-size: 2.4vw;
    }
    
}
@media screen and (max-width: 767px){
    
    .outline {
        padding: 50px 0 0;
    }
    .outline .dl {
        margin: 40px 0;
    }
    .outline .dl > div {
        display: block;
    }
    .outline .dl .dt {
        width: 100%;
        padding: 20px 0 0;
        border-bottom: none;
    }
    .outline .dl .dd {
        width: 100%;
        padding: 15px 0 20px;
        border-bottom: 1px solid var(--text);
    }
    .outline .dl .dd.p.address {
        font-size: min(3.1vw,16px);
    }
    .outline .googlemap iframe {
        height: 180px;
    }
    .sdgs {
        margin: 40px 0 50px;
        padding: 30px 4vw;
    }
    .sdgs .ttl {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        font-size: 24px;
    }
    .sdgs .ul {
        gap: 0 10px;
        margin: 30px 0 20px;
    }
    .sdgs .ul .li {
        width: auto;
    }
    .sdgs .ul .li:nth-of-type(1) {
        width: auto;
    }
    
    /* partner */

    .partner {
        padding: 50px 0;
    }
    .partner .frame {
        display: block;
    }
    .partner .frame .conts {
        width: 100%;
    }
    .partner .frame .pic {
        width: 100%;
        margin: 30px auto 0;
        width: min(400px,100%);
    }

    /* list */

    .agent {
        padding: 50px 0 0;
    }
    .agent .pic {
        margin-top: 50px;
    }
    .agent .title {
        margin-top: 40px;
        font-size: 24px;
    }
    .agent_ul {
        margin: 20px 0 40px;
        padding-top: 30px;
        display: block;
    }
    .agent_ul .li {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    .agent_ul .li .name {
        margin-bottom: 10px;
    }
    .agent_ul .li .name a {
        font-size: 20px;
    }
    .agent_ul .li .name a .icon {
        width: 18px;
    }
    
}

/*----- contact -----*/

.contact_intro {
    padding: 50px 0 100px;
}
.contact_intro .inner {
    margin: 30px 0;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 5px;
}
.complete {
    padding: 100px 0 0;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .contact_intro {
        padding: 4vw 0;
    }
    .contact_intro .inner {
        margin: 3vw 0;
        padding: 3vw;
    }
    .complete {
        padding: 8vw 0 0;
    }
    
}
@media screen and (max-width: 767px){
   
    .contact_intro {
        padding: 50px 0;
    }
    .contact_intro .inner {
        margin: 20px 0;
        padding: 20px 5vw;
    }
    .spbrdisplaynone br{
        display: none;
    }
    .complete {
        padding: 50px 0 0;
    }
    
}

@media screen and (min-width: 767px){
.brdisplaynone br{
  display:none;
  }
}

