@charset "utf-8";

/* -----------------------------------------------------------------------------
 環境設定
----------------------------------------------------------------------------- */
/* 定義 */
:root {
	/* 色 */
	--main-color: #00468c; /* メインカラー */
	--sub-color: #5c6a76; /* サブカラー */
	--accent-color: #DD0014; /* アクセントカラー */
	--dark-color: #192d3e; /* ダークカラー */
	--light-color: #EDF6FF; /* ライトカラー */
	
	/* 全体 */
	--body-font-family: 'Noto Sans JP', sans-serif; /* フォントfamily */
	--body-font-size: 16px; /* 文字サイズ */
	--body-line-height: 2; /* 行間 */
	--body-font-color: #515151; /* 文字色*/
	--body-bg-color: #fff; /* 背景色 */
	--link-a-color: var(--main-color); /* リンク文字色 */
	--link-a-hover-color: var(--accent-color); /* リンク文字色 hover */
	
	
	/* ヘッダー */
	--header-bg-color: #fff; /* 背景色 */
	--header-logo-color: #111; /* ロゴ色 */
	--header-menu-txt-color: #515151; /* メニュー文字色 */
	--header-sub-menu-color: #aaa; /* ハンバーガーメニュー色 */
	--header-sub-menu-bg-color: rgba(34,34,34,0.70); /* サブメニュー背景色 */
	
	/* タイトル */
	--h1-main-font-family: inherit; /* メイン フォントfamily */
	--h1-main-font-weight: 900; /* メイン 文字太さ */
	--h1-main-color: var(--main-color); /* メイン色 */
	--h1-sub-font-family: inherit; /* サブ フォントfamily */
	--h1-sub-font-weight: 400; /* サブ 文字太さ */
	--h1-sub-color: var(--sub-color); /* サブ文字色 */
	
	/* コンテンツ タイトル */
	--h2-contents1-color: var(--dark-color); /* 文字色 */
	--h2-contents1-weight: 900; /* 文字太さ */
	
	/* コンテンツ */
	--list-style-color: var(--main-color); /* リストアイコン色 */
	--col-line-height: 1.6; /* 2分割・3分割・4分割の行間 */
	
	/* 会社概要 */
	--cpn-table-border: #ccc; /* table線色 */
	--cpn-th-color: #aaa; /* th色 */
	
	/* お問合せ */
	--contact-tel-font-family: 'Noto Sans JP', sans-serif; /* TELフォントfamily */
	--contact-tel-font-weight: 700; /* TEL文字太さ */
	--contact-tel-color: #333; /* TEL文字色 */
	--contact-center-line-color: #ccc; /* 中央線 */
	--contact-form-btn-txt-color: #fff; /* フォームボタン文字色 */
	--contact-form-btn-bg-color: #333; /* フォームボタン背景色 */
	
	/* フッター */
	--footer-bg-color: var(--main-color); /* 背景色 */
	--footer-txt-color: #fff; /* 文字色 */
	--footer-txt-hover-color: var(--light-color); /* 文字色 hover */
	--footer-arrow-color: #fff; /* TOPへ戻る矢印色 */
	--footer-arrow-bg-color: var(--dark-color); /* TOPへ戻る矢印背景色 */
	--footer-arrow-hover-color: var(--accent-color); /* TOPへ戻る矢印色 hover */
	--footer-arrow-hover-bg-color: var(--light-color); /* TOPへ戻る矢印背景色 hover */
	--footer-top-border-size: 0px; /* border-top 太さ */
	--footer-top-border-color: var(--dark-color); /* border-top 色 */
	--footer-logo-width: 240px; /* ロゴ 横幅 */
	--footer-name-font-size: 1.25em; /* 会社名 文字サイズ */
	--footer-name-font-weight: 500; /* 会社名 文字太さ */
	
	/* 常駐ボタン */
	--side-btn-txt-color: #fff; /* 文字色 */
	--side-btn-txt-weight: 700; /* 文字太さ */
	--side-btn-bg-color: #DD0014; /* 背景色(上) */
	--side-btn-bg-color2: var(--dark-color); /* 背景色(下) */
}


