@charset "utf-8";
/* CSS Document */
hr {
	border:none 0px;
	height:1px;
	background:#CCCCCC;
	margin-bottom: 10px;
}
.di {
	display:inline;
}
/* -------------------------- PAGE LAYOUT START -------------------------- */

#container {
	text-align:center;
	height:100%;
	width:max-content;
	min-width:100%;
	display: flex;
	flex-direction: column;
}
#container #contents {
	width:100%;
	margin: 0 auto;
}

/* HEADER LAYOUT　開始 */

#header {
	padding: 0 10px 10px;
	text-align: left;
	height: 72px;
	width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#logo {
	width:320px;
	float: left;
}
#logo .logo_img {
	width:320px;
}
#logo h1 {
	width:320px;
	font-size:12px;
	line-height: 200%;
	font-weight: normal;
	height: 30px;
}
#tnumber {
	width:424px;
}

@media screen and (max-width:750px){
	#container {
		width: 100%;
	}
	#header{
		width: 100%;
		height: calc(100*100vw/750);
	}
	#logo{
		width: calc(445*100vw/750);
	}
	#logo .logo_img{
		width: calc(445 * 100vw / 750);
        height: auto;
	}
	#logo h1,
	#tnumber{
		display: none;
	}
}
/* HEADER LAYOUT　終了 */


/* TOP LAYOUT　開始 */

#box_step {
    text-align: center;
    margin-bottom: 80px;
    padding: 64px 0;
    background: #EEE;
    box-sizing: border-box;
}
#box_step h2 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 68px;
}
#box_step .steplst {
    width: 840px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    position: relative;
}
#box_step li {
	font-size: 16px;
	width: 100%;
	position: relative;
}
#box_step li::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius:50%;
    background: #FFF;
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
	z-index: 1;
}
#box_step li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: calc(50% - 40px);
    right: -50%;
    transform: translateY(50%);
}
#box_step li.active {
    font-weight: bold;
}
#box_step li.active::before {
    width: 20px;
    height: 20px;
    background: #1C2F61;
    top: calc(50% - 48px);
}
@media screen and (max-width:750px){
	#box_step {
        margin-bottom: calc(80 * 100vw / 750);
        padding:calc(52 * 100vw / 750) calc(40 * 100vw / 750) calc(60 * 100vw / 750);
	}
	#box_step h2 {
        font-size: calc(44 * 100vw / 750);
        margin-bottom: calc(56 * 100vw / 750);
    }
	#box_step .steplst{width: 100%;}
	#box_step li {
        font-size: calc(24 * 100vw / 750);
        width: 100%;
    }
	#box_step li.active::before {
        content: "";
        width: calc(20 * 100vw / 750);
        height: calc(20 * 100vw / 750);
        border-radius: calc(20 * 100vw / 750);
        top: calc(50% - calc(45 * 100vw / 750));
    }
	#box_step li::before {
        content: "";
        width: calc(14 * 100vw / 750);
        height: calc(14 * 100vw / 750);
        border-radius: calc(14 * 100vw / 750);
        top:calc(50% - calc(42 * 100vw / 750));
    }
	#box_step li:not(:last-child)::after{
		top: calc(50% - calc(37 * 100vw / 750));
		height: calc(2 * 100vw / 750);
	}
}
/* TOP LAYOUT　終了 */

#contents_inner {
	text-align:left;
}
#main {
	width:1000px;
	margin: 0 auto;
	text-align: left;
}

#info {
	margin-bottom:40px;
}
#info img {
	margin-bottom:20px;
}
#box_att {
	margin-bottom:40px;
}
#box_att .box_att-inner{
	margin-bottom:40px;
}
#box_att .-text {
    display: flex;
    align-items: flex-start;
	gap:0 10px;
	margin-bottom: 15px;
}
#box_att dt {
	background:#009900;
	color:#FFF;
	font-weight:bold;
	text-align: center;
	width: 60px;
	flex-shrink: 0;
}
#box_att .contact_ttl{
	font-size:18px;
	margin-bottom: 10px;
	text-align: center;
}
#box_att .btn_g-radius{
	margin: 0 auto;
}

@media screen and (max-width:750px){
	#main {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
	#info{
		margin-bottom: calc(30 * 100vw / 750);
	}
	#info img {
		width: 100%;
		height: auto;
		margin-bottom:calc(20 * 100vw / 750);
	}
	
	#box_att .-text {
		flex-direction: column;
		row-gap: calc(10 * 100vw / 750);
		gap:calc(10 * 100vw / 750) 0;
		margin-bottom: calc(30 * 100vw / 750);
	}
	#box_att dt{
		width:auto;
		padding: 0 calc(20 * 100vw / 750);
	}
	#box_att .contact_ttl{
		font-size: calc(30 * 100vw / 750);
		margin-bottom:calc(16 * 100vw / 750);
	}
	
}



