/*-----------------------------------------------

	notice

-----------------------------------------------*/
/* ===============================================
# header
=============================================== */
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	gap: 2rem;
	background-color: #fff;
	border-bottom: 4px solid #1178C1;
	z-index: 1000;
	}
	#header h1{
	max-width: 257px;
	width: 23%;
	}
	#header .header__content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #eee;
	padding: 20px 4% 25px;
	gap: 20px;
	}
	#header__nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	}
	#header__nav li{
	font-size: 14px;
	line-height: 1.5em;
	font-weight: bold;
	text-align: center;
	}
	#header__nav li a{
	display: block;
	position: relative;
	}
	#header__nav li a::after{
	content: "";
	background-image: url("https://www.kobayashi.co.jp/assets/images/common/ico/ico_arrow_b_blue_01.svg");
	background-size: contain;
	background-repeat: no-repeat;
	width: 10px;
	height: 10px;
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	}
	#header__nav li a br{
		display: none;
	}
	@media only screen and (min-width:768px) and (max-width:1100px) {
		#header__nav li a br{
			display: block;
		}
	}
	.header__tel-content{
	padding: 15px 4%;
	background-color: #eef7ff;
	display: flex;
	justify-content: center;
	gap: 20px;
	}
	.header__tel-content .btn p {
		font-size: 1.2rem;
		text-align: center;
		line-height: 1.5em;
	}
	.header__tel-content .btn small {
		font-weight: normal;
		font-size: 1rem;
		text-align: center;
		line-height: 1.5em;
	}
	.btn{
	background-color: #1178c1;
	color: #fff;
	border-radius: 10px;
	font-weight: bold;
	display: block;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 330px;
	width: calc((100% - .5em) / 3);
	gap: .25rem;
	}
	.header__tel-content > div.btn:nth-of-type(1) {
	background-color: #1178c1;
	color: #fff;
	}
	.header__tel-content > div.btn:nth-of-type(2) {
	background-color: #1178c1;
	color: #fff;
	}
	.btn small{
	font-size: 14px;
	}
	.btn b{
	font-size: 1.5rem;
	position: relative;
	line-height: 1em;
	}
	.btn span {
		font-weight: normal;
	}
	.btn a {
		text-align: center;
	}

	#ham{
	width: 8vw;
	height: 8vw;
	cursor: pointer;
	z-index: 1010;
	display: none;
	}
	#ham > span{
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
	}
	#ham span span,
	#ham > span::before,
	#ham > span::after {
	content: "";
	width: 100%;
	height: 0.3rem;
	background-color: #1178c1;
	border-radius: 100px;
	position: absolute;
	display: block;
	left: 50%;
	transition: .3s;
	}
	#ham span span{
	top: 50%;
	transform: translate(-50%);
	}
	#ham > span::before{
	top: 20%;
	transform: translateX(-50%);
	}
	#ham > span::after{
	top: 80%;
	transform: translateX(-50%);
	}
	#ham.active span span{
	top: 50%;
	transform: translate(-50%) rotate(180deg);
	opacity: 0;
	}
	#ham.active > span::before{
	top: 50%;
	transform: translate(-50%) rotate(225deg);
	}
	#ham.active > span::after{
	top: 50%;
	transform: translate(-50%) rotate(135deg);
	}
	#totop-close{
	display: none;
	width: 8vw;
	margin: 0 0 0 auto;
	position: absolute;
	top: -4vw;
	right: 2%;
	cursor: pointer;
	}
	.btn p.link {
		position: relative;
		text-decoration: underline;
	}
	.btn p.link:after {
		background: no-repeat left top / contain;
		content: '';
		display: inline-block;
		pointer-events: none;
		background-image: url(/assets/images/common/ico/ico_blank_white_01.svg);
		height: 10px;
		width: 10px;
		margin-left: 5px;
	}
	@media only screen and (min-width:768px) and (max-width:1100px) {
		#header__nav {
			gap: 11px;
	}	
	#header__nav li {
		font-size: 12px;
	}
		#header__tel-content div.btn p>br {
			display: none;
		}
		.header__tel-content .btn p {
			font-size: 1rem;
			line-height: 1.3em;
		}
		.header__tel-content .btn small {
			font-size: 1rem;
			line-height: 1.3em;
		}
		.btn b {
			font-size: 1.2rem;
			line-height: 1.5em;
		}
		.btn {
			padding: 5px;
		}
	}
	.header__tel-content > div.btn:nth-of-type(3) small{
		text-align:left;
		text-indent: -1em;
		padding-left: 1em;
	}
	@media only screen and (min-width:768px)  {
	.header__tel-content > div.btn:nth-of-type(3) {
	width: calc((100% - .5em) * 0.28);
	}
	.header__tel-content > div.btn:nth-of-type(1) {
	width: calc((100% - .5em) * 0.375);
	}
	.header__tel-content > div.btn:nth-of-type(2) {
	width: calc((100% - .5em) *0.36);
	}
		}
	@media only screen and (max-width:767px) {
	#header .header__content {
	padding: 4vw 4%;
	}
	#header h1 {
		width: 50%;
	  }
	#header__tel-content.--delete{
	display: none;
	}
	#header__nav{
	position: fixed;
	top: -100%;
	left: 0;
	flex-direction: column;
	justify-content: flex-start;
	z-index: 999;
	background-color: #fff;
	width: 100%;
	height: 100%;
	gap: 0;
	padding: 20vw 4%;
	transition: .3s;
	z-index: -1;
	}
	#header__nav.active{
	top: 0;
	}
	#header__nav li{
	font-size: max(14px,3.2vw);
	border-bottom: 1px solid #ddd;
	width: 100%;
	text-align: left;
	}
	#header__nav li a{
	padding: 3vw 0;
	}
	#header__nav li a::after{
	background-image: url("https://www.kobayashi.co.jp/assets/images/common/ico/ico_arrow_r_blue_02.svg");
	height: 2.66667vw;
	width: 1.73333vw;
	bottom: auto;
	top: 50%;
	left: auto;
	right: 0;
	transform: translateY(-50%);
	}
	.header__tel-content{
	position: fixed;
	bottom: 0;
	left: 0;
	border-bottom: 0;
	flex-direction: column;
	width: 100%;
	padding: 0;
	gap: 0;
	z-index: -2;
	}
	.btn{
	max-width: 100%;
	width: 100%;
	border-radius: 0;
	border-bottom: 1px solid #eee;
	}
	.btn small {
	font-size: max(12px,3.2vw);
	}
	.btn b{
	font-size: 5.86667vw;
	position: relative;
	line-height: 1.5em;
	margin: 0;
			font-weight: bold;
	}
	#ham{
	display: block;
	}
	#totop-close{
	display: block;
	}
	.header__tel-content .btn small {
		text-align: center;
		font-weight: normal;
		font-size: 4vw;
		line-height: 1em;
	}
	.btn {
		gap: 0;
	}
	.btn a {
		line-height: 1.25em;
	}
	.header__tel-content .btn p {
		font-size: 4vw;
		line-height: 1.2em;
	}
	.header__tel-content > div.btn:nth-of-type(2) p {
	margin-bottom: 8px;
	}
	.header__tel-content > div.btn:nth-of-type(2) b {
	line-height: 1.2em;
	}
