@charset "utf-8";


/* ! Common Classes
----------------------------------------------- */

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-size: 10px;
	font-size: 1.0rem;
	line-height: 1;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: 'liga', 'kern';
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

input,
button,
select,
textarea {
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
}

ul {
	list-style-type: none;
}

img {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

a:hover img {
	opacity: .6;
}

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

	body {
		min-width: 320px;
		font-size: 100% !important;
	}

	img {
		max-width: 100%;
	}

	.pc {
		display: none !important;
	}

}

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

	body {
		min-width: 865px;
	}

	.sp {
		display: none !important;
	}

}


/* ! body
----------------------------------------------- */

body:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: rgb(255,255,255);
	background: linear-gradient(to bottom,
		rgba(241,241,241,1),
		rgba(241,241,241,1) 50%,
		rgba(255,255,255,1) 100%);
}

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

	body:before {
		min-width: 320px;
	}

}

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

	body:before {
		min-width: 865px;
	}

}


/* ! header
----------------------------------------------- */

header {
	position: relative;
	width: 845px;
	margin: 0 auto;
}

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

	header {
		width: 100%;
	}

}

/* #header-seo */
#header-seo {
	font-weight: normal;
	line-height: normal;
}

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

	#header-seo {
		display: none;
	}

}

/* #header-main */
#header-main {
	margin: 1rem 0;
	margin-top: 3rem;
}

#header-main ul {
	display: table;
	width: 100%;
}

#header-main li {
	display: table-cell;
	vertical-align: top;
}

#header-main .header-title img {
	width: 260px;
}

#header-main .header-info {
	width: 220px;
	text-align: right;
}

#header-main .header-inq {
	width: 250px;
	text-align: right;
}

#header-main .header-inq a {
	display: inline-block;
	padding: 1.5rem 2rem;
	font-size: 1.75rem;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	color: #fff;
	background: rgb(255,142,28);
	background-image: linear-gradient(to bottom,
		rgba(255,142,28,1),
		rgba(255,87,6,1) 100%);
	box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgb(255,103,0);
	border-radius: 1px;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

#header-main .header-inq a:hover {
	opacity: .6;
}

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

	#header-main {
		margin-top: 0;
	}

	#header-main ul {
		display: block;
		width: 100%;
	}

	#header-main li {
		display: block;
	}

	#header-main .header-title {
		width: calc(100% - 60px) !important;
		padding: 10px;
		text-align: left;
	}

	#header-main .header-title img {
		width: auto;
		height: 30px;
	}

	#header-main .header-info {
		width: 100%;
		margin-top: 1rem;
		text-align: center;
	}

}

/* #header-sns */
#header-sns {
	position: absolute;
	top: 0;
	right: 0;
}

#header-sns ul {
	display: table;
}

#header-sns li {
	display: table-cell;
}

#header-sns li:nth-child(1) {
	padding-right: 10px;
}

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

	#header-sns {
		display: none;
	}

}

/* #header-navi-button */

#header-navi-button {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}

#header-navi-button label {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	background-color: rgb(0,155,228);
}

#header-navi-button label span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 25px;
	height: 3px;
	margin-left: -12.5px;
	margin-top: -1.5px;
	background-color: #fff;
	transition: -webkit-transform 200ms;
	transition: transform 200ms;
	transition: transform 200ms, -webkit-transform 200ms;
}

#header-navi-button label span:nth-child(1) {
	-webkit-transform: translate3d(0, -8px, 0);
	transform: translate3d(0, -8px, 0);
}

#header-navi-button label span:nth-child(2) {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

#header-navi-button label span:nth-child(3) {
	-webkit-transform: translate3d(0, 8px, 0);
	transform: translate3d(0, 8px, 0);
}

#sp_navi_toggle:checked ~ #header-navi-button label span:nth-child(1) {
	-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
}

#sp_navi_toggle:checked ~ #header-navi-button label span:nth-child(2) {
	-webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
	transform: translate3d(0, 0, 0) scale(0.1, 1);
}

#sp_navi_toggle:checked ~ #header-navi-button label span:nth-child(3) {
	-webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
	transform: translate3d(0, 0, 0) rotate(-45deg);
}

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

	#header-navi-button {
		display: none;
	}

}

