@charset "utf-8";

/* -----------------------------------------------------------------------------
 環境設定
----------------------------------------------------------------------------- */
/* 定義 */
:root {
	/* 色 */
	--main-color: #083d66; /* メインカラー */
	--sub-color: #f0e030; /* サブカラー */
	--accent-color: #E77B3A; /* アクセントカラー */
	--dark-color: #9C8F96; /* ダークカラー */
	--light-color: #eaf0fc; /* ライトカラー */
	
	/* 全体 */
	--body-font-family: 'Noto Sans JP', sans-serif; /* フォントfamily */
	--body-font-size: 16px; /* 文字サイズ */
	--body-line-height: 2; /* 行間 */
	--body-font-color: #333; /* 文字色*/
	--body-font-gray: #626262; /* 文字色*/
	--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: #555; /* メニュー文字色 */
	--header-sub-menu-color: #aaa; /* ハンバーガーメニュー色 */
	--header-sub-menu-bg-color: #f5f5f5; /* サブメニュー背景色 */
	
	/* タイトル */
	--h1-main-font-family: inherit; /* メイン フォントfamily */
	--h1-main-font-weight: 700; /* メイン 文字太さ */
	--h1-main-color: var(--main-color); /* メイン色 */
	--h1-sub-font-family: inherit; /* サブ フォントfamily */
	--h1-sub-font-weight: 300; /* サブ 文字太さ */
	--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: #222; /* 背景色 */
	--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: 60px; /* ロゴ 横幅 */
	--footer-name-font-size: 1.5em; /* 会社名 文字サイズ */
	--footer-name-font-weight: 700; /* 会社名 文字太さ */
	
	/* 常駐ボタン */
	--side-btn-txt-color: #fff; /* 文字色 */
	--side-btn-txt-weight: 700; /* 文字太さ */
	--side-btn-bg-color: #E77B3A; /* 背景色(上) */
	--side-btn-bg-color2: #0d5d9c; /* 背景色(下) */
}


/* 背景 */
.contents_bg1{
	background-color: var(--light-color)!important;
}
.contents_bg2{
	background: var(--body-bg-color) url("../../p-img/sample_55_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);
}
header > .inner > .logo h1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 50px 0 10px;
	border: none;
	font-size: 13px;
	line-height: 1;
}

header > .inner > .logo img{
	height: 30px;
	vertical-align: middle;
	margin-right: 8px;
	order: 1
}
header > .inner > .logo .h1_kw{
	order: 2;
	font-weight: 500;
	white-space: pre;
	padding: 2px 0;
}

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: .95em;
	color: var(--header-menu-txt-color);
	margin: 0;
	padding: 5px 20px;
	border: none;
}
header > .inner > navi > .translation {
	padding: 5px 20px;
	display: block;
}


/* bt-menu */
#bt-menu {
	position: absolute;
	top: 0;
	right: 0;
	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 {
	height: 50px;
	vertical-align: middle;
	display: table-cell;
}
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%;
	position: relative;
	overflow: hidden;
	margin: 0;
}
#top-contents .slider img {
	width: 100%;
	height: auto;
	min-height: 570px;
	object-fit: cover;
	object-position: bottom;
}
#top-contents .slider {
	position: relative;
	z-index: 1;
}
#top-contents .slider::after {
	content: "";
	position: absolute;
	background: url(../../p-img/101579_1/top-bg-sp.svg) no-repeat top center;
	background-size: cover;
    width: 100%;
    height: 230px;
    bottom: 0;
    left: 0;
}
#top-contents .layer1 {
	position: absolute;
    width: 92%;
    top: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