.btn p.link {
	font-size: 5.86667vw;
} 
	}
/* ===============================================
# 共通
=============================================== */
  .pc {
    display: none;
  }
  .sp {
    display: table;
  }
  .-indent {
	text-indent: 1em;
  }
.num-mark > li {
  position: relative;
  padding-left: 1.5em;
  counter-increment: num-mark;
}
.num-mark > li::before {
  position: absolute;
  content: counter(num-mark)".";
  left: 0;
}
.num-mark.-bold > li::before {
  font-weight: bold;
}
.num-mark-blanket > li {
  position: relative;
  padding-left: 2em;
  counter-increment: num-mark-blanket;
}
.num-mark-blanket > li::before {
  position: absolute;
  content: "（"counter(num-mark-blanket)"）";
  left: 0;
}
.num-mark-blanket.-bold > li::before {
  font-weight: bold;
}
.kana-mark > li {
  position: relative;
  padding-left: 2em;
  counter-increment: kana-mark;
}
.kana-mark > li::before {
  position: absolute;
  content: counter(kana-mark,katakana)".";
  left: 0;
}
.kana-mark.-bold > li::before {
  font-weight: bold;
}
.GlobalWrapper.-onLocalNavigationLv2 {
padding-top: 20vw;
}
.GlobalFooter {
border-top: none;
}
.GlobalFooter__utilityListLink.ModuleLink {
color: #313131;
}
.dl01 {
display: flex;
flex-direction: column;
}
.dl01 > dt {
font-weight: normal;
}
.ModuleTableWrap .ModuleTable {
border-collapse: collapse;
}
.ModuleTable {
	margin: 0 auto;
}
.ModuleTable tr,
.ModuleTable th ,.ModuleTable td{
  font-weight: normal;
  border: 1px solid #313131 !important;
}
.ModuleTable th {
  text-align: center;
}
.ModuleTable th.lot-num {
  width: 20%;
  vertical-align: middle;
}
.ModuleTable th.lot-num span {
	writing-mode: vertical-rl;
	white-space: pre;
	display: inline-block;
}
.ModuleTable tbody th {
background-color: #fff;
}
.ModuleTableWrap .ModuleTable tr th,
.ModuleTableWrap .ModuleTable tr td {
border: 1px solid #313131;
}
.ModuleTable tr:last-child th, .ModuleTable.-separate tr:last-child td {
border-bottom-color: #313131;
}
.formbtn b {
	display: inline;
}
.formbtn a {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.formbtn {
	margin: 1rem 0;
	text-align: center;
	width: fit-content;
}
.ModuleBoxBorder03.payment__caution {
    border: .25em solid #e94609;
    padding: 3vw;
}
.payment__caution > P {
	color: #e94609;
	font-weight: bold;
}
@media print, (max-width: 767px) {
.ModuleTable th.lot-num {
  font-size: 3.86667vw;
}
.ModuleTable tbody th.thText {
  font-size: 3.86667vw;
}
.formbtn {
	margin: 1.5rem auto;
}
.formbtn span {
	font-size: 3.2vw;
}
}
@media print, (min-width: 768px) {
  .pc {
    display: table;
  }
  .sp {
    display: none;
  }
.GlobalWrapper.-onLocalNavigationLv2 {
padding-top: 260px;
}
.dl01 {
display: flex;
flex-direction: row;
}
}

#header .aside__btn{
	display:none;
}
@media screen and (max-width: 767px) {
	#header .aside__btn{
		display:block;
		font-size: 4.6vw;
		background: #1178c1;
		color: #fff;
		position: fixed;
		z-index: 401;
		cursor: pointer;
		transition: .8s;
		text-align: center;
	}
	#header .aside__btn:after{
		position: absolute;
	    background-image: url(/assets/images/common/ico/ico_arrow_r_white_01.svg);
	    top: 50%;
	    right: 5vw;
	    content: "";
	    width: 5vw;
	    height: 5vw;
	    display: block;
	    background-size: contain;
	    transform: translateY(-50%) rotate(-90deg);
	}
	#header .aside__btn.active:after{
	    transform: translateY(-50%) rotate(90deg);
	}
	#header .aside__btn span{
		transform: rotate(.05deg);
	}
	#header .aside__btn span .txt_small{
		font-size: 3vw;
	}
	#header .aside__btn{
		width: 90%;
		border-radius: 5vw 5vw 0 0;
		padding: 3vw 1vw;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		line-height: 5.6vw;
	}
	#header.--hidden .aside__btn{
		bottom: -100%;
	}
	#header #header__tel-content {
	    bottom: -100%;
		transition: .8s;
		padding-bottom: 20vw;
		background: #1178c1;
	}
	#header #header__tel-content.--active {
		bottom: 0;
	}
	.ModuleSection.-contact {
		padding-bottom: 10.66667vw;
		padding-top: 10.66667vw;
	}
	.GlobalFooter {
		margin-bottom: 25vw;
	}

}