@charset "utf-8";
/* Honjo Chemical / layout css
-----------------------------------------------------*/

/* ==============================================
    universal reset
============================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ==============================================
    html,body and base
============================================== */
html,body {
	height:100%;
}

/* general params
------------------*/
table {
	empty-cells: show;
	font-size: 100%;
	border-collapse: collapse;
}

img {
	border: none;
	height: auto;
	vertical-align: top;
	max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	font-size: 100%;
}

h1 img,h2 img,h3 img,h4 img,h5 img,h6 img {
}

ul {
	letter-spacing: -.40em;
}
ul li {
	letter-spacing: normal;
}
/* acronyms and abbreviations styles 
-------------------------------------*/
acronym,abbr {
	cursor: help;
}

/* ==============================================
    clear
============================================== */
.cbox {
	zoom: 100%;
}
.cbox:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}
.clear {
	clear: both;
	height: 1px;
	font-size: 1px;
}
.clear hr {
	display: none;
}

hr.clear {
	zoom: 1;
	clear: both;
	height: 0;
	border: none;
	font-size: 0;
}
*:first-child+html hr.clear {/* for IE7 */
	border-top: 1px solid;
} 

/* ==============================================
    body
============================================== */
body {
	text-align: center;
	font-size: 16px;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 700px) {
	body {
		font-size: 13px;
		min-width: 300px;
	}
}
@media print {
	body {
		min-width: 950px;
	}
}
body,
input,
select,
textarea {
	/*font-family: Meiryo,Arial,Roboto,'Droid Sans','Yu Gothic','Lucida Grande','Hiragino Kaku Gothic ProN', sans-serif;*/
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #313131;
}
form input[type="submit"],
form input[type="reset"],
form input[type="button"] {
	-webkit-appearance: none;
}

/* ==============================================
    link
============================================== */
a {
	transition: all .4s;
	text-decoration: none;
	color: #0492e3;
}
a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 701px) {
	a:hover,
	#pagetop img:hover {
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
	a img.rollover:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha( opacity=100 )";
	}
}

/* ==============================================
    base
============================================== */
#container {
	zoom: 1;
	margin: 0 auto;
	text-align: left;
}
#container:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}
.inner {
	width: 1000px;
	margin: 0 auto;
	text-align: left;
}
header .inner,
footer .inner,
#f-sitemap .inner,
body.home #contents .inner {
	width: 86%;
}

.tab,
.sp {
	display: none;
}
.switch {}
.call {}

@media screen and (max-width: 1300px) {
	header .inner,
	footer .inner,
	#f-sitemap .inner,
	body.home #contents .inner {
		width: 96%;
	}
}

@media screen and (max-width: 1000px) {
	.inner {
		width: 96%;
	}
}



@media screen and (max-width: 700px) {
	header .inner,
	body.home #contents .inner {
		width: 100% !important;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

/* ==============================================
    container
============================================== */
#container {
	position:relative;
	margin: 0 auto;
	overflow-x: hidden;
}

/* ==============================================
    header
============================================== */
/* header layout */
header {
	margin: 0px;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,0.8);
	z-index: 100;
}
header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
#globalmenu {
	margin-right: 130px;
}
#lang {
	position: absolute;
	top: 0;
	right: 0;
}
@media screen and (max-width: 1000px) {
	#globalmenu {
		margin-right: 80px;
	}
}
@media screen and (max-width: 700px) {
	header .inner {
		display: block;
	}
	#globalmenu {
		margin-right: 0;
	}
	#lang {
		display: none;
	}
}


header #siteid {
	display: block;
	padding: 15px 0 5px;
}


body.home header {
	opacity: 0;
	transform: translateY(-200px);
	transition: .8s;
}
body.home header.active {
	opacity: 1;
	transform: translateY(0);
}
@media screen and (max-width: 1600px) {
	header #siteid {
		width: 28vw;
	}
}
@media screen and (max-width: 1200px) {
	header #siteid {
		width: 30vw;
	}
}

@media screen and (max-width: 1000px) {
	header #siteid {
		width: 26vw;
	}
}

