@charset "UTF-8";
/*
Theme Name: Prime Liner-wp
Description: Prime Liner様向け
Author: 株式会社Compass
Author URI: https://compass-okinawa.com/
Version: 20250515
*/

/*レイヤー宣言*/
@layer reset, page-base;
@import url(css/reset.css) layer(reset);

@layer page-base {
    :root {
        --mycolor-text: #001521;
        --mycolor-heading: #2988BC;
        --mycolor-accent: #FBBC04;
        --mycolor-back: #DFE5F2;
        --mycolor-gray: #848484;
        --mycolor-white: #F5F5F5;
        font-size: clamp(14px, calc(12px + 0.5vw), 16px);
    }

    *:where(:not(#wpadminbar *)) {
        color: var(--mycolor-text);
        border-color: #cccccc;
        font-family: "Raleway", "游ゴシック", "Yu Gothic", sans-serif;
        font-size: 1rem;
        letter-spacing: .05em;
        line-height: 1.75;
        text-wrap: wrap;
        max-inline-size: none;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        position: relative;
        overflow-x: hidden;
        display: flex;
        background: var(--mycolor-back);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.25rem;
        line-height: 1;
        color: var(--mycolor-heading);
        margin-bottom: 40px;

        .h2-sub {
            color: var(--mycolor-gray);
            font-weight: normal;
        }
    }

    h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    h4 {
        font-size: 1.75rem;
    }

    h5 {
        font-size: 1.5rem;
    }

    h6 {
        font-size: 1.25rem;
    }

    p {
        text-align: left;
        margin-bottom: 20px;
    }

    small {
        font-size: 0.75rem;
    }

    a {
        text-decoration-line: none;
    }

    ul {
        list-style-type: none;
    }

    img {
        /*参考: https://coliss.com/articles/build-websites/operation/css/sensible-defaults-for-img-elements.html */
        max-width: 100%;
        height: auto;
        vertical-align: middle;
        font-style: italic;
        background-repeat: no-repeat;
        background-size: cover;
        shape-margin: 12px;
    }

    section:not(.kv) {
        margin: 100px 0;
    }

    .container {
        width: 100%;
        padding: 0 30px;
        max-width: 1200px;
        overflow: hidden;
        margin: auto;
    }

    .page-sidebar {
        width: 60px;
        display: none;
    }

    .main-layout {
        width: 100%;
    }

    .cols {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;

        .right,
        .left {
            width: 100%;
        }
    }

    .button-wrapper {

        /*text-align: center;*/
        a {
            display: inline-block;
        }
    }

    .header-nav {
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 10;
        /* padding: 30px; */

        h1 {
            font-size: 26px;

            a {
                font-size: inherit;
            }

            img {
                display: inline;
                width: 50px;
                vertical-align: sub;
                margin-right: 20px;
            }
        }

        .menu-check {
            display: none;
        }

        .menu-button {
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            right: 30px;
            top: 50px;
            z-index: 100;
            cursor: pointer;
            background-color: #f5f5f5;
            width: 50px;
            height: 50px;
            border: 1px solid var(--mycolor-text);
            border-radius: 50%;
            box-shadow: 0 0 5px 3px var(--mycolor-white);

            span,
            span:before,
            span:after {
                content: '';
                display: block;
                height: 3px;
                width: 25px;
                border-radius: 3px;
                background: var(--mycolor-text);
                transition: 0.5s;
                position: absolute;
            }

            span:before {
                bottom: 8px;
            }

            span:after {
                top: 8px;
            }
        }
    }

    #menu-switch,
    #menu-switch-lp {
        &:checked {
            &~nav {
                bottom: 0;
            }

            &~.menu-button {

                span {
                    background: rgb(255 255 255 / 0%);

                    &::before {
                        bottom: 0;
                        transform: rotate(45deg);
                    }

                    &::after {
                        top: 0;
                        transform: rotate(-45deg);
                    }
                }
            }
        }

        &:not(:checked)~nav {
            bottom: 150%;
        }
    }

    .mobile-menu nav {
        width: 100%;
        height: 100%;
        position: fixed;
        bottom: 100%;
        left: 0%;
        z-index: 99;
        transition: .5s;
        text-align: center;
        margin-bottom: 0;

        a {
            font-size: 16px;
        }
    }

    .mobile-menu {
        nav ul {
            padding: 0;
            display: block;
            width: 100%;
            text-align: left;
            background-color: var(--mycolor-white);

            li {
                padding: 20px 4em;
                margin: 0;
                width: 100%;
                border-bottom: 1px solid var(--mycolor-gray);
            }
        }
    }

    footer {
        padding: 0;
        /*background-color: #d3d3d3;*/
        /*画像が見れない場合*/
        background-position: center;
        background-size: cover;

        .copyright {
            justify-content: space-between;
            padding: 30px 2em;

            * {
                color: var(--mycolor-gray);
            }

            a {
                font-size: inherit;
            }
        }
    }

    .footer-nav {
        margin: 0 auto;
        padding: 30px 2em;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-rcol {
        width: 100%;

        h2 {
            margin-bottom: 10px;

            a {
                transition-duration: .2s;
            }

            a:hover {
                color: var(--mycolor-gray);
            }
        }

        ul {
            margin-bottom: 20px;
        }

        li {
            a {
                color: var(--mycolor-gray);
                transition-duration: .2s;

            }

            a:hover {
                color: var(--mycolor-text);
            }
        }
    }

    .kv {
        height: 60lvh;
        margin: auto;
        padding: 50px 30px;
        background-color: var(--mycolor-white);

        .container {
            padding: 0;
        }

        .kv-logo {
            padding-bottom: 18lvh;
            width: fit-content;
        }

        h2 {
            text-align: center;
            color: var(--mycolor-text);

            .kv-sub {
                color: var(--mycolor-gray);
                font-weight: normal;
            }
        }
    }

    .button-readmore {
        border: 1px solid var(--mycolor-gray);
        color: var(--mycolor-gray);
        text-align: center;
        position: relative;
        padding: 10px 50px;
        transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
        z-index: 1;

        &::before {
            content: "";
            display: block;
            position: absolute;
            top: calc(50% - 8px);
            left: 85%;
            width: 70px;
            height: 10px;
            border: none;
            border-right: 2px solid var(--mycolor-gray);
            border-bottom: 1px solid var(--mycolor-gray);
            opacity: 1;
            transform: skew(60deg) translateX(0);
            transition: .3s;
        }

        &::after {
            background-color: var(--mycolor-gray);
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            width: 100%;
            height: 100%;
            transform: scale(0, 1);
            transform-origin: left top;
            transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
            z-index: -1;
        }

        &:hover {
            color: var(--mycolor-text);

            &::before {
                transform: translateX(100px);
                opacity: 0;
            }

            &::after {
                transform: scale(1, 1);
            }
        }

        img {
            width: 1em;
            display: inline;
            vertical-align: text-bottom;
        }
    }

    .movie {
        width: 100%;
        aspect-ratio: 16 / 9;
        margin-bottom: 40px;

        iframe {
            width: 100%;
            height: 100%;
        }
    }

    .sec-contact {
        .container {
            background-color: var(--mycolor-white);
            padding: 50px 0 0;
        }

        .left {
            padding: 0 30px;
        }

        .right {
            img {
                width: 100%;
            }
        }

        .button-wrapper {
            margin-bottom: 40px;

            a {
                color: var(--mycolor-white);
                background-color: var(--mycolor-accent);
                position: relative;
                text-align: center;
                font-size: 1.5rem;
                padding: 10px;
                display: inline-block;
                width: 100%;
                z-index: 1;
            }

            a::after {
                background-color: var(--mycolor-gray);
                position: absolute;
                top: 0;
                left: 0;
                content: '';
                width: 100%;
                height: 100%;
                transform: scale(0, 1);
                transform-origin: left top;
                transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
                z-index: -1;
            }

            a:hover::after {
                transform: scale(1, 1);
            }

        }
    }

    /*管理者用 ツールバーの上の余白をなくす*/
    html:has(#wpadminbar) {
        margin-top: 0 !important;
    }
}

/*front-page*/
.front-page {
    .kv {
        padding: 50px 30px;
        background-image: url(img/top-image1.jpg);
        background-size: cover;
        background-position: center left;
        /*height: 100lvh;*/
        height: 500px;

        * {
            color: var(--mycolor-white);
        }

        .frontkv-logo {
            width: fit-content;
            margin-bottom: 40px;

            img {
                width: 250px;
                height: 50px;
                /*background-color: aliceblue;*/
            }
        }

        .container {
            margin: auto;
            padding: 0;
        }

        h2 {
            font-size: 1.9rem;
            line-height: 1.5;
            text-align: left;
            text-shadow: 0 0 5px var(--mycolor-text);
        }

        .frontkv-sub {
            font-size: 1.2rem;
            display: inline-block;
            margin-top: 20px;
            line-height: 30px;
        }

        .latest-news {
            justify-content: left;
            align-items: center;

            >* {
                margin-right: 1em;
                margin-bottom: 0;
            }

            hr {
                width: 280px;
                border: 1px solid var(--mycolor-white);
            }
        }

        .right {
            display: none;
        }
    }

    #front-infolist {
        h3 {
            font-size: 1.5rem;
            font-weight: normal;
            border-bottom: 1px solid var(--mycolor-gray);
            padding-bottom: 20px;
            transition-duration: .2s;


            time {
                font-size: 0.75rem;
                color: var(--mycolor-gray);
            }
        }

        a:hover {
            h3 {
                color: var(--mycolor-gray);
            }
        }

        .button-wrapper {
            text-align: right;
            margin-right: 10%;
        }
    }

    #front-about {
        background-color: var(--mycolor-white);
        margin-top: 0;

        .left {
            background-color: aquamarine;
            background-image: url(img/front-about.jpg);
            background-size: cover;
            background-position: top right;
            height: 100lvh;
            align-self: stretch;
        }

        .right {
            padding: 30px;
        }
    }

    #front-outline {
        .img-box {
            margin-bottom: 40px;

            h3 {
                text-align: center;
            }

            .button-wrapper {
                text-align: right;
                margin-right: 10%;
            }
        }
    }
}

