@charset "utf-8";

/* -----------------------------------------------------------------------------
 環境設定
----------------------------------------------------------------------------- */
/* 定義 */
:root {
	/* 色 */
	--main-color: #ffd200; /* メインカラー */
	--sub-color: #00b181; /* サブカラー */
	--accent-color: #F14A21; /* アクセントカラー */
	--dark-color: #aaaaaa; /* ダークカラー */
	--light-color: #fef9c3; /* ライトカラー */
	
	/* 全体 */
	--body-font-family: 'Noto Sans JP', sans-serif; /* フォントfamily */
	--body-font-size: 16px; /* 文字サイズ */
	--body-line-height: 2; /* 行間 */
	--body-font-color: #000; /* 文字色*/
	--body-bg-color: #fff; /* 背景色 */
	--link-a-color: var(--sub-color); /* リンク文字色 */
	--link-a-hover-color: var(--accent-color); /* リンク文字色 hover */
	
	
	/* ヘッダー */
	--header-bg-color: var(--sub-color); /* 背景色 */
	--header-logo-color: #fff; /* ロゴ色 */
	--header-menu-txt-color: #111; /* メニュー文字色 */
	--header-sub-menu-color: #f1f1f1; /* ハンバーガーメニュー色 */
	--header-sub-menu-bg-color: rgba(235,255,249,0.95); /* サブメニュー背景色 */
	
	/* タイトル */
	--h1-main-font-family: inherit; /* メイン フォントfamily */
	--h1-main-font-weight: 900; /* メイン 文字太さ */
	--h1-main-color: #000; /* メイン色 */
	--h1-sub-font-family: inherit; /* サブ フォントfamily */
	--h1-sub-font-weight: 500; /* サブ 文字太さ */
	--h1-sub-color: var(--sub-color); /* サブ文字色 */
	
	/* コンテンツ タイトル */
	--h2-contents1-color: #000; /* 文字色 */
	--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: #666; /* th色 */
	
	/* お問合せ */
	--contact-tel-font-family: 'Noto Sans JP', sans-serif; /* TELフォントfamily */
	--contact-tel-font-weight: 700; /* TEL文字太さ */
	--contact-tel-color: #000; /* TEL文字色 */
	--contact-center-line-color: translate; /* 中央線 */
	--contact-form-btn-txt-color: #fff; /* フォームボタン文字色 */
	--contact-form-btn-bg-color: var(--sub-color); /* フォームボタン背景色 */
	
	/* フッター */
	--footer-bg-color: #fff; /* 背景色 */
	--footer-txt-color: #333; /* 文字色 */
	--footer-txt-hover-color: var(--accent-color); /* 文字色 hover */
	--footer-arrow-color: var(--sub-color); /* TOPへ戻る矢印色 */
	--footer-arrow-bg-color: #fff; /* TOPへ戻る矢印背景色 */
	--footer-arrow-hover-color: var(--accent-color); /* TOPへ戻る矢印色 hover */
	--footer-arrow-hover-bg-color: #fff; /* TOPへ戻る矢印背景色 hover */
	--footer-top-border-size: 3px; /* border-top 太さ */
	--footer-top-border-color: var(--main-color); /* border-top 色 */
	--footer-logo-width: 260px; /* ロゴ 横幅 */
	--footer-name-font-size: 16px; /* 会社名 文字サイズ */
	--footer-name-font-weight: 700; /* 会社名 文字太さ */
	
	/* 常駐ボタン */
	--side-btn-txt-color: #fff; /* 文字色 */
	--side-btn-txt-weight: 700; /* 文字太さ */
	--side-btn-bg-color: #333; /* 背景色(上) */
	--side-btn-bg-color2: var(--accent-color); /* 背景色(下) */
}


