@charset "utf-8";

/* -----------------------------------------------------------------------------
 環境設定
----------------------------------------------------------------------------- */
/* 定義 */
:root {
	/* 色 */
	--main-color: #c30036; /* メインカラー */
	--sub-color: #1f3eb2; /* サブカラー */
	--accent-color: #fbbf24; /* アクセントカラー */
	--blue-color: #1158ac; /* ブルーカラー */
	--green-color: #2f9fa5; /* グリーンカラー（碧） */
	--dark-color: #683746; /* ダークカラー */
	--light-color: #f1eae7; /* ライトカラー */
	--light-red: #d8b8c4; /* ライトレッド */
	--light-gray: #F1F2F2; /* ライトグレー */
	--white: #fff; /* ホワイト */
	
	/* 全体 */
	--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; /* サブメニュー背景色 */

	
	/* コンテンツ */
	--list-style-color: var(--main-color); /* リストアイコン色 */
	--col-line-height: 1.6; /* 2分割・3分割・4分割の行間 */
	
	/* 会社概要 */
	--cpn-table-border: #ccc; /* table線色 */
	--cpn-th-color: #aaa; /* th色 */
	
	/* お問合せ */
	--contact-tel-font-family: 'Noto Sans JP', sans-serif; /* TELフォントfamily */
	--contact-tel-font-weight: 700; /* TEL文字太さ */
	--contact-tel-color: #333; /* TEL文字色 */
	--contact-center-line-color: #ccc; /* 中央線 */
	--contact-form-btn-txt-color: #fff; /* フォームボタン文字色 */
	--contact-form-btn-bg-color: #333; /* フォームボタン背景色 */
	
	/* フッター */
	--footer-bg-color: var(--sub-color); /* 背景色 */
	--footer-txt-color: var(--white); /* 文字色 */
	--footer-txt-hover-color: #1f2937; /* 文字色 hover */
	--footer-arrow-color: var(--accent-color); /* TOPへ戻る矢印色 */
	--footer-arrow-bg-color: var(--light-color); /* TOPへ戻る矢印背景色 */
	--footer-arrow-hover-color: var(--main-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; /* 会社名 文字太さ */
	
}


/* -----------------------------------------------------------------------------
 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;
	border: none;
}
header > .inner > .logo h1{
	white-space: nowrap;
}
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: 50%;
	right: 0;
	width: 50px;
	height: 50px;
	background-color: var(--header-bg-color);
	z-index: 10;
	cursor: pointer;
	transform: translateY(-50%);
}
#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;
	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 {
	position: relative;
	overflow: hidden;
	margin: 0;
}
#top-contents .layer2 > p{
	font-weight: 400;
	font-size: .9em;
	line-height: 1.5;
	color: #eee;
	padding: 0 15px;
}
/* -----------------------------------------------------------------------------
 Header + Hero (101614_1 custom)
----------------------------------------------------------------------------- */
header.style1 > .inner{
	background: #fff;
	box-shadow: none;
}
header > .inner > .logo{
	padding: 0 60px 0 16px;
}
header > .inner > .logo h1{
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	color: #111;
	margin: 0;
}
header > .inner > .logo h1 .logo-brand,
#top-contents .layer1 h2 .hero-brand-line{
	display: inline-block;
	line-height: 1;
}
header > .inner > .logo h1 .logo-sangyo,
header > .inner > .logo h1 .logo-navi,
header > .inner > .logo h1 .logo-55,
header > .inner > .logo h1 .logo-ai,
header > .inner > .logo h1 .logo-dx,
#top-contents .layer1 h2 .hero-brand-line .logo-sangyo,
#top-contents .layer1 h2 .hero-brand-line .logo-navi,
#top-contents .layer1 h2 .hero-brand-line .logo-55,
#top-contents .layer1 h2 .hero-brand-line .logo-ai,
#top-contents .layer1 h2 .hero-brand-line .logo-dx{
	display: inline-block;
	line-height: 1;
}
header > .inner > .logo h1 .logo-sangyo,
#top-contents .layer1 h2 .hero-brand-line .logo-sangyo{
	font-family: 'M PLUS 1', sans-serif;
	font-size: 1em;
	font-weight: 700;
	color: #111;
	vertical-align: .02em;
}
header > .inner > .logo h1 .logo-navi,
#top-contents .layer1 h2 .hero-brand-line .logo-navi{
	font-family: 'M PLUS 1', sans-serif;
	font-size: 1.1em;
	font-weight: 700;
	color: #111;
	vertical-align: -.04em;
	margin-left: .1em;
}
header > .inner > .logo h1 .logo-55,
#top-contents .layer1 h2 .hero-brand-line .logo-55{
	font-family: 'Tomorrow', sans-serif;
	font-size: 1.4em;
	font-weight: 700;
	color: #111;
	vertical-align: -.03em;
}
header > .inner > .logo h1 .logo-ai,
#top-contents .layer1 h2 .hero-brand-line .logo-ai{
	font-family: 'Barlow', sans-serif;
	font-size: 1.47em;
	font-weight: 800;
	color: transparent;
	background-image: url('../../p-img/101614_1/AI_bg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-clip: text;
	background-clip: text;
	vertical-align: -.04em;
}
header > .inner > .logo h1 .logo-dx,
#top-contents .layer1 h2 .hero-brand-line .logo-dx{
	font-family: 'Tomorrow', sans-serif;
	font-size: 1.13em;
	font-weight: 700;
	color: #0000cb;
	vertical-align: -.02em;
}
#top-contents .layer1 h2 .hero-brand-space{
	display: inline-block;
	font-size: 1em;
	width: .28em;
}
header.style1 > .inner > navi{
	background-color: #fff;
}
header > .inner > navi > ul > li a:not(.menu-cta){
	color: #111;
	border-bottom: 1px solid rgba(0,0,0,.12);
	font-size: 14px;
	font-weight: 500;
}
header > .inner > navi > ul > li a.menu-cta{
	display: block;
	width: 100%;
	background: var(--main-color);
	color: #fff;
	font-weight: 700;
}
#top-contents{
	width: 100% !important;
	height: auto !important;
	min-height: 680px;
	padding: 24px 16px 28px;
	background: var(--light-color);
}
#top-contents .slider{
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: .16;
}
#top-contents .slider img{
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}
#top-contents .layer1,
#top-contents .layer2{
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	transform: none;
	z-index: 2;
}
#top-contents .layer1{
	max-width: 720px;
	padding-bottom: 200px;
}
.hero-mv-illust{
	position: absolute;
	right: 0;
	bottom: 0;
	width: clamp(210px, 45vw, 290px);
	height: auto;
	z-index: 1;
	pointer-events: none;
}
.hero-tag{
	position: relative;
	display: inline-block;
	width: auto;
	max-width: 100%;
	color: #333;
	background: #fff;
	border: 1px solid #d6dce6;
	border-radius: 10px;
	padding: 9px 12px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 16px;
}
.hero-tag.hero-tag-right{
	margin-left: 36px;
}
.hero-tag.hero-tag-right:after{
	left: auto;
	right: 24px;
}
.hero-tag:after{
	content: "";
	position: absolute;
	left: 24px;
	bottom: -7px;
	width: 12px;
	height: 12px;
	background: #fff;
	border-right: 1px solid #d6dce6;
	border-bottom: 1px solid #d6dce6;
	transform: rotate(45deg);
}
.hero-badge{
	display: inline-block;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .14em;
	color: #333;
	background: var(--main-color);
	padding: 8px 14px;
	margin: 16px 0 14px;
}
#top-contents .layer1 h2{
	font-size: clamp(37px, 9.4vw, 65px);
	line-height: 1.2;
	font-weight: 900;
	color: #000;
	letter-spacing: .01em;
	margin-bottom: 14px;
}
#top-contents .layer1 h2 .hero-price-line{
	display: inline-block;
	color: inherit;
	font-size: .72em;
}
#top-contents .layer1 h2 .hero-price-line .hero-price-num{
	font-size: 1.3em;
	margin: 0 2px;
}
#top-contents .layer1 h2 .hero-keyword{
	color: var(--main-color);
}
#top-contents .layer1 h2 .hero-brand-line{
	font-size: .8em;
}
#top-contents .layer1 h2 span{
	font-size: 1.5em;
}
.hero-lead{
	color: var(--sub-color);
	font-size: clamp(28px, 4.2vw, 46px);
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 16px;
}
.hero-point-list{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.hero-point-list li{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: clamp(150px, 44vw, 190px);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--main-color);
	box-shadow: 0 6px 14px rgba(0,0,0,.08);
	color: #111;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.35;
	padding: 14px;
	margin-bottom: 0;
}
.hero-point-list li:before{
	content: none;
	display: none;
}

