@charset "utf-8";
/* CSS Document */
/*====================
 - 1280px〜：大型PC
 - 960px〜1279px：小型PC
 - 600px〜959px：タブレット
 - 480px〜599px：スマートフォン横
 - 〜479px：スマートフォン縦
====================*/

/******* 全ページ共通 ********/
html {
	font-size: 62.5%;
	overflow-y:scroll;
	scroll-behavior: smooth;
}
body{
	font-family: source-han-serif-japanese,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","游明朝体",YuMincho,"Yu Mincho","ＭＳ Ｐ明朝","MS PMincho",serif;
	width: 100%;
	line-height: 2;
	font-size: 16px;
  	font-size: 1.6rem;/*1rem = 10px*/
	color: #1d1d1d;
	background-color: #fefefe;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-x: hidden !important;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}

a p,a img{
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
header .global_nav a:hover,footer .footer_navigation a:hover{
	opacity: 0.6;
	transition : 1s;
}
ol{
	list-style: decimal;
}
/* SVGリンク化 */
object {
  pointer-events: none;
}

/*** ボタン ***/
.btn{
	width: 100%;
	min-width: 250px;
	margin-top: 4rem;
}
.btn a,.container .btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  width: 40%;
	min-width: 300px;
  border: 1px solid #CFCFCF;
  font-size: 18px;
  font-weight: 700;
  background-color: #fefefe;
  transition: 0.3s;
	color: #707070;
	text-decoration: none;
}
.btn a::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 1px;
  background-color: #A62A2A;
  transition: 0.3s;
}
.btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background-color: #A62A2A;
  transition: 0.3s;
}
.btn a:hover,.container .btn a:hover {
  text-decoration: none;
}
.btn a:hover::before,
.btn a:hover::after {
  right: -2.5em;
}

@media screen and (max-width:499px) { 
	.btn a,.container .btn a{
		width: 250px;
	}
}

/***** ハンバーガーメニュー *****/
.hm_menu {
	position: fixed;
	right: -100%;
	width: 100%;
	height: 100vh;
	padding-top: 2.8rem;
	display: flex;
	flex-direction: column;
	color: #fefefe;
	background-color: rgba(166, 42, 42, 1);
	transition: .3s;
	z-index: 100;
}
.hm_menu li {
	width: 80%;
	height: 6rem;
	display: flex;	
	border-bottom: solid 0.5px #fefefe;
	margin: 0 auto ;
	}
.hm_menu li a{
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	align-items: center;
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hm_menu li a:hover{
	opacity: .5;
}
.hm_btn {
	position: fixed;
	top: 2.4rem;
	right: 2.4rem;
	width: 4.8rem;
	height: 4.8rem;
	z-index: 101;
	cursor: pointer;
}
.hm_btn:before{
	content:'';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	border-radius: 50%;
    border: 0.0625rem solid #CFCFCF;
	z-index: 0;
	cursor: pointer;
}
.btn_line {
	display: block;
	position: relative; 
	top:0;
	left: 26%;
	width: 48%;  
	height: 2px;
	background-color: #CFCFCF; 
	transition: .2s;
}
.btn_line::before,.btn_line::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #CFCFCF;
	transition: .5s;
}
.btn_line::before {
	
	transform: translateY(-1rem);
}
.btn_line::after {
	
	transform: translateY(1rem);
}
.hm_menu.open {
	right: 0;
}
.hamburger_menu{
	width: 100%;
	height: 100%;
}
.btn_line.open {
	background-color: transparent; 
}
.btn_line.open::before ,
.btn_line.open::after {
	content: "";
	background-color: #ccc; 
	transition: .2s;
}
.btn_line.open::before {
	transform: rotate(45deg); 
}
.btn_line.open::after {
	transform: rotate(-45deg); 
}
	
@media screen and (max-width:599px) {
	.menu_lisu_top{
		margin-top:68px;
	}
}

/***** ヘッダー *****/
header{
	width: 100%;
	height: 10rem;
	padding: 2rem 2.8rem;
	position: relative;
	box-sizing: border-box;
	z-index: 1;
	background: #fefefe;
}
header .wrap{
	display: flex;
	align-items: center;
	justify-content:space-between;
	width: 100%;
	height: 4.8rem;
}