/* 背景 */
.contents_bg1{
	background-color: var(--main-color)!important;
}
.contents_bg2:before,
.contents_bg2:after{
	content: '';
	display: block;
	height: 80px;
	background-color: var(--main-color);
}
.contents_bg2:before{
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.contents_bg2:after{
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.contents_bg3{
	background-color: var(--light-color)!important;
}
.contents_bg4{
	background: var(--body-bg-color) url("../../p-img/101552_1/bg-grid1.png")left top repeat!important;
}
.contents_bg5{
	background-color: #e1ffdc !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: 12px;
	font-weight: 400;
	white-space: nowrap;
	color: var(--header-logo-color);
	padding-bottom: 2px;
	margin-right: 8px;
}
header > .inner > .logo h1:after{
	content: '';
	display: inline-block;
	width: 210px;
	height: 26px;
	background: url("../../p-img/101552_1/logo.svg")left center/contain no-repeat;
	vertical-align: -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 > ul > li a .font_s{
	display: block;
	line-height: .5;
}
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: 600px;
	object-fit: cover;
	object-position: 90% top;
}
#top-contents .slider {
	position: relative;
	z-index: 1;
	margin-top: 180px;
}
#top-contents .layer1 {
	position: absolute;
	top: 30px;
	left: 5%;
	z-index: 5;
	padding-right: 10px
}
#top-contents .layer1 h2{
	font-weight: 900;
	line-height: 1.5;
}
#top-contents .layer1 h2 .l2,
#top-contents .layer1 h2 .l3,
#top-contents .layer1 h2 .l4,
#top-contents .layer1 h2  .lead{
	display: block;
	text-shadow: 0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff;
}
#top-contents .layer1 h2 .l1{
	font-size: calc(10px + 2vw);
	background-color: var(--sub-color);
	color: var(--side-btn-txt-color);
	padding: 0 .5em 0 0;
	margin: 30px 0 10px;
}
#top-contents .layer1 .sub-col {
	color: var(--sub-color);
}
#top-contents .layer1 h2 .l2{
	position: relative;
	display: block;
	font-size: calc(16px + 3vw);
	line-height: 1.6;
	margin: 25px 0 30px;
	letter-spacing: 0;
}
#top-contents .layer1 h2 .l2::after {
	content: "";
    background: url(../../p-img/101552_1/like.svg) no-repeat left top / contain;
    width: 1.8em;
    height: 1.8em;
    position: absolute;
    right: 0.4em;
    bottom: -.5em;
}
#top-contents .layer1 .dots {
	background-image: radial-gradient(circle at center, var(--sub-color) 20%, transparent 20%); 
	background-position: top right; 
	background-repeat: repeat-x; 
	background-size: 1em 0.3em; 
	padding-top: 0.05em;
}
#top-contents .layer1 .f_yellow {
	color: var(--main-color);
	text-shadow: 0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color),0 0 3px var(--sub-color);
}
#top-contents .layer1 h2 .l3{
	font-size: calc(8px + 3vw);
	line-height: 1.3;
	margin: 0 0 30px;
}
#top-contents .layer1 h2 .lead {
	font-size: 1.05rem;
	margin: 140px 0 80px;
    display: block;
}
#top-contents .layer1 h2 .l3 .box{
	display: inline-block;
	line-height: 1;
	background-color: var(--main-color);
	border: 8px solid var(--sub-color);
	padding: 3px 10px 10px;
}
#top-contents .layer1 h2 .l3 .box.box1{
	margin-right: -7px;
}
#top-contents .layer1 h2 .l4{
	font-size: 18px;
}
#top-contents .layer1 .btn_area,
.cta .btn_area {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}
#top-contents .layer1 .btn_area a,
.cta .btn_area a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	width: 90%;
	max-width: 500px;
	height: 100px;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 5px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	border-radius: 100px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	padding: 0 0 5px 15px;
	position: relative;
}
#top-contents .layer1 .btn_area a:first-child{
	background-color: var(--main-color);
	color: var(--body-font-color);
}
#top-contents .layer1 .btn_area .sub-ttl,
.cta .btn_area .sub-ttl {
	display: inline-block;
    padding: 10px 10px;
    font-size: 1.1rem;
    color: var(--side-btn-txt-color);
    background: var(--accent-color);
    border-radius: 4px;
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1.3;
    width: 265px;
    box-sizing: border-box;
    letter-spacing: 3px;
}
#top-contents .layer1 .btn_area a::after,
.cta .btn_area a::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--accent-color);
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
}
#top-contents .layer1 .btn_area a:before{
	font: var(--fa-font-regular);
	content: "\f061";
	height: 1em;
	position: absolute;
	left: 25px;
	top: 4px;
	bottom: 0;
	margin: auto 0;
	transform: rotate(90deg);
	transition: all .3s;
}
#top-contents .layer1 .btn_area a:hover{
	box-shadow: none;
	opacity: 1;
	transform: translate(3px, 3px),rotate(90deg);;
}
#top-contents .layer1 .btn_area a:hover:before{
	left: 35px;
}
#top_bottom{
	background-color: var(--body-bg-color);
	padding: 8px 15px;
}
#top_bottom p{
	font-size: .9em;
	line-height: 1.6;
}

