@charset "utf-8";
/*-----------------------------
	index.html style
	created: 2022.01.19
	updated: 2022.07.08
-------------------------------*/
#wrapper,
header,
footer { max-width: 1250px; }

#contents {
	max-width: 1250px;
	margin: 0 auto;
}

/* title */

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

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

#title h1 > span:last-child {
	white-space: nowrap;
}

/* title navigation */
#title nav ul {
    display: flex;
    align-items: bottom;
    column-gap: 10px;
}

#title nav ul li,
#title nav ul li a { display: block; height: 95px; text-decoration: none; color: white;}

#title nav ul li#toHome { background: url("../../common/images/Top.png") no-repeat top center;}

#title nav ul li#toOven { 
    background: url("../../Furnace-Product-Temperature/images/oven_logo.png") no-repeat top center;
    background-size: 60px 60px;
    text-align: center;
}

#title nav ul li#toOven a {
    display: flex;
    align-items: flex-end;
}


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

.breadcrumbs ul {
	list-style: none;
    display: inline-flex;
    gap: 10px 0.5em;
    flex-wrap: wrap;
}

.breadcrumbs ul li::after {
	content: " > ";
}

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

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

.breadcrumbs ul li a:hover,
.breadcrumbs ul li a:active {
    color: darkblue;
	text-decoration: underline;
}


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

/* links */
.btngroup ul {
	max-width: 100%;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 10px;
}

.btngroup ul li {
	width: 104px;
	height: 74px;
}

.btngroup ul li a {
	display: block;
	text-decoration: none;
	height: 74px;
}

.btngroup ul li a span {
	display: none;
	line-height: 1.5;
	font-size: 0.64rem;
	color: white;
	cursor: pointer;
	text-shadow: 1px 1px 4px black;
	padding-left: 1.1rem;
	text-indent: -1.1rem;
}

.attention {
	border-radius: 5px;
	background-color: #262626;
	display: flex;
	align-items: center;
	padding: 0.5rem;
}

.attention p {
	color: white;
	line-height: 1.5;
}

.blank {
	width: auto;
}

/* 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;
}


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

	/* title */
	#title {
		flex-wrap: wrap;
	}
	
	#title nav {
		margin-left: auto;
	}
	
	/* links */
	.btngroup {
		overflow-x: auto;  /* 横スクロールの指定 */
		white-space: nowrap;  /* 横スクロールの指定 */
		overflow-scrolling: touch;  /* スクロールを滑らかにする */
		-webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */
		margin-bottom: 1rem;
	}
	
	.btngroup h3,
	.btngroup h4,
	.btngroup h5,
	.btngroup ul li,
	.btngroup ul li a {
		height: auto;
	}

	.btngroup ul {
		flex-wrap: nowrap;
	}
	
	.btngroup ul li,
	.btngroup ul li a {
		width: 124px;
	}
	
	.btngroup ul li a span {
		display: block;
		white-space: normal;
	}
	
	.btngroup::after {
		padding-bottom: 20px;
	}
	
	.group {
		overflow-x: auto;
		white-space: nowrap;
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
		margin-bottom: 1rem;
	}
	
}

/* -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;
	}

    /* breadcrumbs */
    .breadcrumbs ul li a span { display: none;}

}
