@charset "utf-8";

/* -----------------------------------------------------------------------------
 環境設定
----------------------------------------------------------------------------- */
/* 定義 */
:root {
	/* 色 */
	--main-color: #F75A5A; /* メインカラー */
	--sub-color: #FF8F22; /* サブカラー */
	--accent-color: #FFD63A; /* アクセントカラー */
	--dark-color: #0DBBA5; /* ダークカラー */
	--light-color: #D8F4F1; /* ライトカラー */
	
	/* 全体 */
	--body-font-family: 'Zen Kaku Gothic New', sans-serif; /* フォントfamily */
	--body-font-size: 16px; /* 文字サイズ */
	--body-line-height: 2; /* 行間 */
	--body-font-color: #111; /* 文字色*/
	--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 Kaku Gothic New", sans-serif;/* メイン フォントfamily */
	--h1-main-font-weight: 900; /* メイン 文字太さ */
	--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(--sub-color); /* リストアイコン色 */
	--col-line-height: 1.6; /* 2分割・3分割・4分割の行間 */
	
	/* 会社概要 */
	--cpn-table-border: #ccc; /* table線色 */
	--cpn-th-color: #aaa; /* th色 */
	
	/* お問合せ */
	--contact-tel-font-family: 'Zen Kaku Gothic New', sans-serif; /* TELフォントfamily */
	--contact-tel-font-weight: 700; /* TEL文字太さ */
	--contact-tel-color: #fff; /* TEL文字色 */
	--contact-center-line-color: #ccc; /* 中央線 */
	--contact-form-btn-txt-color: #fff; /* フォームボタン文字色 */
	--contact-form-btn-bg-color: var(--main-color); /* フォームボタン背景色 */
	
	/* フッター */
	--footer-bg-color: var(--dark-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: 100px; /* ロゴ 横幅 */
	--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: var(--main-color); /* 背景色(上) */
	--side-btn-bg-color2: var(--accent-color); /* 背景色(下) */
}


/* 背景 */
.contents_bg1{
	background: url("../../p-img/101574_1/bg01.webp")left top/100% repeat-y;
}
.contents_bg2{
	background-color: var(--light-color)!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{
	font-size: 16px;
	font-weight: 400;
	white-space: nowrap;
	color: var(--header-logo-color);
	margin-right: 8px;
}
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;
}
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: 500px;
	object-fit: cover;
}
#top-contents .slider {
	position: relative;
	z-index: 1;
}
#top-contents .layer1 {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	z-index: 5;
}
#top-contents .layer1 h2{
	/* font-family: "M PLUS 1p", sans-serif; */
	font-weight: 900;
	line-height: 1.3;
	color: var(--dark-color);
	text-shadow: 0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
}
#top-contents .layer1 h2 .l1,
#top-contents .layer1 h2 .l2{
	display: block;
}
#top-contents .layer1 h2 .l1{
	font-size: 65px;
	margin-bottom: 18px;
}
#top-contents .layer1 h2 .l1 .c-marker{
	font-size: 1.2em;
	background-position: 0% 1em;
}
#top-contents .layer1 h2 .l2{
	font-size: calc(18px + .5vw);
}
#top_bottom{
	max-height: 100px;
	overflow-y: auto;
	background-color: var(--light-color);
	padding: 8px 15px;
}
#top_bottom p{
	font-size: 13px;
	line-height: 1.5;
}

/* -----------------------------------------------------------------------------
 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 {
	width: 14px;
	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: 2;
	color: var(--footer-txt-color);
	text-align: center;
}
footer .copy a{
	border: none;
}
footer .copy img{
	width: 124px;
}
.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 .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;
	font-weight: 500;
	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;
}
.footer-info .mail a.mail_button{
	min-width: inherit;
	height: auto;
	border: none;
	box-shadow: none;
}

/* -----------------------------------------------------------------------------
 共通 parts
----------------------------------------------------------------------------- */
/* parts-h1 */
.parts-h1 {
	font-family: var(--h1-main-font-family);
	font-weight: var(--h1-main-font-weight);
	font-size: 45px;
	text-align: center;
	color: var(--h1-main-color);
	line-height: 1.4;
	letter-spacing: 2px;
	margin-bottom: .5em;
}
.parts-h1.white{
	color: #fff;
}
.parts-h1 .l1{
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}
.parts-h1 .font_s{
	display: block;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 10px;
}
.parts-h1 .font_bb{
	font-size: 1.8em;
	line-height: .8;
}
.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;
	margin-top: 10px;
}

