@charset "utf-8";
/*ディダクトゴシック*/
.noto-sans-jp{
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
/*SP・body*/
body {
    width: 100%;
    display: flex; /* フレックスボックスに有効に */
    flex-flow: column; /* 要素を縦に並べる */
    min-height: 100vh; /* 最小でも画面の高さ分のbodyの高さを担保する */
    font-family: 'Noto Sans JP', sans-serif;
}
/*SP・header*/
.header{
    width: 100%;
    text-align: center;
    position: relative;
    top: 400px;
}
h1{
    color: #f2f2f2;
    text-shadow: 1px 2px 3px #808080;
}
.header__title{
    width: 100%;
    text-align: center;
}
.header__title img{
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: auto;
}
/*SP・スクロールバー*/
/*スクロールダウンの位置*/
.scroll {
    position: absolute;
    right: 45%;
    bottom: 60px;
    color: #f2f2f2;
    text-shadow: 1px 2px 3px #808080;
}
/*線のアニメーション部分*/
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #f2f2f2;
    box-shadow: 1px 2px 3px #808080;
    bottom: -55px;
    content: "";
    height: 45px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}
/*線のアニメーション*/
@keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
}
.add-zoom {
    animation: fadezoom 10s 0s forwards;
}
/*SP・main*/
.main{
    width: 100%;
    /*height: 1800px;*/
    margin-left: auto;
    margin-right: auto;
    /*background-color: aqua;*/
    flex: 1; /* 画面の高さから他の同レイヤーの要素の高さを引いた値に */
}
/*SP・slick背景*/
/*スライドの高さを指定　overflow: hidden;を入れる*/
.slider {
    width: 100%;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    margin: 0;
    position: fixed; /* ヘッダーを固定する */
    top: 0; /* 画面の上部に固定 */
    width: 100%; /* 画面の幅いっぱいに広げる */
    padding: 10px; /* 内側の余白を設定 */
    z-index: -1;
    object-fit: cover;
  }
