@import 'common_tt.css';

main h1 {
	display: none;
}

/*==================== バナー ====================*/
#rollbanner {
	position: relative;
	z-index: 0;
	overflow: hidden;
	/* background-color: #0a3c8c; */
	line-height: 1;
}
#rollbanner img {
	vertical-align: bottom;
}
#rollbanner .main {
	position: relative;
}

/* コントロール */
#rollbanner .control {
	position: absolute;
	display: inline-table;
	table-layout: fixed;
}
#rollbanner .control div {
	display: table-cell;
	position: relative;
	cursor: pointer;
	height: 100%; /* for IE10 */
}
#rollbanner .control div:before {
	content: '';
	display: block;
	height: 100%; /* for IE10 */
	-webkit-transform: scale(0.9, 0.3);
	transform: scale(0.9, 0.3);
	/* background-color: #e6e6e6; */
	background-color: #b4b4b4;
}
#rollbanner .control > div.off:before {
	background-color: #FFF;
}

	html.PC #rollbanner .control {
		left: 50%;
		bottom: 0;
		width: 800px;
		height: 2em;
		transform: translate(-50%, 0);
	}
	html.PC #rollbanner[data-num="9"] .control {width: calc(80px * 9);}
	html.PC #rollbanner[data-num="8"] .control {width: calc(80px * 8);}
	html.PC #rollbanner[data-num="7"] .control {width: calc(80px * 7);}
	html.PC #rollbanner[data-num="6"] .control {width: calc(80px * 6);}
	html.PC #rollbanner[data-num="5"] .control {width: calc(80px * 5);}
	html.PC #rollbanner[data-num="4"] .control {width: calc(80px * 4);}
	html.PC #rollbanner[data-num="3"] .control {width: calc(80px * 3);}
	html.PC #rollbanner[data-num="2"] .control {width: calc(80px * 2);}
	html.PC #rollbanner[data-num="1"] .control {width: calc(80px * 1);}

	html.PC #rollbanner .control > div {
		transition: all 0.2s ease;
	}
	html.PC #rollbanner .control > div:not(.off):hover {
		-webkit-filter: brightness(140%);
		filter: brightness(140%);
	}
		.SP  #rollbanner .control {
			left: 50%;
			bottom: 0;
			width: 95%;
			height: 2.5em;
			-webkit-transform: translate(-50%, 0);
			transform: translate(-50%, 0);
		}
		.SP  #rollbanner[data-num="5"] .control {width: 90%;}
		.SP  #rollbanner[data-num="4"] .control {width: 80%;}
		.SP  #rollbanner[data-num="3"] .control {width: 60%;}
		.SP  #rollbanner[data-num="2"] .control {width: 40%;}
		.SP  #rollbanner[data-num="1"] .control {width: 20%;}

		.SP  #rollbanner .control div:before {
			-webkit-transform: scale(0.9, 0.25);
			transform: scale(0.9, 0.25);
		}

/* リスト */
#rollbanner .list {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	white-space: nowrap;
	opacity: 0.8;
}
#rollbanner .list > div {
	display: inline-block;
	margin-right: 10px;
}
#rollbanner .list > div img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
#rollbanner .list.off {
	opacity: 0.4;
	-webkit-filter: blur(3px);
	filter: blur(3px);
}

/* アクティブバナー */
#rollbanner .active {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	background-color: white;
	-webkit-animation-name: -webkit-showbanner;
	-webkit-animation-duration: 0.3s;
	-webkit-animation-timing-function: ease;
	animation-name: showbanner;
	animation-duration: 0.3s;
	animation-timing-function: ease;
}
#rollbanner .active img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	-webkit-animation-name: -webkit-showbannerimg;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-timing-function: ease;
	animation-name: showbannerimg;
	animation-duration: 0.6s;
	animation-timing-function: ease;
}
	html.PC #rollbanner {
		min-width: 1000px;
		padding: 2em 0;
		text-align: center;
	}
	html.PC #rollbanner img {
		width: 1000px;
	}

		.SP  #rollbanner {
			padding: 1em 0 2.5em;
		}
		.SP  #rollbanner .active {
			-webkit-animation-duration: 0.2s;
			-webkit-animation-name: -webkit-showbannersp;
			-webkit-animation-timing-function: ease-out;
			animation-duration: 0.2s;
			animation-name: showbannersp;
			animation-timing-function: ease-out;
		}
		.SP  #rollbanner .active img {
			-webkit-animation-name: none;
			animation-name: none;
		}

