@charset "UTF-8";

footer{
    width: 100vw;
    height: 50vh;
    color: white;
    background-color: black;
    padding: 4%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


/* 1つ目のdivを2カラムに */
footer > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10rem;
}

footer nav ul {
    display: flex;          /* ナビゲーション項目を横並びに */
    gap: 1rem;              /* 各項目の間隔を調整 */
    padding: 0;             /* デフォルトのパディングをリセット */
    list-style-type: none;  /* リストのマークを非表示に */
}

footer nav ul li {
    margin: 0;              /* デフォルトのマージンをリセット */
}

footer > div:nth-child(2) {
    display: flex;          /* Flexboxに変更 */
    justify-content: center; /* センター寄せに */
    gap: 1rem;              /* 項目間の間隔を調整 */
}

footer > div:nth-child(2) ul {
    display: flex;          /* Flexboxを適用 */
    gap: 1rem;              /* 項目間の間隔を調整 */
    padding: 0;             /* デフォルトのパディングをリセット */
    list-style-type: none;  /* リストのマークを非表示に */
    margin: 0;
}
footer div ul li{
    font-size: 0.8rem;
    font-weight: normal;
    padding: 2rem 0 1rem 0;
}


footer div ul li a{
    color: white;
}

.copy{
    text-align: center;
    font-size: 0.7rem;
}