#top-contents .layer2{
	margin-top: 22px;
}
.hero-form-card{
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 16px 28px rgba(0,20,50,.30);
}
.hero-form-head{
	background: var(--sub-color);
	padding: 18px 16px 14px;
	text-align: center;
}
.hero-form-head .ttl{
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 4px;
}
.hero-form-head .sub{
	color: #d8ebff;
	font-size: 14px;
	line-height: 1.4;
}
.hero-form{
	padding: 16px 16px 30px;
	min-height: 300px;
}
.hero-form label{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 800;
	color: #1d2e45;
	margin-bottom: 6px;
}
.hero-form label span{
	display: inline-block;
	font-size: 11px;
	line-height: 1;
	color: #fff;
	background: var(--main-color);
	border-radius: 999px;
	padding: 3px 8px;
}
.hero-form label span.optional{
	background: #9aa3ac;
}
.hero-form input,
.hero-form select{
	display: block;
	width: 100%;
	height: 48px;
	border: 1px solid #d4dbe5;
	border-radius: 6px;
	padding: 0 12px;
	font-size: 14px;
	margin-bottom: 12px;
	background: #fff;
	box-sizing: border-box;
}
.hero-radio-group{
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin: 0 0 12px;
}
.hero-radio-group label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	width: auto;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 500;
	color: #1d2e45;
	margin-bottom: 0;
}
.hero-radio-group input[type="radio"]{
	width: 16px;
	height: 16px;
	margin: 0;
}
.hero-form button{
	width: 100%;
	height: 85px;
	border: none;
	border-radius: 50px;
	background: var(--sub-color);
	color: #fff;
	font-size: 21px;
	font-weight: 900;
	cursor: pointer;
	margin-top: 4px;
	box-shadow: 4px 5px 4px rgba(0,0,0,.3);
	transition: box-shadow .2s, transform .2s, opacity .2s;
}
.hero-form button:active{
	box-shadow: none;
	transform: translate(2px, 3px);
	opacity: 1;
}
.hero-form .privacy-consent{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	margin: 20px 0;
}
.hero-form .privacy-consent input[type="checkbox"]{
	appearance: auto;
	width: 18px;
	height: 18px;
	min-width: 18px;
	margin: 2px 0 0;
	padding: 0;
}
.hero-form .privacy-consent label{
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: #607087;
	margin: 0;
}
.hero-form .privacy-consent label a{
	color: var(--link-a-color);
	text-decoration: underline;
}
.hero-form .js-field-error.privacy-error{
	text-align: center;
}
.hero-form .note{
	font-size: 12px;
	color: #607087;
	line-height: 1.4;
	text-align: center;
	margin-top: 10px;
}
.hero-form-complete{
	min-height: 300px;
	font-weight: 700;
	text-align: center;
	padding: 20px;
}
.hero-form-complete-banner{
	text-align: center;
	margin: 30px auto;
}
.hero-form-complete-banner img{
	width: 200px;
	margin-bottom: 2px;
}