/*about*/
.about-page {

    section:not(.kv, .sec-contact) {
        h2 {
            text-align: center;
        }
    }

    #concept {
        margin: 0;
        padding-top: 60px;
        background-color: #ffffff;

        .container {
            position: relative;
        }

        .concept-left,
        .concept-right {
            position: relative;

            * {
                font-weight: bold;
            }

            h3 {
                position: relative;
                text-align: center;
                line-height: 1.3;
                width: 250px;
                height: 50px;
                background-color: var(--mycolor-back);
                margin: 0 0 20px;
                z-index: 0;
            }

            h3::after {
                position: absolute;
                content: "";
                display: block;
                top: -5px;
                left: -5px;
                width: 250px;
                height: 50px;
                border: 1px solid var(--mycolor-text);
                z-index: -1;
            }

            img {
                width: 100%;
                margin-bottom: 20px;
            }
        }

        .concept-center {
            * {
                font-weight: bold;
            }

            h3 {
                text-align: center;
                vertical-align: middle;
                background-image: url(img/about-h3-bg.png);
                background-position: center;
                background-size: contain;
            }

            p {
                text-align: center;
            }
        }
    }

    #policy {
        .cols {
            justify-content: center;
        }

        .policy-hex {
            position: relative;
            width: 200px;
            height: 230px;
            background-image: url(img/about-hex.png);
            margin: 20px 0;

            p {
                text-align: center;
                color: var(--mycolor-heading);
                font-weight: bold;
                margin-bottom: 0;
                width: 100%;
                position: absolute;
                top: 44%;
            }
        }
    }

    #company {
        .cols {
            justify-content: space-evenly;
        }

        .button-wrapper {
            margin-top: 40px;

            a {
                width: 250px;
            }
        }
    }

    .shikiri {
        margin: 0;

        img {
            width: 100%;
        }
    }

    .company-table {
        border-collapse: collapse;
        width: 100%;

        th,
        td {
            display: block;
            padding: 10px 0;
        }

        th {
            text-align: left;
        }

        td {
            border-bottom: 1px solid var(--mycolor-gray);
        }
    }
}