@-webkit-keyframes -webkit-showbanner {
	from {
		-webkit-transform: scale(0.85);
	}
	to {
		-webkit-transform: scale(1);
	}
}
@keyframes showbanner {
	from {
		transform: scale(0.85);
	}
	to {
		transform: scale(1);
	}
}
@-webkit-keyframes -webkit-showbannersp {
	from {
		-webkit-transform: scale(0.7);
	}
	to {
		-webkit-transform: scale(1);
	}
}
@keyframes showbannersp {
	from {
		transform: scale(0.7);
	}
	to {
		transform: scale(1);
	}
}
@-webkit-keyframes -webkit-showbannerimg {
	from {
		opacity: 0;
		-webkit-filter: brightness(400%);
	}
	to {
		opacity: 1;
		-webkit-filter: brightness(100%);
	}
}
@keyframes showbannerimg {
	from {
		opacity: 0;
		-webkit-filter: brightness(400%);
		filter: brightness(400%);
	}
	to {
		opacity: 1;
		-webkit-filter: brightness(100%);
		filter: brightness(100%);
	}
}

/*==================== コンテンツ ====================*/
#contents section {
}
	html.PC #contents {
		position: relative;
		width: 1000px;
		margin: 0 auto;
		font-size: 14px;
	}
	html.PC #contents section {
		margin: 2em auto 0;
	}
		.SP  #contents {
			font-size: 14px;
		}
		.SP  #contents section {
			margin: 1em auto 0;
			padding: 0 3%;
		}

/*-------------------- メッセージ --------------------*/
#message {
}
#message p {
	margin: 0;
}
	html.PC #message {
		margin: 2em auto 0;
		text-align: center;
	}
	html.PC #message p {
		display: inline-block;
	}
		.SP  #message {
			margin: 0.5em 0 0;
			padding: 0 3%;
		}
		.SP  #message p {
			font-size: 90%;
		}

#message p {
	font-weight: bold;
	font-size: 110%;
}


/*-------------------- 製品検索 --------------------*/
#search > div {
	background-color: #e2ebf8;
}
	html.PC #search > div {
		box-sizing: border-box;
		width: 1000px;
		padding: 0.75em 0;
		white-space: nowrap;
		overflow: visible;
		font-size: 130%;
		text-align: center;
	}
	html.PC #search form,
	html.PC #search .more {
		display: inline-block;
		vertical-align: middle;
	}
		.SP  #search > div {
			padding: 1em;
		}

/* フォーム */
#search form {
	position: relative;
	border: 2px solid #0a3c8c;
	border-radius: 0.25em;
	background-color: white;
}
#search form input {
	box-sizing: border-box;
	font-size: inherit;
	width: 100%;
	border: none;
	padding: 0.75em;
	background: transparent;
	outline: none;
}
#search form button {
	position: absolute;
	right: 0;
	top: 0;
	box-sizing: border-box;
	height: 100%;
	background-color: #0a3c8c;
	border: none;
	margin: 0;
	padding: 0;
	color: white;
	font-size: inherit;
}

	html.PC #search form {
		box-sizing: border-box;
		width: 838px;
	}
	html.PC #search form button {
		padding-left: 2.5em;
		padding-right: 0.5em;
	}
	html.PC #search form button img {
		position: absolute;
		left: 0.5em;
		top: 50%;
		transform: translate(0, -50%);
		width: auto;
		height: 2em;
	}
	html.PC #search form button span {
		font-family: '微软雅黑';
		letter-spacing: 0.5em;
	}
	html.PC #search form button {
		transition: all 0.2s ease;
	}
	html.PC #search form button:hover {
		-webkit-filter: brightness(130%);
		filter: brightness(130%);
	}

		.SP  #search form button {
			padding: 0 0.75em;
		}
		.SP  #search form button img {
			width: auto;
			height: 2em;
		}
		.SP  #search form button span {
			display: none;
		}

