@charset "utf-8";

/*** サイト全体 ***/
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "sans-serif";
}

body, header, h1, h2, h3, p, ol, ul, li, dl, dd, section, article, footer, div, a {
	margin: 0;
	padding: 0;
	-webkit-box-sizing : border-box;
	-moz-box-sizing : border-box;
	-o-box-sizing : border-box;
	-ms-box-sizing : border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	color: #666;
	line-height: 1.4;
}

from, input, textarea, select {
	box-sizing: border-box;
	font: 100% "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "sans-serif";
}

ul, oi {
	list-style: none;
}

small {
	font-size: 100%;
}

a {
	color: #333;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;	
}

input {
	color: #666;
}

/*** 外枠 ***/
#outside-wrap {

}

/*** 共通 ***/
.inner {
	max-width: 1200px;
	margin: 0 auto;
}

header .inner,
#main-nav .inner {
	width: 1300px;
	margin: 0 auto;
}

/*** ヘッダー ***/
header {
	margin-bottom: 16px;
	padding: 20px 0 16px;
	border-bottom: 1px solid #D1D1D1;
}

header .inner {
	display: flex;
}

header h1 {
	margin: 0 auto 0 20px;
}

header ul {
	display: flex;
	align-items: flex-start;
}

header ul li {
	width: 118px;
	text-align: center;
}

header ul li a {
	display: block;
	padding: 8px 0 6px;
	color: #fff;
	line-height: 1;
	font-size: 90%;
}

header ul li:not(:last-child) {
	margin-right: 2px;
}

header ul li:first-child {
	background: #8BA3DA url(../img/icon01.png) no-repeat 6px center;
}

header ul li:first-child a {
	padding-left: 18px;
}

header ul li:last-child {
	background: #8BA3DA url(../img/icon02.png) no-repeat 94px center;
}

header ul li:last-child a {
	padding-right: 18px;
}

/*** ナビ ***/
#main-nav {
	margin-bottom: 30px;
}

#main-nav ul {
	background: linear-gradient(#D3DCF1, #7E99D6, #95AADD);
	border: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
}

#main-nav ul li {
	text-align: center;
	flex-grow: 1;
}

#main-nav ul li a {
	display: block;
	padding: 10px 0;
	color: #fff;
	font-size: 90%;
}

#main-nav ul li:not(:last-child) {
	border-right: 1px solid #ccc;
}

/*** フッター ***/
footer {
	padding: 24px 0;
	background: #ECECEC;
	border-top: 1px solid #ccc;
}

footer p {
	text-align: center;
	font-size: 90%;
}

/*** 共通 ***/
.contents {
	margin-bottom: 50px;
}

/*** ユーザー操作部分共通 ***/
.operation h1 {
	margin-bottom: 20px;
	padding-left: 30px;
	line-height: 1.2;
	font-size: 120%;
	position: relative;
}

.operation h1:before {
	content: "";
	width: 20px;
	height: 20px;
	background: #8BA3DA;
	position: absolute;
	top: 0;
	left: 0;
}

/*** 絞り込み検索（トップ） ***/
.retrieval form dl {
	margin-bottom: 20px;
	overflow: hidden;
}

.retrieval form dl dt {
	clear: both;
	float: left;
	margin-right: 1em;
}

.retrieval form dl dd {
	float: left;
	margin-bottom: 16px;
}

.retrieval form dl dd input {
	font-size: 90%;
}

.retrieval form p:last-child {
	width: 198px;
	border: 1px solid #FBF2DD;
	background: linear-gradient(#FFE9B9, #FFCC66);
	text-align: center;
}

.retrieval form p:last-child input[type="submit"] {
	display: block;
	width: 100%;
	padding: 6px 0;
	background: none;
	border: none;
}

/* dtとddにラジオボタンあるタイプの入力エリア */
.retrieval form dl dt.radio-form01_head {
	padding: 6px 0;
}

.retrieval form dl dd.radio-form01_wrap {
	display: flex;
	padding: 6px 8px 6px 0;
	border: 1px solid #ccc;
}

.retrieval form dl dd.radio-form01_wrap .title {
	padding: 6px 8px;
	background: #8EA5DB;
	text-align: center;
	color: #fff;
}

.retrieval form dl dd.radio-form01_wrap .radio-form01_box02 .title {
	margin-left: 0.5em;
}

.retrieval form dl dd.radio-form01_wrap .input[type="radio"] {
	margin-right: 1em;
}

.retrieval form dl dd.radio-form01_wrap select {
	margin: 0 0.5em;
}

/*** 注文内容一覧表（トップ）***/
.regi-list table {
	width: 100%;
	margin-bottom: 14px;
	border: 1px solid #ccc;
	border-bottom: none;
	border-collapse: collapse;
}

.regi-list table thead {
	background: #EFF1ED;
}

.regi-list table th {
	padding: 4px 0;
	font-weight: normal;
	font-size: 90%;
}

.regi-list table td {
	padding: 6px;
	border-bottom: 1px solid #ccc;
	text-align: center;
	font-size: 70%;
}

.regi-list table th:not(:last-child),
.regi-list table td:not(:last-child) {
	border-right: 1px solid #ccc;
}

/* 文字右揃えにしたい物はclaas="align-right" */
.regi-list table td.align-right {
	text-align: right;
}

/* 文字左揃えにしたい物はclaas="align-left" */
.regi-list table td.align-left {
	text-align: left;
}

.regi-list table td:last-child a {
	color: #FF0000;
}

.regi-list ul {
	display: flex;
	justify-content: space-between;
}

.regi-list ul li {
	width: 110px;
	background: linear-gradient(#DCE0D8, #EFF1ED, #D9DDD5, #DEE2DA);
	text-align: center;
	line-height: 1;
	border: 1px solid #D1D7CC;
	position: relative;
}

.regi-list ul li a {
	display: block;
	padding: 4px;
	font-size: 80%;
}

.regi-list ul li.next {
	margin-left: auto;
	padding-right: 1em;	
}

.regi-list ul li.next:before {
	content: ">";
	position: absolute;
	top: 4px;
	right: 10px;	
}

/*** ユーザー入力フォーム（ヘッダー左横タイプ）***/
table.ope-form01 {
	margin-bottom: 10px;
	font-size: 90%;	
}

table.ope-form01 th {
	padding: 6px;
	background: #EFF1ED;
	text-align: left;
	font-weight: normal;;	
}

table.ope-form01 td .sup01 {
	color: #f00;
}

table.ope-form01 + p {
	font-size: 90%;
}


/***  スマートフォン  ***/
@media screen and (max-width: 700px) {	
	
}