#top-contents .layer1 h2{
	position: relative;
	font-weight: 700;
	font-size: .8rem;
	line-height: 1.5;
	color: var(--body-font-color);
	color: var(--main-color);
	z-index: 2;
}
.ttl01 {
	display: block;
	width: fit-content;
	margin: auto;
	padding: 10px;
	background: #fff;
	color: var(--main-color);
	border: solid 2px;
	border-radius: 10px;
}
.ttl02 {
	display: block;
	font-size: 1.8rem;
	font-style: italic;
	font-weight: bold;
	text-align: center;
}
.ttl02-2 {
	font-size: 2.3rem;
    line-height: 1.5;
    background: var(--main-color);
    padding: 0 20px 0 10px;
    color: #fff;
}
.ttl02-3 {
	font-size: 2.5rem;
    line-height: 1.1;
	 background: var(--main-color);
    padding: 0 0 0 10px;
	color: #fff;
}
.ttl02-3 .num {
	font-size: 3rem;
}
.ttl02-3 sup {
	font-size: .6rem;
		display: inline-block;padding-right: 1em
}
.ttl02-4 {
	font-size: .8rem;
	font-weight: normal;
	text-align: right;
    display: block;
    margin: 10px 16px 0 0;
}
#top-contents .layer1 ul {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
}
#top-contents .layer1 li {
	width: 100px;
	height: 100px;
	border: solid 2px var(--main-color);
	border-radius: 50%;
	background-color: var(--body-bg-color);
	color: var(--main-color);
	font-size: 1em;
	font-weight: bold;
	align-content: center;
    text-align: center;
	line-height: 1.4;
}
.ttl-p {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--side-btn-txt-color);
	z-index: 1;
	line-height: 1.3;
}
.ttl-p::after {
	content: '';
	flex:1;
	display: block;
    background: url(../../p-img/101579_1/mv_icon.svg) no-repeat top right / contain;
    width: 48%;
    height: 43vw;
    z-index: 1;
	margin-top: -15px;
}
.ttl-p .p-b {
	font-size: 2.6rem;
	color: var(--accent-color);
}
.ttl-p .p-b .small {
	font-size: 1.8rem;
	color: var(--side-btn-txt-color);
}
#top-contents .layer2 {
	position: relative;
	padding: 20px 0;
	background-color: var(--main-color);
}
#top-contents .layer2 p{
	margin: 0 auto;
	font-weight: 400;
	font-size: .9em;
	line-height: 1.5;
	color: #eee;
	padding: 0 15px;
}
#top-contents .layer3 {
	position: absolute;
	right:2vw;
	top:1.5vw;
	z-index: 10;
	
}
#top-contents .layer3 img{width: 80px;}

/* -----------------------------------------------------------------------------
 Breadcrumb
----------------------------------------------------------------------------- */
#breadcrumb {
	font-size: 0.85em;
	max-width: 100%;
	margin: 0 auto;
	padding: 15px 10px;
	text-align: left;
	background-color: var(--main-color);
	color: var(--side-btn-txt-color);
}
#breadcrumb .login {
	width: 120px;
	text-align: right;
	float: right;
}
#breadcrumb .login img {
	margin-right: 5px;
	vertical-align: top;
}
#breadcrumb .login a {
	color: var(--side-btn-txt-color);
	text-decoration:none;
	border: none;
}
#breadcrumb .login a:hover {
	color: var(--side-btn-txt-color);
	text-decoration:none;
	border: none;
}
#breadcrumb .bc img {
	width: 14px;
	vertical-align: top;
}
#breadcrumb .bc a {
	color: var(--side-btn-txt-color);
	text-decoration:none;
	border: none;
}
#breadcrumb .bc a:hover {
	color: var(--side-btn-txt-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 10px;
}
.w1268 {
	height: auto !important;
	margin: 60px 10px;
}
.w1024.bg {
	background-color: #fff;
	padding: 20px;
}

.layer {
	position: static;
	width: 100% !important;
}

.contents section {
	margin: 0 10px 40px;
}


/* -----------------------------------------------------------------------------
 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-main-font-family);
	font-weight: var(--h1-main-font-weight);
	font-size: 1.5rem;
	text-align: center;
	color: var(--h1-main-color);
	line-height: 1.6;
	margin-bottom: 1em;
}
.parts-h1 .small{
	display: block;
	font-family: var(--h1-sub-font-family);
	font-weight: var(--h1-sub-font-weight);
	font-size: .6em;
	color: var(--accent-color);
	text-shadow: none;
}

/* 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(1.4em + .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: 1em;
}

/* parts-img */
.parts-img {
	margin-bottom: 2em;
}
.parts-img img {
	max-width: 100%;
	height: auto;
	width: auto;
}

/* parts-map */
.parts-map {
	max-width: 100%;
	margin-bottom: 2em;
}

