@charset "utf-8";

/* CSS Document */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

body {
    font-family: Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
}

#akachan a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    /* ie 6 7 */
    -ms-filter: "alpha(opacity=80)";
    /* ie 8 */
}

#akachan {
    color: #333;
    line-height: 1.8;
    font-size: 1.2rem;
}

/* ↑#xxxxには固有のID名を入れてください。この上はID名以外編集しないでください。内容を修正したいときは、新たにこの下に↓指定しなおしてください */

/* OPオリジナルココカラ */

#akachan {
    width: 100%;
    margin: 0 auto;
    font-size: 100%;
}


#akachan .fr {
    background: #fff;
}

/* p
---------------------------------*/
#akachan p {
    padding: 3.13% 4.69%;
    text-align: justify;
}

#akachan img {
    width: 100%;
    vertical-align: top;
}

/*===========================================================
動き
============================================================= */

/* フェード
---------------------------------*/
/* fadeUp */

#akachan .fadeup {
    opacity: 0;
    transform: translate(0, 50%);
    transition: .5s;
}

#akachan .fadeup.up {
    transform: translate(0, 0);
    opacity: 1;
}

/*================================
/* 650px～
------------------------------ */
header,
footer {
    background: #fff;
}


/*===========================================================
content
============================================================= */
#akachan .mv,
#akachan .fr_02,
#akachan .fr_03 {
    margin-bottom: 1.5em;
}

#akachan .mv {
    background: #f7f5f3 url("../img/mv_bg.png") no-repeat top center;
    background-size: contain;
}

/* 500～：PC大
------------------------------ */
@media screen and (min-width:500px) {
    #akachan .mv {
        background-size: cover;
    }
}


#akachan .mv h1 {
    margin: 0;
    padding: 0;
}

#akachan .mv ul li {
    width: 50%;
    float: left;
}

#akachan .mv ul li:nth-child(5) {
    width: 100%;
}

#akachan .mv p {
    font-size: 80%;
    margin: 0 2.7% 4.69%;
    padding: 0 0 0 1em;
    text-indent: -1em;
}

#akachan .mv p a {
    text-decoration: underline;
    color: #333;
}

#akachan .fr_01 {
    background: url("../img/fr_01_bg.png") no-repeat top center;
    margin-bottom: 2em;
    padding: 0 0 2.2em 0;
    background-size: cover;
}

#akachan .fr_02 p {
    text-align: center;
    font-weight: bold;
    font-size: 150%;
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
}

#akachan .fr_02 p a {
    text-decoration: underline;
    color: #ea545d;
}

#akachan .fr_02 p.big {
    font-size: 120%;
    font-weight: bold;
}


#akachan .fr_02 span {
    text-decoration: underline;
}


#akachan .fr_02 span.small {
    font-size: 80%;
    text-decoration: none;
}

#akachan .fr_02 ul {
    margin: 3.5%;
    padding: 4.5%;
    border-radius: 20px;
    border: 0.5em solid #ea545d;
    font-weight: bold;
    font-size: 120%;
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
}

#akachan .fr_02 ul a {
    font-size: 120%;
    text-decoration: underline;
    color: #ea545d;
}

#akachan .fr_02 ul li {
    line-height: 1.2;
    text-align: justify;
}

#akachan .fr_02 ul .li_01 {
    background: url("../img/fr_02_04_ic_01.png") no-repeat top left;
    padding: 0 0 1em 15%;
    background-size: 13%;

}

#akachan .fr_02 ul .li_02 {
    background: url("../img/fr_02_04_ic_02.png") no-repeat top left;
    padding: 0 0 1em 15%;
    background-size: 13%;
}

#akachan .fr_02 ul li a {
    padding: 0 12% 0 0;
    background: url("../img/fr_02_04_ic_03.png") no-repeat bottom right;
    background-size: auto;
}

/*===========================================================
font
============================================================= */

/* 480～599px：SP横
------------------------------ */
@media screen and (min-width:480px) and (max-width:599px) {
    #akachan {
        font-size: 1.4rem;
    }
}

/* 600～959px：タブレット
------------------------------ */
@media screen and (min-width:600px) and (max-width:959px) {
    #akachan {
        font-size: 1.5rem;
    }
}

/* 960～1279px：PC小
------------------------------ */
@media screen and (min-width:960px) and (max-width:1279px) {
    #akachan {
        font-size: 1.5rem;
    }
}

/* 1280～：PC大
------------------------------ */
@media screen and (min-width:1280px) {
    #akachan {
        font-size: 1.6rem;
    }
}

/*===========================================================
sns
============================================================= */
#akachan .sns {
    display: grid;
    display: -ms-grid;
    /* IE */
    width: 100%;
    padding: 5% 3.13%;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1%;
    -ms-grid-columns: 1fr 1% 1fr 1% 1fr 1% 1fr;
    /* IE */
}

#akachan .sns > li {
    min-height: 40px;
    border-radius: 5px;
    overflow: hidden;
    /* 文字を非表示 */
    text-indent: 100%;
    /* 文字を非表示 */
    white-space: nowrap;
    /* 文字を非表示 */
    -ms-grid-row: 1;
    /* IE */
}

#akachan .sns li a {
    display: block;
}

#akachan .sns li:hover {
    opacity: 0.8;
    cursor: pointer;
}

#akachan .sns li:nth-child(1) {
    background: #1877f2 url("../img/sns_bt_fb.png") no-repeat center;
    -ms-grid-column: 1;
}

/* Facebook */
#akachan .sns li:nth-child(2) {
    background: #06c755 url("../img/sns_bt_line.png") no-repeat center;
    -ms-grid-column: 3;
}

/* LINE */
#akachan .sns li:nth-child(3) {
    background: #1d9bf0 url("../img/sns_bt_tw.png") no-repeat center;
    -ms-grid-column: 5;
}

/* Twitter */
#akachan .sns li:nth-child(4) {
    background: #00a4de url("../img/sns_bt_htb.png") no-repeat center;
    -ms-grid-column: 7;
}

/* HatenaBookmark */

@media screen and (max-width:640px) {

    #akachan .sns li:nth-child(1),
    #akachan .sns li:nth-child(2),
    #akachan .sns li:nth-child(3),
    #akachan .sns li:nth-child(4) {
        background-size: contain;
    }
}