/* #header-navi */
#header-navi {
}

#header-navi ul {
	display: table;
	width: 100%;
}

#header-navi li {
	display: table-cell;
	width: 20%;
}

#header-navi li a {
	display: block;
	padding: 1rem;
	font-size: 1.5rem;
	text-align: center;
	text-decoration: none;
	color: rgb(0,155,228);
	border-top: solid 1px rgb(0,155,228);
	border-right: solid 1px rgb(0,155,228);
}

#header-navi li.current a,
#header-navi li a:hover {
	color: #fff;
	background-color: rgb(0,155,228);
}

#header-navi li:nth-child(1) {
	border-left: solid 1px rgb(0,155,228);
}

#sp_navi_toggle {
	display: none;
}

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

	#header-navi {
		height: 0;
		max-height: 0;
		overflow: hidden;
		transition: all 400ms ease-in-out;
	}

	#sp_navi_toggle:checked ~ #header-navi {
		max-height: 400px;
		height: 100%;
		line-height: 1;
	}

	#header-navi ul {
		display: block;
	}

	#header-navi li {
		display: block;
		width: 100%;
	}

	#header-navi li:nth-child(1) {
		border-left: none;
	}

	#header-navi li a {
		border-right: none;
	}

}


/* ! main
----------------------------------------------- */

main {
	position: relative;
	width: 845px;
	margin: 0 auto;
	margin-bottom: 5rem;
}

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

	main {
		width: 100%;
	}

}

/* #main-img */
#main-img {
	position: relative;
	margin-bottom: 3rem;
}

#main-img .main-img-text {
	position: absolute;
	top: 330px;
	left: 20px;
	padding: .5rem;
	width: 470px;
	font-size: 1.25rem;
	line-height: normal;
}

#main-img .main-img-button {
	position: absolute;
	top: 445px;
	left: 454px;
	display: inline-block;
	width: 380px;
	height: 99px;
	padding: 2rem;
	font-size: 1.75rem;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	background: rgb(243,0,0);
	border: solid 3px rgb(243,0,0);
	border-radius: 8px;
	overflow: hidden;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

#main-img .main-img-button:hover {
	opacity: .6;
}

#main-img .main-img-button:before {
	content: '';
	position: absolute;
	top: 0;
	left: -5%;
	display: inline-block;
	width: 110%;
	height: 65%;
	background: rgb(251,141,0);
	background-image: linear-gradient(to bottom,
		rgba(251,141,0,1),
		rgba(246,84,6,1) 100%);
	border-radius: 0 0 50% 50%;
}

#main-img .main-img-button-title {
	position: relative;
	display: block;
	margin-bottom: 1rem;
}

#main-img .main-img-button-text {
	position: relative;
	display: block;
	font-size: 3rem;
}

#main-img .main-img-button-arrow {
	position: absolute;
	top: 4rem;
	right: 2.5rem;
	display: inline-block;
	width: 3.5rem;
	height: 3.5rem;
	background-color: #fff;
	border-radius: 50%;
}

#main-img .main-img-button-arrow:before {
	content: '';
	position: absolute;
	top: 1rem;
	left: .75rem;
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	border: solid 4px rgb(243,0,0);
	border-top: none;
	border-left: none;
	transform: rotate(-45deg);
}

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

	#main-img .main-img-text {
		position: static;
		width: 100%;
		padding: .5rem 1rem;
	}

	#main-img .main-img-button {
		display: none;
	}

}

/* #main-banner */
#main-banner {
	margin-bottom: 5rem;
}

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

	#main-banner {
		margin-left: 1rem;
		margin-right: 1rem;
	}

}

/* #main-catch */
#main-catch {
	position: relative;
	margin-bottom: 5rem;
	border: solid 2px rgb(160,217,255);
	border-radius: 8px;
}

#main-catch h2 {
	position: absolute;
	top: -1rem;
	left: 2rem;
	display: inline-block;
	padding: 1rem 3rem;
	font-size: 4rem;
	color: #fff;
	background-color: rgb(0,155,228);
	border: solid 2px rgb(160,217,255);
	border-radius: 8px;
	vertical-align: middle;
}