/*スライドは背景画像にする*/
.slider-img {
    content: "";
    background-repeat: no-repeat;
    background-size: 180%;
    background-position: center;    
    width: 100%;
    height: 100vh;
    /*スライド画像の高さ*/
    object-fit: cover;
}
/*スライド画像を指定*/
.slider-img-01 {
    background-image: url(image/mainsp1.jpg);
} 
.slider-img-02 {
    background-image: url(image/mainsp2.jpg);
}
.slider-img-03 {
    background-image: url(image/mainsp3.jpg);
}
.slick-list {
    width: 100%;
} 
/* アニメーションを指定 */
@keyframes fadezoom {
    0% {transform: scale(1);}
    100% {transform: scale(1.1);}
      /* 拡大率 */
}
.section1{
    width:100%;
    /*height:500px;*/
    margin-top: 110vh;
    background-color: transparent;
}
h2{
    text-align: center;
    margin: 0;
    padding:20px 0px;
    color: #f2f2f2;
    text-shadow: 1px 2px 3px #808080;
    font-size: 30px;
}
.flex{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
.flex__inner{
    display: flex;
    justify-content: center;
    align-items: center;
}
/*SP・ボタン*/
.btn-circle-border-simple {
    display: inline-block;
    text-decoration: none;
    color: #f2f2f2;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    border: solid 2px #f2f2f2;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 255, 255, .5);
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    text-align: center;
    overflow: hidden;
    font-weight: bold;
    transition: .4s;
    animation:8s linear infinite rotation;
    margin-top: 10px;
    margin-bottom: 50px;
    text-shadow: 1px 1px 2px gray;
}
.btn-circle-border-simple:hover {
    border: 1px solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(0, 0, 0, 0.2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #427388; 
}
@keyframes rotation{
    0%{ transform:rotate(0);}
    100%{ transform:rotate(360deg); }
}
/*スクロールしたらふわっと*/
.js-scroll.-fadein {
    opacity: 0;
    transform: translateY(5rem);
  }
  .js-scroll.-fadein.js-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
  }
/*SP・footer*/
.footer{
    width:100%;
    height:200px;
    background-color:transparent;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
footer div{
    text-align: center;
    color: #f2f2f2;
    text-shadow: 1px 2px 3px #808080;
}
html{
    scroll-behavior: smooth;
}

/*================= PC =================*/
@media screen and (min-width:960px){
    /*PC・body*/
    body {
        width: 100%;
        display: flex; /* フレックスボックスに有効に */
        flex-flow: column; /* 要素を縦に並べる */
        min-height: 100vh; /* 最小でも画面の高さ分のbodyの高さを担保する */
    }
    /*PC・header*/
    .header{
        width: 100%;
        text-align: center;
        position: relative;
        top: 450px;
    }
    h1{
        font-size: 80px;
        color: #f2f2f2;
        text-shadow: 1px 2px 3px #808080;
    }
    /*PC・スクロールバー*/
    /*スクロールダウンの位置*/
    .scroll {
        position: absolute;
        right: 49%;
        bottom: 65px;
        color: #f2f2f2;
        text-shadow: 1px 2px 3px #808080;
    }
    /*線のアニメーション部分*/
    .scroll::before {
        animation: scroll 2s infinite;
        background-color: #f2f2f2;
        box-shadow: 1px 2px 3px #808080;
        bottom: -55px;
        content: "";
        height: 45px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        width: 1px;
    }
    /*線のアニメーション*/
    @keyframes scroll {
        0% {
            transform: scale(1, 0);
            transform-origin: 0 0;
            }
        50% {
            transform: scale(1, 1);
            transform-origin: 0 0;
        }
        51% {
            transform: scale(1, 1);
            transform-origin: 0 100%;
        }
        100% {
            transform: scale(1, 0);
            transform-origin: 0 100%;
        }
    }
    /*PC・main*/
    .main{
        width: 100%;
        /*height: 1800px;*/
        margin-left: auto;
        margin-right: auto;
        /*background-color: aqua;*/
        flex: 1; /* 画面の高さから他の同レイヤーの要素の高さを引いた値に */
    }
    /*PC・slick背景*/
    /*スライドの高さを指定　overflow: hidden;を入れる*/
    .slider {
        /*width: 100%;*/
        height: 100vh;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        padding: 0;
        margin: 0;
        position: fixed; /* ヘッダーを固定する */
        top: 0; /* 画面の上部に固定 */
        width: 100%; /* 画面の幅いっぱいに広げる */
        padding: 10px; /* 内側の余白を設定 */
        z-index: -1;
    }
    /*スライドは背景画像にする*/
    .slider-img {
        content: "";
        background-repeat: no-repeat;
        background-size: 120%;
        background-position: center;    
        width: 100%;
        height: 100vh;
        /*スライド画像の高さ*/
    }
    /*スライド画像を指定*/
    .slider-img-01 {
        background-image: url(image/mainpc1.jpg);
    } 
    .slider-img-02 {
        background-image: url(image/mainpc2.jpg);
    }
    .slider-img-03 {
        background-image: url(image/mainpc3.jpg);
    }
    .slick-list {
        width: 100%;
    } 
    /* アニメーションを指定 */
    @keyframes fadezoom {
        0% {transform: scale(1);}
        100% {transform: scale(1.1);}
        /* 拡大率 */
    }
    .add-zoom {
        animation: fadezoom 10s 0s forwards;
    }
    .section1{
        width:100%;
        /*height:500px;*/
        margin-top: 110vh;
        background-color: transparent;
    }
    h2{
        text-align: center;
        margin: 0;
        padding:20px 0px;
        color: #f2f2f2;
        text-shadow: 1px 2px 3px #808080;
        font-size: 30px;
    }
    .flex{
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .flex__inner{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /*PC・ボタン*/
    .btn-circle-border-simple {
        display: inline-block;
        text-decoration: none;
        color: #f2f2f2;
        width: 120px;
        height: 120px;
        line-height: 120px;
        border-radius: 50%;
        border: solid 2px #f2f2f2;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
        outline: 1px solid;
        outline-color: rgba(255, 255, 255, .5);
        outline-offset: 0px;
        text-shadow: none;
        transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
        text-align: center;
        overflow: hidden;
        font-weight: bold;
        transition: .4s;
        animation:8s linear infinite rotation;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .btn-circle-border-simple:hover {
        border: 1px solid;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(0, 0, 0, 0.2);
        outline-color: rgba(255, 255, 255, 0);
        outline-offset: 15px;
        text-shadow: 1px 1px 2px #427388; 
    }
    @keyframes rotation{
        0%{ transform:rotate(0);}
        100%{ transform:rotate(360deg); }
    }
    /*PC・footer*/
    .footer{
        width:100%;
        height:200px;
        background-color:transparent;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    footer div{
        text-align: center;
        color: #f2f2f2;
    }
    html{
        scroll-behavior: smooth;
    }
}