.aio-top-bottom,
#top_bottom{
	background: var(--light-color);
}
.aio-top-bottom p,
#top_bottom p{
	color: var(--main-color);
	font-size: clamp(30px, calc(9.52vw - 5.71px), 40px);
	line-height: 1.7;
	font-weight: 900;
	text-align: center;
	letter-spacing: .01em;
	margin-bottom: 20px;
}
.aio-top-bottom p .inline-block{
	display: inline-block;
}
.aio-top-bottom p .chance{
	display: block;
	width: fit-content;
	margin: 0 auto;
	color: var(--sub-color);
	font-size: 1.22em;
}
.aio-top-about-wrap{
	display: flex;
	align-items: center;
	gap: 18px;
}
.aio-top-about-image{
	flex: 0 0 45%;
	max-width: 450px;
}
.aio-top-about-image img{
	display: block;
	width: 100%;
	height: auto;
}
.aio-top-about{
	position: relative;
	flex: 1 1 55%;
	padding: 4rem 2rem 2rem;
	border: solid 3px var(--main-color);
	border-radius: 10px;
	margin-bottom: 40px;
}
.aio-top-about h3{
	position: absolute;
	top: 0;
	left: 0;
	padding: 5px 10px 6px 10px;
	border-bottom-right-radius: 10px;
	background: var(--main-color);
	color: #fff;
	font-size: 18px;
	line-height: 1.4;
}
.aio-top-about p{
	line-height: 2;
}

/* -----------------------------------------------------------------------------
 Contents1 (AIO problem section)
----------------------------------------------------------------------------- */
.contents.contents-problem{
	position: relative;
	overflow: hidden;
}
.contents.contents-problem .w1024{
	margin-top: 0;
	margin-bottom: 50px;
	padding-top: 36px;
}
.aio-problem-wrap{
	margin-bottom: 26px;
}
.aio-problem-kicker{
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .22em;
	color: var(--blue-color);
	padding: 0 34px;
	margin-bottom: 10px;
}
.aio-problem-kicker:before,
.aio-problem-kicker:after{
	content: "";
	position: absolute;
	top: 50%;
	width: 24px;
	height: 2px;
	background: var(--blue-color);
}
.aio-problem-kicker:before{ left: 0; }
.aio-problem-kicker:after{ right: 0; }
.aio-problem-title{
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 900;
	line-height: 1.35;
	color: var(--main-color);
	margin-bottom: 12px;
}
.aio-problem-desc{
	font-size: 19px;
	line-height: 1.85;
	color: #5f7285;
	margin-bottom: 20px;
}
.aio-problem-wrap .aio-problem-list{
	display: flex !important;
	flex-direction: column;
	gap: 14px;
}
.aio-problem-item{
	width: 85%;
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid #dde4ed;
	padding: 3rem 1rem;
	background-color: var(--light-red);
	text-align: center;
	border-radius: 44% 48% 39% 50% / 61% 38% 53% 30%;
}
.aio-problem-wrap .aio-problem-item::after{
	content: "";
	position: absolute;
	bottom: -5px;
	left: 22px;
	width: 24px;
	height: 30px;
	background: #d8b8c4;
	clip-path: polygon(35% 0, 0% 100%, 100% 0);
}
.aio-problem-wrap .aio-problem-item:nth-child(2){
	margin-left: auto;
	border-radius: 38% 62% 58% 42% / 44% 34% 66% 56%;
}
.aio-problem-wrap .aio-problem-item:nth-child(1)::after{
	bottom: -12px;
	left: 50px;
	clip-path: polygon(16% 0, 0 100%, 100% 0);
}
.aio-problem-wrap .aio-problem-item:nth-child(2)::after{
	left: auto;
	right: 22px;
	bottom: 18px;
	clip-path: polygon(0 0, 100% 100%, 70% 0);
}
.aio-problem-wrap .aio-problem-item:nth-child(3){
	border-radius: 62% 38% 44% 56% / 56% 66% 34% 44%;
}
.aio-problem-wrap .aio-problem-item:nth-child(3)::after{
	bottom: 5px;
}
.aio-problem-image{
	width: 80%;
	max-width: 450px;
	margin: 20px auto 0;
}
.aio-problem-image img{
	display: block;
	width: 100%;
	height: auto;
}
.aio-problem-item .icon{
	display: none;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f7ebea;
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 900;
	line-height: 34px;
	text-align: center;
}
.aio-problem-item p{
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.8;
}

