#particles-js{
    position:absolute;/*描画固定*/
    z-index:-1;/*描画を一番下に*/
    width: 100%;
    height: 100vh;
    background-color:#00a0d2;/*背景色*/
}

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

/* 　Y 軸（横へ） */
.rotateY{
    animation-name:rotateYAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
}

@keyframes rotateYAnime{
    from{
        transform: rotateY(0);
    }
    to{
        transform: rotateY(-360deg);
    }
}

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
    padding: 1% 3% 1% 1%;
    transition: all .5s ease;
    border-bottom: 2px solid #ccc;
    text-align: left;
    font-size: 2rem;
}
h3.title span {
    color: #26afe4;
    padding-right: 5px;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;

}
.title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);

}
.title::after{
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
    transform: rotate(45deg);
}

.title.close::after{
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box_qa {
    display: none;/*はじめは非表示*/
    margin:0 3% 1% 3%;
    padding: 1%;
    text-align: left;
    font-size: 1.5rem;
}
.box_qa p {
    margin: 1%;
}
.box_qa p span {
    font-size: 2rem;
    color: #26afe4;
    padding-right: 5px;
}

/*== ボタン共通設定
料金プラン */
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    border: 2px solid #fff;/* ボーダーの色と太さ */
    padding: 10px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
    border-radius: 3px;
    margin: 3% 0;
    font-size: 1.2rem;
}

/*ボタン内spanの形状*/
.btn span {
    position: relative;
    z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color:#fff;
}

.btn:hover span{
    color:#0c88b4;
}

/*== 背景が流れる（斜め） */
.bgskew::before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: -130%;
    /*色や形状*/
    background:#fff;
    width:120%;
    height: 100%;
    transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.bgskew:hover::before {
    animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
/*ニュースボタン ---------------------------------------*/
.btn_b{
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #2d8bb0;/* ボーダーの色と太さ */
    padding: 10px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
    border-radius: 3px;
    margin: 3% 0;
    font-size: 1.2rem;
}

.btn_b span {
    position: relative;
    z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color:#2d8bb0;
}

.btn_b:hover span{
    color:#fff;
}

/*== 背景が流れる（斜め） */
.bgskew_b::before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: -130%;
    /*色や形状*/
    background:#2d8bb0;
    width:120%;
    height: 100%;
    transform: skewX(-25deg);
}
/*hoverした時のアニメーション*/
.bgskew_b:hover::before {
    animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
/*コンタクトボタン ---------------------------------------*/
.contact_btn {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #2d8bb0;/* ボーダーの色と太さ */
    padding: 10px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
    border-radius: 3px;
    margin: 3% 0;
    font-size: 1.2rem;
}

.contact_btn span {
    position: relative;
    z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color:#2d8bb0;
}

.contact_btn:hover span{
    color:#fff;
}

/*== 背景が流れる（斜め） */
.bgskew_con::before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: -130%;
    /*色や形状*/
    background:#2d8bb0;
    width:120%;
    height: 100%;
    transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.bgskew_con:hover::before {
    animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
    100% {
        left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
    }
}
/*TextTyping animation*/
.TextTyping span {
    display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
    content: "|";
    animation: typinganime .8s ease infinite;
}

@keyframes typinganime{
    from{opacity:0}
    to{opacity:1}
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
    position:absolute;
    left:50%;
    bottom:50px;
    /*全体の高さ*/
    height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
    position: absolute;
    left:-15px;
    top: -15px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-family: proxima-nova, "Noto Sans Japanese", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/* 線の描写 */
.scrolldown1::after{
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
    0%{
        height:0;
        top:0;
        opacity: 0;
    }
    30%{
        height:30px;
        opacity: 1;
    }
    100%{
        height:0;
        top:50px;
        opacity: 0;
    }
}

.svganimeblock{
    margin:0 auto;
    text-align: center;
}

/*=============== SVGアニメーション内の指定 =================*/
/*SVGの横幅*/
.svganimeblock{
    max-width:93px;
    width:100%;
}
.svganimeblock:first-of-type{
    max-width:80px;
}

/*SVGの可変*/
.svganimeblock svg{
    width:80%;
}

/*アニメーション前のパスの指定*/
.svganimeblock svg path {
    fill-opacity: 0;/*最初は透過0で見えない状態*/
    transition: fill-opacity .5s;/*カラーがつく際のアニメーション0.5秒で変化*/
    fill: none;/*塗りがない状態*/
    stroke: #fff;/*線の色*/
}

/*アニメーション後に.doneというクラス名が付与された時のパスの指定*/
.svganimeblock svg.done path{
    fill: #fff;/*塗りの色*/
    fill-opacity: 1;/*透過1で見える状態*/
    stroke: none;/*線の色なし*/
}
/*SVGの横幅*/
.svganimeblock2 {
    max-width:93px;
    width:100%;
}
.svganimeblock2:first-of-type{
    max-width:80px;
}

/*SVGの可変*/
.svganimeblock2 svg{
    width:100%;
}

/*アニメーション前のパスの指定*/
.svganimeblock2 svg path {
    fill-opacity: 0;/*最初は透過0で見えない状態*/
    transition: fill-opacity .5s;/*カラーがつく際のアニメーション0.5秒で変化*/
    fill: none;/*塗りがない状態*/
    stroke: #2aabee;/*線の色*/
}

/*アニメーション後に.doneというクラス名が付与された時のパスの指定*/
.svganimeblock2 svg.done path{
    fill: #2aabee;/*塗りの色*/
    fill-opacity: 1;/*透過1で見える状態*/
    stroke: none;/*線の色なし*/
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
    opacity: 0;
}

/*==================================================
動かしたい動き
===================================*/

.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*page-top 設定 */
#page-top {
    padding: 3% 0;
    background-color: #26afe4;
    margin: 0;
}
#page-top a {
    color: #fff;
    text-decoration: none;
    font-family: proxima-nova, "Noto Sans Japanese", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background:#26afe4;
    text-align:center;
    color:#fff;
}
#splash_text {
    font-family: proxima-nova, "Noto Sans Japanese", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 320px) {
    #splash { font-size: 2rem; }
}