/* 背景 */
.contents_bg1{
	background-color: var(--light-color)!important;
}
.contents_bg2{
	background: var(--body-bg-color) url("../../p-img/101453_1/bg-grid1.png")left top repeat!important;
}
.contents_bg3{
	background-color: #f5f5f5!important;
}


/* -----------------------------------------------------------------------------
 Header
----------------------------------------------------------------------------- */
header {
	height: 50px;
}
header a {
	text-decoration: none !important;
}
header > .inner {
	width: 100%;
	background-color: var(--header-bg-color);
	box-shadow: 0px 3px 10px 0px rgba(204,204,204,0.20);
	height: 100%;
}
header > .inner > .logo {
	font-size: 15px;
	padding: 0;
	line-height: 1.5;height: 100%;box-sizing: border-box;
}
header > .inner > .logo a{
	white-space: nowrap;
	color: var(--header-logo-color);
	border: none;
}

header > .inner > navi > ul {
	display: block;
}
header > .inner > navi > ul > li {
	padding-left: 0;
	text-indent: 0;
}
header > .inner > navi > ul > li a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: .8em;
	color: #fff;
	margin: 0;
	padding: 5px 20px ;
	border: none;
}
header > .inner > navi > .translation {
	padding: 5px 20px;
	display: block;
}


/* bt-menu */
#bt-menu {
	position: absolute;
	top:0px;
	right:0px;
	width: 50px;
	height: 50px;
	background-color: var(--header-bg-color);
	z-index: 10;
	cursor: pointer;
}
#bt-menu span {
	position: absolute;
	top: 24px;
	right: 10px;
	width: 30px;
	height: 2px;
	background-color: var(--header-sub-menu-color);
	transition: .3s;
}
#bt-menu span::before {
	position: absolute;
	top: -10px;
	right: 0;
	content: "";
	width: 30px;
	height: 2px;
	background-color: var(--header-sub-menu-color);
	display: block;
	transition: .3s;
}
#bt-menu span::after {
	position: absolute;
	top: 10px;
	right: 0;
	content: "";
	width: 30px;
	height: 2px;
	background-color: var(--header-sub-menu-color);
	display: block;
	transition: .3s;
}
#bt-menu.open span {
	background-color: transparent;
	transition: .3s;
}
#bt-menu.open span::before {
	top: 0;
	transform: rotate(45deg);
	transition: .3s;
}
#bt-menu.open span::after {
	top: 0;
	transform: rotate(-45deg);
	transition: .3s;
}

/* style1 */
header.style1 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--header-bg-color);
	z-index: 999;
}
header.style1 > .inner > .logo {
	vertical-align: middle;
	display: flex;align-items:center;
	justify-content: flex-start;
	/*margin-bottom: 3px;*/
	padding: 3px 10px;
	flex-wrap: nowrap;white-space: pre;width: auto;
}
header.style1 > .inner > .logo img{margin-left: 8px;height: 25px;width: auto;}
header.style1 > .inner > navi {
	position: absolute;
	top: 50px;
	right: 0;
	padding: 5px 0 10px;
	background-color: var(--header-sub-menu-bg-color);
	opacity: 0;
}	


/* powered by Sangyo Navi */
.powered {
	display: block;
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	color: #bbb;
	text-align: right;
	margin: 5px 10px 0;
	padding: 3px 5px 0;
	border-top: 1px solid #ddd;
}


/* -----------------------------------------------------------------------------
 Top Contents
----------------------------------------------------------------------------- */
#top-contents {
	width: 100%;
	overflow: hidden;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

#top-contents .layer1 {
	width: 100%;
	background-color: var(--main-color);
	padding: 1.25vw 2vw;
	order: 1;
	display: flex;
	align-items: center;
}
#top-contents .layer1 img{margin-right:3vw;}
#top-contents .layer1 h1{font-size: 2.5vw;
	font-weight: 900;
	line-height: 1.4;
	color: #fff;
}
#top-contents .layer2 {
	width: 100%;
	border-top:solid 1px var(--main-color);
	border-bottom:solid 1px var(--main-color);
	order: 3;
	background-color: #fff;
	
}
#top-contents .layer2 p{
	font-weight: 400;
	font-size: .8em;
	line-height: 1.5;
	color: var(--main-color);
	padding: .5em 15px;
	
}
#top-contents .layer3{
	width: 100%;
	order: 2;
}
#top-contents .layer3 img{width: 100%;height: auto;vertical-align: bottom;}