.aio-overview-card h3{
	font-weight: 900;
	color: var(--main-color);
	text-align: center;
	margin-bottom: 20px;
}
.aio-overview-image{
	background: var(--white);
	border: 2px solid var(--main-color);
	border-radius: 20px;
	padding: 15px 15px 20px;
	margin-bottom: 20px;
}
.aio-diagram{
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: center;
}
.aio-box{
	border: 2px solid #7da2bf;
	border-radius: 14px;
	padding: 16px 14px;
	background: #f8fafc;
	text-align: center;
}
.aio-box h4{
	font-size: 28px;
	font-weight: 800;
	color: var(--main-color);
	margin-bottom: 8px;
}
.aio-box p{
	font-size: 21px;
	color: var(--blue-color);
	line-height: 1.6;
	margin: 0;
}
.aio-box.ai-engine{
	background: #e9eef7;
	border-color: var(--blue-color);
}
.aio-box.ai-engine p span{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	padding: 4px 8px;
	margin: 2px 3px;
}
.aio-box.article{
	background: #f9f4d8;
	border-color: var(--sub-color);
}
.aio-box.article p span{
	display: inline-block;
	margin-top: 8px;
	background: var(--sub-color);
	border-radius: 5px;
	padding: 3px 8px;
	font-size: 15px;
	font-weight: 800;
}
.aio-target{
	display: grid;
	gap: 10px;
}
.aio-box.lp,
.aio-box.official{
	background: #eaf4ea;
	border-color: var(--green-color);
}
.aio-target .and{
	font-size: 16px;
	font-weight: 700;
	color: #9aa3ac;
	text-align: center;
}
.aio-arrow{
	font-size: 42px;
	font-weight: 800;
	color: var(--blue-color);
	text-align: center;
}
.aio-overview-cta{
	text-align: center;
}
.aio-overview-cta p{
	font-size: 44px;
	font-weight: 900;
	line-height: 1.8;
	color: var(--main-color);
}
.aio-overview-cta p span.accent{
	color: var(--sub-color);
}
.aio-overview-cta small{
	display: block;
	font-size: 23px;
	line-height: 1.7;
	color: #e5edf8;
}

