@charset "utf-8";

@media screen and (max-width: 960px) {

    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: block !important;
    }

    .flex-pc {
        display: block;
    }

    .flex-end-pc {
        display: block;
    }

    .flex-sp {
        display: flex;
    }

    /*- 共通部分 -*/
    .logo {
        width: 200px;
    }

    .sp-fontsize {
        font-size: 12px;
    }

    .sp-eighteen {
        font-size: 18px;
    }

    /*- header -*/
    .header {
        height: 53px;
    }

    .sp-header {
        position: fixed;
        z-index: 100;
        width: 100%;
        background: #fff;
    }

    .menu-sp {
        width: 100%;
        height: 0;
        z-index: 100;
        right: 0;
        top: 70px;
        position: fixed;
        background: #fff;
        transition: height 0.2s ease-out 0.3s;
    }

    .menu-sp.active {
        height: 100vh;
        transition: height 0.2s ease-out;
    }

    .menu-sp>li {
        width: 70%;
        height: 0;
        margin: 10px auto;
        transition: all 0.5s;
    }

    .menu-sp.active>li {
        height: 50px;
    }

    .menu-sp>li>a {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        color: #000;
        opacity: 0;
        transition: opacity 0.2s ease-out 0s;
    }

    .menu-sp.active>li>a {
        opacity: 1;
        transition: opacity 0.2s ease-out 0.3s;
    }

    /* hamburger */
    .menu-btn {
        position: fixed;
        width: 70px;
        height: 30px;
        cursor: pointer;
        top: 25px;
        right: 25px;
        z-index: 100;
    }

    .menu-btn.active {
        z-index: 1000;
    }

    .menu-btn.active span {
        background-color: #000;
    }

    .menu-btn span {
        position: absolute;
        left: 0;
        height: 3px;
        background-color: #535353;
        border-radius: 4px;
    }

    .menu-btn, .menu-btn span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }

    .menu-btn span:nth-of-type(1) {
        top: 0;
        width: 100%;
    }

    .menu-btn span:nth-of-type(2) {
        top: 13px;
        margin-left: 25%;
        width: 75%;
    }

    .menu-btn span:nth-of-type(3) {
        bottom: 0;
        margin-left: 50%;
        width: 50%;
    }

    .menu-btn.active span:nth-of-type(1) {
        width: 25%;
        transform: translateX(53px) rotate(45deg);
    }

    .menu-btn.active span:nth-of-type(2) {
        width: 50%;
        transform: translateX(17px) translateY(-2px) rotate(45deg);
    }

    .menu-btn.active span:nth-of-type(3) {
        width: 100%;
        transform: translateX(-27px) translateY(-4px) rotate(45deg);
    }

    /*- top -*/
    .back__img {
        height: 180px;
    }

    .top__text {
        height: 180px;
    }

    .top__text>h1>p {
        margin-top: 15px;
        font-size: 10px;
    }

    /*- wrapper -*/
    .wrapper {
        margin-top: 200px;
    }

    .wrapper__title {
        margin-top: 50px;
    }

    .wrapper__top {
        font-size: 18px;
    }

    .wrapper__top>p {
        margin-top: 10px;
        font-size: 10px;
    }

    .head-border h2 {
        width: 50%;
        font-size: 15px;
    }

    .wrapper__bottom {
        padding-bottom: 50px;
    }

    /*- wrapper content -*/
    .wrapper__content {
        justify-content: center;
        height: 100%;
    }

    .content__text {
        width: 100%;
        height: 100%;
        padding: 80px 20px;
    }

    .content__text>h3 {
        font-size: 18px;
    }

    .content__text>p {
        margin-top: 30px;
        font-size: 14px;
    }

    .content__tittle {
        font-size: 17px;
    }

    .sp-img {
        width: 80%;
        margin: 10px auto 30px;
    }

    .sp-img img {
        border-radius: 10px;
    }

    .content__btn {
        width: 50%;
        height: 40px;
        margin-top: 25px;
        font-size: 10px;
    }
    
    .ark-content__btn {
        margin-top: 80px;
    }

    /*- index -*/
    .index__topimg {
        height: 300px;
    }

    .index-top {
        margin-top: 150px;
        font-size: 16px;
    }

    .top__box {
        transform: scale(0.5);
        margin-top: 10px;
    }

    .index__about {
        margin-top: 280px;
    }

    .about__block {
        padding: 30px 10px;
    }

    .about__box {
        padding: 30px 15px;
    }

    .about__img {
        margin-right: 15px;
        padding: 5px;
    }

    .about__top {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .about__top p {
        margin-top: 5px;
        font-size: 10px;
    }

    .index__wrapper>.wrapper__content {
        height: 500px;
    }

    .index__backblock {
        width: 90%;
        padding: 15px;
    }

    .left__text, .right__text {
        margin: 100px 0 0;
    }

    .index__number {
        top: 30px;
        left: 35px !important;
        right: auto !important;
        font-size: 40px;
    }

    .index__mainblock {
        padding: 80px 20px 30px;
    }

    .right__img {
        width: 100%;
    }

    .contact__block {
        padding: 50px 0 20px;
    }

    .contact__top>p {
        margin: 15px 0 10px;
        font-size: 10px;
    }

    .contact__btn {
        width: 70%;
        margin: 20px auto;
        padding: 15px 10px;
    }

    .contact__btn a {
        color: #fff;
    }

    /*- ver -*/
    .ark__ver>h4 {
        font-size: 14px;
    }

    .ark__ver>p {
        margin: 5px 0 15px;
        font-size: 12px;
    }

    .ark_link {
        margin-top: 20px;
        padding: 3px 0;
        background: #AE3D91;
        font-size: 10px;
        color: #fff;
        border-radius: 5px;
    }

    /*- indonesia -*/
    .idn__ver .back__str {
        font-size: 60px;
    }

    .idn__ver .top__front {
        padding: 80px 20px 30px;
        font-size: 20px;
    }

    .idn__ver .top__front>p {
        margin-top: 20px;
        font-size: 10px;
    }

    .idn__ver .content__btn {
        width: 30%;
        margin-top: 30px;
    }

    .idn__ver.back__str img {
        width: 70%;
    }

    .idn__ver .top__text {
        padding: 30px;
        font-size: 17px;
    }

    .top__li {
        font-size: 10px;
        width: 88%;
        margin: 30px auto;
    }

    .idn__main .base__block>h3 {
        margin: 50px 20px 20px;
        font-size: 20px;
    }

    .right__slider {
        width: 100%;
        margin-top: 20px;
    }

    .team__pf {
        height: 350px;
    }

    .pf__block img {
        margin: auto;
        border-radius: 50%;
    }

    .pf__name>p {
        font-size: 10px;
    }

    .pf__name>h4 {
        font-size: 14px;
    }

    .pf__text {
        margin-top: 20px;
    }

    .pf__text>p {
        font-size: 10px;
    }

    .li__left {
        width: 100%;
    }

    .li__left {
        font-size: 10px;
    }

    .left__top {
        font-size: 14px;
    }

    .li__right {
        width: 90%;
        margin: 20px auto 40px;
    }

    .main__left {
        width: 90%;
        margin: auto;
    }

    .main__left a {
        margin: 20px 0 0 0;
        font-size: 12px;
    }

    .left__li {
        width: 100%;
        font-size: 14px;
    }

    /*- slider -*/
    .wrapper__slider {
        width: 80%;
    }

    .slider__box {
        height: 250px;
        padding: 30px 20px;
    }

    .slider__img {
        margin-right: 15px;
    }

    .slider__text p {
        margin: -15px;
        transform: scale(0.8);
        font-size: 10px;
    }

    .slider__tittle {
        margin-bottom: 20px;
        font-size: 11px;
    }

    .pr__slider-sp {
        width: 80%;
        height: 80%;
        margin: 20px auto 80px;
    }

    .pr__slider-sp img {
        border-radius: 10px;
    }

    .pr__slider-sp .bx-wrapper {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none;
        background: none;
    }

    /*- logo_exp -*/
    .exp__block {
        width: 80%;
    }

    /*- rep_greet -*/
    .greet__left {
        width: 100%;
    }

    .info__li {
        width: 100%;
        font-size: 12px;
    }

    /*- inquiry -*/
    .inquiry__form {
        width: 100%;
    }

    .radio__inline {
        width: 50%;
        font-size: 10px;
    }
}