/* -----------------------------------------------------------------------------
 Breadcrumb
----------------------------------------------------------------------------- */
#breadcrumb {
	font-size: 0.85em;
	max-width: 100%;
	margin: 0 auto;
	padding: 15px 10px;
	text-align: left;
	background-color: var(--main-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,
.w1200 {
	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;
}
.footer-info .name{
	font-weight: var(--footer-name-font-weight);
	font-size: var(--footer-name-font-size);
}
.footer-info .tel{
	font-size: 20px;
	font-weight: 700;
}
.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: 28px;
	text-align: center;
	color: var(--h1-main-color);
	line-height: 1.6;
	letter-spacing: 2px;
	margin-bottom: 1em;
	position: relative;
	z-index: 3;
}
.parts-h1 .small{
	display: block;
	font-family: var(--h1-sub-font-family);
	font-weight: var(--h1-sub-font-weight);
	font-size: 15px;
	color: var(--h1-sub-color);
	text-shadow: none;
	margin-bottom: 5px;
}
.parts-h1 .en{
	position: absolute;
	left: 0;
	right: 0;
	bottom: -25px;
	font-size: 60px;
	font-weight: 400;
	color: rgba(255,255,255,0.80);
	transform: rotate(-10deg);
	z-index: -1;
	margin: 0 auto;
}
.parts-h1.bg_w .en{
	color: rgba(255,210,0,0.80);
}
.parts-h1 .font_b{
	font-size: 1.5em;
	vertical-align: -3px;
}

/* 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-map  p{
	text-align: center;
	margin-bottom: 10px;
}

/* 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,
.cpn_tbl a:link, .cpn_tbl a:visited, .cpn_tbl a:active {
    color: var(--link-a-color);
	text-decoration: none;
	border-bottom: 1px solid var(--link-a-color);
	transition: .3s;
}
.txt_area a:hover,
.cpn_tbl 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 2px;
}
.font_s{
	font-size: .7em;
	margin: 0 2px;
}
.f_bonh{
	font-family: "Bonheur Royale", cursive;
	font-size: 50px;
	line-height: 1;
	display: inline-block;
}
.f_monts{
	font-family: "Montserrat", sans-serif;
}

.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: 15px;
}
.parts-txt-img .l-img{
	float: left;
	margin-right: 15px;
}

/* 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;
	margin-bottom: 40px;
}
.flow-area1 ul li{
	width: 100%;
	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(--body-bg-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: 700;
	line-height: 1;
	color: #ffe779;
}
.flow-area1 ul li .num .font_s {
	font-size: .3em;
}
.flow-area1 ul li .flow_head{
	height: 2em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
	font-weight: 800;
	line-height: 1.5;
	color: var(--accent-color);
	text-align: center;
}
.flow-area1 ul li img{
	display: block;
	width: 140px;
	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,219,6,0.70) 50%, transparent 50%);
    background: -moz-linear-gradient(left, rgba(251,219,6,0.70) 50%, transparent 50%);
    background: linear-gradient(left, rgba(251,219,6,0.70) 50%, transparent 50%);
	background-repeat: no-repeat;
	background-size: 200% .5em; 
    background-position: 100% 1em;
    transition: 2s;
}
.c-marker.is-active{
    background-position: 0% 1em;
}

/* 会社概要 */
.cpn_tbl{
	background-color: #fff;
}
.cpn_tbl table{
	border-collapse: collapse;
	margin: 20px auto 40px;
}
.cpn_tbl table th,
.cpn_tbl table td{
	display: block;
	line-height: 1.8;
	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;
}
.cpn_tbl.parts-list li{
	margin-bottom: 6px;
}
.cpn_tbl.parts-list li:before{
	top: 11px;
	width: 5px;
	height: 5px;
	background-color: #aaa;
}
.cpn_tbl .row{
	margin-bottom: 20px;
}
.cpn_tbl dt{
	font-weight: 700;
}

