@charset "UTF-8";
/*------------------------------------------------------------------
********************************************************************
 * ▼構成
 * ・ベースとなるCSS
 * ・スマホ用（@media screen and (max-width: 767px) {} ）

 * 共通系
 * 社長メッセージ
 * 会社情報
 * アクセスマップ
********************************************************************
--------------------------------------------------------------------*/

/*--- 共通系 ---*/
.message_box,
.profile_box,
.accessmap_box{
	max-width: 1280px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.info_list{
	margin-top: 8px;
}

.info_list > li{
	display: flex;
}
@media screen and (max-width: 767px) {
	.info_list > li{
		flex-direction: column;
	}
}

.info_list > li .name{
	max-width: 425px;
	width: 100%;
	padding: 32px 0;
	border-bottom: #0f1f3f 1px solid;
	font-size: 16px;
	font-weight: 500;
}
@media screen and (max-width: 767px) {
	.info_list > li .name{
		padding: 24px 0 0;
		border-bottom: none;
		font-size: 4.26vw;
	}
}

.info_list > li .content{
	max-width: 855px;
	width: 100%;
	padding: 32px 0;
	border-bottom: #bcc1ca 1px solid;
	font-size: 16px;
	font-weight: 400;
}
@media screen and (max-width: 767px) {
	.info_list > li .content{
		padding: 10px 0 24px;
		font-size: 3.72vw;
	}
}


/*--- 社長メッセージ ---*/
.message_box{
	margin-top: 120px;
}
@media screen and (max-width: 767px) {
	.message_box{
		margin-top: 24px;
	}
}

.message_box .text_image{
	display: flex;
	flex-direction: row-reverse;
	gap: 60px;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.message_box .text_image{
		flex-direction: column;
		gap: 40px;
		margin-top: 24px;
	}
}

.message_box .text_image .text{
	max-width: 640px;
	width: 100%;
}

.message_box .text_image .text p{
	font-size: 16px;
	line-height: 2;
	color: #1a1a1a;
}
@media screen and (max-width: 767px) {
	.message_box .text_image .text p{
		font-size: 3.99vw;
		line-height: calc(28 / 15);
	}
}

.message_box .text_image .text p:not(:first-of-type){
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.message_box .text_image .text p:not(:first-of-type){
		margin-top: 24px;
	}
}

.message_box .text_image .text p.signature{
	text-align: right;
	line-height: 1.6;
}

.message_box .text_image .image{
	position: relative;
	max-width: 580px;
	width: 100%;
}
/*
.message_box .text_image .image .name{
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 180px;
	width: 100%;
	padding: 25px;
	background-color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}
@media screen and (max-width: 767px) {
	.message_box .text_image .image .name{
		bottom: 100px;
		max-width: 130px;
		padding: 10px 0 20px;
		font-size: 5.32vw;
	}
}

.message_box .text_image .image .name .position{
	font-size: 14px;
	font-weight: 400;
	color: #1a1a1a;
}
@media screen and (max-width: 767px) {
	.message_box .text_image .image .name .position{
		font-size: 3.19vw;
	}
}
*/


/*--- 会社情報 ---*/
.profile_box{
	margin-top: 120px;
}
@media screen and (max-width: 767px) {
	.profile_box{
		margin-top: 80px;
	}
}

.profile_box a[href="#map"]{
	display: inline-block;
	margin-left: 24px;
	padding: 13px 58px 17px 49px;
	background-color: #fff;
	background-image: url(../imgs/other/icon_map_01.png), url(../imgs/other/arrow_navy_to_bottom.png);
	background-repeat: no-repeat, no-repeat;
	background-position: center left 21px, center right 25px;
	background-size: 12px, 15px;
	border: #0f1f3f 1px solid;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #0f1f3f;
}
@media screen and (max-width: 767px) {
	.profile_box a[href="#map"]{
		display: block;
		width: 100%;
		margin: 17px 0 0;
		padding: 15px 45px 15px 49px;
		font-size: 3.72vw;
	}
}


/*--- アクセスマップ ---*/
.accessmap_box{
	margin-top: 120px;
}

.accessmap_box .map{
	width: 100%;
	padding-top: 80px;
}

.accessmap_box .map iframe{
	aspect-ratio: 64 / 25;
	max-width: 1280px;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 767px) {
	.accessmap_box .map iframe{
		aspect-ratio: 21 / 25;
	}
}