/* 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);
}
.ac-col {
	color: var(--accent-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;
}

img{
	vertical-align: top;
}

.txt_area a:link, .txt_area a:visited, .txt_area 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,
.trisection,
.quarter{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3vw;
	margin: 20px auto;
}
.half .left,
.half .right,
.trisection .left,
.trisection .center,
.trisection .right,
.quarter .left1,
.quarter .left2,
.quarter .right1,
.quarter .right2{
	width: 100%;
	box-sizing: border-box;
	line-height: var(--col-line-height);
}
.half .left img,
.half .right img,
.trisection .left img,
.trisection .center img,
.trisection .right img,
.quarter .left1 img,
.quarter .left2 img,
.quarter .right1 img,
.quarter .right2 img{
	width: 100%;
}

/* parts-txt-img */
.parts-txt-img{
	max-width: calc(100% - 30px);
	margin: 0 auto 2em;
	overflow: hidden;
	display: flex;
}

.parts-txt-img .r-img,
.parts-txt-img .l-img{
	width: 48%;
	box-sizing: border-box;order: 2
}
.parts-txt-img .r-txt,
.parts-txt-img .l-tet{order: 1}
.parts-txt-img .r-img{
	float: right;
	margin-left: 20px;text-align: center
}
.parts-txt-img .l-img{
	float: left;text-align: center
	/*margin-right: 20px;*/
}
.parts-txt-img .r-img img,
.parts-txt-img .l-img img{
	width: 100%;max-width: 300px;
}

/* ful-half */
.ful-half{
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 480px;
	align-items: stretch;
}
.ful-half.r-img .left,
.ful-half.l-img .right{
	display: flex;
}
.ful-half.r-img .right,
.ful-half.l-img .left{
	height: 300px;
}
.ful-half .left,
.ful-half .right{
	width: 100%;
	box-sizing: border-box;
}
.ful-half .txt{
	padding: 15px;
}
.ful-half .txt .inner{
	max-width: 600px;
	box-sizing: border-box;
	margin: 20px auto;
}
.ful-half .img{
	height: 100%;
	position: relative;
	overflow: hidden;
}
.ful-half .img img{
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 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;
	border-bottom: 1px solid #ddd;
	padding: 5px 10px;
}

/* parts-list */
.parts-list ul{
	padding-left: 1.5em;
}
.parts-list ul li{
	line-height: 1.6;
	margin-bottom: 1em;
	position: relative;
}
.parts-list ul li:before{
	content: '';
	display: inline-block;
	position: absolute;
	top: .5em;
	left: -1.1em;
	width: 8px;
	height: 8px;
	background-color: var(--main-color);
}

/* flow 横 */
.flow-area1 ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}
.flow-area1 ul li{
	background-color: var(--body-bg-color);
	border: 2px solid var(--main-color);
	border-radius: 20px;
	padding: 10px 20px;
	margin: 2em auto 20px;
	position: relative;
}
.flow-area1 ul li:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
    top: 100%;
	margin: 0 auto;
    width: 40px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
	background-color: var(--main-color);
}
.flow-area1 ul li:last-child:before{
	height: 0;
}
.flow-area1 ul li .num{
	position: absolute;
	left: 10px;
	top: -.85em;
	font-size: 3.5em;
	font-weight: 900;
	line-height: 1;
	color: var(--main-color);
}
.flow-area1 ul li .flow_head{
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.5;
	color: var(--main-color);
	text-align: center;
}
.flow-area1 ul li img{
	display: block;
	width: 70%;
	object-fit: contain;
	margin: 5px auto;
}
.flow-area1 ul li .flow_bottom{
	display: table;
	font-size: .9em;
	line-height: 1.5;
	margin: .5em auto;
}

/* ScrollTrigger */
#app .wrapper{
	height: 50vh;
	display: flex;
	width: 100%;
	align-items: center;
}


/* マーカー */
.c-marker.is-active{
    background-position: 0% .5em;
}

/* 会社概要 */
.cpn_tbl table{
	border-collapse: collapse;
	margin: 20px auto 40px;
}
.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;
}

