@charset "UTF-8";
/**
 * about basic style
**/

.about-section {
	padding: 80px 0;
}
@media only screen and (max-width: 767px) {
	.about-section {
		padding: 32px 0;
	}
}

.about-section__ttl {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	flex-basis: 100%;
	margin: 0 0 64px;
}
@media only screen and (max-width: 767px) {
	.about-section__ttl {
		font-size: 24px;
		margin: 0 0 24px;
	}
}

.about-section__txt {
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
}
* + .about-section__txt {margin-top: 64px;}
@media only screen and (max-width: 767px) {
	.about-section__txt {font-size: 14px;}
	* + .about-section__txt {margin-top: 24px;}
}

.about__ttl {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 64px;
}

.about__txt {
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}
.about__txt * + p {margin-top: 2em;}
@media only screen and (max-width: 767px) {
	.about__txt {font-size: 14px;}
}


/**
 * cta button
 * NOTE:
 * :not() のセレクタが長いですが、ボタンの色替えは
 * .btn.about-cta aというセレクタで差し替え可能です。（:not()の記述は不要）
 * またスタイルを拡張する場合も.btn.about-cta.new-name a や
 * .parent-div .btn.about-cta a などで書き換え可能です。
**/
.btn.about-cta:not(a):not(input):not(button) {
	display: block;
	max-width: 384px;
	width: 100%;
	margin: 40px auto 0;
	padding: 0;
}
.btn.about-cta:not(a):not(input):not(button):active {box-shadow: none;}
.btn.about-cta:not(a):not(input):not(button) a,
.btn.about-cta:not(a):not(input):not(button) input,
.btn.about-cta:not(a):not(input):not(button) button,
.btn.about-cta:not(a):not(input):not(button) > span {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	box-shadow: 0 4px 0 0 #f00;
	border-radius: 8px;
	border: solid 2px #f00;
	background: #f00;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	font-feature-settings: 'palt';
	text-align: center;
	width: 100%;
	height: 80px;
	padding-left: 1em;
	padding-right: 1em;
	position: relative;
	top: 0;
	opacity: 1;
	transition: 
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease,
		opacity 0.2s ease,
		top 0.2s ease;
}
:checked + .btn.about-cta:not(a):not(input):not(button) > span,
.btn.about-cta:not(a):not(input):not(button) a:focus,
.btn.about-cta:not(a):not(input):not(button) input:focus,
.btn.about-cta:not(a):not(input):not(button) button:focus,
.btn.about-cta:not(a):not(input):not(button) > span:focus,
.btn.about-cta:not(a):not(input):not(button) a:hover,
.btn.about-cta:not(a):not(input):not(button) input:hover,
.btn.about-cta:not(a):not(input):not(button) button:hover,
.btn.about-cta:not(a):not(input):not(button) > span:hover {
	box-shadow: 0 0 0 0 #f00;
	border-color: #f00;
	background: #fff;
	color: #f00;
	opacity: 1;
	top: 4px;
}
.btn.about-cta:not(a):not(input):not(button) a::after {
	/* content: ''; *//* NOTE: 矢印は不使用中 */
	display: block;
	border-top: 2px solid;
	border-right: 2px solid;
	width: 8px;
	height: 8px;
	margin-left: 0;
	transform: translate(0,-50%) rotate(45deg);
	position: absolute;
	right: 1em;
	top: 50%;
	pointer-events: none;
}
@media only screen and (max-width: 959px) {
	.btn.about-cta:not(a):not(input):not(button) {margin-top: 32px;}
	.btn.about-cta:not(a):not(input):not(button) a,
	.btn.about-cta:not(a):not(input):not(button) input,
	.btn.about-cta:not(a):not(input):not(button) button,
	.btn.about-cta:not(a):not(input):not(button) > span {
		font-size: 16px;
		height: 72px;
	}
	.btn.about-cta:not(a):not(input):not(button) a::after {margin-left: 1em;}
}
@media only screen and (max-width: 767px) {
	.btn.about-cta:not(a):not(input):not(button) a,
	.btn.about-cta:not(a):not(input):not(button) input,
	.btn.about-cta:not(a):not(input):not(button) button,
	.btn.about-cta:not(a):not(input):not(button) > span {
		font-size: 14px;
		height: 64px;
	}
	.btn.about-cta:not(a):not(input):not(button) a::after {margin-left: 4px;}
}

