/* 全体のスタイル */
body {
    font-family: Arial, sans-serif; /* フォントファミリーの指定 */
    margin: 0; /* 余白を0に設定 */
    padding: 0; /* パディングを0に設定 */
    background-color: white; /* 背景色を白に設定 */
}

/* ヘッダーのスタイル */
header{
    /* 上下のパディングを追加 */
    height: auto; /* 高さを自動に設定 */
}

/* コンテナのスタイル */
.container {
    width: 95%; /* 幅を95%に設定 */
    margin: 0 auto; /* 左右のマージンを自動で調整 */
}

.text_container {
    width: 95%; /* 幅を95%に設定 */
    margin: 0 auto; /* 左右のマージンを自動で調整 */
    margin-top: -2%;
}

/* フレックスボックスのスタイル */
.flex {
    display: flex; /* フレックスボックスを使用して要素を配置 */
    justify-content: space-between; /* 要素を均等に配置 */
    flex-wrap: wrap; /* 要素を折り返し可能にする */
    align-items: center; /* 要素を中央に配置 */
}

/* ロゴのスタイル */
.logo {
    font-size: 50px; /* フォントサイズを50pxに設定 */
    font-weight: 700; /* フォントの太さを太字に設定 */
    letter-spacing: -0.04em; /* 文字間のスペースを調整 */
}

.logo-link img {
    max-width: 150px; /* 必要に応じてサイズを調整 */
    height: auto; /* アスペクト比を維持 */
    display: block; /* ブロック要素として表示 */
    margin: 0 auto; /* 中央揃え */
}

/* ヘッダーメニューのスタイル */
.header_menu {
    list-style-type: none; /* マーカーを削除 */
    padding: 0; /* パディングを0に設定 */
}

.header_menu li{
    list-style-type: none; /* マーカーを削除 */
    margin-left: 30px; /* 左マージンを追加 */
}

.header_menu li a {
    text-decoration: none; /* リンクの下線を削除 */
    color: black; /* テキストの色を指定 */
    transition: 0.3s; /* カラー変化のアニメーションを追加 */
}

.header_menu li a:hover {
    color: #2C7CFF; /* ホバー時のテキストの色を指定 */
    transition: 0.3s; /* カラー変化のアニメーションを追加 */
}

/* 見出しのスタイル */
h1 {
    color: #2C7CFF; /* テキストの色を指定 */
}

/* 一般的なテキストのスタイル */
p {
    color: #666; /* テキストの色を指定 */
}

/* 一般的なリンクのスタイル */
a {
    text-decoration: none; /* リンクの下線を削除 */
    line-height: 0.5; /* リンクの行の高さを調整 */
    display: inline-block; /* インラインブロック要素として表示 */
}


/* 特定のクラスのテキストのスタイル */
.p1 {
    color: black; /* テキストの色を指定 */
}

/* セクション見出しのスタイル */
.section-heading {
    text-align: center; /* 中央揃え */
    margin-top: 20px; /* 上部のマージンを追加 */
    margin-bottom: 20px; /* 下部のマージンを追加 */
    font-size: 24px; /* フォントサイズを指定 */
    color: #333; /* テキストの色を指定 */
}

/* スペーサーのスタイル */
.spacer {
    height: 20px; /* スペーサーの高さを指定 */
}
