@charset "utf-8";

/*----------------------Loading-----------------------*/


/* Loading背景画面設定　*/

#splash {
    position: fixed;
    /*全画面固定のため変えない*/
    width: 100%;
    height: 100%;
    z-index: 999;
    text-align: center;
    color: #fff;
}


/* Loading画像中央配置　*/

#splash_text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
}


/*IE11対策（一応）*/

#splash_text svg {
    height: 2px;
}

.loader_cover {
    width: 100%;
    height: 50%;
    background-color: #333;
    transition: all .2s cubic-bezier(.04, .435, .315, .9);
    transform: scaleY(1);
}

.loader_cover-up {
    transform-origin: center top;
}

.loader_cover-down {
    position: absolute;
    bottom: 0;
    transform-origin: center bottom;
}

.coveranime {
    transform: scaleY(0);
}

a {
    color: #333;
}

a:hover {
    text-decoration: none;
}


/*---------------------------------navi-----------------------------------------*/

#g-nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
}


/*丸の拡大*/

.circle-bg {
    position: fixed;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: midnightblue;
    transform: scale(0);
    left: -50px;
    top: -50px;
    transition: all .6s;
}

.circle-bg.circleactive {
    transform: scale(50);
}


/*nav*/

#g-nav ul {
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    opacity: 1;
}

#g-nav li {
    text-align: center;
    list-style: none;
}

#g-nav li a {
    color: lightcyan;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}


/*ボタン*/

.openbtn1 {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    cursor: pointer;
    width: 50px;
    height: 50px;
}


/*×に変化*/

.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top: 15px;
}

.openbtn1 span:nth-of-type(2) {
    top: 23px;
}

.openbtn1 span:nth-of-type(3) {
    top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


/*レイアウト*/

h1 {
    font-size: 1.2rem;
}

h2 {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 30px 0;
}

p {
    margin-top: 20px;
}

small {
    color: #fff;
    display: block;
    text-align: center;
}

section {
    padding: 100px 30px;
}

section:nth-child(2n) {
    background: #f3f3f3;
}


/*-------------------------slide------------------------*/

.slider img {
    width: 100%;
    height: auto;
}


/*スライド左右の余白調整*/

.slider .slick-slide {
    margin: 0 0px;
}


/*レイアウト*/

body {
    background: #eee;
}

h2,
p {
    text-align: center;
    padding: 20px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #333;
}

a:hover,
a:active {
    text-decoration: none;
}


/*----------------------title----------------------*/

.title {
    position: absolute;
    width: 50%;
    top: 15%;
    /*上からの位置調整*/
    left: 50%;
    transform: translate(-50%, -50%);
}


/*--------------------------about-------------------------*/

.about {
    width: 80%;
    margin: 20px auto;
    border: solid 2px;
    border-radius: 10% / 50%;
    border-color: #336699;
    padding: 10px;
    text-align: center;
}


/*waves*/


/*レイアウト*/

#wrapper p {
    padding: 300px 0;
    text-align: center;
}


/*描画エリア*/

.wave {
    position: relative;
    height: 0px;
}

.wave canvas {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
}


/*------------------------card-------------------*/

.buttonS {
    width: 100%;
    margin: 15px;
    border: 1px solid white;
    padding: 10px;
}

#f4 {
    padding-top: 40%;
}


/*align-center*/

.ac {
    display: block;
    text-align: center;
}


/*---------------------Link Button---------------------*/

.bttx {
    margin: 40px auto;
    text-align: center;
}

.btsq a {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #222222;
    text-decoration: none;
    letter-spacing: 0.2em;
    display: block;
    width: 200px;
    padding: 9px 0 8px;
    margin: auto;
    text-align: center;
    box-sizing: border-box;
    border: solid 1px #222222;
}

.btsq a:hover {
    color: #ffffff;
    background-color: #222222;
}