/* NOTE: ボタンの色変更の例 */
/*
.btn.about-cta a {
	box-shadow: 0 0 0 0 #00f;
	border-color: #00f;
	background: #fff;
	color: #00f;
}
*/


/**
 * about mv
**/
.about-main-vis {
	background: #f00;
	color: #fff;
	padding: 56px 0 64px;
}

.about-main-vis__desc {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-main-vis__desc--ttl {
	display: block;
	font-size: 52px;
	font-weight: 700;
	font-feature-settings: 'palt';
	line-height: 72px;
	letter-spacing: 0.05ex;
	text-align: left;
	width: 100%;
	margin: 0;
}
@media only screen and (max-width: 767px) {
	.about-main-vis__desc--ttl {
		font-size: 28px;
		line-height: 44px;
		margin: 0;
	}
}

.about-main-vis__desc--img {
	width: calc( ( 100% - 32px ) / 2 );
	order: 1;
}
.about-main-vis__desc--img > img {
	width: 100%;
	height: auto;
}
@media only screen and (max-width: 767px) {
	.about-main-vis__desc--img {
		width: 100%;
		text-align: center;
		order: 0;
	}
	.about-main-vis__desc--img img {max-width: 192px;}
}

.about-main-vis__desc--txt {
	font-size: 20px;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: 0.075ex;
	width: calc( ( 100% - 32px ) / 2 );
	padding: 0;
	order: 0;
}
.about-main-vis__desc--lead {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}
.about-main-vis__desc--txt > * + p {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin-top: 16px;
}
@media screen and (max-width: 767px) {
	.about-main-vis__desc--txt {
		font-size: 14px;
		line-height: 28px;
		width: 100%;
		padding: 16px 0 0;
		order: 1;
	}
	.about-main-vis__desc--txt > * + p {margin-top: 16px;}
}


.about-main-vis .btn.about-cta {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 40px 0 0;
}
.about-main-vis .btn.about-cta a {
	border-color: #fff;
	background: #fff;
	color: #f00;
	opacity: 1;
}
.about-main-vis .btn.about-cta a:focus,
.about-main-vis .btn.about-cta a:hover {
	border-color: #fff;
	background: #fff;
	color: #f00;
	opacity: 0.66;
}
@media screen and (max-width: 767px) {
	.about-main-vis .btn.about-cta {
		margin: 24px 0 0;
	}
}


/**
 * about about-feature
**/
.about-feature {
	background: #fff;
	padding: 56px 0 64px;
}

.about-feature__desc {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-feature__desc--ttl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	text-align: center;
	width: 100%;
	margin: 0 0 40px;
}
.about-feature__desc--ttl > img {
	max-width: 314px;
	width: 100%;
	height: auto;
	line-height: 1;
}
.about-feature__desc--ttl > span {
	display: inline-block;
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
	transform: translate(0,8.33%);
}
@media only screen and (max-width: 767px) {
	.about-feature__desc--ttl {
		margin: 0 0 32px;
	}
	.about-feature__desc--ttl > img {max-width: 220px;}
	.about-feature__desc--ttl > span {
		font-size: 16px;
	}
}

.about-feature__desc--img {
	width: calc( ( 100% - 64px ) / 2 );
	order: 1;
}
.about-feature__desc--img > img {
	width: 100%;
	height: auto;
}
@media only screen and (max-width: 1280px) {
	.about-feature__desc--img {width: calc( ( 100% - 40px ) / 2 );}
}
@media only screen and (max-width: 767px) {
	.about-feature__desc--img {
		width: 100%;
		text-align: center;
		order: 0;
	}
	.about-feature__desc--img img {max-width: 192px;}
}

.about-feature__desc--txt {
	font-size: 18px;
	font-weight: 500;
	line-height: 36px;
	width: calc( ( 100% - 64px ) / 2 );
	padding: 0;
	order: 0;
}
.about-feature__desc--lead {
	color: #f00;
	font-size: 26px;
	font-weight: 700;
	line-height: 40px;
}
.about-feature__desc--txt > * + p {margin-top: 24px;}
@media only screen and (max-width: 1280px) {
	.about-feature__desc--txt {width: calc( ( 100% - 40px ) / 2 );}
}
@media screen and (max-width: 767px) {
	.about-feature__desc--txt {
		font-size: 14px;
		line-height: 28px;
		width: 100%;
		padding: 24px 0 0;
		order: 1;
	}
	.about-feature__desc--lead {
		font-size: 20px;
		line-height: 30px;
	}
}


/**
 * solve
**/
.solve {
	background: #f1f1f2;
}

.solve-head {}
.solve-head__ttl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	text-align: center;
	width: 100%;
	margin: 0 0 40px;
}
.solve-head__ttl > img {
	max-width: 314px;
	width: 100%;
	height: auto;
	line-height: 1;
}
.solve-head__ttl > span {
	display: inline-block;
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
	transform: translate(0,8.33%);
}
@media only screen and (max-width: 767px) {
	.solve-head__ttl {
		margin: 0 0 32px;
	}
	.solve-head__ttl > img {max-width: 220px;}
	.solve-head__ttl > span {
		font-size: 16px;
	}
}