/*** ロゴ ***/
header h1 a{
	display: flex;
	align-items: center;
}
.logo object {
  width: clamp(3.2rem, 4vw, 4rem);
  height: auto;
}
.logo object:hover {
  cursor: pointer;
}
header h1 .company_name{
	font-size: clamp(2rem, 3vw, 2.8rem);
	margin-left: 1rem;
	color: #222;
}
/*** ヘッダーhome ***/
.home header{
	position: absolute;
	top:0;
	left: 0;
}

/*** グローバルナビ ***/
.nav_wrap{
	display: flex;
	justify-content:space-between;
}
.global_nav{
	margin: 0.8rem 0 0 0;	
}
.global_nav ul{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 4.8rem;
}
.global_nav ul li{
	margin-right: 2.8rem;
	display:block;
	font-size: 1.6rem;
}
.global_nav ul li a{
	position: relative;
	display: inline-block;
	transition: all .3s;
}
@media screen  and (max-width:999px)  {
 	.global_nav ul{
		display: none;
	}
}

/*** メインビジュアル ***/
.mainvisual{
	position: relative;
	z-index: -1;
}
.mainvisual .wrap{
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: -1;
}
.main_slide{
	width: 100%;
	position: fixed;
	display: block;
	z-index: -1;
} 
.catch{
	margin: auto;
	position: absolute;
	top: 28%;
	left: 8%;
	right: 0;
	z-index: 20;
	color: #fefefe;
	font-size: clamp(2.2rem, 3.6vw, 3.6rem);
	/*text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);*/
}
.catch .primary{
	background: #A62A2A;
width: fit-content;
padding: 0 2rem;
margin-bottom: 2rem;
}
/* パソコンで見たときは"pc"のclassがついたタグが表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついたタグが表示される */
@media only screen and (max-width: 699px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
@media screen and (min-width:600px) and (max-width:979px) {
	.catch{
		width: 100%;
		padding: 0 2rem;
	}
}
@media screen and (max-width:599px) { 
	.catch{
		top: 56%;
	}
}

/***** フッター *****/
footer{
	padding: 8rem 0 0;
	background: #fefefe;
}
@media screen and (max-width:599px) { 
	footer{
		font-size: 1.4rem;
	}
}

/***** フッター・About　*****/
.title_en_jp{
	display: flex;
}
.title_en_jp .title_en{
	font-size:3.6rem;
	padding-right: 1.2rem;
	display: flex;
	align-items: center;
}
.title_en_jp .title_en::after{
	content: "";
	width: 2.8rem;
	height: 1px;
	margin-left: .4em;
	background:#707070;
}
.title_en_jp .title_jp{
	font-size:2rem;
	align-items: center;
	position: relative;
	top: 1.8rem;
}

/*フッター*/
@media screen and (max-width:699px){
	.footer_contact .title_en_jp .title_en::after{
		content:none;
	}
}
/*About*/
@media screen and (max-width:959px) {
	.home_about .title_en_jp{
	margin-left: auto;
	margin-right: auto;	
		width: 88%;
}
}
@media screen and (max-width:599px) {
	.home_about .title_en_jp{
		display: block;
}
	.home_about .title_en_jp .title_en::after{
		content:none;
	}
	.home_about .title_en_jp .title_en{
		line-height: 1.6rem;
	}
	.title_en_jp .title_jp{
		font-size:1.8rem;
		top:1.8rem;
	}
}

/*** フッターお問合せ ***/
.footer_contact{
	width: 100%;
	padding: 4rem 0 5.2rem;
}
.contact_btn {
	   width: 90%;
	max-width: 1000px;
	margin: auto;
}
.contact_btn a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	font-size: 2.4rem;
	text-decoration: none;
	background: transparent;
	border: solid 1px #707070;
	transition: all 0.2s ease;
	padding: 3.6rem 4.8rem;
}
.contact_btn_text{
	display: flex;
}
.contact_btn a::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 1px;
  background-color: #A62A2A;
  transition: 0.3s;
}
.contact_btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background-color: #A62A2A;
  transition: 0.3s;
}
.contact_btn a:hover {
  text-decoration: none;
	opacity: 1;
	border: solid 1px #A62A2A;
}
.contact_btn a:hover::before,
.contact_btn a:hover::after {
  right: 0.8em;
}