#main-catch h3 {
	position: absolute;
	top: 0;
	right: .75rem;
	display: inline-block;
	padding: 1rem 2rem;
	font-size: 2.25rem;
	line-height: 1.2;
	color: rgb(235,97,0);
}

#main-catch p {
	margin-top: 6rem;
	padding: 2rem;
	font-size: 1.5rem;
	line-height: normal;
}

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

	#main-catch {
		margin-left: 1rem;
		margin-right: 1rem;
	}

	#main-catch h2 {
		left: 0;
		right: 0;
		margin: 0 1rem;
		font-size: 2rem;
		text-align: center;
	}

	#main-catch h3 {
		position: static;
		display: block;
		margin-top: 5rem;
		padding: 0;
		font-size: 2rem;
		text-align: center;
	}

	#main-catch p {
		margin-top: 0;
	}

}


/* #main-sample */
#main-sample {
	margin-bottom: 5rem;
}

#main-sample ul {
	display: table;
	width: 100%;
	border: solid 2px rgb(160,217,255);
}

#main-sample li {
	display: table-cell;
	width: 20%;
	padding: 2rem;
	text-align: center;
	border-right: solid 2px rgb(160,217,255);
}

#main-sample li:last-child {
	border-right: none;
}

#main-sample img {
	height: 200px;
	margin: auto;
	margin-bottom: 2rem;
}

#main-sample p {
	font-size: 1.1rem;
	line-height: normal;
}

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

	#main-sample {
		margin-left: 1rem;
		margin-right: 1rem;
		overflow-x: auto;
		scroll-behavior: smooth;
	}

	#main-sample ul {
		width: 845px;
	}

}


/* #main-bottom */
#main-bottom {
	margin-bottom: 5rem;
}

#main-bottom .main-img-button {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 2rem;
	font-size: 1.75rem;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	background: rgb(243,0,0);
	border: solid 3px rgb(243,0,0);
	border-radius: 8px;
	overflow: hidden;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

#main-bottom .main-img-button:hover {
	opacity: .6;
}

#main-bottom .main-img-button:before {
	content: '';
	position: absolute;
	top: 0;
	left: -5%;
	display: inline-block;
	width: 110%;
	height: 65%;
	background: rgb(251,141,0);
	background-image: linear-gradient(to bottom,
		rgba(251,141,0,1),
		rgba(246,84,6,1) 100%);
	border-radius: 0 0 50% 50%;
}

#main-bottom .main-img-button-title {
	position: relative;
	display: inline-block;
	margin-right: 2rem;
	padding: 1.5rem;
	font-size: 2rem;
	vertical-align: middle;
	color: rgb(243,0,0);
	background-color: #fff;
	border-radius: 8px;
}

#main-bottom .main-img-button-text {
	position: relative;
	display: inline-block;
	font-size: 5rem;
	vertical-align: middle;
}

#main-bottom .main-img-button-arrow {
	position: absolute;
	top: 50%;
	right: 2.5rem;
	display: inline-block;
	width: 3.5rem;
	height: 3.5rem;
	margin-top: -1.75rem;
	background-color: #fff;
	border-radius: 50%;
}

#main-bottom .main-img-button-arrow:before {
	content: '';
	position: absolute;
	top: 1rem;
	left: .75rem;
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	border: solid 4px rgb(243,0,0);
	border-top: none;
	border-left: none;
	transform: rotate(-45deg);
}


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

	#main-bottom {
		margin-left: 1rem;
		margin-right: 1rem;
	}

	#main-bottom .main-img-button {
		padding: 1rem;
		font-size: 1rem;
	}

	#main-bottom .main-img-button-title {
		font-size: 1rem;
	}

	#main-bottom .main-img-button-text {
		font-size: 2rem;
	}

	#main-bottom .main-img-button-arrow {
		display: none;
	}

}


/* ! footer
----------------------------------------------- */

footer {
	position: relative;
	padding-top: 9px;
	line-height: normal;
	background: rgb(0,38,104);
}