.solve__item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: flex-end;
	-ms-flex-line-pack: end;
	align-content: flex-end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	width: 100%;
	margin-bottom: 40px;
}
.solve__item:last-child {
	margin-bottom: 0;
}
.solve__img {
	width: calc((100% - 80px)/2);
}
.solve__img img {
	width: 100%;
	height: auto;
	border-radius: 0;
	object-fit: contain;
	font-family: "object-fit: contain;";
}
.even .solve__desc {
	order: 1;
}
.solve__desc {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc((100% - 80px)/2);
	position: relative;
}
.solve__num {
	display: block;
	color: #fff;
	font-size: 240px;
	font-weight: 500;
	font-family: Arial, Helvetica, "sans-serif";
	line-height: 1;
	text-align: left;
	position: absolute;
	top: 0;
	right: auto;
	left: 0;
	margin-bottom: -0.3333em;
	z-index: 1;
}
.even .solve__num {
	right: 0;
	left: auto;
}
.solve__ttl {
	color: #f00;
	font-size: 28px;
	font-weight: 700;
	font-feature-settings: 'palt';
	line-height: 40px;
	margin: 0 0 40px;
	padding: 3.5em 0 0;
	position: relative;
	z-index: 5;
}
.solve__txt {
	font-size: 18px;
	font-weight: 500;
	line-height: 36px;
	text-align: left;
	position: relative;
	z-index: 5;
}
@media screen and (max-width: 959px) {
	.solve__desc,
	.solve__img {
		width: calc((100% - 2rem)/2);
	}
}
@media only screen and (max-width: 767px) {
	.solve__item {
		margin-bottom: 3.5rem;
	}
	.solve__desc,
	.solve__img {
		width: 100%;
	}
	.solve__desc {
		margin-top: 1rem;
		order: 1;
	}
	.solve__ttl {
		font-size: 2rem;
	}
	.solve__img img {
		height: 220px;
	}
}


/**
 * ご利用ガイド
**/
.guide {}
.guide__item {
	width: 100%;
	margin-top: 5rem;
	display: flex;
	align-items: flex-start;
}
.guide__item:first-child {
	margin-top: 0
}
.guide__img {
	padding-right: 4rem;
}
.guide__img img {
	width: 16rem;
	height: 16rem;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	border-radius: 50%;
}
.guide__desc {
	width: 100%;
	padding: 0 0 2rem 4rem;
	border-left: 1px solid #e7e6e6;
}
.guide__ttl {
	margin: 2rem 0 1rem;
	font-size: 2.4rem;
	font-weight: 700;
}
@media only screen and (max-width: 767px) {
	.guide__item {
		margin: 40px 0;
		flex-wrap: wrap
	}
	.guide__img {
		width: 100%;
		padding: 0;
	}
	.guide__img img {
		margin: 0 auto;
	}
	.guide__desc {
		width: 100%;
		padding: 0;
		border: none;
	}
	.guide__ttl {
		font-size: 1.8rem
	}
}


/**
 * about chart
**/
.about-comparison-chart {padding-top: 0;}
.about-comparison-chart .maru {
	display: inline-block;
	border-radius: 50%;
	height: 15px;
	width: 15px;
	vertical-align: middle;
	background: #2471dc
}

@media screen and (max-width: 767px) {
	.about-comparison-chart .maru {
		line-height: 10px;
		line-height: 10px;
	}
	.about-comparison-chart .maru + * {margin-left: 0.5ex;}
}

.about-comparison-chart .nakamaru {
	border: 3px solid #2471dc;
	display: inline-block;
	border-radius: 50%;
	height: 8px;
	width: 8px;
	vertical-align: middle
}