/*buisiness outline*/
.outline-page {

    section:not(#next-project, to-contact-page) .container> :where(h2, h3) {
        text-align: center;
    }

    .outline-cols {
        position: relative;
        display: flex;
        flex-wrap: wrap;

        .left,
        .right {
            position: relative;
            width: 100%;
        }

        .left img {
            width: 100%;
        }

        .right {
            padding: 30px;
            height: 100%;
            background-color: var(--mycolor-white);
        }
    }

    .activity-col {
        margin-bottom: 20px;
    }

    .activity-text {
        padding: 30px;
        background-color: var(--mycolor-white);

        .button-wrapper {
            margin-bottom: 20px;
        }
    }

    #next-project {
        margin: 50px 30px;

        * {
            color: var(--mycolor-white);
        }

        p {
            margin-bottom: 20px;
        }

        .container {
            padding: 30px;
            background-color: var(--mycolor-text);
        }

        .prime-img {
            margin-bottom: 40px;
        }

        .cf-link {
            text-decoration: underline;
        }

        .sns-links {
            margin-bottom: 40px;

            a {
                display: inline-block;
                background-color: var(--mycolor-white);
                padding: 5px;
                border-radius: 5px;
                margin-right: 1em;
            }

            img {
                width: 40px;
            }
        }
    }
}

