@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-top: 60px; /* ← この一行を追加 */
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;
}


.container {
    position: relative;
}

.container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.container p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #00205F;
    padding: 0;
    margin: 0;
    text-align: center; /* 必要ならテキストを中央揃えにします */
    white-space: nowrap;
    font-weight: bold;
    text-shadow: 2px 2px 4px white, -2px -2px 4px white; /* 白い影を追加 */
}

.about hr{
    width: 100%;
    border: 1px solid #00205F;
}

.about-title{
    color: #00205F;
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
    margin: 0 auto;
}

.about-text{
    margin:24px 1em;
}

.features hr{
    width: 100%;
    border: 1px solid #00205F;
}

.features-title{
    color: #00205F;
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
    margin: 0 auto;
}

.feature{
    margin-top: 24px;
}

.feature-text{
    margin-left: 1em;
    margin-right: 1em;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 4px;
}

.feature-text span{
    font-size: 24px;
    color: #FF9900;
}

.feature-description{
    margin-right: 1em;
    margin-top: 4px;
    margin-left: 2em;
    margin-bottom: 0;
}

.feature-link{
    margin-left: 2em;
    margin-top:0;
}
.feature img {
    width: 100%; /* 親要素の幅いっぱいに表示 */
    max-width: 700px; /* 画像が大きくなりすぎないように最大幅を指定 */
    display: block; /* 中央揃えのために追加 */
    margin: 20px auto 0; /* 上に20pxの余白を空けて中央揃え */
}
.form-link {
    color:#D97706;       /* 文字をオレンジ色にする */
    font-weight: bold;      /* 文字を太字にする */
    text-decoration: none;  /* 下線を消す（お好みで） */
}
/* マウスを乗せたときに下線を表示する（お好みで） */
.form-link:hover {
    text-decoration: underline;
}
.feature-link a {
    color: #D97706;
text-decoration: none;  /* 下線を消す（お好みで） */
}
.feature-link a:hover {
    text-decoration: underline;
}
body {
    line-height: 1.7;
}
@media screen and (max-width: 800px) {
    main {
        padding-left: 15px;
        padding-right: 15px;
padding-bottom: 100px;
        box-sizing: border-box;
    }
}