@media screen and (max-width: 767px) {
	.about-comparison-chart .nakamaru {
		line-height: 4px;
		line-height: 4px
	}
}

.about-comparison-chart .stick {
	font-size: 15px;
	font-weight: bold;
	color: #2471dc
}
.about-comparison-chart .add {
	font-size: 18px;
	font-weight: 500;
	color: #000
}
.about-comparison-chart .cs {
	font-size: 12px;
	color: #2471dc
}

.about-comparison-chart--usage {
	display: grid;
	grid-template-columns: 220px 1fr 1fr;
	grid-template-rows: 1fr;
	gap: 2px 2px;
	grid-template-areas: "intro free standard premium advance"
}

@media screen and (max-width: 767px) {
	.about-comparison-chart--usage {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
		grid-template-areas: "intro intro intro intro" "free standard premium advance"
	}
	.about-comparison-chart--usage .intro {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
		grid-area: intro
	}
	.about-comparison-chart--usage .free {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
		grid-area: free
	}
	.about-comparison-chart--usage .standard {
		-ms-grid-row: 1;
		-ms-grid-column: 5;
		grid-area: standard
	}
	.about-comparison-chart--usage .premium {
		-ms-grid-row: 1;
		-ms-grid-column: 7;
		grid-area: premium
	}
	.about-comparison-chart--usage .advance {
		-ms-grid-row: 1;
		-ms-grid-column: 9;
		grid-area: advance
	}
	.about-comparison-chart--usage .intro {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 4
	}
	.about-comparison-chart--usage .free {
		-ms-grid-row: 2;
		-ms-grid-column: 1
	}
	.about-comparison-chart--usage .standard {
		-ms-grid-row: 2;
		-ms-grid-column: 2
	}
	.about-comparison-chart--usage .premium {
		-ms-grid-row: 2;
		-ms-grid-column: 3
	}
	.about-comparison-chart--usage .advance {
		-ms-grid-row: 2;
		-ms-grid-column: 4
	}
}

.about-comparison-chart--usage .intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center
}

@media screen and (max-width: 767px) {
	.intro__inner {
		display: flex;
		flex-flow: row wrap;
		width: 100%;
	}
}


.intro__box {
	display: flex;
	align-items: center;
	font-size: 12px;
}
@media screen and (max-width: 767px) {
	.intro__box {width: 50%}
}


.intro__icon {
	width: 30px;
	line-height: 30px;
	text-align: center
}
@media screen and (max-width: 767px) {
	.intro__icon {
		line-height: 22px;
	}
}

.intro__icon span {
	display: inline-block;
	margin-right: 10px;
	color: #2471dc
}

.plan__name {
	font-size: 20px;
	width: 100%;
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center
}
@media (min-width:321px) and (max-width:767px) {
	.plan__name {font-size: 16px}
}
@media screen and (max-width:320px) {
	.plan__name {font-size: 14px}
}

.about-comparison-chart--th .price {
	display: flex;
	justify-content: center;
	align-items: center
}
@media screen and (max-width: 767px) {
	.about-comparison-chart--th .price {flex-direction: column}
}


.about-comparison-chart--th .price__number {
	display: inline-block;
	color: #2471dc;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
}
@media (max-width:320px) {
	.about-comparison-chart--th .price__number {font-size: 14px}
}
@media screen and (min-width:321px) and (max-width:767px) {
	.about-comparison-chart--th .price__number {font-size: 16px}
}


.about-comparison-chart--th .price__unit {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	margin-left: 5px;
}
@media screen and (max-width: 767px) {
	.about-comparison-chart--th .price__unit {margin-left: auto}
}

.about-comparison-chart--th .txt {
	padding: 5px;
	font-size: 14px
}

.about-comparison-chart--th .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 5px;
}
.about-comparison-chart--th .btn a {padding: 15px 0;}

@media screen and (max-width: 767px) {
	.about-comparison-chart--th .btn a {
		padding: 4px 0;
		font-size: 12px
	}
}

.about-comparison-chart--th {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 40px 60px 70px 10px
}

@media screen and (max-width: 767px) {
	.about-comparison-chart--th {
		grid-template-rows: 40px 60px 1fr 10px
	}
}
.about-comparison-chart--th.free .plan__name {
	background: #B4B4B5;
	border-radius: 4px 4px 0 0
}
.about-comparison-chart--th.standard .plan__name {
	background: #2471dc;
	border-radius: 4px 4px 0 0
}
.about-comparison-chart--th.premium .plan__name {
	background: #2471dc;
	border-radius: 4px 4px 0 0
}
.about-comparison-chart--th.advanced .plan__name {
	background: #2471dc;
	border-radius: 4px 4px 0 0
}


