@charset "utf-8";


/*-----------------------------------------------------------------------
 common
-----------------------------------------------------------------------*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* tag */
html {
	font-size: 62.5%;
}

.roboto {font-family: 'Roboto', sans-serif;}

.mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

body {
	font-size: 1.4em;
	font-family: "Noto Sans JP", sans-serif;
	background-color: #F5F5F5;
	color: #000000;
	line-break:strict;
	word-break:break-word;
	overflow-wrap:break-word;
	word-wrap:break-word;
}

h3 {
	letter-spacing: 0.05em;
}

.wrapper {
	font-size: 0;
	position: relative;
	/* overflow: hidden; */
}

/* common - visible */
.mbonly {
	display: none;
}

@media screen and (max-width:767px) {
	.pconly {
		display: none;
	}
	.mbonly {
		display: block;
	}
}

/*-----------------------------------------------------------------------
 header
-----------------------------------------------------------------------*/
header {
	width: 100%;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: #FFFFFF;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

header > .wrap {
	max-width: 1260px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

header > .wrap h1 {
	width: 226px;
}

header > .wrap h1 img {
	width: 100%;
}

@media screen and (max-width:767px) {
	header > .wrap h1 img {
		margin: 17px auto 3px 20px;
	}
}

header > .wrap h1 img:hover {
	opacity: 0.75;
	transition: all 0.3s;
}

header > .wrap > p {
	margin-right: auto;
	padding-left: 1.75em;
	line-height: 1.0;
	font-size: 1.3rem;
	font-weight: 300;
}

@media screen and (max-width:767px) {
	header > .wrap > p {
		width: 100%;
		margin-bottom: 17px;
		font-weight: 500;
	}
}

header > .wrap .contact {
	width: 20%;
	padding: 2em 1em;
	text-align: center;
	text-decoration: none;
	line-height: 1.0;
	font-size: 1.4rem;
	font-weight: 600;
	color: #FFFFFF;
	background-color: #000000;
}

@media screen and (max-width:767px) {
	header > .wrap .contact {
		display: none;
	}
}

header > .wrap .contact:hover {
	background-color: #E86200;
	transition: all 0.3s;
}

header > .wrap .contact img {
	height: 1.3em;
	margin-right: 1.0em;
	vertical-align: middle;
	display: inline-block;
}

header .gnav {
	width: 100%;
	padding-top: 3px;
	border-top: 1px solid #D8D8D8;
	border-bottom: 1px solid #D8D8D8;
}

@media screen and (max-width:767px) {
	header .gnav {
		display: none;
	}
}

header .gnav ul {
	width: 100%;
	margin: 0 auto;
	background-color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	list-style: none;
}

header .gnav ul li {
	width: 20%;
	max-width: 252px;
	position: relative;
	overflow: visible;
}

header .gnav ul li a {
	padding: 1.1em 0.5em;
	text-align: center;
	text-decoration: none;
	line-height: 1.0;
	font-size: 1.5rem;
	font-weight: 400;
	color: #000000;
	border-right: 1px solid #D8D8D8;
	display: block;
}

header .gnav ul li:first-child a {
	border-left: 1px solid #D8D8D8;
}

header .gnav ul li a::before {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #E86200;
	position: absolute;
	top: -3px;
	left: 0;
	opacity: 0;
}

header .gnav ul li a:hover::before,
header .gnav ul li.current a::before {
	transition: all 0.3s;
	opacity: 1;
}

/* mobile nav */
#nav-toggle,
#mobile-nav {
	display: none;
}

@media screen and (max-width:767px) {
	#nav-toggle {
		width: 68px;
		height: 68px;
		top: 10px;
		right: 10px;
        background-color: rgba(232,98,0,1.0);
		cursor: pointer;
		position: fixed;
		display: block;
		z-index: 9999;
	}
	#nav-toggle > div {
		width: 100%;
		height: 100%;
        position: relative;
        top: 0px;
        left: 0px;
	}
    
    #nav-toggle div span {
        width: 76%;
        height: 2px;
        margin-left: auto;
        margin-right: auto;
        background-color: #FFFFFF;
        display: block;
        position: relative;
        transition: all 0.2s;
    }
    
    #nav-toggle div span:nth-child(1) {top: 27%;}
    #nav-toggle div span:nth-child(2) {top: 47.5%;}
    #nav-toggle div span:nth-child(3) {top: 68%;}

	.open #nav-toggle {
		background-color: transparent;
	}

	.open #nav-toggle > div {
		background-image: url(../img/common/icon_mobile-nav_close.png);
	}
    
    .open #nav-toggle div span:nth-child(1) {width: 106%; transform: rotate(45deg); top: 49%; left: -4%;}
    .open #nav-toggle div span:nth-child(2) {display: none;}
    .open #nav-toggle div span:nth-child(3) {width: 106%; transform: rotate(-45deg); top: 47%; left: -4%;}

	#mobile-nav {
        padding-top: 80px;
		background-color: rgba(0,0,0,0.95);
		color: #FFFFFF;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 5000;
		text-align: center;
		display: flex;
		visibility: hidden;
		flex-direction: column;
		opacity: 0;
		overflow: scroll;
		/* transition: opacity .6s ease, visibility .6s ease; */
	}

	#mobile-nav .logo {
		width: 100%;
		padding: 30px 20px 35px 20px;
		text-align: left;
	}

	#mobile-nav .logo img {
		width: 60%;
	}

	#mobile-nav a {
		font-size: 2.0rem;
		display: block;
		color: #FFFFFF;
		text-decoration: none;
		padding: 1.0em 0;
		transition: color .5s ease;
	}
    
    @media screen and (max-width:390px) {
        #mobile-nav a {
            padding: 0.75em 0;
            font-size: 1.8rem;
        }   
    }
    
	#mobile-nav ul {
		width: 88%;
		margin: 0 auto;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
	}
	#mobile-nav ul li {
		width: 100%;
		padding: 0;
		border-bottom: 1px dotted #FFFFFF;
		opacity: 0;
	}
	
	#mobile-nav ul li.contact {
		background-color: rgba(232,98,0,1.0);
	}
	
	#mobile-nav ul li a:hover {
		background-color: rgba(255,255,255,0.15);
		transition: all 0.3s;
	}
	
	#mobile-nav ul li.icon a {
		width: 50%;
		/* display: inline-block; */
		display: none;
	}
	
	#mobile-nav ul li.icon a + a {
		border-left: 1px solid #FFF100;
	}
	
	#mobile-nav ul li.icon a img {
		width: auto;
		height: 1.0em;
		margin: 0 auto;
	}

	/* open */
	.open {
		overflow: hidden;
	}
	.open #mobile-nav {
		visibility: visible;
		opacity: 1;
	}
	.open #mobile-nav li {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transition: opacity .9s ease, -webkit-transform 1s ease;
		transition: transform 1s ease, opacity .9s ease;
		transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
	}
	
	/* sub menu */
	#mobile-nav .submenu-check{
		display: none;
	}
	#mobile-nav .submenu-label{
		font-size: 2.0rem;
		display: block;
		color: #FFFFFF;
		text-decoration: none;
		padding: 0.7em 0;
	}

	#mobile-nav .submenu-label span {
		width: 1.0em;
		height: 1.0em;
		margin-left: 0.5em;
	}

	#mobile-nav .submenu-label span::after {
		content: "＋";
		margin-left: 0.25em;
	}

	#mobile-nav .submenu-content {
		height: 0;
		opacity: 0;
		transition: .3s;
		visibility: hidden;
	}
	#mobile-nav .submenu-check:checked + .submenu-label + .submenu-content{
		height: auto;
		opacity: 1;
		visibility: visible;
		background-color: rgba(255, 255, 255, 0.08);
	}

	#mobile-nav .submenu-check:checked + .submenu-label span::after {
		content: "－";
	}

	#mobile-nav .submenu-content a {
		border-top: 1px solid rgba(255, 255, 255, 0.25);
		padding: 0.8em 0 !important;
		font-size: 1.6rem !important;
		display: block;
	}
    
    /* logo and gotop */
    .open #mobile-nav h1 {
        width: 180px;
        margin: 0 auto;
        text-align: center;
        color: #FFFFFF;
        display: inline-block;
    }

    .open #mobile-nav h1 a {
        text-decoration: none;
        line-height: 1.0;
        font-size: 1.7rem;
        font-weight: 500;
        color: inherit;
    }

    .open #mobile-nav h1 img {
        width: 80px;
        margin: 0 auto 17px auto;
        display: block;
    }
    
    /* contact menu */
    .open #mobile-nav .contact {
        width: 100%;
        text-align: center;
        line-height: 1.0;
        color: #FFFFFF;
    }

    .open #mobile-nav .contact .sns {
        width: 40px;
        height: 40px;
        margin: 18px 10px;
        vertical-align: middle;
        display: inline-block;
    }
    
    @media screen and (max-width:390px) {
        .open #mobile-nav .contact .sns {
            width: 32px;
            height: 32px;
            margin: 12px 10px;
        }
    }

    .open #mobile-nav .contact .sns img {
        width: 100%;
    }

    .open #mobile-nav .contact .tel {
        padding-bottom: 0.1em;
        margin-right: 0.3em;
        letter-spacing: 0.05em;
        text-decoration: none;
        font-family: "Noto Serif JP", serif;
        font-size: 4.0rem;
        font-weight: 700;
        color: #FFFFFF;
        display: inline-block;
    }
    
    @media screen and (max-width:390px) {
        .open #mobile-nav .contact .tel {
            font-size: 3.2rem;
        }
    }

    .open #mobile-nav .contact .tel img {
        height: 0.9em;
        margin-right: 0.5em;
        display: inline-block;
        position: relative;
        top: 0.1em;
    }
}

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