/*contact*/
.contact-page {
    #contact-intro {
        * {
            text-align: center;
        }
    }

    #contact-area {
        .left {
            img {
                width: 100%;
            }
        }

        .right {
            padding: 40px 0;

            form {
                background-color: var(--mycolor-white);
                border-radius: 10px;
                padding: 30px;

                div {
                    >* {
                        display: block;
                        width: 100%;
                    }
                }

                label,
                p {
                    margin-bottom: 5px;

                    a {
                        color: var(--mycolor-heading);
                        text-decoration: underline;
                    }
                }

                input,
                textarea {
                    padding: 5px;
                    width: 100%;
                }

                textarea {
                    height: 200px;
                }

                .wpcf7-form-control-wrap {
                    margin-bottom: 20px;
                    width: 100%;
                }

                .wpcf7-list-item {
                    margin: 0 0 20px;

                    input {
                        width: auto;
                    }
                }

                .button-wrapper {
                    color: var(--mycolor-white);
                    background-color: var(--mycolor-accent);
                    position: relative;
                    text-align: center;
                    font-size: 1.5rem;
                    padding: 10px;
                    margin-bottom: 0;
                    display: inline-block;
                    width: 100%;
                    z-index: 1;

                    /*input[type="submit"] {
                        color: var(--mycolor-white);
                        background-color: var(--mycolor-accent);
                        position: relative;
                        text-align: center;
                        font-size: 1.5rem;
                        padding: 10px;
                        margin-bottom: 0;
                        display: inline-block;
                        width: 100%;
                        z-index: 1;
                    }

                    input[type="submit"]::after {
                        background-color: var(--mycolor-gray);
                        position: absolute;
                        top: 0;
                        left: 0;
                        content: '';
                        width: 100%;
                        height: 100%;
                        transform: scale(0, 1);
                        transform-origin: left top;
                        transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
                        z-index: -1;
                    }

                    input[type="submit"]:hover::after {
                        transform: scale(1, 1);
                    }*/

                    &::after {
                        background-color: var(--mycolor-gray);
                        position: absolute;
                        top: 0;
                        left: 0;
                        content: '';
                        width: 100%;
                        height: 100%;
                        transform: scale(0, 1);
                        transform-origin: left top;
                        transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
                        z-index: -1;

                        &:hover {
                            transform: scale(1, 1);
                        }
                    }

                    .wpcf7-submit {
                        background-color: transparent;
                        padding: 0;
                        font-size: inherit;
                        color: inherit;
                    }

                    .wpcf7-spinner {
                        display: none;
                        width: auto;
                        margin: 0;
                    }
                }

            }
        }
    }
}