/* -----------------------------------------------------------------------------
 Breadcrumb
----------------------------------------------------------------------------- */
#breadcrumb {
	font-size: 0.85em;
	max-width: 100%;
	margin: 0 auto;
	padding: 15px 10px;
	text-align: left;
	background-color: var(--body-bg-color);
}
#breadcrumb .login {
	width: 120px;
	text-align: right;
	float: right;
}
#breadcrumb .login img {
	margin-right: 5px;
	vertical-align: top;
}
#breadcrumb .login a {
	color: var(--body-font-color);
	text-decoration:none;
	border: none;
}
#breadcrumb .login a:hover {
	color: var(--link-a-hover-color);
	text-decoration:none;
	border: none;
}
#breadcrumb .bc img {
	width: 14px;
	vertical-align: top;
}
#breadcrumb .bc a {
	color: var(--body-font-color);
	text-decoration:none;
	border: none;
}
#breadcrumb .bc a:hover {
	color: var(--link-a-hover-color);
	text-decoration: none;
	border: none;
}


/* -----------------------------------------------------------------------------
 contents
----------------------------------------------------------------------------- */
main .contents {
	background-color: var(--body-bg-color);
	overflow: hidden;
}
main .contents.fixed {
	background-color: transparent;
}
main .contents .fixed-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

.w1024 {
	height: auto !important;
	margin: 60px 15px;
	box-sizing: border-box;
}
.w1024.bg {
	background-color: #fff;
	padding: 20px;
}

.layer {
	position: static;
	width: 100% !important;
}

.contents section {
	margin: 0 0 40px;
	box-sizing: border-box;
}


/* -----------------------------------------------------------------------------
 Footer
----------------------------------------------------------------------------- */
footer {
	position: relative;
	font-size: 0.92em;
	padding: 50px 0 30px;
	border-top: var(--footer-top-border-size) solid var(--footer-top-border-color);
	background-color: var(--footer-bg-color);
	background-size: cover;
	box-sizing: border-box;
	margin-bottom: 50px;
}
footer .pagetop a {
	position: absolute;
	top: calc(-25px - var(--footer-top-border-size));
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	background-color: var(--footer-arrow-bg-color);
	text-decoration: none;
	border-radius: 50%;
	box-sizing: border-box;
	display: block;
}
footer .pagetop a::before {
	color: var(--footer-arrow-color);
	font-size: 20px;
	content: "▲";
	margin-top: 14px;
	text-align: center;
	line-height: 1em;
	display: block;
	transition: .3s;
}
footer .inner {
	margin: 0 10px;
}
footer .pagetop a span {
	display: none;
}
footer .login {
	margin: 40px auto 5px;
	text-align: center;
	display: block;
}
footer .login img {
	margin-right: 5px;
	vertical-align: 0;
}
footer .login a {
	font-size: 14px;
	color: var(--footer-txt-color);
	text-decoration: none;
	border: none;
	display: inline-block;
}
footer.login a:hover {
	color: var(--footer-txt-hover-color);
	text-decoration: none;
	border: none;
}
footer .copy {
	font-size: 13px;
	line-height: 1.6;
	color: var(--footer-txt-color);
	text-align: center;
}
footer .copy a{
	border: none;
}
.footer-info{
	color: var(--footer-txt-color);
	text-align:center;
}

.footer-info .logo{
	width: var(--footer-logo-width);
	box-sizing: border-box;
	margin: 0 auto 10px;
}
.footer-info .logo img{
	width: 100%;
}
.footer-info .name{
	font-weight: var(--footer-name-font-weight);
	font-size: var(--footer-name-font-size);
}
.footer-info .mail{
	margin-top: 10px;
}
.footer-info .mail a{
	display: table;
	text-decoration: none;
	color: var(--footer-bg-color);
	background-color: var(--footer-txt-color);
	border-radius: 60px;
	padding: 0 30px;
	margin: auto;
}
.footer-info .mail a:hover{
	opacity: 1;
	transform: scale(1.1);
}
.footer-info .mail a i{
	margin-right: 3px;
}


