@charset "utf-8";

/***************************************************************************

  共通

***************************************************************************/
/*****************************************
  ページタイトル
*****************************************/
.lowerTtlBlock {
	width: 100%;
}

.lowerTtlBlock .wrap {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto 80px;
	background: url(../images/title_bg.jpg) no-repeat center center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	padding: 90px 0;
}

.lowerTtlBlock h2 {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
	.lowerTtlBlock .wrap {
		margin: 0 auto 40px;
		padding: 40px 0;
	}

	.lowerTtlBlock h2 {
		font-size: 22px;
	}

}

/*****************************************
  段落文章
*****************************************/
p.txt {
	text-align: center;
	font-size: 18px;
	line-height: 1.8;
	margin: 0 0 1.8em;
}

@media screen and (max-width: 767px) {
	p.txt {
		font-size: 14px;
	}
}

/*****************************************
  リスト
*****************************************/
.listWrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	margin: 50px 0;
}

ol {
	font-size: 18px;
	list-style: decimal;
}

ol li {
	padding-bottom: 5px;
}

@media screen and (max-width: 767px) {
	.listWrap {
		margin: 25px 0;
	}

	ol {
		font-size: 14px;
	}

	ol li {
		padding-bottom: 3px;
	}
}

/*****************************************
  ボーダーつきブロック要素
*****************************************/
.borderBlock {
	width: 100%;
	margin: 0 0 80px;
}

.borderBlock .wrap {
	width: 100%;
	width: 800px;
	margin: 0 auto;
	border: solid 4px #ED7D31;
	border-radius: 40px;
	padding: 60px 60px 70px;
}

.borderBlock h2 {
	text-align: center;
	font-weight: bold;
	font-size: 28px;
	margin: 0 0 35px;
	letter-spacing: 0.2em;
}

.borderBlock dl {
	width: 100%;
}

.borderBlock dl dt {
	font-size: 22px;
	display: block;
	padding: 0 0 5px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.borderBlock dl dd {
	font-size: 18px;
	display: block;
	padding: 0 0 30px;
}

.borderBlock dl dd:last-child {
	padding: 0 0 0;
}

.borderBlock dl dd p {
	padding: 0 0 0;
}

.borderBlock dl dd p:has(+ *) {
	padding: 0 0 1em;
}

.borderBlock dl dd ul li {
	display: block;
	padding: 0.3em 0 0.3em 1em;
	position: relative;
}

.borderBlock dl dd ul li::before {
	content: '●';
	font-size: 8px;
	position: absolute;
	top: calc(2.2em - 4px);
	left: 0;
}

.borderBlock table {
	width: 100%;
}

.borderBlock table th,
.borderBlock table td {
	padding: 10px 10px;
	vertical-align: top;
	font-size: 18px;
}

.borderBlock table th {
	width: 140px;
}

.borderBlock table td ul li {
	display: block;
	padding: 0 0 0.3em 1em;
	position: relative;
}

.borderBlock table td ul li a {
	text-decoration: underline;
	transition: 0.3s;
}

.borderBlock table td ul li a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.borderBlock table td ul li::before {
	content: '●';
	font-size: 8px;
	position: absolute;
	top: calc(1.5em - 4px);
	left: 0;
}

.icnList {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0 40px;
}

.icnList li {
	width: 141px;
}

.icnList li img {
	width: 100%;
}

ol {
	list-style: decimal;
	margin: 0 0 0 1.5em;
}

ol li {
	padding: 0.3em 0 0 0;
}

@media screen and (max-width: 767px) {
	.borderBlock {
		width: 100%;
		margin: 0 0 40px;
		padding: 0 15px;
	}

	.borderBlock .wrap {
		width: 100%;
		border: solid 3px #ED7D31;
		border-radius: 20px;
		padding: 30px 15px 30px;
	}

	.borderBlock h2 {
		font-size: 20px;
		margin: 0 0 15px;
	}

	.borderBlock dl {
		width: 100%;
	}

	.borderBlock dl dt {
		font-size: 16px;
		padding: 0 0 5px;
	}

	.borderBlock dl dd {
		font-size: 14px;
		padding: 0 0 20px;
	}

	.borderBlock dl dd ul li {
		display: block;
		padding: 0.2em 0 0.2em 1em;
		position: relative;
	}

	.borderBlock dl dd ul li::before {
		content: '●';
		font-size: 8px;
		position: absolute;
		top: calc(1.4em - 4px);
	}

	.borderBlock table {
		width: 100%;
	}

	.borderBlock table th,
	.borderBlock table td {
		padding: 0 0 5px;
		vertical-align: top;
		font-size: 14px;
		display: block;
	}

	.borderBlock table th {
		width: 100%;
		font-size: 16px;
	}

	.borderBlock table td {
		padding: 0 0 20px;
	}

	.borderBlock table tr:last-child td {
		padding: 0 0 0;
	}

	.borderBlock table td ul li {
		display: block;
		padding: 0.2em 0 0.2em 1em;
		position: relative;
	}

	.borderBlock table td ul li a {
		text-decoration: underline;
		transition: 0.3s;
	}

	.borderBlock table td ul li a:hover {
		text-decoration: none;
		opacity: 0.7;
	}

	.borderBlock table td ul li::before {
		content: '●';
		font-size: 8px;
		position: absolute;
		top: calc(1.4em - 4px);
		left: 0;
	}

	.icnList {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 0 4vw;
	}

	.icnList li {
		width: 20vw;
		max-width: 80px;
	}

	.icnList li img {
		width: 100%;
	}

	ol {
		list-style: decimal;
		margin: 0 0 0 1.5em;
	}

	ol li {
		padding: 0.3em 0 0 0;
	}
}

@media screen and (max-width: 440px) {
	.borderBlock h2.h2Small {
		font-size: 4.2vw;
		margin: 0 0 15px;
	}
}

/***************************************************************************

  会社案内

***************************************************************************/
h2.commonTtlH2 {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	margin: 0 0 30px;
}

h2.commonTtlH2 span {
	display: block;
	font-size: 22px;
	padding: 0 0 10px;
}

.companyGreetingBlock {
	width: 100%;
	position: relative;
	padding: 0 0 180px;
}

.companyGreetingBlock::after {
	content: '';
	width: 100%;
	max-width: 1260px;
	height: 100px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto 80px;
	background: url(../images/title_bg.jpg) no-repeat center center;
	background-size: 100% auto;
}

.companyGreetingBlock .wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.companyMissionBlock {
	width: 100%;
	position: relative;
	padding: 0 0 50px;
}

.companyMissionBlock .wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.companyMissionPhotoBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 50px;
}

