@charset "utf-8";
.box-inner div:not(:last-child),
.box-inner table:not(:last-child){
    margin-bottom: 30px;
}
/* テーブルのフォントサイズ調整 */
#main table.common_table th,
#main table.common_table td{
    font-size: 14px;
    text-align: left;
}
#main table.common_table .bg_r {
    background: #FFEEEE;
}
/* 情報量が多い場合のスクロールテーブルの調整 */
#main .scroll_table.-long table {
    border-collapse: collapse;
    width: max-content;
}
@media screen and (max-width:750px) {
    .box-inner div:not(:last-child),
    .box-inner table:not(:last-child){
        margin-bottom: calc(52*100vw/750);
    }
    /* テーブルのフォントサイズ調整 */
    #main table.common_table th,
    #main table.common_table td{
        font-size: calc(24*100vw/750);
    }

}
/* タイポグラフィ*/
#lower_layaut h2.title_lg {
    font-size: 22px;
    text-align: left;
    padding: 20px 16px;
}
#lower_layaut .title_md {
    font-size: 18px;
}
.title_md_bg{
    font-size: 18px;
    background: #EEE;
    margin-bottom: 32px;
    padding: 12px;
}
.text_head{
    margin-bottom: 20px;
    text-align: center;
}
/*ダウンロードアイコン*/
.btn_g-radius.-download{
    position: relative;
}
.btn_g-radius.-download::after{
    content: "";
    display: inline-block;
    background: url(/common/img/ico_download_white.png) no-repeat center center / contain;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
}
/*アンカーリンク*/
.choice_box_area{
    margin-bottom: 32px;
}
.choice_box_area .anc_list-link{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.choice_box_area .anc_list-link li{
    font-weight: bold;
}
.choice_box_area .anc_list-link li p+p{
    margin-top: 5px;
}
@media screen and (max-width:750px){
    /* タイポグラフィ*/
    #lower_layaut h2.title_lg {
        font-size: calc(39 * 100vw / 750);
        padding: calc(35 * 100vw / 750) calc(28 * 100vw / 750);
    }
    #lower_layaut .title_md {
        font-size: calc(32 * 100vw / 750);
    }
    .title_md_bg{
        font-size: calc(32 * 100vw / 750);
        margin-bottom: calc(56 * 100vw / 750);
        padding: calc(21 * 100vw / 750);
		letter-spacing: normal;
    }
    .text_head{
        margin-bottom: calc(35 * 100vw / 750);
		text-align: left;
		letter-spacing: normal;
    }
    /*ダウンロードアイコン*/
    .btn_g-radius.-download::after{
        width: calc(30 * 100vw / 750);
        height: calc(30 * 100vw / 750);
        right: calc(20 * 100vw / 750);
    }
    /*アンカーリンク*/
    .choice_box_area{
        margin-bottom: calc(56 * 100vw / 750);
    }
    .choice_box_area .anc_list-link{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: calc(35 * 100vw / 750);
    }
	.choice_box_area .anc_list-link li p{
		font-weight: bold;
		text-align: center;
	}
    .choice_box_area .anc_list-link li p+p{
        margin-top: calc(9 * 100vw / 750);
    }
}
/* 文字数制限のめやす
-------------------------------------------------*/
#main table.common_table .moji_cnt th {
    text-align: center;
}
#main table.common_table .moji_cnt th span {
    font-size: 12px;
    color: #fff;
    background: #333;
    border-radius: 3px;
    padding: 0 5px;
    display: inline-block;
    box-sizing: border-box;
}
@media screen and (max-width:750px){
    #main table.common_table .moji_cnt th span {
        font-size:calc(20 * 100vw / 750);
        border-radius:calc(5 * 100vw / 750);
        padding: 0 calc(8 * 100vw / 750);
    }
}
/* マイページ住所録から注文する
-------------------------------------------------*/
.order_mypage .title_lg span {
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}
@media screen and (max-width:750px){
    .order_mypage .title_lg span {
        padding: calc(8 * 100vw / 750);
        border-radius: calc(8 * 100vw / 750);
    }
}
/* テンプレートファイルで注文する
-------------------------------------------------*/
.tmp_dl_area {
    display: flex;
    justify-content: center;
    gap: 0 20px;
}
.tmp_dl_area dl {
    background: #eee;
    padding:30px 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.tmp_dl_area dl dt {
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 0 10px;
}
.tmp_dl_area dl dt::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
}
.tmp_dl_box-p dt::before {
    content: "";
    background: url(/atena/images/ico_select_personal.png) no-repeat 0 0 /contain;
}
.tmp_dl_box-c dt::before {
    content: "";
    background: url(/atena/images/ico_select_company.png) no-repeat 0 0 /contain;
}
#main .tmp_dl_area dl .btn_g-radius {
    width:100%;
    box-sizing: border-box;
    margin-top: 25px;
    position: relative;
}
#main .tmp_dl_area .tmp_dl_box-p .btn_g-radius{
    background: #FC7903;
}
@media screen and (max-width:750px){
    .tmp_dl_area {
        flex-direction: column;
        gap:0;
    }
    .tmp_dl_area dl+dl{
        margin-top: calc(56 * 100vw / 750);
    }
    .tmp_dl_area dl {
        padding: calc(53 * 100vw / 750) calc(35 * 100vw / 750);
    }
    .tmp_dl_area dl dt {
        margin-bottom: calc(35 * 100vw / 750);
        gap: 0 calc(18 * 100vw / 750);
    }
    .tmp_dl_area dl dt::before {

        width: calc(70 * 100vw / 750);
        height: calc(70 * 100vw / 750);
    }
    #main .tmp_dl_area dl .btn_g-radius {
        margin-top: calc(44 * 100vw / 750);
    }
}
/* テンプレートファイルのダウンロード ボタン*/

