@charset "utf-8";

:root {
	--text-font-family-base: "YakuHanJP", 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--text-font-family-mincho: "YakuHanMP", YuMincho, '游明朝', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho ProN','メイリオ',"HGS明朝E", 'MS P 明朝', 'MS PMincho', serif;
	--text-color-base: #333333;
	--text-color-primary: #f15925;
	--text-color-placeholder: #bbbbbb;
	--text-size-base: 1.8rem;
	--text-size-base-sp: 2.8rem;
	--text-line-height-base: 1.8;
	--text-letter-spacing-base: .09em;
	--content-width: 124rem;
	--wrap-padding: 5rem;
	--wrap-padding-sp: 3.5rem;
}

html {
	font-size: 10px;
}

body {
	margin: 0;
	padding: 0;
	color: var(--text-color-base);
	font-size: var(--text-size-base);
	line-height: var(--text-line-height-base);
	letter-spacing: var(--text-letter-spacing-base);
	font-feature-settings : "palt";
	text-align: left;
	background-color: #fff;
	font-family: var(--text-font-family-base);
	-webkit-text-size-adjust: none;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}

@media screen\0 {
	body {
		letter-spacing: normal;
		font-family: "YakuHanJP", 'Noto Sans JP', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	}
}
@media print {
	body {
		zoom: 0.68;
		-webkit-print-color-adjust: exact;
	}
}
/* IE10以上 */
@media print and (-ms-high-contrast: none) {
	/* @pageの指定いらないかも */
	@page {
		size: A4;
		margin: 12.7mm 9.7mm;
	}

	body {
		zoom: 1.8;
		width: 1200px;
		transform: scale(0.5);
		transform-origin: 0 0;
	}
}
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, button, textarea, select, p, blockquote, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	margin: 0;
	padding: 0;
	text-align: left;
}
main {
	display: block;
}
table {
	font-size: inherit; /* モダンブラウザ向け */
	font: 100%; /* Win IE 5-5.5､6(後方互換モード)向け */
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style:normal;
	font-weight:normal;
}
ol, ul {
	list-style:none;
}
caption, th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
	letter-spacing: var(--text-letter-spacing-base);
}
p {
	letter-spacing: var(--text-letter-spacing-base);
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
}
input,
button {
	font-family: var(--text-font-family-base);
}
input[type="radio"],input[type="checkbox"],label,button,input[type="submit"] {
	cursor: pointer;
}
input[type="submit"] {
	cursor: pointer;
}
input[type="text"], input[type="search"], input[type="tel"], input[type="url"], input[type="email"], input[type="password"], input[type="date"], input[type="number"] {
	height: 5rem;
	padding: .5rem 1rem;
	font-family: var(--text-font-family-base);
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing-base);
	border: .3rem solid #dddddd;
	box-sizing: border-box;
	border-radius: 0;
	-webkit-text-size-adjust: none;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
select {
	height: 5rem;
	padding: .5rem 1rem;
	color: var(--text-color-base);
	font-family: var(--text-font-family-base);
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing-base);
	border: .3rem solid #dddddd;
	background: #fff;
	box-sizing: border-box;
	border-radius: 0;
}
textarea {
	height: 15rem;
	padding: 1rem 1rem;
	font-family: var(--text-font-family-base);
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing-base);
	border: .3rem solid #dddddd;
	box-sizing: border-box;
	border-radius: 0;
	vertical-align: top;
}
/* Webkit */
::-webkit-input-placeholder {
	color: var(--text-color-placeholder);
	opacity: 1;
}
/* Firefox 18 以前 */
:-moz-placeholder {
	color: var(--text-color-placeholder);
}
/* Firefox 19 以降 */
::-moz-placeholder {
	color: var(--text-color-placeholder);

	/* Firefox 19 以降のデフォルトでは */
	/* color ではなく opacity で色合いを調整しているため */
	/* 文字色を指定する場合、opacity を 1 にする必要がある */
	opacity: 1;
}
/* IE 10 以降 */
:-ms-input-placeholder {
	color: var(--text-color-placeholder) !important;
}
/* CSS4では以下のような名前の擬似クラスになるらしい */
/* おそらく今のところ対応ブラウザはない */
:placeholder-shown {
	color: var(--text-color-placeholder);
}
/* Android chrome対策 */
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, button, textarea, select, p, blockquote, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	max-height:999999px;
}

.clear {
	clear: both;
}
.clearfix {
	zoom: 100%;
}
.clearfix:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
a {
	text-decoration: none;
}
a:link {
	color: var(--text-color-base);
}
a:visited {
	color: var(--text-color-base);
}
a.normal:link {
	color: var(--text-color-base);
}
a.normal:visited {
	color: var(--text-color-base);
}
@media (hover: hover) {
	a:hover {
		text-decoration: none;
	}
}
a:active {
}
a.noline {
	text-decoration: none;
}
a.reverse {
	text-decoration: none;
}
@media (hover: hover) {
	a.reverse:hover {
		text-decoration: underline;
	}
}
body {
	text-align: center;
}
img {
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
	-webkit-backface-visibility: hidden;
}
a { /* FireFox リンク選択時の点線を消す　*/
    /*overflow: hidden;*/
    outline: none;
}
.ov {
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) {
	.ov:hover {
		opacity:0.7;
	}
}
@media (hover: hover) {
	.ovImg:hover img {
		opacity:0.7;
	}
}
.nowrap {
	white-space: nowrap;
}
.mincho {
	font-family: var(--text-font-family-mincho);
}
.gothic {
	font-family: var(--text-font-family-base);
}
.Lato {
	font-family: 'Lato', sans-serif;
}
.Oswald {
	font-family: 'Oswald', sans-serif;
}
.Jost {
	font-family: 'Jost', sans-serif;
}
.Roboto {
	font-family: 'Roboto', sans-serif;
}
* {
	box-sizing: border-box;
}



@media screen and (max-width:1320px){
	html {
		font-size: .75757576vw;
	}
}

@media screen and (max-width:767px){
	html {
		font-size: 1.33333333vw;
		/*font-size: 10px;*/
	}
	body {
		font-size: var(--text-size-base-sp);
	}
	input[type="text"], input[type="search"], input[type="tel"], input[type="url"], input[type="email"], input[type="password"], input[type="date"], input[type="number"] {
		height: 8.8rem;
		padding: 1rem 2rem;
		font-size: 2.8rem;
		border: .4rem solid #dddddd;
	}
	select {
		height: 8.8rem;
		padding: 1rem 2rem;
		font-size: 2.8rem;
		border: .4rem solid #dddddd;
	}
	textarea {
		height: 34.6666666vw;
		padding: 1rem 2rem;
		font-size: 2.8rem;
		border: .4rem solid #dddddd;
	}
}


/**********************************

 fancybox

***********************************/
.fancybox-overlay {
	background: rgba(0,0,0,.5);
}

.fancybox-skin {
	/*background: transparent;*/
	border-radius: 2.5rem;
}

