/* privacy.css */

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333; /* 文字色を調整 */
}
header{
    position:fixed; /* 今の位置を基準 */	
    top: 0px; /* 上から0px */
    left: 0px; /* 左から0px */
    z-index: 2;
    width: 100%;
}
h1 {
    width: 200px;
    color: #000;
    position: absolute;
    top: 20px;
    left: 72px;
    opacity: 1;
    text-align: left;
}

main {
    margin-top:100px;
    padding: 20px;
    text-align: left; /* テキストを左寄せに */
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央寄せを維持しつつコンテンツ幅を制限 */
    margin-bottom: 60px;
    font-family: Klee One;
    font-weight: Regular;
    line-height: 1.6; /* 行の高さ調整 */
}
main > div {
    max-width: 800px; /* コンテンツの最大幅を設定 */
    width: 100%;
}
.font01 {
    font-family: "duper", sans-serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.25em;
    font-size: 18px;
}

.logobox {
    width: 40px;
    height: 60px;
    opacity: 1;
    position: absolute;
    top: 16px;
    left: 24px;
    overflow: hidden;
}
.logo {
    width: 40px;
    height: 40px;
    background: url("../logo.svg");
    opacity: 1;
    position: absolute;
    top: 0px;
    left: 0px;
}

h2 {
/*font-family: "Zen Kaku Gothic New", sans-serif;*/
    font-family: Klee One;
    font-weight: Regular;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}
h3 {
/*font-family: "Zen Kaku Gothic New", sans-serif;*/
    font-family: Klee One;
    font-weight: Regular;
    font-weight: 500;
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #333;
}
footer {
    font-family: Klee One;
    font-weight: Regular;
    background-color: #f5f5f5;
    color: #808080;
    text-align: center;
    font-size: 12px;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
p {
    margin-bottom: 1em;
}
ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1em;
}
li {
    margin-bottom: 0.5em;
}

dl{ 
    display:inline-block;
    padding-top:160px;
    letter-spacing: 0.1em;
}
dt{ 
    margin: 10px;
    margin-inline-start:0px;
}
dd{ 
    font-size: 14px;
    margin-inline-start:0px;
    margin-bottom: 80px;
}

/* --- SP表示 (768px以下) --- */
    @media (max-width: 768px) {
    body {
        font-size: 14px; /* ベースフォントサイズを調整 */
    }
    h1 {
        left: 54px; /* ロゴとテキストの位置調整 */
    }
    .logobox {
        left: 12px;
    }
    h2, .message {
        padding-left: 24px;
        padding-right: 24px;
        font-size: 18px;
    }
    #info {
        padding-left: 24px;
        padding-right: 24px;
    }
    dd { 
        font-size: 12px;
    }
    h3 {
        font-size: 16px;
    }
    .hamburger-menu {
        right: 24px;
    }
}