@media screen and (max-width: 700px) {
	header #siteid {
		width: auto;
		padding: 5px 5px;
	}
	header #siteid img {
		width: auto;
		height: 38px;
	}
}

/* ==============================================
    globalmenu / lang
============================================== */
#globalmenu ul {
	list-style: none;
}
#globalmenu>ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#globalmenu>ul>li {
	position: relative;
}
#globalmenu>ul>li>a {
	color: #313131;
	display: flex;
	align-items: center;
	height: 80px;
	padding: 0 30px;
}
#globalmenu>ul>li a:hover {
	color: #0492e3;
	text-decoration: none;
}


#globalmenu>ul>li:nth-child(1)::after,
#globalmenu>ul>li:nth-child(2)::after {
	content: "";
	display: block;
	height: 24px;
	width: 2px;
	background: #0492e3;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

/*#globalmenu>ul>li a {
	display: block;
	padding: 0 50px;
}*/
#globalmenu>ul>li#m-contact a {
	flex-flow: column;
	position: relative;
	padding: 16px 0 0 0;
}
#globalmenu>ul>li#m-contact a::before {
	content: "";
	display: block;
	background: url("image/icon_mail.png") 0 0 / contain;
	width: 30px;
	height: 20px;
	margin: 0 auto 3px;
}

#globalmenu>ul>li#m-lang a {
	color: #0492e3;
}

#globalmenu ul.submenu {
	display: none;
	position: absolute;
	top: -28px;
	left: 0;
	z-index: 1000;
}
#globalmenu ul.submenu li {
	display: block;
	white-space: nowrap;
	min-width: 10em;
	border-bottom: 1px solid #fff;
}
#globalmenu ul.submenu li:last-child {
	border-bottom: none;
}

#globalmenu ul.submenu li a {
	display: block;
	background: rgba(255,255,255,0.7);
	color: #313131;
	padding: 10px;
}
#globalmenu ul.submenu li a:hover {
	opacity: 1;
	color: #0492e3;
}

@media screen and (max-width: 1500px) {
	#globalmenu>ul>li a {
		padding: 0 20px;
	}
}
@media screen and (max-width: 1200px) {
	#globalmenu>ul>li a {
		padding: 0 10px;
	}
	#globalmenu>ul>li a {
		font-size: 0.813em;
	}
}
@media screen and (max-width: 767px) {
	#globalmenu>ul>li a {
		padding: 0 5px;
	}
	#globalmenu>ul>li a {
		
	}
}

@media screen and (max-width: 700px) {
	#globalmenu {
		background: rgba(255,255,255,1);
		padding: 0 2%;
	}
	#globalmenu>ul {
		display: block;
	}
	#globalmenu>ul>li {
		border-right: none !important;
		border-bottom: 1px solid #0492e3;
	}
	#globalmenu>ul>li:nth-child(1)::after,
	#globalmenu>ul>li:nth-child(2)::after,
	#globalmenu>ul>li:nth-child(3)::after {
		display: none;
	}
	#globalmenu>ul>li a {
		font-size: 14px;
		display: block;
		height: auto;
		padding: 15px 30px !important;
	}
	
	#globalmenu>ul>li#m-contact a::before {
		display: none;
	}
}


#lang ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#lang li,
#lang li a {
	color: #0492e3;
}
#lang li a:hover {
	text-decoration: none;
}
#lang li {
	line-height: 1;
	margin-top: 15px;
	position: relative;
}
#lang li:first-child {
	border-right: 2px solid #0492e3;
}
#lang li a {
	display: block;
	padding: 0px 16px;
}

#lang li:last-child::before {
	content: "";
	display: block;
	background: url("image/icon_lang.svg") no-repeat 0 0 / contain;
	width: 16px;
	height: 10px;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
	#lang li a {
		display: block;
		padding: 0px 5px;
	}
}