/* 詳細検索 */
#search .more button {
	border: none;
	margin: 0;
	padding: 0;
	background: none;
	color: #0a3c8c;
	font-size: inherit;
	text-align: center;
}
#search .more button span {
	display: inline-block;
	position: relative;
	padding-left: 1.5em;
	font-family: '微软雅黑';
}
#search .more button span:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 1.25em;
	height: 1.25em;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background: url(/images/common/arrow3.svg) no-repeat left center;
	background-size: contain;
}

	html.PC #search .more button {
		box-sizing: border-box;
		width: 117px;
		border: 2px solid #0a3c8c;
		border-radius: 0.25em;
		background-color: white;
		transition: all 0.2s ease;
	}
	html.PC #search .more button:hover {
		/*
		-webkit-filter: brightness(130%);
		filter: brightness(130%);
		*/
		box-shadow: 0 0 0px 2px #0a3c8c inset;
	}
	html.PC #search .more button span {
		font-size: 80%;
		line-height: 1;
		padding-top: 1em;
		padding-bottom: 1em;
	}

		.SP  #search .more {
			margin: 0.75em 0 0;
			text-align: center;
			font-size: 120%;
		}

/*-------------------- ブランドサイト一覧 --------------------*/
	html.PC #contents section #brands{
		margin: 2em 0 0;
	}
#brands {
}
	html.PC #brands{
		width: 748px;
		display: inline-block;
	}

#brands ul {
	padding: 0;
	list-style-type: none;
	border: 1px solid #b5c4dc;
	border-width: 1px 0 0 1px;
}
	html.PC #brands ul{
			width: 748px;
			margin: 0;
		}
		
#brands li {
	display: inline-block;
	box-sizing: border-box;
	border: inherit;
	border-width: 0 1px 1px 0;
}
#brands li img {
	display: block;
	margin-bottom: 0.5em;
}

	html.PC #brands li {
		width: calc(748px/3);
		padding: 1em;
	}
		.SP  #brands li {
			width: 50%;
			padding: 0.75em;
			font-size: 85%;
		}
		.SP  #brands li.pc_only{display: none;}

/*-------------------- サイドメニュー --------------------*/
#side_menu{
}
	html.PC #side_menu{
		width: 230px;
		float: right;
		padding: 188px 0 0 10px;
		border-left: 1px solid #6c8aba;
	}
#side_menu ul{
	margin: 4% auto;
	padding: 0;
}
	html.PC #side_menu ul{
		width: 230px;
	}
		.SP  #side_menu ul{
			width: 100%;
		}
#side_menu li{
	list-style-type: none;
	/*border-bottom: 1px solid #b5c4dc;*/
	text-align: center;
}
	html.PC #side_menu li:nth-of-type(2),
	html.PC #side_menu li:nth-of-type(3){
		text-align: center;
	}
	html.PC #side_menu li:nth-of-type(2),
	html.PC #side_menu li:nth-of-type(3),
	html.PC #side_menu li:nth-of-type(4){
		height: auto;
	}
	html.PC #side_menu li a{
		width: 230px;
		height: 66px;
	}

		.SP  #side_menu li{border-bottom: none;}
		.SP  #side_menu li:nth-of-type(2),
		.SP  #side_menu li:nth-of-type(3),
		.SP  #side_menu li:nth-of-type(4){
			width: calc(77%/3);
			display: inline-block;
			border: 1px solid #b5c4dc;
			padding: 3%;
		}
		.SP  #side_menu li:nth-of-type(2) img,
		.SP  #side_menu li:nth-of-type(3) img,
		.SP  #side_menu li:nth-of-type(4) img{
			width: 100%;
			display: block;
		}
		
#side_menu li a img{
	padding: 1% 0;
}
#side_menu li a img.side_yunker{
	width: 164px;
}
#side_menu li a img.side_ringl{
	width: 164px;
}
#side_menu li a img.side_alogain{
	width: 164px;
}
#side_menu li a img.side_bion{
	width: 99px;
}
	/*html.PC #side_menu li a img.side_bion{padding-right: 30px;}*/
#side_menu span.up{
	width: 50px;
	height: 50px;
	display: table-cell;
	float: none;
	margin: 0;
	padding: 0 0px 0 0;
}
	html.PC #side_menu span.up{
		margin: 11px 0 0 0;
		position: absolute;
	}
	html.PC #side_menu li:nth-of-type(4) span.up{
		padding: 10px 0 0 10px;
		float: left;
	}