footer:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background-image:
	linear-gradient( 180deg, rgba(255,255,255,1), rgba(255,255,255,1) 1px, rgba(204,204,204,1) 7px, transparent 7px ),
	linear-gradient( 180deg, rgba(255,255,255,1) 8px, transparent 8px ),
	linear-gradient( 180deg, rgba(0,52,146,1) 9px, rgba(0,36,100,1) 36px, transparent 36px ),
	linear-gradient( 180deg, rgba(19,78,180,1) 37px, transparent 37px ),
	linear-gradient( 180deg, rgba(15,60,139,1) 38px, rgba(15,66,152,1) 42px, transparent 42px ),
	linear-gradient( 180deg, rgba(16,66,152,1) 43px, transparent 43px ),
	linear-gradient( 180deg, rgba(19,77,178,1) 44px, rgba(0,38,104,1) 100% );
}

/* #footer-copy */
#footer-copy {
	position: relative;
	width: 845px;
	margin: 0 auto;
	padding: 0 15px;
	text-align: right;
	color: #fff;
	line-height: 27px;
}

#footer-copy:before {
	content: '';
	position: absolute;
	top: 0;
	left: -10px;
	height: 200px;
	width: 10px;
	background-image:
	linear-gradient(270deg,
	rgba(0,0,0,.3),
	rgba(0,0,0,0) 100%);
}

#footer-copy:after {
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
	height: 200px;
	width: 10px;
	background-image:
	linear-gradient(90deg,
	rgba(0,0,0,.3),
	rgba(0,0,0,0) 100%);
}

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

	#footer-copy {
		width: 100%;
	}

	#footer-copy:before,
	#footer-copy:after {
		display: none;
	}
}

/* #footer-main */
#footer-main {
	position: relative;
	width: 845px;
	margin: 0 auto;
	padding: 0 15px;
	padding-top: 2rem;
	color: #fff;
}

#footer-main .footer-seo {
	margin-bottom: .5rem;
	font-weight: normal;
}

#footer-main .footer-logo {
	margin-bottom: 1rem;
}

#footer-main .footer-access {
	margin-bottom: .5rem;
}

#footer-main .footer-access ul li {
	display: block;
	margin-bottom: .25rem;
}

#footer-main .footer-access ul li ul {
	display: table;
}

#footer-main .footer-access ul li ul li {
	display: table-cell;
}

#footer-main .footer-access ul li ul li:nth-child(1) {
	width: 4rem;
}

#footer-main .footer-access ul li ul li:nth-child(3) {
	width: 7rem;
}

#footer-main .footer-inq {
	margin-bottom: 1rem;
}

#footer-main .footer-inq ul li {
	display: inline-block;
	margin-right: 1rem;
}

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

	#footer-main {
		width: 100%;
	}

}

/* #footer-banner */
#footer-banner {
	position: relative;
	width: 845px;
	margin: 0 auto;
	padding: 0 15px;
}

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

	#footer-banner {
		width: 100%;
		padding-bottom: 200px;
	}

}

/* #tbnrlink */
#tbnrlink {
	clear:both;
	margin: 10px auto;
	margin-bottom: 0;
	overflow: hidden;
}

#tbnrlink ul {
	margin-left:-7px;
}

#tbnrlink ul li {
	float:left;
	padding-bottom: 7px;
	padding-left: 7px;
	list-style:none;
}

#tbnrlink ul li.end {
	padding-right: 0;
}

#tbnrlink a {
	display: inline-block;
	background-color: #fff;
}

#tbnrlink a img {
	vertical-align: bottom;
}

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

	#tbnrlink ul {
		margin-left: -2%;
	}

	#tbnrlink ul li {
		width: 50%;
		padding-left: 2%;
		text-align: center;
	}

}


/* ! body.page
----------------------------------------------- */


/* #header-navi */
body.page #header-navi {
	border-bottom: solid 5px rgb(0,155,228);
}

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

	body.page #header-navi {
		border-bottom-width: 3px;
	}

}


/* main */

body.page main > h2 {
	position: relative;
	margin: 3rem 0;
	padding: 1rem;
	padding-left: 6rem;
	font-size: 3rem;
	color: #fff;
	background-color: rgb(0,155,228);
	border: solid 2px rgb(160,217,255);
	border-radius: 8px;
	vertical-align: middle;
}

