html,
body {
    width: 100vw;
    height: 100vh;
    -ms-overflow-x: hidden;
    overflow-x: hidden;
    margin: 0;
    padding: 0;

}



/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　articleカラム設定　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/


.top-mar {
    margin-top: -3vh;
}

.top-mar2 {
    margin-top: 5vh;
}

.top-mar3 {
    margin-top: 15vh;
}

.cen {
    place-content: center;
}

.pita {
    margin-top: 0vh;
}

/* 上の余白つめるやつ */


/**---------------✼　article設定(pc/sp)　✼---------------**/




@media screen and (min-width: 1000px) {

    /* PC用 */
    article {
        /* article のスタイル */
        width: 75vw;
        color: #524039; /*rgba(82,64,57,1);*/
        /*色調整_文字色*/
        display: grid;
        place-items: start center;
            border-radius: 20px;
        gap: 10px;
        padding: 10px;
        margin: 300px auto 0;
        /*上-左右-下/上-右-下-左*/
        z-index: 0;
        /*調整_レイヤー*/
       

        .1co {
        
        }

        /* article の中の 1co のスタイル */
    }
}

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

    /* SP用 */
    article {
        /* article のスタイル */
        width: 100vw;
        color: #524039; /*rgba(82,64,57,1);*/
        /*色調整_文字色*/
        display: grid;
        place-items: start center;
            border-radius: 20px;
        gap: 3px;
        padding: 5px;
        margin: 300px auto 0;
        /*上-左右-下/上-右-下-左*/
        z-index: 0;
        /*調整_レイヤー*/
        

        .1co {
         
        }

        /* article の中の 1co のスタイル */
    }
}



/**---------------✼　.fitカラム設定(pc/sp)　✼---------------**/

@media screen and (min-width: 1000px) {

    /* PC用 */
    .fit {
        grid-template-columns: repeat(auto-fit, minmax(650px, 1fr));
    }
}

/* 2個ならぶよ */

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

    /* 1000px以下に適用されるCSS（スマホ用） */
    .fit {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}



/**---------------✼　.BG半透明　✼---------------**/

.BG-white50 {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 15px 3px #cecdd5;/* <length> | <length> | <length> | <length> | <color> */

}



/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　余白用air設定　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/


.air {
    background-image: url(../mate/img/favi.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 25vh;
}

.air_mini {
    background-color: rgba(255,255,255,0);
    width: 100%;
    height: 50px;
}



/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　Section設定　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/

.sec-blur{
    box-shadow: 10px 5px black;
    
}


.1co-w100 {
    width:100%;
}

.2co-works{
    padding:0;
    width:50%;}

.2co-w45 {
    padding:0;
    width: 50%;
    float: left;
}


/**---------------✼　sectionカラム設定(pc/sp)　✼---------------**/


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

    /* 1000px以下に適用されるCSS（スマホ用） */
    section {
        width: 100%;
            border-radius: 20px;
        padding: 0.2em;
    }
}


@media screen and (min-width: 1000px) {

    /* PC用） */
    section {
            border-radius: 20px;
        width: 650px;
        padding: 0.5em;
        /*上-左右-下/上-右-下-左*/

    }
}

/**---------------✼　sectionカラム設定(pc/sp)　✼---------------**/


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

    /* 1000px以下に適用されるCSS（スマホ用） */
    .section {
        width: 100%;
            border-radius: 20px;
        padding: 0.2em;
    }
}


@media screen and (min-width: 1000px) {

    /* PC用） */
    .section {
            border-radius: 20px;
        width: 780px;
        padding: 0.5em;
        /*上-左右-下/上-右-下-左*/

    }
}



/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　arrow-anime設定　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/


#page_other2 {}

.arrow-loop {
    animation: loop_animation_arrow 1s ease-in alternate infinite;
}

@keyframes loop_animation_arrow {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(5px);
    }
}



/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　Scroll　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/


::-webkit-scrollbar-track {
    background: rgba(250, 248, 246, 1);
    /*色調整_背景色*/
    border-radius: 5px;
    background: rgba(250, 248, 246, 1);
    /*色調整_背景色*/
}