html.PC #side_menu time{
	position: relative;
	top: -24px;
}
	.SP  #side_menu time{
		position: relative;
		top: 0;
		font-size: 90%;
	}


/* 今月のオススメ商品 */
#osusume{
	width: 100%;
	background: #0a3c8c;
	border-radius: 4px;
	margin: 14px auto 0;
}
	html.PC #osusume{
		width: 230px;
		height: 300px;
		position: relative;
	}
		.SP  #osusume{
			width: 49%;
			height: 15em;
			margin: 0 0 5% 0;
			/*padding-bottom: 3%;*/
			display: inline-block;
			vertical-align: top;
		}
#osusume p.osusume_cap{
	color: #ffffff;
	font-family: '微软雅黑';
	font-size: 120%;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
	padding: 0.6em;
}
	.SP  #osusume p.osusume_cap{
		padding: 0.4em;
		line-height: 1.2em;
		}
#new_product{
	width: 180px;
	background: #ffffff;
	border-radius: 4px;
	margin: 0 auto;
}
	html.PC #new_product{
		height: 230px;
		display: table;
		padding: 3% 5% 3% 5%;
	}
			.SP  #new_product{
				width: 85%;
				height: auto;
				padding: 4% 5%;
				/*padding: 8% 5%;*/
				display: table;
			}
html.PC #new_p_box{
	width: 100%;
	display: table-cell;
	vertical-align: middle;
	padding: 0;
}
	html.PC #new_product p{
		width: 100%;
		margin: 0 auto;
		text-align: justify;
		line-height: 1.45em;
	}
	html.PC #new_product p:nth-child(1){
		width: 100%;
		position: ;
		text-align: center;
	}
		.SP  #new_product p{
			display: block;
			margin: 0;
		}
		.SP  #new_product p:nth-child(1){
			width: 25%;
			position: relative;
			vertical-align: top;
			margin-top: 0;
		}
		.SP  #new_product p:nth-child(2){
			width: 100%;
			margin: 1% auto;
			/*margin: 1% auto 5%;*/
			/*margin: 5% auto 5%;*/
		}
		.SP  #new_product p:nth-child(3){
			width: 100%;
			display: block;
			vertical-align: middle;
			text-align: justify;
			font-size: 75%;
			line-height: 12px;
			/*line-height: 14px;*/
		}
	html.PC #new_product p:nth-child(3){
			width: 95%;
			font-size: 87%;
	}
		
#new_product img.img_product{
	margin: 0 auto;
	padding: 0;
}
	html.PC #new_product img.img_product{
		width: 100%;
		display: block;
		/*margin: 15px auto 0;*/
		margin: 0 auto 0;
		padding: 0 0 10px 0;
	}
		.SP  #new_product img.img_product{
			width: 100%;
			height: auto;
		}

	html.PC #new_product img.new_icon{
		position: absolute;
		width: 38px;
		height: auto;
	}
	html.PC #new_product img.wait_icon{
		width: 114px;
		height: auto;
	}
		.SP  #new_product img.new_icon{
			width: 100%;
		}
		.SP  #new_product img.wait_icon{
			width: 100%;
		}
#new_product a{
	color: ##1981ff;
	text-decoration: none;
	text-align: justify;
	color: #000000;
}
/*#new_product a span{letter-spacing: -0.05em;}*/
#new_product a span.product_name{
	display: inline-block;
	width: 100%;
	text-align: center;
	/*letter-spacing: -0.09em;*/
	color: #0058A1;
}
	.SP  #new_product a span.product_name{
		text-decoration: none;
	}
#new_product sub{vertical-align: bottom;}
#new_product a span.space_2{letter-spacing: -0.25em;}
#new_product a span.space_3{letter-spacing: -0.11em;}
#new_product a span.space_4{letter-spacing: -0.12em;}
#new_product a span.underline{text-decoration: underline;}

/*-------------------- ニュースリリース --------------------*/
	html.PC #contents section#news{
		margin-top: 80px;
	}
#news h2 {
	background: #e2ebf8;
	color: #5b7294;
	padding: 0.5em 0.75em;
	font-size: 130%;
}
	html.PC #news h2 span {
		font-family: '微软雅黑';
		letter-spacing: 0.1em;
	}

