@charset "utf-8";

/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
:focus {
    outline: 0;
}

ol,
ul {
    list-style: none;
}
table {
    border-collapse: separate;
    border-spacing: 0;
}
caption,
th,
td {
    font-weight: normal;
    text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
}
blockquote,
q {
    quotes: '' '';
}
a img {
    border: 0;
}
figure {
    margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
/* -------------------------------------------------------------- */

body {
    color: #000000;
    font: 13px verdana, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',
        'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', Sans-Serif;
    line-height: 1.6;
    background: #fefffb;
    background-size: 100%;
    -webkit-text-size-adjust: none;
    text-align: center;
    /*max-width: 768px;*/
    margin: 0 auto;
}

/* リンク設定
------------------------------------------------------------*/
a {
    color: #ffff;
}
a:hover {
    color: #323232;
}
a:active,
a:focus {
    outline: 0;
}

/* 全体
------------------------------------------------------------*/
.line0 {
    line-height: 0;
    vertical-align: bottom;
}

.Container {
    width: 100%;
}

p {
    font-size: 20px;
}

.text_box {
    margin: 3% 6% 3% 6%;
}

.green {
    color: #2abb78;
    font-weight: bold;
}

.pink {
    color: #fb738b;
    font-weight: bold;
}

.pink_box {
    color: #fb738b;
    background-color: #fdffcb;
    padding: 4% 2%;
    margin: auto;
    border-radius: 5px;
    border: 2px solid #fb738b;
    max-width: 768px;
    width: calc(100% - 10%);
    box-sizing: border-box;
}

.img_max {
    max-width: 768px;
    margin-top: 10px;
}

/* 背景画像の上にボタン配置（チャプター）
------------------------------------------------------------*/
.bg_img {
    position: relative;
    margin-bottom: 0%;
}

.img_list {
    width: 90%;
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -54%);
}

.img_btn {
    width: 90%;
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, -92%);
}

.btn {
    max-width: 600px;
    margin-top: 30px;
    margin-bottom: 12px;
}

/* PC用 */

br.pc {
    display: block;
}
br.sp {
    display: none;
}
.btn_start {
    display: none;
}

/* スマホ用 */

@media (max-width: 1024px) {
    br.pc {
        display: none;
    }

    br.sp {
        display: block;
    }

    p {
        font-size: 16px;
    }
    .pink_box_font {
        font-size: 12px;
    }
    .btn_start {
        display: inline-block;
    }
}
