@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: #009687;
    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 {
    flex-grow: 1;
}

/* 薄緑色の背景 */
.light-green-background {
    background-color: #ddedea;
}

/* トピック */
.topic {
    padding: 64px 0px;
    margin: 0px auto;
    max-width: 1024px;
    min-width: 320px;
    width: 80vw;
}

.topic-description {
    margin: 48px auto 0px auto;
}

/* レイアウト */
.layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* 文言のレイアウト */
.text-layout {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.green-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #009688;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.message {
    margin-top: 48px;
}

/* 画像レイアウト */
.image-layout {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image {
    max-width: 300px;
}

/* スマホ表示時のレイアウト */
@media (max-width: 850px) {
    .layout {
        flex-direction: column;
        align-items: center;
    }

    .text-layout {
        order: 1;
        width: 100%;
    }

    .image-layout {
        order: 2;
        margin-top: 48px;
        width: 100%;
    }
}

/* 並んだボックス */
.lined-box {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box {
    width: 45%;
    max-width: 470px;
    min-width: 320px;
    border: 2px #009687 solid;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
}

.box-container {
    padding: 35px;
}

.box-title {
    font-size: 24px;
    font-weight: bold;
    color: #009687;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.box-description {
    margin-top: 24px;
    line-height: 28px;
}

/* 比較ボックス */
.compare-box {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.left-box {
    width: 45%;
    min-width: 320px;
    margin: 10px;
    background-color: #ffffff;
    border: 2px #5d5d5d solid;
    border-radius: 10px;
}

.left-box-title {
    padding: 36px;
    text-align: center;
    font-size: 24px;
    color: #5d5d5d;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.right-box {
    width: 45%;
    min-width: 320px;
    margin: 10px;
    background-color: #ffffff;
    border: 2px #009687 solid;
    border-radius: 10px;
}

.right-box-title {
    padding: 36px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #009687;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.line {
    margin: 0px auto 0px auto;
    width: 90%;
    border: none;
    border-top: 1px solid #dddddd;
}

.feature-area {
    padding: 8px 24px 36px 24px;
}

.icon {
    width: 24px;
    margin-right: 16px;
}

.feature {
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.appeal-feature {
    margin-top: 24px;
    color: #009687;
    font-weight: bold;
    display: flex;
    align-items: center;
}

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

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

.step-title {
    font-size: 18px;
    font-weight: bold;
    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;
    background-color: #fff;
}

.step-image {
    max-width: 200px;
    margin: 0 auto;
}

.step-text {
    margin: 24px auto 0 auto;
    flex-grow: 1;
}

/* 詳しい手順ボタン */
.detail-flow-buttons {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.detail-flow-button {
    display: block;
    border: 2px solid #009688;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    background-color: white;
    color: #009688;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

/* ホバー時のボタンの色 */
.detail-flow-button:hover {
    background-color: #009688;
    color: white;
}

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

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