body.page main > h2:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 2rem;
	display: inline-block;
	width: 30px;
	height: 76px;
	background-image: url(../images/original_water_7.png);
	background-repeat: no-repeat;
	background-size: contain;
}

body.page main > div {
	margin: 1rem 0;
	margin-bottom: 5rem;
}

body.page main p {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	line-height: normal;
}

body.page main dl {
	display: table;
	width: 100%;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	line-height: normal;
}

body.page main dt {
	display: table-cell;
	width: 20%;
	font-weight: bold;
	color: rgb(0,155,228);
}

body.page main dt:before {
	content: '●';
}

body.page main dd {
	display: table-cell;
}

body.page main img {
	max-width: 100%;
}

body.page .table-wapper {
	margin-bottom: 3rem;
	overflow-x: auto;
	scroll-behavior: smooth;
}

body.page table {
	width: 100%;
}

body.page table thead th {
	padding: 1rem;
	font-size: 1.5rem;
	line-height: normal;
	text-align: left;
	border: #fff 2px solid;
}

body.page table thead th {
	white-space: nowrap;
	color: #fff;
	background-color: #f39800;
}

body.page table tbody th,
body.page table tbody td {
	padding: 1rem;
	font-size: 1.5rem;
	line-height: normal;
	text-align: left;
	border: #fff 2px solid;
}

body.page table tbody th {
	white-space: nowrap;
	color: #fff;
	background-color: #f39800;
}

body.page table tbody td {
	background-color: #f1f1f1;
}


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

	body.page main h2 {
		margin: 2rem 1rem;
		padding-left: 2.5rem;
		font-size: 2rem;
	}

	body.page main h2:before {
		left: .75rem;
		bottom: auto;
		top: 50%;
		width: 15px;
		height: 38px;
		margin-top: -19px;
	}

	body.page main > div {
		margin-left: 1rem;
		margin-right: 1rem;
		margin-bottom: 3rem;
	}

	body.page main dl {
		display: block;
	}

	body.page main dt {
		display: block;
		width: 100%;
	}

	body.page main dd {
		display: block;
	}

}


/* ! body.spec
----------------------------------------------- */

body.spec h3 {
	margin: 3rem 0;
	padding: 1rem;
	font-size: 3rem;
	color: #fff;
	background-color: rgb(0,155,228);
	border: solid 2px rgb(160,217,255);
	border-radius: 8px;
	text-align: center;
	vertical-align: middle;
}

#main-spec-1 {
}

#main-spec-1 p {
	font-size: 1.75rem;
	font-weight: bold;
}

#main-spec-1 p:nth-child(1) {
	font-size: 2.5rem;
	color: #006ebc;
}

#main-spec-1 p:nth-child(2) {
	text-align: center;
}

#main-spec-1 p:nth-child(3) {
	font-size: 3.5rem;
	text-align: center;
	color: #e94609;
}

#main-spec-1 p:nth-child(4) {
	text-align: center;
}

#main-spec-2 p {
	font-size: 1.75rem;
	font-weight: bold;
}

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

	body.spec h3,
	#main-spec-2 {
		width: 80%;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	body.spec h3 {
		margin: 2rem 1rem;
		font-size: 2rem;
	}

}

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

	#main-spec-1 p {
		font-size: 1.5rem;
	}

	#main-spec-1 p:nth-child(1) {
		font-size: 1.75rem;
	}

	#main-spec-1 p:nth-child(3) {
		font-size: 2.25rem;
	}

	#main-spec-2 p {
		font-size: 1.5rem;
	}

}


/* ! body.flow
----------------------------------------------- */

#main-flow-1 {
}

#main-flow-1 p:nth-child(1) {
	text-align: center;
}


/* ! body.price
----------------------------------------------- */

body.price h3 {
	margin: 1rem 0;
	font-size: 2rem;
	font-weight: bold;
	color: #006ebc;
}

body.price h3:before {
	content: '■';
}