/*information*/
.information {

    #info-list,
    #info-news {
        .container {
            background-color: var(--mycolor-white);
        }
    }

    #info-news {
        .container {
            padding: 30px;
        }

        .post-nav {
            display: flex;
            justify-content: space-between;
            font-weight: bold;
        }
    }

    .info-link {
        border-bottom: 1px solid var(--mycolor-gray);
        margin: 40px auto;

        .right {
            align-self: end;
        }
    }
}

/*privacy policy*/
.privacy-page {

    #privacy-policy {
        margin: 50px auto 100px;

        p,
        ul,
        ol {
            padding-bottom: 20px;
        }

        ul,
        ol {
            padding-left: 2em;

            li {
                text-indent: -1.5em;
                padding-left: 2em;
            }
        }

        ul {
            list-style: disc inside;
        }
    }
}

/*lp*/
.main-layout:has(.mate-next) {
    #header {
        display: none;
    }
}

.mate-next {

    h2,
    h3,
    .center {
        text-align: center;
    }

    details {
        border-top: 1px solid #cccccc;
        padding: 20px 1em;

        &[open] {
            padding-bottom: 0;

            summary::after {
                transform: rotate(180deg);
                top: 10px;
            }
        }

        p {
            padding: 20px 1em 0px;
        }
    }

    summary {
        list-style-type: none;
        position: relative;

        &::after {
            content: "";
            display: block;
            position: absolute;
            top: 5px;
            right: 0;
            width: 25px;
            height: 16px;
            margin-left: 6px;
            background-image: url(./img/lp/chevron-down.svg);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transform-origin: center 43%;
            transition: transform 0.4s;
        }
    }

    .lp-title {
        background: linear-gradient(to right, #48c6ef 0%, #6f86d6 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 36px;
    }

    .lp-title.reverse {
        background: linear-gradient(to left, #48c6ef 0%, #6f86d6 100%);
        background-clip: text;
        -webkit-background-clip: text;
    }

    .lp-to-contact {
        background-color: #2988BC;
        display: inline-block;

        a {
            color: #ffffff;
        }
    }

    .bg-hishi {
        position: relative;
        padding: 1em;
        margin-bottom: 1em;

        span {
            font-size: 18px;
            font-weight: bold;
        }

        &:before {
            background-color: white;
            content: "";
            display: inline-block;
            position: absolute;
            top: 0;
            width: 100%;
            max-width: 600px;
            height: 100%;
            transform: skewX(340deg) translateX(-15px);
            z-index: -1;
        }
    }

    .intro-shadow {
        position: relative;
        color: #ffffff;
        font-size: 32px;
        font-weight: bold;
        text-align: center;

        &::after {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            white-space: pre-wrap;
            background: linear-gradient(to left, #48c6ef 0%, #6f86d6 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            content: "日本の経済を動かす皆さまに、\A資料作成の分野で少しでもお役に立ちたい。";
            z-index: -1;
            filter: blur(5px);
            font-weight: bold;
        }
    }

    .kv {
        background-position: center;
        background-image: url(./img/lp/kv-bg.png);
        background-size: cover;
        height: 90lvh;
        align-content: center;

        .container>* {
            margin: 20px auto;
        }

        .lp-to-contact {
            display: block;
            width: fit-content;
            margin: auto;

            a {
                display: inline-block;
                padding: 1em 2em;
            }
        }
    }

    #point {
        .left {
            img {
                margin: auto;
            }
        }

        .box-point {
            box-shadow: 1px 1px 5px 1px #cccccc;
            border-radius: 10px;
            margin: 40px 0;
            overflow: clip;
            display: flex;
            background: white;
            align-items: center;

            .box-point-text {
                padding: 1em;

                h3 {
                    font-size: 24px;
                    text-align: left;
                }
            }
        }
    }

    #message {
        .message-cols {
            position: relative;
            display: flex;
            flex-wrap: wrap;

            h3 {
                position: relative;
                text-align: left;

                .lp-title {
                    position: relative;
                    z-index: 1;
                    padding-left: .5em;
                    letter-spacing: .025em;
                }

                .message-h3-sub {
                    position: absolute;
                    top: -25px;
                    left: 0;
                    z-index: 0;
                    color: var(--mycolor-back);
                    letter-spacing: .5em;
                    font-size: 48px;
                }
            }

            .left,
            .right {
                position: relative;
                width: 100%;
            }

            .left img {
                width: 100%;
            }

            .right {
                padding: 30px;
                height: 100%;
                background-color: var(--mycolor-white);
            }
        }

        .message-2 {
            background-color: #2988bc;
            padding: 40px 0;

            h3 {
                color: #ffffff;
                margin-bottom: 0;
            }
        }
    }

    #faq {
        .faq-group {
            margin-bottom: 40px;

            details:last-of-type {
                border-bottom: 1px solid #cccccc;
            }
        }
    }
}