/* -----------------------------------------------------------------------------
 Contents2 (AIO features section)
----------------------------------------------------------------------------- */
.contents.contents-features .w1024{
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 44px;
	padding-bottom: 50px;
}
.contents.contents-features{
	background-color: #eadce2;
	background-image: url('../../p-img/101614_1/bg01.svg');
	background-position: center top;
	background-size: 800px auto;
	background-repeat: repeat;
}
.contents.contents-features section{
	margin-bottom: 0;
}
.aio-features-kicker{
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .2em;
	color: var(--sub-color);
	padding: 0 34px;
	margin-bottom: 12px;
}
.aio-features-kicker:before,
.aio-features-kicker:after{
	content: "";
	position: absolute;
	top: 50%;
	width: 24px;
	height: 2px;
	background: var(--sub-color);
}
.aio-features-kicker:before{ left: 0; }
.aio-features-kicker:after{ right: 0; }
.aio-features-lead{
	font-size: 21px;
	line-height: 1.8;
	color: #b9c8db;
	margin-bottom: 24px;
}
.aio-feature-grid{
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.aio-feature-card{
	position: relative;
	background: var(--white);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 16px;
	padding: 22px 18px 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 8px 8px 0 var(--light-red);
}
.aio-feature-card:before{
	content: none;
}
.aio-feature-card .num{
	position: absolute;
	top: 14px;
	right: 18px;
	font-size: 72px;
	font-weight: 900;
	line-height: 1;
	color: rgba(255,255,200,0.25);
}
.aio-feature-card .label{
	display: inline-block;
	font-size: 28px;
	font-weight: 900;
	color: var(--white);
	background: var(--main-color);
	border-radius: 5px;
	padding: 4px 12px;
	margin-bottom: 14px;
}
.aio-feature-card h3{
	font-size: clamp(30px, 4.8vw, 52px);
	line-height: 1.32;
	font-weight: 900;
	color: var(--main-color);
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}
.aio-feature-card .desc{
	font-size: 32px;
	line-height: 1.8;
	margin-bottom: 14px;
	position: relative;
	z-index: 1;
}
.aio-feature-image{
	width: 70%;
	max-width: 300px;
	margin-top: auto;
	margin-left: auto;
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 1;
}
.aio-feature-image img{
	display: block;
	max-width: 100%;
	height: auto;
}
.aio-feature-card .note{
	font-size: 31px;
	font-weight: 800;
	line-height: 1.5;
	color: var(--sub-color);
	border: 1px solid rgba(230,203,43,.55);
	background: rgba(63,79,81,.46);
	border-radius: 8px;
	padding: 8px 14px;
	position: relative;
	z-index: 1;
}

/* -----------------------------------------------------------------------------
 Contents_bg2 (AIO flow section)
----------------------------------------------------------------------------- */
.contents.contents_bg2{
	background: #f1f3f7 !important;
}
.contents.contents_bg2 > .w1024{
	margin: 0 auto;
	padding: 44px 12px 54px;
}
.aio-flow-wrap{
	color: var(--main-color);
}
.aio-flow-kicker{
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .22em;
	color: var(--blue-color);
	padding: 0 34px;
	margin-bottom: 12px;
}
.aio-flow-kicker:before,
.aio-flow-kicker:after{
	content: "";
	position: absolute;
	top: 50%;
	width: 24px;
	height: 2px;
	background: var(--blue-color);
}
.aio-flow-kicker:before{ left: 0; }
.aio-flow-kicker:after{ right: 0; }
.aio-flow-list{
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	column-gap: 10px;
	row-gap: 0;
	align-items: start;
	margin-top: 60px;
}
.aio-flow-item{
	position: relative;
	display: block;
	grid-column: 1;
	margin-bottom: 45px;
	background: var(--light-color);
	border: 2px solid var(--main-color);
	border-radius: 12px;
	padding: 14px 12px 14px;
}
.aio-flow-item:nth-of-type(n+4){
	grid-column: 1;
}
.aio-flow-item:after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
	width: 30px;
	height: 15px;
	background: var(--main-color);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	border: 0;
}
.aio-flow-item:nth-of-type(5):after{
	display: none;
}
.aio-flow-item:last-child{
	margin-bottom: 0;
}
.aio-flow-item .body{
	padding: 10px;
}
.aio-flow-item .step{
	position: absolute;
	top: -42px;
	left: 12px;
	width: auto;
	height: auto;
	border-radius: 0;
	color: var(--main-color);
	font-size: 50px;
	font-weight: 900;
	line-height: 1;
	text-align: left;
	background: none !important;
}
.aio-flow-item .step:after{
	display: none;
}
.aio-flow-item:last-child .step:after{
	display: none;
}
.aio-flow-item .step.blue{ color: var(--main-color); }
.aio-flow-item .step.yellow{
	color: var(--main-color);
}
.aio-flow-item .step.green{ color: var(--main-color); }
.aio-flow-item .body .title{
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
	color: var(--main-color);
	margin-bottom: 8px;
}
.aio-flow-item .body .title .bg-white{
	display: table;
	font-size: .9em;
	background-color: var(--white);
	border-radius: 50px;
	padding: 3px 15px;
	margin: 0 auto 5px;
}
.aio-flow-item .aio-flow-image{
	width: 75%;
	max-width: 200px;
	text-align: center;
	margin: 30px auto 10px;
}
.aio-flow-item .aio-flow-image img{
	max-width: 100%;
	height: auto;
}
.aio-flow-item .body p{
	font-size: 20px;
	line-height: 1.6;
	color: var(--main-color);
}
.aio-flow-item .body small{
	display: table;
	font-size: 13px;
	line-height: 1.4;
	color: #8999aa;
	margin: 15px auto 0;
}
.aio-flow-side-note{
	grid-column: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	margin: 20px 0;
	writing-mode: vertical-rl;
	text-orientation: upright;
	transform: translateY(-24px);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
	color: var(--white);
	background: var(--light-red);
	border-radius: 999px;
	padding: 12px 6px;
	letter-spacing: .5em;
}
.aio-flow-side-note.type-4{
	background: #ce84a2;
}
.aio-flow-side-note.type-5{
	background: #ce4979;
}
.aio-flow-row-note{
	display: flex;
	grid-column: 2;
	grid-row: 1 / span 3;
	writing-mode: vertical-rl;
	text-orientation: upright;
	transform: translateY(-24px);
	justify-content: center;
	align-items: center;
	align-self: stretch;
	margin: 20px 0;
	width: auto;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
	color: var(
	--dark-color);
	background: var(
	--light-red);
	border-radius: 999px;
	padding: 12px 6px;
	letter-spacing: 1em;
}
.aio-flow-sample{
	margin-top: 30px;
}
.aio-flow-sample-title{
	font-size: 20px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	color: var(--main-color);
	margin-bottom: 10px;
}
.aio-flow-sample-image{
	text-align: center;
}
.aio-flow-sample-image img{
	display: block;
	width: 100%;
	max-width: 960px;
	height: auto;
	margin: 0 auto;
}
.aio-flow-sample-note{
	max-width: 960px;
	display: table;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.9;
	text-align: left;
	color: #555;
	margin: 12px auto 0;
}
/* -----------------------------------------------------------------------------
 Pricing section
----------------------------------------------------------------------------- */
.aio-pricing-wrap{
	color: var(--main-color);
}
.aio-pricing-kicker{
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .2em;
	color: var(--blue-color);
	padding: 0 34px;
	margin-bottom: 12px;
}
.aio-pricing-kicker:before,
.aio-pricing-kicker:after{
	content: "";
	position: absolute;
	top: 50%;
	width: 24px;
	height: 2px;
	background: var(--blue-color);
}
.aio-pricing-kicker:before{ left: 0; }
.aio-pricing-kicker:after{ right: 0; }
.aio-pricing-lead{
	font-size: 27px;
	line-height: 1.8;
	color: #7a8897;
}
.aio-pricing-card{
	max-width: 920px;
	margin: 0 20px;
	border: 2px solid var(--main-color);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
}
.aio-pricing-head{
	background: var(--main-color);
	color: #fff;
	text-align: center;
	padding: 22px 12px 16px;
}
.aio-pricing-head .plan{
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 8px;
}
.aio-pricing-head .plan .pricing-brand-line{
	display: inline-block;
	line-height: 1;
	margin-right: .12em;
}
.aio-pricing-head .plan .logo-sangyo,
.aio-pricing-head .plan .logo-navi,
.aio-pricing-head .plan .logo-55,
.aio-pricing-head .plan .logo-ai,
.aio-pricing-head .plan .logo-dx,
.aio-pricing-head .plan .hero-brand-space{
	display: inline-block;
	line-height: 1;
}
.aio-pricing-head .plan .logo-sangyo{
	font-family: 'M PLUS 1', sans-serif;
	font-size: 1em;
	font-weight: 700;
	color: #fff;
	vertical-align: .02em;
}
.aio-pricing-head .plan .logo-navi{
	font-family: 'M PLUS 1', sans-serif;
	font-size: 1.1em;
	font-weight: 700;
	color: #fff;
	vertical-align: .02em;
}
.aio-pricing-head .plan .logo-55{
	font-family: 'Tomorrow', sans-serif;
	font-size: 1.4em;
	font-weight: 700;
	color: #fff;
	vertical-align: -.02em;
}
.aio-pricing-head .plan .logo-ai{
	font-family: 'Barlow', sans-serif;
	font-size: 1.47em;
	font-weight: 800;
	color: #fff;
	margin-left: .08em;
	vertical-align: -.04em;
}
.aio-pricing-head .plan .logo-dx{
	font-family: 'Tomorrow', sans-serif;
	font-size: 1.13em;
	font-weight: 700;
	color: #fff;
	margin-left: .08em;
	vertical-align: -.01em;
}
.aio-pricing-head .plan .hero-brand-space{
	width: .28em;
	font-size: 1em;
}
.aio-pricing-head .price{
	font-size: 52px;
	font-weight: 900;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 8px;
}
.aio-pricing-head .price span{
	font-size: 1.48em;
}
.aio-pricing-head .sub{
	font-size: 22px;
	color: #f1f1f1;
}
.aio-pricing-body{
	background: #f4f7fa;
	padding: 16px 14px 18px;
}
.aio-pricing-body-inner{
	display: table;
	margin: auto;
}
.aio-price-item{
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #fff;
	border: 1px solid #d8e1ea;
	border-radius: 10px;
	padding: 12px 12px 12px 40px;
	margin-bottom: 10px;
	margin-left: 10px;
}
.aio-price-item .icon{
	position: absolute;
	top: 50%;
	left: -14px;
	transform: translateY(-50%);
	width: 45px;
}
.aio-price-item .icon img{
	display: block;
	width: 100%;
	height: auto;
}
.aio-price-item .txt p{
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
	color: var(--main-color);
	margin-bottom: 4px;
}
.aio-price-note{
	font-size: 15px;
	font-weight: 700;
	line-height: 1.65;
	text-align: center;
	margin-top: 12px;
}

