@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;
}

#nissay a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    /* ie 6 7 */
    -ms-filter: "alpha(opacity=80)";
    /* ie 8 */
}

#nissay {
    color: #333;
    line-height: 1.8;
    font-size: 1.2rem;
}


/*===========================================================
font
============================================================= */

/* 480～599px：SP横
------------------------------ */
@media screen and (min-width:480px) and (max-width:599px) {
    #nissay {
        font-size: 1.4rem;
    }
}

/* 600～959px：タブレット
------------------------------ */
@media screen and (min-width:600px) and (max-width:959px) {
    #nissay {
        font-size: 1.5rem;
    }
}

/* 960～1279px：PC小
------------------------------ */
@media screen and (min-width:960px) and (max-width:1279px) {
    #nissay {
        font-size: 1.5rem;
    }
}

/* 1280～：PC大
------------------------------ */
@media screen and (min-width:1280px) {
    #nissay {
        font-size: 1.6rem;
    }
}

/*===========================================================
sns
============================================================= */
#nissay .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 */
}

#nissay .sns > li {
    min-height: 40px;
    border-radius: 5px;
    overflow: hidden;
    /* 文字を非表示 */
    text-indent: 100%;
    /* 文字を非表示 */
    white-space: nowrap;
    /* 文字を非表示 */
    -ms-grid-row: 1;
    /* IE */
}

#nissay .sns li a {
    display: block;
}

#nissay .sns li:hover {
    opacity: 0.8;
    cursor: pointer;
}

#nissay .sns li:nth-child(1) {
    background: #1877f2 url("../img/sns_bt_fb.png") no-repeat center;
    -ms-grid-column: 1;
}

/* Facebook */
#nissay .sns li:nth-child(2) {
    background: #06c755 url("../img/sns_bt_line.png") no-repeat center;
    -ms-grid-column: 3;
}

/* LINE */
#nissay .sns li:nth-child(3) {
    background: #1d9bf0 url("../img/sns_bt_tw.png") no-repeat center;
    -ms-grid-column: 5;
}

/* Twitter */
#nissay .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) {

    #nissay .sns li:nth-child(1),
    #nissay .sns li:nth-child(2),
    #nissay .sns li:nth-child(3),
    #nissay .sns li:nth-child(4) {
        background-size: contain;
    }
}

/* ↑#xxxxには固有のID名を入れてください。この上はID名以外編集しないでください。内容を修正したいときは、新たにこの下に↓指定しなおしてください */

/* OPオリジナルココカラ */

#nissay {
    width: 100%;
    margin: 0 auto;
    font-size: 100%;
}


#nissay .fr {
    background: #fff;
}

#nissay img {
    width: 100%;
    vertical-align: top;
}

/*===========================================================
動き
============================================================= */

/* フェード
---------------------------------*/
/* fadeUp */

#nissay .fadeup {
    opacity: 0;
    transform: translate(0, 50%);
    transition: .5s;
}

#nissay .fadeup.up {
    transform: translate(0, 0);
    opacity: 1;
}

/* p
---------------------------------*/
#nissay p {
    padding: 3.13% 4.69%;
    text-align: justify;
}

/* span
---------------------------------*/
#nissay span {
    display: block;
    font-size: 90%;
}

/* bt
---------------------------------*/
#nissay .bt {
    display: block;
    margin: 1.56% 3.13% 3.13%;
    box-shadow: 0 0.5em 0 #ff806b;
    background-color: #ffa090;
    border-radius: 9999px;
    cursor: pointer;
}

#nissay .bt:hover {
    box-shadow: none;
    transform: translateY(0.5em);
}

#nissay .bt:active {
    transform: translateY(0.5em);
    box-shadow: none;
}

#nissay .bt_fix {
    width: 97%;
    margin: 0 0 1.56% 1.56%;
}

#nissay .bt_fix img {
    width: 100%;
}


/* mv
---------------------------------*/
#nissay .mv {
    margin: 0 0 6.25%;
}

#nissay .mv .tx {
    font-size: 130%;
    font-weight: bold;
}

#nissay .mv span {
    margin: 0 4.69%;
    padding-left: 2.6em;
    text-indent: -2.6em;
}

#nissay .mv .span_no {
    padding-left: 0;
    text-indent: 0;
}


/* fr_01
---------------------------------*/
#nissay .fr_01 {
    margin: 0 0 6.25%;
    padding: 0;
}

/*アコーディオン*/
#nissay .fr_01 .accordibton_title {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    transition: all .5s ease;
}

#nissay .fr_01 .accordibton_title::before {
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url("../img/fr_01_bt_open.png") no-repeat right 0/cover;
}

#nissay .fr_01 .accordibton_title.close::before {
    background: url("../img/fr_01_bt_close.png") no-repeat right 0/cover;
}

#nissay .fr_01 .accordibton_tx {
    display: none;
    padding: 3.13%;
    background: linear-gradient(to bottom right, #feffb4, #ffd1af);
}

#nissay .fr_01 .accordibton_tx div {
    background: #fff;
    border-radius: 10px;
    padding: 3.13%;
}

#nissay .fr_01 li {
    display: block;
    margin: 0 0 1%;
}

#nissay .fr_01 .accordibton_tx h3 {
    display: inline;
    padding: 0.3% 1% 0.2%;
    background: #fecc71;
    font-weight: bold;
}

#nissay .fr_01 .accordibton_tx h4 {
    margin: 1.56% 0;
    font-size: 130%;
    font-weight: bold;
}

#nissay .fr_01 .accordibton_tx p {
    padding: 0 0 1.56%;
}

#nissay .fr_01 .accordibton_tx .span_01 {
    padding-left: 2.6em;
    text-indent: -2.6em;
}

#nissay .fr_01 .accordibton_tx .span_02 {
    padding-left: 1em;
    text-indent: -1em;
}

/* fr_02
---------------------------------*/
#nissay .fr_02 {
    margin: 0 0 6.25%;
}

#nissay .fr_02 .span_01 {
    margin: 0 4.69%;
    padding-left: 2.6em;
    text-indent: -2.6em;
}

#nissay .fr_02 .span_02 {
    margin: 0 4.69%;
    padding-left: 1em;
    text-indent: -1em;
}

/* fr_03
---------------------------------*/
#nissay .fr_03 .bt {
    margin-top: 4.69%;
}

#nissay .fr_03 span {
    padding-left: 1em;
    text-indent: -1em;
}

#nissay .fr_03 .tx_red {
    color: #c92222;
}

#nissay .fr_03 .tx_red a {
    color: #c92222;
}

#nissay .fr_03 .tx_red a:hover {
    text-decoration: underline;
}

#nissay .remember_tx a {
    display: block;
    text-align: center;
    font-size: 120%;
    font-weight: bold;
    color: #c92222;
}

/*================================
/* 650px～
------------------------------ */
header,
footer {
    background: #fff;
}