/* お問合せ */
.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(2em + .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;
}
.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: #ffe13f;
    color: #000;
    text-align: center;
	text-decoration: none;
	padding: 15px 0px;
	margin: 0;
}
.cv_btn_area .btn a:nth-child(2),
.cv_btn_area .btn a:nth-child(3){
	background: var(--side-btn-bg-color2);color: #fff;
}
.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!important;
}
.for-tab{
	display: block;
}


/* Margin・Padding */
.mb0{
	margin-bottom: 0!important;
}

/*フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 3s ease forwards;
}
@keyframes fadein {
    100% {  opacity: 1;}
}



/* -----------------------------------------------------------------------------
	 個別設定
----------------------------------------------------------------------------- */
.tab-none {
	display: block;
}
.sp-none {
	display: none;
}
.s-marker {
	display: inline-block;
    background: linear-gradient(180deg, transparent 0%, transparent 60%, var(--sub-color) 60%, var(--sub-color) 80%, transparent 80%);
}
.s-bg {
	background-color: var(--main-color);
	color: var(--side-btn-txt-color);
	padding-left: 8px;
}
.bold {
	font-weight: bold;
}
main .con1 {
	background-color: var(--main-color);
}
.con1 .h1 .parts-h1 {
	position: relative;
	width: calc(100% - 20px);
    margin: 30px 10px 0;
	padding: 30px 20px 40px;
	font-size: clamp(1.1rem, (1.2rem + 1vw), 1.2rem);
	background-color: var(--body-bg-color);
	border-radius: 40px;
	box-sizing: border-box;
	line-height: 2;
}
.con1 .h1 .parts-h1::before {
	content: "";
	position: absolute;
	background: url(../../p-img/101579_1/con1-h1.svg) no-repeat left top / contain;
	width: 90px;
    height: 120px;
    right: -14px;
    bottom: -80px;
}
.con1 .wrap {
	margin: 0 0 40px;
	box-sizing: border-box;
}
.con1 .wrap .parts-h1 {
	margin: 80px 10px 30px;
	font-size: 1.5rem;
	color: var(--side-btn-txt-color);
}
.con1 ul.w1024 {
	display: flex;
	flex-direction: column;
	gap: 30px;
	flex-wrap: wrap;
	margin: 0 20px 50px;
}
.con1 ul.w1024 li {
	width: 100%;
	background-color: var(--body-bg-color);
	padding: 20px 10px;
	box-sizing: border-box;
	border-radius: 15px;
}
.con1 ul.w1024 li img {
	width: 40%;
	display: block;
	margin: 0 auto 16px;
}
.con1 .case {
	position: relative;
	padding: 16px;
	font-size: 1rem;
	font-weight: bold;
	color: var(--main-color);
	background-color: var(--light-color);
    border-radius: 20px;
}
.con1 .case:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 10px 10px;
	border-color: transparent transparent var(--light-color) transparent;
	position: absolute;
	top: -10px;
	left: calc(50% - 10px);
	margin: auto;
}
.con1 .memo {
	padding-top: 10px;
	color: var(--body-font-gray);
}
.con1 .memo i {
	padding-right: 5px;
	font-size: 1.2rem;
}
.con1 .solve {
	position: relative;
	width: 100%;
	background: url(../../p-img/101579_1/con1.jpg) no-repeat center center / cover;
	padding: 1px 0;
}
.con1 .solve::before {
	content: "";
	background: url(../../p-img/101579_1/con1-bg.svg) no-repeat top left / contain;
	width: 120px;
	height: 40px;
	position: absolute;
	top: 0;
	left: calc(50% - 60px);
}
.con1 .solve p {
	color: var(--main-color);
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
}
.con1 .solve p .ac-col{font-weight: 900;}