/* -----------------------------------------------------------------------------
 Success cases section
----------------------------------------------------------------------------- */
.contents.cases-section{
	background-color: rgba(251, 191, 36, .12);
	background-image: url('../../p-img/101614_1/bg01.svg');
	background-position: center top;
	background-size: 800px auto;
	background-repeat: repeat;
}
.contents.fixed.cases-fixed{
	background: #eef1f6;
}
.contents.fixed.cases-fixed .fixed-bg{
	display: none;
}
.contents.fixed.cases-fixed .w1024{
	margin: 0 auto;
	padding: 56px 12px 60px;
	height: auto !important;
}
.aio-cases-kicker{
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .2em;
	color: var(--blue-color);
	padding: 0 34px;
	margin-bottom: 12px;
}
.aio-cases-kicker:before,
.aio-cases-kicker:after{
	content: "";
	position: absolute;
	top: 50%;
	width: 24px;
	height: 2px;
	background: var(--blue-color);
}
.aio-cases-kicker:before{ left: 0; }
.aio-cases-kicker:after{ right: 0; }
.aio-cases-grid{
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
.aio-cases-item{
	background: rgba(255, 255, 255, 0.7);
	border-radius: 20px;
	padding: 30px 20px;
	margin-bottom: 40px;
}
.aio-cases-item:last-child{
	margin-bottom: 0;
}
.aio-cases-title{
	display: table;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5;
	color: var(--white);
	background-color: var(
	--main-color);
	text-align: center;
	border-radius: 40px;
	padding: 10px 40px;
	margin: 0 auto 20px;
	padding-bottom: 10px;
}
.aio-cases-image{
	padding-top: 0;
}
.aio-cases-image img{
	display: block;
	width: 100%;
	height: auto;
}

/* -----------------------------------------------------------------------------
 Voice section
----------------------------------------------------------------------------- */
.contents.voices-section{
	background: #eef1f6;
}
.contents.voices-section .w1024{
	margin: 0 auto;
	padding: 52px 12px 38px;
}
.aio-voice-kicker{
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .2em;
	color: var(--blue-color);
	padding: 0 34px;
	margin-bottom: 12px;
}
.aio-voice-kicker:before,
.aio-voice-kicker:after{
	content: "";
	position: absolute;
	top: 50%;
	width: 24px;
	height: 2px;
	background: var(--blue-color);
}
.aio-voice-kicker:before{ left: 0; }
.aio-voice-kicker:after{ right: 0; }
.aio-voice-grid{
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}
.aio-voice-card{
	background: rgba(255, 255, 255, .5);
	border: 1px solid #e1e7f1;
	border-radius: 12px;
	padding: 14px 14px 16px;
}
.aio-voice-card .rate{
	font-size: 18px;
	color: var(--accent-color);
	letter-spacing: .08em;
	margin-bottom: 10px;
}
.aio-voice-card .comment{
	font-size: 15px;
	line-height: 1.75;
	color: #23364c;
	margin-bottom: 12px;
}
.aio-voice-card .meta{
	display: flex;
	align-items: center;
	gap: 10px;
}
.aio-voice-card .avatar{
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--blue-color);
	color: #fff;
	font-weight: 800;
	font-size: 22px;
	line-height: 52px;
	text-align: center;
}
.aio-voice-card .avatar{
	overflow: hidden;
	background: transparent;
	padding: 0;
}
.aio-voice-card .avatar img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.aio-voice-card .meta p{
	margin: 0;
}
.aio-voice-card .meta strong{
	display: block;
	font-size: 23px;
	font-weight: 800;
	color: var(--main-color);
}
.aio-voice-card .meta .voice-info{
	display: block;
	font-size: 19px;
	color: #7a8898;
}