/* ==============================================
    menuBtn span
============================================== */
#menuBtn {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background: #0492e3;
	text-indent: -10000px;
	overflow: hidden;
	cursor: pointer;
	z-index: 101;
}
#menuBtn span,
#menuBtn:before,
#menuBtn:after {
	display: block;
	position: absolute;
	width: 20px;
	height: 2px;
	margin-left: -10px;
	background: #fff;
	top: 30px;
	left: 30px;
	transition: all .4s;
	opacity: 1;
}
#menuBtn span {
	margin-top: -1px;
	transition: opacity 150ms 50ms;
}

#menuBtn:before,
#menuBtn:after {
	content: "";
}
#menuBtn:before {
	transform: translate(0, -8px);
}
#menuBtn:after {
	transform: translate(0, 6px);
}

#menuBtn.active span {
	opacity: 0;
}
#menuBtn.active:before  {
	transform: rotate(45deg);
}
#menuBtn.active:after  {
	transform: rotate(-45deg);
}
@media screen and (max-width: 700px) {
	#menuBtn {
		display: block;
		width: 50px;
		height: 50px;
	}
	#menuBtn span,
	#menuBtn:before,
	#menuBtn:after {
		top: 25px;
		left: 25px;
	}
}

/* ==============================================
    breadcrumb
============================================== */

#breadcrumb {
	margin: 20px 0 50px;
}

#breadcrumb ol {
	list-style: none;
}
#breadcrumb li {
	display: inline-block;
	color: #888;
	font-size: 0.875em;
}

#breadcrumb li a {
	color: #333;
	text-decoration: none;
}
#breadcrumb li a:hover {
	text-decoration: none;
}

#breadcrumb li a::after {
	content: ">";
	display: inline-block;
	padding: 0 5px;
}

@media screen and (max-width: 700px) {
	#breadcrumb {
		margin: 0;
		padding: 10px 0;
	}
}

/* ==============================================
    contents
============================================== */
#contents {

}

.pdf a,
a.pdf {
	position: relative;
	display: inline-block;
	margin-left: 25px;
}
.pdf a::before,
a.pdf::before {
	position: absolute;
	content: "";
	display: inline-block;
	background: url("image/file_pdf.svg") no-repeat 0 0;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-left: -25px;
}



/* Youtube レスポンシブ用 */
.movie_wrap {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 700px) {
	table.scroll {
		overflow: auto;
		white-space: nowrap;
		display: block;
		width: auto;
	}
	table.scroll tbody {
		width: 100%;
	}
	table.scroll::-webkit-scrollbar {
		height: 5px;
	}
	table.scroll::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	table.scroll::-webkit-scrollbar-thumb {
		background: #bcbcbc;
	}
}

/* ==============================================
    pagetop
============================================== */
#pagetop {
    position: fixed;
    bottom: 0px;
    right: 0;
    display: none;
}
#pagetop img {
	cursor: pointer;
}

@media screen and (max-width: 700px) {
	#pagetop img {
		width: 50px;
		height: 50px;
	}
}

/* ==============================================
    f-sitemap
============================================== */
#f-sitemap {
	background: #0492e3;
	padding: 40px 0;
	line-height: 1.2;
}
#f-sitemap,
#f-sitemap a {
	color: #fff;
}
#f-sitemap a:hover {
	text-decoration: none;
}

#f-sitemap .inner {
	display: flex;
	justify-content: space-between;
	position: relative;
}
#f-sitemap nav {
	padding: 0 10px;
	min-width: 8em;
}

#f-sitemap nav ul {
	list-style: none;
}
#f-sitemap nav ul ul {
	margin-left: 1.5em;
}

#f-sitemap li {
	margin: 6px 0;
}
#f-sitemap nav:nth-child(6) li {
	margin-bottom: 30px;
}

#f-sitemap li a {
	border-left: 1px solid #fff;
	padding-left: 0.5em;
	white-space: nowrap;
}
#f-sitemap li li a {
	border: none;
	padding: 0;
	white-space: normal;
}


@media screen and (max-width: 1200px) {
	#f-sitemap .inner {
		flex-wrap: wrap;
	}
	body.home #f-sitemap .inner {
		padding-bottom: 150px;
	}
	#f-sitemap nav {
		width: 25%;
		margin: 0 0 20px;
	}
}