.companyMissionPhotoBox.reverse {
	flex-direction: row-reverse;
	margin: 0 0 20px;
}

.companyMissionPhotoBox dt {
	width: 350px;
}

.companyMissionPhotoBox dt img {
	width: 100%;
}

.companyMissionPhotoBox dd {
	flex: 1;
	padding: 0 0 0 30px;
	text-align: center;
}

.companyMissionPhotoBox.reverse dd {
	padding: 0 30px 0 0;
}

.companyMissionPhotoBox dd strong {
	font-size: 20px;
	padding: 0 0 20px;
	display: block;
}

.companyMissionPhotoBox dd p {
	font-size: 16px;
}

@media screen and (max-width: 767px) {
	h2.commonTtlH2 {
		font-size: 20px;
		margin: 0 0 20px;
	}

	h2.commonTtlH2 span {
		font-size: 16px;
		padding: 0 0 10px;
	}

	.companyGreetingBlock {
		width: 100%;
		position: relative;
		padding: 0 15px 95px;
	}

	.companyGreetingBlock::after {
		height: 50px;
		margin: 0 auto 40px;
	}

	.companyMissionBlock {
		padding: 0 15px 0;
	}

	.companyMissionPhotoBox {
		flex-direction: column;
		margin: 0 0 30px;
	}

	.companyMissionPhotoBox.reverse {
		flex-direction: column;
		margin: 0 0 30px;
	}

	.companyMissionPhotoBox dt {
		width: 100%;
		max-width: 360px;
		margin: 0 0 10px;
	}

	.companyMissionPhotoBox dt img {
		width: 100%;
	}

	.companyMissionPhotoBox dd {
		padding: 0 0 0 0;
		text-align: center;
	}

	.companyMissionPhotoBox.reverse dd {
		padding: 0 0 0 0;
	}

	.companyMissionPhotoBox dd strong {
		font-size: 18px;
		padding: 0 0 20px;
		display: block;
	}

	.companyMissionPhotoBox dd p {
		font-size: 14px;
		padding: 0 0 15px;
	}
}

/***************************************************************************

  事業案内

***************************************************************************/
.redStrong {
	font-size: 22px;
	color: #e22;
	text-align: center;
	display: block;
	padding: 0 0 35px;
	margin: -20px 0 0;
}

@media screen and (max-width: 767px) {
	.redStrong {
		font-size: 16px;
		padding: 0 0 20px;
		margin: 0 0 0;
	}
}

/***************************************************************************

  ご利用案内

***************************************************************************/
.centerRedBold {
	font-size: 25px;
	color: #e22;
	text-align: center;
	display: block;
	margin: 0 0 50px;
}

.centerBold {
	font-size: 25px;
	text-align: center;
	display: block;
	margin: 0 0 80px;
}

.flowchartBox {
	width: 100%;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.guidanceTopBlock {
		padding: 0 15px;
	}

	.centerRedBold {
		font-size: 16px;
		margin: 0 0 25px;
	}

	.centerBold {
		font-size: 16px;
		margin: 0 0 40px;
	}
}

/***************************************************************************

  採用情報

***************************************************************************/
.recruitBlock {
	width: 100%;
	position: relative;
	padding: 0 0 60px;
}

.recruitBlock .wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.recruitPtBox {
	padding: 100px 0 0;
	background: url(../images/recruit_bg01.png) no-repeat 25px 25px/150px auto, url(../images/recruit_bg02.png) no-repeat right 35px top 35px/100px auto;
}

.recruitInfoBlock {
	width: 100%;
	padding: 0 0 0;
}

.recruitInfoBlock .wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.recruitInfoBox {
	width: 450px;
	border: solid 4px #ED7D31;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	padding: 0 20px;
}

.recruitInfoBox dt {
	text-align: center;
	font-size: 18px;
	width: 100%;
	padding: 15px 0;
	display: block;
	border-bottom: solid 1px #ED7D31;
}

.recruitInfoBox dd {
	width: 100%;
	padding: 15px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 15px;
}

.recruitInfoBox dd span {
	font-size: 16px;
}

.recruitInfoBox dd a {
	font-size: 16px;
	background: #ED7D31;
	border-radius: 5px;
	color: #fff;
	padding: 5px 10px 4px;
	transition: 0.3s;
	display: inline-block;
}

.recruitInfoBox dd a:hover {
	opacity: 0.7;
}

.recruitInfoBox dd a i {
	padding: 0 0 0 25px;
	background: url(../images/mail_icn.svg) no-repeat left center;
	fill: #f00;
	background-size: 20px auto;
	display: inline-block;
}

@media screen and (max-width: 767px) {
	.recruitBlock {
		width: 100%;
		padding: 0 15px 10px;
	}

	.recruitBlock .wrap {
		width: 100%;
		max-width: 100%;
	}

	.recruitPtBox {
		padding: 10px 0 0;
		background: url(../images/recruit_bg01.png) no-repeat 0px 5px/20vw auto, url(../images/recruit_bg02.png) no-repeat right 0 top 15px/15vw auto;
	}

	.recruitInfoBlock {
		width: 100%;
		padding: 0 15px 0;
	}

	.recruitInfoBlock .wrap {
		max-width: 100%;
	}

	.recruitInfoBox {
		width: 100%;
		border: solid 3px #ED7D31;
		margin: 0 auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		padding: 0 15px;
	}

	.recruitInfoBox dt {
		text-align: center;
		font-size: 14px;
		width: 100%;
		padding: 15px 0;
		display: block;
		border-bottom: solid 1px #ED7D31;
	}

	.recruitInfoBox dd {
		width: 100%;
		padding: 15px 0 20px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		gap: 8px 15px;
	}

	.recruitInfoBox dd span {
		font-size: 14px;
	}

	.recruitInfoBox dd a {
		font-size: 14px;
		padding: 5px 10px 4px;
		display: inline-block;
	}

	.recruitInfoBox dd a:hover {
		opacity: 1;
	}

	.recruitInfoBox dd a i {
		padding: 0 0 0 22px;
		background: url(../images/mail_icn.svg) no-repeat left top 1px;
		background-size: 18px auto;
		display: inline-block;
	}
}

/*****************************************
  NEWS
*****************************************/
.newsBlock {
	width: 100%;
}

.newsBlock .wrap {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 20px 0 20px;
}

.newsBlock dl {
	width: 700px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 10px 0;
	color: #000;
	padding: 20px 0 0;
	font-size: 15px;
}

.newsBlock dt {
	width: 130px;
}

.newsBlock dd {
	width: 570px;
}

@media screen and (max-width: 767px) {
.newsBlock .wrap {
	width: 100%;
	padding: 10px 15px 10px;
}

.newsBlock dl {
		width: 100%;
	border-top: solid 1px #843C0C;
		flex-direction: column;
		gap: 0 0;
		padding: 0 0 0;
		font-size: 14px;
}

.newsBlock dt {
		padding: 12px 0 0;
		width: 100%;
		font-size: 12px;
}

.newsBlock dd {
		width: 100%;
		border-bottom: dotted 1px #843C0C;
		padding: 0 0 10px;
}
	
}