/* -----------------------------------------------------------------------------
 FAQ section
----------------------------------------------------------------------------- */
.contents.faq-section{
	background: #eef1f6;
}
.aio-faq-kicker{
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .2em;
	color: var(--blue-color);
	padding: 0 34px;
	margin-bottom: 12px;
}
.aio-faq-kicker:before,
.aio-faq-kicker:after{
	content: "";
	position: absolute;
	top: 50%;
	width: 24px;
	height: 2px;
	background: var(--blue-color);
}
.aio-faq-kicker:before{ left: 0; }
.aio-faq-kicker:after{ right: 0; }
.aio-faq-list{
	display: grid;
	gap: 10px;
}
.aio-faq-item{
	padding: 12px 12px 10px;
}
.aio-faq-item .faq-q-row,
.aio-faq-item .faq-a-row{
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.aio-faq-item .faq-q-row{
	border-top: 1px solid #ccc;
	padding-top: 20px;
	margin-bottom: 8px;
}
.aio-faq-item:first-child .faq-q-row{
	border-top: none;
	padding-top: 0;
}
.aio-faq-item .q{
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--blue-color);
	color: #fff;
	font-family: 'Google Sans Flex', sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 32px;
	text-align: center;
}
.aio-faq-item .faq-q-row h3{
	flex: 1 1 auto;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.8;
	color: var(--main-color);
	margin: 0;
}
.aio-faq-item .faq-a-icon{
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--main-color);
	color: #fff;
	font-family: 'Google Sans Flex', sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 32px;
	text-align: center;
}
.aio-faq-item .faq-a-body{
	flex: 1 1 auto;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	color: #5e6f81;
	margin: 0;
}

/* -----------------------------------------------------------------------------
Contact section
----------------------------------------------------------------------------- */
.contents.contact-section .hero-form-card{
	max-width: 640px;
	margin: 0 auto;
}
.aio-contact-kicker{
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .2em;
	color: var(--blue-color);
	padding: 0 34px;
	margin-bottom: 12px;
}
.aio-contact-kicker:before,
.aio-contact-kicker:after{
	content: "";
	position: absolute;
	top: 50%;
	width: 24px;
	height: 2px;
	background: var(--blue-color);
}
.aio-contact-kicker:before{ left: 0; }
.aio-contact-kicker:after{ right: 0; }
.aio-problem-kicker,
.aio-features-kicker,
.aio-flow-kicker,
.aio-pricing-kicker,
.aio-cases-kicker,
.aio-voice-kicker,
.aio-faq-kicker,
.aio-contact-kicker{
	display: table;
	margin-left: auto;
	margin-right: auto;
	font-weight: 700;
}
.aio-contact-btns{
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 50px;
}
.aio-contact-btns .contact-btn-item{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
}
.aio-contact-btns .btn-note{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: #333;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .02em;
}
.aio-contact-btns .btn-note span{
	position: relative;
	display: inline-block;
	padding: 0 18px;
}
.aio-contact-btns .btn-note span::before,
.aio-contact-btns .btn-note span::after{
	content: "";
	position: absolute;
	top: 50%;
	width: 1px;
	height: 14px;
	background: currentColor;
	transform-origin: center;
}
.aio-contact-btns .btn-note span::before{
	left: 2px;
	transform: translateY(-50%) rotate(-26deg);
}
.aio-contact-btns .btn-note span::after{
	right: 2px;
	transform: translateY(-50%) rotate(26deg);
}
.aio-contact-btns .mail_button{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	margin-top: 0;
	padding: 1.5em 1.2em;
	font-size: 20px;
	font-weight: 900;
	border-radius: 999px;
	background: var(--accent-color);
	border-color: var(--accent-color);
	text-align: center;
	letter-spacing: 0;
	box-shadow: 4px 5px 6px rgba(0,0,0,.3);
	transition: box-shadow .2s, transform .2s, opacity .2s;
}
.aio-contact-btns .mail_button .btn-label{
	display: inline-block;
	letter-spacing: .3em;
	padding-left: .3em;
	line-height: 1;
}
.aio-contact-btns .mail_button:hover{
	box-shadow: none;
	transform: translate(4px, 5px);
	opacity: 1;
}
.aio-contact-btns .contact-btn-item:nth-child(1) .mail_button{
	background: var(--main-color);
	border-color: var(--main-color);
}
.aio-contact-btns .contact-btn-item:nth-child(1) .btn-note{
	color: var(--main-color);
}
.aio-contact-btns .contact-btn-item:nth-child(2) .mail_button{
	color: var(--body-font-color);
	background: var(--accent-color);
	border-color: var(--accent-color);
}
.aio-contact-btns .contact-btn-item:nth-child(2) .btn-note{
	color: #444;
}