/* -----------------------------------------------------------------------------
 共通 parts
----------------------------------------------------------------------------- */
/* parts-h1 */
.parts-h1 {
	
	font-family: var(--h1-sub-font-family);
	font-weight: var(--h1-sub-font-weight);
	/*font-size: calc(1.5em + 1.5vw);*/
	text-align: center;
	color: var(--h1-main-color);
	line-height: 1.6;
	font-weight: 300;
	margin-bottom: 3em;
	font-size: .9em;
	
}
.parts-h1 .small{
	display: block;
	font-family: var(--h1-sub-font-family);
	font-weight: var(--h1-sub-font-weight);
	font-size: .4em;
	color: var(--h1-sub-color);
	text-shadow: none;
}
.parts-h1 .big{
	display: block;
	font-family: var(--h1-main-font-family);
	font-weight: var(--h1-main-font-weight);
	color: var(--h1-sub-color);
	text-shadow: none;
	letter-spacing:normal;
	font-weight: 900;
}

/* parts-h2 */
.parts-h2 {
	font-weight: var(--h2-contents1-weight);
	font-size: calc(1.3em + 1vw);
	color: var(--h2-contents1-color);
	text-align: center;
	line-height: 1.5;
	margin-bottom: .5em;
}

/* parts-h3 */
.parts-h3 {
	font-size: calc(1em + .5vw);
	line-height: 1.5;
	color: var(--dark-color);
	border-bottom: 1px solid var(--dark-color);
	padding-bottom: .3em;
	margin-bottom: 1em;
}

/* parts-h4 */
.parts-h4 {
	font-weight: 300;
	font-size: 1.25em;
}

/* parts-img */

/* parts-map */


/* parts-news */
.parts-news {
	height: 200px;
	margin-bottom: 2em;
	padding: 15px;
	background-color: var(--body-bg-color);
	border: 1px solid #999;
	overflow-y: scroll;
	box-sizing: border-box;
}
.parts-news.show {
	height: auto !important;
	overflow-y: visible;
}
.parts-news > p {
	margin-bottom: 1em;
}
.parts-news a{
	color: var(--link-a-color);
}


/* -----------------------------------------------------------------------------
 財団カスタマイズ
----------------------------------------------------------------------------- */

/* 共通 */
body {
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	color: var(--body-font-color);
}

a.anchor{
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}

.txt_area a:link, a:visited, a:active {
    color: var(--link-a-color);
	text-decoration: none;
	/*border-bottom: 1px solid var(--link-a-color);*/
	transition: .3s;
}
.txt_area a:hover {
    color: var(--link-a-hover-color);
	/*border-bottom: 1px solid var(--link-a-hover-color);*/
}
.txt_area p{
	margin-bottom: 1.5em;
}

.font_s{
	font-size: .7em;
	margin: 0 3px;
}

.inblock{
	display: inline-block;
}

/* 2分割・3分割・4分割 */
.half,.half2,.half3{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3vw;
	margin: 20px auto;
}
.half .left,
.half .right,
.half2 .left,
.half2 .right,
.half3 .left,
.half3 .right{
	width: 100%;
	box-sizing: border-box;
	line-height: var(--col-line-height);
}
.half .left img,
.half .right img{
	width: 100%;
}
.half2 .left img,
.half2 .right img,
.half3 .left img,
.half3 .right img{width: 130px;}

/* parts-txt-img */


/* ful-half */

/* parts-table */
.parts-table{
	margin: 0 auto 2em;
}
.parts-table table{
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
	margin: auto;
}
.parts-table th{
	/*font-size: .9em;*/
}
.parts-table th,
.parts-table td{
	/*vertical-align: text-top;*/
	vertical-align: middle;
	border-bottom: 1px solid #ddd;
	padding: 5px 10px;
	text-align: center;
	font-size: .9em;
}

/* parts-list */