@media screen and (max-width:699px) { 
	.contact_btn_text{
		display: block;
		padding: 1.6rem 0;
	}
	.contact_btn_text .title_en{
		line-height: 1.6rem;
	}
	.contact_btn{
		width: 94%;
	}
}

@media screen and (max-width:499px) { 
	.contact_btn_text .title_jp{
		display: none;
	}
	.contact_btn {
	width: 96%;
}
	.contact_btn a{
		padding: 2.4rem;
	}
	.contact_btn a::before,.contact_btn a::after{
		right: 1.2em;
	}
	.contact_btn a:hover::before,.contact_btn a:hover::after {
	  right: 0.4em;
	}
}

/*** 住所 ***/
.footer_address{
	width: 100%;
	margin: 0 auto;
	color: #fefefe;
	position: relative;
	background-color: rgba(166, 42, 42, 1);
	font-size: 1.5rem;
}
.footer_address .wrap{
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	padding: 68px 0;
	display: flex;
	justify-content:flex-start;
	position: relative;
	z-index: 3;
}

.footer_address .wrap .footer_name{
	width: 28%;
}
.footer_address .wrap .footer_address_center{
	width: 38%;
	padding-right: 2.8rem;
}
.footer_address .wrap .footer_address_right{
	width: 34%;
}
.footer_address h2 .name_jp{
	font-size: 1.8rem;
}
.footer_address h3{
	margin-bottom: .8rem;
}
@media screen and (max-width:959px) { 
	.footer_address .wrap{
		max-width: none;
		display: block;
		padding: 4.8rem 0;
	}
	.footer_address .wrap .footer_name,.footer_address .wrap .footer_address_center,.footer_address .wrap .footer_address_right{
		width: 100%;
	}
	.footer_address_center{
		margin: 1.6rem 0;
	}
	.footer_banner{
		width: 50%
	}
}
@media screen and (max-width:599px){
	.footer_banner{
		width: 100%
	}
}

/*** フッターボトム***/
.footer_bottom{
	width: 90%;
	max-width: 1000px;
	display: flex;
	justify-content: space-between;
	margin: 4rem auto;
}
/* フッターロゴ */
.footer_logo{
	transition: all .3s;
}
.footer_logo object {
  width: clamp(12rem, 18vw, 16rem);
  height: auto;
}
.footer_logo:hover{
	cursor: pointer;
	opacity: 0.8;
}
/* フッターナビ */
.footer_navigation{
	width: 76%;
	max-width: 800px;
	padding: 4rem 0;
	margin-left: 4rem;
}
.footer_nav{
	margin: 0 0 2rem;
}
.footer_nav ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.footer_nav ul li a{
	position: relative;
	display: inline-block;
	transition: all .3s;
}
/* フッターバナー */
.banner{
	margin-bottom: 4rem;
}
.banner .wrap{
	margin: 0 auto;
	width: 90%;
	max-width: 1000px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	grid-gap: 20px;
}
.banner .wrap a{
	transition: all .3s;
}
.banner .wrap a:hover{
	opacity: 0.7;
}
.banner_text{
	max-height: 148px;
}
.banner_text p{
	line-height: 1.6;
}
.banner_title{
	font-size: clamp(1.8rem, 3.4vw, 2.2rem);
	font-weight: bold;
}
.banner_sub{
	
}
.shoueitochi{
	background: #fcfcfc;
	border: 1px solid #cbcbcb;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/*** コピーライト ***/
.copyright{
	padding: 2rem 0;
	font-size: 1.2rem;
	text-align: center;
	background: #222;
	color: #fefefe;
}

@media screen and (max-width:959px) { 
	.footer_bottom{
		width: 92%;
	}
	.footer_nav{
		width: 100%;
		font-size: 1.4rem;
	}
}
@media screen and (min-width:700px) and (max-width:959px){
	.footer_logo .svg_container{
		width: 80%;
		height: auto;
	}
}
@media screen and (max-width:699px) { 
	.footer_logo_eiyu-tec{
		text-align: center;
	}
	.footer_bottom{
	display: block;
}
	.footer_navigation{
		display: none;
	}
}
@media screen and (max-width:555px) {
	.shoueitochi{
		padding: 2.8rem 0;
	}
	.banner_title{
		font-size: clamp(1.8rem, 4.8vw, 4.8rem);
	}
	.banner_sub{
		font-size: clamp(1.4rem, 3.2vw, 1.8rem);
	}
}