
/* コンテナのスタイル */
.select-top-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 6px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("./icon/backgroud.png");
    background-size: 100% ;
    background-repeat: no-repeat;
}

/* 各ツールのボックス */
.tool-box {
    width: 404px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

/* タイトルのスタイル */
.tool-title {
    font-size: 20px;
    font-weight: bold;
    background: white;
    padding: 10px;
    margin: 0;
}

/* サブタイトル */
.tool-subtitle {
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
}

.tool-content-blue {
    background-color: #fff;
    color: #28468C;
    padding: 13px 20px;
    margin: 0px 20px;
}

/* コンテンツのスタイル */
.tool-content-blue ul {
    list-style: none;
    padding: 0;
}

.tool-content-blue li {
    font-size: 16px;
    text-align: left;
    padding: 5px 10px;
}

.tool-content-orange {
    background-color: #fff;
    color: #28468C;
    padding: 10.5px 20px;
    margin: 0px 20px;
}

/* コンテンツのスタイル */
.tool-content-orange ul {
    list-style: none;
    padding: 0;
}

.tool-content-orange li {
    font-size: 16px;
    text-align: left;
    padding: 2px 10px;
}

/* 左側のボックス（青） */
.blue-box {
    background: #28468C;
    color: white;
    border: 3px solid #28468C;
}

/* 右側のボックス（黄色） */
.yellow-box {
    background: #F6C721;
    color: #343434;
    border: 3px solid #F6C721;
}

/* NEWバッジ */
.new-badge {
    position: absolute;
    top: -18px; /* 位置調整 */
    right: -14px; /* 位置調整 */
    background: red;
    color: white;
    font-size: 20px; /* 文字を大きく */
    font-weight: normal; /* 細字にする */
    padding: 10px; /* 内側の余白 */
    border-radius: 50%; /* 完全な円形 */
    width: 50px; /* 円の幅 */
    height: 50px; /* 円の高さ */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ボタンのスタイル */
.tool-button {
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0px;
}

.blue-button {
    background: #3296FA;
    color: white;
    margin: 20px;
}

.yellow-button {
    background: #FE6011;
    color: white;
    margin: 20px;
}

/* フッター情報 */
.footer {
    margin-top: 40px;
    font-size: 14px;
    color: black;
}

/* フッターのアイコン */
.footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.icon-box {
    background: white;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #ddd;
}

.stamp-right {
    width: 270px;
    margin-left: auto;
    display: block;
}

.select-logo {
    width: 86%;
    padding: 12px;
    padding-top: 20px;
    padding-bottom: 8px;
}

.line {
    text-decoration: underline solid #28468C;
    text-underline-offset: 3px;
}