@charset "UTF-8";

/* ********** 各ページ共通設定 ********** */

/* body */
body{
	background: #fff;
	font-family: 游ゴシック体, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", sans-serif !important;
	margin: 0;
}

/* ページヘッダ */
header {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

/* サイトロゴ設定 */
header h1 {
	margin-left: 20px;
	margin-bottom: 3px;
}

header img {
	max-width: 100%;
	height: auto;
}

/* ナビメニュー設定 */
header nav ul {
	display: flex;
	list-style: none;
	font-family: "ヒラギノ丸ゴ Pro W4";
	font-size: 18px;
	margin: 0 40px 10px 0;
	padding: 0;
}

header nav ul li {
	margin-right: 40px;
}

header li a {
	text-decoration: none;
}

/* ページフッタ */
footer p {
	text-align: center;
}

/* トップページ以外のmain中央揃え設定 */
#com main, #bg main, #access main {
	width: 80%;
	margin: 0 auto;
}

/* Smooth Scroll */
.return_top {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #2158a5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 40px;
	bottom: 40px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;
}

.return_top.is-visible {
	opacity: 1;
	visibility: visible;
}

.return_top::before {
	content: "";
	width: 12px;
	height: 12px;
	margin-bottom: -6px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	transform: rotate(-45deg);
}


/* ********** トップページ ********** */

/* return_top */
#index .text01 {
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-style: italic;
	font-weight: bold;
	font-size: 42px;
	letter-spacing: 2px;
	line-height: 1.5;
	width: 80%;
	white-space: pre-wrap;
	margin: 60px auto 0;
	text-align: left;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#index .text01 .text {
	display: inline-block;
}

#index .text01 .br_sp {
	display: none;
}

#index  main img {
	max-width: 100%;
	height: auto;
}


/* ********** 企業情報ページ ********** */

/* 大見出し */
#com h2 {
	color: #fff;
	background-color: #005ebb;
	margin: 0;
	padding: 10px 0 10px 50px;
}

/* コンテンツ設定 */
#com #content {
	width: 80%;
	margin: 0 auto;
	padding: 10px;
}

#com #content dl {
	width: 80%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

#com #content dt {
	width: 20%;
	border-bottom: 1px solid #ddd;
	padding: 5px 0;
	line-height: 2;
}

#com #content dd {
	width: 65%;
	margin: 0;
	border-bottom: 1px solid #ddd;
	padding: 5px 0;
	line-height: 2;
}

#com #content ul {
	width: 85%;
	margin: 0 auto;
	padding-bottom: 5px;
	padding-left: 100px;
	line-height: 2;
}

/* セクション設定 */
#com #content section {
	margin: 20px 0 30px 0;
}

/* 改行設定 */
#com #content .sp {
	width: 15%;
	border: none;
}


/* ********** 事業案内ページ ********** */

/* 大見出し */
#bg h2{
	color: #fff;
	background-color: #005ebb;
	margin: 0;
	padding: 10px 0 10px 50px;
}

/* 中見出し */
#bg h3{
	font-style: italic;
	color: #005ebb;
	background-color: #fff;
	padding: 0;
	font-size: 24px;
}

/* 小見出し */
#bg h4 {
	margin: 0;
	
}

/* メイン設定 */
#bg main {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 10px;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 30px;
	
}

/*画像と説明文のフレックスボックス*/
#bg section {
	display: flex;
        flex-wrap: wrap;
	row-gap: 40px;
	font-size: 22px;
	margin: 0 auto;
	padding: 40px 30px;
	column-gap: 30px;
	align-items: center;
}

#bg figure {
	max-width: 40%;
	margin: 0;
	box-sizing: border-box;
}

#bg figure img {
	width: 100%;
	height: auto;
}

/* リード文設定 */
#bg #center{
	max-width: 1000px;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	margin: 0 auto;
	padding: 10px 25px;
}

#bg #center p{
	font-size: 18px;
	margin: 0;
}

/* scrollBox設定 */
#bg .box{
	display: flex;
	max-width: 800px;
	margin: 0 auto;
	padding: 0;
	column-gap: 40px;
	row-gap: 40px;
	font-size: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 3s;
	transform: translateY(150px);
	flex-wrap: wrap;
}

#bg .is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#bg .item {
	max-width: 55%;
}

#bg .item p {
	font-weight: normal;
	font-size: 17px;
	padding: 0 20px;
}



/* ********** アクセスページ ********** */

/* 大見出し */
#access h2 {
	color: #fff;
	background-color: #005ebb;
	margin: 0;
	padding: 10px 0 10px 50px;
}

/* コンテンツ設定 */
#access dl {
	width: 90%;
	margin: 0 auto;
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
}

/* 画面幅ごとの改行設定 */
#access .br_sp {
	display: none;
}