/* 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 {
	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);
}

*, *::before, *::after {
  box-sizing: border-box;
}

img{
	width: 100%;
	max-width: 100%;
	vertical-align: top;
}

a.anchor{
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}

.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_b{
	font-size: 1.3em;
	line-height: 1;
	margin: 0 3px;
}
.font_s{
	font-size: .7em;
	margin: 0 2px;
}
.f_red{
	color: var(--main-color);
}

.inblock{
	display: inline-block;
}
.tbl_auto{
	display: table;
	margin: auto;
}

span.dots{
    background-image: radial-gradient(circle at center, #ed2323 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
    padding-top: 0.15em;
}

/* 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);
}

/* 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;
}

/* 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.5;
	margin-bottom: 10px;
	position: relative;
}
.parts-list ul li:before{
	content: '';
	display: inline-block;
	position: absolute;
	top: .6em;
	left: -1.1em;
	width: 7px;
	height: 7px;
	background-color: var(--list-style-color);
}

/* flow 横 */
.flow-area1{
	margin-top: 80px;
}
.flow-area1 ul{
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	gap: 20px;
}
.flow-area1 ul li{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	background-color: var(--body-bg-color);
	border: 2px solid var(--main-color);
	border-radius: 20px;
	padding: 15px 10px 10px;
	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: -.87em;
	font-family: "Montserrat", sans-serif;
	font-size: 70px;
	font-weight: 900;
	line-height: 1;
	color: var(--main-color);
}
.flow-area1 ul li .num .font_s{
	font-size: .4em;
	font-weight: 700;
}
.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: 120px;
	object-fit: contain;
	margin: 5px auto;
}
.flow-area1 ul li .flow_bottom{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.4;
	text-align: center;
	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,225,6,1) 50%, transparent 50%);
    background: -moz-linear-gradient(left, rgba(251,225,6,1) 50%, transparent 50%);
    background: linear-gradient(left, rgba(255,228,0,1) 50%, transparent 50%);
	background-repeat: no-repeat;
	background-size: 200% .4em; 
    background-position: 100% 1em;
    transition: 2s;
}
.c-marker.is-active{
    background-position: 0% 1em;
}

/* 会社概要 */
.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{
	margin-top: 40px;
}
.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: 48px;
	font-weight: 900;
	line-height: 1.7;
	text-align: center;
	color: var(--contact-tel-color);
}
.contact .tel a i{
	font-size: .7em;
	margin-right: 5px;
}
.form_sub{
	font-size: 16px;
	color: #eee;
	text-align: center;
	margin-top: 5px;
}
.form_sub .bar{
	content: '';
	display: inline-block;
	width: 7px;
	height: .5px;
	background-color: #eee;
	vertical-align: middle;
	margin: 0 6px;
}
a.mail_button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
	min-width: 310px;
	height: 140px;
	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: 15px;
	font-weight: 900;
	transition: all .3s;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
a.mail_button:hover {
	opacity: 0.85;
}
a.mail_button i{
	transition: all .3s;
}
a.mail_button:hover i{
	transform: scale(1.3);
}
a.mail_button .l1,
a.mail_button .l2{
	display: table;
	margin: auto;
}
a.mail_button .l1{
	font-size: 28px;
	letter-spacing: -1px;
	position: relative;
}
a.mail_button .l1:before,
a.mail_button .l1:after{
	content: '';
	display: inline-block;
	width: 2px;
	height: 1.3em;
	background-color: #fff;
	position: absolute;
	bottom: -1px;
}
a.mail_button .l1:before{
	left: -15px;
	transform: rotate(-30deg);
}
a.mail_button .l1:after{
	right: -12px;
	transform: rotate(30deg);
}
a.mail_button .l1.c-marker{
	background-size: 200% .3em; 
	background-position: 100% 1.2em;
}
a.mail_button .l1.c-marker.is-active{
    background-position: 0% 1.2em;
}
a.mail_button .l2{
	font-size: 35px;
	letter-spacing: -1px;
}

/* 横問合せボタン */
.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:first-child{
	display: none;
}
.cv_btn_area .btn a:last-child{
	color: #111;
	background: var(--side-btn-bg-color2);
}
.cv_btn_area .btn a i {
	font-size: 1.5em;
	margin-right: 10px;
}
.cv_btn_area .btn a.mail_button {
	min-width: inherit;
	border: none;
	border-radius: 0;
	box-shadow: 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;
}



/* -----------------------------------------------------------------------------
	 個別設定
----------------------------------------------------------------------------- */