.case_add{color: #fff;position: static;padding-bottom: 20px;}
.case_add h3{font-size: 1.15em}
.case_add ul{display: flex;margin-right: -3em;padding-left: 1em;flex-wrap: wrap;}
.case_add li{list-style: disc;margin-right: 3em}

.con2 section {
	margin: 0;
}
.con2 .w1024 {
	margin: 50px 20px;
}
.con2 .parts-txt-img {
	display: flex;
	flex-direction: column;
}
.con2 .parts-txt-img > div {
	width: 100%;
}
.con2 .parts-txt-img .r-img {
	margin: 0;
}
.con2 .parts-txt-img h3 {
	display: flex;
    align-items: center;
    gap: 20px;
	color: var(--main-color);
	padding: 0;
	border: none;
	margin-bottom: 0;
}
.con2 .parts-txt-img h3::before {
	font-size: 5rem;
	font-weight: 300;
}
.con2 .parts-txt-img:nth-of-type(1) h3::before{
	content: "01";
}
.con2 .parts-txt-img:nth-of-type(2) h3::before{
	content: "02";
}
.con2 .parts-txt-img:nth-of-type(3) h3::before{
	content: "03";
}
.con2 .parts-txt-img:nth-of-type(4) h3::before {
	content: "04";
}
/*con3*/
.con3 ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.con3 li{text-align: center;}
.con3 li p{text-align: left;}
.con3 li img{
	width: 100%;max-width: 410px;
	margin-bottom: 10px;
	margin: 0 auto 10px;
}
.con3 li h3 {
	color: var(--main-color);
	text-align: center;
	line-height: 1.5;
	margin-bottom: .5em;font-size: 1.3rem;
}
/*con4*/
.con4 .w1024 {
	margin: 0 10px 30px;
}
.con4 ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.con4 li {
	background-size: 200px;padding: 16px;
	background-color: var(--light-color);
	border-radius: 20px;
	box-sizing: border-box;
	
	
	background-position: right -20px top 15px;
	background-repeat: no-repeat;
}
.con4 li:nth-child(1){background-image: url("../../p-img/101579_1/ex-bg1.svg");}
.con4 li:nth-child(2){background-image: url("../../p-img/101579_1/ex-bg2.svg");}
.con4 li .img {
	order: 2;
}
.con4 li .txt {
	order: 1;
}
.con4 h3 {
	color: var(--main-color);
	display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.4rem;
    gap: 10px;
    margin-bottom: 20px;
}
.con4 h3 .case {
	font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    line-height: 1;
}
.con4 h3 .case .num {
	font-size: 3.5rem;
    display: block;
}
.con4 .parts-txt-img{
	/*display: flex;*/
	align-items: center;display: block;
	/*margin-bottom: 0;*/
	margin: 0;
}
.con4 .parts-txt-img {
	max-width:100% ;}
.con4 .parts-txt-img .r-img {width: 110px;max-width: 40%}
.con4 .parts-txt-img img {
	width: 100%;
}
.con4 .parts-txt-img .txt {
	font-weight: 700;
}
.con4 .emp {
	position: relative;
	display: block;
	font-size: 1.2rem;
	color: var(--accent-color);
	font-weight: bold;
	text-align: center;
	padding-top: 26px;font-weight: 900;
	background: url("../../p-img/101579_1/under-line.svg") repeat-x bottom left / auto 4px;
	width: 12em;margin: 0 auto .5em;
}
.con4 .emp::before{
	content: "";
	position: absolute;
	background: url(../../p-img/101579_1/arrow.svg) no-repeat top left / contain;
	width: 48px;
    height: 20px;
    top: 5px;
    left: calc(50% - 24px);
}
.con4 .value {
	display: block;
	margin-top: 10px;
	padding-top: 10px;
	font-weight: bold;
	border-top: solid 1px var(--main-color);
}
.con4 .comment {
	margin: 20px 0 0;
	padding: 16px;
	background-color: var(--body-bg-color);
	border-radius: 10px;
}
.con4 .comment::before {
	content: "Comment";
	display: block;
	font-weight: bold;
	color: var(--accent-color);
}
/*con5 QA*/
.con5 dt{
	font-size: 1.25rem;
	margin-left: 1.75em;
	font-weight: bold;
	position: relative;
	line-height: 1.6;
	margin-bottom: 1em;
	color:var(--main-color)
}
.con5 dt::before{
	content: 'Q.';
	font-size: 1.2em;
	color:var(--main-color);
	position: absolute;
	top: -6px;
	left: -1.9rem;
}
.con5 dd{
	margin-left: 3.25rem;
	font-weight: normal;
	position: relative;
	line-height: 1.8;
	margin-bottom: 3em
}
.con5 dd::before{
	content: 'A.';
	font-size: 1.5em;
	font-weight: bold;
	color:var(--main-color);
	position: absolute;
	top: -10px;
	left: -1.6rem;
}

.con5 dd::after{
	content: '';
	display: block;
	height: 1px;width:calc( 100% + 3.25rem);
	background-color:#E5E5E5;
	position: absolute;
	bottom:-1em;
	left:-3.25rem;
}
.con5 dd:last-child::after{display: none}
.con5 dd ol{margin: 1.5em 0}
.con5 dd ol li{margin-bottom: 1em;}

/*CTA　*/
.contents.con-cta {
	background-color: var(--main-color);
}
.contents.con-cta .parts-h1 {
	color: var(--side-btn-txt-color);
}
.con7{background-position: top 150px left calc(50vw - 900px);}
.con1 + .con-cta .w1024 {
	margin-top: 20px;
}
.con-cta .w1024 {margin-top: 50px;}
.cta {
  text-align: center;
  line-height: 1.3;
  margin:0;
  color: var(--side-btn-txt-color);}

.block {
    display: block;
}
.cta-lead{text-align: center;font-weight: 900;font-size: 1.55em;line-height: 1.5;margin-bottom: 1em;}
.cta-lead .inblock{
	border: 1px solid #222;padding:.25em .5em;border-radius: 3px;line-height: 1;margin-right: .25em;background-color: var(--body-bg-color);margin-bottom: 0.15em;
}
.cta-lead .nobr{margin-bottom: -0.15em; color: var(--main-color);}

.cta-lead .block{margin-top: .5em; }
.cta-bg .cta{padding: 20px 0;}
.cta .cta-a {
  display: block;
  text-decoration: none;
  background-color: #FFE13F;);
  color:#000;
  text-align: center;
  padding:0em 1.25em 0 .5em;
  border-radius:25px;
  position: relative;
  width: 14em;
  max-width: 92%;
  font-size: 1.5em;
  margin:0 auto 1.5em;font-weight: 900;
  border: solid 4px #fff;box-shadow: 3px 3px 10px rgba(0, 4, 7, 0.63); 
box-sizing: border-box;}

.cta .cta-a::after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 1.5rem;
  content: "\f054";
  top: 50%;
  right: 12px;
	transform: translateY(-50%);}
