@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;
}

/* ヘッダー */
.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: 0 auto;
    max-width: 1024px;
    min-width: 320px;
    width: 80vw;
    flex-grow: 1;
}

/* タイトル */
.title {
    margin: 36px auto;
    text-align: center;
    font-size: 36px;
    color: #009688;
}

/* 手順 */
.flow {
    margin-top: 32px;
}

/* Amazonでの支払手順 */
.flow-payment-amazon {
    margin: 16px 0px;
    padding-bottom: 16px;
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    max-width: 1024px;
}

.step {
    width: 280px;
    max-width: 65vw;
    margin: 0px 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    background: #0096871A;
    border-radius: 8px;
}

.step-image {
    height: 300px;
}

.step-description {
    text-align: center;
    flex-grow: 1;
}

/* 詳細 */
.flow-detail {
    margin-top: 16px;
}

/* 強調文 */
.emphasis-text {
    color: #f27935;
}

/* 補足説明 */
.supplementary-explanation {
    margin-top: 16px;
}

/* Tips */
.tips {
    margin-top: 32px;
    padding: 32px;
    background: #0096871A;
    border-radius: 8px;
}

/* タイトル */
.tips-title {
    font-size: 24px;
    color: #009688;
}

/* 説明 */
.tips-description {
    margin-top: 16px;
}

/* フッター */
.footer {
    min-width: 320px;
    margin-top: 10px;
    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;
    }
}

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