::-webkit-scrollbar-thumb {
    background: #BDA76D;
    border-radius: 5px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}


/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　Overlay　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/


/* モーダルウィンドウ */
.modal-window {
    display: none;
    position: fixed;
    width: 100vw;
    height: 105vh;
    background-color: rgba(250, 248, 246, 0);
    z-index: 71;
    padding: 0;
    margin:-14px 0 0 0;
    overflow-y: hidden;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
    border:0;
    /* スクロール可能な要素に付与する必要有り */
}

/* オーバーレイ */
.mo-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(250, 248, 246, 0.9);
    width: 100vw;
    height: 105vh;
    z-index: 70;
    border:0;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
    overscroll-behavior-y: none; /* 適用される */
}



.moda_vh{
    width:100vw;
    height: 105vh;
    overflow-x: hidden;
    margin: 0;
    border:0;
    
}




.mo_close {
    margin: -300px;
    margin: 0 auto;
    width: 20%;
    position: fixed;
    bottom: 0;
    z-index: 50;
    margin-bottom: 50px;
}

/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　iframe/Readmeなどのやつ用　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/


.momoda {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
}



/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　メディア用　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media(max-width: 1000px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}



/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　TopMovie　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/


#video-area {
    position: fixed;
    z-index: -101;
    /*調整_レイヤー*/
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -101;
    /*調整_レイヤー*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh;
    /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw;
    /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

#video-area:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -101;
    /*調整_レイヤー*/
    width: 100vw;
    height: 100vh;
    background-color: rgba(250, 248, 246, 0.7);
    /*色調整_背景色*/
    background-image: radial-gradient(rgba(250, 248, 246, 1) 30%, transparent 31%), radial-gradient(rgba(250, 248, 246, 1) 30%, transparent 31%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;


}


/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　埋め込みYoutubeVideo用　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/

iframe.tube {
    width: 100%;
    height: auto;
    aspect-ratio: >16 / 9;
    max-width: 560px;
    min-height: 315px;
    display: block;
    margin: auto;
}

.tube {
    width: 100%;
    height: auto;
    aspect-ratio: >16 / 9;
    max-width: 560px;
    min-height: 315px;
    display: block;
    margin: auto;
}




/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　背景JS用　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/

#particles-js {
    position: fixed;
    /*描画固定*/
    z-index: -100;
    /*調整_レイヤー*/
    width: 100%;
    height: 100%;
    background: rgba(250, 248, 246, 0);
    /*色調整_背景色*/
}

#wrapper {
    position: relative;
    /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;
    /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width: 100%;
    height: 100%;
}


/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　アコーディオン用　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/


@-webkit-keyframes bumpUp {
    20% {
        transform: translateY(-4px);
    }

    100% {
        transform: none;
    }
}

@keyframes bumpUp {
    20% {
        transform: translateY(-4px);
    }

    100% {
        transform: none;
    }
}

.acco-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #524039;
    /*色調整_文字色*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.acco-menu > div {
    display: block;
}

.acco-menu > div > input {
    display: none;
}

.acco-menu > div > input:checked ~ label {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    -webkit-animation: none;
    animation: none;
    transition: 0.1s;
}

.acco-menu > div > input:checked ~ label > .toggleIcon::before {
    opacity: 0;
    transform: rotate(45deg);
    text-shadow: 0 0 3px #333;
}

.acco-menu > div > input:checked ~ label > .toggleIcon::after {
    transform: none;
    transform: rotate(180deg);
}

.acco-menu > div > input:checked ~ .options > section {
    margin-bottom: 2em;

}

.acco-menu > div > input:checked ~ .options > section > div {
    /*文字部分表示_アニメ*/
    height: 600px;
    opacity: 1;
    transition: 0.7s;
    overflow-y: auto;
    transition-property: opacity, height;
    animation-name: slidein;
    /* animation-duration: 0.6s;
    transition-timing-function: ease;
  animation-name: slidein;   */
    /*文字盤_アニメ　animation-duration: 0.6s;　　*/
}

