/* style.css */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, sans-serif;
    background-color: #f5f5f7;
    color: #222;
}

.page {
    max-width: 900px;
    margin: 40px auto;
    padding: 32px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* header */

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.brand {
    font-size: 20px;
    font-weight: 600;
    text-align:center;
}

.content-box {
    display:flex;
    flex-direction:column;
    align-items:center;
    height: 200px;
    width:200px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    margin: 30px auto;
}

.icon {
    height: 100px;
    width: 100px;
    margin: 25px 0;
    border-radius: 5px;
    /*background-color: #666;*/
}

.icon img{
        width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-button {
    font-family:"Yu Gothic","游ゴシック";
    height: 30px;
    width: 100px;
    border-radius: 30px;
    background-color: #fd3d3d;
    text-align:center;
}

.store-button p{color:#ffffff; margin:0; padding:2px 0 0 0;}

/* main content */

.page-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 24px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
}

.section {
    min-width:50px;
    max-width:500px;
    width:80vw;
    display:flex;
    flex-direction:column;
    align-items:center;
    margin:auto auto;
    
}

.section ul::after {content:""; display:block; height:15px;}

.section ul {list-style: none; align-self:flex-start;}

.content-title {
    border-bottom: 1px solid #a9a9a9;
}

.content-subtitle {
    width: auto;
    margin:0;
    align-self:flex-start;
}




/* blank */
.blank-space{ margin-bottom:100px;}

/* footer */
.footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.effective-date {
}

.copyright {
    width:100%;
    text-align:center;
}