/* flow 横 */
.flow-area1 ul.flow-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: -20px;
}
.flow-area1 ul.flow-box li.flow-list{
	background-color: var(--body-bg-color);
	border-radius: 20px;
	padding: 10px 20px;
	margin: 20px auto 20px;
	position: relative;
}
.flow-area1 ul.flow-box li.flow-list:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
    top: calc(100% + 10px);
	margin: 0 auto;
    width: 40px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
	background-color: var(--light-color);
}
.flow-area1 ul.flow-box li.flow-list:last-child:before{
	height: 0;
}
.flow-area1 ul.flow-box li.flow-list .num{
	position: absolute;
	left: 10px;
	top: -.85em;
	font-size: 3.5em;
	font-weight: 900;
	line-height: 1;
	color: var(--main-color);
}
.flow-area1 ul.flow-box li.flow-list .flow_head{
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.5;
	color: var(--main-color);
	text-align: center;
	margin-bottom: 1em;
}
.flow-area1 ul.flow-box li.flow-list img{
	display: block;
	width: 30%;
	object-fit: contain;
	margin: 5px auto;
	margin-bottom: .75em;
	
}
.flow-area1 ul.flow-box li.flow-list .flow_bottom{
	display: table;
	font-size: .9em;
	line-height: 1.5;
	margin: .5em auto;
}

/* ScrollTrigger */

/* マーカー */


/* 会社概要 */
.cpn_tbl table{
	border-collapse: collapse;
	margin: 0 auto 40px;
	width: 100%;
}
.cpn_tbl table th,
.cpn_tbl table td{
	display: block;
	border-bottom: 1px solid var(--cpn-table-border);
	text-align: left;
	padding: 5px 20px;
}
.cpn_tbl table th{
	font-size: .9em;
	font-weight: 500;
	color: var(--cpn-th-color);
	white-space: nowrap;
	border-bottom: none;
	padding: 7px 0 0 5px;
	vertical-align: text-top;
}

/* お問合せ */
.contact i{
	font-size: 1em;
	line-height: 1.2em;
	margin-right: 10px;
}
.contact .tel a{
	display: block;
	font-family: var(--contact-tel-font-family);
	font-weight: var(--contact-tel-font-weight);
	font-size: calc(1.95em + .7vw);
	line-height: 1.7;
	text-align: center;
	color: var(--contact-tel-color);
}
.form_sub{
	font-size: .75em;
	color: #888;
	text-align: center;
	margin-top: 10px;
}
a.mail_button {
	display: inline-block;
	margin-top: 20px;
	padding: 1em 3em;/* ボタンのサイズはpaddingで調整 */
	background: var(--contact-form-btn-bg-color);
	border: 1px solid var(--contact-form-btn-bg-color); /* 枠線色 */
	color: var(--contact-form-btn-txt-color); /* 文字色 */
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	transition: all .3s;
}
a.mail_button:hover {
	opacity: 0.85;
}
a.mail_button i{
	transition: all .3s;
}
a.mail_button:hover i{
	transform: scale(1.3);
}


/* 横問合せボタン */
.cv_btn_area {
	width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 102;
	opacity: 0;
	overflow: hidden;box-shadow: 0px -1px 10px rgba(0,0,0,0.3);
}
.cv_btn_area .btn{
	align-items: flex-end;
	display: flex;
	
}
.cv_btn_area .btn a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	line-height: 1.3;
    font-size: 14px;
	font-weight: var(--side-btn-txt-weight);
    letter-spacing: 1px;
    background: var(--side-btn-bg-color);
    color: var(--side-btn-txt-color);
    text-align: center;
	text-decoration: none;
	padding: 15px 0px;
	margin: 0;
	
	
}
.cv_btn_area .btn a:nth-child(1),
.cv_btn_area .btn a:nth-child(2){
	background: var(--side-btn-bg-color2);
}
.cv_btn_area .btn a i {
	font-size: 1.5em;
	margin-right: 10px;
}

.fade_on{
	opacity: 1;
}

/* TEL */
a[href^="tel:"] {
	color:inherit;
	text-decoration:none;
	border: none;
}