/*-------------------- ページボタン --------------------*/
#contents .topage {
	text-align: left;
}
#contents .topage p {
	display: inline-block;
	border-radius: 0.25em;
	background: #0a3c8c;
	text-align: center;
}
#contents .topage p a {
	position: relative;
	display: inline-block;
	padding: 0 0.75em;
	color: white;
	font-family: '微软雅黑';
	text-decoration: none;
	text-indent: 1.5em;
	line-height: 2.5em;
	white-space: nowrap;
}
#contents .topage p a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0.75em;
	width: 1.25em;
	height: 1.25em;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background: url(/images/common/arrow2.svg) no-repeat left center;
	background-size: contain;
}

	html.PC #contents .topage p {
		transition: all 0.2s ease;
	}
	html.PC #contents .topage p:hover {
		-webkit-filter: brightness(130%);
		filter: brightness(130%);
	}

/*-------------------- 関連情報 --------------------*/
#info ul {
	padding: 0;
	list-style-type: none;
}
#info li {
	box-sizing: border-box;
	display: inline-block;
}
#info li a {
	display: block;
	text-align: center;
}
#info li img {
	vertical-align: bottom;
}

#info ul:nth-of-type(1) li {
	border: 1px solid #0a3c8c;
}
#info ul:nth-of-type(3) li {
	border: 1px solid #ccc;
}

	html.PC #info li {
		width: 24%;
		margin: 0 0.5%;
		vertical-align: top;
	}
	html.PC #info ul:nth-of-type(1) li a {
		padding: 1em 0;
	}
		html.PC #info ul:nth-of-type(1) li:nth-of-type(1) a,
		html.PC #info ul:nth-of-type(1) li:nth-of-type(2) a{
			padding: 0.8em 0;
		}
		
	html.PC #info ul:nth-of-type(1) li img {
		width: auto;
		height: 125px;
	}
		html.PC #info ul:nth-of-type(1) li:nth-of-type(1) img,
		html.PC #info ul:nth-of-type(1) li:nth-of-type(2) img {
			width: 88%;
			height: auto;
		}
		/*-- IE --*/
		@media all and (-ms-high-contrast:none){
			html.PC #info ul:nth-of-type(1) li:nth-of-type(1) img {
				width: 88%;
				height: auto;
				margin: -0.2em 0 0.3em 0;
			}
			html.PC #info ul:nth-of-type(1) li:nth-of-type(1) a{
				padding: 1em 0 0.5em;
			}
		}


	html.PC #info ul:nth-of-type(2) {
		margin: 0;
	}
	html.PC #info ul:nth-of-type(2) {
		width: 230px;
		margin: 110px 0 0 0;
		position: absolute;
		right: 0;
		top: 0;
		transition: all 0.2s ease;
	}
	html.PC #info ul:nth-of-type(2) li {
		width: 100%;
		height: auto;
	}
	html.PC #info ul:nth-of-type(2):hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}
	
	html.PC #info ul:nth-of-type(1) li,
	html.PC #info ul:nth-of-type(3) li {
		transition: all 0.2s ease;
	}
	html.PC #info ul:nth-of-type(1) li:hover {
		box-shadow: 0 0 0px 2px #0a3c8c inset;
	}
	html.PC #info ul:nth-of-type(3) li:hover {
		box-shadow: 0 0 0px 2px #ccc inset;
	}

		.SP  #info ul {
			text-align: center;
		}
		.SP  #info li {
			width: 48%;
			margin: 1%;
			vertical-align: ;
		}
		.SP  #info ul:nth-of-type(1) li {
			padding: 0.5em 1em;
		}
			.SP  #info ul:nth-of-type(1) li:nth-of-type(1){
				padding: 0.5em 1em;
				margin: 1%;
			}
		
		.SP  #info ul:nth-of-type(2) li {
			width: 100%;
		}
		
			.SP  #info ul:nth-of-type(1) li:nth-of-type(1) a {
				width: 100%;
				height: auto;
			}
		.SP  ul#medical-staff{
			width: 49%;
			margin: 0;
			display: inline-block;
		}

	span.pharmacy{
		
	}
		