#access dt {
	width: 20%;
	padding-bottom: 5px;
	border-bottom: 1px solid #ccc;
	line-height: 2;
}

#access dd {
	width: 80%;
	margin: 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 3px;
	line-height: 2;
}

/* メイン設定 */
#access main {
	width: 80%;
	margin: 0 auto;
	padding-top: 30px;
}

#access p {
	width: 90%;
	margin: 0 auto;;
}

/* マップ設定 */
#access iframe {
	width: 100%;
}


/* ########### --600px以下-- ########### */
@media (max-width: 600px) {

/* ********** 各ページ共通設定 ********** */

/* ページヘッダ */
header {
	flex-flow: row wrap;
	justify-content: center;
}

/* サイトロゴ設定 */
header h1 {
	margin: 0;
	text-align: center;
}

header img {
	max-width: 80%;
}

/* ナビメニュー設定 */
header nav ul {
	font-size: 20px;
	margin: 10px 0 10px 0;
}

/* モバイル画面でメニュー文字を中央揃え */
header nav ul li:last-child {
	margin-right: 0;
}

/* ページフッタ */
footer p {
	font-size: 14px;
}


/* ********** トップページ ********** */

/* メイン設定 */
#index main {
	padding: 0;
}

/* テキストアニメーション設定 */
#index .text01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 20px;
	margin: 50px auto 0;
	top: 20%;
	left: 50%;
	white-space: pre-line;
	text-align: center;
}

#index .text01 {
	width: 275px;
	display: inline-block;
}

#index span:nth-of-type(23)::before {
	content: "\A";
	display: block;
	width: 100%;
	line-height: 2;
}


/* ********** 企業情報ページ ********** */

/* メイン設定 */
#com main {
	width: 95%;
	padding: 0;
}

/* 大見出し */
#com h2 {
	display: none;
}

/* 中見出し */
#com #content h3 {
	width: 100%;
	margin-bottom: 0;
}

/* コンテンツ設定 */
#com #content {
	width: 95%;
	margin: 0 auto;
	padding: 10px 0;
}

#com #content dl {
	width: 95%;
	margin: 0 auto;
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
}

#com #content dt {
	width: 40%;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
	line-height: 2;
}

#com #content dd {
	width: 60%;
	margin: 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
	line-height: 2;
}

#com #content ul {
	width: 95%;
	margin: 0 auto;
	padding-bottom: 5px;
	padding-left: 25px;;
	font-size: 12px;
	line-height: 2;
}

/* セクション設定 */
#com #content section {
	margin: 20px 0 30px 0;
}

/* 改行設定 */
#com #content .sp {
	display: none;
}


/* ********** 事業案内ページ ********** */

/* 大見出し */
#bg h2 {  
	display: none
}

/* 中見出し */
#bg h3 {
	display: inline-block;
	text-align: center;
}

/* 小見出し */
#bg h4 {
	text-align: center;
	font-style: italic;
}

/* メイン設定 */
#bg main {
	max-width: 600px;
	padding: 0;
	column-gap: 40px;
	font-size: 16px;
	row-gap: 10px;
}

/*画像と説明文のフレックスボックス*/
#bg section {
	max-width: 100%;
	padding: 0;
	font-size: 17px;
	row-gap: 10px;
}

#bg figure {
	max-width: 100%;
}

#bg figure img {
	width: 100%;
	height: auto;
}

/* リード文設定 */
#bg #center {
	max-width: 600px;
	font-size: 12px;
	padding: 10px 15px;
	justify-content: center;
}

#bg #center p {
	font-size: 13px;
	padding: 0;
	margin-bottom: 10px;
}

/* scrollBox設定 */
#bg .item {
	max-width: 100%;
}

#bg .box{
	row-gap: 10px;
}


/* ********** アクセスページ ********** */

/* 大見出し */
#access h2 {
	color: #fff;
	background-color: #005ebb;
	margin: 0;
	padding: 10px 0 10px 50px;
	display: none;
}

/*コンテンツ設定 */
#access dl {
	width: 90%;
	margin: 0 auto;
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
}

/* モバイル時に最初のアイテムのみ左寄せ */
#accesss dl:last-child {
	margin-right: auto;
}

/* 画面幅ごとの改行設定 */
#access .br_sp {
	display: block;
}

#access dt {
	width: 20%;
	padding-bottom: 5px;
	border-bottom: 1px solid #ccc;
	line-height: 2;
}

#access dd {
	width: 80%;
	margin: 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 3px;
	line-height: 2;
}

/* コンテンツオーダー設定 */
#access main {
	width: 100%;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	flex-directin: column;
}

#access dl {
	order: 2;
	width: 90%;
}

#access p {
	order: 1;
	width: 100%;
}

}



/* ########### 601px以上 ########### */
@media (min-width: 601px) {


}
:
