@charset "utf-8";
/*-------------------------
	campaign style
	created: 2022.07.28
	updated: 2022.07.30
---------------------------*/
#contents {
	max-width: 1250px;
	margin: 0 auto;
}

#themeColor {
	border-top: 3px solid white;
	height: 28px;
	background: #ff0000;
	background: -moz-linear-gradient(-45deg,  #ff0000 0%, #ffc000 15%, #00b050 27%, #0070c0 40%, #009999 54%, #c55a11 67%, #ffe699 76%, #7030a0 88%, #bf9000 100%);
	background: -webkit-linear-gradient(-45deg,  #ff0000 0%,#ffc000 15%,#00b050 27%,#0070c0 40%,#009999 54%,#c55a11 67%,#ffe699 76%,#7030a0 88%,#bf9000 100%);
	background: linear-gradient(135deg,  #ff0000 0%,#ffc000 15%,#00b050 27%,#0070c0 40%,#009999 54%,#c55a11 67%,#ffe699 76%,#7030a0 88%,#bf9000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#bf9000',GradientType=1 );
}

/* title */

#title {
	width: 100%;
	height: 110px;
	padding: 0 25px;
	background-color: #262626;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#title h1 {
	display: flex;
	align-items: center;
	color: white;
	column-gap: 2rem;
}

#title h1 img {
	max-width: 90px;
	height: auto;
}

#title h1 span {
	line-height: 1.5;
	white-space: pre-line;
	max-width: 30rem;
}

#title h1 span.clr_yellow {
	color: gold;
}

#title h1 span.clr_red {
	color: #FF161A;
}


/* title navigation */

#title nav ul {
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	column-gap: 1.5rem;
}

#title nav ul li a {
	display: block;
	max-height: 88px;
}


/* breadcrumbs */
.breadcrumbs {
	margin: 20px 20px 15px;
}

.breadcrumbs ul {
	list-style: none;
	display: flex;
}

.breadcrumbs ul li::after {
	white-space: pre-wrap;
	content: " > ";
}

.breadcrumbs ul li:last-child::after {
	content: "";
}

.breadcrumbs ul li a {
	text-decoration: none;
	color: #FF161A;
}

.breadcrumbs ul li a:hover {
	text-decoration: underline;
}


/* container */
.container {
	width: 100%;
}

/* allow box */
.arrow_box {
	position: relative;
	background: white;
	border: 2px solid gray;
	border-radius: 8px;
	box-shadow: 1px 1px 5px dimgray;
	padding: 10px 15px;
	line-height: 1.5;
}

.arrow_box::after, .arrow_box::before {
	right: 100%;
	top: 30%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box::after {
	border-color: rgba(255, 255, 255, 0);
	border-right-color: white;
	border-width: 8px 16px 8px 0;
	margin-top: -15px;
}
.arrow_box::before {
	border-color: rgba(102, 102, 102, 0);
	border-right-color: gray;
	border-width: 11px 19px 11px 0;
	margin-top: -18px;
}

/*----------------
	container
-------------------*/

#contents h2,
#contents h3 {
	font-family: "Shin Go Regular";
	border-radius: 5px;
	height: auto;
	font-weight: normal;
	padding: 3px 15px;
}

#contents h2 {
	background-color: #9F9F9F;
}

#contents h3 {
	padding-left: 50px;
	margin-bottom: 2rem;
}

#contents h3.coating {
	background: url("../images/campaign2208/hart.png") no-repeat 10px center #FFF9C2;
	background-size: 35px;
}

#contents h3.test {
	background: url("../images/campaign2208/hart.png") no-repeat 10px center #B8B6EA;
	background-size: 35px;
	margin:  3rem 0 1rem;
}

#contents h3.oven {
	background: url("../images/campaign2208/hart.png") no-repeat 10px center #FFB5BE;
	background-size: 35px;
	margin:  3rem 0 1rem;
}

/* box */
.box ul li,
.box p {
	line-height: 1.5;
	font-size: 0.95rem;
}

.box table {
	line-height: 1.5;
	font-size: 0.85rem;
}


.box > .box {
	padding: 30px 20px 0;
	margin-bottom: 3rem;
}


#c01 p.attention {
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

#c01 p {
	margin-bottom: 0.8rem;
}

#c01 p:nth-child(5) {
	margin-bottom: 2rem;
}


#c02 p,
.note p{
	margin-bottom: 1rem;
}

#c02 > .box div,
.note div {
	display: flex;
	column-gap: 2rem;
}

#c02 > .box div h4,
.note div h4 {
	font-weight: normal;
	color: red;
}

#c02 > .box div ul li,
.note div ul li {
	list-style: none;
	margin-bottom: 0.5rem;
	padding-left: 2.4em;
	text-indent: -2.4em;
}

#c02 > .box > div,
.note > div {
	margin-bottom: 1rem;
}

#c02 > .box > div ul li:last-child,
.note div ul li:last-child {
	padding-left: 2.3em;
	text-indent: -1.5em;
}

#c02 .box div ul.ind3 li,
.note div ul.ind3 li {
	padding-left: 1em;
	text-indent: 0;
}


#c04 .note {
	padding: 30px 20px 0;
	margin-bottom: 2rem;
}

#c04 nav {
	margin-bottom: 3rem;
}

#c04 nav ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
}

#c04 nav ul li {
	width: 32%;
	font-size: 0.85rem;
}

#c04 nav ul li a {
	text-decoration: none;
	display: inline-block;
	padding: 5px 10px;
	margin-bottom: 0.5rem;
	width: 100%;
}

#c04 nav ul li a::before {
	content: "≫";
}

#c04 nav ul li span {
	display: block;
	color: black;
}

#c04 nav ul li:first-child a {
	background: #f7e100;
	background: -moz-linear-gradient(top,  #f7e100 0%, #ad9c2a 98%);
	background: -webkit-linear-gradient(top,  #f7e100 0%,#ad9c2a 98%);
	background: linear-gradient(to bottom,  #f7e100 0%,#ad9c2a 98%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7e100', endColorstr='#ad9c2a',GradientType=0 );
	color: black;
}

#c04 nav ul li:nth-child(2) a {
	background: #4c48cb;
	background: -moz-linear-gradient(top,  #4c48cb 0%, #232584 100%);
	background: -webkit-linear-gradient(top,  #4c48cb 0%,#232584 100%);
	background: linear-gradient(to bottom,  #4c48cb 0%,#232584 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c48cb', endColorstr='#232584',GradientType=0 );
	color: white;
}

#c04 nav ul li:last-child a {
	background: #c50018;
	background: -moz-linear-gradient(top,  #c50018 0%, #7b0002 100%);
	background: -webkit-linear-gradient(top,  #c50018 0%,#7b0002 100%);
	background: linear-gradient(to bottom,  #c50018 0%,#7b0002 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c50018', endColorstr='#7b0002',GradientType=0 );
	color: white;
}

#c04 table.basicTable {
	width: 100%;
}

#c04 table.basicTable tr:nth-child(odd) {
	background-color: #CCC;
}

#c04 table.basicTable tr:first-child {
	background-color: #333;
	color: white;
}

#c04 table.basicTable tr:nth-child(odd) td:nth-last-child(6) {
	background-color: #d9d9d9;
}

#c04 table.basicTable td:nth-last-child(3) {
	color: red;
	text-align: center;
	white-space: nowrap;
}

#c04 table.basicTable td:last-child a {
	text-decoration: none;
	display: inline-block;
}

#c04 table.basicTable td:last-child a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 1235px){
	#c04 nav ul li a {
		min-height: 3rem;
	}
}

/* -Tablet- 600px-1024px */
@media screen and (max-width: 1024px){
	

	/* title */
	#title {
		height: 220px;
		flex-wrap: wrap;
	}
	
	#title nav {
		margin-left: auto;
	}

	/* breadcrumbs */
	.breadcrumbs ul {
		overflow-x: auto;
		white-space: nowrap;
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
		margin-bottom: 1rem;
	}
	
	.breadcrumbs ul li::after {
		white-space: nowrap;
		padding-right: 0.5rem;
	}

	
	#c02 > .box div,
	.note div {
		flex-direction: column;
		gap: 1rem;
	}
	
	#c02 > .box div ul li,
	.note div ul li {
		margin-left: 1rem;
	}
	
	#c02 .box div ul.ind3 li,
	.note div ul.ind3 li {
		padding-left: 0;
	}
	
	#c04 nav ul li a {
		min-height: 3rem;
	}
	
	#contents .container h2 {
		height: auto;
		padding-top: 1px;
		padding-bottom: 1px;
	}
	
	.tableCont {
		overflow-x: auto;  /* 横スクロールの指定 */
		white-space: nowrap;  /* 横スクロールの指定 */
		overflow-scrolling: touch;  /* スクロールを滑らかにする */
		-webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */
		margin-bottom: 1rem;
	}
	
}

@media screen and (max-width: 682px){
	#c04 nav ul li a {
		min-height: 4.4rem;
	}
}

/* -SP- -599px */
@media screen and (max-width: 599px){
	
	#title h1 {
		column-gap: 30px;
	}
	
	#title h1 span {
		font-size: 1rem;
	}
	
	#title h1 > span:last-child {
		white-space: normal;
	}
			
	#title nav {
		overflow-x: hidden;
	}
	
	#title nav ul li {
		min-height: 88px;
		margin-bottom: 10px;
	}
	
	#title nav ul {
		overflow-x: auto;  /* 横スクロールの指定 */
		white-space: nowrap;  /* 横スクロールの指定 */
		overflow-scrolling: touch;  /* スクロールを滑らかにする */
		-webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */
		justify-content: flex-start;
	}

}

@media screen and (max-width: 484px){
	#c04 nav ul li a {
		min-height: 5.7rem;
	}
}