body.price table tbody th,
body.price table tbody td {
	padding: 0.8rem 0.5rem;
	box-sizing: border-box;
}

body.price table thead th {
	width: 31%;
	text-align: center;
	vertical-align: middle;
}

body.price table thead th:nth-child(1) {
	width: 7%;
}

body.price table tbody th {
	text-align: center;
	vertical-align: middle;
}

body.price table tbody td {
	font-size: 1.5rem;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

body.price table tbody td .hontai_price {
	font-size: 1.2rem;
}

body.price table tbody td strong {
	color: #f00;
}

body.price table tbody td strong:nth-child(2) {
	display: block;
	font-size: 1rem;
	text-align: center;
}

#main-price-1 {
	margin-bottom: 5rem;
}

#main-price-1 > div {
	display: table;
	width: 100%;
}

#main-price-1 > div > div {
	display: table-cell;
	padding: 2rem .5rem;
	font-size: 1.5rem;
	text-align: center;
	vertical-align: middle;
}

#main-price-1 > div > div:nth-child(1) {
	width: 50%;
	background-color: #fff3df;
	border: solid 3px #f39800;
}

#main-price-1 > div > div:nth-child(2) {
	width: 10%;
}

#main-price-1 > div > div:nth-child(3) {
	width: 40%;
	background-color: #fff3df;
	border: solid 3px #f39800;
}

#main-price-1 > div > div:nth-child(1) > div {
	display: inline-block;
}

#main-price-1 > div > div:nth-child(1) > div:nth-child(odd) {
	font-weight: bold;
}

#main-price-1 > div > div:nth-child(1) > div:nth-child(even) {
	padding: 0 .5rem;
}

#main-price-1 > div > div:nth-child(3) > div {
	display: inline-block;
}

#main-price-1 > div > div:nth-child(3) > div:nth-child(1) {
	font-weight: bold;
}

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

	body.price h3 {
		margin: 1rem 1rem;
		font-size: 1.75rem;
	}

	#main-price-1 > div > div {
		padding: 0 .5rem;
		font-size: 1.25rem;
	}

	#main-price-1 > div > div:nth-child(1) > div {
		display: block;
		padding: 1rem 0;
	}

	#main-price-1 > div > div:nth-child(3) > div {
		display: block;
		padding: .5rem 0;
	}

}


/*20190111 トップに料金表追加*/

#top-price h3 {
	margin: 1rem 0;
	font-size: 2rem;
	font-weight: bold;
	color: #006ebc;
}

#top-price h3:before {
	content: '■';
}

#top-price table thead th {
	width: 31%;
	text-align: center;
	vertical-align: middle;
}

#top-price table thead th:nth-child(1) {
	width: 7%;
}

#top-price table tbody th {
	text-align: center;
	vertical-align: middle;
}

#top-price table tbody td {
	font-size: 1.5rem;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

#top-price table tbody td .hontai_price {
	font-size: 1.2rem;
}


#top-price table tbody td strong {
	color: #f00;
}

#top-price table tbody td strong:nth-child(2) {
	display: block;
	font-size: 1rem;
	text-align: center;
}

#top-price .table-wapper {
	margin-bottom: 5rem;
	overflow-x: auto;
	scroll-behavior: smooth;
}

#top-price table {
	width: 100%;
}

#top-price table thead th {
	padding: 1rem;
	font-size: 1.5rem;
	line-height: normal;
	/*text-align: left;*/
	border: #fff 2px solid;
}

#top-price table thead th {
	white-space: nowrap;
	color: #fff;
	background-color: #f39800;
}

#top-price table tbody th,
#top-price table tbody td {
	padding: 0.8rem 0.5rem;
	font-size: 1.5rem;
	line-height: normal;
	/*text-align: left;*/
	border: #fff 2px solid;
}

#top-price table tbody th {
	white-space: nowrap;
	color: #fff;
	background-color: #f39800;
}

#top-price table tbody td {
	background-color: #f1f1f1;
}

#top-price > h2 {
	position: relative;
	margin: 3rem 0;
	padding: 1rem;
	padding-left: 6rem;
	font-size: 3rem;
	color: #fff;
	background-color: rgb(0, 155, 228);
	border: solid 2px rgb(160, 217, 255);
	border-radius: 8px;
	vertical-align: middle;
}

