@charset "UTF-8";

/* リセット */
body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style: none;
}
img {
	vertical-align: bottom;
	max-width: 100%;
}
body{
	font-family: Meiryo,メイリオ,'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
@keyframes SlideDown {
0% {
opacity: 0;
transform: translateY(50px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
body{
animation-duration: 2s;
animation-name: SlideDown;
}
/*　スクロール　*/
html {
	scroll-behavior: smooth;
}
/*　ハンバーガーボタン　*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
	position: absolute;
	right: .8em;
	top: 2em;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	transition: all 0.4s;
	height: 3px;/*線の太さ*/
	width: 30px;/*長さ*/
	border-radius: 3px;
	background: #000;
	display: block;
	content: '';
	cursor: pointer;
	z-index: 9999;/*最前面*/
}
#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}
/*中身*/
#nav-content {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: .2s ease-in-out;
}
#nav-content.open {
	display: block;
	opacity: 1;
	overflow: auto;
	position: fixed;
	padding-top: 3em;
	top: 0;
	left: 0;
	z-index: 9998;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);/*背景色*/
	overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
}
/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
	content: '';
	overflow: hidden;
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: blur(10px);
	z-index: -1;/*重なり順序を一番下にしておく*/
}
/*チェックが入ったら表示する内容*/
.hamburger-top {
	height: 40px;/*×ボタンと被らないように*/
}
.category {
	text-align: left;
}
.category-title {
	padding: 0.25em 2.5em;
	list-style: none;
}
.category-title a{
	color: #2D0902;
	font-size: 18px;
	text-decoration: none;
}
/* リストメニュープルダウン  */
.category li {
	position: relative;
	text-align: center;
}
.category li a {
	display: block;
	/* width: 340px; */
	padding: 10px;
	border-radius: 10px;
}
.category li:hover > ul {
	display: block;
}
.category ul {
	display: none;
	position: absolute;
}
.category li a {
	display: block;
	text-decoration: none;
	font-family: Meiryo、メイリオ;
}
.category-title2 {
	margin-left: 5.5em;
}
.category-title2 {
	font-size: 13px;
}
/*子階層以降共通*/
.category li li {
	height: 0;
	overflow: hidden;
	transition: .5s;
	z-index: 999;
	width: 100%;
}
.category li li a {
	/* border-top: 1px solid #eee; */
	margin-top: .5em;
	margin-bottom: .6em;
	font-size: 16px;
	color: #000;
	background: #FFF;
}
.category li:hover > ul > li {
	height: 2em;
	overflow: visible;
}
.category li a:hover{
	/* color: #6C5A3A; */
	transition: color .4s;
}
/*三本線を動かす*/
#nav-open.active span {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
	background-color: #888;
}
#nav-open.active span:before {
	-webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
	transform: translateY(-8px) rotate(45deg);/*打ち消す*/
	opacity: 0;
}
#nav-open.active span:after {
	-webkit-transform: translateY(-16px) rotate(45deg);
	transform: translateY(-16px) rotate(90deg);
	background-color: #888;
}
/* トグルSP設定 */
@media (max-width: 880px){
	#nav-open{
		display: block;
	}
}
@media (min-width: 881px){
	#nav-open{
		display: none;
	}
}
/* ヘッダーデザイン */
header{
	width: 100%;
	height: 4.8em;
}
.header-left{
	position: absolute;
	top:0; left:140px;
	z-index: 2;
}
@media (max-width: 881px){
	.header-left{
		position: absolute;
		top:0; left:30px;
		z-index: 2;
	}
}
@media (max-width: 500px){
	.header-left{
		position: absolute;
		top:16px; left:10px;
		z-index: 2;
	}
	.header-left img{
		max-width: 60%;
	}
}

