@charset "utf-8";
/* CSS Document */

/**{
	outline: 1px solid red;
}*/

html {
	font-size: 100%;
}

body {
	font-size: 0.875rem;/*14px*/
	background-color: #F0F0F0;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

.container {
	max-width: 1032px;
	margin: 0 auto;
	padding: 0 16px;
}


/*=====共通-section=====*/

.section_content{
	margin-bottom: 120px;
}

.section_title {
	margin-bottom: 54px;
}

.section_title .en{
	display: block;
	text-transform: uppercase;
	font-size: 2.25rem;/*36px*/
	letter-spacing: 0.3em;
	margin-bottom: 20px;
}

.section_title .ja {
	display: block;
	margin-bottom: 40px;
}

.section_title::after {
	content: "";
	display: block;
	width: 40px;
	height: 1px;
	background-color: #000;
	
}


/*=====#header-=====*/

#header {
	height: 80px;
	position: relative;
}

#header .container {
	height: 80px;
	display: flex;
	align-items: center;
}

.site_title img{
	width: 100px;
	margin-right: 60px;
}

.site_menu ul{
	display: flex;
}

.site_menu ul li {
	margin-right: 30px;
}

.info_btn {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 0.75rem;
	color: #fff;
}

.info_btn a {
	display: block;
	width: 200px;
	height: 80px;
	background-color: #000;
	text-align: center;
	line-height: 80px;
}


/*=====.main_visual=====*/

.main_visual img{
	width: 100%;
	height: calc( 100vh - 80px );
	object-fit: cover;
	margin-bottom: 130px;
}

/*=====#news =====*/

.news_list {
	display: flex;
	justify-content: space-between;
}

.news_list li {
	border-left: solid 1px #000;
	padding: 10px 20px;
}

.news_list li:first-child {
	border-left: none;
}

.news_icon {
	display: inline-block;
	color: #fff;
	background-color: #000;
	text-transform: uppercase;
	font-size: 0.75rem;
	padding: 5px 7px;
	margin-left: 20px;
}

.news_content {
	font-size: 1rem;
	margin-top: 20px;
}

/*=====#about =====*/	

#about {
	display: flex;
}	

.about_img {
	width: 55%;
	height: 400px;
	margin-right: 70px;
	background-color: red;
}

.about_img img{
	width: 100%;
	height: 400px;
	object-fit: cover;
	
}

.about_content {
	width: calc( 40% - 70px);
	padding-right: 5%;
	margin-top: 200px;
}

.about_text {
	line-height: 2.2;
}


/*=====#business =====*/

.business_content {
	display: flex;
	justify-content: center;
}

.imgbox_left {
	margin-right: 64px;
	margin-top: 120px;
}

.business_imgbox li:first-child {
	margin-bottom: 53px;
}

.business_imgbox img {
	width: 368px;
	height: 232px;
	object-fit: cover;
}

.business_imgbox p {
	margin-bottom: 13px;
	display: flex;
	align-items: center;
}

.business_imgbox p::before {
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	background-color: #000;
	margin-right: 10px;
}


/*=====#company =====*/

#company {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.company_content {
	background-color: #fff;
	width: 567px;
	padding: 110px 80px 104px 60px;
}

.company_img {
	margin-left: -80px;
}

.company_img img{
	width: 547px;
	height: 400px;
	object-fit: cover;	
}

.company_info {
	display: flex;
	flex-wrap: wrap;
	line-height: 2rem;
}

.company_info dt {
	width: 20%;	
	font-weight: normal;
}

.company_info dd {
	width: 80%;	
}

/*=====footer =====*/

#footer {
	background-color: #fff;	
}

.footer_info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 44px;
}

.footer_info address {
	line-height: 1.5rem;
}

.footer_copyright {
	font-size: 0.75rem;
	padding: 25px 0;
}



/*=====スマホ=====*/

@media screen and ( max-width : 900px ){
	
.container {
	width: 100%;
}
	

/*=====共通-section=====*/

.section_content{
	margin-bottom: 90px;
}

.section_title {
	margin-bottom: 37px;
}

.section_title .ja {
	margin-bottom: 28px;
}


/*=====#header-=====*/

#header {
	height: 80px;
	position: relative;
	padding: 18px 0;
}

#header .container {
	flex-direction: column;
	align-items: flex-start;
	
}

.site_title img{
	width: 80px;
	margin-right: 0;
	margin-bottom: 10px;
}

.info_btn {
	display: none;
}

/*=====.main_visual=====*/

.main_visual img{
	margin-bottom: 90px;
}

/*=====#news =====*/

.news_list {
	flex-direction: column;	
}

.news_list li {
	border: none;
	padding: 10px 0 40px;
}

/*=====#about =====*/	

#about {
	flex-direction: column;
}	

.about_img {
	width: 100%;
	height: 300px;
	margin-right: 0;
	margin-bottom: 40px;
}

.about_img img{
	height: 300px;	
}

.about_content {
	width: 100%;
	padding: 0 16px;
	margin-top: 0;
}

/*=====#business =====*/

.business_content {
	flex-direction: column;
}

.imgbox_left {
	margin: 0;
}

	.imgbox_left li,
	.imgbox_right li{
		margin-bottom: 33px;
	}

	.business_imgbox li:first-child {
	margin-bottom: 33px;
}
	
	.imgbox_right li:last-child {
		margin-bottom: 0;
	}

	
.business_imgbox img {
	width: 100%;
	height: auto;
}

/*=====#company =====*/

#company {
	flex-direction: column;
}


.company_content {
	background-color: #fff;
	width: 100%;
	padding: 50px 20px 44px;
	margin-bottom: 20px;
}

.company_img {
	margin-left: 0px;
}

.company_img img{
	width: 100%;	
}

	#company.section_content {
		margin-bottom: 0;
	}

/*=====footer =====*/

.footer_info {
	flex-direction: column;
	align-items: flex-start;
}
	
	
	
}/*media*/

