/* main */
.h2_main1 .small{
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 5px;
}
.h2_main1{
	/* font-family: "M PLUS 1p", sans-serif; */
	font-size: 47px;
	font-weight: 900;
	line-height: 1.6;
	color: var(--dark-color);
}
.h2_main1 .font_b{
	font-size: 1.8em;
	vertical-align: -.05em;
}
.main_img1{
	margin: 40px 0;
}
.main_img1 img{
	border-radius: 12px;
}
.main1{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.main1 .row{
	display: flex;
	justify-content: center;
}
.main1 .item{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 185px;
	height: 185px;
	border-radius: 50%;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.5;
	text-align: center;
	color: #fff;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.main1 .item1{
	background-color: var(--main-color);
}
.main1 .item2{
	background-color: var(--sub-color);
}
.main1 .item3{
	color: #111;
	background-color: var(--accent-color);
}
.main1 .item4{
	background-color: var(--dark-color);
}
.main1 .font_b{
	font-size: 1.7em;
}
.main1 .item1 .font_b{
	font-size: 1.9em;
}

/* why */
.h2_why1{
	/* font-family: "M PLUS 1p", sans-serif; */
	font-size: 42px;
	font-weight: 900;
	line-height: 1.5;
	color: var(--dark-color);
	margin-bottom: 20px;
}
.why1 .con1{
	font-size: 24px;
	font-weight: 800;
	line-height: 1.8;
	color: #fff;
	background-color: var(--main-color);
	border-radius: 6px;
	padding: 15px;
	margin-bottom: 40px;
}
.why1 .con2{
	display: table;
	font-size: 26px;
	font-weight: 900;
	margin: 20px auto;
}
.why1 .con2 li{
	line-height: 1.6;
	margin-bottom: 30px;
}
.why1 .con2 li:before{
	top: .4em;
	font: var(--fa-font-solid);
	content: "\f00c";
	color: var(--main-color);
	background: none;
}

/* 5つの理由 */
.reason1{
	margin-top: 60px;
}
.reason1 h3{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	margin-bottom: 15px;
}
.reason1 h3 .ico{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	color: #fff;
	background-color: var(--sub-color);
	border-radius: 4px;
}
.reason1 h3 .ico .txt{
	display: block;
	font-size: 10px;
	line-height: 1.2;
	text-align: center;
}
.reason1 h3 .ico .num{
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 30px;
	line-height: 1;
	margin-top: 4px;
}
.reason1 h3 .ttl{
	/* font-family: "M PLUS 1p", sans-serif; */
	font-size: 40px;
	font-weight: 900;
	line-height: 1.3;
	color: var(--main-color);
}
.reason1 .box{
	flex-direction: column;
	margin-bottom: 40px;
}
.reason1 .box .left,
.reason1 .box .right{
	width: 100%;
}
.reason1 .box .right{
	max-width: 600px;
	margin: auto;
}
.reason1 .box.float{
	display: flex;
	flex-direction: column-reverse;
}
.reason1 .con{
	font-weight: 700;
	line-height: 1.7;
	text-align: center;
}
.reason1 .con strong{
	font-size: 1.22em;
}
.reason1 .con ul{
	display: table;
	margin: auto;
}
.reason1 .con ul li{
	text-align: left;
}
.reason1 .con ul li:before{
	top: .35em;
	font: var(--fa-font-solid);
	content: "\f00c";
	color: var(--sub-color);
	background: none;
	margin-right: 5px;
}
.reason1 .con th{
	white-space: nowrap;
}
.reason1 .con td{
	line-height: 1.5;
	text-align: left;
	padding: 8px 10px 8px 1em;
}
.reason1 .con td:before{
	content: '：';
	display: inline-block;
	text-indent: -1em;
}
.reason1 .r-img{
	font-size: 23px;
	font-weight: 900;
	text-align: center;
	color: var(--main-color);
}

/* flow */
.flow1{
	/* font-family: "M PLUS 1p", sans-serif; */
	font-size: 31px;
	font-weight: 900;
	color: var(--dark-color);
	margin-bottom: 40px;
}
.flow2 ul li{
	margin-bottom: 40px;
}
.flow3 ul li{
	font-size: 29px;
	font-weight: 900;
	color: var(--dark-color);
	margin-bottom: 20px;
}
.flow3 ul li:before{
	top: .4em;
	font: var(--fa-font-solid);
	content: "\f00c";
	color: var(--main-color);
	background: none;
}

/* FAQ */
.faq1 .ques{
	display: flex;
	align-items: center;
	color: #fff;
	background-color: var(--dark-color);
	border-radius: 100px;
	position: relative;
	z-index: 2;
}
.faq1 .ans{
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 10px 10px 30px 12px;
	padding-top: 30px;
	margin: -30px 5px 40px 5px;
	position: relative;
	z-index: 1;
}
.faq1 .ico{
	width: 70px;
}
.faq1 .ans .ico{
	margin-left: 5px;
}
.faq1 .txt{
	width: calc(100% - 70px);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	padding: 15px;
}

/* contact */
.contact1,
.contact2,
.contact3{
	color: #fff;
}
.h2_contact1{
	font-size: calc(48px + 1vw);
	font-weight: 900;
}
.contact1 .mes1{
	font-size: 40px;
	font-weight: 900;
	line-height: 1.8;
	margin-bottom: 20px;
}
.contact1 .mes2{
	font-size: 22px;
	font-weight: 800;
	line-height: 1.6;
}
.h2_contact2{
	font-size: calc(42px + 1vw);
	font-weight: 900;
	line-height: 1.4;
	margin-bottom: 20px;
}
.h2_contact2 .font_s{
	display: block;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 10px;
}
.contact2 .mes1 .font_b{
	font-size: 1.6em;
	font-weight: 800;
	line-height: 1.8;
}
.contact3 .mes1 strong{
	display: inline-block;
	font-size: 1.6em;
	font-weight: 900;
	margin: 10px 0;
}
.contact3 .mes1 strong.font_b{
	font-size: 1.8em;
	line-height: 1.8;
	margin-top: 15px;
}
.contact3 .mes2{
	font-size: 36px;
	font-weight: 900;
	line-height: 1.5;
	margin-top: 30px;
}

/* *****************************************************************************
   スマートフォン用のスタイル記述
***************************************************************************** */
@media screen and (max-width: 480px) {

	

	
	
	
	
	
	
}