@media screen and (min-width: 768px){
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

/* レスポンシブ出し分け */
.for-pc{
	display: none;
}
.for-tab{
	display: block;
}


/* Margin・Padding */
.mb0{
	margin-bottom: 0!important;
}

/*フェードイン表示の指定*/



/* -----------------------------------------------------------------------------
	 個別設定
----------------------------------------------------------------------------- */
/* 画像中央配置*/
.center-img{text-align: center;}
.center-img img{max-width: 100%;}

/* table scroll*/
.table-scroll{overflow: auto;}
.table-scroll .parts-table{min-width: auto;}

em{font-style: normal;font-weight: 900;}

.marker{background:linear-gradient(transparent 60%, #ff6 60%);}
.big{
	font-weight: 900;
	font-size:2em;}
.block{display: block}

/*メニューバー */
header > .inner > .logo {
	font-size: 1rem;
    padding: 10px 10px 10px 15px;}
header.style1 > .inner > .logo img{height: 20px;}

 /*ロゴ画像未使用時 */
header > .inner > .logo a{
	display: flex;
	flex-direction: column;
	font-size: 1.15rem;
	font-weight:900;
	color: #3a3a3a;line-height: 1
}
.logo a .header-name{
	color:#00468c;font-size:.8rem;font-weight: 300;letter-spacing: .1em;
	padding-top:4px;
}
 /*ロゴ画像未使用時 END*/

/*top */
#top-contents .layer1 img{width: 30vw;vertical-align: bottom;}

/* con1 強み */
.con1 h3,.con3 h3{
		font-size: 1.5rem;
		text-align: left;
		margin-bottom: 1em;
		color: var(--dark-color);
		position: relative;
	}

	.con1 h3::after{
		content: '';
		display: block;
		width:100%;
		height: 2px;
		background-color: var(--main-color);
		margin-top: .25em;
	}
.con1 h3::before{
	position: absolute;
	content: '';
		display: block;
		background-color: var(--main-color);
		width: 2px;
		height: calc(100px + 3rem);
		
		bottom: calc(-100px - 3rem);
		right:calc(100% - 40px);
}
.con1 .half3 h3::before{left:calc(100% - 40px);right:initial}
.con1 .half2,
.con1 .half3{
	margin-bottom: 2.5em;
	}
	.con1 .half2 .left, 
	.con1 .half3 .right{text-align: center} 

.con1 .half2 .right p{
		
		padding:1.5em 20px;
		background-color:var(--light-color);
	margin-top: 0;
	}
.con1 .half3 .left p{
		
		padding:1em 20px;
		margin-top: 0;
		background-color:var(--light-color);
	}
.half2 .left img,
.half2 .right img,
.half3 .left img,
.half3 .right img{
	width:auto;height: 100px;
}




.con1 h4,.con4 h3{
	font-size: 1.25rem;
	line-height: 1.5;
	text-align: center;
	background-color:var(--light-color);
	border-radius: 15px 15px 0 0;
	padding: .25em .5em;
	margin-bottom: 1em;
}
.con1 h4 span{font-weight: 400;
	
}

.con1 .parts-table2 th{
	vertical-align: middle;
	
}
.con1 table,
.con4 table{
	table-layout: fixed;
	width: 100%;
	min-width: 600px;
	line-height: 1.5;
}
.con1 .parts-table2 tr th:nth-child(1){width: 7em;}

.con1 .parts-table2 tr td{width:calc(50% - 5em)}
.double{font-weight: 500;
	color: var(--accent-color);
}

.con1 .parts-table2 thead th:nth-child(2),
.con4 .parts-table thead th:nth-child(3){
	border: 3px solid var(--accent-color);
	color: var(--accent-color);
	border-bottom: 1px solid #ddd;
	font-size: 1.25em;
	background-color: rgba(255,243,243,1.00);
}
.con1 .parts-table2 thead th:nth-child(1),
.con1 .parts-table2 tbody th,
.con4 .parts-table thead th:nth-child(1),
.con4 .parts-table tbody th{
	background-color:#F8F8F8;
}
.con1 .parts-table2 tbody td:nth-child(2),
.con4 .parts-table .reco-plan{
	border: 3px solid var(--accent-color);
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	
}
.con1 .parts-table2 tr:last-child td:nth-child(2),
.con4 .parts-table .reco-plan-last{
	border-bottom:3px solid var(--accent-color);}
.detail_txt::before{
	content: '';
	display: block;
	width: 1.75em;
	height: 1.75em;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: .5em auto 0.25em;
	
}
.double::before{
	background-image: url("../../p-img/101453_1/ico_double_circle.png")
}
.circle::before{
	background-image: url("../../p-img/101453_1/ico_circle.png")
}
.triangle::before{
	background-image: url("../../p-img/101453_1/ico_triangle.png")
}

.cross::before{
	background-image: url("../../p-img/101453_1/ico_cross.png")
}
.con1 .parts-table2 .detail{margin-bottom: 1em;}
.con1 .parts-table2 td .detail:last-child{margin-bottom: 0;}


/* con2 流れ */
main .bg-dark{background-color: var(--dark-color);}
.bg-dark .parts-h1{color:var(--light-color);}
.bg-dark .parts-h1 .big,.con2 .txt_area{color: #fff;}
.flow-area1 ul.flow-box li.flow-list {
	padding: 1.5em 20px;}
.flow-area1 ul.flow-box li.flow-list .num {
  top: -.5em;
	color: var(--accent-color);}
.flow_bottom{color: var(--body-font-color);}

.flow_bottom li{list-style: disc;padding-bottom: .75em;margin-left: 1em;}
.flow_bottom li:last-child{padding-bottom: 0}
.flow-area1 ul.flow-box li.flow-list:nth-child(4){
	border:solid 5px #fff;
	background-color: var(--main-color);
}
.flow-area1 ul.flow-box li.flow-list:nth-child(4) .flow_head{
	color: #fff;
}

/* con3 プラン */
.con3{background-image: url("../../p-img/101453_1/bg-grid1.png")}
.con3 ul{display: flex;justify-content: center;margin:1.5em 0 3em;}
.con3 li{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: solid 3px var(--main-color);
	box-sizing: border-box;
	text-align: center;
	color:var(--main-color);
	font-weight: 700;
	box-shadow: 1.75px 1.75px 10px rgba(0,0,0,0.20);
	background: #fff;
	
	width: 11em;
	height: 11em;
		margin: 0 8px  ;
		font-size:1.15em;
	}
	
}
.con3 li span{display: block;width: 100%}
.con3 li em{font-size: 1.5em;color: var(--accent-color);

}
.con3 h3{margin-bottom: .5em;line-height: 1.5;}
.con3 .small{font-weight: 400;font-size: .8em;display: block;
	
}
.con3 h3 .small{argin-left: 1em;display: inline-block;
	
}
.con3 .txt_area{margin-left: 1.75em;}

.con3 h4{font-size: 1.25rem;color:var(--main-color);}

main .contents .contact-sec{
	background-color: var(--dark-color);
	margin: 0;
	padding: 40px calc(50vw - 512px) ;
	
}
main .contents .contact.half{margin: 0;}
.contact .tel{
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact .tel a {
	color: #fff;line-height: 0;
	margin-bottom: 1em;
}
	
.contact .left::after {
	content: none;
}

a.mail_button {
  display: block;
  margin: 0 auto;
  padding: .75em .5em;
	width: 40%;
	min-width: 250px;
  background: #fff;
 border:none;
  color: var(--accent-color);
	font-size: 1.25em;
	font-weight: 500;
  
  }
   

/* con4移行 */
.con4 .center-img{margin: 3em auto;}
.con4 .align-center{
	font-size: 1.5em;
	color:  var(--main-color);
	font-weight: 700;
	margin-bottom: 3em;
}
main .con4 .half {text-align: center;}
.con4 h3{padding: .75em;margin-bottom: 2em;}
.con4 .half h4{
	border: solid #ccc 1px;
	padding: .5em;
	line-height: 1;
	font-size: 1.25rem;
	font-weight: 400;
	border-radius: 100px;
	margin-bottom: 1em;
}
.con4 .half p{font-size: 1.75em;}
.con4 h5{
	line-height: 1;padding: .15em 12px 0.15em ;
	border-left:5px var(--main-color) solid;
	font-size: 1.15rem;
	color: var(--main-color) ;
	margin-bottom: 1em;
}
.con4 .parts-table table{width: 100%;min-width: 600px}
.con4 .parts-table th, .parts-table td {
  vertical-align: middle;
  border: 1px solid #ddd;
	padding: 5px 10px;}

.con4 .parts-table thead th:not(:first-child){
	background-color: var(--dark-color) ;
	color: #fff;
}
.con4 .parts-table thead th:first-child{width: 12em!important}
.con4 .parts-table img{
	width: 1.75em;
	margin: .5em auto 0em;

}
.con4 .parts-table tr:nth-child(4) td:not(:nth-child(2)){
	background-color: var(--light-color) ; 
}

.con4 .parts-table thead th:nth-child(3) .block{background-color: #fff;
	color:  var(--accent-color) ;
	font-weight: 500;
	padding: .15em .5em .2em;
	border-radius: 0 0 8px 8px;
	font-size: 1rem;
	display: block;
	width: 5em;
	margin-top:;
	margin: -5px auto 5px;
	line-height: 1;
	
}
.txt_area i{color: var(--accent-color) ;margin-right: .5em;}
.txt_area a i{margin-left: .5em;margin-right:0;color: var(--main-color);}
.txt_area a{
	display: inline-block;border: 1px solid var(--main-color);
	padding: 0 .25em;
	margin-left: .5em;
	
}
.txt_area a:link,.txt_area a:visited{
	text-decoration: none;
	color: var(--main-color);}
.txt_area a:hover{text-decoration: none;
	color: var(--accent-color);}

.link-out{background-color: var(--main-color);display: block;width: 21em;border-radius: 3px;
	margin: 1.5em auto 0;line-height: 1;text-decoration: none;padding: 0.75em 0.5em;font-size: 1.1em;text-align: center;
}
.link-out:link,.link-out:visited{color: white;text-decoration: none;}
.link-out:hover{color: var(--accent-color);text-decoration: none;}



/* con5問合せ */
/* con5問合せ */
main .con5{
	background-color:  var(--dark-color);
	
}
/* con6会社概要 */
main .con6{background-image: url("../../p-img/101453_1/about_bg.jpg");
	background-size:cover;
	
}
.con6 .w1024{background-color: rgba(255,255,255,0.61);padding: 20px 10px}
.con6 td li{line-height: 1.5;padding-bottom: .6em}

.cpn_tbl dl,.cpn_tbl dd{margin-left: 1em;line-height: 1.5;}
.cpn_tbl dd{margin-bottom: .6em;}
.license{display: flex;flex-direction: column;}
.license li{
	width: 100%;
	line-height: 1.5;border: dotted 3px var(--main-color);
	padding:1em;background-color: #fff;
	font-size: .9em;font-weight: 300;
	box-sizing: border-box;
	margin-bottom: 1em;
}

/*.license li .block{border-bottom: dotted 3px var(--main-color);padding:0 .5em .5em;}*/
.license li .block{margin-bottom: 1em;}
.license li p{text-align: center;font-size: .85em;font-weight: 300;}
.license li img{height: 90px;}
.contents .news-sec{margin-top: 80px;}

.note{text-indent: -1em;padding-left: 1em;line-height: 1.5;margin-bottom: .6em}

/* フッター */
.footer-info .tel a{color: #fff;text-decoration: none;}
footer{background: linear-gradient(15deg,var(--dark-color) 35% , var(--main-color) 35%);}

/* *****************************************************************************
   スマートフォン用のスタイル記述
***************************************************************************** */
@media screen and (max-width: 480px) {
	
	header > .inner > .logo {
		font-size: .8rem;}
	main .con1 .w1024:first-child {margin: 30px 15px}
	
	.cv_btn_area .btn a.pc-tel{display: none;}
	.con1 h4 span{font-size: .8em;}
	
	.flow-area1 ul.flow-box li.flow-list{width: 100%;}
	.con3 ul{flex-wrap: wrap;margin-bottom: calc(3em - 20px);}
	.con3 ul li{margin-bottom: 20px;}
	main .con4 .half {
		margin-bottom:3em;}
	.con4 h3{margin-bottom: 1.5em;}
	
	.link-out{max-width: 100%;padding: 0.75em .23em;font-size: 1em;
	}
	.con6 .w1024 {
	  padding: 15px 10px;
	}

	.contents .news-sec {
		margin-top: 00px;}
	
}