@charset "utf-8";

/**********************************
 *
 * 変更箇所ここから
 *
 **********************************/
.bg1 {
    background-color: #f5f5f5;
}

.bg2 {
    background-color: #03a2dd;
}

.bg2:after {
    border-color: transparent transparent transparent #03a2dd;
}

h3 {
    color: #008ec3;
}

a {
    color: #20abe5;
    text-decoration: none;
    transition: opacity .8s ease;
}

a:hover {
    opacity: 0.7;
}

/**********************************
 *
 * 変更箇所ここまで
 *
 **********************************/

/**********************************
 *
 * common
 *
 **********************************/
* {
    -webkit-box-sizing: border-box;
            -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

.pcClass {
    display: block;
}

.spClass {
    display: none;
}

img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

section {
    width: 100%;
    height: auto;
    position: relative;
    padding: 70px 0;
}

.inner {
    position: relative;
    width:1000px;
    margin: 0 auto;
}



/**********************************
 *
 * body
 *
 **********************************/
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500;
    width:100%;
    height:auto;
    position:relative;
    font-size: 14px;
    line-height: 1.86;
    letter-spacing: 0.8px;
    text-align: left;
    color: #333333;
}

h3 {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.38;
    letter-spacing: 1.7px;
    text-align: center;
    padding: 0 0 35px;
}

/**********************************
 *
 * header
 *
 **********************************/
header {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:auto;
    padding:25px 5%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
}

header h1 a {
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -2.1px;
    color: #000000;
}

header nav  {
    margin-left: auto;
}

header nav ul {
    display: flex;
    align-content: center;
    align-items: center;
}

header nav ul li {
    padding: 0 15px;
}

header nav ul li a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
    color: #ffffff;
}

.spNav {
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

/**********************************
 *
 * footer
 *
 **********************************/
footer {
    width: 100%;
    height: auto;
    padding: 50px 0;
}

footer ul {
    display: flex;
    align-content: center;
    align-items: center;
  -webkit-justify-content: center;
    justify-content: center;
}

footer ul li {
    padding: 0 10px;
}

footer ul li a {
    color: #fff;
}

footer p {
    color: #fff;
    padding: 20px 0 0 0;
    text-align: center;
}


/**********************************
 *
 * ■スマホ用
 *
 **********************************/
@media screen and (max-width: 768px) {
    /**********************************
    *
    * common
    *
    **********************************/
    * {
        -webkit-text-size-adjust: 100%;
    }

    .pcClass {
        display: none;
    }

    .spClass {
        display: block;
    }

    section {
        padding: 40px 0;
    }

    .inner {
        width:90%;
    }

    .bg2:after {
        border-color: #03a2dd transparent transparent transparent;
    }

    /**********************************
    *
    * body
    *
    **********************************/
    body {
        font-size: 14px;
    }

    h3 {
        font-size: 31px;
        padding: 0 0 25px;
    }

    /**********************************
    *
    * header
    *
    **********************************/
    header {
        padding:15px 5%;
    }

    header h1 a {
        font-size: 20px;
    }

    header nav  {
        display: none;
    }

    .spNav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 0;
        opacity: 0;
        overflow: hidden;
        margin-left: 0;
        transition: all ease .6s;
        background-color: #000;
        z-index: 19;
    }

    .spNav.on  {
        opacity: 1;
        height: 100vh;
    }

    .spNav ul {
        display: block;
        padding: 60px 0 0;
    }

    .spNav ul li {
        padding: 0 0 10px 10%;
    }

    .spNav ul li a {
        color: #fff;
        font-size: 7vw;
    }

    #menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        cursor: pointer;
        background-color: rgba(000, 000, 000, 0.9);
        z-index: 20
    }

    #menu span {
        position: absolute;
        display: inline-block;
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
        left: 25%;
        width: 50%;
        height: 2px;
        background-color: #fff
    }
    #menu span:nth-of-type(1) {
        top: 12px
    }

    #menu span:nth-of-type(2) {
        top: 24px
    }

    #menu span:nth-of-type(3) {
        bottom: 12px
    }

    #menu.on span:nth-of-type(1) {
        -webkit-transition-delay: .2s;
        -o-transition-delay: .2s;
        transition-delay: .2s;
        -webkit-transform: translateY(12px) rotate(-45deg);
        -ms-transform: translateY(12px) rotate(-45deg);
        transform: translateY(12px) rotate(-45deg)
    }

    #menu.on span:nth-of-type(2) {
        opacity: 0;
        -webkit-animation: bar .4s forwards;
        animation: bar .4s forwards
    }

    @-webkit-keyframes bar {
        100% {
            height: 0
        }
    }

    @keyframes bar {
        100% {
            height: 0
        }
    }

    #menu.on span:nth-of-type(3) {
        -webkit-transition-delay: .2s;
        -o-transition-delay: .2s;
        transition-delay: .2s;
        -webkit-transform: translateY(-12px) rotate(45deg);
        transform: translateY(-12px) rotate(45deg);
        -ms-transform: translateY(-12px) rotate(45deg)
    }



    /**********************************
    *
    * footer
    *
    **********************************/
    footer {
        padding: 35px 0;
        font-size: 3vw;
    }

    footer ul li {
        padding: 0 3%;
    }

    footer ul li a {
        font-size: 4vw;
    }
}