/* サイドメニューSPのみ */
	html.PC .sp_only{
		display: none;
	}
		.SP  .pc_only{
			display: none;
		}
		
		.SP  #info #side_menu ul{
			width: 100%;
		}
		
		.SP  #info #side_menu li.column{
			border-bottom: none;
		}
		.SP  #info #side_menu li.column:nth-of-type(1){
			width: 100%;
			border: none;
			margin: 0 0 2% 0;
			padding: 0;
		}
		.SP  #info #side_menu li:nth-of-type(2),
		.SP  #info #side_menu li:nth-of-type(3),
		.SP  #info #side_menu li:nth-of-type(4),
		.SP  #info #side_menu li:nth-of-type(5){
			width: 48%;
			height: auto;
			display: inline-block;
			border: none;
			margin: 0;
			padding: 0;
			vertical-align: top;
		}
		.SP  #info #side_menu li:nth-of-type(2) img{
			width: 100%;
			display: block;
		}
		.SP  #info #side_menu li:nth-of-type(2) img.side_yunker,
		.SP  #info #side_menu li:nth-of-type(2) img.side_alogain,
		.SP  #info #side_menu li:nth-of-type(3) img.side_ringl,
		.SP  #info #side_menu li:nth-of-type(4) img.side_bion{
			width: 54%;
			display: inline-block;
			padding: 0 0 0 0;
		}
		.SP  #side_menu li span.up{
			width: 2.5em;
			height: 2.5em;
			display: inline-block;
			position: relative;
			margin: -3% 0 0 -2%;
			padding: 0;
		}
		.SP  #side_menu li img.side_ringl{
			
		}
		.SP  #side_menu li img.side_bion{
			
		}

/*==================== リンク ====================*/

#link {
	text-align: center;
	border-top: 1px solid #0a3c8c;
	margin: 4em 0 0;
}
#link ul {
	padding: 0;
	list-style-type: none;
}
	html.PC #link ul {
		width: 1000px;
		margin: 1em auto 0;
		/*display: flex;
		justify-content: center;均等*/
	}
	.SP  #link ul {
		padding: 0 3%;
	}

#link li {
	display: inline-block;
	vertical-align: middle;
}
	html.PC #link li {
		width: 188px;
		height: 48px;
		margin: 0.5%;
	}
	html.PC #link li.sp_only{display: none;}
	
	.SP  #link li.link_banner {
		width: 49%;
		height: auto;
		margin: 0.5%;
	}
	.SP  #link img.pc_only,
	.SP  #link li.pc_only{display: none;}
	.SP  #link img.sp_only,
	.SP  #link li.sp_only{display: ;}
	#link li:first-child,
	#link li:nth-child(6){
		margin-left: 0;
	}
	
#link img[src$="banner_taxfree.jpg"] {
	box-sizing: border-box;
	border: 1px solid #0a3c8c;
}

	html.PC #link img[src$="banner_taxfree.jpg"] {
		width: auto;
		height: 60px;
	}

		.SP  #link img {
			width: auto;
			height: auto;
		}
		
#thanks {
	width: 1000px;
	margin: 30px auto 0;
	padding: 5px 20px;
	box-sizing: border-box;
	border: double 7px #DAA520;
	text-align: center;
}
	
	.SP  #thanks {
		width: 94%;
		margin: 1em auto;
		padding: 0 1em;
	}
	
#thanks h2 {
	padding-bottom: 5px;
	color: #DAA520;
	font-size: 160%;
}
	
	.SP  #thanks h2 {
		font-size: 120%;
		border-bottom: solid 3px #DAA520;
	}

#thanks h2 span {
	width: auto;
	padding: 0 15px 3px;
	border-bottom: solid 4px #DAA520;
}

	.SP  #thanks h2 span {
		border: none;
		padding: 0;
	}

#thanks p {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
	
	.SP  #thanks p {
		text-align: justify;
		font-size: 88%;
	}

/* ---- SNS_sp ---- */
html.PC #link .sns_sp{display: none;}
	.SP  #link .sns_sp{
		display: block;
		padding: 0 3%;
	}
	.SP  #link .sns_sp a{
		width: 10%;
		height: auto;
		display: inline-block;
	}
	.SP  #link .sns_sp img{
		width: 100%;
		height: auto;
	}