@charset "UTF-8";
header {
    position: fixed; /* 常に固定 */
    top: 0; /* 画面の最上部に配置 */
    left: 0; /* 画面の左端に配置 */
    width: 100%; /* 横幅を画面全体に */
    z-index: 1000; /* 他の要素の上に表示 */
    background-color: white; /* 背景色を指定（必要に応じて変更） */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* 影を追加（オプション） */
}

.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #00205F;
    height: 60px;
}

/* デフォルト（画面幅800px未満） */
.list-nav-header {
    display: none;
}

.menu {
    display: block;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    z-index: 1020;
    height: 36px;
    width: 36px;
}



.menu :hover{
    background-color: #203b71;
}

.menu-detail{
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top:0;
    left:0;
    background-color: white;
    z-index: 1010;
    width: 100vw;
    height: 100vh;
    display: none;
}

.menu-detail.is-active{
    display: flex;
}

.menu-detail-list{
    margin-top: 80px;
}

.menu-detail-list a{
    color: #00205F;
    text-decoration: none;
    font-size: 24px;
    display: block;
    margin: 8px 8px;

}

/* 画面幅が800px以上のとき */
@media screen and (min-width: 800px) {
    .list-nav-header {
        display: flex;
        gap: 20px;
        margin-right: 20px;
        list-style: none;
    }

    .list-nav-header a{
        color: white;
        text-decoration: none;
    }

    .menu {
        display: none;
    }
}

.logo{
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: white;
}

.header-inner img{
    margin-right: 20px;
}

main{
    width: min(100%, 800px);
    margin: 0 auto;
padding-bottom: 100px;
}

.btn {
    width: 150px;
    height: 60px;
    line-height: 60px;
    position: fixed; /* 画面上の固定 */
    bottom: 20px; /* 画面下からの距離 */
    right: 20px; /* 画面右からの距離 */
    z-index: 2; /* 他の要素の上に表示 */
}

.btn a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background: #FF9900;
    text-align: center;
    border: 5px solid #FF9900;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    transition: all 0.5s ease;
}

.btn a:hover {
    background: #FFFFFF;
    color: #FF9900;
    margin-left: 0px;
    margin-top: 0px;
    border: 5px solid #FFFFFF;
    box-shadow: none;
}
@media screen and (max-width: 800px) {
    main {
        padding-left: 15px;
        padding-right: 15px;
padding-bottom: 100px;
        box-sizing: border-box;
    }
}