@charset "utf-8";

/* -----------------------------------------------------------------------------
 環境設定
----------------------------------------------------------------------------- */
/* 定義 */
:root {
	/* 色 */
	--main-color: #ed5314; /* メインカラー */
	--sub-color: #dbeeef; /* サブカラー */
	--accent-color: #2f476f; /* アクセントカラー */
	--dark-color: #9C8F96; /* ダークカラー */
	--light-color: #f5f7ed; /* ライトカラー */
	
	/* 全体 */
	--body-font-family: 'Noto Sans JP', sans-serif; /* フォントfamily */
	--body-font-size: 16px; /* 文字サイズ */
	--body-line-height: 2; /* 行間 */
	--body-font-color: #333; /* 文字色*/
	--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: "Zen Maru Gothic", sans-serif; /* メイン フォントfamily */
	--h1-main-font-weight: 900; /* メイン 文字太さ */
	--h1-main-color: var(--body-font-color); /* メイン色 */
	--h1-sub-font-family: inherit; /* サブ フォントfamily */
	--h1-sub-font-weight: 300; /* サブ 文字太さ */
	--h1-sub-color: var(--main-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: #f9ed9f; /* 背景色 */
	--footer-txt-color: var(--body-font-color); /* 文字色 */
	--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: 180px; /* ロゴ 横幅 */
	--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: var(--dark-color); /* 背景色(下) */
}


/* 背景 */
.contents_bg1{
	background-color: var(--light-color)!important;
}
.contents_bg2{
	background: var(--body-bg-color) url("../../p-img/101597_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 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 50px 0 10px;
	border: none;
}
header > .inner > .logo h1 {
	display: flex;
	align-items: center;
	padding: 0 50px 0 10px;
	border: none;
	font-size: 12px;
	line-height: 1;
}
header > .inner > .logo h1 .sub {
	background-color: var(--body-font-color);
	color: var(--side-btn-txt-color);
	border-radius: 4px;
	margin-left: 4px;
	padding: 2px 8px;
}

header > .inner > .logo img{
	height: 20px;
	vertical-align: middle;
	margin-right: 8px;
	order: 1
}
header > .inner > .logo .h1_kw{
	order: 2;
	font-weight: 500;
	white-space: pre;
}
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;
	background-color: var(--light-color);
}
#top-contents .mv {
	position: relative;
	display: flex;
	flex-direction: column;
}
#top-contents .mv .slider {
	width: 100%;
	order: 2;
	position: relative;
	bottom: -30px;
	z-index: 1;
}
#top-contents .mv .slider::after {
	content: "";
	position: absolute;
	background: url(../../p-img/101597_1/decoration.svg) no-repeat top right / contain;
	width: 560px;
    height: 490px;
    top: -160px;
    right: -290px;
	z-index: -1;
}
#top-contents .mv .slider img {
	width: 100%;
	max-width: 400px;
	margin: auto;
}
#top-contents .mv .layer1 {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0 20px;
	box-sizing: border-box;
	z-index: 3;
}
#top-contents .mv .layer1 p {
	order: 1;
	border: solid 3px var(--main-color);
	font-family: var(--h1-main-font-family);
	font-weight: 700;
	font-size: clamp(1.125rem ,4vw, 1.5rem );
	color: var(--main-color);
	text-align: center;
	border-radius: 10px;
}
#top-contents .mv .layer1 h3{
	order: 2;
	margin: 20px 0;
	font-family: var(--h1-main-font-family);
	font-weight: 800;
	font-size: clamp(1.087rem, 2.5vw, 2rem);
	line-height: 1.5;
}
#top-contents .mv .layer1 h3 .main-col{
	font-size: 1.65em;
}
#top-contents .mv .layer1 h2{
	order: 3;
	font-size: clamp(.94rem, 1.75vw, 1.125rem);
	margin-bottom: 60px;
}
#top-contents .mv .layer1 .cta-btn{
	letter-spacing: 2px;
	order: 4;
}
#top-contents .layer2 {
	position: relative;
	background-color: var(--sub-color);
	z-index: 2;
}
#top-contents .layer2 p {
	font-size: .9em;
	padding: 30px 20px;
	box-sizing: border-box;
}
/* -----------------------------------------------------------------------------
 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 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 {
	display: inline;
	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{
	display: inline-block;
	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: clamp(1.77rem, 5.6vw, 2rem);
	text-align: center;
	color: var(--h1-main-color);
	line-height: 1.6;
	letter-spacing: 2px;
	margin-bottom: 1em;
}
.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-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: 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);
}


/* -----------------------------------------------------------------------------
 財団カスタマイズ
----------------------------------------------------------------------------- */