#top-price > h2:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 2rem;
	display: inline-block;
	width: 30px;
	height: 76px;
	background-image: url(../images/original_water_7.png);
	background-repeat: no-repeat;
	background-size: contain;
}

#top-price p {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	line-height: normal;
}


@media screen and (max-width : 639px) {
	#top-price main h2 {
		margin: 2rem 1rem;
		padding-left: 2.5rem;
		font-size: 2rem;
	}

	#top-price main h2:before {
		left: .75rem;
		bottom: auto;
		top: 50%;
		width: 15px;
		height: 38px;
		margin-top: -19px;
	}

	#top-price main > div {
		margin-left: 1rem;
		margin-right: 1rem;
		margin-bottom: 3rem;
	}

	#top-price main dl {
		display: block;
	}

	#top-price main dt {
		display: block;
		width: 100%;
	}

	#top-price main dd {
		display: block;
	}

	#top-price h3 {
		margin: 1rem 1rem;
		font-size: 1.75rem;
	}
	
	#top-price h2 {
		margin: 2rem 1rem;
		padding-left: 2.5rem;
		font-size: 2rem;
	}

	#top-price h2:before {
		left: .75rem;
		bottom: auto;
		top: 50%;
		width: 15px;
		height: 38px;
		margin-top: -19px;
	}

	#top-price > div {
		margin-left: 1rem;
		margin-right: 1rem;
		margin-bottom: 3rem;
	}

	#top-price dl {
		display: block;
	}

	#top-price dt {
		display: block;
		width: 100%;
	}

	#top-price dd {
		display: block;
	}
	
}

/* 20190409 */

#main-design #main-spec-2 p {
	margin-bottom: 4rem;
	line-height: normal;
	text-align: center;
	}

#main-design #main-spec-2 p span {
	font-size: 2.5rem;
}

#Production_results {
position: relative;
margin-bottom: 5rem;
border: solid 2px rgb(160,217,255);
border-radius: 8px;
padding: 15px;
}

#Production_results h3 {
	margin: 1rem 0;
	font-size: 2rem;
	font-weight: bold;
	color: #006ebc;
}

#Production_results ul {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	line-height: normal;
	list-style-type: disc;
	margin-left: 2em;
}

.taC {
	text-align: center !important;
}


@media screen and (max-width: 639px) {
	
	#main-design {
		margin-left: 1rem;
		margin-right: 1rem;
	}
	
	#main-design #main-spec-2 p span {
		font-size: 2rem;
	}
	
	#Production_results {
	margin-left: 1rem;
	margin-right: 1rem;
	padding: 10px 5px;
	}
	
	#Production_results h3 {
		margin: 1rem 1rem;
		font-size: 1.75rem;
}
	
	#Production_results ul {
		
	}
	
}


.youtube_box {
	width: 100%;
	max-width: 640px;
	margin: 30px auto;
}

.youtube_box_in {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube_box_in iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}


/**/


/* =====================================
ｆloating_banner
===================================== */

#sidelink {
    display: block;
    position: fixed;
    z-index: 3800;
}


@media print, screen and (min-width: 829px){
	#sidelink {
		top: 60%;
		right: 0;
		width: 280px;
	}
	#sidelink a img {
		margin: 1px 0;
		width: calc(100% - 4px);
		border: 2px solid #6ec900;
	}
}

@media print, screen and (max-width: 828px){
	#sidelink {
		bottom: 10px;
		left: 25%;
		right: 25%;
		width: 50%;
		min-width: 280px;
	}
	#sidelink a {
	}
	#sidelink a img {
		width: calc(100% - 4px);
		border: 2px solid #6ec900;
	}
	.switch {
		/*width: 260px;*/
		width: 100%;
	}

	.footer-link {
	        padding: 10px 10px 270px;
	}
}

@media print, screen and (max-width: 640px){
	#sidelink {
		left: 15%;
		right: 15%;
		width: 70%;
		max-width: 250px;
	}
	.footer-link {
	        padding: 10px 10px 220px;
	}
}