.fancybox-close {
	width: 8.11688312%;
	height: auto;
	padding-top: 8.11688312%;
	margin-bottom: 6.81818182%;
	background: url(../images/icon_close01.png) no-repeat center / contain;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 50%;
	right: auto;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

@media (hover: hover) {

	.fancybox-close {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.fancybox-close:hover {
		transform: translateX(-50%) scale(1.4, 1.4);
		-webkit-transform: translateX(-50%) scale(1.4, 1.4);
	}
}

/**********************************

 general

***********************************/
.u-full {
	max-width: none;
	width: 100%;
}
.u-floatL {
	float: left;
}
.u-floatR {
	float: right;
}
.u-alignC {
	text-align: center;
}
.u-alignR {
	text-align: right;
}
.u-alignL {
	text-align: left;
}
.u-veralignT {
	vertical-align: top;
}
.u-veralignM {
	vertical-align: middle;
}
.u-veralignB {
	vertical-align: bottom;
}
.u-indent {
	text-indent: -1em;
	padding-left: 1em;
}
.u-bold {
	font-weight: bold;
}
.u-color-primary {
	color: var(--text-color-primary);
}
.u-white {
	color: #fff;
}
.u-red {
	color: #ff3f00;
}
.u-blue {
	color: #6a7aff;
}
.u-deep-blue {
	color: #000e71;
}
.u-yellow {
	color: #ffff00;
}
.u-bgYellow {
	background-color: #fff100;
}
.u-marker {
	background: linear-gradient(transparent 70%, #ffbf00 70%);
}
.u-underline {
	text-decoration: underline;
	text-underline-offset: .4em;
}

@media screen and (min-width:768px){
	.u-sp {
		display: none !important;
	}
}
@media screen and (max-width:767px){
	.u-pc {
		display: none !important;
	}
}

/**********************************

 parts

***********************************/
.u-define-wrap {
	padding-left: var(--wrap-padding);
	padding-right: var(--wrap-padding);
}

.u-define-inner {
	max-width: 100%;
	width: var(--content-width);
	margin: 0 auto;
}


@media screen and (max-width:767px){

	.u-define-wrap {
		padding-left: var(--wrap-padding-sp);
		padding-right: var(--wrap-padding-sp);
	}

	.u-define-inner {
		width: auto;
	}
}

/**********************************

 u-float-anime

***********************************/
@media (hover: hover) {

	.u-float-anime {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.u-float-anime:hover {
		box-shadow: 0 .3rem .3rem rgba(0,0,0,.15);
		transform: translateY(-.3rem);
		filter: brightness(1.15);
	}
}

/**********************************

 u-float-anime-no-brightness

***********************************/
@media (hover: hover) {

	.u-float-anime-no-brightness {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.u-float-anime-no-brightness:hover {
		box-shadow: 0 .3rem .3rem rgba(0,0,0,.15);
		transform: translateY(-.3rem);
	}
}

/**********************************

 anime-text-link

***********************************/
.anime-text-link {
}

.anime-text-link .wrap {
	display: inline-block;
	line-height: 1.6;
	position: relative;
	overflow: hidden;
}

.anime-text-link .main,
.anime-text-link .sub {
	display: inline-block;
	vertical-align: top;
	transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.anime-text-link .sub {
	inset: 0;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
}

@media (hover: hover) {
	.anime-text-link:not(.is-active):hover .main {
		transform: translateY(-100%);
		-webkit-transform: translateY(-100%);
	}

	.anime-text-link:not(.is-active):hover .sub {
		transform: none;
		-webkit-transform: none;
	}
}

@media screen and (max-width:767px){

	.anime-text-link .sub {
		display: none;
	}
}

/**********************************

 layout

***********************************/
body {
	height: auto !important;
}
body.is-fixed {
	position: fixed;
	width: 100%;
	/*height: 100%;*/
}
.l-wrap {
	position: relative;
	overflow: hidden;
}

.l-wrap.is-noneActive .l-main,
.l-wrap.is-noneActive .l-footer {
	pointer-events: none;
}

.l-cover {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 15;
	pointer-events: none;
	opacity: 0;
	transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-cover.is-active {
	opacity: 1;
	pointer-events: auto;
}

.l-main {
}

.l-pageTop {
	display: none;
	width: 6.2rem;
	position: fixed;
	bottom: 4rem;
	right: 4rem;
	z-index: 5;
}

.l-pageTop a {
	display: block;
}

@media (hover: hover) {
	.l-pageTop a {
		transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.l-pageTop a:hover {
		opacity: 1;
		transform: scale(1.2, 1.2);
		-webkit-transform: scale(1.2, 1.2);
	}
}

@media screen and (min-width:768px){
	.l-cover {
		display: none !important;
	}
}

@media screen and (max-width:767px){

	.l-pageTop {
		width: 6.4rem;
		bottom: 3rem;
		right: 4%;
	}
}


/**********************************

 l-humberger

***********************************/
@media screen and (max-width:767px){

	.l-humberger {
		width: 11rem;
		height: 11rem;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 25;
	}

	.l-humberger a {
		display: block;
		width: 11rem;
		height: 11rem;
		overflow: visible;
		transition: background 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.l-humberger a.is-active {
	}

	.menu-trigger,
	.menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-trigger {
		position: relative;
		width: 11rem;
		height: 11rem;
	}
	.menu-trigger span {
		position: absolute;
		left: 3.2rem;
		width: 100%;
		height: .4rem;
		background-color: #000000;
	}
	.menu-trigger.is-active span {
		background-color: #fff;
	}
	.menu-trigger span:nth-of-type(1) {
		width: 4.6rem;
		top: 3.6rem;
	}
	.menu-trigger span:nth-of-type(2) {
		width: 2.6rem;
		top: 5.3rem;
	}
	.menu-trigger span:nth-of-type(3) {
		width: 3.8rem;
		bottom: 3.6rem;
	}

	.menu-trigger.is-active span:nth-of-type(1) {
		width: 4.6rem;
		-webkit-transform: translateY(1.7rem) rotate(-45deg);
		transform: translateY(1.7rem) rotate(-45deg);
	}
	.menu-trigger.is-active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger.is-active span:nth-of-type(3) {
		width: 4.6rem;
		-webkit-transform: translateY(-1.7rem) rotate(45deg);
		transform: translateY(-1.7rem) rotate(45deg);
	}
}


/**********************************

 l-drawerMenu

***********************************/
@media screen and (max-width:767px){

	.l-drawerMenu {
		display: block;
		width: 65rem;
		height: 100dvh;
		padding: 0 3rem;
		background-color: rgba(242,105,60,.95);
		/*opacity: 0;*/
		position: fixed;
		top: 0;
		right: 0;
		z-index: 20;
		transform: translateX(105%);
		-webkit-transform: translateX(105%);
		pointer-events: none;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.l-drawerMenu.is-active {
		/*opacity: 1;*/
		pointer-events: auto;
		transform: none;
		-webkit-transform: none;
	}

	.l-drawerMenu__inner {
		padding-top: 11rem;
		padding-bottom: 6rem;
	}

	.l-drawerMenu__navi {
		font-size: 4.2rem;
		font-weight: bold;
		line-height: 1.8;
		letter-spacing: .12em;
	}

	.l-drawerMenu__navi li {
		margin-top: 5rem;
		text-align: center;
	}

	.l-drawerMenu__navi li:first-child {
		margin-top: -.1em;
	}

	.l-drawerMenu__navi li:last-child {
	}

	.l-drawerMenu__navi li a {
		color: #fff;
		text-decoration: none;
	}

	.l-drawerMenu__register {
		margin-top: 10rem;
		font-size: 4.2rem;
		font-weight: 900;
		letter-spacing: .07em;
		text-align: center;
	}

	.l-drawerMenu__register a {
		display: inline-block;
		padding: 2rem 6rem;
		color: #fff;
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#697aff+0,465dff+100 */
		background: linear-gradient(to bottom,  rgba(105,122,255,1) 0%,rgba(70,93,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		border-radius: 20rem;
		box-shadow: 0 .7rem 0 rgba(0,0,0,.9);
		position: relative;
		z-index: 1;
	}

	@media (hover: hover) {

		.l-drawerMenu__register a {
			transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
		}

		.l-drawerMenu__register a:hover {
			transform: translateY(.7rem);
			box-shadow: 0 0 0 rgba(0,0,0,.9);
			filter: brightness(1.1);
		}
	}

	.l-drawerMenu__register a:before {
		content: "";
		display: block;
		width: 11rem;
		height: 11rem;
		background: url(../images/drawer_balloon.png) no-repeat center / contain;
		position: absolute;
		top: -5rem;
		right: -6rem;
		z-index: 1;
	}

	.l-drawerMenu__register a .icon {
		padding-left: 5rem;
		position: relative;
		z-index: 1;
	}

	.l-drawerMenu__register a .icon:before {
		content: "";
		display: block;
		width: 3.7rem;
		height: 2.7rem;
		background: url(../images/icon_mail01.png) no-repeat center / contain;
		position: absolute;
		top: 50%;
		left: 0;
		z-index: 1;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.l-drawerMenu__login {
		margin-top: 8rem;
		color: #fff;
		font-size: 3.2rem;
		font-weight: bold;
		text-align: center;
		letter-spacing: .07em;
	}

	.l-drawerMenu__login a {
		color: #ffff00;
	}
}


/**********************************

 l-header

***********************************/
.l-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
	height: 8.7rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.l-header__logo {
	width: 16.4rem;
	margin-bottom: .3rem;
}

.l-header__btn-area {
	display: flex;
	align-items: flex-end;
	gap: 0 2rem;
}

.l-header__register {

}

.l-header__register a {
	display: block;
	padding: 1.2rem 1.8rem .6rem;
	color: #fff;
	background: #6a7bff;
	border: .2rem solid #6a7bff;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

.l-header__register a .balloon {
	display: block;
	padding: .2rem 1.2rem;
	color: #593f2c;
	font-size: 1.2rem;
	font-weight: bold;
	white-space: nowrap;
	background: #ffdf00;
	border-radius: .7rem;
	position: absolute;
	top: -1.6rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-header__register a .icon {
	padding-left: 3rem;
	font-size: 1.7rem;
	font-weight: bold;
	position: relative;
	z-index: 1;
}

.l-header__register a .icon:before {
	content: "";
	display: block;
	width: 2rem;
	height: 1.4rem;
	background: url(../images/icon_mail01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-header__login {
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: .07em;
}

.l-header__login a {
	display: block;
	padding: .7rem 1.8rem;
	color: #6a7bff;
	background: #fff;
	border: .2rem solid #6a7bff;
	border-radius: 1.5rem;
}

.l-header__login a .icon {
	padding-left: 3rem;
	position: relative;
	z-index: 1;
}

.l-header__login a .icon:before {
	content: "";
	display: block;
	width: 2.2rem;
	height: 2.2rem;
	background: url(../images/icon_login01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width:767px){
	.l-header {
		display: flex;
		justify-content: center;
		align-items: flex-end;
		height: 11rem;
	}

	.l-header__logo {
		width: 19.8rem;
		margin-bottom: 2.1rem;
	}

	.l-header__btn-area {
		display: none;
	}
}

/**********************************

 l-footer

***********************************/
.l-footer {

}

.l-footer__inner {
	padding: 7rem 0;
}

.l-footer__logo {
	width: 16.4rem;
	margin: 0 auto;
}

.l-footer__navi {
	display: flex;
	justify-content: center;
	gap: 0 6rem;
	margin-top: 5rem;
	font-size: 1.4rem;
	font-weight: bold;
}

.l-footer__navi ul {
	letter-spacing: .07em;
}

.l-footer__navi ul li {
	margin-top: 2.5rem;
}

.l-footer__navi ul li:first-child {
	margin-top: 0;
}

.l-footer__copy {
	margin-top: 6rem;
	font-size: 1.2rem;
	font-weight: bold;
	color: #bbbbbb;
	text-align: center;
	line-height: 1.6;
	letter-spacing: .07em;
}

@media screen and (max-width:767px){

	.l-footer__inner {
		padding: 7rem 0;
	}

	.l-footer__logo {
		width: 19.8rem;
	}

	.l-footer__navi {
		display: block;
		margin-top: 5rem;
		font-size: 2.4rem;
	}

	.l-footer__navi ul {
		margin-top: 4.5rem;
	}

	.l-footer__navi ul:first-child {
		margin-top: 0;
	}

	.l-footer__navi ul li {
		margin-top: 4.5rem;
		text-align: center;
	}

	.l-footer__copy {
		margin-top: 7rem;
		font-size: 1.8rem;
	}
}

/**********************************

 l-modal-register

***********************************/
.l-modal-register {
	display: none;
	width: 100%;
	height: 100dvh;
	padding: 4rem 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.l-modal-register__cover {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.l-modal-register__wrap {
	width: 60rem;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);

}

.l-modal-register__close {
	display: inline-block;
	padding-top: 4rem;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.l-modal-register__close:before {
	content: "";
	display: block;
	width: 2.8rem;
	height: 2.8rem;
	background: url(../images/icon_close02.png) no-repeat center / contain;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

@media (hover: hover) {

	.l-modal-register__close:before {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.l-modal-register__close:hover:before {
		transform: translateX(-50%) scale(1.4, 1.4);
		-webkit-transform: translateX(-50%) scale(1.4, 1.4);
	}
}

.l-modal-register__close p {
	color: #fff;
	font-size: 2.089rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.l-modal-register__content {
	width: 100%;
	max-height: calc(100dvh - 18rem);
	padding: 5.5rem 4rem 5rem;
	margin-top: 4rem;
	background: #fff;
	border-radius: 3rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.l-modal-register__ttl {
	font-size: 2.507rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.l-modal-register__ttl .block {
	display: inline-block;
	padding: 0 4.5rem;
	position: relative;
	z-index: 1;
}

.l-modal-register__ttl .block:before {
	content: "";
	display: block;
	width: 2.8rem;
	height: 7.8rem;
	background: url(../images/modal_register_ttl_line01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-modal-register__ttl .block:after {
	content: "";
	display: block;
	width: 2.8rem;
	height: 7.8rem;
	background: url(../images/modal_register_ttl_line02.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-modal-register__form {
	margin-top: 3.5rem;
}

.l-modal-register__form-entry {
	position: relative;
	z-index: 1;
}

.l-modal-register__form-entry:before {
	content: "";
	display: block;
	width: 3.1rem;
	height: 2.3rem;
	background: url(../images/icon_mail02.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 2.4rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	pointer-events: none;
}

.l-modal-register__form-entry:after {
	content: "";
	display: block;
	width: .2rem;
	height: 2.2rem;
	background: #dddddd;
	position: absolute;
	top: 50%;
	left: 6.5rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	pointer-events: none;
}

.l-modal-register__form-entry input {
	width: 100%;
	height: 6.2rem;
	padding: 0 1.5rem 0 7.5rem;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: .07em;
	background: #fff;
	border: .2rem solid #dddddd;
	border-radius: 2rem;
}

.l-modal-register__form-submit {
	display: block;
	width: 100%;
	padding: 2rem 1.5rem;
	margin-top: 4rem;
	color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: .07em;
	border-radius: 20rem;
	background: #6a7bff;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-modal-register__or {
	margin-top: 3.5rem;
}

.l-modal-register__or-ttl {
	font-size: 2.089rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.l-modal-register__or-ttl .block {
	display: inline-block;
	padding: 0 .75em;
	position: relative;
	z-index: 1;
}

.l-modal-register__or-ttl .block:before {
	content: "";
	display: block;
	width: 11.5rem;
	height: .1rem;
	background: #999999;
	position: absolute;
	top: 50%;
	right: 100%;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-modal-register__or-ttl .block:after {
	content: "";
	display: block;
	width: 11.5rem;
	height: .1rem;
	background: #999999;
	position: absolute;
	top: 50%;
	left: 100%;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-modal-register__or-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 1rem;
	width: 100%;
	padding: 1rem 1.5rem;
	margin-top: 4rem;
	color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: .07em;
	border-radius: 2rem;
	background: #fff;
	border: .2rem solid #dddddd;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.l-modal-register__or-btn svg {
	display: block;
	width: 2.9rem;
	height: 2.9rem;
}

.l-modal-register__or-btn .txt01 {
	display: block;
	color: #6a7aff;
}

.l-modal-register__or-other {
	margin-top: 3.5rem;
	color: #6a7aff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.l-modal-register__or-other a {
	color: #6a7aff;
}

.l-modal-register__terms {
	margin-top: 3.5rem;
}

.l-modal-register__terms-txt01 {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
}

.l-modal-register__terms-txt02 {
	margin-top: 1.5rem;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
}

.l-modal-register__terms-txt02 a {
	color: #6a7aff;
}

@media screen and (max-width:767px){

	.l-modal-register {
		padding: 5rem 0;
	}

	.l-modal-register__close {
		padding-top: 7rem;
	}

	.l-modal-register__close:before {
		width: 5rem;
		height: 5rem;
	}

	.l-modal-register__close p {
		font-size: 3.133rem;
	}

	.l-modal-register__content {
		max-height: calc(100dvh - 24rem);
		padding: 5rem 4rem 6rem;
		margin-top: 5rem;
		border-radius: 3rem 3rem 0 0;
	}

	.l-modal-register__ttl {
		font-size: 2.924rem;
	}

	.l-modal-register__ttl .block {
		padding: 0 5rem;
	}

	.l-modal-register__form {
		margin-top: 5rem;
	}

	.l-modal-register__form-entry:before {
		width: 3.7rem;
		height: 2.7rem;
		left: 1.8rem;
	}

	.l-modal-register__form-entry:after {
		width: .2rem;
		height: 2.7rem;
		left: 7rem;
	}

	.l-modal-register__form-entry input {
		height: 8.2rem;
		padding: 0 1.5rem 0 8rem;
		font-size: 3.2rem;
		border: .2rem solid #dddddd;
		border-radius: 2rem;
	}

	.l-modal-register__form-submit {
		padding: 2.4rem 1.5rem;
		margin-top: 5rem;
		font-size: 3.6rem;
	}

	.l-modal-register__or {
		margin-top: 3.5rem;
	}

	.l-modal-register__or-ttl {
		font-size: 2.924rem;
	}

	.l-modal-register__or-btn {
		gap: 0 1rem;
		padding: 1.5rem 1.5rem;
		margin-top: 3rem;
		font-size: 3.2rem;
		border-radius: 2rem;
		border: .2rem solid #dddddd;
	}

	.l-modal-register__or-btn svg {
		width: 3.6rem;
		height: 3.6rem;
	}

	.l-modal-register__or-other {
		margin-top: 5rem;
		font-size: 2.6rem;
	}

	.l-modal-register__terms {
		margin-top: 3.5rem;
	}

	.l-modal-register__terms-txt01 {
		font-size: 2.2rem;
	}

	.l-modal-register__terms-txt02 {
		margin-top: 3rem;
		font-size: 2.2rem;
	}

}


/**********************************

 c-title01

***********************************/
.c-title01 {
	margin-top: -.25em;
	font-style: italic;
	font-size: 5.4rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.6;
	letter-spacing: .09em;
}

.c-title01 .large {
	font-size: 5.8rem;
}

@media screen and (max-width:767px){

}

/**********************************

 c-title-sub01

***********************************/
.c-title-sub01 {
	margin-top: -.25em;
	margin-bottom: 2.5rem;
	font-style: italic;
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.6;
	letter-spacing: .09em;
}

.c-title-sub01 .lightning {
	display: inline-block;
	padding: 0 5.5rem;
	position: relative;
	z-index: 1;
}

.c-title-sub01 .lightning:before {
	content: "";
	display: block;
	width: 3.2rem;
	height: 6.1rem;
	background: url(../images/reason_ttl_bg01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-title-sub01 .lightning:after {
	content: "";
	display: block;
	width: 3.2rem;
	height: 6.1rem;
	background: url(../images/reason_ttl_bg01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width:767px){

}

/**********************************

 c-sub-hero

***********************************/
.c-sub-hero {
	background-color: #d1ff03;
}

.c-sub-hero__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30rem;
}

.c-sub-hero__inner__ttl {
	color: #000;
	font-size: 3.6rem;
	font-weight: bold;
	letter-spacing: .15em;
	line-height: 1.5;
	text-align: center;
}

@media screen and (max-width:767px){

	.c-sub-hero__inner {
		height: 30rem;
	}

	.c-sub-hero__inner__ttl {
		font-size: 3.6rem;
	}
}

/**********************************

 c-btn01

***********************************/
a.c-btn01 {
	display: block;
	width: 100%;
	padding: 2rem 1.5rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: var(--text-letter-spacing-base);
	border-radius: 100px;
	box-shadow:0 .5rem 0 0 #982e0a;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f97c31+0,f15925+100 */
	background: linear-gradient(to bottom,  rgba(249,124,49,1) 0%,rgba(241,89,37,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

@media (hover: hover) {

	a.c-btn01 {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	a.c-btn01:hover {
		transform: translateY(.5rem);
		box-shadow: 0 0 0 0 #982e0a;
		filter: brightness(1.1);
	}
}

@media screen and (max-width:767px){
	a.c-btn01 {
		padding: 2.4rem 3rem;
		font-size: 3.2rem;
		box-shadow: 0 .6rem 0 0 #982e0a;
	}
}

/**********************************

 c-form

***********************************/
.c-form {
}

.c-form:before {
}

.c-form__content {
}

.c-form__content dl {
	display: table;
	width: 100%;
	padding: 3rem 0;
	border-bottom: 1px solid #dddddd;
}

.c-form__content dl dt {
	display: table-cell;
	width: 26rem;
	padding-right: 2.5rem;
	vertical-align: middle;
	border-right: 1px solid #dddddd;
}

.c-form__content dl dt .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	line-height: 1.5;
}

.c-form__content dl dt .inner .name {
	font-size: 1.8rem;
	font-weight: bold;
}

.c-form__content dl dt .inner .require,
.c-form__content dl dt .inner .any {
	padding: .2rem .5rem;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: .4rem;
}

.c-form__content dl dt .inner .require {
	background-color: #ff3f00;
}

.c-form__content dl dt .inner .any {
	background-color: #0a4399;
}

.c-form__content dl dd {
	display: table-cell;
	padding-left: 2.5rem;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	vertical-align: middle;
	position: relative;
}

.c-form__content dl dd .name-box {
	display: flex;
	justify-content: space-between;
}

.c-form__content dl dd .name-box__block {
	display: flex;
	align-items: center;
	width: calc(50% - 1rem);
}

.c-form__content dl dd .name-box__block p {
	margin-right: .5em;
}

.c-form__content dl dd .name-box__block .entry {
	flex: 1;
}

.c-form__content dl dd .company {
	background: transparent;
}

.c-form__content dl dd .wfull {
	width: 100%;
}

.c-form__content dl dd .list {
	margin: .25em -.5em;
}

.c-form__content dl dd .list li {
	display: inline-block;
	margin: .25em .5em;
}

.c-form__privacy {
	margin-top: 5rem;
}

.c-form__privacy-content {
	padding: 2rem 0 2rem 2.9rem;
	border: 1px solid #dddddd;
}

.c-form__privacy-content-scroll {
	height: 15rem;
	padding-right: 2.9rem;
	overflow-y: scroll;
}

.c-form__privacy-content-scroll section {
	margin-bottom: 3rem;
}

.c-form__privacy-content-scroll section:last-child {
	margin-bottom: 0;
}

.c-form__privacy-content-scroll .ttl {
	margin-bottom: 0;
	font-size: 1.8rem;
}

.c-form__privacy-content-scroll p {
	font-size: 1.6rem;
}

.c-form__privacy-txt01 {
	margin-top: 3.5rem;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}

.c-form__privacy input {
	margin-right: .5em;
}

.c-form__submit {
	width: 37rem;
	max-width: 100%;
	margin: 5rem auto 0;
}

.c-form__submit button,
.c-form__submit input,
.c-form__confirmBtn__btn .submit {
	display: block;
	width: 100%;
	padding: 2.2rem 1.5rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: .07em;
	border-radius: 100px;
	box-shadow:0 .5rem 0 0 #982e0a;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f97c31+0,f15925+100 */
	background: linear-gradient(to bottom,  rgba(249,124,49,1) 0%,rgba(241,89,37,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*.c-form__submit button:disabled,*/
/*.c-form__submit input:disabled,*/
/*.c-form__confirmBtn__btn .submit:disabled {*/
/*opacity: 1;*/
/*!* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#666666+0,777777+100 *!*/
/*background: rgb(102,102,102); !* Old browsers *!*/
/*background: -moz-linear-gradient(top,  rgba(102,102,102,1) 0%, rgba(119,119,119,1) 100%); !* FF3.6-15 *!*/
/*background: -webkit-linear-gradient(top,  rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%); !* Chrome10-25,Safari5.1-6 *!*/
/*background: linear-gradient(to bottom,  rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%); !* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ *!*/
/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666666', endColorstr='#777777',GradientType=0 ); !* IE6-9 *!*/
/*}*/

.c-form__confirmBtn {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}

.c-form__confirmBtn__btn {
	width: 36rem;
}

.c-form__confirmBtn__btn:first-child {
	margin-right: 3rem;
}

.c-form__confirmBtn__btn .back {
	display: block;
	width: 100%;
	padding: 2.2rem 1.5rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: var(--text-letter-spacing-base);
	border-radius: 100px;
	box-shadow:0 .5rem 0 0 #333333;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#666666+0,777777+100 */
	background: rgb(102,102,102); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(102,102,102,1) 0%, rgba(119,119,119,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666666', endColorstr='#777777',GradientType=0 ); /* IE6-9 */
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


@media (hover: hover) {

	.c-form__submit button,
	.c-form__submit input,
	.c-form__confirmBtn__btn .submit {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-form__submit button:hover,
	.c-form__submit input:hover,
	.c-form__confirmBtn__btn .submit:hover {
		transform: translateY(.5rem);
		box-shadow: 0 0 0 0 #982e0a;
		filter: brightness(1.1);
	}
}

@media screen and (max-width:767px){
	.c-form {
	}

	.c-form__content {
	}

	.c-form__content dl {
		display: block;
		width: auto;
		padding: 3rem 0 4rem;
	}

	.c-form__content dl dt {
		display: block;
		width: auto;
		padding: 0;
		margin-bottom: 3rem;
		border-right: none;
	}

	.c-form__content dl dt .inner {
		display: block;
		width: auto;
		position: relative;
	}

	.c-form__content dl dt .inner .name {
		font-size: 2.8rem;
		text-align: center;
	}

	.c-form__content dl dt .inner .require,
	.c-form__content dl dt .inner .any {
		padding: .6rem 1rem;
		font-size: 1.8rem;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.c-form__content dl dd {
		display: block;
		padding: 0;
		font-size: 2.8rem;
	}

	.c-form__content dl dd .name-box {
		display: block;
	}

	.c-form__content dl dd .name-box__block {
		display: flex;
		align-items: center;
		width: auto;
		margin-bottom: 3rem;
	}

	.c-form__content dl dd .name-box__block:last-child {
		margin-bottom: 0;
	}

	.c-form__content dl dd .name-box__block p {
		margin-right: .5em;
	}

	.c-form__content dl dd .name-box__block .entry {
		flex: 1;
	}

	.c-form__content dl dd .list {
		margin: 0;
	}

	.c-form__content dl dd .list li {
		display: block;
		margin: 0 0 .5em 0;
	}

	.c-form__content dl dd .list li:last-child {
		margin-bottom: 0;
	}

	.c-form__privacy {
		margin-top: 4rem;
	}

	.c-form__privacy-content {
		padding: 2.4rem 0 2.4rem 3rem;
		margin-bottom: 3.6rem;
		border: .2rem solid #dddddd;
	}

	.c-form__privacy-content-scroll {
		height: 15rem;
		padding-right: 3rem;
		overflow-y: scroll;
	}

	.c-form__privacy-content-scroll section {
		margin-bottom: 3rem;
	}

	.c-form__privacy-content-scroll section:last-child {
		margin-bottom: 0;
	}

	.c-form__privacy-content-scroll .ttl {
		margin-bottom: 0;
		font-size: 2.4rem;
	}

	.c-form__privacy-content-scroll p {
		font-size: 2.4rem;
	}

	.c-form__privacy-txt01 {
		margin-top: 4rem;
		font-size: 2.8rem;
		font-weight: bold;
		text-align: center;
	}

	.c-form__privacy input {
		margin-right: .5em;
	}

	.c-form__submit {
		width: 48rem;
		margin-top: 4rem;
	}

	.c-form__submit button,
	.c-form__submit input,
	.c-form__confirmBtn__btn .submit {
		padding: 2.8rem 2rem;
		font-size: 3.2rem;
		box-shadow:0 .6rem 0 0 #982e0a;
	}

	.c-form__confirmBtn {
		justify-content: space-between;
	}

	.c-form__confirmBtn__btn {
		width: 47.5%;
		margin-top: 4rem;
	}

	.c-form__confirmBtn__btn:first-child {
		margin-right: 0;
	}

	.c-form__confirmBtn__btn .back {
		padding: 2.8rem 2rem;
		font-size: 3.2rem;
		box-shadow:0 .6rem 0 0 #333333;
	}

}


/**********************************

 c-faq-list

***********************************/
.c-faq-list {
}

.c-faq-list dl {
	margin-bottom: 6rem;
}

.c-faq-list dl:last-child {
	margin-bottom: 0;
}

.c-faq-list dl dt {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 3rem;
}

.c-faq-list dl dt .icon {
	width: 6.8rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 6.8rem;
	background-color: #2b536a;
	border-radius: .5rem;
}

.c-faq-list dl dt .ttl {
	flex: 1;
	min-height: 6.8rem;
	padding: 1.4rem 2.9rem;
	margin-left: 1.2rem;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.5;
	border: 1px solid #e7e7eb;
	background-color: #fff;
	border-radius: .5rem;
}

.c-faq-list dl dd {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.c-faq-list dl dd .icon {
	width: 6.8rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 6.8rem;
	background-color: #4481a5;
	border-radius: .5rem;
}

.c-faq-list dl dd .cont {
	flex: 1;
	min-height: 6.8rem;
	padding: 1.9rem 2.9rem;
	margin-left: 1.2rem;
	font-size: 1.6rem;
	line-height: 1.5;
	border: 1px solid #e7e7eb;
	background-color: #fff;
	border-radius: .5rem;
}

.c-faq-list dl dd .cont p {
}

@media screen and (max-width:767px){

	.c-faq-list {
	}

	.c-faq-list dl {
		margin-bottom: 6rem;
	}

	.c-faq-list dl dt {
		margin-bottom: 4rem;
	}

	.c-faq-list dl dt .icon {
		width: 8rem;
		font-size: 3.2rem;
		line-height: 8rem;
		border-radius: .8rem;
	}

	.c-faq-list dl dt .ttl {
		flex: 1;
		min-height: 8rem;
		padding: 1.4rem 2.4rem;
		margin-left: 2rem;
		font-size: 3.2rem;
		border-radius: .8rem;
	}

	.c-faq-list dl dd .icon {
		width: 8rem;
		font-size: 3.2rem;
		line-height: 8rem;
		border-radius: .8rem;
	}

	.c-faq-list dl dd .cont {
		min-height: 8rem;
		padding: 1.4rem 2.4rem;
		margin-left: 2rem;
		border-radius: .8rem;
	}

	.c-faq-list dl dd .cont p {
	}

}


/**********************************

 c-faq-list-acc

***********************************/
.c-faq-list-acc {
	width: 90rem;
	max-width: 100%;
	margin: 4rem auto 0;
}

.c-faq-list-acc dl {
	margin-top: 3rem;
	background: #fff;
	border-radius: 2rem;
}

.c-faq-list-acc dl:first-child {
	margin-top: 0;
}

.c-faq-list-acc dl dt {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 2.3rem;
	padding-bottom: 2.3rem;
	padding-left: 3rem;
	cursor: pointer;
}

.c-faq-list-acc dl dt .icon {
	color: var(--text-color-primary);
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: .07em;
}

.c-faq-list-acc dl dt .ttl {
	flex: 1;
	padding-right: 9rem;
	margin-left: 2rem;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: .07em;
	position: relative;
	z-index: 1;
}

.c-faq-list-acc dl dt .ttl:before {
	content: "";
	display: block;
	width: 1.8rem;
	height: .2rem;
	margin: 1.9rem 3rem 0 0;
	background-color: var(--text-color-primary);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.c-faq-list-acc dl dt.is-active .ttl:before {
}

.c-faq-list-acc dl dt .ttl:after {
	content: "";
	display: block;
	width: .2rem;
	height: 1.8rem;
	margin: 1.1rem 3.8rem 0 0;
	background-color: var(--text-color-primary);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-faq-list-acc dl dt.is-active .ttl:after {
	opacity: 0;
}

.c-faq-list-acc dl dd {
	display: none;
}

.c-faq-list-acc dl dd .inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 2.3rem;
	padding-left: 3rem;
	padding-right: 9rem;
	position: relative;
	z-index: 1;
}

.c-faq-list-acc dl dd .icon {
	color: #999999;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: .07em;
}

.c-faq-list-acc dl dd .cont {
	flex: 1;
	margin-left: 2rem;
	font-size: 1.8rem;
	line-height: 1.8;
	letter-spacing: .07em;
}

.c-faq-list-acc dl dd .cont p {
}

@media screen and (max-width:767px){

	.c-faq-list-acc {
		width: 60rem;
		margin: 4rem auto 0;
	}

	.c-faq-list-acc dl {
		margin-top: 4rem;
	}

	.c-faq-list-acc dl dt {
		padding-top: 2rem;
		padding-bottom: 2rem;
		padding-left: 2rem;
	}

	.c-faq-list-acc dl dt .icon {
		font-size: 3.2rem;
		line-height: 1.6;
	}

	.c-faq-list-acc dl dt .ttl {
		padding-right: 8.5rem;
		margin-left: 1rem;
		font-size: 2.8rem;
	}

	.c-faq-list-acc dl dt .ttl:before {
		width: 2.4rem;
		height: .4rem;
		margin: 2.2rem 3rem 0 0;
	}

	.c-faq-list-acc dl dt.is-active .ttl:before {
	}

	.c-faq-list-acc dl dt .ttl:after {
		width: .4rem;
		height: 2.4rem;
		margin: 1.2rem 4rem 0 0;
	}

	.c-faq-list-acc dl dd .inner {
		padding-bottom: 2rem;
		padding-left: 2rem;
		padding-right: 4rem;
	}

	.c-faq-list-acc dl dd .icon {
		font-size: 3.2rem;
		line-height: 1.6;
	}

	.c-faq-list-acc dl dd .cont {
		margin-left: 1rem;
		font-size: 2.8rem;
	}

	.c-faq-list-acc dl dd .cont p {
	}

}


/**********************************

 c-table-style01

***********************************/
.c-table-style01 {

}

.c-table-style01 dl {
	display: flex;
	padding: 4rem 0;
	font-size: 1.8rem;
	border-bottom: .1rem solid #dddddd;
}

.c-table-style01 dl:first-child {
	border-top: .1rem solid #dddddd;
}

.c-table-style01 dl.is-top-line-none {
	border-top: none;
}

.c-table-style01 dl dt {
	display: flex;
	align-items: center;
	width: 29rem;
	padding-right: 4rem;
	font-weight: bold;
	border-right: .1rem solid #dddddd;
}

.c-table-style01 dl dd {
	flex: 1;
	padding-left: 4rem;
}

@media screen and (max-width:767px){

	.c-table-style01 dl {
		display: block;
		padding: 4rem 0;
		font-size: 2.8rem;
	}

	.c-table-style01 dl dt {
		width: auto;
		padding-right: 0;
		margin-bottom: .5em;
		border-right: none;
	}

	.c-table-style01 dl dd {
		padding-left: 0;
	}
}

/**********************************

 c-2column-list

***********************************/
.c-2column-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 7rem;
}

.c-2column-list-sec {
	width: 47rem;
	padding: 3rem 3rem 2.5rem;
	margin-top: 6.3rem;
	background: #fff;
	box-shadow: 0 .3rem 0 rgba(0,0,0,0.1);
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

.c-2column-list-sec:nth-child(1),
.c-2column-list-sec:nth-child(2) {
	margin-top: 0;
}

.c-2column-list-sec .num {
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	background: #1f6d50;
	border-radius: .8rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-2column-list-sec .pic {
	text-align: center;
}

.c-2column-list-sec .ttl {
	margin-top: 1.5rem;
	color: #1f6c50;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.c-2column-list-sec .txt01 {
	margin-top: 1rem;
}

@media screen and (max-width:767px){

	.c-2column-list {
		display: block;
		padding: 0 5.88235294%;
		margin-top: 8rem;
	}

	.c-2column-list-sec {
		width: auto;
		padding: 5rem 3rem 3rem;
		margin-top: 7.8rem;
		box-shadow: 0 .3rem 0 rgba(0,0,0,0.1);
		border-radius: 2rem;
	}

	.c-2column-list-sec:nth-child(2) {
		margin-top: 7.8rem;
	}

	.c-2column-list-sec .num {
		width: 5rem;
		height: 5rem;
		line-height: 5rem;
		font-size: 2.4rem;
		border-radius: 1.2rem;
	}

	.c-2column-list-sec .pic {
		text-align: center;
	}

	.c-2column-list-sec .pic img {
		width: 100%;
		max-width: none;
	}

	.c-2column-list-sec .ttl {
		margin-top: 1.6rem;
		font-size: 3.2rem;
	}

	.c-2column-list-sec .txt01 {
		margin-top: 1.2rem;
	}
}




/**********************************

 c-3column-list

***********************************/
.c-3column-list {
	display: flex;
	justify-content: space-between;
	margin-top: 7rem;
}

.c-3column-list-sec {
	width: 30rem;
	padding: 3.7rem 3rem 2.5rem;
	background: #fff;
	box-shadow: 0 .3rem 0 rgba(0,0,0,0.05);
	border-radius: 1rem;
	position: relative;
	z-index: 1;
}

.c-3column-list-sec .num {
	width: 3.6rem;
	height: 3.6rem;
	line-height: 3.6rem;
	font-size: 1.5rem;
	font-weight: 900;
	text-align: center;
	background: #ffdf00;
	border-radius: .8rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-3column-list-sec .pic {
	text-align: center;
}

.c-3column-list-sec .ttl {
	margin-top: 1.5rem;
	color: #0e6eb8;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.c-3column-list-sec .txt01 {
	padding-top: 1.5rem;
	margin-top: 1.5rem;
	border-top: 1px solid #dddddd;
}

@media screen and (max-width:767px){

	.c-3column-list {
		display: block;
		margin-top: 8rem;
	}

	.c-3column-list-sec {
		width: auto;
		padding: 5rem 3rem 4rem;
		margin-bottom: 9.2rem;
		box-shadow: 0 .3rem 0 rgba(0,0,0,0.05);
		border-radius: 2rem;
	}

	.c-3column-list-sec:last-child {
		margin-bottom: 0;
	}

	.c-3column-list-sec .num {
		width: 5.6rem;
		height: 5.6rem;
		line-height: 5.6rem;
		font-size: 2.8rem;
		border-radius: 1.2rem;
	}

	.c-3column-list-sec .pic {
		text-align: center;
	}

	.c-3column-list-sec .ttl {
		margin-top: 2rem;
		font-size: 3.2rem;
	}

	.c-3column-list-sec .txt01 {
		padding-top: 2rem;
		margin-top: 2rem;
	}
}



/**********************************

 c-completeSec

***********************************/
.c-completeSec {

}

.c-completeSec__inner {
	padding: 8rem 0;
}

.c-completeSec__inner .intro {
	margin-bottom: 6rem;
	font-size: 1.8rem;
	font-weight: bold;
}

.c-completeSec__inner .back {
	max-width: 38rem;
	margin: 0 auto;
}


@media screen and (max-width:767px){

	.c-completeSec__inner {
		padding: 4rem 0;
	}

	.c-completeSec__inner .intro {
		margin-bottom: 5rem;
		font-size: 2.8rem;
	}

	.c-completeSec__inner .back {
		max-width: 38rem;
	}
}



/**********************************

 c-bg-stripe01

***********************************/
.c-bg-stripe01 {
	background: url(../images/bg_stripe01.png) repeat center / 3rem 3rem;
}

@media screen and (max-width:767px){

}


/**********************************

 c-hero

***********************************/
.c-hero {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5ebe4+0,faf4f1+100 */
	background: linear-gradient(to bottom,  rgba(245,235,228,1) 0%,rgba(250,244,241,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 0 0 15rem 15rem;
}

.c-hero__inner {
	width: 142rem;
	min-height: 92rem;
	padding-top: 10rem;
	padding-bottom: 2.5rem;
	position: relative;
	z-index: 1;
}

.c-hero__inner:before {
	content: "";
	display: block;
	width: 71.6rem;
	height: 82.1rem;
	background: url(../images/hero_pic01_pc.png) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	right: -6.6rem;
	z-index: 1;
}

.c-hero__txt01 {
	padding-left: 5rem;
	margin-bottom: 3.5rem;
	color: #ffffff;
	font-style: italic;
	font-size: 2.2rem;
	font-weight: 900;
}

.c-hero__txt01 .block {
	display: inline-block;
	padding: .7rem 2rem;
	background: #f15925;
	border-radius: 1.5rem;
}

.c-hero__ttl {
	margin-top: -.25em;
	font-style: italic;
	font-size: 11.8rem;
	font-weight: 900;
	line-height: 1.35;
}

.c-hero__ttl-txt01 {
	display: block;
	margin-left: .05em;
}

.c-hero__ttl-txt02 {
	display: block;
	margin-left: -.25em;
}

.c-hero__desc {
	padding-left: .2em;
	margin-top: 4.5rem;
	font-style: italic;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 2.2;
}

.c-hero__register {
	margin-top: 5rem;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.6;
}

.c-hero__register a {
	display: inline-block;
	padding: 2rem 4rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6879ff+0,475eff+100 */
	background: linear-gradient(to bottom,  rgba(104,121,255,1) 0%,rgba(71,94,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .5rem 0 #001395;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.c-hero__register a {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-hero__register a:hover {
		box-shadow: 0 0 0 #001395;
		transform: translateY(.5rem);
		filter: brightness(1.15);
	}
}

.c-hero__register a:before {
	content: "";
	display: block;
	width: 8.6rem;
	height: 8.6rem;
	background: url(../images/hero_balloon_pc.png) no-repeat center / contain;
	position: absolute;
	top: -3.4rem;
	right: -5.6rem;
	z-index: 1;
}

.c-hero__register a .icon {
	padding-left: 3.8rem;
	position: relative;
	z-index: 1;
}

.c-hero__register a .icon:before {
	content: "";
	display: block;
	width: 2.6rem;
	height: 1.9rem;
	background: url(../images/icon_mail01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-hero__feature {
	width: 31.4rem;
	text-align: right;
	position: absolute;
	left: 43.5rem;
	bottom: 3rem;
	z-index: 1;
}

.c-hero__feature-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.c-hero__feature-list li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .8rem 0;
	width: 14rem;
	height: 14rem;
	padding-bottom: .8rem;
	background: url(../images/hero_feature_bg01.png) no-repeat center / contain;
	border-radius: 50%;
	box-shadow: 0 2rem 4rem rgba(0,0,0,.1);
}

.c-hero__feature-list li:first-child {
	margin-left: 8.7rem;
}

.c-hero__feature-list li .num {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .2em;
}

.c-hero__feature-list li .txt01 {
	font-style: italic;
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	text-shadow:  0 .1rem 0 rgba(0,0,0,.3);
}

.c-hero__feature-list li .txt01 .small {
	font-size: 1.2rem;
}

.c-hero__feature-note {
	display: inline-block;
	margin-top: 1.5rem;
	margin-right: -1.5em;
	font-size: 1.2rem;
}

.c-hero__feature-note li {
	text-indent: -1.2em;
	left: 1.2em;
}

@media screen and (max-width:1499px){

	.c-hero__inner {
		width: 94.667vw;
		min-height: 56.867vw;
		padding-bottom: 1.667vw;
	}

	.c-hero__inner:before {
		width: 47.733vw;
		height: 49.6vw;
		right: -4.4vw;
	}

	.c-hero__ttl {
		font-size: 7.867vw;
	}

	.c-hero__desc {
		margin-top: 3vw;
		font-size: 1.467vw;
	}

	.c-hero__register {
		margin-top: 3.333vw;
		font-size: 1.733vw;
	}

	.c-hero__register a {
		padding: 1.333vw 2.667vw;
		box-shadow: 0 0.33333333vw 0 #001395;
	}

	@media (hover: hover) {

		.c-hero__register a:hover {
			transform: translateY(0.33333333vw);
		}
	}

	.c-hero__register a:before {
		width: 5.733vw;
		height: 5.733vw;
		top: -2.267vw;
		right: -3.733vw;
	}

	.c-hero__register a .icon {
		padding-left: 2.533vw;
	}

	.c-hero__register a .icon:before {
		width: 1.733vw;
		height: 1.267vw;
	}

	.c-hero__feature {
		width: 20.933vw;
		left: 29vw;
		bottom: 2vw;
	}

	.c-hero__feature-list li {
		gap: 0.533vw 0;
		width: 9.333vw;
		height: 9.333vw;
		padding-bottom: 0.533vw;
		box-shadow: 0 1.33333333vw 2.66666667vw rgba(0,0,0,.1);
	}

	.c-hero__feature-list li:first-child {
		margin-left: 5.8vw;
	}

	.c-hero__feature-list li .num {
		font-size: 1.2vw;
	}

	.c-hero__feature-list li .txt01 {
		font-size: 1.333vw;
	}

	.c-hero__feature-list li .txt01 .small {
		font-size: 0.8vw;
	}

	.c-hero__feature-note {
		margin-top: 1vw;
		font-size: 0.8vw;
	}

}

@media screen and (max-width:767px){

	.c-hero {
		border-radius: 0 0 15rem 15rem;
	}

	.c-hero__inner {
		display: flex;
		flex-direction: column;
		width: auto;
		min-height: auto;
		padding-top: 14.5rem;
		padding-bottom: 5rem;
	}

	.c-hero__inner:before {
		display: none;
	}

	.c-hero__txt01 {
		order: 1;
		padding-left: 0;
		margin-bottom: 0;
		color: #ffffff;
		font-style: italic;
		font-size: 3.4rem;
		font-weight: 900;
		text-align: center;
	}

	.c-hero__txt01 .block {
		display: inline-block;
		padding: .3rem 2.5rem;
		background: #f15925;
		border-radius: 1.5rem;
	}

	.c-hero__ttl {
		order: 2;
		margin-top: 2rem;
		font-size: 8rem;
		line-height: 1.35;
	}

	.c-hero__ttl-txt01 {
		margin-left: 0;
		text-align: center;
	}

	.c-hero__ttl-txt02 {
		margin-left: 0;
		text-align: center;
	}

	.c-hero__desc {
		order: 4;
		padding-left: 0;
		margin-top: 4rem;
		font-size: 3.2rem;
		line-height: 1.8;
		text-align: center;
	}

	.c-hero__register {
		order: 3;
		margin-top: 47rem;
		font-size: 4.2rem;
		font-weight: 900;
		line-height: 1.6;
		text-align: center;
		position: relative;
		z-index: 1;
	}

	.c-hero__register:before {
		content: "";
		display: block;
		width: 75rem;
		height: 62rem;
		background: url(../images/hero_pic01_sp.png) no-repeat center / contain;
		position: absolute;
		bottom: -7rem;
		left: 50%;
		z-index: -1;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}

	.c-hero__register a {
		padding: 2rem 6rem;
		box-shadow: 0 .7rem 0 #001395;
	}

	@media (hover: hover) {

		.c-hero__register a:hover {
			transform: translateY(.7rem);
		}
	}

	.c-hero__register a:before {
		width: 11rem;
		height: 11rem;
		background: url(../images/hero_balloon_sp.png) no-repeat center / contain;
		top: -5rem;
		right: -6rem;
	}

	.c-hero__register a .icon {
		padding-left: 5rem;
	}

	.c-hero__register a .icon:before {
		width: 3.7rem;
		height: 2.7rem;
	}

	.c-hero__feature {
		order: 5;
		width: auto;
		margin-top: 4rem;
		text-align: center;
		position: static;
	}

	.c-hero__feature-list {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0 3rem;
	}

	.c-hero__feature-list li {
		gap: .2rem 0;
		width: 19rem;
		height: 19rem;
		padding-bottom: .8rem;
		box-shadow: 0 2rem 4rem rgba(0,0,0,.1);
	}

	.c-hero__feature-list li:first-child {
		margin-left: 0;
	}

	.c-hero__feature-list li .num {
		font-size: 2.7rem;
	}

	.c-hero__feature-list li .txt01 {
		font-size: 3rem;
	}

	.c-hero__feature-list li .txt01 .small {
		font-size: 1.8rem;
	}

	.c-hero__feature-note {
		display: inline-block;
		margin-top: 3rem;
		margin-left: 1em;
		margin-right: 0;
		font-size: 1.8rem;
	}
}


/**********************************

 c-reason

***********************************/
.c-reason {
}

.c-reason__inner {
	padding: 6rem 0 8rem;
}

.c-reason__list {
	display: flex;
	justify-content: space-between;
	margin-top: 6.5rem;
}

.c-reason__list-sec {
	width: 36rem;
	padding: 3.5rem 2.8rem 2.8rem;
	background: #fff;
	border: .2rem solid #dddddd;
	border-radius: 3rem;
	position: relative;
	z-index: 1;
}

.c-reason__list-sec .num {
	padding: .1rem 2rem;
	color: #ffff00;
	font-size: 1.88rem;
	font-weight: bold;
	white-space: nowrap;
	background: #f15925;
	border-radius: 20rem;
	position: absolute;
	top: -.1rem;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-reason__list-sec .num span {
	font-size: 2.3rem;
}

.c-reason__list-sec .ttl {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-reason__list-sec .desc {
	margin-top: 1.2rem;
}

.c-reason__list-sec .pic {
	margin-top: 2rem;
}

@media screen and (max-width:767px){

	.c-reason__inner {
		padding: 6rem 0 8rem;
	}

	.c-reason__list {
		display: block;
		width: 60rem;
		margin: 7.5rem auto 0;
	}

	.c-reason__list-sec {
		width: auto;
		padding: 3.8rem 2.8rem 2.8rem;
		margin-top: 7rem;
		border: .3rem solid #dddddd;
		border-radius: 3rem;
	}

	.c-reason__list-sec:first-child {
		margin-top: 0;
	}

	.c-reason__list-sec .num {
		padding: .1rem 3rem;
		font-size: 2.716rem;
		line-height: 1.6;
		top: -.1rem;
	}

	.c-reason__list-sec .num span {
		font-size: 3.4rem;
	}

	.c-reason__list-sec .ttl {
		font-size: 3.76rem;
	}

	.c-reason__list-sec .desc {
		margin-top: 2rem;
	}

	.c-reason__list-sec .pic {
		margin-top: 3rem;
	}
}


/**********************************

 c-trouble

***********************************/
.c-trouble {
	background: #6a7bff;
}

.c-trouble__inner {
	padding: 6rem 0 7rem;
}

.c-trouble__list {
	display: flex;
	justify-content: space-between;
	margin-top: 6rem;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

.c-trouble__list li {
	width: 36rem;
	padding: 3rem 1.5rem 2.5rem;
	text-align: center;
	background: #fff;
	border-radius: 2.5rem;
	position: relative;
	z-index: 1;
}

.c-trouble__list li:before {
	content: "";
	display: block;
	width: 4rem;
	height: 4rem;
	background: #000e71 url(../images/trouble_icon01.png) no-repeat center / 1.9rem 2.1rem;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-trouble__box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 88rem;
	height: 60rem;
	padding-top: 7rem;
	margin: -11.3rem auto 0;
	background: url(../images/trouble_bg01_pc.png) no-repeat center / contain;
}

.c-trouble__box-inner {

}

.c-trouble__box-txt01 {
	color: #fff;
	font-size: 3.76rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-trouble__box-note {
	width: 40rem;
	margin: 2.5rem auto 0;
	color: #fff;
	font-size: 2rem;
}

.c-trouble__box-note li {
	text-indent: -1.1em;
	margin-left: 1.1em;
}

.c-trouble__box-note li .karning {
	margin-right: -.5em;
}

.c-trouble__outro {
	margin-top: 3rem;
	color: #fff;
	font-size: 3.6rem;
	font-weight: 900;
	text-align: center;
	line-height: 2;
}

@media screen and (max-width:767px){

	.c-trouble__inner {
		padding: 6rem 0 6rem;
	}

	.c-trouble__list {
		display: block;
		width: 60rem;
		margin: 7rem auto 0;
		font-size: 3.76rem;
		font-weight: bold;
	}

	.c-trouble__list li {
		width: auto;
		padding: 5rem 1.5rem 3rem;
		margin-top: 7rem;
		border-radius: 3rem;
	}

	.c-trouble__list li:first-child {
		margin-top: 0;
	}

	.c-trouble__list li:before {
		width: 8rem;
		height: 8rem;
		background-size: 3.7rem 4rem;
	}

	.c-trouble__box {
		width: auto;
		height: 63rem;
		padding-top: 6rem;
		margin: -11.3rem -3.5rem 0;
		background: url(../images/trouble_bg01_sp.png) no-repeat center / contain;
	}

	.c-trouble__box-txt01 {
		font-size: 3.76rem;
	}

	.c-trouble__box-note {
		width: 32rem;
		margin: 2rem auto 0;
		font-size: 2rem;
	}

	.c-trouble__box-note li {
		text-indent: -1.1em;
		margin-left: 1.1em;
	}

	.c-trouble__outro {
		margin-top: 2rem;
		font-size: 3.6rem;
	}
}


/**********************************

 c-merit

***********************************/
.c-merit {
}

.c-merit__inner {
	padding: 6rem 0 8rem;
}

.c-merit__desc {
	margin-top: 4rem;
	text-align: center;
}

.c-merit__list {
	width: 100rem;
	max-width: 100%;
	margin: 6rem auto 0;
}

.c-merit__list-sec {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 4rem 3.8rem;
	margin-top: 6.2rem;
	background: #fff;
	border: .2rem solid #dddddd;
	border-radius: 3rem;
	position: relative;
	z-index: 1;
}

.c-merit__list-sec:first-child {
	margin-top: 0;
}

.c-merit__list-sec .num {
	padding: .1rem 2rem;
	color: #ffff00;
	font-size: 1.88rem;
	font-weight: bold;
	white-space: nowrap;
	background: #f15925;
	border-radius: 20rem;
	position: absolute;
	top: -.1rem;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-merit__list-sec .num span {
	font-size: 2.3rem;
}

.c-merit__list-sec .pic {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 29rem;
	height: 12rem;
	margin-right: 3rem;
	background: #fef5f1;
	border-radius: 2.5rem;
}

.c-merit__list-sec .pic img {
	display: block;
	width: 6.4rem;
}

.c-merit__list-sec .content {
	flex: 1;
}

.c-merit__list-sec .content__ttl {
	margin-top: -.2em;
	font-size: 2.507rem;
	font-weight: bold;
	line-height: 1.6;
}

.c-merit__list-sec .content__desc {
	margin-top: .75em;
}

.c-merit__list-sec .compensation {
	width: 100%;
	margin-top: 3rem;
	border: .2rem solid #f15925;
	background: #fef5f1;
	border-radius: 2.5rem;
	overflow: hidden;
}

.c-merit__list-sec .compensation__head {
	padding: .5rem 3rem;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

@media (hover: hover) {

	.c-merit__list-sec .compensation__head {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-merit__list-sec .compensation__head:hover {
		background: #fcded3;
		/*filter: brightness(1.1);*/
	}
}

.c-merit__list-sec .compensation__head:before {
	content: "";
	display: block;
	width: 1.2rem;
	height: .7rem;
	background: url(../images/icon_arr01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 2.8rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: transform 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
	/*transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);*/
}

.c-merit__list-sec .compensation__head.is-active:before {
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
}

.c-merit__list-sec .compensation__head p {
	color: var(--text-color-primary);
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.c-merit__list-sec .compensation__head .open {
	transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-merit__list-sec .compensation__head.is-active .open {
	opacity: 0;
}

.c-merit__list-sec .compensation__head .close {
	opacity: 0;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-merit__list-sec .compensation__head.is-active .close {
	opacity: 1;
}

.c-merit__list-sec .compensation__body {
	display: none;
}

.c-merit__list-sec .compensation__body-inner {
	padding: 0 3rem 3rem;
}

.compensation__body-sec {
	margin-top: 1.5rem;
}

.compensation__body-sec:first-child {
	margin-top: 0;
}

.compensation__body-ttl {
	font-weight: bold;
	text-align: center;
}

.compensation__body-sec-box {
	margin-top: .5rem;
	font-size: 1.6rem;
}

.compensation__body-sec-box *:first-child {
	margin-top: 0;
}

.compensation__body-sec-box p {
	margin-top: .65em;
}

.compensation__body-sec-box ul {
	margin-top: .65em;
}

.compensation__body-sec-box ul li {
	margin-top: .65em;
}

.compensation__body-sec-box ul li:first-child {
	margin-top: 0;
}

@media screen and (max-width:767px){

	.c-merit__inner {
		padding: 6rem 0 8rem;
	}

	.c-merit__desc {
		width: 60rem;
		margin: 3rem auto 0;
		text-align: left;
	}

	.c-merit__list {
		width: 60rem;
		margin: 7.5rem auto 0;
	}

	.c-merit__list-sec {
		display: block;
		padding: 4.6rem 3.5rem;
		margin-top: 7rem;
		border: .3rem solid #dddddd;
		border-radius: 3rem;
	}

	.c-merit__list-sec .num {
		padding: .1rem 3rem;
		font-size: 2.716rem;
		line-height: 1.6;
		top: -.1rem;
	}

	.c-merit__list-sec .num span {
		font-size: 3.4rem;
	}

	.c-merit__list-sec .pic {
		width: auto;
		height: 12rem;
		margin-right: 0;
		border-radius: 3rem;
	}

	.c-merit__list-sec .pic img {
		width: 8rem;
	}

	.c-merit__list-sec .content {
		margin-top: 3rem;
	}

	.c-merit__list-sec .content__ttl {
		margin-top: -.2em;
		font-size: 3.76rem;
		text-align: center;
	}

	.c-merit__list-sec .content__desc {
		margin-top: .5em;
	}

	.c-merit__list-sec .compensation {
		margin-top: 2.5rem;
		border: .3rem solid #f15925;
		border-radius: 4rem;
	}

	.c-merit__list-sec .compensation__head {
		padding: .7rem 3rem;
	}

	.c-merit__list-sec .compensation__head:before {
		width: 2.3rem;
		height: 1.3rem;
		right: 2.7rem;
	}

	.c-merit__list-sec .compensation__head p {
		font-size: 3.2rem;
	}

	.c-merit__list-sec .compensation__body {
		display: none;
	}

	.c-merit__list-sec .compensation__body-inner {
		padding: 2rem 3rem 2.5rem;
	}

	.compensation__body-sec {
		margin-top: 3.5rem;
	}

	.compensation__body-sec:first-child {
		margin-top: 0;
	}

	.compensation__body-ttl {
		font-size: 3.2rem;
	}

	.compensation__body-sec-box {
		margin-top: 2rem;
		font-size: 2.4rem;
	}

	.compensation__body-sec-box *:first-child {
		margin-top: 0;
	}

	.compensation__body-sec-box p {
		margin-top: 1em;
	}

	.compensation__body-sec-box ul {
		margin-top: 1em;
	}

	.compensation__body-sec-box ul li {
		margin-top: 1em;
	}
}


/**********************************

 c-service

***********************************/
.c-service {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fddacc+0,fef0eb+100 */
	background: linear-gradient(to right,  rgba(253,218,204,1) 0%,rgba(254,240,235,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.c-service__inner {
	padding: 4rem 0 6.3rem;
}

.c-service__txt01 {
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.c-service__btn {
	margin-top: 2.5rem;
	font-size: 3.2rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.6;
}

.c-service__btn a {
	display: inline-block;
	padding: 2rem 3.5rem 2rem 5rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#33c170+0,2eb065+100 */
	background: linear-gradient(to bottom,  rgba(51,193,112,1) 0%,rgba(46,176,101,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .7rem 0 #174e2b;
	border-radius: 20rem;
}

@media (hover: hover) {

	.c-service__btn a {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-service__btn a:hover {
		box-shadow: 0 0 0 #174e2b;
		transform: translateY(.7rem);
		filter: brightness(1.15);
	}
}

.c-service__btn a .icon {
	padding-right: 6.4rem;
	position: relative;
	z-index: 1;
}

.c-service__btn a .icon:before {
	content: "";
	display: block;
	width: 4rem;
	height: 4rem;
	background: url(../images/icon_arr02.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: transform 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
	/*transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);*/
}

.c-service__btn.is-active a .icon:before {
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
}

.c-service__wrap {
	display: none;
}

.c-service__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4rem 4rem;
	width: 100rem;
	margin: 5.7rem auto 0;
}

.c-service__list-item {
	width: calc(100%/4 - 3rem);
	flex: 0 1 calc(100%/4 - 3rem);
	position: relative;
	z-index: 1;
}

.c-service__list-item.is-disable {
	pointer-events: none;
}

.c-service__list-item.is-disable:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(241,89,37,.7);
	border-radius: 3rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.c-service__list-item.is-disable:after {
	content: "開発中";
	display: block;
	color: #fff;
	font-size: 2.089rem;
	font-weight: bold;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-service__list-item a {
	display: block;
	padding: 2.8rem 2.8rem 6.4rem;
	background: #fff;
	border: .2rem solid #f15925;
	border-radius: 3rem;
	position: relative;
	z-index: 1;
}

.c-service__list-item a:before {
	content: "";
	display: block;
	width: 2.6rem;
	height: 2.6rem;
	background: url(../images/service_plus01.png) no-repeat center / contain;
	position: absolute;
	bottom: 2.3rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

@media (hover: hover) {

	.c-service__list-item a:before {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-service__list-item a:hover:before {
		transform: translateX(-50%) scale(1.4, 1.4);
		-webkit-transform: translateX(-50%) scale(1.4, 1.4);
	}
}

.c-service__list-item .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 8rem;
	background: #fef5f1;
	border-radius: 2rem;
}

.c-service__list-item .icon img {
	display: block;
	width: 5rem;
}

.c-service__list-item .ttl {
	margin-top: 1.5rem;
	font-size: 2.089rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-service__wrap-close {
	width: 48rem;
	margin: 4rem auto 0;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: .07em;
}

.c-service__wrap-close a {
	display: block;
	padding: .5rem 5rem;
	color: var(--text-color-primary);
	text-align: center;
	background: #fff;
	border: .2rem solid #f15925;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.c-service__wrap-close a {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-service__wrap-close a:hover {
		box-shadow: 0 .3rem .3rem rgba(0,0,0,.15);
		transform: translateY(-.3rem);
		filter: brightness(1.1);
	}
}

.c-service__wrap-close a:before {
	content: "";
	display: block;
	width: 1.2rem;
	height: .7rem;
	background: url(../images/icon_arr01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 2.8rem;
	z-index: 1;
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
	transition: transform 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

@media screen and (max-width:767px){

	.c-service__inner {
		padding: 3rem 0 6rem;
	}

	.c-service__txt01 {
		font-size: 3.2rem;
	}

	.c-service__btn {
		margin-top: 2rem;
		font-size: 4.2rem;
	}

	.c-service__btn a {
		padding: 2.2rem 3rem 2.2rem 5rem;
	}

	.c-service__btn a .icon {
		padding-right: 7.5rem;
	}

	.c-service__btn a .icon:before {
		width: 5rem;
		height: 5rem;
	}

	.c-service__wrap {
		display: none;
	}

	.c-service__list {
		gap: 4rem 4rem;
		width: 60rem;
		margin: 6rem auto 0;
	}

	.c-service__list-item {
		width: calc(100%/2 - 2rem);
		flex: 0 1 calc(100%/2 - 2rem);
		z-index: 1;
	}

	.c-service__list-item.is-disable:after {
		font-size: 2.924rem;
	}

	.c-service__list-item a {
		padding: 2.7rem 2.7rem 9rem;
		border: .3rem solid #f15925;
	}

	.c-service__list-item a:before {
		width: 5rem;
		height: 5rem;
		bottom: 2.7rem;
	}

	.c-service__list-item .icon {
		height: 11rem;
	}

	.c-service__list-item .icon img {
		width: 8.2rem;
	}

	.c-service__list-item .ttl {
		margin-top: 1.5rem;
		font-size: 2.924rem;
	}

	.c-service__wrap-close {
		width: 52rem;
		margin: 4rem auto 0;
		font-size: 3.2rem;
	}

	.c-service__wrap-close a {
		padding: 1rem 5rem;
		background: #fef5f1;
		border: .3rem solid #f15925;
	}

	.c-service__wrap-close a:before {
		width: 2.3rem;
		height: 1.3rem;
		right: 2.7rem;
	}
}


/**********************************

 c-plan

***********************************/
.c-plan {
	background: #fef5f1;
}

.c-plan__inner {
	padding: 6rem 0 9.7rem;
}

.c-plan__chat {
	margin-top: 5rem;
}

.c-plan__chat-txt01 {
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.c-plan__chat-btn {
	margin-top: 2.5rem;
	font-size: 3.2rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.6;
}

.c-plan__chat-btn a {
	display: inline-block;
	padding: 2.5rem 7rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff8368+0,ff6949+100 */
	background: linear-gradient(to bottom,  rgba(255,131,104,1) 0%,rgba(255,105,73,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .7rem 0 #a11a00;
	border-radius: 20rem;
}

@media (hover: hover) {

	.c-plan__chat-btn a {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-plan__chat-btn a:hover {
		box-shadow: 0 0 0 #a11a00;
		transform: translateY(.7rem);
		filter: brightness(1.15);
	}
}

.c-plan__chat-btn a .icon {
	padding-left: 4.2rem;
	position: relative;
	z-index: 1;
}

.c-plan__chat-btn a .icon:before {
	content: "";
	display: block;
	width: 3rem;
	height: 3rem;
	background: url(../images/icon_chat01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-plan__detail {
	width: 100rem;
	margin: 4rem auto 0;
}

.c-plan__detail-wrap {
	display: flex;
	justify-content: space-between;
}

.c-plan__detail-sec {
	display: flex;
	flex-direction: column;
	width: 46rem;
}

.c-plan__detail-sec .no1 {
	padding-bottom: 3rem;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: .07em;
	text-align: center;
}

.c-plan__detail-sec .spacer {
}

.c-plan__detail-sec .head {
	padding: 1.3rem 1.5rem;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
	border-radius: 3rem 3rem 0 0;
}

.c-plan__detail-sec.premium .head {
	background: #f15925;
}

.c-plan__detail-sec.basic .head {
	background: #2466f1;
}

.c-plan__detail-sec .body {
	padding: 3rem 3.7rem 5rem;
	background: #fff;
	border-left: .3rem solid #dddddd;
	border-right: .3rem solid #dddddd;
	border-bottom: .3rem solid #dddddd;
	border-radius: 0 0 3rem 3rem;
}

.c-plan__detail-sec .body__copy {
	margin-top: -.3em;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
}

.c-plan__detail-sec .body__price {
	margin-top: 2rem;
}

.c-plan__detail-sec .body__price-ttl {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
}

.c-plan__detail-sec .body__price-ttl .block {
	display: inline-block;
	padding: .4rem 2rem;
	border-radius: 20rem;
}

.c-plan__detail-sec.premium .body__price-ttl .block {
	color: #f15925;
	background: #fef5f1;
	border: .3rem solid #f15925;
}

.c-plan__detail-sec.basic .body__price-ttl .block {
	color: #2466f1;
	background: #f1f4fe;
	border: .3rem solid #2466f1;
}

.c-plan__detail-sec .body__price-monthly {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-top: 3rem;
	line-height: 1;
	letter-spacing: .07em;
}

.c-plan__detail-sec .body__price-monthly .month {
	display: block;
	margin-right: .5em;
	font-size: 2.8rem;
	font-weight: bold;
}

.c-plan__detail-sec .body__price-monthly .num {
	display: block;
	margin-right: .1em;
	font-size: 5.4rem;
	font-weight: bold;
	letter-spacing: .07em;
}

.c-plan__detail-sec.premium .body__price-monthly .num {
	color: #f15925;
}

.c-plan__detail-sec.basic .body__price-monthly .num {
	color: #2466f1;
}

.c-plan__detail-sec .body__price-monthly .en {
	display: block;
	font-size: 2.8rem;
	font-weight: bold;
}

.c-plan__detail-sec .body__price-monthly .tax {
	display: block;
	font-size: 2rem;
	font-weight: bold;
}

.c-plan__detail-sec .body__price-yearly {
	margin-top: 2.5rem;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
}

.c-plan__detail-sec .body__price-yearly .block {
	display: inline-block;
	width: 30rem;
	padding: .5rem 1.5rem;
	border-radius: 20rem;
}

.c-plan__detail-sec.premium .body__price-yearly .block {
	background: #fef5f1;
}

.c-plan__detail-sec.basic .body__price-yearly .block {
	background: #f1f4fe;
}

.c-plan__detail-sec .body__checklist {
	font-size: 2.2rem;
	font-weight: bold;
}

.c-plan__detail-sec .body__checklist li {
	padding: 2rem 0;
	text-align: center;
	border-bottom: .1rem solid #cccccc;
}

.c-plan__detail-sec .body__checklist li .icon {
	padding-left: 3.5rem;
	position: relative;
	z-index: 1;
}

.c-plan__detail-sec .body__checklist li .icon:before {
	content: "";
	display: block;
	width: 2.4rem;
	height: 1.8rem;
	position: absolute;
	top: .9rem;
	left: 0;
	z-index: 1;
}

.c-plan__detail-sec.premium .body__checklist li .icon:before {
	background: url(../images/plan_check01.png) no-repeat center / contain;
}

.c-plan__detail-sec.basic .body__checklist li .icon:before {
	background: url(../images/plan_check02.png) no-repeat center / contain;
}

.c-plan__detail-sec .body__more {
	margin-top: 3rem;
	font-size: 2.6rem;
	font-weight: 900;
	text-align: center;
	letter-spacing: .07em;
}

.c-plan__detail-sec .body__more a {
	display: inline-block;
	padding: 1.4rem 8.5rem;
	color: #fff;
	vertical-align: middle;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

.c-plan__detail-sec.premium .body__more a {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff8469+0,ff6646+100 */
	background: linear-gradient(to bottom,  rgba(255,132,105,1) 0%,rgba(255,102,70,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .7rem 0 #a21b00;
}

@media (hover: hover) {

	.c-plan__detail-sec.premium .body__more a {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-plan__detail-sec.premium .body__more a:hover {
		box-shadow: 0 0 0 #a21b00;
		transform: translateY(.7rem);
		filter: brightness(1.15);
	}
}

.c-plan__detail-sec.basic .body__more a {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#287dff+0,0b6dfe+100 */
	background: linear-gradient(to bottom,  rgba(40,125,255,1) 0%,rgba(11,109,254,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .7rem 0 #003684;
}

@media (hover: hover) {

	.c-plan__detail-sec.basic .body__more a {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-plan__detail-sec.basic .body__more a:hover {
		box-shadow: 0 0 0 #003684;
		transform: translateY(.7rem);
		filter: brightness(1.15);
	}
}

.c-plan__detail-sec .body__more a:before {
	content: "";
	display: block;
	width: 2.6rem;
	height: 2.6rem;
	background: url(../images/icon_arr04.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 3rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-plan__detail-note {
	margin-top: 2rem;
	text-align: right;
}

.c-plan__detail-note-inner {
	display: inline-block;
}

.c-plan__detail-note .ttl {
	font-size: 1.2rem;
	font-weight: bold;
}

.c-plan__detail-note ul {
	font-size: 1.2rem;
}

.c-plan__detail-note ul li {
	text-indent: -.75em;
	margin-left: .75em;
}

.c-plan__option {
	width: 100rem;
	margin: 4rem auto 0;
}

.c-plan__option-ttl {
	padding: 1.3rem 1.5rem;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	background: #6763c0;
	border-radius: 3rem 3rem 0 0;
}

.c-plan__option-body {
	padding: 3rem 3.7rem 4.2rem;
	background: #fff;
	border-left: .3rem solid #dddddd;
	border-right: .3rem solid #dddddd;
	border-bottom: .3rem solid #dddddd;
	border-radius: 0 0 3rem 3rem;
}

.c-plan__option-body .copy {
	margin-top: -.3em;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
}

.c-plan__option-body .service {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem 4rem;
	margin-top: 3rem;
}

.c-plan__option-body .service__sec {
	width: calc(100%/2 - 2rem);
	flex: 0 1 calc(100%/2 - 2rem);
	padding: 2rem 0;
	border-top: .1rem solid #cccccc;
	border-bottom: .1rem solid #cccccc;
}

.c-plan__option-body .service__sec-ttl {
	margin-top: -.3em;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
}

.c-plan__option-body .service__sec-price {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-top: 1.5rem;
	line-height: 1;
	letter-spacing: .07em;
}

.c-plan__option-body .service__sec-price .num {
	display: block;
	margin-right: .1em;
	color: #6663bf;
	font-size: 4.2rem;
	font-weight: bold;
	letter-spacing: .07em;
}

.c-plan__option-body .service__sec-price .en {
	display: block;
	font-size: 2.8rem;
	font-weight: bold;
}

.c-plan__option-body .service__sec-price .tax {
	display: block;
	font-size: 2rem;
	font-weight: bold;
}

.c-plan__option-body .service__sec-note {
	margin-top: 2rem;
	margin-bottom: -.2em;
	font-size: 1.4rem;
	text-align: center;
}

.c-plan__price {
	margin-top: 3.5rem;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
}

.c-plan__price a {
	color: #6663bf;
}

.c-plan__price a .icon {
	padding-right: 4rem;
	position: relative;
	z-index: 1;
}

.c-plan__price a .icon:before {
	content: "";
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	background: url(../images/icon_arr03.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-plan__register {
	margin-top: 5rem;
	font-size: 3.2rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.6;
}

.c-plan__register a {
	display: inline-block;
	padding: 2.5rem 5rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6879ff+0,475eff+100 */
	background: linear-gradient(to bottom,  rgba(104,121,255,1) 0%,rgba(71,94,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .7rem 0 #001399;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.c-plan__register a {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-plan__register a:hover {
		box-shadow: 0 0 0 #001399;
		transform: translateY(.7rem);
		filter: brightness(1.15);
	}
}

.c-plan__register a:before {
	content: "";
	display: block;
	width: 10.4rem;
	height: 10.4rem;
	background: url(../images/plan_register_balloon_pc.png) no-repeat center / contain;
	position: absolute;
	top: -3.2rem;
	right: -6.2rem;
	z-index: 1;
}

.c-plan__register a .icon {
	padding-left: 5rem;
	position: relative;
	z-index: 1;
}

.c-plan__register a .icon:before {
	content: "";
	display: block;
	width: 3.7rem;
	height: 2.7rem;
	background: url(../images/icon_mail01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (max-width:767px){

	.c-plan__inner {
		padding: 6rem 0 7.7rem;
	}

	.c-plan__chat {
		margin-top: 4rem;
	}

	.c-plan__chat-txt01 {
		font-size: 3.2rem;
	}

	.c-plan__chat-btn {
		margin-top: 2rem;
		font-size: 4.2rem;
	}

	.c-plan__chat-btn a {
		padding: 2.2rem 4rem;
	}

	.c-plan__chat-btn a .icon {
		padding-left: 5rem;
	}

	.c-plan__chat-btn a .icon:before {
		width: 3.7rem;
		height: 3.7rem;
	}

	.c-plan__detail {
		width: 60rem;
		margin: 6rem auto 0;
	}

	.c-plan__detail-wrap {
		display: block;
	}

	.c-plan__detail-sec {
		display: flex;
		flex-direction: column;
		width: auto;
		margin-top: 7rem;
	}

	.c-plan__detail-sec:first-child {
		margin-top: 0;
	}

	.c-plan__detail-sec .no1 {
		padding-bottom: 3rem;
		font-size: 3.2rem;
	}

	.c-plan__detail-sec .spacer {
	}

	.c-plan__detail-sec .head {
		padding: .8rem 1.5rem;
		font-size: 3.6rem;
	}

	.c-plan__detail-sec .body {
		padding: 3rem 3.7rem 6.5rem;
	}

	.c-plan__detail-sec .body__copy {
		font-size: 3.2rem;
	}

	.c-plan__detail-sec .body__price {
		margin-top: 2.5rem;
	}

	.c-plan__detail-sec .body__price-ttl {
		font-size: 3.2rem;
	}

	.c-plan__detail-sec .body__price-ttl .block {
		padding: .5rem 2.8rem;
	}

	.c-plan__detail-sec .body__price-monthly {
		margin-top: 3rem;
	}

	.c-plan__detail-sec .body__price-monthly .month {
		margin-right: .5em;
		font-size: 4rem;
	}

	.c-plan__detail-sec .body__price-monthly .num {
		font-size: 7.6rem;
	}

	.c-plan__detail-sec .body__price-monthly .en {
		font-size: 4rem;
	}

	.c-plan__detail-sec .body__price-monthly .tax {
		font-size: 2.8rem;
	}

	.c-plan__detail-sec .body__price-yearly {
		margin-top: 3.5rem;
		font-size: 2.8rem;
	}

	.c-plan__detail-sec .body__price-yearly .block {
		display: block;
		width: auto;
		padding: .5rem 1.5rem;
	}

	.c-plan__detail-sec .body__checklist {
		font-size: 3.2rem;
	}

	.c-plan__detail-sec .body__checklist li {
		padding: 1.8rem 0;
	}

	.c-plan__detail-sec .body__checklist li .icon {
		padding-left: 4.5rem;
	}

	.c-plan__detail-sec .body__checklist li .icon:before {
		width: 3rem;
		height: 2.2rem;
		top: 1.5rem;
	}

	.c-plan__detail-sec .body__more {
		margin-top: 5rem;
		font-size: 4.2rem;
	}

	.c-plan__detail-sec .body__more a {
		display: inline-block;
		width: 50rem;
		padding: 1.7rem 10rem;
	}

	.c-plan__detail-sec .body__more a:before {
		width: 5rem;
		height: 5rem;
		right: 3rem;
	}

	.c-plan__detail-note {
		margin-top: 2.5rem;
		text-align: left;
	}

	.c-plan__detail-note-inner {
		display: block;
	}

	.c-plan__detail-note .ttl {
		font-size: 2.2rem;
	}

	.c-plan__detail-note ul {
		font-size: 2.2rem;
	}

	.c-plan__option {
		width: 60rem;
		margin: 4.5rem auto 0;
	}

	.c-plan__option-ttl {
		padding: .8rem 1.5rem;
		font-size: 3.6rem;
	}

	.c-plan__option-body {
		padding: 3rem 3.7rem 5.7rem;
	}

	.c-plan__option-body .copy {
		font-size: 3.2rem;
	}

	.c-plan__option-body .service {
		display: block;
		margin-top: 1rem;
	}

	.c-plan__option-body .service__sec {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		flex-wrap: wrap;
		width: auto;
		flex: none;
		padding: 2rem 0 2rem;
		border-top: none;
		border-bottom: .1rem solid #cccccc;
	}

	.c-plan__option-body .service__sec-ttl {
		margin-top: 0;
		font-size: 3.2rem;
	}

	.c-plan__option-body .service__sec-price {
		margin-top: 0;
		line-height: 1.3;
	}

	.c-plan__option-body .service__sec-price .num {
		margin-right: .1em;
		font-size: 5.4rem;
	}

	.c-plan__option-body .service__sec-price .en {
		font-size: 3.2rem;
	}

	.c-plan__option-body .service__sec-price .tax {
		font-size: 2.4rem;
	}

	.c-plan__option-body .service__sec-note {
		width: 100%;
		margin-top: 1rem;
		margin-bottom: -.2em;
		font-size: 2.2rem;
		text-align: center;
	}

	.c-plan__price {
		margin-top: 3rem;
		font-size: 2.7rem;
	}

	.c-plan__price a .icon {
		padding-right: 6.5rem;
	}

	.c-plan__price a .icon:before {
		width: 5rem;
		height: 5rem;
	}

	.c-plan__register {
		margin-top: 5.5rem;
		font-size: 4.2rem;
	}

	.c-plan__register a {
		padding: 2.2rem 6rem;
	}

	.c-plan__register a:before {
		width: 11rem;
		height: 11rem;
		background: url(../images/plan_register_balloon_sp.png) no-repeat center / contain;
		top: -5rem;
		right: -6rem;
	}

	.c-plan__register a .icon {
		padding-left: 5rem;
	}

	.c-plan__register a .icon:before {
		width: 3.7rem;
		height: 2.7rem;
	}
}


/**********************************

 c-comparison

***********************************/
.c-comparison {

}

.c-comparison__inner {
	padding: 6rem 0 8rem;
}

.c-comparison__desc {
	margin-top: 2.5rem;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

.c-comparison__table {
	width: 90rem;
	margin: 4.5rem auto 0;
	border-spacing: 0;
}

.c-comparison__table thead tr th {
	width: 33.3334%;
	padding: 1.4rem 1rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
	background: #f15925;
	border-right: .1rem solid #f7a68a;
}

.c-comparison__table thead tr th:first-child {
	border-radius: 3rem 0 0 0;
}

.c-comparison__table thead tr th:last-child {
	border-radius: 0 3rem 0 0;
	border-right: none;
}

.c-comparison__table tbody tr th {
	padding: 1.6rem 1rem;
	color: var(--text-color-primary);
	font-size: 2.2rem;
	font-weight: bold;
	background: #fef5f1;
	letter-spacing: .07em;
	text-align: center;
	border-left: .3rem solid #cccccc;
	border-right: .3rem solid #cccccc;
}

.c-comparison__table tbody tr td {
	padding: 1.6rem 1rem;
	background: #fff;
	letter-spacing: .07em;
	border-right: .1rem solid #cccccc;
}

.c-comparison__table tbody tr td:first-child {
	border-left: .3rem solid #cccccc;
}

.c-comparison__table tbody tr td:last-child {
	border-right: .3rem solid #cccccc;
}

.c-comparison__table tbody tr:last-child td {
	border-bottom: .3rem solid #cccccc;
}

.c-comparison__table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 3rem;
}

.c-comparison__table tbody tr:last-child td:last-child {
	border-radius: 0 0 3rem 0;
}

.c-comparison__table tbody tr td .icon {
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
}

.c-comparison__table tbody tr td .icon .large {
	font-size: 3.6rem;
}

.c-comparison__table tbody tr td .note {
	font-size: 2rem;
	text-align: center;
	letter-spacing: .07em;
}

.c-comparison__note {
	width: 90rem;
	margin: 2.5rem auto 0;
	font-size: 1.6rem;
}

.c-comparison__note li {
	text-indent: -1.2em;
	margin-left: 1.2em;
	text-align: center;
}

@media screen and (max-width:767px){

	.c-comparison__inner {
		padding: 6rem 0 8rem;
	}

	.c-comparison__desc {
		margin-top: 2rem;
		font-size: 3.2rem;
	}

	.c-comparison__table {
		width: 60rem;
		margin: 4.5rem auto 0;
		border-spacing: 0;
	}

	.c-comparison__table thead tr th {
		padding: 1.2rem 1rem;
		font-size: 2.8rem;
	}

	.c-comparison__table tbody tr th {
		padding: 1.2rem 1rem;
		font-size: 2.8rem;
	}

	.c-comparison__table tbody tr td {
		padding: 1.2rem 1rem;
	}

	.c-comparison__table tbody tr td .icon {
		font-size: 2.8rem;
	}

	.c-comparison__table tbody tr td .icon .large {
		font-size: 3.6rem;
	}

	.c-comparison__table tbody tr td .note {
		font-size: 2rem;
	}

	.c-comparison__note {
		width: 60rem;
		margin: 2rem auto 0;
		font-size: 2.2rem;
	}

	.c-comparison__note li {
		text-align: left;
	}
}


/**********************************

 c-faq

***********************************/
.c-faq {
	background: #fef5f1;
}

.c-faq__inner {
	padding: 6rem 0 9rem;
}

@media screen and (max-width:767px){

	.c-faq__inner {
		padding: 6rem 0 8rem;
	}

}


/**********************************

 xxx

***********************************/

@media screen and (max-width:767px){

}

