@charset "utf-8";

/* 共通レイアウト　開始 ------------------------------------------ */

/* 共通 見出しレイアウト */
#main #yoshi {
    margin-bottom: 30px;
}
.paper_block_top {
    margin-bottom: 40px;
}
.paper_type a.nolink {
    pointer-events: none;
    cursor: default;
}
/* 共通 画像入りBOXレイアウト */
.paper_box_wrap {
    display: flex;
    justify-content: center;
    gap: 0 40px;
}
.paper_box.left {
    width: 580px;
}
.paper_box.right {
    width: 290px;
}
.paper_type {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 0 10px;
    font-weight: bold;
}
#main .paper_type a {
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1;
    padding: 5px 15px 4px;
    background: #e5e5e5;
    border-radius: 3px;
    color: #333;
}

.paper_list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.paper_list .paper_list_title{
    font-weight: bold;
    font-size: 15px;
    margin-top: 10px;
}
.paper_list .paper_list_text{
    font-size: 12px;
    margin-top: 5px;
}
@media screen and (max-width:750px){
    .paper_box_wrap {
        flex-direction: column-reverse;
        gap: calc(30 * 100vw / 750) 0;
    }
    .paper_box img {
        width: 100%;
        height: auto;
    }
    .paper_box.left,
    .paper_box.right{
        width: 100%;
    }
    .paper_type {
        gap: calc(15 * 100vw / 750);
        margin-bottom: calc(20 * 100vw / 750);
    }
    #main .paper_type a{
        padding: calc(10 * 100vw / 750);
        border-radius: calc(5 * 100vw / 750);
        font-size: calc(20 * 100vw / 750);
    }
    .paper_type p {
        width: calc(220 * 100vw / 750);
    }
    .paper_list {
        flex-direction: column;
        gap: calc(60 * 100vw / 750) 0;
    }
    .paper_list .paper_list_title{
        font-size:calc(28 * 100vw / 750);
        margin-top: calc(20 * 100vw / 750);
    }
    .paper_list .paper_list_text{
        font-size:calc(28 * 100vw / 750);
        margin-top: calc(15 * 100vw / 750);
    }
    .paper_list.three {
        text-align: center;
    }
}
/*table*/
@media screen and (max-width:750px) {
    /* #main table.common_table th, #main table.common_table td {
        font-size: calc(15 * 100vw / 750);
    } */
}
/* 共通レイアウト　終了 ------------------------------------------ */


/* 用紙について */


/* 弊店で取り扱っている用紙 */
#main #yoshi .paper_top {
    margin-bottom: 40px;
}

#main #yoshi .paper_top ul.paper_top_btn {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    font-weight: bold;
    margin: 33px auto;
    width: 746px;
}
#main #yoshi .paper_top ul.paper_top_btn li {
    width: 204px;
}
#main #yoshi .paper_top ul.paper_top_btn li a {
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
    color: #333;
    display: block;
    padding-top: 160px;
    text-decoration: none;
    transition-duration: .2s;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
#main #yoshi .paper_top ul.paper_top_btn li a:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	transform: translateY(-0.5em);
	-webkit-transform: translateY(-0.6em);
}
#main #yoshi .paper_top ul.paper_top_btn li.btn_hagaki a {
    background: top center url("../img/btn_hagaki.jpg") no-repeat;
    background-size: 100%;
}
#main #yoshi .paper_top ul.paper_top_btn li.btn_card a {
    background: top center url("../img/btn_card.jpg") no-repeat;
    background-size: 100%;
}
#main #yoshi .paper_top ul.paper_top_btn li.btn_a4 a {
    background: top center url("../img/btn_a4.jpg") no-repeat;
    background-size: 100%;
}
#main #yoshi .paper_top ul.paper_top_btn li a dl{
    padding: 20px 17px;
    box-sizing: border-box;
}
#main #yoshi .paper_top ul.paper_top_btn li a dl dt {
    font-weight: bold;
    font-size: 16px;
    margin-bottom:17px;
    position: relative;
}
#main #yoshi .paper_top ul.paper_top_btn li a dl dt::after {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 3px solid #162f65;
    border-right: 3px solid #162f65;
    transform: rotate(135deg);
}
#main #yoshi .paper_top ul.paper_top_btn li a dl dd {
    font-size: 12px;
    font-weight: normal;
}
#main #yoshi .paper_top .paper_top_sample a {
        text-decoration: underline;
}
@media screen and (max-width:750px) {
    #main #yoshi .paper_top ul.paper_top_btn {
        display: flex;
        flex-direction: column;
        row-gap:calc(40 * 100vw / 750);
        width: 100%;
        margin:calc(40 * 100vw / 750)  0;
    }
    #main #yoshi .paper_top ul.paper_top_btn li {
        width: 100%;
    }
    #main #yoshi .paper_top ul.paper_top_btn li:is(.btn_hagaki,.btn_card,.btn_a4) a {
        background-position: top left;
        background-size: auto calc(250 * 100vw / 750);
        padding-top: 0;
        padding-left: calc(320 * 100vw / 750);
        transform: none;
        height: calc(250 * 100vw / 750);
        overflow: hidden;
    }
    #main #yoshi .paper_top ul.paper_top_btn li a dl {
        padding: calc(30 * 100vw / 750) calc(20 * 100vw / 750);
        height: 100%;
    }
    #main #yoshi .paper_top ul.paper_top_btn li a dl dt{
        font-size: calc(28 * 100vw / 750);
        margin-bottom: calc(10 * 100vw / 750);
    }
    #main #yoshi .paper_top ul.paper_top_btn li a dl dd{
        font-size: calc(24 * 100vw / 750);
        letter-spacing: .03em;
    }
    #main #yoshi .paper_top ul.paper_top_btn li a dl dt::after {
        top:calc(10 * 100vw / 750);
        right: calc(20 * 100vw / 750);
        width: calc(10 * 100vw / 750);
        height: calc(10 * 100vw / 750);
        border-width: calc(5 * 100vw / 750);
    }
}
/* 封筒の紙質（table設定） */
table.huto{
    width: 80% !important;
}
table.huto tr th,
table.huto tr td{
    text-align: center !important;
}
table.huto th{
    width: 40%;
}