/* 共通 */
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: 100%;
	margin: 0 auto 2em;
	overflow: hidden;
}
.parts-txt-img .r-img,
.parts-txt-img .l-img{
	width: 48%;
	box-sizing: border-box;
}
.parts-txt-img .r-img{
	float: right;
	margin-left: 20px;
}
.parts-txt-img .l-img{
	float: left;
	margin-right: 20px;
}
.parts-txt-img .r-img img,
.parts-txt-img .l-img img{
	width: 100%;
}

/* 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;
	gap: 20px;
	margin-bottom: 40px;
}
.flow-area1 ul li{
	width: 100%;
	background-color: var(--body-bg-color);
	border-radius: 20px;
	padding: 50px 20px 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(--body-bg-color);
}
.flow-area1 ul li:last-child:before{
	height: 0;
}
.flow-area1 ul li .num{
	position: absolute;
	width: 80px;
    height: 80px;
	left: calc(50% - 40px);
	top: -40px;
	font-size: 1.75em;
    font-weight: 600;
	line-height: 1;
	font-family: var(--h1-main-font-family);
	color: var(--main-color);
	background-color: var(--footer-bg-color);
	border-radius: 50%;
	text-align: center;
    align-content: center;
}
.flow-area1 ul li .num .step {
	display: block;
	font-size: .5em;

}
.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 */
.visible, .invisible {
    opacity: 0.0;
    transition: opacity 1s ease;
}
.visible {
    opacity: 1.0;
}

