/*リセット
--------------------------------------------------*/

html, body { line-height:1; margin:0; }
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, button, select, p, blockquote, th, td, small { margin: 0; padding: 0; }
main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { margin: 0; padding: 0; }
hr { display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0; }
nav,ul,li { list-style:none; }
input, select { vertical-align:middle; }
a { text-decoration: none; margin:0; padding:0; border:0; }
table { border-collapse:collapse; border-spacing:0; }
address, em, strong, th, dfn, i, cite { font-style: normal; }


/*共通レイアウト
--------------------------------------------------*/

/* clearfix */
.clearfix:after {
    content:"";
    display:block;
    clear:both;
}

.f_left { float: left; }
.f_right { float: right; }
.t_center { text-align: center; }
.t_right { text-align: right; }

.clear { clear: both; }
.o_hidden { overflow: hidden; }
.p_relative { position: relative; }

.mt5 { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mtn10 { margin-top: -10px; }
.mtn20 { margin-top: -20px; }
.mtn30 { margin-top: -30px; }
.mb5 { margin-bottom: 5px; }
.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb50 { margin-bottom: 50px; }
.mr5 { margin-right: 5px; }
.mr10 { margin-right: 10px; }
.mr20 { margin-right: 20px; }
.mr30 { margin-right: 30px; }
.ml5 { margin-left: 5px; }
.ml10 { margin-left: 10px; }
.ml20 { margin-left: 20px; }
.ml30 { margin-left: 30px; }

.sizeS { font-size: 12px; }
.sizeL { font-size: 16px; }
.sizeLL { font-size: 20px; }

.red { color: #f00; }
.gray { color: #808080; }

.alp50:hover { opacity: 0.5; }

ul.list_disc li {
	list-style-type: disc;
	list-style-position: outside;
	margin-left: 1em;
}

.sec_root > section { margin-bottom: 96px; }
.sec_root > section > section { margin-bottom: 48px; }

/*エラーメッセージ用*/
label.error{
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #f00;
	margin: 3px 0;
	background: #ff6;
	padding: 2px 10px;
	border-radius: 10px;
}


/*お問い合わせフォーム
--------------------------------------------------*/

#contact h2 {
	font-size: 28px;
	line-height: 2;
	text-align: center;
	color: #fff;
	background: #b50005;
	margin-bottom: 24px;
}

#contact h2 + p {
	font-size: 18px;
	margin-bottom: 24px;
}

form { margin: 0 10px; }
form > dl {
	box-sizing: border-box;
	width: 100%;
	font-size: 0;
	margin-bottom: 24px;
}
form > dl > * {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
}
form > dl dt {
	width: 33.33%;
	padding: 0 10px;
	line-height: 50px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background: #808080;
}
form > dl.textarea dt,
form > dl.file dt {
	display: block;
	width: 100%;
}
form > dl dd { width: 66.66%; }
form > dl dd:has(input[name="法人／個人"]) {
	font-size: 16px;
	border: 1px solid #666;
}
.ul_houjinkojin {
	display: flex;
	gap: 16px;
	padding-left: 8px;
	line-height: 48px;
}
form > dl.textarea dd { width: 100%; }
form > dl.file dd {
	box-sizing: border-box;
	width: 100%;
	padding: 15px;
	font-size: 20px;
	border: 1px solid #666;
}
form > dl dd input[type="text"] {
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #666;
	padding: 0 10px;
	height: 50px;
	font-size: 16px;
}
form > dl.textarea textarea {
	box-sizing: border-box;
	width: 100%;
	height: 278px;
	padding: 10px;
	font-size: 16px;
	display: block;
	border: 1px solid #666;
}
form > dl dd input[type="file"] {
	font-size: 20px;
	margin-bottom: 8px;
}
form > dl dt strong {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	padding: 0.25em 0.25em 0.25em 0.5em;
	border-radius: 5px;
	margin-left: 0.33em;
	letter-spacing: 0.25em;
}
strong.required { background: #b50005; }
strong.optional { background: #03254d; }

form select {
	margin: -12px 0 24px;
	font-size: 20px;
	border: 1px solid #666;
	padding: 10px;
	border-radius: 5px;
}

form input[type="submit"] {
	display: block;
	margin: 48px auto 96px;
	box-sizing: border-box;
	padding: 0 25px;
	font-size: 25px;
	font-weight: bold;
	line-height: 50px;
	color: #fff;
	background: #b50005;
	text-align: center;
	border: 1px solid #fff;
	box-shadow: 0 0 0 3px #b50005;
	border-radius: 10px;
	cursor: pointer;
}
form input[type="submit"]:hover { opacity: 0.5; }

/*thanksページ*/
.sec_thanks { margin: 24px 0 96px; }
.sec_thanks h2 {
	font-size: 32px;
	margin-bottom: 12px;
}

.txt_thanks p {
	margin-top: 15px;
	font-size: 14px;
}
.domain {
	margin: 30px 0;
	border: 3px solid #aaa;
	padding: 0.5em 1em;
}
.domain p:first-child { margin-top: 0; }
.domain strong {
	font-size: 125%;
	color: #f00;
}


@media only screen and (min-width: 751px) {

	/* パソコンで見たときは"pc"のclassがついた画像が表示される */
	.pc { display: block; }
	.sp { display: none !important; }

	img {
    vertical-align: top;
    border: none;
  }

	body {
		font-size: 16px;
		color: #333;
		line-height: 1.5;
		font-family: "Verdana, '游ゴシック', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ＭＳ Ｐゴシック', sans-serif";
	}
	
	.wrapper {
		margin: auto;
		width: 1000px;
		position: relative;
	}
	
	/*パンくず*/
	nav.breadcrumbs {	margin-bottom: 12px; }
	nav.breadcrumbs ul { overflow: hidden; }
	nav.breadcrumbs li {
		float: left;
		margin-left: 0.5em;
		font-size: 12px;
	}
	nav.breadcrumbs li a:hover { text-decoration: underline; }
	
	/*ページトップへ*/
	#pagetop {
		position: fixed;
		left: 50%;
		bottom: 10px;
		margin-left: 529px;
	}
	#pagetop:hover { opacity: 0.5; }


	/*ヘッダー
	--------------------------------------------------*/

	h1 {
		font-size: 12px;
		font-weight: normal;
		border-bottom: 1px solid #333;
		line-height: 2;
		margin-bottom: 15px;
	}
	
	header > div { font-size: 0; }
	header > div > * {
		display: inline-block;
		vertical-align: top;
	}
	header div.pc dl:first-child dd {
		margin-top: 10px;
		padding-right: 48px;
		text-align: center;
	}
	header div.pc dl:first-child p {
		display: inline;
		font-size: 12px;
	}
	header div.pc dl:first-child p:first-child { margin-right: 1em; }
	
	header div.pc > ul { margin: 0 23.5px; }
	header div.pc > ul > li { display: inline-block; }
	header div.pc > ul > li:first-child { margin-right: 15px; }
	
	header div.pc dl:last-of-type dt {
		padding-bottom: 7px;
		border-bottom: 1px dotted #808080;
		margin-bottom: 7px;
	}
	header div.pc dl:last-of-type li {
		font-size: 16px;
		line-height: 1.25;
		display: inline;
		margin-right: 1em;
	}
	header div.pc dl:last-of-type li:first-child { display: block; }
	header div.pc dl:last-of-type li:nth-child(1) span { margin-right: 1.1em; }
	header div.pc dl:last-of-type li:nth-child(2) span { margin-right: 0.5em; }
	
	header div.pc nav {
		display: block;
		margin: 8px 0;
		height: 28px;
		position: relative;
	}
	header div.pc nav ul {
		position: absolute;
		top: 0;
		box-sizing: border-box;
		width: 1000px;
		border-right: 1px solid #333;
		background: #fff;
	}
	header div.pc nav ul.fixed {
		position: fixed;
		top: 0;
		z-index: 1000;
	}
	header div.pc nav li {
		box-sizing: border-box;
		display: inline-block;
		width: 111px;
		font-size: 12px;
		line-height: 2;
		border-left: 1px solid #333;
	}
	header div.pc nav li a {
		display: block;
		text-align: center;
		color: #333;
	}
	header div.pc nav li a:hover { text-decoration: underline; }


	/*フッター
	--------------------------------------------------*/

	footer {
		font-size: 14px;
		color: #fff;
		line-height: 60px;
		background: #333;
		text-align: center;
	}


	/*トップページ
	--------------------------------------------------*/

	.start {
		position: fixed;
		left: 50%;
		top: 0;
		margin: 250px 0 0 515px;
	}
	.start:hover { opacity: 0.5; }
	
	.main_img {
		position: relative;
		margin-bottom: 48px;
	}
	.main_img p {
		position: absolute;
		left: 16px;
		top: 297px;
		padding: 10px 15px;
		width: 21em;
		background: rgba(255,255,255,0.9);
		border-radius: 10px;
	}
	
	/*留めゴム付き腕章*/
	.list_tomegomu {
		display: flex;
		margin-bottom: 60px;
	}
	.list_tomegomu li:first-child { margin-right: 60px; }
	.list_tomegomu img {
		width: 470px;
		height: auto;
	}
	.list_tomegomu figcaption { margin-bottom: 5px; }
	.item_merit {
		border: 2px solid #bf1920;
		border-radius: 5px;
		position: relative;
		padding: 25px 15px 15px;
	}
	.item_merit dt {
		position: absolute;
		left: 20px;
		top: -18px;
		font-size: 36px;
		font-weight: bold;
		line-height: 1;
		color: #bf1920;
		padding: 0 10px;
		background: #fff;
	}
	.item_merit dd {
		font-size: 26px;
		font-weight: bold;
	}
	
	h3 {
		margin-top: -24px;
		padding-top: 24px;
	}
	h3 span {
		display: block;
		font-size: 28px;
		line-height: 2;
		text-align: center;
		background: #ffd610;
		margin-bottom: 24px;
	}
	
	.list_point {
		display: flex;
		justify-content: space-between;
	}
	.list_point li { width: 320px; }
	.list_point dt,
	.type_armband ul li > dl > dt,
	.list_print dt,
	.shitate_armband dt,
	.list_reason dt {
		font-size: 20px;
		font-weight: bold;
		line-height: 2;
		color: #fff;
		background: #333;
		border-radius: 1em;
		text-align: center;
		margin-bottom: 12px;
	}
	.type_armband ul li > dl > dt span { font-size: 12px; }
	.list_point li p {
		height: 9em;
		margin-bottom: 12px;
	}
	.list_point img,
	.type_armband figure > img,
	.list_print img,
	.list_reason img {
		width: 100%;
		height: auto;
	}
	
	.lead_tomegu,
	.type_armband > div,
	.print_armband > div,
	.shitate_armband > div {
		font-size: 20px;
		font-weight: bold;
		color: #03254d;
		margin-bottom: 24px;
	}
	.type_armband > ul,
	.shitate_armband ul ul  {
		display: flex;
		flex-wrap: wrap;
	}
	.type_armband > ul > li {
		width: 300px;
		margin: 50px 0 0 50px;
	}
	.type_armband > ul > li:nth-child(-n+3) { margin-top: 0; }
	.type_armband > ul > li:nth-child(3n+1) { margin-left: 0; }
	.shitate_armband ul ul li {
		width: 304px;
		margin: 30px 0 0 44px;
	}
	.shitate_armband ul ul li:nth-child(-n+3) { margin-top: 0; }
	.shitate_armband ul ul li:nth-child(3n+1) { margin-left: 0; }
	.shitate_armband dt,
	.print_armband ul ul li { width: 230px; }
	.type_armband > ul > li > dl > dd p:first-child {
		height: 7.5em;
		margin-bottom: 12px;
	}
	.type_armband figure {
		position: relative;
		margin-bottom: 12px;
	}
	.type_armband figure ul {
		position: absolute;
		left: 4px;
		top: 4px;
		font-size: 0;
	}
	.type_armband figure ul li { display: inline-block; }
	.type_armband dl dl {
		border: 1px solid #429671;
		padding: 8px;
	}
	.type_armband dl dl dt {
		text-align: center;
		font-weight: bold;
		color: #fff;
		background: #429671;
		line-height: 30px;
		margin-bottom: 4px;
	}
	.type_armband dl dl dd {
		font-size: 14px;
		height: 3em;
	}
	
	.list_print > li:first-child { margin-bottom: 48px; }
	.list_print > li:first-child dl { overflow: hidden; }
	.list_print > li dl dt {
		float: left;
		width: 230px;
	}
	.list_print > li:first-child dl dd:first-of-type {
		clear: both;
		float: left;
		width: 486.66px;
	}
	.list_print > li:first-child dl dd:last-child {
		margin-top: -52px;
		float: right;
		width: 486.66px;
	}
	.list_print > li:first-child dl dd:last-child ul {
		display: flex;
		justify-content: space-between;
	}
	.list_print > li:first-child dl dd:last-child figcaption,
	.list_print > li:last-child figcaption,
	.shitate_armband figcaption {
		margin-top: 4px;
		font-size: 12px;
		text-align: center;
	}
	.list_print > li:last-child > dl > dt { float: none; }
	.list_print > li:last-child ul {
		margin-top: 12px;
		display: flex;
		justify-content: space-between;
	}
			
	.shitate_armband > ul > li:first-child { margin-bottom: 48px; }
	.shitate_armband > ul ul { margin-top: 12px; }
	.shitate_armband > ul ul li,
	.list_print > li:last-child li { width: 304px; }
	.shitate_armband img {
		width: 304px;
		height: auto;
	}
	
	.size_armband { font-size: 0; }
	.size_armband h3 { font-size: 28px; }
	.size_armband > dl:first-of-type { margin-bottom: 48px; }
	.size_armband > dl:first-of-type > * {
		display: inline-block;
		vertical-align: top;
	}
	.size_armband > dl:first-of-type dt {
		width: 500px;
		box-shadow: 3px 3px 3px rgba(0,0,0,0.5);
		margin-right: 28px;
	}
	.size_armband img {
		width: 100%;
		height: auto;
	}
	.size_armband > dl:first-of-type dd {
		width: 472px;
		font-size: 16px;
	}
	.size_armband > div {
		box-sizing: border-box;
		display: inline-block;
		vertical-align: top;
		width: 500px;
		border: 2px solid #c31c23;
		padding: 10px 15px;
		border-radius: 10px;
		font-size: 16px;
		margin-right: 28px;
	}
	.size_armband > ul {
		display: inline-block;
		vertical-align: top;
		width: 472px;
	}
	.size_armband > ul li {
		display: inline-block;
		width: 230px;
	}
	.size_armband > ul li:first-child { margin-right: 12px; }
	
	.sec_contact {
		position: relative;
		font-size: 0;
		text-align: center;
	}
	.sec_contact > div,
	.sec_contact > figure {
		display: inline-block;
		vertical-align: bottom;
	}
	.sec_contact > div {
		box-sizing: border-box;
		width: 660px;
		text-align: left;
		border: 1px solid #000;
		padding: 10px 15px;
		font-size: 20px;
		box-shadow: 2px 2px 0 rgba(0,0,0,1);
		margin-right: 24px;
	}
	.sec_contact > div > p:first-child {
		padding-bottom: 8px;
		border-bottom: 1px solid #333;
		margin-bottom: 8px;
	}
	.sec_contact > figure { margin-top: -48px; }
	.sec_contact > div > dl dt {
		font-size: 28px;
		font-weight: bold;
		margin-bottom: 8px;
	}
	.sec_contact > div > dl dl dt { margin-bottom: 8px; }
	.sec_contact > div > dl dl p {
		display: inline;
		margin-right: 1em;
	}
	.sec_contact > div > dl dl ul { margin-top: 12px; }
	.sec_contact > div > dl dl ul a li {
		font-size: 25px;
		font-weight: bold;
		line-height: 40px;
		color: #fff;
		background: #b50005;
		text-align: center;
		border: 1px solid #fff;
		box-shadow: 0 0 0 3px #b50005;
		border-radius: 10px;
	}
	.sec_contact > div > dl dl ul a li:hover {
		opacity: 0.66;
		text-decoration: underline;
		color: #fff;
	}
	
	.list_flow {
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
	}
	.list_flow li { width: 420px; }
	.list_flow li:nth-child(-n+2) { margin-bottom: 48px; }
	.list_flow dt {
		font-size: 24px;
		font-weight: bold;
	}
	.list_flow dt span {
		display: inline-block;
		width: 1.5em;
		line-height: 1.5;
		text-align: center;
		font-size: 28px;
		color: #fff;
		background: #b50005;
		border-radius: 0.75em;
		margin: 0 0.25em 12px 0;
	}
	.list_flow figure { margin-bottom: 12px; }
	
	.list_reason li { margin-bottom: 48px; }
	.list_reason li:last-child { margin-bottom: 0; }
	.list_reason dt {
		width: 380px;
		margin-left: 15px;
	}
	.list_reason dd { margin: 0 15px; }
	.list_reason dd:after {
		content:"";
    display:block;
    clear:both;
	}
	.list_reason dd div {
		float: left;
		width: 480px;
	}
	.list_reason dd figure {
		float: right;
		width: 420px;
		margin-top: -52px;
	}

}

@media only screen and (max-width: 750px) {

	/* パソコンで見たときは"sp"のclassがついた画像が表示される */
	.pc { display: none !important; }
	.sp { display: block !important; }

	img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	html {
		font-family: sans-serif;
		font-size: 10px;
		color: #333;
	}

	body {
		font-size: 1.4rem;
		line-height: 1.5;
	}
	
	.sec_root > section { margin: 0 10px 96px; }
	
	/*パンくず*/
	nav.breadcrumbs {	margin-bottom: 8px; }
	nav.breadcrumbs ul { 
		margin-left: 10px;
		overflow: hidden;
	}
	nav.breadcrumbs li {
		float: left;
		margin-left: 0.1em;
		font-size: 1.1rem;
	}
	nav.breadcrumbs li:first-child { margin-left: 0; }
	
	#pagetop {
		position: fixed;
		right: 10px;
		bottom: 10px;
		width: 33px;
		height: auto;
	}


	/*ヘッダー
	--------------------------------------------------*/

	h1 {
		font-size: 1.1rem;
		font-weight: normal;
		line-height: 1.25;
		margin: 4px 10px;
	}
	
	header { background: #fff; }
	header div.sp {
		position: relative;
		padding-top: 13%;
	}
	
	.fixed_header {
		position: absolute;
		top: 0;
		padding: 0 10px;
		font-size: 0;
		background: #fff;
	}
	.fixed_header > * {
		display: inline-block;
		vertical-align: middle;
	}
	.fixed_header.fixed {
		position: fixed;
		top: 0;
		z-index: 1;
	}
	.fixed_header > dl {
		width: 85%;
		font-size: 0;
	}
	.fixed_header > dl > * {
		display: inline-block;
		vertical-align: middle;
	}
	.fixed_header > dl > dt {	width: 55%; }
	.fixed_header > dl > dd {
		width: 45%;
		box-sizing: border-box;
		border-left: 10px solid transparent;
	}
	.fixed_header ul li:first-child { margin-bottom: 5px; }
	.fixed_header + ul {
		margin: 0 10px 8px;
		font-size: 1.1rem;
		line-height: 1.25;
	}
	
	/*ハンバーガーメニュー*/
	.hamburger-nav {
		display: inline-block;
		box-sizing: border-box;
    width: 15%;
		border-left: 10px solid transparent;
	}
	.hamburger-nav-list {
		display: none;
		top: 0;
		position: fixed;
		z-index: 100;
		overflow-y: scroll !important;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding: 10px;
		background: rgba(0,0,0,0.66);
	}
	
	.hamburger_menu dt {
		font-size: 4rem;
		font-family: Arial, Helvetica, sans-serif;
	}
	.hamburger_menu li a {
		display: block;
		padding: 5px 10px;
		font-size: 1.8rem;
		color: #333;
		background: #fff;
		margin-bottom: 10px;
		position: relative;
	}
	.hamburger_menu li:last-child a {
		padding: 0;
		margin-top: 15px;
	}
	.hamburger_menu li a:after {
		content: "";
		position: absolute;
		right: 10px;
		top: 50%;
		width: 6px;
		height: 6px;
		border-top: 1px solid #666;
		border-right: 1px solid #666;
		transform: translateY(-50%) rotate(45deg);
	}


	/*フッター
	--------------------------------------------------*/

	footer div {
		padding: 10px 0;
		background: #eee;
		text-align: center;
	}
	footer div dl {
		display: inline-block;
		font-size: 1.6rem;
		text-align: left;
	}
	footer div dl dt { font-size: 1.8rem; }
	footer div dl dd {
		font-size: 1.6rem;
		line-height: 1.25;
	}
	footer > p {
		padding: 5px 10px;
		font-size: 1.1rem;
		color: #fff;
		background: #333;
	}


	/*トップページ
	--------------------------------------------------*/

	h2 { margin-bottom: 8px; }
	h2 + p { margin: 0 10px 48px; }
	
	h3 {
		margin-top: -13%;
		padding-top: 13%;
	}
	h3 span {
		display: block;
		font-size: 2.4rem;
		line-height: 1.75;
		text-align: center;
		background: #ffd610;
		margin: 0 -10px 12px;
	}
	
	/*留めゴム付き腕章*/
	.list_tomegomu { margin-bottom: 56px; }
	.list_tomegomu figcaption { margin-bottom: 5px; }
	.item_merit {
		border: 2px solid #bf1920;
		border-radius: 5px;
		position: relative;
		padding: 20px 10px 10px;
	}
	.item_merit dt {
		position: absolute;
		left: 15px;
		top: -1.2rem;
		font-size: 2.4rem;
		font-weight: bold;
		line-height: 1;
		color: #bf1920;
		padding: 0 7.5px;
		background: #fff;
	}
	.item_merit dd {
		font-size: 1.8rem;
		font-weight: bold;
	}
	
	.list_tomegomu li,
	.list_point li,
	.type_armband > ul > li,
	.print_armband > ul > li,
	.shitate_armband > ul > li,
	.list_flow li,
	.list_reason li { margin-bottom: 48px; }
	.list_tomegomu li:last-child,
	.list_point li:last-child,
	.type_armband > ul > li:last-child,
	.print_armband > ul > li:last-child,
	.shitate_armband > ul > li:last-child,
	.list_flow li:last-child,
	.list_reason li:last-child { margin-bottom: 0; }
	.list_point dt,
	.type_armband li > dl > dt,
	.print_armband dt,
	.shitate_armband dt,
	.list_reason dt {
		font-size: 1.8rem;
		font-weight: bold;
		color: #fff;
		background: #333;
		border-radius: 10px;
		text-align: center;
		margin-bottom: 8px;
	}
	.list_point figure {
		margin: 8px auto 0;
		width: 80%;
	}
	
	.type_armband > div,
	.print_armband > div,
	.shitate_armband > div,
	.lead_tomegu {
		font-size: 1.6rem;
		font-weight: bold;
		color: #03254d;
		margin-bottom: 8px;
	}

	.type_armband li > dl > dd {
		line-height: 1.33;
		overflow: hidden;
	}
	.type_armband li > dl > dd > p {
		float: left;
		width: 50%;
	}
	.type_armband li > dl > dd figure {
		float: right;
		box-sizing: border-box;
		width: 50%;
		border-left: 10px solid #fff;
		position: relative;
	}
	.type_armband li > dl > dd figcaption {
		position: absolute;
		bottom: 4px;
		right: 4px;
	}
	.type_armband li > dl > dd ul { font-size: 0; }
	.type_armband li > dl > dd ul li {
		display: inline-block;
		margin-left: 0.25em;
		width: 50%;
	}
	.type_armband li > dl > dd ul li.list_1 { width: 100%; }
	.type_armband dl dl {
		float: left;
		box-sizing: border-box;
		width: 50%;
		border: 1px solid #429671;
		padding: 8px;
		margin-top: 4px;
	}
	.type_armband dl dl dt {
		line-height: 1.5;
		color: #fff;
		font-weight: bold;
		background: #429671;
		text-align: center;
		margin-bottom: 4px;
	}
	.type_armband dl dl dd { font-size: 1.2rem; }
	
	.print_armband > ul > li { margin-bottom: 48px; }
	.print_armband ul ul {
		overflow: hidden;
		margin: 8px 0 0 -10px;
	}
	.print_armband ul ul li {
		float: left;
		box-sizing: border-box;
		width: 50%;
		font-size: 1.2rem;
		border-left: 10px solid transparent;
		text-align: center;
	}
	.print_armband ul li:last-child ul li { width: 33.33%; }
	.print_armband ul ul li figcaption { margin-top: 4px; }
	
	.shitate_armband ul ul {
		margin: 8px 0 0 -10px;
		display: flex;
		flex-wrap: wrap;
	}
	.shitate_armband ul ul li {
		box-sizing: border-box;
		border-left: 10px solid transparent;
		width: 33.33%;
		text-align: center;
		margin-top: 10px;
	}
	.shitate_armband ul ul li:nth-child(-n+3) { margin-top: 0; }
	.shitate_armband figcaption {
		margin-top: 4px;
		font-size: 1.2rem;
	}
	
	.size_armband dl:first-of-type { margin-bottom: 24px; }
	.size_armband dl:first-of-type dt {
		margin: 0 auto 12px;
		width: 90%;
		box-shadow: 2px 2px 2px rgba(0,0,0,0.25);
	}
	.size_armband > div {
		border: 1px solid #c31c23;
		padding: 6px 12px;
		border-radius: 10px;
		margin-bottom: 12px;
	}
	.size_armband ul {
		overflow: hidden;
		margin-left: -10px;
	}
	.size_armband ul li {
		box-sizing: border-box;
		float: left;
		width: 50%;
		border-left: 10px solid transparent;
	}
	
	.list_flow dt {
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 4px;
	}
	.list_flow dt span {
		display: inline-block;
		vertical-align: middle;
		font-size: 1.8rem;
		color: #fff;
		width: 1.5em;
		text-align: center;
		background: #c41c23;
		border-radius: 0.75em;
		margin-right: 0.25em;
	}
	.list_flow dd {
		overflow: hidden;
	}
	.list_flow figure {
		float: left;
		width: 60%;
		box-sizing: border-box;
		border-right: 10px solid #fff;
	}
	.list_flow p {
		float: left;
		width: 40%;
		line-height: 1.33;
	}
	
	.list_reason figure {
		margin: 4px auto 0;
		width: 90%;
	}
	
	/*お問い合わせフォーム差分*/
	form > dl dt {
		width: 40%;
		padding: 0 8px;
		font-size: 1.6rem;
	}
	form > dl dd { width: 60%; }
	form > dl.file dd {	font-size: 1.4rem; }
	form > dl dd input[type="text"],
	form > dl.textarea textarea,
	form > dl dd input[type="file"],
	form select { font-size: 1.6rem; }
	form > dl dt strong {
		font-size: 1.4rem;
		padding: 0.25em;
		letter-spacing: 0;
	}
	
	/*submitリセット*/
	input[type="submit"] {
		border-radius: 0;
		-webkit-box-sizing: content-box;
		-webkit-appearance: button;
		appearance: button;
		border: none;
		box-sizing: border-box;
		cursor: pointer;
	}
	input[type="submit"]::-webkit-search-decoration {
		display: none;
	}
	input[type="submit"]::focus {
		outline-offset: -2px;
	}
	
	form input[type="submit"] {
		display: block;
		margin: 48px auto 96px;
		box-sizing: border-box;
		padding: 0 25px;
		font-size: 25px;
		font-weight: bold;
		line-height: 50px;
		color: #fff;
		background: #b50005;
		text-align: center;
		border: 1px solid #fff;
		box-shadow: 0 0 0 3px #b50005;
		border-radius: 10px;
		cursor: pointer;
	}
	
	/*thanksページ*/
	.sec_thanks { margin: 24px 10px 96px; }
	.sec_thanks h2 {
		font-size: 3.2rem;
		margin: 0 0 12px;
	}
	.sec_thanks h2 + p { margin: 0; }

}