/* -----------------------------------------------------------------------------
 Global typography tune (smaller overall, keep heading accents)
----------------------------------------------------------------------------- */
.hero-lead{ font-size: clamp(22px, 3.6vw, 36px); }
.hero-point-list li{ font-size: 18px; }
.hero-form-head .ttl{ font-size: 20px; }
.hero-form button{ font-size: 18px; }

.aio-problem-desc,
.aio-features-lead,
.aio-pricing-lead{ font-size: 16px; line-height: 1.75; }

.aio-feature-card .desc{ font-size: 15px; line-height: 1.75; }

.aio-overview-cta p{font-size: clamp(21px, 5vw, 40px);}
.aio-overview-cta small{ font-size: 14px; }

.aio-pricing-head .price{ font-size: 34px; }
.aio-pricing-head .sub{ font-size: 13px; }

.aio-voice-card .meta .voice-info{ font-size: 12px; }
.aio-voice-card .meta strong{ font-size: 14px; }

/* -----------------------------------------------------------------------------
 Breadcrumb
----------------------------------------------------------------------------- */
#breadcrumb {
	font-size: 0.85em;
	max-width: 100%;
	margin: 0 auto;
	padding: 15px 10px;
	text-align: left;
	background-color: var(--light-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.contents-light {
	background-color: var(--light-color);
}
main .contents.contents-l-gray {
	background-color: var(--light-gray);
}
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;
	max-width: 1300px;
	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);
	line-height: 1.5;
	margin-bottom: 10px;
}
.footer-info .mail{
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 14px;
}
.footer-info .mail a{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--sub-color);
	background-color: var(
	--footer-txt-color);
	border-radius: 60px;
	padding: 6px 18px;
	margin: 0;
	font-size: 14px;
	font-weight: 500;
}
.footer-info .mail a:hover{
	color: var(--main-color);
	opacity: 1;
	transform: scale(1.05);
}
.footer-info .mail a i{
	margin-right: 6px;
}


/* -----------------------------------------------------------------------------
 共通 parts
----------------------------------------------------------------------------- */
/* parts-h1 */
.parts-h1 {
	font-weight: 900;
	font-size: clamp(30px, 4.8vw, 46px); 
	text-align: center;
	color: var(--main-color);
	line-height: 1.6;
	letter-spacing: 2px;
	margin-bottom: 1em;
}
.parts-h1 .font-s{
	display: block;
	font-weight: 300;
	font-size: .3em;
	color: var(--sub-color);
	text-shadow: none;
}
.f-gogo{
	font-family: 'Tomorrow', sans-serif;
	font-size: 1.4em;
	font-weight: 700;
	color: var(--main-color);
}
.f-gogo.white{
	color: var(--white);
}

/* 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;
}

.inblock{
	display: inline-block;
}
.tbl_auto{
	display: table;
	margin: auto;
}

.aio-flow-info-text{
	font-size: .85em;
	line-height: 1.8;
	color: var(--body-font-color);
}

span.dots{
    background-image: radial-gradient(circle at center, hwb(58 0% 0% / 0.904) 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
    padding-top: 0.15em;
}

/* 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;
}

.marker {
    background: linear-gradient(transparent 80%, rgba(255, 241, 0, 0.7) 80%);
}

.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: visible;
}
.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;
	position: relative;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	line-height: 1.3;
    font-size: 14px;
	font-weight: 700;
    letter-spacing: 1px;
	background: var(--sub-color);
	color: var(--white);
	text-align: center;
	text-decoration: none;
	padding: 15px 0px;
	margin: 0;
	box-shadow: inset 0 0 14px rgba(255,255,255,0.26), inset 0 0 2px rgba(255,255,255,0.55);
}
.cv_btn_area .btn a:nth-child(2){
	background: var(--main-color);
}
.cv_btn_area .btn a:last-child{
	color: var(--body-font-color);
	background: var(--accent-color);
}
.cv_btn_area .btn a i {
	font-size: 1.5em;
	margin-right: 10px;
}
.cv_btn_area .btn a .cv-badge{
	position: absolute;
	top: -45px;
	left: 6px;
	transform: rotate(-8deg);
	transform-origin: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(
	--main-color);
	box-shadow: 3px 4px 2px rgba(0,0,0,0.2);
	color: #fff;
	font-size: 9px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	letter-spacing: -.7px;
	animation: cv-badge-pulse 1.4s ease-in-out infinite;
}

@keyframes cv-badge-pulse {
	0%, 100% { transform: rotate(-8deg) scale(1); }
	50% { transform: rotate(-8deg) scale(1.08); }
}

.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;
}



/* -----------------------------------------------------------------------------
	 個別設定
----------------------------------------------------------------------------- */
















/* *****************************************************************************
   スマートフォン用のスタイル記述
***************************************************************************** */
@media screen and (max-width: 768px) {
	.aio-top-about-wrap{
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.aio-top-about-image{
		order: 1;
		flex: none;
		width: 100%;
		max-width: none;
		margin-left: auto;
	}
	.aio-top-about{
		order: 2;
	}
	.aio-top-about-image img{
		width: 80%;
		max-width: 400px;
		margin-left: auto;
	}
}

@media screen and (max-width: 480px) {
	.hero-point-list li{
		font-size: clamp(16px, 4vw, 19px);
		line-height: 1.28;
	}

	
	
	
	
	
	
}