.acco-menu > div > label:hover {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(189, 167, 109, 0.85) 85%);
    /*色調整_ホバー背景色*/
    transition: 0.8s cubic-bezier(0.45, 0.01, 0.27, 2);
    transition-property: margin, opacity, height;
}


.acco-menu > div > label {
    display: block;
    padding: 1em 1em 1em 3em;
    background-image: linear-gradient(180deg, rgba(206, 185, 150, 1), rgba(189, 167, 109, 0.85) 85%);
    /*色調整_背景色*/
    position: relative;
    z-index: 10;
    border-radius: 3px;
    font-weight: 600;
    cursor: crosshair;
    box-shadow: 0 0 0 #FFF;
    transition: 0.1s;
}


.acco-menu > div > label > .toggleIcon {
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    left: 0.8em;
    top: 0;
    bottom: 0;
    margin: auto;
}

.acco-menu > div > label > .toggleIcon::before,
.acco-menu > div > label > .toggleIcon::after {
    content: "";
    position: absolute;
    background: #FFF;
    /*色調整_+アイコン色*/
    transition: 0.3s cubic-bezier(0.45, 0.01, 0.27, 1.4);
}

.acco-menu > div > label > .toggleIcon::before {
    width: 2px;
    height: 100%;
    left: calc(50% - 2px);
    margin-left: 1px;
}

.acco-menu > div > label > .toggleIcon::after {
    width: 100%;
    height: 2px;
    top: calc(50% - 1px);
}

.acco-menu > div > .options {
    position: relative;
    overflow: hidden;
}

.acco-menu > div > .options > section {
    font-size: 0.9em;
    list-style: none;
    margin: -1em 0.6em 1em;
    /* 上/左右/下 */
    padding: 0;
    border-radius: 0 0 4px 4px;
    border: 5px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s cubic-bezier(0.45, 0.01, 0.27, 2);
    perspective: 600px;
}

.acco-menu > div > .options > section > div {
    width: 100%;
    height: 1px;
    /*  display: none; */
    opacity: 0;
    padding: 0.5em;
    /* 上下/左右 */
    margin-top: -5em;
    margin-left: -12px;
    border-bottom: 1px solid #BDA76D;
    /*色調整_開いたとこ下ボーダー色*/
    position: relative;
    cursor: crosshair;
    background: rgba(255, 255, 255, 0.7);
    /*色調整_開いたとこ背景色*/
    color: #524039;
    /*色調整_文字色*/
    z-index: 5;
    transition: 0.8s cubic-bezier(0.45, 0.01, 0.27, 2);
    animation-name: slideoff;
    transition-property: margin, opacity, height;
}

.acco-menu > div > .options > section > div:first-child {
    padding-top: 0em;
}

.acco-menu > div > .options > section > div:last-child {
    border: 0;
    border-radius: 0 0 3px 3px;
}

.acco-menu > div > .options > section > div:hover {
    background: rgba(255, 255, 255, 0.7);
    /*色調整_開いたとこ背景色_オンマウス*/
    box-shadow: 5px 0 rgba(255, 255, 224, 0.1), -5px 0 rgba(255, 255, 224, 0.1);
}


@keyframes slidein {
    from {
        margin-top: -10%;
    }

    85% {
        margin-top: 0.4%;
    }

    to {
        margin-top: 0%;
    }
}

@keyframes slideoff {
    from {
        margin-bottom: -10%;
    }

    85% {
        margin-bottom: -10.4%;
    }

    to {
        margin-bottom: -10%;
    }
}



/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　PSWP用　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/

.demo-gallery {
    margin: 20px auto;
    background-color: #ccc;
    width: 360px text-align: center;

}

.demo-gallery a {
    display: block;
    float: left;
    margin: 0 12px 12px 0;
    line-height: 0;
}





.demo-gallery img {
    max-width: auto;
    max-width: 100%;
    height: auto;
    border: 0;

}

.demo-gallery figure {
    display: none;
}


/**▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩✼　スマホ非表示用　✼▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩**/



@media(min-width:1000px) {
    .sp {
        display: none !important;
    }
}

@media(max-width:1000px) {
    .pc {
        display: none !important;
    }
}