@media screen and (max-width: 700px) {
	#f-sitemap {
		display: none;
	}
	body.home #f-sitemap {
		display: block;
		background: #fff;
		padding: 10px 0;
	}
	body.home #f-sitemap nav {
		display: none;
	}
	body.home #f-sitemap .inner {
		display: block;
		padding-bottom: 0;
	}
	/*#f-iso {
		position: inherit;
		width: 40%;
		margin: 0 auto 10px auto;
	}*/
}


/* ==============================================
    footer
============================================== */
footer {
	background: #fff;
	padding: 30px 0;
}

body.home footer .inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
/*
footer .f-info strong {
	display: block;
	font-weight: normal;
}
footer address {
	font-style: normal;
}*/



#f-iso {
	width: 150px;
}


#copyright {
	text-align:right;
}



@media screen and (max-width: 1000px) {

}

@media screen and (max-width: 700px) {
	footer {
		padding: 0 0 20px;
	}
	footer .inner {
		display: block;
	}
	#f-iso {
		width: 40%;
		margin: 0 auto 20px auto;
	}
	#copyright {
		text-align:left;
		font-size: 11px;
	}
}


/* ==============================================
    slick style
============================================== */
.slick-dots li button::before {
	font-size: 12px;
	color: #bbb;
	opacity: 1;
	transition: .4s;
}
.slick-dots li.slick-active button::before {
	color: #000;
}
.slick-dots li button:hover::before {
	opacity: 0.8;
}

.slick-prev,
.slick-next {
	width: 40px;
	height: 40px;
	transform: translateY(-50%);
	z-index: 10;
}
.slick-prev:before,
.slick-next:before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	transition: .4s;
}

.slick-prev:before {
	background-image: url("image/slick_arrow.svg");
	transform: rotate(180deg);
}
.slick-next:before {
	background-image: url("image/slick_arrow.svg");
}
.slick-prev
{
    left: 10px;
}
[dir='rtl'] .slick-prev
{
    right: 10px;
    left: auto;
}
.slick-next
{
    right: 10px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 10px;
}
@media screen and (max-width: 700px) {
	.slick-prev,
	.slick-next {
		width: 20px;
		height: 20px;
		transform: translateY(-50%);
	}
	.slick-prev:before,
	.slick-next:before {
		width: 20px;
		height: 20px;
	}
	.slick-prev
	{
		left: 2px;
	}
	[dir='rtl'] .slick-prev
	{
		right: 2px;
		left: auto;
	}
	.slick-next
	{
		right: 2px;
	}
	[dir='rtl'] .slick-next
	{
		right: auto;
		left: 2px;
	}
}



/* ==============================================
    スクロールアニメーション
============================================== */
.scrollin {}
.fadein {}
.slidein {}

.scrollin.fadein {
	opacity : 0;
	visibility: hidden;
	transition: 0.5s;
	transform: translateY(100px);
}
.scrollin.fadein.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scrollin.slidein {
	opacity : 0;
	visibility: hidden;
	transition: 0.5s;
	transform: translateX(300px);
}
.scrollin.slidein.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
/* ==============================================
    modal
============================================== */
#mdOverlay {
	top: 0;
	left: 0;
	width: 100%;
	position: fixed;
	z-index: 1000;
	background: #000;
	display: none;
}

#mdWindow {
	/*margin-top: -200px;
	margin-left: -30%;*/
	top: 50%;
	left: 50%;
	width: 700px;
	/*height: 400px;*/
	transform: translate(-50%,-50%);
	position: fixed;
	z-index: 1001;
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	border: 4px solid #ff5e1e;
	display: none;
}

#mdWindow > .mdClose {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 46px;
	height: 46px;
	background: url("image/btn_close.svg") no-repeat 0 0;
	background-size: cover;
	cursor: pointer;
	z-index: 1002;
}
@media screen and (max-width: 1000px) {
	#mdWindow {
		width: 90%;
		padding: 20px;
	}
}


/* ==============================================
    recaptcha
============================================== */
.grecaptcha-badge {
    bottom: 100px !important;
}
@media screen and (max-width: 700px) {
	.grecaptcha-badge {
		bottom: 60px !important;
	}
}

