@charset "UTF-8";

/**************************************/
/* 共通部分                           */
/**************************************/

html {
	font-size: 100%;
}

body {
	line-height: 1.7;	/* 行間1.7 */
	color: #432;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

/**************************************/
/* 大きな背景画像                     */
/**************************************/

/* 共通 */
.big-bg {
	background-size: cover;
	background-position; center top;
	background-repeat: no-repeat;
}

/**************************************/
/* 共通2                              */
/**************************************/

.wrapper {
	max-width: 1200px;
	margin: 0 auto;						/* 中央に配置する指定 */
	padding: 0 10px;					/* スマートフォン向け余白の指定 */
}

.narrow-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 10px;
}

.page-title {
	color: #fff;
	font-size: 4rem;
	text-transform: uppercase;
	font-weight: normal;
	text-shadow: 2px 2px 4px #333;
}

.sub-title {
	font-size: 1.4rem;
	padding: 0px 8px 8px;
	border-bottom: 2px #0bd solid;
	font-weight: normal;
}

/**************************************/
/* 共通3 汎用                         */
/**************************************/

.general-style dl {
	margin: 0 10px 0 10px;
	padding: 0;
	zoom: 100%;
}

.general-style dt {
	float: left;
	clear: left;
	margin: 0;
	padding: 12px 10px 10px 18px;
	text-align: left;
	line-height: 17px;
	min-height: 17px;
	font-weight: normal;
	width: 200px !important;
}

.general-style dd {
	margin: 0;
	padding: 12px 18px 10px 250px;
	text-align: left;
	line-height: 17px;
	min-height: 17px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #808080;
}

/**************************************/
/* ヘッダー                           */
/**************************************/

.page-header {
	display: flex;						/* 横並びの指定 */
	justify-content: space-between;		/* 両端の設置の指定 */
}

.logo {
//	width: 300px;
	margin-top: 15px;
//	margin: auto 0;
}

.main-nav {
	display: flex;
	font-size: 1.2rem;
	text-transform: uppercase;
	margin-top: 20px;
//	margin: auto 0;
	list-style: none;
}

.main-nav li {
	margin-left: 30px;
}

.main-nav a {
	color: #432;
	text-shadow: 1px 1px 2px #fff;
}

.main-nav a:hover {
	color: #eee;
	text-shadow: 1px 1px 2px #333;
}

/* ルビの指定 */
.main-nav rt {
	font-size: 0.75rem;
}

/**************************************/
/* フッター                           */
/**************************************/

footer {
	background: #432;
	text-align: center;
	padding: 20px 0;
}

footer p {
	color: #fff;
	font-size: 0.8rem;
}

/**************************************/
/* ホームページ                       */
/**************************************/

/* ホームページ */
#home {
	background-image: url(../img/main-bg.jpg);
	min-height: 100vh;
}

.home-content {
//	text-align: center;
	margin-top: 8%;
}

.home-content p {
	color: #fff;
	font-size: 1.2rem;
	margin: 10px 0 42px;
	text-shadow: 1px 1px 2px #333;
}

/**************************************/
/* 会社案内                           */
/**************************************/

/* 会社案内ページ */
#company-top {
//	background-image: url(../img/access-bg.jpg);
	background-image: url(../img/main-bg.jpg);
	min-height: 25vh;
}

.company-title {
	/* 
	margin-top: 8%;
	*/
}

#greeting {
	padding: 3% 0;
}

.president {
	display: flex;
	justify-content: space-between;
}

.president-image {
	width: 400px;
	padding: 10px;
}

.president-greetings {
	font-size: 1.2rem;
	width: 55%;
	padding: 30px 0 0 0;
}

.president-title {
	font-size: 1.5rem;
	margin: 10px 20px 0 0;
	text-align: right;
}

.president-name {
	font-size: 1.8rem;
	margin: 10px 20px 0 0;
	text-align: right;
}

#company-profile {
	padding: 0 0 3% 0;
}

#company-history {
	padding: 0 0 3% 0;
}

/**************************************/
/* 業務内容                           */
/**************************************/

#service-top {
//	background-image: url(../img/access-bg.jpg);
	background-image: url(../img/main-bg.jpg);
	min-height: 25vh;
}

.service-title {
	/* 
	margin-top: 8%;
	*/
}

#service {
	padding: 3% 0;
}

.service-item {
	display: flex;
	justify-content: space-between;
	padding: 10px 20px 0px;
}

.service-item-text {
	font-size: 0.9rem;
	width: 70%;
	padding: 0 0 0 20px;
}

.service-item-text p {
	padding: 0px 20px 0px;
}

.service-item-text-child {
	padding: 10px 0 0 40px;
}

.service-item-image {
	width: 200px;
}

/**************************************/
/* 実績                               */
/**************************************/

#achievement-top {
//	background-image: url(../img/access-bg.jpg);
	background-image: url(../img/main-bg.jpg);
	min-height: 25vh;
}

.achievement-title {
	/* 
	margin-top: 8%;
	*/
}

#achievement {
	padding: 3% 0;
}

.achieve-item {
	display: flex;
	justify-content: space-between;
	padding: 10px 20px 0px;
}

.achieve-item-text {
	font-size: 0.9rem;
	width: 70%;
	padding: 0 0 0 20px;
}

.achieve-item-text p {
	padding: 0px 20px 0px;
}

.achieve-item-text-child {
	padding: 10px 0 0 40px;
}

.achieve-item-image {
	width: 200px;
}



/**************************************/
/* 採用情報                           */
/**************************************/

/* 採用情報ページ */
#recruit-top {
//	background-image: url(../img/access-bg.jpg);
	background-image: url(../img/main-bg.jpg);
	min-height: 25vh;
}

.recruit-title {
	/* 
	margin-top: 8%;
	*/
}

#recruit-info {
	padding: 3% 0;
}

.recruit-info-child {
	padding: 0px 0px 30px;
}


/**************************************/
/* アクセス                           */
/**************************************/

/* アクセスページ */
#access-top {
//	background-image: url(../img/access-bg.jpg);
	background-image: url(../img/main-bg.jpg);
	min-height: 25vh;
}

.access-title {
	/* 
	margin-top: 8%;
	*/
}

#location {
	padding: 3% 0;
}

#location .location-child {
	display: flex;
	justify-content: space-between;
	padding: 10px 0px 0px;
}

.location-info {
	width: 40%;
	padding: 0 10px;
}

.location-info p {
	padding: 10px 8px;
}

.location-info-child h4 {
	font-size: 0.9rem;
	padding: 0px 20px;
}

.location-info-child p {
	padding: 0px 30px;
	font-size: 0.7rem;
}

.location-map {
	width: 56%;
}

iframe {
	width: 100%;
}





/**************************************/
/* サンプル                           */
/**************************************/

#hpb-main dl{
    margin-top: 0;
    margin-right: 5px;
    margin-bottom: 10px;
    margin-left: 5px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    zoom: 100%;
}

#hpb-main dt{
    float: left;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    text-align: left;
    line-height: 16px;
    min-height: 16px;
    font-weight: normal;
    width: 120px !important;
    padding-top: 12px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 18px;
    background-image : url(point_1Ha.png);
    background-position: 6px 10px;
    background-repeat: no-repeat;
}

#hpb-main dd{
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    text-align: left;
    line-height: 16px;
    min-height: 16px;
    padding-left: 155px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #818081;
}




