/* CSS Document */

* {
	margin:0;
	padding:0;
}
h1,h2,h3,h4,ul,ol,dl,dt,dd,p {
	display:block;
}
html {
	height:100%;
}
body {
	background-color:#fff;
	text-align:center;
	width:100%;
	height:100%;
	color:#333333;
	font-size:16px;
	line-height:1;
	/* mac 不適応 \*/
	letter-spacing:1px;
	/* ここまで */
	font-family:"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Lucida Grande","Lucida Sans Unicode","Lucida Sans",Verdana,sans-serif;
}
a {
	color:#333333;
}
a:hover {
	color: #FF6600;
}
section, header, footer, nav, div, ul, ol, li, a, p, span, h1, h2, h3, h4, h5, h6, dl, dt, dd {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
ol, ul {
    list-style: none;
}
img {
	border:0;
    vertical-align: bottom;
    font-size: 0;
    line-height: 0;
}
.red_text {
	color: #ff3300;
	font-weight: bold;
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* for IE6 */
* html body{
	min-height:100%;
	font-size:75%;
}
/* ここまで */

/* for IE7 */
*:first-child+html body {
	color:#333333;
	font-size: 75%;
	line-height:160%;
	font-family:"メイリオ","ＭＳ Ｐゴシック","MS PGothic","Lucida Grande","Lucida Sans Unicode","Lucida Sans",Verdana,sans-serif;
}
*:first-child+html a {
	color:#333333;
}
*:first-child+html a:hover {
	color:#FF6600;
}
/* ここまで */

@media screen and (max-width: 600px) {
	body {
		font-size: 13px;
	}
	img {
		width: 100%;
	}
}
.pc_obj {
	display: block;
}
@media screen and (max-width: 600px) {
	.pc_obj {
		display: none;
	}
}
.sp_obj {
	display: none;
}
@media screen and (max-width: 600px) {
	.sp_obj {
		display: block;
	}
}


/* PAGE LAYOUT START ---------------------------------------------- */
#container {
	width:800px;
	margin:0 auto;
}
@media screen and (max-width: 600px) {
	#container {
		width: 100%;
	}
}
#main {
	text-align:left;
	padding: 50px 0;
}
@media screen and (max-width: 600px) {
	#main {
		padding: 10% 3%;
	}
}

/*　フッター　*/
#footer {
	height:30px;
	text-align:center;
}
@media screen and (max-width: 600px) {
	#footer {
		font-size: 10px;
		height: auto;
	}
}

/* page setup　－－－－－－－－－－*/

/* -------------------------------------
	各パーツ
 ------------------------------------- */
.section_box {
	margin-top: 50px;
}
@media screen and (max-width: 600px) {
	.section_box {
		margin-top: 13%;
	}
	.section_box:first-of-type {
		margin-top: 0;
	}
}

.top_text, .text, dt, dd {
	line-height: 1.8;
	font-weight: normal;
}

.text {
	margin-top: 20px;
}
@media screen and (max-width: 600px) {
	.text {
		margin-top: 3%;
	}
}

.caution {
	margin-top: 30px;
}
.caution li {
	font-size: 14px;
	line-height: 1.8;
	padding-left: 1em;
	text-indent: -1em;
}
.caution li + li {
	margin-top: 5px;
}
@media screen and (max-width: 600px) {
	.caution {
		margin-top: 3%;
	}
	.caution li {
		font-size: 12px;
	}
}


/* -------------------------------------
	見出し
 ------------------------------------- */
h1 {
	font-size: 24px;
	margin-bottom:40px;
	padding-bottom:20px;
	border-bottom:2px solid #CCC/*#406FA0*/;
}
.two_line {
	line-height: 1.2;
}
@media screen and (max-width: 600px) {
	h1 {
		font-size: 20px;
		line-height: 1.4;
		margin-bottom:8%;
		padding-bottom:5%;
	}
}

h2 {
	font-size: 17px;
	margin-bottom:20px;
	padding:4px 0 4px 20px;
	line-height:100%;
	position: relative;
}
h2::before{
	background: #45b035;
	border-radius: 5px;
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top:3px;
}
@media screen and (max-width: 600px) {
	h2 {
		font-size: 15px;
		margin-bottom: 3%;
	}
}

/* hタグを使用しない小見出し */
.point_text {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.7;
	margin: 30px 0;
}

@media screen and (max-width: 600px) {
	.point_text {
		font-size: 16px;
		margin: 6% 0;
		line-height: 1.6;
	}
}
.point_caution {
	font-weight: normal;
}

/* hタグを使用しない小見出し・下の文章に隣接させる */
.message {
	margin-top: 20px;
}
.message dt{
	color: #231916;
	font-size: 16px;
	font-weight:bold;
	margin-bottom:5px;
}
.message dd ul li{
	list-style: disc;
    margin-left:20px;
}
.message dd ul li:last-child{
    margin-bottom:30px;
}
@media screen and (max-width: 600px) {
	.message {
		margin-top: 2%;
	}
	.message dt{
		font-size: 14px;
	}
.message dd ul li{
	list-style: disc;
    margin-left:3%;
}
.message dd ul li:last-child{
    margin-bottom:2%;
}
}


