@charset "utf-8";

/*-------------------------------------------------*/


/*(C) FUN-CREATE Co.,Ltd. All rights reserved.*/


/*--------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

/*PC パソコン----------------------------------*/


/* IE用labelバグ対策[画像のみ無反応] */

label {
    position: relative;
    height: 100%;
    width: 100%;
    display: block;
    vertical-align: top;
}

label span.bug {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
}

label img {
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
}

label input {
    position: absolute;
    z-index: 3;
}


/*選択されてる枠*/

.ThImgOmote,
.ThImgUra {
    border: 3px solid #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.ThImgOmote input,
.ThImgUra input {
    display: none;
}

label:hover .ThImgOmote,
label:hover .ThImgUra {
    border: 3px solid #FADCCB;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none!important;
}

.ThImgOmote p,
.ThImgUra p {
    color: #333!important;
}

.choicedO {
    border: 3px solid #FFC6C7!important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    position: relative;
}

.checkedO:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 12px;
    margin: 0;
    border-top: 5px solid #FF5D84;
    border-right: 5px solid #FF5D84;
    transform: rotate(135deg);
    box-sizing: border-box;
}

.choicedU {
    border: 3px solid #C3F0CA!important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    position: relative;
}

.checkedU:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 12px;
    margin: 0;
    border-top: 5px solid #7DE18D;
    border-right: 5px solid #7DE18D;
    transform: rotate(135deg);
    box-sizing: border-box;
}


/*両面うちわ 表裏選択したやつ表示場所*/


/*横並びボックス*----------------------------------------*/

.select-box {
    display: flex;
    vertical-align: top;
    justify-content: space-around;
    margin-bottom: 30px;
}

.select-box-omote {
    width: 40%;
    padding: 3%;
    border: 5px solid #FFC6C7;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    text-align: center;
}

.select-box-ura {
    width: 40%;
    padding: 3%;
    border: 5px solid #C3F0CA;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    text-align: center;
}

.select-box-omote input,
.select-box-ura input {
    display: none;
}

.ti-select-omote,
.ti-select-ura {
    font-size: 20px;
    font-weight: 600;
}

#HassoTag {
    font-size: 1.1rem;
    font-weight: bold;
}


/*オプション＋～円*/

.option-price {
    background: #FADCCB;
    padding: 2px 5px;
    font-weight: bold;
    line-height: 1.2em;
}

.option-price span {
    font-size: 12px;
}


/*うちわ注文　選択用CSS*/

.choice-r,
.choice-b {
    border: 2px solid rgb(236, 236, 236);
    border-radius: 5px;
    padding: 3%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}


/*選択されてる枠*/

.choice {
    border: 2px solid rgb(236, 236, 236);
    border-radius: 5px;
    padding: 3%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}

.choice-r input,
.choice-b input {
    display: none;
}

label:hover .choice-r {
    border: 2px solid #FFC6C7;
    border-radius: 5px;
    padding: 3%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none!important;
}

label:hover .choice-b {
    border: 2px solid #C3F0CA;
    border-radius: 5px;
    padding: 3%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none!important;
}

.choicedR {
    border: 2px solid #FFC6C7!important;
    border-radius: 5px;
    padding: 3%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    position: relative;
}

.choicedR:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 12px;
    margin: 0;
    border-top: 5px solid #FF5D84;
    border-right: 5px solid #FF5D84;
    transform: rotate(135deg);
    box-sizing: border-box;
}

.choicedB {
    border: 2px solid #C3F0CA!important;
    border-radius: 5px;
    padding: 3%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    position: relative;
}

.choicedB:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 12px;
    margin: 0;
    border-top: 5px solid #7DE18D;
    border-right: 5px solid #7DE18D;
    transform: rotate(135deg);
    box-sizing: border-box;
}


/*定型メッセージ選択用*/

.mess-nav {
    width: 100%;
    text-align: center;
}

.mess-nav li {
    border: 2px solid rgb(236, 236, 236);
    border-radius: 5px;
    padding: 1%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    zoom: 1;
    *display: inline;
}

.mess-nav li input {
    display: none;
}

.mess-nav a:hover li {
    background-color: #FCFCFA!important;
    border: 2px solid #DBD9CA;
}

.checkedMessR-th {
    border: 2px solid #FFC6C7!important;
    position: relative;
}

.checkedMessB-th {
    border: 2px solid #C3F0CA!important;
    position: relative;
}

.checkedMessR-th:before {
    display: block;
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    color: #FF5D84;
    z-index: 10;
}

.checkedMessB-th:before {
    display: block;
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    color: #7DE18D;
    z-index: 10;
}

.check-MessR,
.check-MessB {
    border: 4px solid #E9E8DE;
    border-radius: 8px;
    padding: 3%;
    margin: 3% 5%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    text-decoration: none;
    text-align: center;
    position: relative;
}

.check-MessR:before,
.check-MessB:before {
    display: block;
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    top: 3%;
    left: -1%;
    font-size: 4rem;
    color: #E9E8DE;
}

.checkedMessR {
    border: 4px solid #FFC6C7!important;
    border-radius: 8px;
    padding: 3%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    text-decoration: none;
    position: relative;
}

.checkedMessR:before {
    display: block;
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    top: 3%;
    left: -1%;
    font-size: 4rem;
    color: #FF5D84;
}

.checkedMessB {
    border: 4px solid #C3F0CA!important;
    border-radius: 8px;
    padding: 3%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    text-decoration: none;
    position: relative;
}

.checkedMessB:before {
    display: block;
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    top: 3%;
    left: -1%;
    font-size: 4rem;
    color: #7DE18D;
}

.select-mess-omote {
    width: 70%;
    margin: 0 auto;
    vertical-align: top;
    padding: 3%;
    border: 5px solid #FFCAD2;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    text-align: center;
}

.select-mess-ura {
    width: 70%;
    margin: 0 auto;
    vertical-align: top;
    padding: 3%;
    border: 5px solid #B8EEFC;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    text-align: center;
}

.select-mess-omote input,
.select-mess-ura input {
    display: none!important;
}

.select-mess-omote label,
.select-mess-ura label {
    display: none!important;
}


/*スマホ対応---------------------------------*/

@media screen and (max-width: 899px) {
    .select-box-omote,
    .select-box-ura {
        width: 46%;
        padding: 2%;
    }
    /*定型メッセージ選択用*/
    .checkedMessR-th:before {
        display: block;
        content: "\f00c";
        font-family: FontAwesome;
        position: absolute;
        top: -0.5em;
        left: 0;
        font-size: 1rem;
        color: #FF5D84;
        z-index: 10;
    }
    .checkedMessB-th:before {
        display: block;
        content: "\f00c";
        font-family: FontAwesome;
        position: absolute;
        top: -0.5em;
        left: 0;
        font-size: 1rem;
        color: #7DE18D;
        z-index: 10;
    }
    .mess-nav li {
        width: 11%;
        margin: 1% 0.5%;
        display: inline-block;
        zoom: 1;
        *display: inline;
    }
}


}