/* お問合せ */
.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:first-child{
	display: none;
}
.cv_btn_area .btn a:nth-child(3){
	background: var(--side-btn-bg-color2);
}
.cv_btn_area .btn a:nth-child(4){
	background: var(--sub-color);
}
.cv_btn_area .btn a i {
	font-size: 1.5em;
	margin-right: 10px;
}

.fade_on{
	opacity: 1;
}

/* TEL */
a[href^="tel:"] {
	color:inherit;
	text-decoration:none;
	border: none;
}

@media screen and (min-width: 768px){
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

/* レスポンシブ出し分け */
.for-pc{
	display: none;
}
.for-tab{
	display: block;
}


/* Margin・Padding */
.mb0{
	margin-bottom: 0!important;
}



/* -----------------------------------------------------------------------------
	 個別設定
----------------------------------------------------------------------------- */
.sub-col {
	color: var(--sub-color);
}
.ac-col {
	color: var(--accent-color);
}
.white_line{
	text-shadow: 0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5),0 0 3px rgba(255, 255, 255, 0.5);
}

/* issue */
.h2_issue1{
	font-size: 28px;
	font-weight: 900;
	line-height: 1.6;
	text-align: center;
	margin-top: 50px;
}
.top_issue1{
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 50px auto;
}
.top_issue1::after {
	content: "";
	background: url(../../p-img/101552_1/ico_issue03.png) no-repeat bottom center / contain;
	position: absolute;
	width: 160px;
	height: 160px;
	bottom: -20px;
	right: 0;
}
.top_issue1 .inner_box{
	display: flex;
	gap: 10px;
}
.top_issue1 .box{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc((100% - 10px) / 2);
	height: 150px;
	background-color: #fff;
	border-radius: 10px;
	padding: 30px 10px;
}
.top_issue1 .box .txt{
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
}
.top_issue1 .box .img{
	width: 70px;
	margin-top: 10px;
}
.top_mes1 .img{
	max-width: 600px;
	margin: auto;
}
.top_mes1 .txt h2{
	font-size: 30px;
	font-weight: 900;
	line-height: 1.7;
	text-align: center;
}
.top_mes1 .ttl {
	text-align: center;
	margin-top: 20px;
}
.issue1 .row{
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	z-index: 3;
	margin-bottom: 40px;
}
.issue1 .left{
	display: flex;
	align-items: flex-start;
}
.issue1 .img{
	width: 120px;
}
.issue1 .box1{
	width: calc(100% - 100px);
	max-width: 300px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.6;
	background-color: var(--light-color);
	border-radius: 15px;
	padding: 12px 20px;
	margin-top: 10px;
	margin-left: -20px;
	position: relative;
	z-index: -1;
}
.issue1 .box2{
	background-color: #fff;
	border-radius: 15px;
	position: relative;
	padding: 15px 10px 10px 4px;
	margin-top: 10px;
}
.issue1 .box2 .ico{
	color: var(--sub-color);
	position: absolute;
	top: -28px;
	transform: rotate(-2deg);
}
.issue1 .box2 .inner{
	display: flex;
	gap: 15px;
}
.issue1 .box2 .l_img{
	width: 75px;
}
.issue1 .box2 .r_txt{
	width: calc(100% - 95px);
}
.issue1 .box2 .r_txt h3{
	font-size: 20px;
	font-weight: 800;
	line-height: 1.5;
	margin-bottom: 5px;
}
.issue1 .box2 .r_txt p{
	font-size: 15px;
	line-height: 1.7;
}
.issue1 .box2 .r_txt .sup1{
	font-size: 10px;
	vertical-align: super;
}
.issue1 .memo1{
	font-size: 12px;
	line-height: 1.5;
	text-indent: -20px;
	padding-left: 20px;
	margin-top: 10px;
	margin-left: 10px;
}
.issue2 .lead {
	text-align: center;
	margin: 50px auto;
	font-size: 1.25rem;
	font-weight: 800;
}
.issue2 .parts-txt-img {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1024px;
}
.issue2 h3{
	font-size: 20px;
    font-weight: 900;
    line-height: 1.6;
	margin: 20px auto;
	text-align: center;
}
.con2 .ttl,
.con3 .ttl {
	font-size: 1.25rem;
	font-weight: 800;
	text-align: center;
	margin: 30px auto;
	color: var(--accent-color);
}