/* エラー表示　開始 */

#box_error {
	background-color:#FFE6E6;
	padding:10px 10px 10px 30px;
	color:#FF0000;
	margin-bottom: 30px;
}
#box_error li {
	font-weight: bold;
	margin-bottom:5px;
}

/* エラー表示　終了 */


/* テーブル基本設定　開始 */
#main table {
	background:#fff;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
#main table tr:not(:last-child){
    border-bottom: 1px solid #C8C8C8;
}
#main table,
#main table th,
#main table td{
	box-sizing: border-box;
}
#main th,
#main td{
	padding: 24px;
	background: #FFFFFF;
	font-size: 16px;
}
#main th {
	width: 280px;
    padding: 24px;
	text-align:left;
	color:#444444;
	background: #F8F8F8;
	position: relative;
}
#main th.wauto {
	width:auto;
}
#main th.box_tal {
	text-align:left;
}
#main th.box_w100 {
	width:100px!important;
}
#main th span {
	color:#FF0000;
}
#main td.subtotal {
	padding:8px;
	background-color:#F5E9E9;
}
#main td.box_vat {
	vertical-align:top;
}
#main td table {
	background:none;
	width:auto;
}
#main td table td {
	border:0;
	padding:8px 5px;
}
#receive td table {
	width:100%;
}
#receive td table th {
	border:none;
	padding:0;
	background:none;
	text-align:left;
	font-weight:normal;
}	
#receive td table td {
	border:none;
	padding:0;
	background:none;
	text-align:right;
	font-weight:bold;
}
@media screen and (max-width:750px){
	#main small {
		display: block;
	}
	#main table{
		table-layout: fixed;
		word-break: break-all;
		word-wrap: break-all;
	}
	#main th, #main td {
		display: block;
		width: 100%;
		font-size: calc(28*100vw/750);
		padding: calc(22 * 100vw / 750);
	}
	#main td{
		min-height: calc(80 * 100vw / 750);
	}
}
/* テーブル基本設定　終了 */
#main_inner {
	margin-bottom:30px;
}
#main_inner h3{
	height: 56px;
	background: #1C2F61;
	color: #FFF;
	font-size: 22px;
	line-height: 58px;
	margin-bottom: 24px;
	padding: 0 16px;
	overflow: hidden;
	letter-spacing: .1em;
}
.box_tmain {
	position: relative;
}
#main .box_tmain table:not(table td table){
	border-radius: 6px;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
	overflow: hidden;
}

@media screen and (max-width:750px){
	#main_inner h3{
		height: auto;
		font-size: calc(36 * 100vw / 750);
		line-height: 1.4;
		margin-bottom: calc(60 * 100vw / 750);
		padding: calc(20 * 100vw / 750);
	}
}
/* 個人情報保護方針　開始 */
#kjoho {
	width:680px;
	margin:0 auto 20px;
	border: #009900 solid 1px;
}
#kjoho dt {
	background:#009900;
	color:#FFFFFF;
	text-align: center;
	font-weight: bold;
}
/* 個人情報保護方針　終了 */

/* お客様控え・注文内容確認　開始　*/

.box_ly {
	background:#FFFFCC;
	padding:10px;
	border: #999999 solid 1px;
	margin-bottom: 20px;
}
.box_lg {
	background:#F7F7F7;
	padding:10px;
	border: #999999 solid 1px;
	margin-bottom: 20px;
}
.box_ly h4, .box_lg h4 {
	border-bottom:#999999 solid 1px;
	margin-bottom:10px;
}

/* お客様控え・注文内容確認　開始　*/


/* フッター　開始 */

#footer {
	padding:15px 0;
	text-align: center;
	border-top: #333366 solid 4px;
	border-bottom: #333366 solid 1px;
	font-size: 85%;
	background: #F7F7F7;
	font-family:"Lucida Grande",Arial, Helvetica, sans-serif;
	margin-top: auto;
}
#footer a {
	text-decoration:none;
}

#nsite {
	width:240px;
	float:left;
}
#cr img {
	margin-bottom:3px;
}
/* フッター　終了 */

