@charset "UTF-8";

/* 横並び */
.content-flex{
    display: flex;
}

/* 製品ページ用フッター */
.footer-ex{
    position: fixed;
    bottom: 0;
    width: 100%;
}

h3{
    display: flex;
}
/* スマホサイズ全体の設定 */
/* ----------------------------------------------------------- */
@media screen and (max-width: 375px) {
    h3{
        font-size: 16px;
    }
}

/* サブコンテンツ */
/* ----------------------------------------------------------- */
.subcontent{
    display: none;
}

.subcontent-margin{
    margin-left: 30px;
}
.subcontent-title{
    color: black;
    border-bottom: solid 2px black;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
}
.subcontent-content{
    width: 900px;
    margin: 0px auto;
}
.btn-open{
    font-weight: 900;
}
.btn-change{
    transform: rotate(270deg);
}
.open-content:hover{
    cursor: pointer;
}
/* スマホサイズ　サブコンテンツ */
@media screen and (max-width: 375px) {
    .subcontent-title{
        color: black;
        border-bottom: solid 2px black;
        font-size: 18px;
        font-weight: 300;
        text-align: left;
        text-indent: 5px;
    }
    .subcontent-content{
        width: 360px;
        margin: 0px auto;
    }
    .subcontent-margin{
        margin-left: 15px;
    }
    
}

/* 印影作成ツールボタン */
/* ----------------------------------------------------------- */
.btn-margin{
    margin-top: 20px;
}
.btn-flex{
    display: flex;
}

/* 販売ボタン */
.subcontent-salebtn{
    width: 300px;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 20px;
    font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    color: white;
    background-color: rgb(0, 100, 0);
    letter-spacing: 4px;
    border: 2px solid rgb(0, 100, 0);
}
.subcontent-salebtn::after{
    content: "";
    display: inline-block;
    background: url(/image/signetbtn.png);
    height: 25px;
    width: 25px;
    background-size: contain;
    vertical-align: middle;
    margin-left: 15px;
    margin-bottom: 3px;
}

/* 詳細ボタン */
.subcontent-detailbtn{
    width: 300px;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 20px;
    font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    background-color: white;

    /* margin-left: 20px; */
    
    letter-spacing: 4px;
    border: 2px solid black;
    color: black;
}
.subcontent-detailbtn::after{
    content: "";
    display: inline-block;
    background: url(/image/signetbtnblack.png);
    height: 25px;
    width: 25px;
    background-size: contain;
    vertical-align: middle;
    margin-left: 15px;
    margin-bottom: 3px;
}

/* スマホ */
@media screen and (max-width: 375px){
    .btn-flex{
        display: block;
        text-align: center;
    }

    /* 販売ボタン */
    .subcontent-salebtn{
        width: 250px;
        height: 30px;
        font-size: 15px;
        font-weight: bold;
        border-radius: 20px;
        font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
        color: white;
        background-color: rgb(0, 100, 0);
        letter-spacing: 4px;
        border: 2px solid rgb(0, 100, 0);
    }
    .subcontent-salebtn::after{
        content: "";
        display: inline-block;
        background: url(/image/signetbtn.png);
        height: 20px;
        width: 20px;
        background-size: contain;
        vertical-align: middle;
        margin-left: 15px;
        margin-bottom: 1px;
    }

    /* 詳細ボタン */
    .subcontent-detailbtn{
        width: 250px;
        height: 30px;
        font-size: 15px;
        font-weight: bold;
        border-radius: 20px;
        font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
        background-color: white;
        margin-left: 0px;
        margin-top: 10px;
        letter-spacing: 4px;
        border: 2px solid black;
    }
    .subcontent-detailbtn::after{
        content: "";
        display: inline-block;
        background: url(/image/signetbtnblack.png);
        height: 20px;
        width: 20px;
        background-size: contain;
        vertical-align: middle;
        margin-left: 15px;
        margin-bottom: 1px;
    }

}




/* PC */
@media screen and (min-width: 376px){
    .subcontent-salebtn:hover{
        cursor: pointer;
        background-color: rgb(0, 150, 0);
        border: 2px solid rgb(0, 150, 0);
    }
    .subcontent-detailbtn:hover{
        cursor: pointer;
        background-color: black;
        color: white;
    }
    .subcontent-detailbtn:hover::after{
        content: "";
        display: inline-block;
        background: url(/image/signetbtn.png);
        height: 25px;
        width: 25px;
        background-size: contain;
        vertical-align: middle;
        margin-left: 15px;
        margin-bottom: 3px;
    }
    
    
}