@media screen and (min-width: 768px) {
    @layer page-base {
        .page-sidebar {
            display: block;
            position: relative;
            /* height: 100lvh; */
            background-color: var(--mycolor-white);
            box-shadow: -10px 0px 10px 5px var(--mycolor-gray);
            z-index: 1;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            background-size: cover;

            span {
                display: inline-block;
                position: fixed;
                left: 20px;
                bottom: 20px;
                z-index: 2;
                width: 13px;
                padding: 0px 10px 120px;
                color: var(--mycolor-text);
                font-size: 16px;
                line-height: 0;
                text-decoration: none;
                writing-mode: vertical-lr;
                transition: .5s;
                overflow: hidden;
                margin: 0;
                transform: translateX(-100px);
            }

            a:hover {
                .scroller {
                    color: var(--mycolor-gray);
                }

                .scroller::after {
                    background-color: var(--mycolor-gray);
                }
            }

            .side-logo {
                bottom: 50lvh;
                padding: 0;
                width: 20px;
            }

            .show {
                transform: translateX(0);
            }

            .scroller::before,
            .scroller::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 2px;
                height: 100px;
            }

            .scroller::before {
                background: var(--mycolor-white);
            }

            .scroller::after {
                background: var(--mycolor-text);
                transition: .5s;
                animation: scrl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
            }

            .scroller.top::after {
                background: var(--mycolor-text);
                animation: scrl 1.5s cubic-bezier(1, 0, 0, 1) infinite reverse;
            }
        }

        .main-layout {
            width: calc(100% - 60px);
            /* height: 100lvh;
            overflow-y: scroll; */
            scroll-behavior: smooth;
        }

        .footer-rcol {
            width: 50%;
        }

        .sec-contact {
            .container {
                margin-right: 0;
                margin-left: auto;
            }
        }

        /*スクロール指示 アニメーション*/
        @keyframes scrl {
            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%;
            }
        }
    }

    .front-page {
        .kv {
            height: 100lvh;

            .frontkv-logo {
                margin-bottom: 15lvh;
            }
        }

        #front-infolist {

            .left,
            .right {
                width: 50%;
            }

            .left img {
                margin: auto;
            }
        }
    }

    .about-page {
        #concept {
            margin-top: 0;
            background-color: #ffffff;

            .concept-left,
            .concept-right {
                position: relative;
                margin-bottom: 40px;

                * {
                    font-weight: bold;
                }

                h3 {
                    margin: 0;
                    top: 20px;
                }

                /* p {
                    display: inline-block;
                } */
            }

            .concept-left {
                h3 {
                    left: -10px;
                }
            }

            .concept-right {

                h3 {
                    right: -10px;
                    margin-right: 0;
                    margin-left: auto;
                }

                p {
                    text-align: right;
                }
            }

            .concept-center {
                h3 {
                    text-align: center;
                    height: 120px;
                    line-height: 4;
                    vertical-align: middle;
                }
            }
        }

        #policy {
            .cols {
                justify-content: space-between;
                max-width: 760px;
                margin: 0 auto;
            }
        }
    }

    .outline-page {
        .outline-cols {
            position: relative;
            display: flex;
            flex-wrap: wrap;
        }

    }

    .mate-next {

        #message {
            .message-cols {
                position: relative;
                display: flex;
                flex-wrap: wrap;
            }
        }
    }
}

