/* フォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

.no-margin {
    margin: 0;
}

/* 背景色の設定 */
html, body {
    background-color: #aedcf7;
    padding: 0;
    margin: 0;
    overflow-x: hidden; /* 横スクロールを防止 */
}

/* レイアウトの設定 */
body {
    padding: 0;
    margin: 0;
}

.header {
    background-color: #1c1c1c;
    margin: 0;
    padding: 0 20px;
    font-size: 20px;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.header a {
    text-decoration: none;
    color: #fff;
}

.header a:hover {
    color: #00ccff;
}

.pagelinks ul {
    display: flex;
    list-style: none;
}

.pagelinks li {
    padding: 0 10px;
}

/* URLリンクの装飾 */
.url {
    text-decoration: none;
    color: #002fff;
    font-weight: bold;
    transition: color 0.1s;
}

/* URLリンクホバー時に色変更 */
.url:hover {
    color: #17eef5;
}

/* フッターの装飾 */
footer {
    background-color: #60b6e7;
    position: absolute;
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* メインの装飾 */
.main {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    padding-left: 25%;
    padding-right: 25%;
    box-sizing: border-box;
}

.title * {
    padding: 10px 0;
}

.main * {
    padding: 0;
}

/* タイトルの装飾 */
.title {
    background-color: #60b6e7;
    height: 160px;
    text-align: center;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 24px; /* タイトル下に余白 */
}

.title * {
    padding: 0.25%;
}

.normal {
    color: black;
}

/* セクション(div)ごとに枠をつける */
#introduce, #activity, #social {
    border: none;
    padding: 100px;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin-bottom: 24px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}