footer {
	width: 100%;
	padding: 60px 20px 115px 20px;
	background-color: #E86200;
}

footer > .wrap {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
footer > .wrap .footer-info {
	width: 350px;
	max-width: 80%;
	margin-bottom: 40px;
}

@media screen and (max-width:767px) {
	footer > .wrap .footer-info {
		width: 100%;
		max-width: 100%;
	}
}

footer > .wrap .footer-info .footer-logo {
	width: 201px;
	margin-bottom: 10px;
}

footer > .wrap .footer-info p {
	margin-top: 0.4em;
	line-height: 1.5;
	font-size: 1.4rem;
	font-weight: 400;
	color: #FFFFFF;
}
footer > .wrap .footer-info p .tel {
	font-size: 2.4rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}

footer > .wrap .footer-info .footer-contact {
	width: 100%;
	margin-top: 5px;
	padding-top: 12px;
	border-top: 1px solid #F09858;
}

footer > .wrap .footer-info .footer-contact a {
	width: 350px;
	max-width: 100%;
	padding: 1.0em;
	text-align: center;
	text-decoration: none;
	line-height: 1.0;
	font-size: 1.4rem;
	font-weight: 400;
	color: #000000;
	background-color: #FFFFFF;
	border-radius: 4px;
	display: block;
}

footer > .wrap .footer-info .footer-contact a:hover {
	color: #FFFFFF;
	background-color: #000000;
	transition: all 0.3s;
}

footer > .wrap .footer-info .footer-contact a img {
	height: 1.25em;
	margin-top: -0.1em;
	margin-right: 0.45em;
	vertical-align: middle;
	display: inline-block;
}

footer > .wrap .footer-nav {
	width: 100%;
	max-width: 660px;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

footer > .wrap .footer-nav ul {
	width: 33.333%;
	font-size: 1.0rem;
	font-weight: 500;
	color: #FFFFFF;
	list-style: none;
}

footer > .wrap .footer-nav ul li {
	width: 100%;
	margin-bottom: 1.25em;
	padding-left: 0.75em;
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: 300;
	background-image: url("../img/common/icon_footer-nav_cursor.png");
	background-size: auto 0.7em;
	background-position: 0% 0.5em;
	background-repeat: no-repeat;
}

@media screen and (max-width:559px) {
	footer > .wrap .footer-nav ul {
		width: 100%;
	}

	footer > .wrap .footer-nav ul li {
		margin-bottom: 0;
		border-bottom: 1px solid #F09858;
		background-position: 0% 0.9em;
	}
}

footer > .wrap .footer-nav ul li a {
	padding: 0.10em 0.25em 0.20em 0.25em;
	text-decoration: none;
	color: #FFFFFF;
	border-radius: 3px;
	display: inline-block;
}

footer > .wrap .footer-nav ul li a:hover {
	background-color: rgba(255,255,255,0.20);
	transition: all 0.3s;
}

@media screen and (max-width:559px) {
	footer > .wrap .footer-nav ul li a {
		padding: 0.5em 0.25em 0.6em 0.25em;
		display: block;
	}
}

footer > .wrap .footer-nav .copyright {
	width: 100%;
	padding-top: 0.75em;
	padding-right: 12%;
	text-align: right;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
	font-size: 1.2rem;
	font-weight: 300;
	color: #FFFFFF;
}

@media screen and (max-width:559px) {
	footer > .wrap .footer-nav .copyright {
		padding-right: 0;
	}
}


/*-----------------------------------------------------------------------
 page - common class
-----------------------------------------------------------------------*/

/* page title */
.page-title {
	width: 100%;
	height: 360px;
	max-height: 50vh;
	background-color: #E86200;
	position: relative;
	overflow: hidden;
}

.page-title::before {
	content: "";
	width: 83%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: absolute;
	z-index: 5;
	top: 0;
	left: 17%;
}

.products.page-title::before {background-image: url("../img/common/bg_pagetitle_heater-detail.jpg");}

.page-title .content {
	width: 88%;
	height: 100%;
	margin: 0 auto;
	z-index: 10;
	position: relative;
}

.page-title .content > h2 {
	padding-top: 0.9em;
	padding-bottom: 3px;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
	font-size: 8.0rem;
	font-weight: 900;
	color: #FFFFFF;
}

@media screen and (max-width:559px) {
	.page-title .content > h2 {
		font-size: 5.6rem;
	}
}

.page-title .content > p {
	margin-top: 0.5em;
	line-height: 2.7;
	font-size: 2.1rem;
	font-weight: 600;
	color: #FFFFFF;
}

@media screen and (max-width:559px) {
	.page-title .content > p {
		font-size: 1.8rem;
	}
}

.page-title .content > p span {
	padding: 0.4em 0.85em 0.5em 0.85em;
	background-color: #000000;
}

.page-title .content > p .category-icon {
	height: 1.5em;
	margin-top: -0.1em;
	vertical-align: middle;
	margin-right: 0.9em;
	display: inline-block;
}

/* bread crumb */
.breadcrumb {
	width: 100%;
	margin-bottom: 50px;
	padding: 13px 15px 13px 0;
	text-align: right;
	background-color: #FFFFFF;
	border-bottom: 1px solid #D8D8D8;
}

.breadcrumb nav {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
}

.breadcrumb nav a {
	padding: 0 1.0em;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 400;
	color: #000000;
	border-right: 1px solid #6B6B6B;
	display: inline-block;
}

.breadcrumb nav a:hover {
	color: #E86200;
}

.breadcrumb nav a:last-child {
	padding-right: 0;
	border-right: none;
}


/*-----------------------------------------------------------------------
 page - toppage
-----------------------------------------------------------------------*/

/* layout */

/* top - main image */
.top-main {
	width: 100%;
	background-color: #000000;
}

.top-main .wrap {
	width: 100%;
	min-height: calc(75vh - 127px);
	margin: 0 auto;
	background-color: #E86200;
	position: relative;
}

@media screen and (max-width:559px) {
	.top-main .wrap {
		min-height: calc(90vh - 127px);
	}
}

.top-main .wrap::after {
	content: "";
	width: 83%;
	height: 100%;
	background-image: url("../img/top/top_main-image.png");
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 0;
}

.top-main .wrap .top-catch {
	width: 100%;
	padding-left: 5%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}

.top-main .wrap .top-catch h2 {
	margin-bottom: 0.5em;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
	/* font-size: 8.0rem; */
	font-size: 4.8rem;
	font-weight: 900;
	color: #FFFFFF;
}

@media screen and (max-width:559px) {
	.top-main .wrap .top-catch h2 {
		font-size: 4.0rem;
	}
}

.top-main .wrap .top-catch h3 {
	margin-bottom: 0.5em;
	line-height: 1.0;
	font-size: 4.2rem;
	font-weight: 700;
	color: #FFFFFF;
}

.top-main .wrap .top-catch h3 span {
	line-height: 1.8;
	padding: 0.1em 0.5em 0.2em 0.5em;
	background-image: linear-gradient(90deg, #000000, #D6380C);
}

@media screen and (max-width:559px) {
	.top-main .wrap .top-catch h3 {
		font-size: 3.2rem;
	}
}

.top-main .wrap .top-catch p {
	line-height: 2.6;
	/* font-size: 2.1rem; */
	font-size: 1.7rem;
	font-weight: 600;
	color: #FFFFFF;
}

.top-main .wrap .top-catch p span {
	padding: 0.35em 0.5em 0.4em 0.5em;
	background-color: #000000;
}

@media screen and (max-width:559px) {
	.top-main .wrap .top-catch p {
		font-size: 1.4rem;
	}
}

/* top - news */
.top-news {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 65px 0;
}

.top-news > h3 {
	width: 100%;
	text-align: center;
	padding-bottom: 0.7em;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
	font-size: 4.0rem;
	font-weight: 700;
	color: #000000;
	border-bottom: 1px solid #BABABA;
}

.top-news .wrap {
	width: 100%;
	margin: 0 auto;
}

.top-news .wrap dl {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	padding: 25px 20px 0 20px;
	display: flex;
	flex-wrap: wrap;
}

.top-news .wrap dt,
.top-news .wrap dd {
	margin-top: 1.3em;
	line-height: 1.5;
	font-size: 1.5rem;
	font-weight: 500;
	color: #000000;
}

.top-news .wrap dt {
	width: 8.5em;
}

.top-news .wrap dd {
	width: calc(100% - 8.5em);
}

.top-news .wrap .btn-area {}

.top-news .wrap .btn-area {
	padding-top: 40px;
	text-align: center;
}

.top-news .wrap .btn-area a {
	width: 90%;
	max-width: 360px;
	padding: 0.75em 1.0em 0.745em 1.0em;
	text-decoration: none;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
	font-size: 1.385rem;
	font-weight: 700;
	color: #FFFFFF;
	background-color: #000000;
	display: inline-block;
}

.top-news .wrap .btn-area a:hover {
	background-color: #E86200;
	transition: all 0.3s;
}

.top-news .wrap .btn-area a img {
	width: 1.5em;
	margin-bottom: 0.15em;
	vertical-align: middle;
	height: auto;
	margin-left: 0.75em;
}

/* top - heat conduction */
.top-heatconduction {
	padding: 0 15px;
}

.top-heatconduction .wrap {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto 30px auto;
	padding: 30px 50px;
	background-color: #FFFFFF;
}

.top-heatconduction .wrap > ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}

.top-heatconduction .wrap > ul li.outline {
	width: 46%;
	padding: 15px 0;
	background-image: url("../img/top/top_heatconduction_illust_01.png");
	background-repeat: no-repeat;
	background-position: calc(100% - 35px) 50%;
	background-size: 50% auto;
}

.top-heatconduction .wrap > ul li.outline h3 {
	width: 40%;
	margin-bottom: 0.6em;
	line-height: 1.4;
	font-size: 2.6rem;
	font-weight: 500;
}

.top-heatconduction .wrap > ul li.outline p {
	width: 40%;
	line-height: 1.8;
	font-size: 1.6rem;
}

.top-heatconduction .wrap > ul li.outline p + p {
	margin-top: 0.5em;
}

.top-heatconduction .wrap > ul li.illust {
	width: 18%;
	padding: 35px 0 5px 0;
	text-align: center;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
}

.top-heatconduction .wrap > ul li.illust + .illust {
	border-left: none;
}

.top-heatconduction .wrap > ul li.illust img {
	width: 85%;
}

@media screen and (max-width:1023px) {
	.top-heatconduction .wrap {
		padding: 30px 30px;
	}
}

@media screen and (max-width:767px) {
	.top-heatconduction .wrap > ul li.outline {
		width: 100%;
		margin-bottom: 45px;
		background-position: 100% 5%;
		background-size: contain;
	}
	
	.top-heatconduction .wrap > ul li.illust {
		width: 33.33%;
	}
}

@media screen and (max-width:559px) {
	.top-heatconduction .wrap {
		padding: 20px 15px;
	}
	.top-heatconduction .wrap > ul li.outline {
		padding-bottom: 240px;
		background-position: 50% 100%;
		background-size: auto 220px;
	}
	.top-heatconduction .wrap > ul li.outline h3,
	.top-heatconduction .wrap > ul li.outline p {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	.top-heatconduction .wrap > ul li.illust {
		width: 50%;
		margin-top: 15px;
		padding-top: 15px;
		border-right: none;
	}
	.top-heatconduction .wrap > ul li.illust + .illust {
		border-right: 1px solid #000000;
		border-left: 1px solid #000000;
	}
}

/* top - order */

.top-order {
	max-width: 1260px;
	margin: 0 auto 85px auto;
	background-color: #000000;
}

.top-order .wrap {
	width: 100%;
	background-image: url("../img/top/top_bg_order.png");
	background-position: 100% 55%;
	background-repeat: no-repeat;
	background-size: 40% auto;
}

@media screen and (max-width:767px) {
	.top-order .wrap {
		background-position: 100% 100%;
		background-size: 75% auto;
	}
}

.top-order .wrap .contents {
	width: 56.5%;
	margin-right: auto;
	padding: 40px 55px 40px 55px;
}

@media screen and (max-width:767px) {
	.top-order .wrap .contents {
		width: 100%;
		padding: 60px 20px 100px 20px;
		background-color: rgba(0, 0, 0, 0.30);
	}
}

.top-order .wrap .contents h3 {
	margin-bottom: 1.0em;
	line-height: 1.0;
	text-align: center;
	font-size: 3.0rem;
	font-weight: 500;
	color: #FFFFFF;
}

.top-order .wrap .contents h3 span {
	margin-top: 1.5em;
	font-family: 'Roboto', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	color: #E86200;
	display: block;
}

.top-order .wrap .contents p {
	line-height: 1.8;
	font-size: 1.5rem;
	color: #FFFFFF;
}

.top-order .wrap .contents .btn-area {
	padding-top: 20px;
	text-align: center;
}

.top-order .wrap .contents .btn-area a {
	text-decoration: none;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
	font-size: 1.385rem;
	font-weight: 400;
	color: #FFFFFF;
	display: inline-block;
}

.top-order .wrap .contents .btn-area a:hover {
	color: #E86200;
	transition: all 0.3s;
}

.top-order .wrap .contents .btn-area a img {
	width: 25px;
	margin-bottom: 0.1em;
	vertical-align: middle;
	height: auto;
	margin-left: 0.75em;
}

/* top - products */
.top-products {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 0 105px 0;
}

.top-products > h3 {
	width: 100%;
	text-align: center;
	padding-bottom: 0.7em;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
	font-size: 4.0rem;
	font-weight: 700;
	color: #000000;
	border-bottom: 1px solid #BABABA;
}

.top-products .wrap {
	width: 100%;
}

.top-products .wrap .item-list {
	width: 100%;
	padding: 50px 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.top-products .wrap .item-list > a {
	width: 19.60%;
	text-align: center;
	text-decoration: none;
	display: block;
}

.top-products .wrap .item-list > a.solid {
	width: 21.58%;
}

@media screen and (max-width:767px) {
	.top-products .wrap .item-list {
		padding: 30px 0;
	}
	.top-products .wrap .item-list > a {
		width: 33.33% !important;
		padding: 10px;
	}
}

@media screen and (max-width:559px) {
	.top-products .wrap .item-list {
		justify-content: flex-start;
	}
	.top-products .wrap .item-list > a {
		width: 50% !important;
		padding: 10px 15px;
	}
}

.top-products .wrap .item-list a > img {
	width: 100%;
	margin-bottom: 25px;
	display: block;
}

.top-products .wrap .item-list a span {
	line-height: 1.0;
	font-size: 1.8rem;
	color: #000000;
	display: inline-block;
}

.top-products .wrap .item-list a:hover span {
	color: #E86200;
}

.top-products .wrap .item-list a span > img {
	width: 25px;
	margin-left: 1.0em;
	margin-bottom: 0.1em;
	vertical-align: middle;
}

/* top - products maker link */
.top-products .wrap .maker-link {
	width: 100%;
	padding: 15px 0;
	border: 1px solid #DBDBDB;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.top-products .wrap .maker-link p {
	width: 33%;
	padding-left: 45px;
	text-align: center;
	line-height: 1.5;
	font-size: 1.6rem;
}
.top-products .wrap .maker-link img:hover {
	 opacity: 0.5;
	transition: all 0.3s;
}

@media screen and (max-width:1023px) {
	.top-products .wrap .maker-link p {
		width: 100%;
		padding: 20px 25px 30px 25px;
	}
}

.top-products .wrap .maker-link .banner-area {
	width: 67%;
	text-align: center;
}

@media screen and (max-width:1023px) {
	.top-products .wrap .maker-link .banner-area {
		width: 100%;
	}
}

.top-products .wrap .maker-link .banner-area br {
	display: none;
}

@media screen and (max-width:767px) {
	.top-products .wrap .maker-link .banner-area br {
		display: block;
	}
}

.top-products .wrap .maker-link .banner-area a {
	padding: 0 20px;
	display: inline-block;
}

@media screen and (max-width:479px) {
	.top-products .wrap .maker-link .banner-area a {
		padding: 0 15px;
	}
}

.top-products .wrap .maker-link .banner-area a img {
	height: 69px;
}

@media screen and (max-width:767px) {
	.top-products .wrap .maker-link .banner-area a img {
		height: 80px;
	}
}

@media screen and (max-width:479px) {
	.top-products .wrap .maker-link .banner-area a img {
		height: 60px;
	}
}

/* top - products order link */

.top-products .wrap .order-misumi {
	width: 96%;
	max-width: 588px;
	margin: 30px auto 0 auto;
	padding: 0.6em 0.9em 0.5em 0.9em;
	text-align: center;
	text-decoration: none;
	font-size: 1.6rem;
	color: #000000;
	background-color: #FFFFFF;
	border-radius: 16px;
	display: block;
}

.top-products .wrap .order-misumi:hover {
	color: #FFFFFF;
	background-color: #E86200;
	transition: all 0.3s;
}


.top-products .wrap .order-misumi img {
	margin-top: 0.5em;
	margin-bottom: 0.65em;
	vertical-align: middle;
	display: inline-block;
}

/* top - about */

.top-about {
	width: 100%;
	padding-top: 30px;
	background-image: url("../img/top/top_about_bg.jpg");
	background-size: cover;
	background-position: 100% 50%;
}

.top-about .wrap {
	width: 100%;
	margin: 0;
	padding: 0 0 30px 0;
	background-image: url(../img/top/top_about_company-object_resize.png);
	background-size: 460px auto;
	background-position: 0% 100%;
	background-repeat: no-repeat;;
}

@media screen and (max-width: 767px) {
	.top-about .wrap {
		background-size: 50% auto;
	}
}

@media screen and (max-width: 559px) {
	.top-about .wrap {
		padding-bottom: 300px;
		background-size: 75% auto;
	}
}

.top-about .wrap .contents {
	margin-left: auto;
	margin-right: auto;
	padding: 40px 0;
	text-align: center;

}

@media screen and (max-width: 1279px) {
	.top-about .wrap .contents {
		padding-right: 20px;
		padding-left: 400px;
	}
}

@media screen and (max-width: 767px) {
	.top-about .wrap .contents {
		padding-left: 50%;
	}
}

@media screen and (max-width: 559px) {
	.top-about .wrap .contents {
		padding-left: 20px;
	}
}

.top-about .wrap .contents h3 {
	width: auto;
	padding-bottom: 0.65em;
	line-height: 1.1;
	font-size: 2.8rem;
	font-weight: 500;
	color: #FFFFFF;
	border-bottom: 3px double #FFFFFF;
	display: inline-block;
}

@media screen and (max-width: 559px) {
	.top-about .wrap .contents h3 {
		font-size: 2.4rem;
	}
}

.top-about .wrap .contents .banner-area {
	margin: 25px auto 0 auto;
	text-align: center;
}

.top-about .wrap .contents .banner-area a + a {
	margin-left: 10px;
}

.top-about .wrap .contents .banner-area a img {
	width: 100%;
	max-width: 460px;
}

.top-about .wrap .contents .sdgs-area {
	max-width: 460px;
	margin: 10px auto 0 auto;
	display: flex;
	justify-content: space-between;
}

.top-about .wrap .contents .sdgs-area img {
	width: 23.0%;
}

@media screen and (max-width: 479px) {
	.top-about .wrap .contents .sdgs-area {
		margin-left: auto;
		margin-right: auto;
	}
}

/* top movie */
.top-movie {
	width: 100%;
}

.top-movie .wrap {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
}

.top-movie .wrap > h3 {
	width: 100%;
	text-align: center;
	padding-bottom: 0.7em;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
	font-size: 4.0rem;
	font-weight: 700;
	color: #000000;
	border-bottom: 1px solid #BABABA;
}

.top-movie .wrap > h3 img {
	height: 0.92em;
	margin-left: 0.5em;
	margin-bottom: 0.175em;
	vertical-align: middle;
}

.top-movie .wrap .slider {
	padding: 53px 0 75px 0;
}

.top-movie .wrap .slider .slick-slide {
	padding: 0 5px;
}

.top-movie .wrap .slider .slick-slide .package {
	width: 100%;
	padding: 10px;
	background-color: #FFFFFF;
}

.top-movie .wrap .slider .slick-slide .package iframe {
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 9;
}

.top-movie .wrap .slider .slick-slide .package p {
	margin-top: 0.5em;
	min-height: 5.0em;
	line-height: 1.5;
	font-size: 1.6rem;
}

/*-----------------------------------------------------------------------
 page - products list
-----------------------------------------------------------------------*/

.products-list {
	margin-bottom: 80px;
	padding: 0 15px;
}

.products-list .wrap {
	width: 100%;
	max-width: 1290px;
	margin: 0 auto;
}

.products-list .wrap .content {
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

/* item filter */
.products-list .wrap .content .filter {
	width: 100%;
	max-width: 455px;
	margin-left: auto;
	margin-right: 15px;
	margin-bottom: 46px;
	position: relative;
}

.products-list .wrap .content .filter::after {
	content: "";
	width: 40px;
	height: 40px;
	background-color: #FFFFFF;
	background-position: 50% 50%;
	background-size: 10px auto;
	background-repeat: no-repeat;
	background-image: url("../img/common/icon_select-box_cursor.png");
	position: absolute;
	top: 2px;
	right: 2px;
	pointer-events: none;
}

.products-list .wrap .content .filter select {
	width: 100%;
	padding: 1.0em 1.25em;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	background-color: #FFFFFF;
	border: 1px solid #E3E3E3;
	appearance: none;
	cursor: pointer;
}

/* label */
.products-list .wrap .content h3 {
	width: calc(100% - 30px);
	margin: 0 auto 43px auto;
	text-align: center;
	line-height: 1.0;
	font-size: 2.6rem;
	font-weight: 700;
	position: relative;
}

.products-list .wrap .content h3::after {
	content: "";
	width: 100%;
	height: 6px;
	border: 1px solid #898989;
	position: absolute;
	top: 2.0em;
	left: 0;
}

.products-list .wrap .content .list-item-box {
	width: 33.333%;
	padding: 12px 15px;
}

@media screen and (max-width: 767px) {
	.products-list .wrap .content .list-item-box {
		width: 50%;
	}
}
@media screen and (max-width: 559px) {
	.products-list .wrap .content .list-item-box {
		width: 100%;
	}
}

@media screen and (max-width: 479px) {
	.products-list .wrap .content .list-item-box {
		padding: 10px 0px;
	}
}

.products-list .wrap .content .list-item-box + h3 {
	margin-top: 72px;
}

.products-list .wrap .content .list-item-box .box-inner {
	width: 100%;
	padding: 25px;
	border-radius: 10px;
	background-color: #FFFFFF;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

@media screen and (max-width: 479px) {
	.products-list .wrap .content .list-item-box .box-inner {
		padding: 20px;
	}
}

.products-list .wrap .content .list-item-box .box-inner .category-icon {
	width: 68px;
	height: 38px;
}

.products-list .wrap .content .list-item-box .box-inner .category-icon img {
	max-width: 100%;
}

.products-list .wrap .content .list-item-box .box-inner .featur-label {
	width: calc(100% - 78px);
	padding: 5px 0;
	text-align: right;
}

.products-list .wrap .content .list-item-box .box-inner .featur-label span {
	margin: 2px 0 2px 4px;
	padding: 0.25em 0.75em 0.35em 0.75em;
	line-height: 1.0;
	font-size: 1.1rem;
	font-weight: 400;
	background-color: #E8E8E8;
	display: inline-block;
}

.products-list .wrap .content .list-item-box .box-inner h4 {
	width: 100%;
	margin-top: 2.0em;
	margin-bottom: 0.75em;
	line-height: 1.5;
	font-size: 1.6rem;
	font-weight: 600;
}

.products-list .wrap .content .list-item-box .box-inner h4 span {
	font-size: 0.8125em;
	display: inline-block;
}

.products-list .wrap .content .list-item-box .box-inner .item-description {
	width: 52.85%;
	line-height: 1.6;
	font-size: 1.5rem;
	font-weight: 300;
}

.products-list .wrap .content .list-item-box .box-inner .item-photo {
	width: 43%;
}

.products-list .wrap .content .list-item-box .box-inner .item-photo img {
	max-width: 100%;
}

.products-list .wrap .content .list-item-box .box-inner .link-detail {
	width: 100%;
	margin-top: 18px;
	line-height: 1.0;
	font-size: 1.5rem;
	font-weight: 300;
}

.products-list .wrap .content .list-item-box .box-inner .link-detail a {
	text-decoration: none;
	color: #e86200;
}

.products-list .wrap .content .list-item-box .box-inner .link-detail a:hover {
	transition: all 0.3s;
	color: #000000;
}

.products-list .wrap .content .list-item-box .box-inner .link-detail img {
	width: 1.667em;
	margin-left: 0.6em;
	margin-bottom: 0.1em;
	vertical-align: middle;
}

/*-----------------------------------------------------------------------
 page - products item
-----------------------------------------------------------------------*/

/* layout */
.products-item {
	margin-bottom: 0px;
	padding: 0 15px;
}

@media screen and (max-width:767px) {
	.products-item {
		padding: 0 5px 0 10px;
	}
}

.products-item .wrap {
	width: 100%;
	max-width: 1370px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

@media screen and (max-width:767px) {
	.products-item .wrap {
		padding-right: 55px;
	}
}

.products-item .wrap .content {
	width: calc(100% - 110px);
	min-width: 0;
	margin-left: 55px;
	padding: 60px 80px 80px 80px;
	background-color: #FFFFFF;
	border: 1px solid #D8D8D8;
}

@media screen and (max-width:767px) {
	.products-item .wrap .content {
		width: 100%;
		margin-left: 0;
		padding: 60px;
	}
}

@media screen and (max-width:559px) {
	.products-item .wrap .content {
		padding: 45px 20px;
	}
}

.products-item .wrap .side-nav {
        width: 55px;
        padding-top: 0;
        position: sticky;
        top: 130px;
        z-index: 100;
        flex-shrink: 0;
        align-self: flex-start;
}

@media screen and (max-width:767px) {
	.products-item .wrap .side-nav {
		position: fixed;
		top: auto;
		right: 0;
		bottom: 80px;
	}
}

.products-item .wrap .side-nav .bnr {
	width: 100%;
	margin-bottom: 3px;
	padding: 15px 0;
	text-align: center;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 500;
	color: #FFFFFF;
	background-color: #E86200;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	display: block;
}

.products-item .wrap .side-nav .bnr:hover {
	opacity: 0.75;
	transition: all 0.3s;
}

.products-item .wrap .side-nav .bnr.contact {
	background-color: #000000;
}

.products-item .wrap .side-nav .bnr.no-catalog {
	background-color: #777777;
	cursor: default;
}

.products-item .wrap .side-nav .bnr.no-catalog:hover {
	opacity: 1;
	transition: none;
}

.products-item .wrap .side-nav .bnr img {
	width: 1.5em;
	margin: 0 auto 10px auto;
	display: block;
}

.products-item .wrap .side-nav .bnr span {
	writing-mode: vertical-rl;
	display: inline-block;
}

/* products intro */
.products-item-intro {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}

.products-item-intro .info {
	width: 50%;
	padding-bottom: 27px;
}

@media screen and (max-width:767px) {
	.products-item-intro .info {
		width: 100%;
	}
}

/* products intro - name */
.products-item-intro .info h2 {
	padding-bottom: 0.4em;
	line-height: 1.4;
	font-size: 3.6rem;
	font-weight: 800;
	border-bottom: 1px solid #D8D8D8;
}

@media screen and (max-width:767px) {
	.products-item-intro .info h2 {
		font-size: 2.8rem;
	}
}

/* products intro - tag */
.products-item-intro .info .tag {
	width: 100%;
	padding: 15px 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 12px;
	list-style: none;
}

.products-item-intro .info .tag li {
	width: calc(25% - 9px);
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 0.35em;
	text-align: center;
	line-height: 1.0;
	font-size: 1.5rem;
	font-weight: 400;
	border: 1px solid #E1E1E1;
}

@media screen and (max-width:979px) {
	.products-item-intro .info .tag li {
		width: auto;
	}
}

.products-item-intro .info .tag li.point {
	color: #FFFFFF;
	background-color: #000000;
	border: 1px solid #000000;
}

.products-item-intro .info .tag-type{
	padding-bottom: 4px;
}

.products-item-intro .info .tag-state{
	padding-top: 0;
}

/* products intro - copy */
.products-item-intro .info .copy {
	padding-top: 20px;
	padding-left: 30px;
	list-style: disc;
	list-style-position: outside;
}

.products-item-intro .info .copy li {
	width: 100%;
	line-height: 1.4;
	font-size: 1.8rem;
	font-weight: 600;
}

.products-item-intro .info .copy li + li {
	margin-top: 1.2em;
}

/* products intro - image */
.products-item-intro .image {
	width: 45%;
	padding-bottom: 27px;
}

@media screen and (max-width:767px) {
	.products-item-intro .image {
		width: 100%;
	}
}

.products-item-intro .image figure {
	width: 100%;
}

.products-item-intro .image figure.border {
	border: 1px solid #E1E1E1;
}

.products-item-intro .image figure + figure {
	margin-top: 20px;
}

.products-item-intro .image figure img {
	width: 100%;
}

/* products deta */
.products-item-data {
	width: 100%;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.products-item-data > h4 {
	width: 100%;
	margin-top: 40px;
	margin-bottom: 27px;
	padding: 0.5em 0.85em 0.6em 0.85em;
	line-height: 1.0;
	font-size: 1.6rem;
	font-weight: 400;
	color: #FFFFFF;
	background-color: #000000;
}

.products-item-data h4.detail {
	margin-bottom: 10px;
}

.products-item-data > h5 {
	width: 100%;
	margin-bottom: 13px;
	padding-bottom: 0.85em;
	line-height: 1.0;
	font-size: 1.6rem;
	font-weight: 500;
	border-bottom: 1px solid #C3C3C3;
}

.products-item-data > * + h5 {
	margin-top: 2.75em;
}

/* products deta - common */
.products-item-data .plane-text {
	width: 50%;
	padding-bottom: 27px;
	line-height: 1.85;
	font-size: 1.6rem;
	font-weight: 400;
}

@media screen and (max-width:767px) {
	.products-item-data .plane-text {
		width: 100%;
	}
}

.products-item-data .plane-text.small {
	font-size: 1.5rem;
	font-weight: 300;
}

.products-item-data .plane-text.full {
	width: 100%;
}

.products-item-data .plane-image {
	width: 45%;
	margin-top: 3px;
	padding-bottom: 27px;
}

@media screen and (max-width:767px) {
	.products-item-data .plane-image {
		width: 100% !important;
	}
}

.products-item-data .plane-image img {
	width: 100%;
	display: block;
}

.products-item-data .plane-image img + img {
	margin-top: 20px;
}
.products-item-data .type-image-list{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}

.products-item-data .type-image-list figure{
	width: 520px;
	max-width: 100%;
	margin: 0;
}

.products-item-data .type-image-list img{
	width: 100%;
	height: auto;
	display: block;
}
/* products deta - outline */
.products-item-data .outline-list {
	width: 50%;
	margin-bottom: 27px;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

@media screen and (max-width:767px) {
	.products-item-data .outline-list {
		width: 100%;
	}
}

.products-item-data .outline-list dt {
	width: 37px;
	height: 37px;
	padding-top: 7px;
	text-align: center;
	line-height: 1.0;
	font-size: 2.4rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	background-color: #000000;
}
.products-item-data .outline-list dd {
	width: calc(100% - 37px);
	margin-bottom: 20px;
	padding-left: 0.85em;
	line-height: 1.75;
	font-size: 1.5rem;
	font-weight: 300;
}

.products-item-data .outline-list dd .catch {
	margin-bottom: 6px;
	line-height: 1.6;
	font-size: 1.8rem;
	font-weight: 500;
	display: block;
}

/* products deta - example */
.products-item-data .outline-example {
	width: 45%;
	margin-top: 3px;
	margin-bottom: 27px;
	padding: 35px 6% 55px 6%;
	border: 1px solid #E1E1E1;
}

@media screen and (max-width:767px) {
	.products-item-data .outline-example {
		width: 100%;
	}
}

.products-item-data .outline-example dt {
	width: 100%;
	margin-bottom: 1.6em;
	padding-bottom: 1.25em;
	text-align: center;
	line-height: 1.0;
	font-size: 1.6rem;
	font-weight: 500;
	border-bottom: 1px solid #BABABA;
}

.products-item-data .outline-example dd + dt {
	margin-top: 2.0em;
}

.products-item-data .outline-example dd {
	width: 100%;
	line-height: 1.6;
	font-size: 1.5rem;
	font-weight: 300;
}

.products-item-data .outline-example dd + dd {
	margin-top: 0.7em;
}

/* products deta - photo-library */
.products-item-data .photo-library {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	column-gap: 10px;
}

.products-item-data .photo-library figure {
	width: calc(20% - 8px);
	margin-bottom: 15px;
}

@media screen and (max-width:767px) {
	.products-item-data .photo-library figure {
		width: calc(33.333% - 7px);
	}
}

@media screen and (max-width:559px) {
	.products-item-data .photo-library figure {
		width: calc(50% - 5px);
	}
}

.products-item-data .photo-library figure img {
	width: 100%;
	display: block;
}
.products-item-data .photo-library figure figcaption {
	width: 100%;
	padding-top: 0.7em;
	line-height: 1.5;
	font-size: 1.4rem;
	font-weight: 300;
}

/*products deta - lineup-gallery*/
.products-item-data .lineup-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.products-item-data .lineup-gallery figure {
	width: calc(50% - 10px);
	margin: 0;
}

.products-item-data .lineup-gallery img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	.lineup-gallery {
		gap: 8px;    /* 画像間を狭くする */
	}

	.products-item-data .lineup-gallery figure {
		width: 100%;
	}
}





/* products deta - detail-image */
.products-item-data .detail-image {
	width: 100%;
	padding: 35px;
	text-align: center;
	border: 1px solid #D8D8D8;
}

.products-item-data .detail-image img {
	max-width: 100%;
}

.detail-image-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.detail-image-row .cata1 {
    flex: 1;
}

.detail-image-row .cata1 img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 767px) {
    .detail-image-row {
        flex-direction: column;
    }
}

.products-item-data .detail-image.ptc-lineup-image img {
	width: 488px;
	height: auto;
	border: 1px solid #D8D8D8;
}

.products-item-data .detail-image + .detail-image {
	margin-top: 10px;
}

/* products deta - data-table */
.products-item-data .data-table {
	width: 100%;
	margin-top: 35px;
	table-layout: fixed;
	background-color: #FFFFFF;
	border-collapse: collapse;
	border: 1px solid #D8D8D8;
}

.products-item-data h4 + .data-table {
	margin-top: 0;
}

@media screen and (max-width:767px) {
	.products-item-data .data-table {
		width: 100% !important;
	}
}

.products-item-data .data-table caption {
	padding-bottom: 0.6em;
	text-align: left;
	caption-side: top;
	line-height: 1.4;
	font-size: 1.6rem;
	font-weight: 500;
}

.products-item-data .data-table th,
.products-item-data .data-table td {
	text-align: center;
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: 300;
	border: 1px solid #D8D8D8;
}

.products-item-data .data-table th {
	padding: 0.7em 0.5em;
	color: #FFFFFF;
	background-color: #A8A8A8;
}

.products-item-data .data-table td {
	padding: 1.2em 0.5em;
}

.products-item-data .data-table .length-10 {width: 10%;}
.products-item-data .data-table .length-15 {width: 15%;}
.products-item-data .data-table .length-20 {width: 20%;}
.products-item-data .data-table .length-25 {width: 25%;}
.products-item-data .data-table .length-30 {width: 30%;}
.products-item-data .data-table .length-35 {width: 35%;}
.products-item-data .data-table .length-40 {width: 40%;}
.products-item-data .data-table .length-45 {width: 45%;}
.products-item-data .data-table .length-50 {width: 50%;}
.products-item-data .data-table .length-55 {width: 55%;}
.products-item-data .data-table .length-60 {width: 60%;}


/* products deta - sheath heater spec */
.products-item-data .sheath-heater-spec {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.products-item-data .detail-image + .sheath-heater-spec {
	margin-top: 10px;
}

.products-item-data .sheath-heater-spec h5 {
	width: 100%;
	margin-bottom: 13px;
	padding-bottom: 0.85em;
	line-height: 1.0;
	font-size: 1.6rem;
	font-weight: 500;
	border-bottom: 1px solid #C3C3C3;
}

.products-item-data .sheath-heater-spec > * + h5 {
	margin-top: 2.75em;
}

.products-item-data .sheath-heater-spec .spec-unit {
	margin-bottom: 10px;
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: 300;
}

.products-item-data .sheath-heater-spec .data-table-scroll {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
}

.products-item-data .sheath-heater-spec .data-table {
    width: 100%;
	max-width: 100%;
	margin-top: 0;
}

@media screen and (max-width:767px) {
	.products-item-data .sheath-heater-spec .data-table {
		min-width: 680px;
	}
}




.products-item-data .sheath-heater-spec .plane-text {
	padding-bottom: 0;
}






/* --------------------------------------------------
 products item image placeholder / image control
-------------------------------------------------- */

/* メイン画像は比率をある程度統一 */
.products-item-intro .image figure img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

/* 特徴図は見切れ防止を優先 */
.products-item-data .plane-image img {
	width: 100%;
	display: block;
	background: #d9d9d9;
}

/* 写真一覧は正方形で揃える */
.products-item-data .photo-library figure img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	background: #d9d9d9;
}

/* 詳細図は全体表示優先 */
.products-item-data .detail-image img {
	max-width: 100%;
	height: auto;
	display: inline-block;
	background: #d9d9d9;
}

/*-----------------------------------------------------------------------
 page - order made
-----------------------------------------------------------------------*/

/* order made - intro */
.order-made-intro {}

.order-made-intro .wrap {
	width: 100%;
	padding: 0 15px 75px 15px;
}

.order-made-intro .wrap h3 {
	margin-bottom: 1.0em;
	text-align: center;
	line-height: 1.5;
	font-size: 4.0rem;
	font-weight: 600;
}

.order-made-intro .wrap .comment {
	width: 100%;
	max-width: 945px;
	margin: 0 auto;
	line-height: 2.0;
	font-size: 1.8rem;
}

/* order made - point */
.order-made-point {
	width: 100%;
	margin-bottom: 90px;
}

.order-made-point .wrap {
	width: 100%;
	padding: 0 10px;
}

.order-made-point .wrap dl {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto 30px auto;
	padding: 25px 0;
	background-color: #FFFFFF;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.order-made-point .wrap dl dt {
	width: 215px;
	padding: 0.5em 0.5em 0.3em 0.5em;
	text-align: center;
	line-height: 1.0;
	font-size: 2.4rem;
	font-weight: 400;
	color: #FFFFFF;
	background-color: #000000;
	position: relative;
}

.order-made-point .wrap dl dt span {
	margin-left: 0.15em;
	vertical-align: middle;
	line-height: 1.0;
	font-family: "Shippori Mincho", serif;
	font-size: 7.0rem;
	font-weight: 400;
	font-style: normal;
	color: #E86200;
	display: inline-block;
	position: relative;
	top: -0.1em;
}

.order-made-point .wrap dl dd {
	width: calc(100% - 215px);
	padding: 0 2.5em;
	line-height: 1.5625;
	font-size: 1.6rem;
}

.order-made-point .wrap dl dd.short {
	width: calc(77.5% - 215px);
}

.order-made-point .wrap dl dd.image {
	width: 22.5%;
	padding-left: 0;
}
.order-made-point .wrap dl dd.image img {
	max-width: 100%;
}

@media screen and (max-width:767px) {
	.order-made-point .wrap dl dt {
		width: 50%;
		margin-bottom: 25px;
	}

	.order-made-point .wrap dl dd,
	.order-made-point .wrap dl dd.short,
	.order-made-point .wrap dl dd.image {
		width: 100%;
		padding: 0 1.5em;
	}

	.order-made-point .wrap dl dd.image {
		padding-top: 25px;
		text-align: center;
	}
}

@media screen and (max-width:479px) {
	.order-made-point .wrap dl dt {
		width: 75%;
	}
}

.order-made-point .wrap dl dd h5 {
	margin-bottom: 0.5em;
	font-size: 1.7rem;
	font-weight: 600;
}

/* order made - flow */
.order-made-flow {
	width: 100%;
	margin-bottom: 90px;
}

.order-made-flow .wrap {
	width: 100%;
	padding: 0 10px;
}

.order-made-flow .wrap h3 {
	margin-bottom: 1.0em;
	text-align: center;
	line-height: 1.5;
	font-size: 3.0rem;
	font-weight: 600;
}

.order-made-flow .wrap .flow-contents {
	width: 100%;
	max-width: 740px;
	margin: 0 auto;
}

.order-made-flow .wrap .flow-contents .step {
	width: 100%;
	padding: 25px 15px;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.order-made-flow .wrap .flow-contents .step figure {
	width: 20%;
	text-align: center;
}

.order-made-flow .wrap .flow-contents .step figure img {
	max-width: 100%;
}

.order-made-flow .wrap .flow-contents .step h5 {
	width: 22.5%;
	text-align: center;
	line-height: 1.4;
	font-size: 2.0rem;
	font-weight: 600;
}

.order-made-flow .wrap .flow-contents .step p {
	width: 57.5%;
	padding: 0 4.0em 0 1.5em;
	line-height: 1.66;
	font-size: 1.5rem;
}

.order-made-flow .wrap .flow-contents hr {
	width: 100%;
	height: 39px;
	margin: 15px auto;
	border: none;
	background-image: url("../img/order/order_flow-icon_cursor.png");
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

/* order made - exaple */
.order-made-exaple {
	width: 100%;
	margin-bottom: 90px;
}

.order-made-exaple .wrap {
	width: 100%;
	padding: 0 10px;
}

.order-made-exaple .wrap h3 {
	margin-bottom: 1.0em;
	text-align: center;
	line-height: 1.5;
	font-size: 3.0rem;
	font-weight: 600;
}

.order-made-exaple .wrap .example-contents {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}

.order-made-exaple .wrap .example-contents li {
	width: 33.333%;
	padding: 10px;
}

.order-made-exaple .wrap .example-contents li > div {
	padding: 25px 25px;
	background-color: #FFFFFF;
	border-radius: 10px;
}

@media screen and (max-width:639px) {
	.order-made-exaple .wrap .example-contents li {
		width: 100%;
	}

	.order-made-exaple .wrap .example-contents li > div {
		padding: 15px 15px;
	}
}

.order-made-exaple .wrap .example-contents li figure {
	width: 100%;
	text-align: center;
}

.order-made-exaple .wrap .example-contents li figure img {
	width: calc(50% - 10px);
	margin: 5px;
	display: inline;
}

.order-made-exaple .wrap .example-contents li figure img.full {
	width: calc(100% - 10px);
	margin: 5px 0;
}

.order-made-exaple .wrap .example-contents li h5 {
	padding: 1.0em 0 0.8em 0;
	line-height: 1.4;
	font-size: 1.6rem;
	font-weight: 600;
}

.order-made-exaple .wrap .example-contents li p {
	line-height: 1.6;
	font-size: 1.5rem;
}

/*-----------------------------------------------------------------------
 page - generic body (for text-heavy pages)
-----------------------------------------------------------------------*/
.page-body{
  width: 100%;
  max-width: 1260px;
  margin: 0 auto 80px auto;
  padding: 0 15px;
}

.page-body .wrap{
  background:#FFFFFF;
  border:1px solid #D8D8D8;
  padding: 40px 55px;
}

.page-body h2{
  margin: 0 0 0.9em 0;
  line-height: 1.3;
  font-size: 2.8rem;
  font-weight: 700;
}

.page-body h3{
  margin: 2.0em 0 0.8em 0;
  line-height: 1.4;
  font-size: 2.0rem;
  font-weight: 700;
}

.page-body p{
  margin: 0.8em 0 0 0;
  line-height: 1.95;
  font-size: 1.6rem;
  font-weight: 300;
}

.page-body ul,
.page-body ol{
  margin: 0.8em 0 0 1.3em;
  line-height: 1.85;
  font-size: 1.6rem;
  font-weight: 300;
}

.page-body li + li{ margin-top: 0.4em; }

.page-body table{
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  border: 1px solid #D8D8D8;
}

.page-body th,
.page-body td{
  padding: 0.9em 0.8em;
  border: 1px solid #D8D8D8;
  line-height: 1.6;
  font-size: 1.5rem;
  font-weight: 300;
}

.page-body th{
  background:#A8A8A8;
  color:#FFFFFF;
  font-weight: 400;
}


/* =========================================================
   Company page: table fallback (avoid table being collapsed)
   Scope: .company-page only
========================================================= */
.company-page .table-scroll { overflow: auto; }

.company-page .company-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
  display: table !important;
}

.company-page .company-table thead { display: table-header-group !important; }
.company-page .company-table tbody { display: table-row-group !important; }
.company-page .company-table tr { display: table-row !important; }

.company-page .company-table th,
.company-page .company-table td {
  display: table-cell !important;
  border: 1px solid #D8D8D8;
  padding: 10px;
  vertical-align: top;
}

.company-page .company-table th {
  background: #F3F3F3;
  text-align: left;
  width: 220px;
}

.company-page .agency-table { min-width: 860px; }

.message-section{
  background:#fff;
  border:1px solid #D8D8D8;
  border-radius:10px;
  padding:28px 24px;
  margin-bottom:20px;
}

.message-section h2{
  font-size:2.4rem;
  margin-bottom:14px;
}

.message-image img{
  display:block;
  width:100%;
  max-width:800px;
  height:auto;
  margin:0 auto;
}

/* =========================
   企業沿革
========================= */
.history-section{
  background:#fff;
  border:1px solid #D8D8D8;
  border-radius:10px;
  padding:70px 40px;
  margin-bottom:20px;
}

.history-title{
  font-size:2.2rem;
  line-height:1.4;
  margin:0 0 12px;
}

.history-list{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:6px 14px;
  margin:0;
  font-size:1.25rem;
  line-height:1.7;
}

.history-list dt{
  margin:0;
  font-weight:700;
  align-self:start;
}

.history-list{
  padding-left:60px;
}

.history-list{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:0 16px;
  margin:0;
  font-size:1.45rem;
  line-height:1.7;
}

.history-list dt{
  margin:0;
  padding:10px 0;
  font-weight:700;
  align-self:start;
  border-bottom:1px solid #e5e5e5;
}

.history-list dt{
  margin:0;
  padding:10px 0;
  font-weight:700;
  align-self:start;
  border-bottom:none;
    color:#1f4e79;
}

.history-list dd{
  margin:0;
  padding:10px 12px;
  color:#1f4e79;
  border:none;
  border-radius:0;
}

.history-list dd:nth-of-type(odd){
  background:#eef4fb;
}

/* スマホ対応 */
@media screen and (max-width: 767px){
  .history-section{
    padding:18px 16px;
  }

  .history-title{
    font-size:2rem;
    margin-bottom:10px;
  }

  .history-list{
    grid-template-columns:1fr;
    gap:4px 0;
    font-size:1.4rem;
    line-height:1.65;
  }

  .history-list dt{
    margin-top:10px;
  }

  .history-list dt:first-child{
    margin-top:0;
  }

  .history-list dd{
    margin-bottom:6px;
  }
}

/* =========================================================
   page-body tables: refined gray table style (global)
   - applies to all pages using <main class="page-body ...">
========================================================= */

/* 表の見た目を統一（ボディ内の表は全部対象） */
.page-body table{
  border-collapse: collapse;
  border: 1px solid #D6D6D6;
}

/* th/td 共通 */
.page-body th,
.page-body td{
  color: #333 !important;
  font-size: 1.2rem !important;
  line-height: 1.55 !important;
  opacity: 1 !important;
  visibility: visible !important;

  border: 1px solid #D6D6D6 !important;
  padding: 7px 8px !important;
  background: #fff;
  vertical-align: top;
}

/* 見出しは薄いグレー */
.page-body th{
  background: #F5F5F5;
  color: #333 !important;
  font-weight: 600;
}

/* =========================================================
   company page: tables default 80% width (desktop)
   - keep mobile usable (100%)
========================================================= */
.company-page .page-body table{
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

/* small screens: full width */
@media screen and (max-width:767px){
  .company-page .page-body table{
    width: 100%;
  }
}

.sitemap-section{
	margin-top: 10px;
}

.sitemap-title{
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 22px;
}

.sitemap-top-grid{
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 18px;
	margin-bottom: 28px;
	padding: 22px 24px;
	background:#FFFFFF;
	border:1px solid #D8D8D8;
	border-radius:10px;
}

.sitemap-top-grid p{
	margin:0;
}

.sitemap-top-grid a{
	display:block;
	padding: 10px 12px;
	background:#F8F8F8;
	border-radius:8px;
	font-size:1.5rem;
	font-weight:500;
	line-height:1.6;
	text-decoration:none;
	color:#000000;
}

.sitemap-top-grid a:hover{
	color:#E86200;
	transition:all 0.3s;
}

.sitemap-product-wrap{
	padding: 24px;
	background:#FFFFFF;
	border:1px solid #D8D8D8;
	border-radius:10px;
}

.sitemap-category-row + .sitemap-category-row{
	margin-top: 12px;
}

.sitemap-category-row h3{
	margin:0;
	font-size:2rem;
	font-weight:700;
	line-height:1.5;
}

.sitemap-category-row h3 a{
	color:#000000;
	text-decoration:none;
}

.sitemap-category-row h3 a:hover{
	color:#E86200;
	transition:all 0.3s;
}

.sitemap-product-grid{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 24px;
}

.sitemap-product-col h4{
	font-size:1.8rem;
	font-weight:700;
	line-height:1.5;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom:2px solid #E86200;
}

.sitemap-product-col ul{
	margin:0;
	padding-left: 1.2em;
}

.sitemap-product-col li{
	margin-bottom: 8px;
	font-size:1.5rem;
	line-height:1.8;
	font-weight:300;
}

.sitemap-product-col a{
	color:#000000;
	text-decoration:none;
}

.sitemap-product-col a:hover{
	color:#E86200;
	transition:all 0.3s;
}

@media screen and (max-width:767px){
	.sitemap-title{
		font-size:2.4rem;
		margin-bottom:18px;
	}

	.sitemap-top-grid{
		grid-template-columns: 1fr;
		padding: 16px;
		margin-bottom: 20px;
	}

	.sitemap-product-wrap{
		padding: 16px;
	}

	.sitemap-product-grid{
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 18px;
	}
}
.nichrome-feature-row{
	display:flex !important;
	justify-content:center;
	align-items:flex-start;
	gap:40px;
	flex-wrap:nowrap;
	width:100%;
	margin:36px 0;
	clear:both;
}

.nichrome-feature-item{
	width:400px;
	max-width:400px;
	flex:0 0 400px;
}

.nichrome-feature-item img{
	display:block;
	width:100%;
	height:auto;
}

.nichrome-feature-caption{
	display:block !important;
	width:100%;
	margin-top:10px;
	padding-top:10px;
	border-top:1px solid #cfcfcf;
	font-size:1.4rem;
	line-height:1.6;
	color:#333;
	text-align:left;
	box-sizing:border-box;
}

@media screen and (max-width: 900px){
	.nichrome-feature-row{
		flex-wrap:wrap;
		gap:24px;
	}

	.nichrome-feature-item{
		width:100%;
		max-width:400px;
		flex:0 0 100%;
	}
}

.top-movie .movie-slider-area {
	display: flex;
	align-items: center;
	gap: 20px;
}

.top-movie .slick-items {
	flex: 1;
	min-width: 0;
}

.top-movie .movie-arrow {
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
}

.top-movie .movie-arrow:hover {
	opacity: 0.8;
}

.top-movie .package iframe {
	width: 100%;
	height: 31.5vw;
	max-height: 500px;
}

@media screen and (max-width: 767px) {
	.top-movie .movie-slider-area {
		gap: 10px;
	}

	.top-movie .movie-arrow {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
}

.message-section {
	background: #fff;
	border: 1px solid #D8D8D8;
	border-radius: 10px;
	padding: 32px 28px;
	margin-bottom: 20px;
	overflow: hidden;
}

.message-section h2 {
	font-size: 2.4rem;
	margin-bottom: 24px;
}

.message-text p {
	line-height: 1.95;
	font-size: 1.6rem;
	margin-bottom: 14px;
}

.message-photo-float {
	float: left;
	width: 300px;
	margin: 10px 30px 18px 0;
}

.message-photo-float img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

.message-policy {
	margin: 0 0 18px 1.5em;
	padding: 0;
}

.message-policy li {
	line-height: 1.95;
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.message-sign {
	text-align: right;
	font-size: 1.6rem;
	margin-top: 24px;
	margin-bottom: 0;
	clear: both;
	font-family: "DFKai-SB", "BIZ UDMincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-weight: 700;
}

@media screen and (max-width: 1023px) {
	.message-photo-float {
		width: 320px;
		margin: 8px 24px 16px 0;
	}

	.message-photo-float img {
		height: 480px;
	}
}

@media screen and (max-width: 767px) {
	.message-section {
		padding: 24px 18px;
	}

	.message-section h2 {
		font-size: 2rem;
		margin-bottom: 18px;
	}

	.message-photo-float {
		float: none;
		width: 100%;
		max-width: 400px;
		margin: 0 auto 20px;
	}

	.message-photo-float img {
		height: auto;
		max-height: 600px;
	}

	.message-text p,
	.message-policy li,
	.message-sign {
		font-size: 1.5rem;
	}

	.message-sign {
		clear: none;
	}
}

/* =========================================================
   company page: responsive tables
   - RoHS standard table: keep table layout
   - agency-table: card layout on mobile
========================================================= */

/* PC・共通：横スクロール前提の最小幅を解除 */
.company-page .company-table {
  min-width: 0 !important;
}

.company-page .agency-table {
  min-width: 0 !important;
}

/* テーブル外側の横スクロール指定を解除 */
.company-page .table-scroll {
  overflow: visible !important;
  width: 100%;
}

/* スマホ表示 */
@media screen and (max-width: 767px) {

  /* 2列の通常表は表形式を維持 */
  .company-page .company-table:not(.agency-table) {
    width: 100% !important;
    table-layout: fixed;
  }

  .company-page .company-table:not(.agency-table) th {
    width: 42% !important;
  }

  .company-page .company-table:not(.agency-table) th,
  .company-page .company-table:not(.agency-table) td {
    word-break: break-word;
  }

  /* 3列の製品別表だけカード型にする */
  .company-page .agency-table {
    display: block !important;
    width: 100% !important;
    border: none !important;
  }

  .company-page .agency-table thead {
    display: none !important;
  }

  .company-page .agency-table tbody {
    display: block !important;
  }

  .company-page .agency-table tr {
    display: block !important;
    margin-bottom: 14px;
    border: 1px solid #D6D6D6 !important;
    background: #fff;
  }

  .company-page .agency-table td {
    display: block !important;
    width: 100% !important;
    border: none !important;
    border-bottom: 1px solid #E5E5E5 !important;
    background: #fff !important;
    word-break: break-word;
  }

  .company-page .agency-table td:last-child {
    border-bottom: none !important;
  }

  .company-page .agency-table td::before {
    display: block;
    margin-bottom: 4px;
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .company-page .agency-table td:nth-child(1)::before {
    content: "製品";
  }

  .company-page .agency-table td:nth-child(2)::before {
    content: "環境管理化学物質";
  }

  .company-page .agency-table td:nth-child(3)::before {
    content: "備考";
  }
}

/* =========================================================
   company page: align company body layout with environment page
   - flatten inner card layout
   - reduce duplicated side padding
   - make company tables use full content width
========================================================= */

/* 会社案内ページだけ、内側カードによる二重余白を解消 */
.company-body .message-section,
.company-body #profile,
.company-body .history-section,
.company-body #agency {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 0 42px 0 !important;
  margin-bottom: 42px !important;
}

/* 最後のセクションは余白を詰める */
.company-body #agency {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* 会社案内ページ内の見出し余白を環境ページ寄りに統一 */
.company-body .message-section h2,
.company-body #profile h2,
.company-body .history-title,
.company-body #agency h2 {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

/* 会社案内ページの表は中央84%ではなく、本文幅いっぱいに戻す */
.company-page .company-body table {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 会社概要表の左見出し幅 */
.company-body .company-table th {
  width: 220px;
}

/* 沿革の左側余白が強いため、本文幅に合わせる */
.company-body .history-list {
  padding-left: 0 !important;
}

/* 既存のカード背景がなくなるため、沿革の行背景を少し控えめに */
.company-body .history-list dd:nth-of-type(odd) {
  background: #f6f8fa;
}

/* 会社案内の代理店表：スマホカード表示時のラベルを会社案内用に上書き */
.company-body .agency-table td:nth-child(1)::before {
  content: "社名";
}

.company-body .agency-table td:nth-child(2)::before {
  content: "主な地域";
}

.company-body .agency-table td:nth-child(3)::before {
  content: "主要取扱品";
}

/* スマホ時は外側の余白も少し詰める */
@media screen and (max-width: 767px) {
  .page-body.company-body .wrap {
    padding: 28px 20px;
  }

  .company-body .message-section,
  .company-body #profile,
  .company-body .history-section,
  .company-body #agency {
    padding: 0 0 34px 0 !important;
    margin-bottom: 34px !important;
  }

  .company-body #agency {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .company-body .company-table th {
    width: 40% !important;
  }
}

/* =========================================================
   products list: sticky product filter
   - keep current design
   - transparent wrapper
========================================================= */

.products-list .wrap .content .filter {
  position: sticky;
  top: 128px;
  z-index: 900;
  background: transparent;
}

/* 追従時も元デザインを維持するため、selectには影を足さない */
.products-list .wrap .content .filter select {
  box-shadow: none;
}

/* スマホ時はヘッダー高さに合わせて固定位置のみ調整 */
@media screen and (max-width: 767px) {
  .products-list .wrap .content .filter {
    top: 92px;
  }
}
/* =========================================================
   products detail: all product select
   - same idea as products list filter
   - sticky under header
   - shifted 30px left to avoid side tab overlap
========================================================= */

.product-detail-filter {
        width: 100%;
        max-width: 1290px;
        margin: 0 auto 24px auto;
        padding: 0 70px 0 15px;
        position: sticky;
        top: 128px;
        z-index: 900;
        background: transparent;
        box-sizing: border-box;
        text-align: right;
}

.product-detail-filter::after {
        content: "";
        width: 40px;
        height: 40px;
        background-color: #FFFFFF;
        background-position: 50% 50%;
        background-size: 10px auto;
        background-repeat: no-repeat;
        background-image: url("../img/common/icon_select-box_cursor.png");
        position: absolute;
        top: 2px;
        right: 60px;
        pointer-events: none;
}

.product-detail-filter select {
        width: 100%;
        max-width: 425px;
        padding: 1.0em 1.25em;
        line-height: 1.0;
        font-family: 'Roboto', sans-serif;
        font-size: 1.4rem;
        font-weight: 500;
        background-color: #FFFFFF;
        border: 1px solid #E3E3E3;
        appearance: none;
        cursor: pointer;
        box-shadow: none;
}

/* スマホ時 */
@media screen and (max-width: 767px) {
        .product-detail-filter {
                width: calc(100% - 75px);
                top: 85px;
                margin-bottom: 18px;
                padding: 0 15px;
                box-sizing: border-box;
                transform: translateX(-10px);
        }

        .product-detail-filter::after {
                right: 17px;
        }

        .product-detail-filter select {
                max-width: 100%;
        }

        .product-detail-filter select:focus {
                outline: none;
                border-color: #E3E3E3;
        }
}

/* RAMA ROD photo row */
.products-item-data .photo-library .rama-rod-photo-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}

.products-item-data .photo-library .rama-rod-photo-row .rama-rod-photo {
	width: 100%;
	margin-bottom: 15px;
}

.products-item-data .photo-library .rama-rod-photo-row .rama-rod-photo img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media screen and (max-width: 768px) {
	.products-item-data .photo-library .rama-rod-photo-row {
		grid-template-columns: 1fr;
	}
}

/* Tube far-infrared heater use case */
.products-item-data .tube-use-case {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(320px, 6fr);
	gap: 36px;
	align-items: start;
	width: 100%;
	margin-top: 34px;
}

.products-item-data .tube-use-case-text,
.products-item-data .tube-use-case-images {
	width: 100%;
	max-width: none;
	margin: 0;
}

.products-item-data .tube-use-case-text h4 {
	margin-bottom: 0.8em;
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: 600;
}

.products-item-data .tube-use-case-text h5 {
	margin-bottom: 0.8em;
	line-height: 1.5;
	font-size: 1.8rem;
	font-weight: 600;
}

.products-item-data .tube-use-case-text .plane-text {
	width: 100%;
	padding-bottom: 0;
}

.products-item-data .tube-use-case-text .plane-text + .plane-text {
	margin-top: 1.0em;
}

.products-item-data .tube-use-case-images img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.products-item-data .tube-use-case-main {
	width: 100%;
	margin-bottom: 12px;
}

.products-item-data .tube-use-case-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

@media screen and (max-width: 768px) {
	.products-item-data .tube-use-case {
		grid-template-columns: 1fr;
	}

	.products-item-data .tube-use-case-thumbs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Nichrome coil heater use case */
.products-item-data .nichrome-use-case {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(320px, 6fr);
	gap: 36px;
	align-items: start;
	width: 100%;
	margin-top: 34px;
}

.products-item-data .nichrome-use-case-text {
	width: 100%;
	max-width: none;
	margin: 0;
}

.products-item-data .nichrome-use-case-images {
	width: 100%;
	max-width: 600px;
	margin: 0;
	justify-self: end;
}

.products-item-data .nichrome-use-case-text h4 {
	margin-bottom: 0.8em;
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: 600;
}

.products-item-data .nichrome-use-case-text h5 {
	margin-bottom: 0.8em;
	line-height: 1.5;
	font-size: 1.8rem;
	font-weight: 600;
}

.products-item-data .nichrome-use-case-text .plane-text {
	width: 100%;
	padding-bottom: 0;
}

.products-item-data .nichrome-use-case-text .plane-text + .plane-text {
	margin-top: 1.0em;
}

.products-item-data .nichrome-use-case-images img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.products-item-data .nichrome-use-case-main {
	width: 100%;
	margin-bottom: 12px;
}

.products-item-data .nichrome-use-case-main img {
	max-height: 340px;
}

.products-item-data .nichrome-use-case-thumbs img {
	max-height: 150px;
}

.products-item-data .nichrome-use-case-thumbs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

@media screen and (max-width: 768px) {
	.products-item-data .nichrome-use-case {
		grid-template-columns: 1fr;
	}

	.products-item-data .nichrome-use-case-images {
		max-width: none;
		justify-self: stretch;
	}
}

/* High-frequency heater use case */
.products-item-data .highfrequency-use-case {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(320px, 6fr);
	gap: 36px;
	align-items: start;
	width: 100%;
	margin-top: 34px;
}

.products-item-data .highfrequency-use-case-text {
	width: 100%;
	max-width: none;
	margin: 0;
}

.products-item-data .highfrequency-use-case-images {
	width: 100%;
	max-width: 520px;
	margin: 0;
	justify-self: end;
}

.products-item-data .highfrequency-use-case-text h4 {
	margin-bottom: 0.8em;
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: 600;
}

.products-item-data .highfrequency-use-case-text h5 {
	margin-bottom: 0.8em;
	line-height: 1.5;
	font-size: 1.8rem;
	font-weight: 600;
}

.products-item-data .highfrequency-use-case-text .plane-text {
	width: 100%;
	padding-bottom: 0;
}

.products-item-data .highfrequency-use-case-text .plane-text + .plane-text {
	margin-top: 1.0em;
}

.products-item-data .highfrequency-use-case-main {
	width: 100%;
}

.products-item-data .highfrequency-use-case-main img {
	width: 100%;
	max-height: 340px;
	height: auto;
	display: block;
	object-fit: contain;
}

@media screen and (max-width: 768px) {
	.products-item-data .highfrequency-use-case {
		grid-template-columns: 1fr;
	}

	.products-item-data .highfrequency-use-case-images {
		max-width: none;
		justify-self: stretch;
	}
}

/* Temperature sensor use list */
.products-item-data .sensor-use-list {
	width: 100%;
	margin-top: 24px;
	text-align: left;
}

.products-item-data .sensor-use-item {
	margin-bottom: 20px;
}

.products-item-data .sensor-use-item:last-child {
	margin-bottom: 0;
}

.products-item-data .sensor-use-item p {
	line-height: 1.85;
	font-size: 1.6rem;
	font-weight: 400;
}

.products-item-data .sensor-use-title {
	margin-bottom: 6px;
	font-weight: 700;
}

/* Product use case section */
.products-item-data .product-use-case-list {
	display: grid;
	gap: 42px;
	width: 100%;
}

.products-item-data .product-use-case {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(320px, 6fr);
	gap: 32px;
	align-items: start;
	width: 100%;
}

.products-item-data .product-use-case + .product-use-case {
	padding-top: 42px;
	border-top: 1px solid #d9d9d9;
}

.products-item-data .product-use-case-text,
.products-item-data .product-use-case-images {
	width: 100%;
	max-width: none;
	margin: 0;
}

.products-item-data .product-use-case-text h5 {
	margin-bottom: 0.8em;
	line-height: 1.5;
	font-size: 1.8rem;
	font-weight: 700;
	color: #1d4f91;
}

.products-item-data .product-use-case-text .plane-text {
	width: 100%;
	padding-bottom: 0;
}

.products-item-data .product-use-case-text .plane-text + .plane-text {
	margin-top: 1.0em;
}

.products-item-data .product-use-case-images {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}

.products-item-data .product-use-case-images figure {
	width: 100%;
	margin: 0;
}

.products-item-data .product-use-case-images img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid #ddd;
	box-sizing: border-box;
	object-fit: contain;
}

.products-item-data .product-use-case-images.highfrequency-use-case-images-compact {
	width: 50%;
	justify-self: end;
}

.products-item-data .insulator-use-examples {
	width: 100%;
}

.products-item-data .insulator-use-examples img {
	display: block;
	width: 100%;
	height: auto;
}

.products-item-data .insulator-use-examples img + img {
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	.products-item-data .product-use-case {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.products-item-data .product-use-case-images {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}