.cta .cta-a .small {
	font-size: 1rem
}
.cta .cta-a .fsmall{font-weight: 500;display: inline-block}
.cta .cta-a img{width: 4.5em;margin-top: 0.25em;margin-bottom: -1em}
.contact .tel a img:nth-child(1){height: .8em;width: auto;margin-right: 0.25em}
.cta .align-center{font-size: 1.25em;font-weight: 700; margin-bottom: 1em!important}
.contact .tel a{display: block;border-radius: 3px;
	font-family: var(--contact-tel-font-family);
	font-weight: var(--contact-tel-font-weight);
	font-size: 1.65em;
	text-align: center;
	color: #000;background-color: #FFE13F;padding: 0.35em 0.5em 0.25em;line-height: 1;width: 10em;margin: 0 auto 0;}
.form_sub{
	font-size: 16px!important;
	color: #000;
	text-align: center;line-height: 1;
	margin-top: 1em;font-weight: 300;
}


/*con6 会社概要*/
.con6 table,.parts-map{font-size:16px; }
td li{list-style: disc;line-height: 1.4;}
td ul{margin: .6em 0 .6em 1em}
td li:not(:last-child){margin-bottom: .3em;} 
.parts-map.left span{}
.parts-map span{display: block;margin-bottom: .5em;font-size: .9em;
  font-weight: 500;text-align: center;
  color: var(--cpn-th-color);}


.cv_btn_area .btn a.pc-tel {
	display: none;
}
.cta-lead .xxflarge.nobr{display: inline-block;color: #fff;}




@media screen and (max-width: 480px) {
	
	.ttl-p p{
	  display: block;width: 170px;
	}
	.ttl-p::after{width: 170px;height: auto;flex: none;}
	.cta .cta-a {
		font-size: 1.75em;}
	.parts-h3 {
		font-size: calc(1.25em + .5vw);}
	.parts-h1 {font-size: 1.85rem}
}