/* -------------------------------------
	画像
 ------------------------------------- */
.top_img {
	margin: 40px 0 10px;
}
@media screen and (max-width: 600px) {
	.top_img {
		margin: 8% 0;
	}
}
.between_img {
	margin: 35px 0 0;
}
@media screen and (max-width: 600px) {
	.between_img {
		margin: 8% 0 3%;
	}
}

.img_price {
	margin: 40px 0 35px;
}
@media screen and (max-width: 600px) {
	.img_price {
		margin: 6% 0;
	}
}

/* -------------------------------------
	リンク要素
 ------------------------------------- */
.link {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}
.link::before {
	content: "";
	display: block;
	background:url(../images/ico_link.png) no-repeat 0 0;
	background-size: 100%;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 7px;
	left: 0;
}
@media screen and (max-width: 600px) {
	.link::before {
		top: 5px;
	}
}
/* リンクのテキストがurl（英語）の場合 */
.link.english {
	word-break: break-all;
}

/* -------------------------------------
	閉じるボタン
 ------------------------------------- */
 #close a{
	background: #033;
	border-radius: 5px;
	font-weight: bold;
	color: #FFF;
	display: block;
	height: 30px;
	line-height: 30px;
	margin: 70px auto 0;
	text-align:center;
	text-decoration: none;
	width: 100px;
}

#close a:hover{
	filter:alpha(opacity=70);
	-ms-filter:"alpha(opacity=70)";
	-moz-opacity:0.7;
	opacity:0.7;
}
@media screen and (max-width: 600px) {
	#close a{
		margin: 10% auto 0;
		font-size: 16px;
		width: 30%;
	}
}

#recommend {
    margin: 100px auto 0;
    font-size: 11px;
    line-height: 1.3em;
    color: #666;
}

/* 納期テーブル
 ------------------------------------- */
#nouki_tbl {
	margin: 30px 0 50px;
}
#nouki_tbl img {
	max-width:100%;
	vertical-align:bottom;
}
#nouki_tbl table {
	width: 450px;
	margin: 10px 0;
	border: 1px #BBB solid;
	border-collapse: collapse;
	border-spacing: 0;
}
#nouki_tbl table caption{
	font-weight: bold;
	margin-bottom: 10px;
	text-align: left;
}

#nouki_tbl table th {
	padding: 10px;
	border: 1px #BBB solid;
	background: #FFE9A4;
	text-align: center;
}
#nouki_tbl table .headline th {
	font-weight:bold;
	background:#FC6;
}
#nouki_tbl table td {
	padding:10px 0;
	border:1px #BBB solid;
	text-align:center;
}
#nouki_tbl table td.color_g {
	background-color:#BBB;
}
#nouki_tbl table td.color_r {
	background-color:#FFC3C4;
}
#nouki_tbl table th.color_gr {
	background-color:#E8FBD0;
}
#nouki_tbl table th.color_y {
	background-color: #FFFFB0;
}
#nouki_tbl table th.color_w {
background-color: #FFF;
}
#nouki_tbl table th.color_dy {
	background-color: #FFE97D;
}
#nouki_tbl table td.color_y {
	background-color:#FFFFE6;
}
#nouki_tbl table td.color_dy {
	background-color: #FFF4C1;
}
#nouki_tbl table td.color_last {
	background-color: #FFCC00;
}
#nouki_tbl table td.text_r {
	color: #d70c18;
	font-weight: bold;
}
#nouki_tbl p.holiday span {
	width: 40px;
	background: #FFC3C4;
	margin: 0 20px 0 0;
	display: block;
	float: left;
	overflow: hidden;
}
#nouki_tbl p.lastshiping span {
	width: 40px;
	background: #FFCC00;
	margin: 0 20px 0 0;
	display: block;
	float: left;
	overflow: hidden;
}
#nouki_tbl p.lastshiping + p.holiday {
	margin-top: 10px;
}
.box_gray {
	background: none repeat scroll 0 0 #F9F9F9;
	border: 1px solid #CCCCCC;
	padding: 10px;
}
.box_white {
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #CCCCCC;
	padding: 10px;
}
#nouki_tbl table{
	width:550px;
}
.headline th:first-child{
	width:33% !important;
}
.box_caution{
padding: 20px;
font-size: 14px;
background: var(--color-info-bg);
}
.box_caution a{
text-decoration: underline;
}
/* 宛名印刷あり */
.atena_r {
  background-color: #EC7669;
  color: #FFF;
  font-weight: bold;
  padding: 0 6px;
  margin-left: 4px;
}
/* 宛名印刷なし */
.atena_g {
  background-color: #EEE;
  color: #333;
  font-weight: bold;
  padding: 0 6px;
  margin-left: 4px;
}