.visible.translateY,.invisible.translateY {
	transform: translateY(100px);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateY {
	transform: translateY(0);
}

.visible.translateToLeft,.invisible.translateToLeft {
	transform: translateX(100px);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateToLeft {
	transform: translateX(0);
}

.visible.translateToRight,.invisible.translateToRight {
	transform: translateX(-100px);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateToRight {
	transform: translateX(0);
}

.visible.translateScaleUp,.invisible.translateScaleUp {
	transform: scale(.5);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateScaleUp {
	transform: scale(1);
}

.visible.translateScaleDown,.invisible.translateScaleDown {
	transform: scale(1.4);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateScaleDown {
	transform: scale(1);
}

.visible.translateRotate,.invisible.translateRotate {
	transform: rotate(360deg);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateRotate {
	transform: rotate(0deg);
}

#app .wrapper{
	height: 50vh;
	display: flex;
	width: 100%;
	align-items: center;
}
.str__animation{
	display: flex;
	justify-content: center;
	font-size: 1.2rem;
}
.str__animation .str{
	will-change: auto;
	min-width: .3rem;
	transform: translateY(0);
	opacity: 0;
}


/* マーカー */
.c-marker {
    background: -webkit-linear-gradient(left, rgba(251,238,6,0.50) 50%, transparent 50%);
    background: -moz-linear-gradient(left, rgba(251,238,6,0.50) 50%, transparent 50%);
    background: linear-gradient(left, rgba(251,238,6,0.50) 50%, transparent 50%);
	background-repeat: no-repeat;
	background-size: 200% .8em; 
    background-position: 100% .5em;
    transition: 2s;
}
.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: 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 img {
	height: 55px;
}
.cv_btn_area .btn a:nth-child(2){
	background: #4cc764;
}
.cv_btn_area .btn a:nth-child(3),
.cv_btn_area .btn a:last-child{
	background-color: var(--accent-color);
}
.cv_btn_area .btn a i {
	font-size: 1.5em;
	margin-right: 10px;
}
.cv_btn_area .btn a:last-child{
	display: none;
}

.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;
}

/*フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 3s ease forwards;
}
@keyframes fadein {
    100% {  opacity: 1;}
}



/* -----------------------------------------------------------------------------
	 個別設定
----------------------------------------------------------------------------- */
.in-block {
	display: inline-block;
}
.main-col {
	color: var(--main-color);
}
.ac-col {
	color: var(--main-color);
}
.enclose{
	display: inline-block;
    margin-bottom: 1em;
    border: solid 3px var(--accent-color);
    font-family: var(--h1-main-font-family);
    font-size: .85em;
    font-weight: 700;
    color: var(--accent-color);
    padding: 2px 20px;
    text-align: center;
    border-radius: 10px;
}
/* cta */
.cta {
	background-color: var(--sub-color);
	padding: 1px 0;
}
.cta h3 {
	font-family: var(--h1-main-font-family);
	font-weight: var(--h1-main-font-weight);
	text-align: center;
	margin-bottom: 50px;
	font-size: 1.5em;
	line-height: 1.6;
}
.cta h3 .small {
	display: block;
    font-weight: var(--h1-sub-font-weight);
    font-size: .4em;
    color: var(--h1-sub-color);
    text-shadow: none;
}
a.cta-btn{
	position: relative;
    width: 100%;
	max-width: 400px;
    display: block;
	margin: auto;
    background: var(--main-color);
    color: var(--side-btn-txt-color);
    padding: 32px 40px;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
	border-radius: 10px;
}
.cta-btn .sub {
	display: inline-block;
	width: max-content;
    padding: 4px 24px;
    font-size: .9em;
    font-weight: bold;
    color: var(--main-color);
    background: #f9ed9f;
    border-radius: 4px;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}
.cta-btn::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f9ed9f;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.cta-btn::after{
	content: "";
	background: url(../../p-img/101597_1/arrow.svg) no-repeat center / contain;
	position: absolute;
	top: calc(50% - 10px);
	right: 20px;
	width: 20px;
	height: 20px;
}
.cta p {
	margin-top: 1.25em;
	font-family: var(--h1-main-font-family);
	text-align: center;
}
/* con1 */
.con1 ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.con1 li {
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 1.1rem;
	line-height: 1.6;
}
.con1 li img {
	display: table;
	width: 100%;
	max-width: 350px;
	margin: auto;
}
.con1 li .small {
	font-size: .75em;
}
/* con2 */ 
.con2 .worries {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.con2 .worries li {
	width: 100%;
	padding: 20px;
	font-weight: 600;
	background-color: var(--body-bg-color);
	box-sizing: border-box;
	border-radius: 10px;
	align-content: center;
}
.con2 .worries-2 {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.con2 .worries-2 .worries-2-image {
	margin: 0;
	width: 100%;
	height: 250px;
	order: 1;
}
.con2 .worries-2 .worries-2-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.con2 .worries-2 > div{
	order: 2;
}
.con2 .worries-2 ul {
	display: inline;
}
.con2 .worries-2 li {
	display: inline-block;
	margin: 0 10px 16px 0;
	border: solid 2px;
	padding: 10px;
	color: var(--accent-color);
	font-weight: bold;
	border-radius: 10px;
}
.con2 .worries-2 > div p{
	font-family: var(--h1-main-font-family);
	font-weight: 700;
	font-size: 1.102rem;
	margin-bottom: 20px;
}
.con2 .solution {
	position: relative;
	background-color: var(--footer-bg-color);
    padding: 60px 0 180px;
}
.con2 .solution .solution-image {
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 220px;
    height: 190px;
}
.con2 .solution .solution-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.con2 .ttl {
	font-family: var(--h1-main-font-family);
	font-weight: 700;
	font-size: 1.2rem;
	text-align: center;
	line-height: 1.6;
}
/*con3*/
.con3 .parts-h1 {
	margin-top: 60px;
	margin-bottom: 60px;
}
.con3 .parts-txt-img {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
.con3 .parts-txt-img .l-txt,
.con3 .parts-txt-img .r-txt {
	position: relative;
	padding: 40px 20px 0;
    box-sizing: border-box;
	background-color: var(--body-bg-color);
	border-radius: 20px;
	align-content: center;
}
.con3 .parts-txt-img .l-txt.ttl{
	text-align: center;
	padding-top: 0;
}
.con3 .parts-txt-img .l-txt .img,
.con3 .parts-txt-img .r-txt .img{
	width: 250px;
	height: 200px;
	margin: auto;
}
.con3 .parts-txt-img .img img{
	width: 100%;
}
.con3 .parts-txt-img .ttl {
	background: none;
}
.con3 .parts-txt-img .ttl h3 {
	font-size: 1.4rem;
	font-family: var(--h1-main-font-family);
	font-weight: 700;
	color: var(--body-font-color);
	line-height: 1.75;
}
.con3 .parts-txt-img .ttl::before {
	content: none;
}
.con3 .parts-txt-img .n2::before {
	background: url(../../shared-premiere/img2/sample_1024_1024.jpg) no-repeat center / contain;
}
.con3 .parts-txt-img .n3::before {
	background: url(../../shared-premiere/img2/sample_1024_1024.jpg) no-repeat center / contain;
}
.con3 .parts-txt-img .n4::before {
	background: url(../../shared-premiere/img2/sample_1024_1024.jpg) no-repeat center / contain;
}
.con3 .parts-txt-img .n5::before {
	background: url(../../shared-premiere/img2/sample_1024_1024.jpg) no-repeat center / contain;
}
.con3 .parts-txt-img .n6::before {
	background: url(../../shared-premiere/img2/sample_1024_1024.jpg) no-repeat center / contain;
}
.con3 .parts-txt-img .n7::before {
	background: url(../../shared-premiere/img2/sample_1024_1024.jpg) no-repeat center / contain;
}
.con3 .parts-txt-img .parts-h2 {
	position: relative;
	color: var(--body-font-color);
	font-weight: 700;
	padding-bottom: .6em;
	text-align: left;
	text-shadow:0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
}
.con3 .parts-txt-img .parts-h2::before {
	content: "";
	position: absolute;
	background-color: var(--main-color);
	width: 2em;
	height: 3px;
	border-radius: 4px;
	left: 0;
	bottom: 0;
}
.con3 .parts-txt-img .parts-h2 .small {
	margin-bottom: .25em;
	font-size: .6em;
	display: block;
	color: var(--main-color);
}
.txt_area {
	position: relative;
}
.con3 .txt_area ul {
	font-size: .8rem;
}

.con3 .support h3 {
	margin-bottom: 50px;
	font-family: var(--h1-main-font-family);
    font-weight: var(--h1-main-font-weight);
	font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
	line-height: 1.6;
}
.con3 .support ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.con3 .support li {
	display: inline-block;
    margin: 0 10px 16px 0;
    border: solid 2px;
    padding: 10px;
    color: var(--accent-color);
    font-weight: bold;
    border-radius: 10px;
}

/* con5 */
.con5 .ttl {
	font-family: var(--h1-main-font-family);
    font-weight: 700;
	font-size: 1.1rem;
	text-align: center;
	line-height: 2;
}


/*con6 QA*/
.con6 dl {
	margin: 0 auto 40px;
}
.con6 dt{
	font-size: 1.25rem;
	margin-left: 1.5em;
	font-weight: bold;
	position: relative;
	line-height: 1.6;
	margin-bottom: 1em;
	color:var(--body-font-color);
}
.con6 dt::before{
	content: 'Q.';
	font-size: 1.2em;
	color:var(--main-color);
	position: absolute;
	top: -3px;
    left: -2rem;
}
.con6 dd{
	margin-left: 3.25rem;
	font-weight: normal;
	position: relative;
	line-height: 1.8;
	margin-bottom: 3em
}
.con6 dd::before{
	content: 'A.';
	font-size: 1.5em;
	font-weight: bold;
	color:var(--main-color);
	position: absolute;
	top: -10px;
	left: -1.6rem;
}

.con6 dd::after{
	content: '';
	display: block;
	height: 1px;width:calc( 100% + 3.25rem);
	background-color:#c2c2c2;
	position: absolute;
	bottom:-1em;
	left:-3.25rem;
}
.con6 dd:last-child::after{display: none}
.con6 dd ol{margin: 1.5em 0}
.con6 dd ol li{margin-bottom: 1em;}


.con7 {
	background-color: var(--sub-color)!important;
}
.con7 .lead{
	font-family: var(--h1-main-font-family);
	text-align: center;
}
.con7 .lead .bold {
	font-weight: bold;
	color: var(--main-color);
}
.con7 .btn-area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	margin: 50px auto;
}
.con7 .btn-area a {
	position: relative;
    width: 100%;
    max-width: 400px;
    display: block;
    margin: auto;
    background: var(--main-color);
    color: var(--side-btn-txt-color);
    padding: 24px 40px;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
}
.con7 .btn-area .line-btn {
	background: #4cc764;
}
.con7 .btn-area .line-btn img{
	width: 40px;
}
.con7 .btn-area .tel-btn {
	background: var(--accent-color);
}

/* 料金プラン */
.text-custom-green {
	color: var(--main-color);
}
.bg-custom-green {
	background-color: var(--main-color);
}
.border-custom-green {
	border-color: var(--main-color);;
}
.font-semibold-bottom {
	font-weight: 700;
	margin: 40px auto 30px;
	line-height: 1.75;
	color: var(--main-color);
}
.text-small-right {
	text-align: right;
	font-size: .8em;
}
.con4 .text-center .small {
	font-size: .8em;
}
.con4 .parts-table table{
	width: 100%;
	margin-bottom: 10px;
}
.con4 .parts-table th{
	text-align: center;
	color: #fff;
	background-color: var(--main-color);
}
.con4 .parts-table th .font_s{
	font-size: .8em;
}
.con4 .parts-table td{
	text-align: center;
	background-color: #fff;
}
.con4 .parts-table td:last-child{
	font-weight: 700;
	
}
.con4 .parts-table td .yen{
	font-size: .9em;
}
.con4 .parts-table ul{
	padding-left: 1em;
	margin-bottom: 20px;
}
.con4 .parts-table li{
	font-size: .85em;
	text-indent: -1em;
	line-height: 1.8;
}