/**
 * chart accordion
**/
.chart-acc {border-top: 1px solid #CFD8E3}
@media screen and (max-width: 767px) {
	.chart-acc {padding: 0 5px}
}

.acc__content {border-bottom: 1px solid #CFD8E3}

.acc__head_wrap {
	display: grid;
	grid-template-columns: 220px 1fr 1fr;
	grid-template-rows: 50px;
	gap: 0px 0px;
	grid-template-areas: .acc__head free standard premium advanced;
	align-items: center;
	justify-content: center
}

@media screen and (max-width: 767px) {
	.acc__head_wrap {display: block}
}

.acc__head_wrap .acc__colum.head {
	position: relative;
	font-size: 14px;
	padding-left: 18px;
}

@media screen and (max-width: 767px) {
	.acc__head_wrap .acc__colum.head {
		height: 40px;
		display: flex;
		align-items: center;
		border: 1px solid #2471dc;
		border: none;
	}
}

.acc__head_wrap .acc__colum.head .switch {
	position: absolute;
	width: 18px;
	height: 18px;
	background: #2471dc;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%) rotate(0deg);
	transition: 0.4s cubic-bezier(0.2, 0.6, 0.3, 1.1);
	border: 1px solid #2471dc
}

@media screen and (max-width: 767px) {
	.acc__head_wrap .acc__colum.head .switch {
		left: auto;
		right: 0
	}
}

.acc__head_wrap .acc__colum.head .switch:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 2px;
	width: 50%;
	background: white
}

.acc__head_wrap .acc__colum.head .switch:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 50%;
	width: 2px;
	background: white
}