/*確認・送信ボタン*/
div.btn{
	padding: 30px 0 0;
	text-align: center;
}
.btn input[type="button"],
.btn input[type="submit"]{
	border: 0;
	background: #FF9600;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 10px;
	cursor: pointer;
	border-radius: 60px;
	box-sizing: border-box;
	width: 300px;
}
.btn input[type="submit"]:first-child {
    width: 200px;
    margin-right: 60px;
}
.receive div.btn input[type="submit"]:first-child{
	background: #ccc;
}
@media screen and (max-width:750px){
	#footer{
		padding:calc(20 * 100vw / 750) 0 ;
	}
	div.btn{
		padding:calc(60 * 100vw / 750) 0 0 0;
	}
	.btn input[type="button"],
	.btn input[type="submit"]{
		font-size:calc(35 * 100vw / 750);
		width:calc(525 * 100vw / 750);
	}
	.btn input[type="submit"]:first-child {
		width: calc(350 * 100vw / 750);
        margin: 0 auto calc(40 * 100vw / 750);
	}
	.receive div.btn{
		padding: calc(60 * 100vw / 750) 0 0 0;
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
	}
}
/*送信完了ページ*/
#finish {
	margin-bottom: 100px;
}
#finish h3{
	font-size:22px;
	margin-bottom:10px;
}
#finish p {
	margin-bottom:5px;
}

/********************************************/

#error div.e_text{
margin-bottom:100px;
}

/********************************************/

div.btn form{
display:inline;
}
form > div {
    margin-bottom: 50px;
}
/********************************************/

/* プルダウンメニュー　開始 */
.plmenu{
	width:478px;
	font-size:12px;
	line-height: 240%;
}
pl1,pl2{
	width: auto;
	text-align: left;
}
.pl3{
	width:80px;
/*	float:left;*/
	margin-top: 25px;
}
/* プルダウンメニュー　終了 */

/* プルダウン設定　開始 */
.bg_b{
	background-color:#DCEFFF;
}
.bg_y{
	background-color:#FFFFDC;
}
.bg_r{
	background-color:#FFDCDC;
}
.bg_g{
	background-color:#DFFFDC;
}
/* プルダウン設定　終了 */
@media screen and (max-width:750px){
	/*送信完了ページ*/
	#finish {
		margin-bottom: calc(200 * 100vw / 750);
	}
	#finish h3 {
		font-size: calc(36 * 100vw / 750);
		margin-bottom: calc(15 * 100vw / 750);
	}
	#finish p {
		margin-bottom: calc(10 * 100vw / 750);
	}
}


/*form内共通*/
.-flex_col{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 30px;
}
/* 必須 */
#main .required{
    font-size: 14px;
    color: #fff;
    padding: 3px 5px;
    border-radius: 3px;
    display: inline-block;
    line-height: 100%;
    background: #D70C18;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
/*input　textarea　select*/
input[type="button"],label {
    cursor: pointer;
}
input[type="text"], textarea,select {
    padding: 8px 16px;
    border: 1px solid #A8A8A8;
    border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
}
textarea{
	width: 600px;
    max-width: 740px;
    height: 120px;
    padding: 10px;
    box-sizing: border-box;
}
.-sheet input {
    margin: 0 5px;
}
@media screen and (max-width:750px){
	form > div{
		margin-bottom: calc(80 * 100vw / 750);
	}
	.-flex_col {
		flex-direction: column;
		align-items: flex-start;
		gap: calc(10 * 100vw / 750) 0;
	}
	/* 必須 */
	#main .required{
		font-size:calc(24 * 100vw / 750);
		padding:calc(5 * 100vw / 750) calc(10 * 100vw / 750);
		border-radius:calc(6 * 100vw / 750);
		right:calc(20 * 100vw / 750);
	}
	input[type="text"], textarea,select {
		width: 100%;
		font-size: calc(28 * 100vw / 750);
		padding: calc(20 * 100vw / 750);
		border-radius: calc(8 * 100vw / 750);
	}
	.-sheet input {
		width:auto;
	}
}
/*挨拶状の種類*/
.step_select {
    gap: 0 40px;
	margin-bottom: 10px;
}
/*宛名印刷*/
.atena-no {
    margin-bottom: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.atena-yes .atena-font {
    width: 100%;
    margin: 10px 0 20px 20px;
}

/*切手貼り/料金別納印刷*/
.stamp-bulk label:not(:last-of-type) {
    margin-right: 30px;
}
.stamp-bulk {
    margin-bottom: 20px;
}
/*封入*/
.inclusion {
    margin-bottom: 10px;
}
/*希望する場合の表示*/
.inclusion.-flex_col div {
    width: 100%;
    margin: 10px 0 0;
}

/*投函*/
.delivery {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    margin-bottom: 20px;
	align-items: flex-start;
}
/*お支払い方法*/
.payment_box{
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	align-items: flex-start;
}
.payment_box label:not(:last-of-type){
	margin-bottom: 15px;
}
.payment_box .payment-bank_name {
    padding-left: 20px;
}

@media screen and (max-width:750px){
	/*挨拶状の種類*/
	.step_select {
		gap:calc(30 * 100vw / 750) 0;
		margin-bottom:calc(30 * 100vw / 750);
	}
	/*希望する場合の表示*/
	.inner_box label {
		width: 100%;
		display: block;
		padding-left:calc(30 * 100vw / 750);
	}
}