@media screen and (min-width: 1024px) {
    @layer page-base {
        .cols {

            .left,
            .right {
                width: 50%;
            }
        }

        .footer-nav {
            .left {
                width: 40%;
            }

            .right {
                width: 60%;
            }
        }

        .footer-rcol {
            width: 25%;
        }

        .sec-contact {
            margin-top: 100px;
            margin-bottom: 100px;

            .container {
                padding: 50px 0;
            }
        }
    }

    .front-page {
        .kv {

            h2 {
                font-size: 2rem;
            }

            .frontkv-sub {
                font-size: 1.5rem;
                line-height: inherit;
            }

            .left {
                width: 60%;
            }

            .right {
                display: block;
                width: 40%;
                animation: index-kv 1s ease-in-out 1 forwards;

                img {
                    width: 100%;
                }
            }
        }

        #front-outline {
            .cols {
                justify-content: space-between;
            }

            .img-box {
                width: 45%;
            }
        }
    }

    .about-page {
        .company-table {
            border-collapse: collapse;

            th,
            td {
                display: table-cell;
                padding: 30px 1em;
            }


            th {
                border-bottom: 1px solid var(--mycolor-gray);
            }
        }
    }

    .contact-page {
        #contact-area {
            .right {
                padding: 30px 30px 0;
            }
        }
    }

    .information {

        #info-list,
        #info-news {
            .container {
                padding: 40px 30px;
                margin-right: 0;
            }
        }

        .info-link {

            .left {
                width: 75%;
            }

            .right {
                width: 25%;
            }
        }
    }

    @keyframes index-kv {
        0% {
            opacity: 0;
            transform: translateY(100vh);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media screen and (min-width: 1300px) {
    .sec-contact {
        .container {
            padding: 50px 0;
            max-width: 90%;
        }

        .left {
            padding: 0 100px;
        }
    }

    .outline-page {
        .outline-cols {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 80px;

            .left,
            .right {
                position: relative;
            }

            .left {
                width: 50%;
                left: 5%;

                img {
                    width: 100%;
                }
            }

            .right {
                width: 50%;
                padding: 30px;
                height: 100%;
                bottom: -120px;
                right: 5%;
                background-color: var(--mycolor-white);
            }
        }

        .activity-cols {
            display: flex;
            align-items: stretch;

            .activity-col {
                width: 50%;
                margin: 1em;
                background-color: var(--mycolor-white);
            }
        }
    }

    .information {

        #info-list,
        #info-news {
            .container {
                max-width: 90%;
                padding: 40px 100px;
            }
        }
    }

    .mate-next {
        will-change: auto;

        #message {
            .message-cols {
                position: relative;
                display: flex;
                flex-wrap: wrap;
                margin-bottom: 80px;

                .left,
                .right {
                    position: relative;
                }

                .left {
                    width: 40%;
                    left: 5%;

                    img {
                        width: 100%;
                    }
                }

                .right {
                    width: 60%;
                    padding: 30px;
                    height: 100%;
                    bottom: -120px;
                    right: 5%;
                    background-color: var(--mycolor-white);
                }
            }
        }
    }
}