.header-left a:hover {
	opacity: 0.7;
	transition: .4s;
}
.header_wrapper{
	position: absolute;
	top:30px;
	right:40px;
	width: 140px;
	font-size: 18px;
}
@media (max-width: 500px){
	.header_wrapper{
		right:40px;
		font-size: 16px;
	}
}
/* インスタロゴ */
/* .fb{
float: left;
}
.fb img{
margin: .5em .3em;
} */
.acces_sp{
	border-radius: 5px;
	display: block;
	width: 150px;
	padding: 10px;
	box-sizing: border-box;
	background: #6fa1ff;
	color: #FFF;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
a{
	color: #FFF;
	text-decoration: none;
}
/* トップ画面デザイン */
.top_photo_pc{
	background: url(../images/iris_top_01.png)no-repeat center center /cover;
	height: 480px;
	position: relative;
}
.maintext{
	position: absolute;
	top: 22%;
	left: 15%;
	font-family: '游明朝','Yu Mincho',YuMincho;
}
.eng  .maintext{
	position: absolute;
	top: 18%;
	left: 10%;
	font-family: '游明朝','Yu Mincho',YuMincho;
}
.maintext-p{
	float: left;
}
.top_photo_pc h1{
	font-size: 64px;
	font-weight: normal;
	color: #000;
}
.eng .top_photo_pc h1{
	font-size: 56px;
}
.maintext span{
	color: #159fe4;
}
.top_photo_pc p{
	font-size: 18px;
	font-weight: normal;
	color: #000;
	float: left;
	margin-top: .5em;
	width: 750px;
}
.contact{
	width: 260px;
	background: #f79315;
	text-align: center;
	margin-top: .8em;
	margin-left: .2em;
	margin-right: .2em;
	padding-top: .3em;
	padding-bottom: .3em;
	border-radius: 4px;
	float: left;
}
.contact a{
	font-size: 18px;
	color: #FFF;
	text-decoration: none;
}
.contact a:hover{
	opacity: 0.5;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 6px;
}
.contact_sp{
	text-align: center;
	color: #2D0902;
}
.contact_sp p{
	margin-top: .4em;
	font-size: 15px;
}

@media (max-width: 1250px){
	.contact{
		width: 220px;
	}
	.contact a{
		font-size: 16px;
	}
}
@media (max-width: 1150px){
	.contact{
		width: 220px;
	}
	.contact a{
		font-size: 16px;
	}
}
@media (max-width: 1050px){
	.contact{
		margin-top: 1em;
		width: 220px;
	}
	.contact a{
		font-size: 16px;
	}
}
@media (max-width: 880px){
	.top_photo_pc {
		height: 320px;
	}
	.maintext{
		width: 680px;
		position: absolute;
		top: 22%;
		left: 50%;
		transform: translate(-50%,0%);
		text-align: center;
	}
	.top_photo_pc h1{
		font-size: 40px;
		text-align: center;
	}
	.top_photo_pc p{
		font-size: 16px;
		font-weight: normal;
		color: #000;
		float: none;
		width: auto;
		margin-left: 1em;
		margin-right: 1em;
	}
	.contact{
		display: none;
	}
}
@media (max-width: 680px){
	.maintext{
		width: 330px;
		position: absolute;
		top: 19%;
	}
	.maintext br{
		display: none;
	}
	.top_photo_pc h1{
		font-size: 30px;
		text-align: center;
	}
	.top_photo_pc p{
		font-size: 15px;
		font-weight: normal;
		color: #000;
		float: none;
	}
}
@media (min-width: 680px){
	.top_photo_sp{
		display: none;
	}
}

/* ナビデザイン */
.top_wrapper{
	width: 100%;
	background: #f77715;
	height: 48px;
}
.menu {
	display: flex;
	height: 3em;
	margin: 0 auto;
	width: 960px;
}
@media (max-width: 980px){
	.menu {
		width: 780px;
	}
}
.menu > li {
	width: 25%;
}
/*全てのリスト・リンク共通*/
.menu li {
	list-style: none;
	position: relative;
}
.menu li a {
	color: #fff;
	font-size: 17.5px;
	letter-spacing: 0.12em;
	display: block;
	line-height: 2.5em;
	text-align: center;
	text-decoration: none;
}
@media (max-width: 880px){
	.top_wrapper{
		display: none;
	}
}

/* 扱い分野と言語 */
.language{
	width: 760px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.language img{
	margin: 3em;
}

@media (max-width: 768px){
	.language{
		width: auto;
	}
	.language img{
		margin: 1.5em;
	}
}
.content_about{
	margin-top: 5em;
}
.content_about h1{
	color: #462600;
	text-align: center;
	margin-top: 1.6em;
	text-align: center;
	font-size: 30px;
	font-weight: normal;
}
.content_text{
	width: 1028px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 1050px){
	.content_text{
		width: auto;
		margin-left: 3em;
		margin-right: 3em;
	}
}
.content_text h4{
	font-size: 17px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 2em;
	text-align: center;
}
.content_text h4 a{
	text-decoration: none;
}
.line{
	padding-bottom: 2em;
	text-align: center;
}

/* content_box1設定 */
.content_wrapper::after{
	content: "";
	display: block;
	clear:both
}
.content_service::after{
	content: "";
	display: block;
	clear: both;
}
@media (max-width: 880px){
	.content_text{
		margin: auto;
		padding-left: 1em;
		padding-right: 1em;
		width: auto;
	}
}
@media (max-width: 768px){
	.title{
		font-size: 24px;
		margin-bottom: .2em;
		margin-top: .2em;
	}
	.content_about h1{
		font-size: 26px;
	}
	.content_text h4 {
		text-align: left;
		text-align: justify;
	}
	.content_text br{
		display: none;
	}
	.line{
		padding-bottom: 1em;
	}
}
@media (max-width: 768px){
	.content_text{
		margin: auto;
		padding-left: 2em;
		padding-right: 2em;
		width: auto;
	}
}
/* point1設定 */
.point1{
	float: left;
	width: 50%;
	height:310px;
	object-fit: cover;
	background: #f75d15;
}
.Point_1{
	margin-left: 4em;
	margin-right: 4em;
	margin-top: 2em;
}
.Point_1 p{
	font-weight: bold;
	font-size: 24px;
	color: #FFF;
	font-family: Meiry,メイリオ;
}
.Point_1_text{
	margin-top: .5em;
	font-size: 16px;
	color: #FFF;
	/* text-align:justify; */
	font-family: Meiryo、メイリオ;
}

.parts_hand1{
	background: url(../images/parts_point1A.png)no-repeat center center /cover;
	height: 310px;
	width:50%;
	float:left;
}
.parts_hand2{
	background: url(../images/parts_point2A.png)no-repeat center center /cover;
	height: 310px;
	width:50%;
	float:left;
}
.parts_hand3{
	background: url(../images/parts_point3A.png)no-repeat center center /cover;
	height: 310px;
	width:50%;
	float:left;
}

@media (max-width: 1050px){
	.parts_hand1{
		display: none;
	}
	.parts_hand2{
		display: none;
	}
	.parts_hand3{
		display: none;
	}
}
@media (max-width: 1050px){
	.point1{
		float: none;
		width: auto;
		height:auto;
		object-fit: cover;
		background: #f75d15;
	}
	.Point_1{
		padding-top: 2.4em;
		padding-bottom: 3em;
		margin-left: 3em;
    margin-right: 3em;
	}
	.parts_hand img{
		display: none;
	}
}
.button_point1{
	margin-top: 2.5em;
}
.button_point1 a {
	font-size: 14px;
	font-family: Meiryo、メイリオ;
	padding: 14px 40px;
	color: white;
	border: 1px solid #FFF;
	color: #FFF;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 6px;
}
.button_point1 a:hover{
	opacity: 0.7;
	color: #f75d15;
	background: #FFFFFF;
}
/* point2設定 */
.point2{
	float: left;
	width: 50%;
	height:310px;
	object-fit: cover;
	background: #0c003d;
}
.Point_2{
	margin-left: 3em;
	margin-right: 3em;
	margin-top: 2em;
}
.Point_2 p{
	font-weight: bold;
	font-size: 24px;
	color: #FFF;
	font-family: Meiryo、メイリオ;
}
.Point_2_text{
	margin-top: .5em;
	font-size: 16px;
	color: #FFF;
	/* text-align:justify; */
	font-family: Meiryo、メイリオ;
}
.button_point2{
	margin-top: 2.5em;
}
.button_point2 a {
	font-size: 14px;
	font-family: Meiryo、メイリオ;
	padding: 14px 40px;
	color: white;
	border: 1px solid #FFF;
	color: #FFF;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 6px;
}
.button_point2 a:hover{
	opacity: 0.7;
	color: #0c003d;
	background: #FFFFFF;
}
@media (max-width: 1050px){
	.point2{
		float: none;
		width: auto;
		height:auto;
		object-fit: cover;
	}
	.Point_2{
		margin-top: 0em;
		padding-top: 2.4em;
		padding-bottom: 3em;
	}
}
/* point3設定 */
.point3{
	float: left;
	width: 50%;
	height:310px;
	object-fit: cover;
	background: #f79315;
}
.Point_3{
	margin-left: 3em;
	margin-right: 3em;
	margin-top: 2em;
}
.Point_3 p{
	font-weight: bold;
	font-size: 24px;
	color: #FFF;
	font-family: Meiryo、メイリオ;
}
.Point_3_text{
	margin-top: .5em;
	font-size: 16px;
	color: #FFF;
	/* text-align:justify; */
	font-family: Meiryo、メイリオ;

}
.button_point3{
	margin-top: 2.5em;
}
.button_point3 a {
	font-size: 14px;
	font-family: Meiryo、メイリオ;
	padding: 14px 40px;
	color: white;
	border: 1px solid #FFF;
	color: #FFF;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 6px;
}
.button_point3 a:hover{
	opacity: 0.7;
	color: #f79315;
	background: #FFFFFF;
}
@media (max-width: 1050px){
	.point3{
		float: none;
		width: auto;
		height:auto;
		object-fit: cover;
	}
	.Point_3{
		margin-top: 0em;
		padding-top: 2.4em;
		padding-bottom: 3em;
	}
}

/* content_3設定 */
.content_3{
	width: 780px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 768px){
	.content_3{
		width: auto;
		margin-left: 1.5em;
		margin-right: 1.5em;
	}
}
.content-contener::after{
	content: "";
	display: block;
	clear: both;
}
.content-contener{
	margin-bottom: 2.4em;
}
.orange-line{
	background: #f79315;
}
.orange-line h3{
	font-weight: normal;
	font-size: 19px;
	color: #FFF;
	padding: 10px 24px;
	font-family: Meiryo,メイリオ;
}
.squear{
	float: left;
}
.squear img{
	margin-top: 1em;
	margin-right: 1em;
}
.squear_text{
	margin-top: 1em;
	font-family: Meiryo,メイリオ;
	text-align: justify;
	line-height: 1.8em;
}
/* footer設定 */
footer{
	margin-top: 4.5em;
}
.footer-wrapper{
	background: #123166;
	width: 100%;
	height: 350px;
	text-align: center;
}
.footer-title{
	padding-top: 3em;
}
.footer-title h5{
	font-size: 30px;
	color: #FFF;
	font-family: Meiryo,メイリオ;
}
.footer-title p{
	font-size: 18px;
	color: #FFF;
	font-family: Meiryo,メイリオ;
}
.footer-button{
	margin-top: 2em;
}
.footer-button a {
	font-size: 18px;
	font-family: Meiryo、メイリオ;
	padding: 14px 60px;
	background: #f75d15;
	/* border: 1px solid #FFF; */
	color: #FFF;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 6px;
}
.footer-button a:hover{
	opacity: 0.7;
}
.footer-wrapper a:hover{
	opacity: 0.7;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 6px;
}
.footer-wrapper img{
	margin-top: 3.5em;
}
@media (min-width: 769px){
	.footer-title br{
		display: none;
	}
}
@media (max-width: 768px){
	.footer-title{
		padding-left: 1.5em;
		padding-right: 1.5em;
	}
	.footer-title br{
		display: block;
	}
	.footer-wrapper img {
		margin-top: 1.5em;
	}
}
/* コピーライト設定 */
.copyright{
	font-size: 14px;
	margin-top: 2em;
	text-align: center;
	margin-bottom: 2em;
}