.con2 .lead {
	text-align: left;font-size: 1.25rem
}
.con2 .solution {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.con2 .solution::after {
	content: "";
	width: 300px;
	height: 280px;
	background: url(../../p-img/101552_1/con2.svg) no-repeat center bottom / contain;
}
.con2 ul {
	margin-top: 50px;
	padding: 20px;
	background-color: var(--body-bg-color);
	border-radius: 20px;
	box-sizing: border-box;
}
.con2 li {
	position: relative;
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.5;
	margin: 10px 0;
    padding: 0 0 0.6em 1.5em;
}
.con2 ul li::before {
    position: absolute;
    left: 0;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: '\f14a';
    color: var(--sub-color);
}
.con3 .parts-txt-img {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
.con3 .parts-txt-img .r-img{
	margin-left: 0;
	width: 80%;
	max-width: 400px;
}
.con3 .parts-txt-img .l-img{
	margin-right: 0;
	width: 80%;
	max-width: 400px;
}
.con3 .cut {
	margin: 40px auto;
	font-weight: bold;
}
.con3 strong{
	color: var(--sub-color);
}
.con3 strong.c-marker{
	font-size: 1.08em;
}
.con3 img{
	border-radius: 20px;
}

/* サービス */
.service1 p{
	font-weight: 700;
	line-height: 1.8;
	color: var(--sub-color);
	margin-bottom: 10px;
}
.service1 h2{
	font-size: 34px;
	font-weight: 900;
	line-height: 1.6;
}
.service1 .img{
	margin: 40px auto;
}
.service1 .img.for-tab{
	max-width: 400px;
}

/* 選ばれる理由 */
.feature_box{
	background-color: #fff;
	border-radius: 20px;
	padding: 30px 20px 20px;
	margin-top: 50px;
	position: relative;
}
.feature_box .num{
	font-size: 70px;
	line-height: 1;
	color: var(--sub-color);
	position: absolute;
	top: -35px;
	left: 30px;
	z-index: 3;
}
.feature_box:before{
	content: '';
	display: inline-block;
	width: 50px;
	height: 75px;
	background-color: rgba(0,177,129,0.15);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	transform: rotate(-55deg);
	position: absolute;
	top: -40px;
	left: 35px;
	z-index: 2;
}
.feature_box .parts-txt-img .r-img{
	float: none;
	width: 100%;
	max-width: 500px;
	margin: 0 auto 10px;
}
.feature_box h3{
	font-size: 25px;
	font-weight: 700;
	line-height: 1.5;
	margin: 20px 0;
}
.feature_box h4{
	font-size: 23px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	margin-top: 20px;
}
.feature_box h4:after{
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	border-radius: 10px;
	background-color: var(--sub-color);
	margin: 15px auto 20px;
}
.sector1{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
.sector1 .box{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 200px;
	text-align: center;
	border-radius: 50%;
	padding: 20px 20px 30px;
}
.sector1 .box1{
	background-color: rgba(0,177,129,0.20);
}
.sector1 .box2{
	background-color: rgba(255,210,0,0.20);
}
.sector1 .box3{
	background-color: rgba(255,51,0,0.20);
}
.sector1 .box .ttl{
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}
.sector1 .box .txt{
	font-size: 14px;
	line-height: 1.5;
}
.kgi1{
	flex-direction: column-reverse;
	gap: 20px;
	margin-bottom: 0;
}
.kgi1 .left{
	max-width: 80%;
	margin: 10px auto;
}
.kgi1 .ttl{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}
.kgi1 .point{
	background-color: var(--light-color);
	border-radius: 20px;
	padding: 15px;
	margin: 10px 0;
}
.kgi1 ul{
	display: table;
	margin: auto;
}
.kgi1 li{
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	padding-bottom: 8px;
	margin-bottom: 5px;
}
.kgi1 li:last-child{
	padding-bottom: 0;
}
.kgi1 li .li_num{
	font-size: 20px;
	line-height: 1;
	color: var(--sub-color);
}
.feature_box .img_sp{
	max-width: 550px;
	margin: auto;
}
.recep1 .ttl{
	font-size: 17px;
	font-weight: 600;
	text-align: center;
	margin: 20px auto;
	position: relative;
}
.recep1 .ttl:after{
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: var(--main-color);
	border-radius: 10px;
	margin: 5px auto;
}
.recep1 .con{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}
.recep1 .con .box{
	width: calc(100% / 3 - 15px);
	min-width: 250px;
	line-height: 1.6;
	border: 1px solid #aaa;
	border-radius: 20px;
	overflow: hidden;
}
.recep1 .con .box .top{
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	padding: 5px;
}
.recep1 .con .box1 .top{
	background-color: rgba(0,177,129,0.20);
}
.recep1 .con .box2 .top{
	background-color: rgba(255,210,0,0.20);
}
.recep1 .con .box3 .top{
	background-color: rgba(255,51,0,0.20);
}
.recep1 .con .box .bottom{
	padding: 10px 15px;
}
	

/* とは */
.h3_about1{
	font-size: 24px;
	font-weight: 800;
	line-height: 1.6;
	margin: 50px 0 10px;
}
.about1 .r-img{
	width: 40%;
}

/* 流れ */
.estimate1{
	display: table;
	background-color: var(--sub-color);
	border-radius: 20px;
	padding: 20px 40px;
	margin: auto;
}
.estimate1 h3{
	font-size: 24px;
	text-align: center;
	color: #fff;
	position: relative;
}
.estimate1 h3:after{
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--main-color);
	margin: 10px auto 20px;
}
.estimate1 .type{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
.estimate1 .type .box{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 160px;
	background-color: #fff;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	padding: 20px;
}
.estimate1 .type .box .txt .font_b{
	font-size: 50px;
	line-height: 1;
	vertical-align: -3px;
	color: var(--accent-color);
}

/* 料金 */
.plan_mes1{
	margin: 40px auto;
}
.plan_area{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	gap: 15px;
	line-height: 1.5;
}
.plan_area .booth{
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	background-color: var(--main-color);
	padding: 3px;
}
.plan_area .booth_con{
	height: 120px;
	padding: 10px 5px;
}
.plan_area .plan1{
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}
.plan_area .left .plan_ttl{
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background-color: var(--sub-color);
	padding: 5px;
}
.plan_area .right .plan_ttl.plan_s{
	background-color: rgba(255,51,0,0.70);
}
.plan_area .plan_con{
	padding: 10px;
}
.plan_area .plan_con .mes1{
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 5px;
}
.plan_area .plan_con .price{
	font-size: 18px;
	text-indent: 20px;
	padding-top: 3px;
}
.plan_area .plan_li{
	background-color: var(--light-color);
	border-radius: 20px;
	padding: 10px;
	margin: 10px 0;
}
.plan_area .plan_li ul{
	display: flex;
	flex-wrap: wrap;
}
.plan_area .plan_li li{
	width: calc(50% - 20px);
	min-width: 220px;
	font-size: 14px;
	margin-bottom: 3px;
	margin-right: 20px;
}

/* オペレーション拠点 */
.base2{
	text-align: center;
	max-width: 700px;
	margin: 30px auto;
}


/* contact_area */
.contact_area{
	max-width: 1024px;
	margin: auto;
}
.contact_area .mes1{
	font-size: 1.25em;
	font-weight: 700;
	color: var(--sub-color);
	margin-bottom: 20px;
	line-height: 1.6;
	padding-bottom: .4em;
}
.contact_area .tel{
	margin-bottom: 30px;
}
.contact_area .telno{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-size: 43px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 10px;
}
.contact_area .tel .ico img{
	width: 30px;
	vertical-align: 2px;
	margin-right: 6px;
}
.contact_area .btns{
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	gap: 15px;
}
/*
.contact_area .btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	width: 95%;
	height: 100px;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 5px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	border-radius: 100px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	padding: 0 0 15px 15px;
	position: relative;
}

.contact_area .btn.left a{
	background-color: var(--accent-color);
}
.contact_area .btn.right a{
	background-color: var(--sub-color);
}*/
.contact_area .btn a:before,
.cta .btn_area a:before{
	font: var(--fa-font-regular);
	content: "\f061";
	height: 1em;
	position: absolute;
	left: 25px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	transition: all .3s;
}
.contact_area .btn a:hover{
	box-shadow: none;
	opacity: 1;
	transform: translate(3px, 3px);
}
.contact_area .btn a:hover:before,
.cta .btn_area a:hover:before{
	left: 35px;
}
.contact_btm .ttl p{
	font-size: 18px;
	font-weight: 700;
	margin: 50px 0 5px;
}
.contact_btm p{
	font-size: 15px;
	line-height: 1.6;
}

/* 3つの接客ルール */
.rule {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	margin-top: 40px;
}
.rule .item {
	position: relative;
	width: 100%;
	max-width: 480px;
	flex: 1;
	margin: 0 auto;
}
.item-ttl {
	position: relative;
	font-weight: 900;
	font-size: 28px;
	text-align: center;
	letter-spacing: .1em;
}
.rule .item .num {
    position: absolute;
    left: 0;
    top: -22px;
    font-size: 6.5em;
    font-weight: 700;
    line-height: 1;
    color: #ffe779;
    z-index: 0;
}
.rule .item img {
	position: relative;
	border-radius: 20px;
	margin: 10px auto;
}

/* 成功事例 */
.success-story {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.success-story .case {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	width: 100%;
}
.success-story .case .case-head {
	text-align: center;
	font-weight: 500;
}
.success-story .case .case-bottom {
	position: relative;
	flex: 1;
	background-color: var(--body-bg-color);
    padding: 40px 20px;
    border-radius: 20px;
}
.success-story .case .case-bottom::before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    margin: 0 auto;
    width: 40px;
    height: 20px;
    clip-path: polygon(0 100%, 100% 100%, 50% 0);
    background-color: var(--body-bg-color);
}
.case .user {
	font-size: 20px;
	margin-bottom: 8px;
}
.case .industry {
	display: inline-block;
	background-color: var(--accent-color);
	color: var(--side-btn-txt-color);
	font-size: .8em;
	padding: 0 16px;
	border-radius: 20px;
}
.case img {
	max-width: 180px;
	border-radius: 20px;
}
.case-ttl {
	margin-bottom: 16px;
	color: var(--sub-color);
	font-weight: 900;
	font-size: 20px;
	line-height: 1.75;
}

/* cta */
.cta h3 {
	font-size: 22px;
}
.cta .btn_area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}
.cta .btn_area .btn-sub-ttl{
	text-align: center;
    display: flex;
    gap: 1em;
    color: var(--sub-color);
    justify-content: center;
    align-items: flex-end;
	font-weight: 900;
}
.cta .btn_area .btn-sub-ttl::before,
.cta .btn_area .btn-sub-ttl::after {
	content: "";
	height: 1.75em;
	width: 3px;
	background-color: var(--sub-color);
	transform: rotate(-15deg);
}
.cta .btn_area .btn-sub-ttl::after {
	transform: rotate(15deg);
}
.cta .btn_area a{
	width: 100%;
	margin-top: 60px;
	background-color: var(--main-color);
    color: var(--body-font-color);
}
.cta .btn2 a {
	letter-spacing: .05em;
	font-size: 24px;
	background-color: var(--accent-color);
	color: var(--side-btn-txt-color);
}
.cta .btn2 a .sub-ttl {
	background-color: var(--sub-color);
}
.cta .btn2 a::after {
	border-top: 10px solid var(--sub-color);
}
/* *****************************************************************************
   スマートフォン用のスタイル記述
***************************************************************************** */
@media screen and (max-width: 480px) {

	

	
	
	
	
	
	
}