@charset "UTF-8";

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff;
    color: #5d5d5d;
    font-family: "メイリオ", "Meiryo", "Meiryo UI", "ヒラギノ角ゴ Pro W3", "Osaka", Arial;
    -webkit-font-smoothing: antialiased;
}

/* リンク */
.link {
    color: #f27935;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

/* ヘッダー */
.header {
    background-color: #009688;
    color: #ffffff;
    min-width: 320px;
}

.header-wrap {
    margin: 0 auto;
    max-width: 1024px;
    min-width: 320px;
    width: 100%;
    flex-grow: 1;
}

/* ヘッダータイトル */
.header-title {
    display: flex;
    flex-wrap: wrap;
    height: 54px;
    margin: 10px 0;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* ヘッダーロゴ */
.header-logo {
    height: 54px;
}

/* ヘッダーテキスト */
.header-text {
    height: 54px;
    line-height: 54px;
    margin-left: 10px;
    font-size: 27px;
    color: #fff;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.75);
}

/* コンテナ */
.container {
    margin: 50px auto 0px auto;
    max-width: 1024px;
    min-width: 320px;
    width: 80vw;
    flex-grow: 1;
}

/* アピール */
.appeal {
    text-align: center;
}

/* アピールタイトル */
.appeal-title {
    font-size: 36px;
    font-weight: bold;
}

/* アピールメッセージ */
.appeal-message {
    margin-top: 24px;
}

/* 口座を登録するとできることのタイトル */
.available-functions-by-register-bank-account-title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    margin: 24px 0 0 0;
    font-weight: bold;
}

/* 口座を登録するとできること */
.available-functions-by-register-bank-account {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* 利用可能になる機能 */
.function {
    width: 45%;
    max-width: 470px;
    min-width: 320px;
    border: 0px solid;
    border-radius: 10px;
    background-color: #8080801a;
    text-align: center;
    margin: 10px 10px;
}

/* 利用可能になる機能コンテナ */
.function-container {
    padding: 20px 35px;
}

/* 利用可能になる機能のタイトル */
.function-title {
    font-size: 20px;
    font-weight: bold;
    color: #009687;
}

/* 利用可能になる機能の説明 */
.function-description {
    margin-top: 15px;
    line-height: 28px;
}

/* フロー */
.flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1024px;
    margin: 36px auto 0 auto;
}

/* 各ステップ */
.step {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 300px;
    margin: 16px 10px 25px 10px;
}

/* ステップのタイトル */
.step-title {
    font-size: 18px;
    color: #009688;
    text-align: center;
}

/* ステップの説明 */
.step-description {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 10px;
    margin-bottom: 0px;
    padding: 20px;
    text-align: center;
    border: 2px solid;
    border-radius: 10px;
    border-color: #009688;
}

/* ステップの画像 */
.step-image {
    max-width: 200px;
    margin: 0 auto;
}

/* ステップの説明テキスト */
.step-text {
    margin: 24px auto 0 auto;
    flex-grow: 1;
}

/* フローの補足説明 */
.flow-description {
    text-align: center;
}

/* 注意事項 */
.precautions {
    margin: 36px auto 0px auto;
    width: 95%;
}

/* 注意事項のタイトル */
.precautions-title {
    margin-bottom: 8px;
    font-size: 24px;
    color: #009688;
}

/* 各注意事項 */
.precaution {
    margin-top: 12px;
}

/* フッター */
.footer {
    min-width: 320px;
    margin-top: 24px;
    padding-top: 8px;
    font-size: 0.7em;
    font-weight: bold;
    height: 60px;
    text-align: center;
}

/* スマホ表示の時にフォントサイズを小さくする。 */
@media screen and (max-width: 480px) {
    .footer {
        font-size: 10px;
    }
}