#main .order_file .btn_g-radius.-download {
    width: 500px;
}
@media screen and (max-width:750px){
    #main .order_file .btn_g-radius.-download {
        width: 100%;
    }
}



/* OK・NG例設定 */
#main table.good,
#main table.bad {
    position:relative;
    display: flex;
    align-items: flex-start;
    gap: 0 20px;
    width: auto;
}
#main table.good:before,
#main table.bad:before{
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
}
#main table.good:before{
    background: url("/atena/images/maru.gif") no-repeat center center / contain;
}
#main table.bad:before{
    background: url("/atena/images/batu.gif") no-repeat center center / contain;
}
/* 連名テキスト位置調整 */
.txt_renmei {
	padding-left:63px;
	margin-bottom:5px;
}
/* テーブル内番号表示 */
.number {
    height: 25px;
    width: 25px;
    display: block;
    border-radius: 50%;
    background: #009900;
    line-height: 25px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
@media screen and (max-width:750px) {
    /* OK・NG例設定 */
    #main table.good,
    #main table.bad {
        gap:0;
        width: max-content;
        flex-direction: column;
    }
    #main table.good:before,
    #main table.bad:before{
        width: calc(61 * 100vw / 750);
        height: calc(61 * 100vw / 750);
        margin-bottom:calc(10 * 100vw / 750);
    }
    /* 連名テキスト位置調整 */
    .txt_renmei {
        padding-left:0;
        margin-bottom: calc(9 * 100vw / 750);
    }
    /* テーブル内番号表示 */
    .number {
        height: calc(44 * 100vw / 750);
        width: calc(44 * 100vw / 750);
        line-height: calc(44 * 100vw / 750);
        vertical-align: middle;
    }
}

/* テーブルカラム設定 */
.column{
    display:flex;
    justify-content:flex-start;
    gap: 0 40px;
}
@media screen and (max-width:750px){
    .column{
        flex-direction: column;
        gap:0;
    }
}
/* サンプルはがき表示設定 */
.hagaki_img {
    position: relative;
}
.hagaki_img img {
    border:1px solid #CCC;
}
.hagaki_img .number{
    position: absolute;
    top: 5px;
    left: 5px;;
}
@media screen and (max-width:750px){
    .hagaki_img {
        margin-inline: auto;
    }
    .hagaki_img .number{
        top: calc(10 * 100vw / 750);
        left: calc(10 * 100vw / 750);
    }
}