﻿body {
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    margin: 0;
    background-image: url('Images/background.png');
    background-repeat: repeat-y;
    background-size: 90%;
}

h1, h2, h3{
    text-align: center;
}

/*ヘッダ*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    background-color: white;
    padding: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

    header .logo {
        width: 40px;
        display: inline-block;
        vertical-align: middle;
    }

nav {
    display: inline-block;
    vertical-align: middle;
}

    nav ul {
        margin: 0;
        padding: 20px 0 0 0;
    }

    nav li {
        display: inline;
        margin-left: 10px;
    }

        nav li a {
            color: black;
            text-decoration: none;
        }



@media screen and (max-width: 480px) {
    header nav {
        display: none;
    }
}

header .inq-button {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 60px;
    text-align: center;
}

    header .inq-button a {
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
        padding: 5px;
        margin: 0;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        border-radius: 0.5rem;
        color: #fff;
        background-color: #ff0e5b;
        border-bottom: 5px solid #cb0041;
    }

    header .inq-button p:first-child {
        font-size: 0.6rem;
        font-weight: normal;
    }

    header .inq-button p {
        font-size: 1rem;
        font-weight: 700;
        margin: 0;
    }


/*本文*/
#introduction {
    padding-top: 70px;
}

.sheet1 {
    background: rgba(224,245,197,0.7);
    padding-bottom: 20px;
    padding-top: 40px;
}

    .sheet1 .paper {
        margin-right: auto;
        margin-left: auto;
        background: #ffffff;
        width: 85%;
        max-width: 700px;
        border-radius: 10px;
        box-shadow: 1px 1px 4px #333;
    }


.sheet2 {
    padding-bottom: 20px;
    padding-top: 40px;
}

    .sheet2 .paper {
        margin-right: auto;
        margin-left: auto;
        background: #ffffff;
        width: 85%;
        max-width: 700px;
        border-radius: 10px;
        box-shadow: 1px 1px 4px #333;
    }

.paper p{
    margin-left:15px;
    margin-right:15px;
}

.content {
    width: 95%;
    max-width: 900px;
    margin: 0px auto;
    padding-top: 5px;
    padding-bottom: 5px;
}

.usage {
    display: flex;
    padding:10px
}

.usage-right {
    max-width: 50%;
}

@media screen and (max-width: 480px) {
    .usage {
        display: block;
    }
    .usage-right {
        max-width: 100%;
    }
}

.usage img{
    width:100%;
}

/*仕様書ボタン*/
.swagger-button {
    text-align: center;
}

    .swagger-button a {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
        padding: 10px;
        margin: 0;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        border-radius: 0.5rem;
        color: #ff0e5b;
        /*        background-color: #b3d13a;
        border-bottom: 5px solid #93b12a;*/
        background-color: #ffffff;
        border: 1px solid #ff0e5b;
        border-bottom: 5px solid #cb0041;
    }

    .swagger-button p {
        font-size: 1rem;
        font-weight: 500;
        margin: 0;
    }

/*お問い合わせボタン*/
.content .inq-button {
    text-align: center;
}

    .content .inq-button a {
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
        padding: 10px;
        margin: 0;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        border-radius: 0.5rem;
        color: #fff;
        background-color: #ff0e5b;
        border-bottom: 5px solid #cb0041;
    }

    .content .inq-button p:first-child {
        font-size: 0.7rem;
        font-weight: normal;
    }

    .content .inq-button p {
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0;
    }

/*フッター*/
footer {
    background-color: #182e38;
    padding: 5px;
    text-align: center;
    margin-top: 50px;
    color: #fff;
    font-size: 0.6rem;
}

footer .block-list {
    text-align:center;
}

    footer .block {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
        margin-bottom:5px;
        padding:5px;
        background: #eeeeee;
    }

footer .block img{
    max-width:200px;
}

footer .copyright {
    text-align: center;
}