.acc__head_wrap .acc__colum.head .switch.clicked {
	transform: translate(-50%, -50%) rotate(360deg);
	background: #fff
}
.acc__head_wrap .switch.clicked:before {width: 0 !important}
.acc__head_wrap .switch.clicked:after {background: #2471dc !important}

.acc__head_wrap .acc__column {
	display: flex;
	align-items: center;
	text-align: center
}
@media (min-width:768px) {
	.acc__head_wrap .acc__column {
		flex-direction: column;
		justify-content: center
	}
}
@media screen and (max-width: 767px) {
	.acc__head_wrap .acc__column {
		justify-content: flex-start;
		border-bottom: 1px solid #CFD8E3
	}
}

.acc__head_wrap .acc__column span+span {font-size: 12px}

.acc__content .acc__column {
	width: 100%;
	height: 100%;
	align-items: center
}
@media screen and (max-width: 767px) {
	.acc__content .acc__column {padding: 5px 0}
}


.acc__content .acc__column .smp_only {display: none}
@media screen and (max-width: 767px) {
	.acc__content .acc__column .smp_only {
		display: block;
		font-size: 14px;
		width: 144px
	}

	.acc__content .acc__column .smp_only:after {
		content: "：";
		color: #2471dc;
		font-weight: 700
	}
}
.acc__content .acc__column.free {background: #e6f0f0}
.acc__content .acc__column.premium {background: #e1f6fb}


.acc__content .acc__inner {
	display: none;
	display: grid;
	grid-template-columns: 220px 1fr 1fr;
	grid-template-rows: 1fr;
	gap: 0px 0px
}
@media screen and (max-width: 767px) {
	.acc__content .acc__inner {display: block}
}


.acc__content .acc__inner .acc__head {grid-area: 1/1/2/2}

.acc__content .acc__inner .acc__column {
	padding: 5px;
	box-sizing: border-box;
	font-size: 12px;
	line-height: 16px
}
.acc__content .acc__inner .acc__column a {
	text-decoration: underline;
	color: #2471dc
}
.acc__content .acc__inner .acc__column .smp_only {
	color: #2471dc;
	margin-bottom: 5px
}
.acc__content .acc__inner .acc__column.free {grid-area: 1/2/2/3}
.acc__content .acc__inner .acc__column.standard {grid-area: 1/3/2/4}
.acc__content .acc__inner .acc__column.premium {grid-area: 1/4/2/5}
.acc__content .acc__inner .acc__column.advance {grid-area: 1/5/2/6}

.acc__content .acc__inner .acc__column.twocolumn {
	grid-area: 1/3/2/5;
	background: #fff;
	display: flex;
	border-top: 1px solid #CFD8E3
}

@media (min-width:768px) {
	.acc__content .acc__inner .acc__column.twocolumn {
		display: flex;
		align-items: center;
		text-align: center
	}
}

.acc__content .acc__inner .acc__column.twocolumn p {text-align: left}
@media (min-width:768px) {
	.acc__content .acc__inner .acc__column.twocolumn p {margin: 0 auto}
}

.acc__content .acc__inner .acc__column.except_free {
	grid-area: 1/3/2/6;
	background: #fff;
	border-top: 1px solid #CFD8E3
}
@media (min-width:768px) {
	.acc__content .acc__inner .acc__column.except_free {
		display: flex;
		align-items: center;
		text-align: center
	}
}

.acc__content .acc__inner .acc__column.except_free p {text-align: center}
@media (min-width:768px) {
	.acc__content .acc__inner .acc__column.except_free p {margin: 0 auto}
}

.acc__content .acc__inner .acc__column.except_free p a {
	color: #2471dc;
	text-decoration: underline
}

.acc__content .acc__inner .acc__column.all {
	grid-area: 1/2/2/6;
	background: #fff;
	border-top: 1px solid #CFD8E3
}
@media (min-width:768px) {
	.acc__content .acc__inner .acc__column.all {
		display: flex;
		align-items: center;
		text-align: center
	}
}

.acc__content .acc__inner .acc__column.all p {text-align: left}
@media (min-width:768px) {
	.acc__content .acc__inner .acc__column.all p {margin: 0 auto}
}

.about-comparison-chart .notice {
	margin: 20px 0 60px;
	font-size: 12px;
	line-height: 15px
}


/**
 * about chart SVG
**/
.about-comparison-chart-svg {}
* + .about-comparison-chart-svg {margin-top: 64px;}
.about-comparison-chart-svg svg {
	width: 100%;
	height: auto;
}
@media only screen and (max-width: 767px) {
	.about-comparison-chart-svg {
		overflow-x: auto;
		overflow-y: visible;
	}
	* + .about-comparison-chart-svg {margin-top: 24px;}
	.about-comparison-chart-svg svg {
		width: 1115px;
		height: auto;
	}
}


/**
 * about company info
**/
.about-company-info {
	background: #f1f1f2;
}
.about-company-info .l-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.about-company-info__ttl {
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
	text-align: left;
	margin: 0 0 32px;
}
.about-company-info__txt {}
.about-company-info__txt a {}

.about-company-table,
.about-company-history {
	flex-basis: calc( ( 100% - 64px ) / 2 );
	position: relative;
}
@media screen and (max-width: 959px) {
	.about-company-table,
	.about-company-history {
		flex-basis: calc( ( 100% - 32px ) / 2 );
	}
}
@media screen and (max-width: 767px) {
	.about-company-table,
	.about-company-history {
		flex-basis: 100%;
	}
}

.about-company-table__list {
	word-break: break-all;
}
.about-company-table__list > li {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
	padding: 0;
}
.about-company-table__list > li + li {margin-top: 18px;}
@media screen and (max-width: 767px) {
	.about-company-table__list > li + li {margin-top: 8px;}
}

.about-company-table__ttl {
	font-size: 16px;
	font-weight: 700;
	line-height: 28px;
	flex-basis: 21%;
}
.about-company-table__txt {
	background: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
	padding: 12px 24px;
	flex-basis: 79%;
}
.about-company-table__txt a {
	color: #00f;
	text-decoration: underline;
}
@media screen and (max-width: 767px) {
	.about-company-table__ttl {
		font-size: 16px;
		line-height: 28px;
	}
	.about-company-table__txt {
		font-size: 16px;
		line-height: 28px;
		padding: 12px 24px;
	}
}


.about-company-history__list {
	word-break: break-all;
}
.about-company-history__list > li {}
.about-company-history__list > li + li {margin-top: 20px;}

.about-company-history__ttl {
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	margin: 0 0 4px;
}
.about-company-history__txt {
	font-size: 16px;
	line-height: 24px;
}
.about-company-history__txt a {
	color: #00f;
	text-decoration: underline;
}
@media screen and (max-width: 767px) {
	.about-company-history__ttl {
		font-size: 16px;
		line-height: 24px;
	}
	.about-company-history__txt {
		font-size: 14px;
		line-height: 24px;
	}
}
