@charset "utf-8";
/**********************************

 変数

***********************************/
:root {
	--primary-color: #1fb8c9;
	--accent-color: #5eae6b;
	--apply-btn-color: #e69c50;
	--apply-btn-line-color: #FF7300;
	--line-btn-color: #5eaf6a;
	--line-btn-line-color: #6fe500;
	--font-base-color: #171717;
	--font-size-note: 1.2rem;
}

@media screen and (max-width:767px){
	:root {
		--font-size-note: 2.4rem;
	}
}

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

 レイアウト

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

html {
	font-size: 10px;
}

body {
	margin: 0;
	padding: 0;
	color: var(--font-base-color);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: .07em;
	font-feature-settings : "palt";
	text-align: left;
	background-color: #fff;
	font-family: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	-webkit-text-size-adjust: none;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
@media screen\0 {
	body {
		letter-spacing: normal;
		font-family: '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: .07em;
}
p {
	letter-spacing: .07em;
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
}
input,
button {
	font-family: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
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: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: .07em;
	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(--font-base-color);
	font-family: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: .07em;
	border: .3rem solid #dddddd;
	background: #fff;
	box-sizing: border-box;
	border-radius: 0;
}
textarea {
	height: 15rem;
	padding: 1rem 1rem;
	font-family: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: .07em;
	border: .3rem solid #dddddd;
	box-sizing: border-box;
	border-radius: 0;
	vertical-align: top;
}
/* Webkit */
::-webkit-input-placeholder {
	color: #b8b8b8;
	opacity: 1;
}
/* Firefox 18 以前 */
:-moz-placeholder {
	color: #b8b8b8;
}
/* Firefox 19 以降 */
::-moz-placeholder {
	color: #b8b8b8;

	/* Firefox 19 以降のデフォルトでは */
	/* color ではなく opacity で色合いを調整しているため */
	/* 文字色を指定する場合、opacity を 1 にする必要がある */
	opacity: 1;
}
/* IE 10 以降 */
:-ms-input-placeholder {
	color: #b8b8b8 !important;
}
/* CSS4では以下のような名前の擬似クラスになるらしい */
/* おそらく今のところ対応ブラウザはない */
:placeholder-shown {
	color: #b8b8b8;
}
/* 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(--font-base-color);
}
a:visited {
	color: var(--font-base-color);
}
a.normal:link {
	color: var(--font-base-color);
}
a.normal:visited {
	color: var(--font-base-color);
}
a:hover {
	text-decoration: none;
}
a:active {
}
a.noline {
	text-decoration: none;
}
a.reverse {
	text-decoration: none;
}
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);
}
.ov:hover {	
	opacity:0.7;
}
.ovImg:hover img {	
	opacity:0.7;
}
.nowrap {
	white-space: nowrap;
}
.mincho {
	font-family: "YakuHanMP", YuMincho, '游明朝', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho ProN','メイリオ',"HGS明朝E", 'MS P 明朝', 'MS PMincho', serif;
}
.gothic {
	font-family: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.Ubuntu {
	font-family: "Ubuntu", sans-serif;
}
.Roboto {
	font-family: "Roboto", sans-serif;
}
.Hiragino-W3 {
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 300;
}
.Hiragino-W6 {
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
}
* {
	box-sizing: border-box;
}



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

@media screen and (max-width:767px){
	html {
		font-size: 1.33333333vw;
	}
	body {
		font-size: 3.2rem;
	}
	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: 4.4rem;
		padding: .5rem 1rem;
		font-size: 1.4rem;
		border: .2rem solid #dddddd;
	}
	select {
		height: 4.4rem;
		padding: .5rem 1rem;
		font-size: 1.4rem;
		border: .2rem solid #dddddd;
	}
	textarea {
		height: 34.6666666vw;
		padding: .5rem 1rem;
		font-size: 1.4rem;
		border: .2rem solid #dddddd;
	}
}


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

 general

***********************************/
.imgMax {
	max-width: none;
	width: 100%;
}
.floatL {
	float: left;
}
.floatR {
	float: right;
}
.alignC {
	text-align: center;
}
.alignR {
	text-align: right;
}
.alignL {
	text-align: left;
}
.veralignT {
	vertical-align: top;
}
.veralignM {
	vertical-align: middle;
}
.veralignB {
	vertical-align: bottom;
}
.indent {
	text-indent: -1em;
	padding-left: 1em;
}
.bold {
	font-weight: bold;
}

.white {
	color: #fff;
}
.red {
	color: #ff3f00;
}
.blue {
	color: #1184df;
}
.yellow {
	color: #ffff00;
}
.bgYellow {
	background-color: #fff100;
}
.marker {
	background: linear-gradient(transparent 70%, #ffbf00 70%);
}
.underline {
	text-decoration: underline;
}

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

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

 parts

***********************************/
.define_wrap {
	padding: 0 5rem;
}

.define_inner {
	max-width: 100%;
	width: 114rem;
	margin: 0 auto;
}


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

	.define_wrap {
		padding: 0 5rem;
	}
}


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

 layout

***********************************/
body {
	height: auto !important;
}
body.is-fixed {
	position: fixed;
	width: 100%;
	/*height: 100%;*/
}
.l-wrap {
	padding-top: 10rem;
	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;
	background-color: rgba(0,0,0,.9);
	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 {
}

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

}

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

 l-drawerMenu

***********************************/
.l-drawerMenu {
	display: block;
	width: 100%;
	height: 100dvh;
	padding: 10rem 5rem;
	background-color: var(--primary-color);
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	pointer-events: none;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.l-drawerMenu__inner {
}

.l-drawerMenu__head {
	display: flex;
	justify-content: space-between;
}

.l-drawerMenu__head-logo {
	width: 35.2rem;
}

.l-drawerMenu__head-logo img {
	width: 35.2rem;
}

.l-drawerMenu__head-close {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 .9rem;
	width: 17.5rem;
	height: 6.8rem;
	background: rgba(255,255,255, .9);
	border-radius: 1rem;
	cursor: pointer;
}

.l-drawerMenu__head-close-txt {
	color: var(--primary-color);
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 9%;
}

.l-drawerMenu__head-close-icon {
	display: block;
	width: 4.2rem;
}

.l-drawerMenu__body {
	display: flex;
	justify-content: space-between;
	margin-top: 10rem;
}

.l-drawerMenu__navi {
	width: 49rem;
}

.l-drawerMenu__navi-main {
	font-size: 1.9rem;
	font-weight: bold;
	letter-spacing: 5%;
}

.l-drawerMenu__navi-main li {
	border-bottom: .1rem solid rgba(255,255,255, .7);
}

.l-drawerMenu__navi-main li a {
	display: block;
	padding: 2.5rem 5rem;
	color: #fff;
}

.l-drawerMenu__navi-sub {
	display: flex;
	gap: 0 1.5rem;
	margin-top: 3rem;
	font-size: 1.6rem;
	font-weight: 400;
}

.l-drawerMenu__navi-sub li {
}

.l-drawerMenu__navi-sub li a {
	color: #fff;
}

.l-drawerMenu__body-cv {
	width: 54rem;
	padding-top: 2.5rem;
}

.l-drawerMenu__discount {
	padding: 3rem 3.9rem;
	background: #fff;
	border: .6rem solid var(--primary-color);
	border-radius: 4rem;
}

.l-drawerMenu__discount-balloon {
	padding: 2.5rem 1rem;
	color: #fff;
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 5%;
	line-height: 1.5;
	text-align: center;
	background: var(--primary-color);
	border-radius: .8rem;
	position: relative;
	z-index: 1;
}

.l-drawerMenu__discount-balloon:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-top: -.2rem;
	border-style: solid;
	border-right: 1.7rem solid transparent;
	border-left: 1.7rem solid transparent;
	border-top: 2.4rem solid var(--primary-color);
	border-bottom: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-drawerMenu__discount-balloon .large {
	font-size: 2.9rem;
}

.l-drawerMenu__discount-txt {
	margin: 4.5rem -.5em 0;
	font-size: 2.9rem;
	font-weight: 600;
	text-align: center;
	line-height: 1;
	letter-spacing: 3%;
}

.l-drawerMenu__discount-txt .strong01 {
	display: inline-block;
	color: var(--primary-color);
	font-size: 6.2rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -2%;
}

.l-drawerMenu__discount-txt .strong02 {
	display: inline-block;
	color: var(--primary-color);
	font-size: 5.4rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: -2%;
}

.l-drawerMenu__btn-area {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1.8rem 0;
	margin-top: 1.6rem;
}

.l-drawerMenu__apply,
.l-drawerMenu__line {
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: .2rem;
}

.l-drawerMenu__apply a,
.l-drawerMenu__line a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40rem;
	height: 8.3rem;
	padding: 0 2.8rem;
	color: #fff;
	box-shadow: .6rem .6rem 0 #16a0b0;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
	transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1),
	box-shadow 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-drawerMenu__apply a {
	background: var(--apply-btn-color);
	border: .2rem solid var(--apply-btn-line-color);
}

.l-drawerMenu__line a {
	background: var(--line-btn-color);
	border: .2rem solid var(--line-btn-line-color);
}

.l-drawerMenu__apply a:hover,
.l-drawerMenu__line a:hover {
	transform: translateY(.3rem) translateX(.3rem);
	box-shadow: 0 0 0 #16a0b0;
}

.l-drawerMenu__apply a:before,
.l-drawerMenu__line a:before {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1.5rem;
	background: url(../images/common/icon_arr_white01.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 2.8rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-drawerMenu__mypage {
	margin-top: 2rem;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 5%;
	line-height: 1.5;
	text-align: center;
}

.l-drawerMenu__mypage a {
	color: #fff;
}


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

	.l-drawerMenu {
		padding: 2.2rem 5rem 6rem;
		background-color: var(--primary-color);
		opacity: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 20;
		pointer-events: none;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

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

	.l-drawerMenu__inner {
	}

	.l-drawerMenu__head {
		display: flex;
		justify-content: space-between;
	}

	.l-drawerMenu__head-logo {
		margin-top: 1rem;
	}

	.l-drawerMenu__head-close {
		gap: 0 1.5rem;
		width: 20.2rem;
		height: 8rem;
	}

	.l-drawerMenu__head-close-txt {
		font-size: 2.4rem;
	}

	.l-drawerMenu__head-close-icon {
		width: 5.2rem;
	}

	.l-drawerMenu__body {
		display: block;
		margin-top: 6rem;
	}

	.l-drawerMenu__navi {
		width: auto;
	}

	.l-drawerMenu__navi-main {
		font-size: 3.8rem;
	}

	.l-drawerMenu__navi-main li a {
		padding: 2.3rem 0;
		text-align: center;
	}

	.l-drawerMenu__navi-sub {
		display: none;
	}

	.l-drawerMenu__body-cv {
		width: auto;
		padding-top: 0;
		margin-top: 4rem;
	}

	.l-drawerMenu__discount {
		padding: 3.3rem 4.3rem;
		background: #fff;
		border: .6rem solid var(--primary-color);
		border-radius: 4rem;
	}

	.l-drawerMenu__discount-balloon {
		padding: 1.8rem 1rem;
		font-size: 3.5rem;
		letter-spacing: -4%;
		border-radius: .8rem;
	}

	.l-drawerMenu__discount-balloon:before {
		margin-top: -.2rem;
		border-style: solid;
		border-right: 1.7rem solid transparent;
		border-left: 1.7rem solid transparent;
		border-top: 2.4rem solid var(--primary-color);
	}

	.l-drawerMenu__discount-balloon .large {
		font-size: 3.9rem;
	}

	.l-drawerMenu__discount-txt {
		margin: 3rem -.5em 0;
		font-size: 4rem;
		letter-spacing: 3%;
	}

	.l-drawerMenu__discount-txt .strong01 {
		font-size: 7.2rem;
		letter-spacing: -2%;
	}

	.l-drawerMenu__discount-txt .strong02 {
		font-size: 6.5rem;
		letter-spacing: -2%;
	}

	.l-drawerMenu__btn-area {
		gap: 3rem 0;
		margin-top: 4.6rem;
	}

	.l-drawerMenu__apply,
	.l-drawerMenu__line {
		font-size: 3.2rem;
	}

	.l-drawerMenu__apply a,
	.l-drawerMenu__line a {
		width: 55rem;
		height: 11.4rem;
		padding: 0 2.8rem;
		box-shadow: .8rem .8rem 0 #16a0b0;
	}

	.l-drawerMenu__apply a {
		border: .4rem solid var(--apply-btn-line-color);
	}

	.l-drawerMenu__line a {
		border: .4rem solid var(--line-btn-line-color);
	}

	.l-drawerMenu__apply a:hover,
	.l-drawerMenu__line a:hover {
		transform: none;
		box-shadow: .8rem .8rem 0 #16a0b0;
	}

	.l-drawerMenu__apply a:before,
	.l-drawerMenu__line a:before {
		right: 2.6rem;
	}

	.l-drawerMenu__mypage {
		margin-top: 2.5rem;
		font-size: 3.2rem;
	}
}


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

 l-header

***********************************/
.l-header {
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	transition: box-shadow 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-header.is-scroll {
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.l-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 10rem;
}

.l-header__logo {
	display: flex;
	gap: 0 1rem;
	margin-bottom: -1rem;
}

.l-header__logo-main {
	display: block;
	width: 24.5rem;
}

.l-header__logo-main img {
	width: 24.5rem;
}

.l-header__logo-desc {
	display: block;
	color: #808080;
	font-size: 1.4rem;
	line-height: 1.42857143;
}

.l-header__navi {
	display: flex;
	align-items: center;
}

.l-header__navi-apply,
.l-header__navi-line {
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: .3rem;
}

.l-header__navi-line {
	margin-left: 2rem;
}

.l-header__navi-apply a,
.l-header__navi-line a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4.4rem;
	padding: 0 2.8rem;
	color: #fff;
	box-shadow: .3rem .3rem 0 #c1c1c1;
	border-radius: 20rem;
	transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1),
				box-shadow 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-header__navi-apply a {
	background: var(--apply-btn-color);
	border: .2rem solid var(--apply-btn-line-color);
}

.l-header__navi-line a {
	background: var(--line-btn-color);
	border: .2rem solid var(--line-btn-line-color);
}

.l-header__navi-apply a:hover,
.l-header__navi-line a:hover {
	transform: translateY(.3rem) translateX(.3rem);
	box-shadow: 0 0 0 #c1c1c1;
}

.l-header__navi-menu {
	margin-left: 3.8rem;
	margin-right: -1rem;
}

.l-header__navi-menu a {
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 4.4rem;
}

.l-header__navi-menu-line01 {
	display: block;
	width: 6rem;
	height: .15rem;
	background: var(--primary-color);
}

.l-header__navi-menu-line02 {
	display: block;
	width: 4.5rem;
	height: .15rem;
	margin-top: .65rem;
	background: var(--primary-color);
}

.l-header__navi-menu-txt {
	display: block;
	margin-top: .9rem;
	color: var(--primary-color);
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 5%;
}

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

	.l-header {
		padding: 0 2.4rem;
	}

	.l-header__inner {
		height: 10rem;
	}

	.l-header__logo {
		display: block;
		margin-bottom: -1rem;
	}

	.l-header__logo-desc {
		display: none;
	}

	.l-header__navi-apply,
	.l-header__navi-line {
		font-size: 2.6rem;
		letter-spacing: normal;
	}

	.l-header__navi-line {
		margin-left: 1.5rem;
	}

	.l-header__navi-apply a,
	.l-header__navi-line a {
		height: 6rem;
		padding: 0 2.2rem;
		box-shadow: none;
	}

	.l-header__navi-apply a:hover,
	.l-header__navi-line a:hover {
		transform: none;
		box-shadow: none;
	}

	.l-header__navi-menu {
		margin-left: 2rem;
		margin-right: -.4rem;
	}

	.l-header__navi-menu a {
		height: 6rem;
	}

	.l-header__navi-menu-line01 {
		width: 7.7rem;
		height: .23rem;
	}

	.l-header__navi-menu-line02 {
		width: 5.775rem;
		height: .23rem;
		margin-top: 1rem;
	}

	.l-header__navi-menu-txt {
		margin-top: .9rem;
		color: var(--primary-color);
		font-size: 2rem;
		letter-spacing: normal;
	}
}

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

 l-footer

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

}

.l-footer__inner {
	padding: 8rem 0 5rem;
}

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

.l-footer__logo img {
	width: 37.8rem;
}

.l-footer__navi {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem 3rem;
	margin-top: 3.4rem;
	font-size: 1.2rem;
	font-weight: 400;
}

.l-footer__navi li {
}

.l-footer__copy {
	margin-top: 5rem;
	font-size: 1.1rem;
	text-align: center;
	line-height: 1.6;
}

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

	.l-footer__inner {
		padding: 5rem 0 6rem;
	}

	.l-footer__logo {
		width: 48.8rem;
	}

	.l-footer__logo img {
		width: 48.8rem;
	}

	.l-footer__navi {
		display: block;
		margin-top: 3rem;
		font-size: 2.4rem;
		letter-spacing: 10%;
	}

	.l-footer__navi li {
		margin-top: .6em;
		text-align: center;
	}

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

	.l-footer__copy {
		margin-top: 3rem;
		font-size: 2.2rem;
		letter-spacing: normal;
	}
}


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

 c-faq-list-acc

***********************************/
.c-faq-list-acc {
	margin: 7rem auto 0;
}

.c-faq-list-acc dl {
	padding: .5rem 2.8rem;
	margin-top: 2rem;
	background: #fff;
	border: .4rem solid var(--primary-color);
	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: center;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	background: #fff;
	cursor: pointer;
}

.c-faq-list-acc dl dt .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.3;
	background: var(--primary-color);
	border-radius: 50%;
}

.c-faq-list-acc dl dt .ttl {
	flex: 1;
	padding-right: 5rem;
	margin-left: 1.5rem;
	color: var(--primary-color);
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.15625;
	position: relative;
	z-index: 1;
}

.c-faq-list-acc dl dt .ttl:before {
	content: "";
	display: block;
	width: 1rem;
	height: .7rem;
	right: 0;
	background: url(../images/top/faq_acc.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
	transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-faq-list-acc dl dt.is-active .ttl:before {
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.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-top: 2.4rem;
	padding-bottom: 2rem;
	border-top: .1rem solid #cccccc;
	position: relative;
	z-index: 1;
}

.c-faq-list-acc dl dd .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.3;
	background: var(--accent-color);
	border-radius: 50%;
}

.c-faq-list-acc dl dd .cont {
	flex: 1;
	padding-top: .6rem;
	margin-left: 1.5rem;
	font-size: 1.6rem;
	line-height: 1.5;
}

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

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

	.c-faq-list-acc {
		margin: 2.2rem auto 0;
	}

	.c-faq-list-acc dl {
		padding: 0 1.8rem;
	}

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

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

	.c-faq-list-acc dl dt .icon {
		width: 6rem;
		height: 6rem;
		font-size: 4rem;
	}

	.c-faq-list-acc dl dt .ttl {
		padding-right: 4.5rem;
		margin-left: 2rem;
		font-size: 3.2rem;
	}

	.c-faq-list-acc dl dt .ttl:before {
		width: 1.6rem;
		height: 1rem;
		right: 1.2rem;
	}

	.c-faq-list-acc dl dt.is-active .ttl:before {
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

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

	.c-faq-list-acc dl dd .inner {
		padding-top: 2rem;
		padding-bottom: 2rem;
		border-top: .1rem solid #cccccc;
	}

	.c-faq-list-acc dl dd .icon {
		width: 6rem;
		height: 6rem;
		font-size: 4rem;
	}

	.c-faq-list-acc dl dd .cont {
		padding-top: 0;
		padding-right: 4rem;
		margin-left: 2rem;
		font-size: 3.2rem;
		line-height: 1.25;
		letter-spacing: normal;
	}

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

}


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

 c-cv-btn-area

***********************************/
.c-cv-btn-area {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0 3.8rem;
}

.c-cv-btn-area__apply,
.c-cv-btn-area__line {
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: .2rem;
}

.c-cv-btn-area__apply a,
.c-cv-btn-area__line a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40rem;
	height: 8.3rem;
	padding: 0 2.8rem;
	color: #fff;
	box-shadow: .6rem .6rem 0 #C1C1C1;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
	transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1),
	box-shadow 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-cv-btn-area__apply a.shadow-type02,
.c-cv-btn-area__line a.shadow-type02 {
	box-shadow: .6rem .6rem 0 #16A0B0;
}

.c-cv-btn-area__apply a {
	background: var(--apply-btn-color);
	border: .2rem solid var(--apply-btn-line-color);
}

.c-cv-btn-area__line a {
	background: var(--line-btn-color);
	border: .2rem solid var(--line-btn-line-color);
}

.c-cv-btn-area__apply a:hover,
.c-cv-btn-area__line a:hover {
	transform: translateY(.3rem) translateX(.3rem);
	box-shadow: 0 0 0 #C1C1C1;
}

.c-cv-btn-area__apply a.shadow-type02:hover,
.c-cv-btn-area__line a.shadow-type02:hover {
	box-shadow: 0 0 0 #16A0B0;
}

.c-cv-btn-area__apply a:before,
.c-cv-btn-area__line a:before {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1.5rem;
	background: url(../images/common/icon_arr_white01.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 2.8rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-cv-btn-area__line .txt01 {
	margin-bottom: 1rem;
	color: var(--line-btn-color);
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
}

.c-cv-btn-area__line .txt01.white {
	color: #fff;
}

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

	.c-cv-btn-area {
		display: block;
		width: 55.8rem;
		margin: 3.5rem auto 0;
	}

	.c-cv-btn-area__apply,
	.c-cv-btn-area__line {
		font-size: 3.2rem;
	}

	.c-cv-btn-area__line {
		margin-top: 3.5rem;
	}

	.c-cv-btn-area__apply a,
	.c-cv-btn-area__line a {
		width: 55rem;
		height: 11.4rem;
		padding: 0 2.8rem;
		box-shadow: .8rem .8rem 0 #C1C1C1;
	}

	.c-cv-btn-area__apply a.shadow-type02,
	.c-cv-btn-area__line a.shadow-type02 {
		box-shadow: .8rem .8rem 0 #16A0B0;
	}

	.c-cv-btn-area__apply a {
		border: .4rem solid var(--apply-btn-line-color);
	}

	.c-cv-btn-area__line a {
		border: .4rem solid var(--line-btn-line-color);
	}

	.c-cv-btn-area__apply a:hover,
	.c-cv-btn-area__line a:hover {
		transform: none;
		box-shadow: .8rem .8rem 0 #C1C1C1;
	}

	.c-cv-btn-area__apply a.shadow-type02:hover,
	.c-cv-btn-area__line a.shadow-type02:hover {
		box-shadow: .8rem .8rem 0 #16A0B0;
	}

	.c-cv-btn-area__apply a:before,
	.c-cv-btn-area__line a:before {
		right: 2.6rem;
	}

	.c-cv-btn-area__line .txt01 {
		margin-bottom: 1rem;
		font-size: 3rem;
	}
}


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

 c-page-ttl

***********************************/
.c-page-ttl {
}

.c-page-ttl__sub {
	display: block;
	color: var(--primary-color);
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
}

.c-page-ttl__main {
	display: block;
	margin-top: 1.3rem;
	color: var(--primary-color);
	font-size: 3.8rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
}

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

	.c-page-ttl__sub {
		font-size: 3.2rem;
	}

	.c-page-ttl__main {
		margin-top: 1.3rem;
		font-size: 4.7rem;
	}
}


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

 c-anchor

***********************************/
.c-anchor {
	padding-top: 10rem;
	margin-top: -10rem;
	display: block;
}

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

}

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

 c-hero

***********************************/
.c-hero {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6fc0d7+0,00afcc+100&0.5+0,0.5+100 */
	background: linear-gradient(to bottom,  rgba(111,192,215,0.5) 0%,rgba(0,175,204,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	position: relative;
	z-index: 1;
}

.c-hero:before {
	content: "";
	display: block;
	width: 1920px;
	height: 100%;
	background: url(../images/top/hero_pic01_pc.png) no-repeat center bottom / 1920px auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-hero__inner {
	width: 1540px;
	max-width: 100%;
	padding-top: 54px;
	padding-bottom: 32px;
	margin: 0 auto;
}

.c-hero__content {
	width: 663px;
	margin-left: auto;
}

.c-hero__content-sub {
	margin: 0 -1em 0;
	color: #fff;
	font-size: 36px;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .05em;
	text-shadow: 0 4px 9px rgba(7,139,161,.9);
}

.c-hero__content-ttl {
	margin-top: 15px;
	color: #fff;
	font-size: 89px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .01em;
	text-align: center;
	text-shadow: 0 4px 9px rgba(7,139,161,.9);
}

.c-hero__content-ttl .block {
	display: inline-block;
	margin: 0 -1em 0;
	position: relative;
	z-index: 1;
}

.c-hero__content-ttl .block .kome {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
	text-shadow: 0 4px 9px rgba(7,139,161,.9);
	position: absolute;
	top: 15px;
	right: 0;
	z-index: 1;
}

.c-hero__content-box {
	padding: 22px 37px;
	margin-top: 60px;
	background: #fff;
	border-radius: 16px;
	border: 3px solid var(--primary-color);
}

.c-hero__content-box-txt01 {
	margin-left: .1em;
	color: var(--primary-color);
	font-size: 31px;
	font-weight: 800;
	line-height: 1.5;
}

.c-hero__content-box-price {
	display: flex;
	align-items: flex-end;
}

.c-hero__content-box-price-monthly {
	color: var(--primary-color);
	font-size: 66px;
	font-weight: bold;
	line-height: 1.35;
	letter-spacing: -.01em;
}

.c-hero__content-box-price-num {
	margin: 0 .1em;
	color: var(--primary-color);
	font-size: 136px;
	font-weight: bold;
	line-height: .9;
	letter-spacing: -.01em;
}

.c-hero__content-box-price-num .comma {
	font-weight: 400;
}

.c-hero__content-box-price-en {
	color: var(--primary-color);
	font-size: 68px;
	font-weight: bold;
	line-height: 1.35;
	text-align: center;
	letter-spacing: -.01em;
	position: relative;
	z-index: 1;
}

.c-hero__content-box-price-en .tax {
	display: inline-block;
	margin-bottom: -.5em;
	font-size: 23px;
	white-space: nowrap;
	font-weight: 500;
	line-height: 1;
	position: absolute;
	bottom: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-hero__content-box-feature {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.c-hero__content-box-feature-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 240px;
	padding: 15px 10px;
	background: #daf2f5;
	border-radius: 16px;
	position: relative;
	z-index: 1;
}

.c-hero__content-box-feature-box:first-child:before {
	content: "";
	display: block;
	width: 45px;
	height: 45px;
	background: url(../images/top/icon_cross01.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: -75px;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-hero__content-box-feature-box .txt01 {
	color: var(--primary-color);
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
}

.c-hero__content-box-feature-box .txt02 {
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 900;
	text-align: center;
	line-height: 1.3;
}

.c-hero__content-box-feature-box .txt02 .sup {
	font-size: .55em;
	vertical-align: super;
}

.c-hero__content-box-feature-box:first-child .txt02 {
	margin-top: .1em;
}

.c-hero__content-note {
	margin-top: 15px;
	margin-left: 8px;
	color: #fff;
	font-size: 12px;
	/*font-size: 10px;*/
	line-height: 1.8;
	letter-spacing: normal;
}

.c-hero__content-note li {
}

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

	.c-hero:before {
		width: 117.073vw;
		background-size: 117.07317073vw auto;
	}

	.c-hero__inner {
		width: 93.902vw;
		padding-top: 3.293vw;
		padding-bottom: 1.951vw;
	}

	.c-hero__content {
		width: 40.427vw;
	}

	.c-hero__content-sub {
		font-size: 2.195vw;
		text-shadow: 0 .24390244vw .54878049vw rgba(7,139,161,.9);
	}

	.c-hero__content-ttl {
		margin-top: 0.915vw;
		font-size: 5.427vw;
		text-shadow: 0 .24390244vw .54878049vw rgba(7,139,161,.9);
	}

	.c-hero__content-ttl .block .kome {
		font-size: 1.463vw;
		text-shadow: 0 .24390244vw .54878049vw rgba(7,139,161,.9);
		top: 0.915vw;
	}

	.c-hero__content-box {
		padding: 1.341vw 2.256vw;
		margin-top: 3.659vw;
		border-radius: 0.976vw;
		border: .18292683vw solid var(--primary-color);
	}

	.c-hero__content-box-txt01 {
		font-size: 1.89vw;
	}

	.c-hero__content-box-price {
	}

	.c-hero__content-box-price-monthly {
		font-size: 4.024vw;
	}

	.c-hero__content-box-price-num {
		font-size: 8.293vw;
	}

	.c-hero__content-box-price-en {
		font-size: 4.146vw;
	}

	.c-hero__content-box-price-en .tax {
		font-size: 1.402vw;
	}

	.c-hero__content-box-feature {
		margin-top: 1.22vw;
	}

	.c-hero__content-box-feature-box {
		width: 14.634vw;
		padding: 0.915vw 0.61vw;
		border-radius: 0.976vw;
	}

	.c-hero__content-box-feature-box:first-child:before {
		width: 2.744vw;
		height: 2.744vw;
		right: -4.573vw;
	}

	.c-hero__content-box-feature-box .txt01 {
		font-size: 1.341vw;
	}

	.c-hero__content-box-feature-box .txt02 {
		font-size: 2.195vw;
	}

	.c-hero__content-note {
		margin-top: 0.915vw;
		margin-left: 0.488vw;
		font-size: .73170732vw;
		/*font-size: 0.61vw;*/
	}
}

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

	.c-hero {
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6fc0d7+0,00afcc+100&0.5+0,0.5+100 */
		background: linear-gradient(to bottom,  rgba(111,192,215,0.5) 0%,rgba(0,175,204,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		position: relative;
		z-index: 1;
	}

	.c-hero:before {
		width: 100%;
		height: 100%;
		background: url(../images/top/hero_pic01_sp.png) no-repeat center 18rem / 100% auto;
	}

	.c-hero__inner {
		width: auto;
		padding-top: 2.4rem;
		padding-bottom: 1.2rem;
	}

	.c-hero__content {
		width: auto;
		margin: 0 auto;
	}

	.c-hero__content-sub {
		margin: 0 -1em 0;
		font-size: 3.6rem;
		text-shadow: 0 .4rem .9rem rgba(7,139,161,.9);
	}

	.c-hero__content-ttl {
		margin-top: 1rem;
		font-size: 8.9rem;
		text-shadow: 0 .4rem .9rem rgba(7,139,161,.9);
	}

	.c-hero__content-ttl .block {
		margin: 0;
	}

	.c-hero__content-ttl .block .kome {
		font-size: 2.4rem;
		text-shadow: 0 .4rem .9rem rgba(7,139,161,.9);
		top: 1.5rem;
	}

	.c-hero__content-box {
		width: 65rem;
		padding: 2.2rem 3.7rem;
		margin: 52rem auto 0;
		border-radius: 1.6rem;
		border: .3rem solid var(--primary-color);
	}

	.c-hero__content-box-txt01 {
		margin-left: .1em;
		font-size: 3.1rem;
	}

	.c-hero__content-box-price-monthly {
		font-size: 6.6rem;
	}

	.c-hero__content-box-price-num {
		font-size: 13.6rem;
	}

	.c-hero__content-box-price-en {
		font-size: 6.8rem;
	}

	.c-hero__content-box-price-en .tax {
		font-size: 2.3rem;
	}

	.c-hero__content-box-feature {
		margin-top: 2rem;
	}

	.c-hero__content-box-feature-box {
		width: 24rem;
		padding: 1.5rem 1rem;
		border-radius: 1.6rem;
	}

	.c-hero__content-box-feature-box:first-child:before {
		width: 4.5rem;
		height: 4.5rem;
		right: -7rem;
	}

	.c-hero__content-box-feature-box .txt01 {
		font-size: 2.2rem;
	}

	.c-hero__content-box-feature-box .txt02 {
		font-size: 3.6rem;
	}

	.c-hero__content-box-feature-box:first-child .txt02 {
		margin-top: .1em;
	}

	.c-hero__content-note {
		width: 65rem;
		margin: 1.5rem auto .8rem;
		font-size: var(--font-size-note);
	}

	.c-hero__content-note li:last-child {
		margin-right: -2em;
	}
}


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

 c-about

***********************************/
.c-about {
}

.c-about__top {
	position: relative;
	z-index: 1;
}

.c-about__top:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 50vw solid transparent;
	border-left: 50vw solid transparent;
	border-top: 10.1rem solid #ffffff;
	border-bottom: 0;
	margin-top: -.1rem;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-about__top-inner {
	padding-top: 7.8rem;
	padding-bottom: 3.5rem;
	position: relative;
	z-index: 1;
}

.c-about__top-ttl {
	color: var(--primary-color);
	position: relative;
	z-index: 1;
}

.c-about__top-ttl:before {
	content: "";
	display: block;
	width: 18.8rem;
	height: 20.2rem;
	margin-top: 1rem;
	background: url(../images/top/about_top_pic01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 7.6rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-about__top-ttl:after {
	content: "";
	display: block;
	width: 18rem;
	height: 17.8rem;
	margin-top: 1rem;
	background: url(../images/top/about_top_pic02.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 7.6rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-about__top-ttl-txt01 {
	display: block;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .12em;
}

.c-about__top-ttl-txt02 {
	display: block;
	margin-top: 1rem;
	font-size: 3.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .12em;
}

.c-about__top-ttl-txt02 .strong {
	font-size: 4.6rem;
}

.c-about__top-list {
	display: flex;
	justify-content: space-between;
	margin-top: 5rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: .05em;
}

.c-about__top-list li {
	width: 35.6rem;
	padding: 1.6rem 2.4rem 1.8rem;
	text-align: center;
	background-color: var(--primary-color);
	border-radius: 20rem 20rem 2rem 20rem;
}

.c-about__bottom {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e3f6f9+0,caecf3+100 */
	background: linear-gradient(to bottom,  rgba(227,246,249,1) 0%,rgba(202,236,243,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	position: relative;
}

.c-about__bottom:before {
	content: "";
	display: block;
	width: 122rem;
	height: 39.6rem;
	background: url(../images/top/about_bottom_pic01_pc.png) no-repeat center / contain;
	position: absolute;
	bottom: 7rem;
	left: 50%;
	z-index: 2;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	pointer-events: none;
}

.c-about__bottom-inner {
	padding-top: 17rem;
	padding-bottom: 26rem;
}

.c-about__bottom-ttl {
	color: var(--primary-color);
	text-align: center;
}

.c-about__bottom-ttl-txt01 {
	display: inline-block;
	padding: 0 3.5rem;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .12em;
	position: relative;
	z-index: 1;
}

.c-about__bottom-ttl-txt01:before {
	content: "";
	display: block;
	width: 2.25rem;
	height: 4.7rem;
	background: url(../images/top/about_bottom_decoration01.svg) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.c-about__bottom-ttl-txt01:after {
	content: "";
	display: block;
	width: 2.25rem;
	height: 4.7rem;
	background: url(../images/top/about_bottom_decoration02.svg) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.c-about__bottom-ttl-txt02 {
	display: block;
	margin-top: 1rem;
	font-size: 3.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .12em;
}

.c-about__bottom-ttl-txt02 .strong {
	font-size: 4.6rem;
}

.c-about__bottom-feature {
	display: flex;
	justify-content: space-between;
	margin-top: 3.4rem;
}

.c-about__bottom-feature-box {
	width: 50.6rem;
	padding: 5.5rem 5rem 5rem;
	background: #f6f6f6;
	border-radius: 2.5rem;
	box-shadow: 0 .2rem .4rem rgba(0,0,0,.2);
	position: relative;
	z-index: 1;
}

.c-about__bottom-feature-box:before {
	content: "";
	display: block;
	width: 7.9rem;
	height: 7.9rem;
	background: url(../images/top/icon_cross01.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: -10.5rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-about__bottom-feature-box:last-child:before {
	display: none;
}

.c-about__bottom-feature-box-ttl {
	width: 28.6rem;
	padding: .5rem 1rem;
	margin: 0 auto 1.8rem;
	color: #fff;
	font-size: 1.9rem;
	font-weight: bold;
	text-align: center;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

.c-about__bottom-feature-box:nth-child(1) .c-about__bottom-feature-box-ttl {
	background-color: var(--primary-color);
}

.c-about__bottom-feature-box:nth-child(2) .c-about__bottom-feature-box-ttl {
	background-color: var(--line-btn-color);
}

.c-about__bottom-feature-box-ttl:before {
	content: "";
	display: block;
	width: 5.9rem;
	height: 6.6rem;
	position: absolute;
	top: -3.5rem;
	right: -3.6rem;
	z-index: 1;
}

.c-about__bottom-feature-box:nth-child(1) .c-about__bottom-feature-box-ttl:before {
	background: url(../images/top/about_bottom_decoration03.svg) no-repeat center / contain;
}

.c-about__bottom-feature-box:nth-child(2) .c-about__bottom-feature-box-ttl:before {
	background: url(../images/top/about_bottom_decoration04.svg) no-repeat center / contain;
}

.c-about__bottom-feature-box-txt01 {
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
}

.c-about__bottom-feature-box-txt01:last-child {
	margin-top: .5em;
}

.c-about__bottom-feature-box-txt02 {
	margin-top: .1em;
	font-size: 4.2rem;
	font-weight: bold;
	text-align: center;
}

.c-about__bottom-feature-box:nth-child(1) .c-about__bottom-feature-box-txt02 {
	color: var(--primary-color);
}

.c-about__bottom-feature-box:nth-child(2) .c-about__bottom-feature-box-txt02 {
	color: var(--line-btn-color);
}

.c-about__bottom-feature-box-txt02 .large {
	font-size: 5.2rem;
}

.c-about__bottom-feature-box-txt02 .sub {
	font-size: .5em;
	vertical-align: baseline;
}

.c-about__bottom-txt01 {
	margin-top: 7rem;
	color: var(--primary-color);
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .12em;
}

.c-about__bottom-txt02 {
	margin-top: 2.5rem;
	color: var(--primary-color);
	font-size: 6.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .12em;
	position: relative;
	z-index: 1;
}

.c-about__bottom-txt02:before {
	content: "";
	display: block;
	width: 6.1rem;
	height: 16rem;
	margin-top: 2rem;
	background: url(../images/top/about_arr01.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-about__bottom-logo {
	width: 54.3rem;
	margin: 6.5rem auto 0;
	position: relative;
	z-index: 1;
}

.c-about__bottom-logo img {
	width: 54.3rem;
}

.c-about__bottom-logo span {
	margin-top: -.5em;
	color: var(--primary-color);
	font-size: 8rem;
	font-weight: bold;
	line-height: 1;
	position: absolute;
	top: 0;
	z-index: 1;
}

.c-about__bottom-logo span:first-child {
	margin-left: -.85em;
	left: 0;
}

.c-about__bottom-logo span:last-child {
	margin-right: -.75em;
	right: 0;
}

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

.c-about__bottom-note ul {
	display: inline-block;
	color: #828282;
	font-size: var(--font-size-note);
	line-height: 1.5;
}

.c-about__bottom-note ul li {
	text-indent: -1.15em;
	margin-left: 1.15em;
}

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

	.c-about__top:before {
		border-right: 50vw solid transparent;
		border-left: 50vw solid transparent;
		border-top: 10.1rem solid #ffffff;
		margin-top: -.1rem;
	}

	.c-about__top-inner {
		padding-top: 3.5rem;
		padding-bottom: 3rem;
	}

	.c-about__top-ttl:before {
		display: none;
	}

	.c-about__top-ttl:after {
		display: none;
	}

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

	.c-about__top-ttl-txt02 {
		margin-top: .1em;
		font-size: 5.5rem;
	}

	.c-about__top-ttl-txt02 .strong {
		font-size: 6.4rem;
	}

	.c-about__top-list {
		display: block;
		margin-top: 4.5rem;
		font-size: 3rem;
	}

	.c-about__top-list li {
		width: 58rem;
		padding: 1.6rem 2.4rem 1.8rem;
		margin-top: 5rem;
		border-radius: 20rem 20rem 2rem 20rem;
		position: relative;
		z-index: 1;
	}

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

	.c-about__top-list li:nth-child(2) {
		margin-left: auto;
	}

	.c-about__top-list li:nth-child(3) {
		width: 60.5rem;
	}

	.c-about__top-list li:nth-child(2):before {
		content: "";
		display: block;
		width: 20.2rem;
		height: 20rem;
		background: url(../images/top/about_top_pic02.png) no-repeat center / contain;
		position: absolute;
		top: -17rem;
		right: -3rem;
		z-index: 1;
	}

	.c-about__top-list li:nth-child(3):before {
		content: "";
		display: block;
		width: 20.5rem;
		height: 22rem;
		background: url(../images/top/about_top_pic01.png) no-repeat center / contain;
		position: absolute;
		top: -19rem;
		left: -4rem;
		z-index: 1;
	}

	.c-about__bottom:before {
		width: 75rem;
		height: 31.8rem;
		background: url(../images/top/about_bottom_pic01_sp.png) no-repeat center / contain;
		bottom: -18rem;
	}

	.c-about__bottom-inner {
		padding-top: 15rem;
		padding-bottom: 18rem;
	}

	.c-about__bottom-ttl {
		color: var(--primary-color);
		text-align: center;
	}

	.c-about__bottom-ttl-txt01 {
		padding: 0 3rem;
		font-size: 3.2rem;
	}

	.c-about__bottom-ttl-txt02 {
		margin-top: 1rem;
		font-size: 5.5rem;
		line-height: 1.3;
	}

	.c-about__bottom-ttl-txt02 .strong {
		font-size: 6.5rem;
	}

	.c-about__bottom-feature {
		margin-top: 3rem;
	}

	.c-about__bottom-feature-box {
		width: 30.6rem;
		padding: 4.5rem .5rem 3rem;
		border-radius: 1.6rem;
		background: #fff;
		box-shadow: none;
		z-index: auto;
	}

	.c-about__bottom-feature-box:before {
		width: 8.6rem;
		height: 8.6rem;
		margin-top: 4.2rem;
		right: -6.2rem;
		z-index: 2;
		pointer-events: none;
	}

	.c-about__bottom-feature-box:last-child:before {
		display: none;
	}

	.c-about__bottom-feature-box-ttl {
		width: 26.6rem;
		padding: .55rem 1rem;
		margin: 0 auto 2.4rem;
		font-size: 2.4rem;
	}

	.c-about__bottom-feature-box-ttl:before {
		width: 6.6rem;
		height: 7.3rem;
		top: -4rem;
		right: -3.6rem;
	}

	.c-about__bottom-feature-box-txt01 {
		font-size: 2.8rem;
	}

	.c-about__bottom-feature-box-txt01:last-child {
		margin-top: .25em;
	}

	.c-about__bottom-feature-box-txt02 {
		margin-top: 0;
		font-size: 5rem;
	}

	.c-about__bottom-feature-box-txt02 .large {
		font-size: 6rem;
	}

	.c-about__bottom-txt01 {
		margin-top: 3rem;
		font-size: 3.8rem;
	}

	.c-about__bottom-txt02 {
		margin-top: 3rem;
	}

	.c-about__bottom-txt02:before {
		margin-top: .5rem;
	}

	.c-about__bottom-logo {
		width: 57.8rem;
		margin: 6rem auto 0;
	}

	.c-about__bottom-logo img {
		width: 57.8rem;
	}

	.c-about__bottom-logo span {
		margin-top: -.5em;
		font-size: 8rem;
	}

	.c-about__bottom-logo span:first-child {
		margin-left: -.65em;
	}

	.c-about__bottom-logo span:last-child {
		margin-right: -.6em;
	}

	.c-about__bottom-note {
		margin-top: 5rem;
		text-align: left;
	}

	.c-about__bottom-note ul {
		display: block;
		font-size: 2rem;
	}

	.c-about__bottom-note ul li {
		text-indent: 0;
		margin-left: 0;
	}
}


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

 c-feature

***********************************/
.c-feature {
	margin-top: -22rem;
	position: relative;
	z-index: 1;
}

.c-feature:before {
	content: "";
	display: block;
	width: 192rem;
	height: 66.6rem;
	background: url(../images/top/feature_bg01_pc.svg) no-repeat center / contain;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-feature:after {
	content: "";
	display: block;
	width: 192rem;
	height: 66.6rem;
	background: url(../images/top/feature_bg02_pc.svg) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-feature__inner {
	padding-top: 8.5rem;
	padding-bottom: 17.5rem;
}

.c-feature__inner:before {
	content: "";
	display: block;
	width: calc(100% + 2px);
	height: calc(100% - 50rem);
	background: var(--primary-color);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-feature__inner:after {
	content: "";
	display: block;
	width: calc(100% + 2px);
	height: 50%;
	background: #F6F7F8;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -2;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-feature__sub {
	color: #fff;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
}

.c-feature__ttl {
	margin-top: .1em;
	color: #fff;
	font-size: 4.6rem;
	font-weight: bold;
	text-align: center;
}

.c-feature__ttl .large {
	font-size: 5.45rem;
}

.c-feature__section {
	margin-top: 10rem;
	background: #fff;
	border-radius: 2rem;
	position: relative;
	z-index: 1;
}

.c-feature__section:first-of-type {
	margin-top: 8.2rem;
}

.c-feature__section:last-child:after {
	content: "";
	display: block;
	width: 24.1rem;
	height: 13.4rem;
	background: url(../images/top/feature_arr01.svg) no-repeat center / contain;
	position: absolute;
	bottom: -15.4rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-feature__section-num {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 14rem;
	height: 14rem;
	background-color: #ffffff;
	border: .7rem solid var(--primary-color);
	border-radius: 50%;
	position: absolute;
	top: -5.5rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-feature__section-num:before {
	content: "";
	display: block;
	width: 4.6rem;
	height: 4.6rem;
	background: url(../images/top/feature_num_decoration01.svg) no-repeat center / contain;
	position: absolute;
	top: -1.2rem;
	right: -2.8rem;
	z-index: 1;
}

.c-feature__section-num .txt01 {
	color: var(--primary-color);
	font-size: 5.45rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.c-feature__section-num .txt02 {
	color: var(--primary-color);
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
}

.c-feature__sub-ttl {
	color: var(--primary-color);
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

.c-feature__sub-ttl .sup {
	font-size: .55em;
	vertical-align: super;
}

.c-feature__desc {
	margin-top: 1.5rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
}

.c-feature__desc .large {
	font-size: 1.8rem;
}

.c-feature__desc .sup {
	font-size: .5em;
	vertical-align: super;
}

.c-feature__desc .primary-color {
	color: var(--primary-color);
}

.c-feature__desc .secondary-color {
	color: var(--accent-color);
}

.c-feature__affordable {
	padding: 11.6rem 0 5rem;
}

.c-feature__affordable-plan {
	width: 94.4rem;
	padding: 1.35rem 1rem;
	margin: 3.2rem auto 0;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	background-color: var(--primary-color);
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

.c-feature__affordable-plan:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-top: -.1rem;
	border-style: solid;
	border-right: 2rem solid transparent;
	border-left: 2rem solid transparent;
	border-top: 1.5rem solid var(--primary-color);
	border-bottom: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-feature__affordable-plan .large {
	font-size: 2.2rem;
	font-weight: bold;
}

.c-feature__affordable-plan .sup {
	font-size: .6em;
	vertical-align: super;
}

.c-feature__affordable-price {
	width: 74.8rem;
	margin: 5.2rem auto 0;
}

.c-feature__affordable-price dt {
	padding: .5rem 1rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: .45em;
	text-align: center;
	background: #515F6D;
	border-radius: 1rem;
}

.c-feature__affordable-price dd {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-top: 3rem;
}

.c-feature__affordable-price dd .monthly {
	font-size: 3.08rem;
	font-weight: 500;
}

.c-feature__affordable-price dd .num {
	margin-left: .15em;
	margin-right: .15em;
	color: var(--primary-color);
	font-size: 6.38rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: -.03em;
}

.c-feature__affordable-price dd .num .comma {
	font-weight: 500;
}

.c-feature__affordable-price dd .en {
	color: var(--primary-color);
	font-size: 3.19rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	letter-spacing: -.01em;
	position: relative;
	z-index: 1;
}

.c-feature__affordable-price dd .en .tax {
	display: inline-block;
	margin-bottom: -.5em;
	font-size: 1.1rem;
	white-space: nowrap;
	font-weight: 500;
	line-height: 1;
	position: absolute;
	bottom: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-feature__affordable-price dd .excluding-tax {
	margin-left: .2em;
	font-size: 2.53rem;
	font-weight: 500;
	letter-spacing: normal;
}

.c-feature__affordable-price dd .excluding-tax .large {
	font-size: 3.19rem;
}

.c-feature__affordable-more {
	padding: 6rem 9.8rem 5rem;
	background: #E1F5F9;
	border-radius: 2rem;
	position: relative;
	z-index: 1;
}

.c-feature__affordable-more:before {
	content: "";
	display: block;
	width: 6.2rem;
	height: 6.2rem;
	background: url(../images/top/feature_more_pc.svg) no-repeat center / contain;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-feature__affordable-more-sub {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
}

.c-feature__affordable-more-sub span {
	padding: 0 2.5rem;
	position: relative;
	z-index: 1;
}

.c-feature__affordable-more-sub span:before {
	content: "";
	display: block;
	width: 1.5rem;
	height: 2.2rem;
	background: url(../images/top/feature_affordable_decoration01.svg) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.c-feature__affordable-more-sub span:after {
	content: "";
	display: block;
	width: 1.5rem;
	height: 2.2rem;
	background: url(../images/top/feature_affordable_decoration02.svg) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.c-feature__affordable-more-ttl {
	margin-top: .5rem;
	color: var(--primary-color);
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

.c-feature__affordable-more-ttl .strong {
	color: #e98b40;
	font-size: 3.2rem;
	font-weight: 900;
}

.c-feature__affordable-more-price {
	margin-top: 2rem;
}

.c-feature__affordable-more-price-savings {
	padding: .8rem 1rem;
	color: #fff;
	font-size: 2.3rem;
	font-weight: bold;
	text-align: center;
	background: var(--primary-color);
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

.c-feature__affordable-more-price-savings:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-top: -.1rem;
	border-style: solid;
	border-right: 2rem solid transparent;
	border-left: 2rem solid transparent;
	border-top: 1.5rem solid var(--primary-color);
	border-bottom: 0;
	position: absolute;
	top: 100%;
	right: 16.4rem;
	z-index: 1;
}

.c-feature__affordable-more-price-savings .large {
	font-size: 2.9rem;
}

.c-feature__affordable-more-price-table {
	margin-top: 3rem;
	box-shadow: 0 .3rem .6rem rgba(0, 0, 0, .2);
	position: relative;
	z-index: 1;
}

.c-feature__affordable-more-price-table:before {
	content: "";
	display: block;
	width: 36rem;
	height: calc(100% - .2rem);
	border: .5rem solid #F1C02F;
	position: absolute;
	top: -.4rem;
	right: -.5rem;
	z-index: 1;
}

.c-feature__affordable-more-price-table .head {
	display: flex;
	border-top: .1rem solid #fff;
	background: #8B96A3;
}

.c-feature__affordable-more-price-table .head__th {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 4.6rem;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	border-left: .1rem solid #fff;
	border-bottom: .1rem solid #fff;
}

.c-feature__affordable-more-price-table .head__th:first-child {
	background: url(../images/top/feature_affordable_more_table_line_pc.svg) center / 100% 100%;
}

.c-feature__affordable-more-price-table .head__th.our {
	font-size: 2rem;
	font-weight: bold;
	background: var(--accent-color);
	border-left: none;
}

.c-feature__affordable-more-price-table .head__th:nth-child(1) {
	flex: 1;
}

.c-feature__affordable-more-price-table .head__th:nth-child(2),
.c-feature__affordable-more-price-table .head__th:nth-child(3) {
	width: 15.2rem;
}

.c-feature__affordable-more-price-table .head__th:nth-child(4) {
	width: 36rem;
}

.c-feature__affordable-more-price-table .body {

}

.c-feature__affordable-more-price-table .body__tr {
	display: flex;
}

.c-feature__affordable-more-price-table .body__tr-th {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 4.6rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	background: #515F6D;
	border-left: .1rem solid #fff;
	border-bottom: .1rem solid #fff;
}

.c-feature__affordable-more-price-table .body__tr-td {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 4.6rem;
	color: #333333;
	font-size: 1.4rem;
	text-align: center;
	background: #fff;
	border-left: .1rem solid #D9D9D9;
	border-bottom: .1rem solid #D9D9D9;
}

.c-feature__affordable-more-price-table .body__tr-td.our {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	background: var(--accent-color);
	border-left: none;
	border-bottom: .1rem solid #fff;
}

.c-feature__affordable-more-price-table .body__tr-td.our .sup {
	display: inline-block;
	margin-top: -.9em;
	font-size: 1rem;
}

.c-feature__affordable-more-price-table .body__tr-td:nth-child(2),
.c-feature__affordable-more-price-table .body__tr-td:nth-child(3) {
	width: 15.2rem;
}

.c-feature__affordable-more-price-table .body__tr-td:nth-child(4) {
	width: 36rem;
}

.c-feature__affordable-more-other {
	margin-top: 5.2rem;
}

.c-feature__affordable-more-other-ttl {
	font-weight: bold;
	text-align: center;
}

.c-feature__affordable-more-other-table {
	margin-top: 2rem;
	box-shadow: 0 .3rem .6rem rgba(0, 0, 0, .2);
	position: relative;
	z-index: 1;
}

.c-feature__affordable-more-other-table .body {
	border-top: .1rem solid #D9D9D9;
}

.c-feature__affordable-more-other-table .body__tr {
	display: flex;
}

.c-feature__affordable-more-other-table .body__tr-th {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 4.6rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	background: #515F6D;
	border-left: .1rem solid #D9D9D9;
	border-bottom: .1rem solid #D9D9D9;
}

.c-feature__affordable-more-other-table .body__tr-td {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 66.2rem;
	min-height: 4.6rem;
	color: #333333;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	background: #fff;
	border-left: .1rem solid #D9D9D9;
	border-bottom: .1rem solid #D9D9D9;
}

.c-feature__affordable-more-other-table .body__tr-td .sup {
	display: inline-block;
	margin-top: -.5em;
	font-size: 1rem;
}

.c-feature__affordable-more-note {
	margin-top: 2rem;
	color: #828282;
	font-size: var(--font-size-note);
}

.c-feature__affordable-more-note li {

}

.c-feature__relief {
	padding: 11.6rem 0 5rem;
}

.c-feature__relief-note {
	margin-top: 2rem;
	color: #828282;
	font-size: var(--font-size-note);
}

.c-feature__relief-note li {
	text-align: center;
}

.c-feature__relief-note li a {
	color: var(--primary-color);
	font-weight: bold;
}

.c-feature__relief-area {
	width: 53.4rem;
	margin: 9rem auto 0;
	position: relative;
	z-index: 1;
}

.c-feature__relief-area:before {
	content: "";
	display: block;
	width: 13.3rem;
	height: 19.1rem;
	background: url(../images/top/feature_relief_pic01.png) no-repeat center / contain;
	position: absolute;
	top: -4rem;
	left: 50%;
	z-index: 2;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-feature__relief-area-balloon {
	padding: .5rem 1.5rem;
	color: #fff;
	font-size: 1.26rem;
	font-weight: 500;
	text-align: center;
	background: #00A7E3;
	border-radius: 20rem;
	position: absolute;
	top: -6.5rem;
	left: 11rem;
	z-index: 1;
}

.c-feature__relief-area-balloon:before {
	content: "";
	display: block;
	width: 1.64rem;
	height: 2.023rem;
	margin-top: -.2rem;
	background: url(../images/top/feature_relief_arr01_pc.svg) no-repeat center / contain;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-feature__relief-area-map {

}

.c-feature__relief-area-map img {
	width: 53.4rem;
}

.c-feature__stress-free {
	padding: 11.6rem 0 4rem;
}

.feature__stress-free-list {
	display: flex;
	justify-content: space-between;
	width: 94rem;
	max-width: 100%;
	margin: 4rem auto 0;
}

.feature__stress-free-list-sec {
	width: 30rem;
	padding: 2rem;
	text-align: center;
	background-color: var(--primary-color);
	border-radius: 4rem 4rem .4rem 4rem;
}

.feature__stress-free-list-sec .pic {

}

.feature__stress-free-list-sec .ttl {
	margin-top: 1rem;
	margin-bottom: -.2em;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.4;
	position: relative;
	z-index: 1;
}

.feature__stress-free-list-sec .ttl .large {
	font-size: 2.4rem;
	font-weight: bold;
}

.feature__stress-free-list-sec .ttl .balloon {
	display: block;
	padding: .65rem 2.5rem;
	color: var(--primary-color);
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	background: #fff;
	border-radius: 20rem;
	position: absolute;
	top: -3.5rem;
	right: 1rem;
	z-index: 1;
}

.feature__stress-free-list-sec .ttl .balloon:before {
	content: "";
	display: block;
	width: 2.282rem;
	height: 1.976rem;
	margin-top: -.5rem;
	background: url(../images/top/feature_stress_free_arr01.svg) no-repeat center / contain;
	position: absolute;
	top: 100%;
	right: 2rem;
	z-index: 1;
}

.feature__stress-free-note {
	margin-top: 2rem;
	color: #828282;
	font-size: var(--font-size-note);
}

.feature__stress-free-note li {
	text-align: center;
}

@media screen and (min-width:1921px){

	.c-feature:before {
		width: 100%;
		height: 34.688vw;
		background-size: 100% auto;
	}

	.c-feature:after {
		width: 100%;
		height: 34.688vw;
		background-size: 100% auto;
	}

}

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

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

	.c-feature:before {
		width: calc(100% + .2rem);
		height: 66.6rem;
		background: url(../images/top/feature_bg01_sp.svg) no-repeat center / contain;
	}

	.c-feature:after {
		width: calc(100% + .2rem);
		height: 66.6rem;
		background: url(../images/top/feature_bg02_sp.svg) no-repeat center / contain;
	}

	.c-feature__inner {
		padding-top: 10.5rem;
		padding-bottom: 20rem;
	}

	.c-feature__inner:before {
		width: calc(100% + 2px);
		height: calc(100% - 50rem);
	}

	.c-feature__inner:after {
		width: calc(100% + 2px);
		height: 50%;
	}

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

	.c-feature__ttl {
		margin-top: -.05em;
		font-size: 5.6rem;
	}

	.c-feature__ttl .large {
		font-size: 6.45rem;
	}

	.c-feature__section {
		margin-top: 13rem;
		border-radius: 4rem;
	}

	.c-feature__section:first-of-type {
		margin-top: 14rem;
	}

	.c-feature__section:last-child:after {
		width: 24.1rem;
		height: 13.4rem;
		bottom: -17.5rem;
	}

	.c-feature__section-num {
		width: 18.2rem;
		height: 18.2rem;
		top: -8rem;
	}

	.c-feature__section-num:before {
		width: 6rem;
		height: 6rem;
		top: -2rem;
		right: -3.5rem;
	}

	.c-feature__section-num .txt01 {
		font-size: 6.4rem;
	}

	.c-feature__section-num .txt02 {
		margin-top: .6rem;
		font-size: 3.6rem;
	}

	.c-feature__sub-ttl {
		font-size: 4.6rem;
		line-height: 1.18478261;
	}

	.c-feature__sub-ttl .sup {
		font-size: .55em;
		vertical-align: super;
	}

	.c-feature__desc {
		width: 55rem;
		margin: 4rem auto 0;
		font-size: 3.2rem;
		text-align: left;
		letter-spacing: .01em;
	}

	.c-feature__desc .large {
		font-size: 3.2rem;
	}

	.c-feature__desc .sup {
		font-size: .5em;
		vertical-align: super;
	}

	.c-feature__desc .primary-color {
		color: var(--primary-color);
	}

	.c-feature__desc .secondary-color {
		color: var(--accent-color);
	}

	.c-feature__affordable {
		padding: 12rem 0 8rem;
	}

	.c-feature__affordable-plan {
		width: 55rem;
		padding: 1.75rem 1rem;
		margin: 3.5rem auto 0;
		font-size: 3.2rem;
		line-height: 1.3;
	}

	.c-feature__affordable-plan:before {
		margin-top: -.1rem;
		border-right: 2rem solid transparent;
		border-left: 2rem solid transparent;
		border-top: 1.5rem solid var(--primary-color);
	}

	.c-feature__affordable-plan .large {
		font-size: 4.2rem;
	}

	.c-feature__affordable-plan .sup {
		font-size: .8em;
		vertical-align: super;
	}

	.c-feature__affordable-price {
		width: 55rem;
		margin: 5.2rem auto 0;
	}

	.c-feature__affordable-price dt {
		padding: 1.1rem 1rem;
		font-size: 4rem;
	}

	.c-feature__affordable-price dd {
		display: flex;
		justify-content: center;
		align-items: flex-end;
		flex-wrap: wrap;
		margin-top: 2rem;
	}

	.c-feature__affordable-price dd .monthly {
		font-size: 6.2rem;
		line-height: 1.2;
		letter-spacing: -.05em;
	}

	.c-feature__affordable-price dd .num {
		margin-left: .1em;
		margin-right: .05em;
		font-size: 12.8rem;
	}

	.c-feature__affordable-price dd .num .comma {
		font-weight: 500;
	}

	.c-feature__affordable-price dd .en {
		font-size: 6.4rem;
	}

	.c-feature__affordable-price dd .en .tax {
		margin-bottom: -.5em;
		font-size: 2.2rem;
	}

	.c-feature__affordable-price dd .excluding-tax {
		width: 100%;
		margin-left: 0;
		font-size: 5rem;
		font-weight: 500;
		letter-spacing: normal;
		text-align: center;
	}

	.c-feature__affordable-price dd .excluding-tax .sp-weight-400 {
		font-weight: 400;
	}

	.c-feature__affordable-price dd .excluding-tax .large {
		font-size: 6.4rem;
	}

	.c-feature__affordable-more {
		padding: 8rem 5rem 5rem;
		border-radius: 4rem;
	}

	.c-feature__affordable-more:before {
		width: 12rem;
		height: 12rem;
		background: url(../images/top/feature_more_sp.svg) no-repeat center / contain;
	}

	.c-feature__affordable-more-sub {
		font-size: 3.2rem;
	}

	.c-feature__affordable-more-sub span {
		padding: 0 4.2rem;
	}

	.c-feature__affordable-more-sub span:before {
		width: 2.7rem;
		height: 3.96rem;
	}

	.c-feature__affordable-more-sub span:after {
		width: 2.7rem;
		height: 3.96rem;
	}

	.c-feature__affordable-more-ttl {
		margin-top: 2rem;
		font-size: 4.8rem;
		line-height: 1.2;
	}

	.c-feature__affordable-more-ttl .strong {
		font-size: 5.6rem;
	}

	.c-feature__affordable-more-price {
		margin-top: 2.6rem;
	}

	.c-feature__affordable-more-price-savings {
		padding: .8rem 1rem;
		font-size: 4.2rem;
	}

	.c-feature__affordable-more-price-savings:before {
		margin-top: -.1rem;
		border-right: 2rem solid transparent;
		border-left: 2rem solid transparent;
		border-top: 1.5rem solid var(--primary-color);
		right: 5.8rem;
	}

	.c-feature__affordable-more-price-savings .large {
		font-size: 4.8rem;
	}

	.c-feature__affordable-more-price-table {
		margin-top: 3rem;
		box-shadow: 0 .6rem 1.2rem rgba(0, 0, 0, .2);
		position: relative;
		z-index: 1;
	}

	.c-feature__affordable-more-price-table:before {
		width: 20.6rem;
		height: calc(100% - .2rem);
		border: .7rem solid #F1C02F;
		top: -.5rem;
		right: -.6rem;
	}

	.c-feature__affordable-more-price-table .head {
	}

	.c-feature__affordable-more-price-table .head__th {
		min-height: 6.8rem;
		font-size: 2.8rem;
	}

	.c-feature__affordable-more-price-table .head__th:first-child {
		background: url(../images/top/feature_affordable_more_table_line_sp.svg) center / 100% 100%;
	}

	.c-feature__affordable-more-price-table .head__th.our {
		font-size: 3.2rem;
	}

	.c-feature__affordable-more-price-table .head__th:nth-child(2),
	.c-feature__affordable-more-price-table .head__th:nth-child(3) {
		width: 11.2rem;
	}

	.c-feature__affordable-more-price-table .head__th:nth-child(4) {
		width: 20.6rem;
	}

	.c-feature__affordable-more-price-table .body__tr-th {
		min-height: 14.3rem;
		font-size: 2.8rem;
	}

	.c-feature__affordable-more-price-table .body__tr-th .inner {
		text-align: center;
	}

	.c-feature__affordable-more-price-table .body__tr-td {
		min-height: 14.3rem;
		font-size: 2.8rem;
		line-height: 1.1;
		letter-spacing: -.02em;
	}

	.c-feature__affordable-more-price-table .body__tr-td .inner {
		text-align: center;
	}

	.c-feature__affordable-more-price-table .body__tr-td.our {
		font-size: 3.2rem;
	}

	.c-feature__affordable-more-price-table .body__tr-td.our .sup {
		font-size: .65em;
		vertical-align: super;
	}

	.c-feature__affordable-more-price-table .body__tr-td:nth-child(2),
	.c-feature__affordable-more-price-table .body__tr-td:nth-child(3) {
		width: 11.2rem;
	}

	.c-feature__affordable-more-price-table .body__tr-td:nth-child(4) {
		width: 20.6rem;
	}

	.c-feature__affordable-more-other {
		margin-top: 4rem;
	}

	.c-feature__affordable-more-other-ttl {
		font-size: 3.2rem;
	}

	.c-feature__affordable-more-other-table {
		margin-top: 2rem;
		box-shadow: 0 .6rem 1.2rem rgba(0, 0, 0, .2);
	}


	.c-feature__affordable-more-other-table .body__tr-th {
		min-height: 9.9rem;
		font-size: 2.8rem;
	}

	.c-feature__affordable-more-other-table .body__tr-td {
		width: 35rem;
		min-height: 9.9rem;
		font-size: 2.8rem;
	}

	.c-feature__affordable-more-other-table .body__tr-td .sup {
		display: inline-block;
		margin-top: -.5em;
		font-size: .65em;
	}

	.c-feature__affordable-more-note {
		margin-top: 2rem;
		font-size: 2rem;
	}

	.c-feature__relief {
		display: flex;
		flex-direction: column;
		padding: 12rem 0 5rem;
	}

	.c-feature__sub-ttl {
		order: 1;
	}

	.c-feature__desc {
		order: 2;
	}

	.c-feature__relief-note {
		order: 4;
		width: 55rem;
		margin: 1rem auto 0;
		font-size: 2rem;
	}

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

	.c-feature__relief-area {
		order: 3;
		width: auto;
		margin: 9.5rem auto 0;
		position: relative;
		z-index: 1;
	}

	.c-feature__relief-area:before {
		width: 15.1rem;
		height: 21.7rem;
		top: 1rem;
		left: 21rem;
		transform: none;
		-webkit-transform: none;
	}

	.c-feature__relief-area-balloon {
		padding: 2.2rem 2.5rem;
		font-size: 2.8rem;
		line-height: 1.3;
		background: var(--primary-color);
		top: -6rem;
		left: 5rem;
	}

	.c-feature__relief-area-balloon:before {
		width: 3.2rem;
		height: 2.775rem;
		margin-top: -.2rem;
		background: url(../images/top/feature_relief_arr01_sp.svg) no-repeat center / contain;
	}

	.c-feature__relief-area-map {

	}

	.c-feature__relief-area-map img {
		width: 65rem;
	}

	.c-feature__stress-free {
		padding: 12rem 0 3rem;
	}

	.feature__stress-free-list {
		display: block;
		width: 55rem;
		margin: 4rem auto 0;
	}

	.feature__stress-free-list-sec {
		display: flex;
		align-items: center;
		width: auto;
		padding: 2rem;
		margin-top: 2rem;
		text-align: center;
		background-color: var(--primary-color);
		border-radius: 4rem 4rem .4rem 4rem;
	}

	.feature__stress-free-list-sec:first-child {
		margin-top: 0;
	}

	.feature__stress-free-list-sec .pic {
		width: 21rem;
		margin-right: 2rem;
	}

	.feature__stress-free-list-sec .pic img {
		border-radius: 2rem;
	}

	.feature__stress-free-list-sec .ttl {
		flex: 1;
		margin-top: 0;
		margin-bottom: -.2em;
		color: #fff;
		font-size: 3.1rem;
		text-align: left;
		line-height: 1.35;
		position: relative;
		z-index: 1;
	}

	.feature__stress-free-list-sec .ttl .large {
		font-size: 4.2rem;
	}

	.feature__stress-free-list-sec .ttl .balloon {
		width: 100%;
		padding: .25rem 2.5rem;
		margin-bottom: .5rem;
		font-size: 2.8rem;
		position: relative;
		top: 0;
		right:0;
		z-index: 1;
	}

	.feature__stress-free-list-sec .ttl .balloon:before {
		width: 3.2rem;
		height: 2.7rem;
		margin-top: -.7rem;
		right: 2.8rem;
	}

	.feature__stress-free-note {
		width: 55rem;
		margin: 2rem auto 0;
		font-size: 2rem;
	}

	.feature__stress-free-note li {
		text-align: left;
	}

	@media screen and (min-width:1921px){

		.c-feature:before {
			width: 100%;
			height: 34.688vw;
			background-size: 100% auto;
		}

		.c-feature:after {
			width: 100%;
			height: 34.688vw;
			background-size: 100% auto;
		}

	}

}


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

 c-reason

***********************************/
.c-reason {
	background: #F6F7F8;
	border-radius: 0 0 4rem 4rem;
	position: relative;
	z-index: 2;
}

.c-reason__inner {
	padding-top: 4rem;
	padding-bottom: 9.5rem;
}

.c-reason__so {
	margin-top: -.15em;
	color: var(--primary-color);
	font-size: 6.4rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
	position: relative;
	z-index: 1;
}

.c-reason__so:before {
	content: "";
	display: block;
	width: 24.1rem;
	height: 13.4rem;
	margin-top: 1rem;
	background: url(../images/top/reason_arr01.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-reason__ttl {
	margin-top: 5rem;
	color: var(--primary-color);
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
	line-height: 2;
}

.c-reason__ttl .list {
	display: inline-block;
	width: 12.1rem;
	margin-right: .8rem;
	color: #fff;
	line-height: 1.6;
	letter-spacing: normal;
	background: var(--primary-color);
	border-radius: 1rem;
}

.c-reason__ttl .large {
	display: inline-block;
	font-size: 3.8rem;
	letter-spacing: .16em;
}

.c-reason__service {
	padding: 4rem 3rem 3rem;
	margin-top: 3rem;
	background: #fff;
	border: .6rem solid var(--primary-color);
	border-radius: 2rem;
	position: relative;
	z-index: 1;
}

.c-reason__service:before {
	content: "";
	display: block;
	width: 16.75rem;
	height: 25.7rem;
	background: url(../images/top/reason_pic01.png) no-repeat center / contain;
	position: absolute;
	top: -17rem;
	right: -7.8rem;
	z-index: 1;
}

.c-reason__service-ttl {
	color: var(--primary-color);
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
}

.c-reason__service-ttl .block {
	padding: 0 3.5rem;
	position: relative;
	z-index: 1;
}

.c-reason__service-ttl .block:before {
	content: "";
	display: block;
	width: 2.25rem;
	height: 4.7rem;
	background: url(../images/top/reason_decoration01_pc.svg) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.c-reason__service-ttl .block:after {
	content: "";
	display: block;
	width: 2.25rem;
	height: 4.7rem;
	background: url(../images/top/reason_decoration02_pc.svg) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.c-reason__service-discount {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-top: 3.4rem;
	position: relative;
	z-index: 1;
}

.c-reason__service-discount-balloon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 39.56rem;
	height: 9.4rem;
	padding-right: 1.5rem;
	margin-right: 3rem;
	background: url(../images/top/reason_balloon_pc.svg) no-repeat center / contain;
	position: relative;
	z-index: 1;
}

.c-reason__service-discount-balloon .txt01 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
}

.c-reason__service-discount-balloon .txt01 .large {
	font-size: 2.4rem;
}

.c-reason__service-discount-box {
}

.c-reason__service-discount-box .txt01 {
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.4;
}

.c-reason__service-discount-box .txt01 .large01 {
	color: var(--primary-color);
	font-size: 6.2rem;
	font-weight: 800;
}

.c-reason__service-discount-box .txt01 .comma {
	font-weight: 500;
}

.c-reason__service-discount-box .txt01 .large02 {
	color: var(--primary-color);
	font-size: 5.4rem;
}

.c-reason .c-cv-btn-area {
	margin-top: 3.5rem;
}

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

	.c-reason {
		border-radius: 0 0 2rem 2rem;
	}

	.c-reason__inner {
		padding-top: 5rem;
		padding-bottom: 8rem;
	}

	.c-reason__so {
		margin-top: -.15em;
	}

	.c-reason__so:before {
		margin-top: 1rem;
	}

	.c-reason__ttl {
		margin-top: 5rem;
		font-size: 4.2rem;
	}

	.c-reason__ttl .list {
		width: 16rem;
		margin-right: 1.5rem;
	}

	.c-reason__ttl .large {
		font-size: 4.7rem;
		letter-spacing: normal;
	}

	.c-reason__service {
		padding: 3.2rem 4.4rem 3.2rem;
		margin-top: 5.5rem;
		border: .6rem solid var(--primary-color);
		border-radius: 4rem;
	}

	.c-reason__service:before {
		width: 15.8rem;
		height: 24.3rem;
		top: -15.7rem;
		right: -6.4rem;
	}

	.c-reason__service-ttl {
		font-size: 3.6rem;
		text-align: center;
		white-space: nowrap;
	}

	.c-reason__service-ttl .block {
		display: inline-block;
		padding: 0 6rem;
		text-align: center;
	}

	.c-reason__service-ttl .block:before {
		width: 5rem;
		height: 10.6rem;
		background: url(../images/top/reason_decoration01_sp.svg) no-repeat center / contain;
	}

	.c-reason__service-ttl .block:after {
		width: 5rem;
		height: 10.6rem;
		background: url(../images/top/reason_decoration02_sp.svg) no-repeat center / contain;
	}

	.c-reason__service-discount {
		display: block;
		margin-top: 3.4rem;
	}

	.c-reason__service-discount-balloon {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 54.9rem;
		height: 11rem;
		padding-right: 0;
		padding-bottom: 1.6rem;
		margin-right: 0;
		background: url(../images/top/reason_balloon_sp.svg) no-repeat center / contain;
	}

	.c-reason__service-discount-balloon .txt01 {
		font-size: 3.5rem;
		text-align: center;
	}

	.c-reason__service-discount-balloon .txt01 .large {
		font-size: 3.9rem;
	}

	.c-reason__service-discount-box {
	}

	.c-reason__service-discount-box .txt01 {
		margin: 0 -.5em;
		font-size: 4.3rem;
		text-align: center;
		letter-spacing: .03em;
	}

	.c-reason__service-discount-box .txt01 .large01 {
		font-size: 7.3rem;
	}

	.c-reason__service-discount-box .txt01 .large02 {
		font-size: 6.5rem;
	}

	.c-reason .c-cv-btn-area {
		margin-top: 3.5rem;
	}
}

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

 c-howto

***********************************/
.c-howto {
	margin-top: -4rem;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e3f6f9+0,caecf3+100 */
	background: linear-gradient(to bottom,  rgba(227,246,249,1) 0%,rgba(202,236,243,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	position: relative;
	z-index: 1;
}

.c-howto:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 50vw solid transparent;
	border-left: 50vw solid transparent;
	border-top: 10.1rem solid rgba(202,236,243,1);
	border-bottom: 0;
	margin-top: -.1rem;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-howto__inner {
	padding-top: 8.8rem;
	padding-bottom: 2.4rem;
}

.c-howto__head {
	width: 114rem;
	height: 18.1rem;
	background: url(../images/top/howto_ttl_bg01_pc.svg) no-repeat center / contain;
	position: relative;
	z-index: 1;
}

.c-howto__head-txt01 {
	color: var(--primary-color);
	font-size: 2.8rem;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	letter-spacing: .12em;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-howto__head-ttl {
	padding-top: 5.5rem;
	color: var(--primary-color);
	font-size: 3.8rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
}

.c-howto__head-ttl .large {
	font-size: 4.8rem;
}

.c-howto__sim {
	padding: 9rem 0 5rem;
	margin-top: 2rem;
	background: #fff;
	border-radius: 2rem;
	position: relative;
	z-index: 1;
}

.c-howto__sim:before {
	content: "";
	display: block;
	width: 14.7rem;
	height: 8.2rem;
	margin-top: -4rem;
	background: url(../images/top/howto_sim_arr01.svg) no-repeat center / contain;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-howto__sim-ttl {
	padding-bottom: .8rem;
	color: var(--primary-color);
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	background: url(../images/top/howto_sim_line01.svg) no-repeat center bottom / 37rem auto;
}

.c-howto__sim-desc {
	margin-top: 1.2rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
}

.c-howto__sim-content {
	width: 94.4rem;
	max-width: 100%;
	margin: 2.7rem auto 0;
}

.c-howto__balloon {
	padding: 1.35rem 1rem;
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	background: var(--primary-color);
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

.c-howto__balloon:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 2rem solid transparent;
	border-left: 2rem solid transparent;
	border-top: 1.5rem solid var(--primary-color);
	border-bottom: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-howto__sim-content-slider {
	margin-top: 5.3rem;
}

.c-howto__sim-content-slider-main {
	display: flex;
	justify-content: space-between;
}

.c-howto__sim-content-slider-main-section {
	width: 22rem;
}

.c-howto__sim-content-slider-main-section .inner {
	display: flex;
	flex-direction: column;
}

.c-howto__sim-content-slider-main-section .inner .num {
	padding: .6rem 1rem;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	background: #515F6D;
	border-radius: 1rem 1rem 0 0;
}

.c-howto__sim-content-slider-main-section .inner .body {
	flex: 1;
	padding: 1.8rem 1.5rem 2.8rem;
	background: #F6F7F8;
	border-radius: 0 0 1rem 1rem;
}

.c-howto__sim-content-slider-main-section .inner .body .box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.c-howto__sim-content-slider-main-section .inner .body .box .desc {
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.35714286;
}

.c-howto__sim-content-slider-main-section .inner .body .box .desc a {
	color: var(--primary-color);
}

.c-howto__sim-content-slider-main-section .inner .body .pic {
	width: 14.8rem;
	margin: 1rem auto 0;
}

.c-howto__sim-content-slider-main-section .inner .body .pic img {
	border-radius: 1rem;
}

.c-howto__step {
	padding: 9rem 0 5rem;
	margin-top: 6rem;
	background: #fff;
	border-radius: 2rem;
}

.c-howto__step-sub {
	color: var(--primary-color);
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}

.c-howto__step-ttl {
	padding-bottom: .8rem;
	margin-top: 1.5rem;
	color: var(--primary-color);
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	background: url(../images/top/howto_step_line01.svg) no-repeat center bottom / 25rem auto;
}

.c-howto__step-ttl .large {
	display: inline-block;
	font-size: 3.2rem;
	line-height: 1;
}

.c-howto__step-content {
	width: 94.4rem;
	max-width: 100%;
	margin: 2.7rem auto 0;
}

.c-howto__step-content-slider {
	margin-top: 5.3rem;
}

.c-howto__step-content-slider-main {
	display: flex;
	justify-content: space-between;
}

.c-howto__step-content-slider-main-section {
	width: 30rem;
}

.c-howto__step-content-slider-main-section .inner {
	display: flex;
	flex-direction: column;
}

.c-howto__step-content-slider-main-section .inner .num {
	padding: .6rem 1rem;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	background: #515F6D;
	border-radius: 1rem 1rem 0 0;
}

.c-howto__step-content-slider-main-section .inner .body {
	flex: 1;
	padding: 1.8rem 1.5rem 0;
	background: #F6F7F8;
	border-radius: 0 0 1rem 1rem;
}

.c-howto__step-content-slider-main-section .inner .body .box {
}

.c-howto__step-content-slider-main-section .inner .body .box .desc {
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.35714286;
}

.c-howto__step-content-slider-main-section .inner .body .box .desc a {
	color: var(--primary-color);
}

.c-howto__step-content-slider-main-section .inner .body .pic {
	width: 14.8rem;
	margin: 2.3rem auto 0;
}

.c-howto__step-content-slider-main-section .inner .body .pic img {
	border-radius: 1rem;
}

.c-howto__conclusion {
	margin-top: 3rem;
}

.c-howto__conclusion-txt01 {
	color: var(--primary-color);
	font-size: 6.4rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
	position: relative;
	z-index: 1;
}

.c-howto__conclusion-txt01:before {
	content: "";
	display: block;
	width: 24.1rem;
	height: 13.4rem;
	margin-top: 1rem;
	background: url(../images/top/reason_arr01.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-howto__conclusion-txt02 {
	margin-top: 4rem;
	color: var(--primary-color);
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.8;
}

.c-howto__conclusion-txt02 .large {
	font-size: 3.8rem;
}

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

	.c-howto {
		margin-top: -2rem;
	}

	.c-howto__inner {
		padding-top: 5rem;
		padding-bottom: 3rem;
	}

	.c-howto__head {
		width: 65rem;
		height: 18.1rem;
		background: url(../images/top/howto_ttl_bg01_sp.svg) no-repeat center / contain;
		position: relative;
		z-index: 1;
	}

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

	.c-howto__head-ttl {
		padding-top: 5.2rem;
		font-size: 4.8rem;
	}

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

	.c-howto__sim {
		padding: 5rem 0 5rem;
		margin-top: 2.8rem;
		border-radius: 4rem;
	}

	.c-howto__sim:before {
		width: 14.7rem;
		height: 8.2rem;
		margin-top: -4rem;
	}

	.c-howto__sim-ttl {
		padding-bottom: 0;
		font-size: 4.6rem;
		line-height: 1.3;
		background: none;
	}

	.c-howto__sim-ttl .block01 {
		display: block;
		padding-bottom: .1em;
		text-align: center;
		background: url(../images/top/howto_sim_line02.svg) no-repeat center bottom / 37rem auto;
	}

	.c-howto__sim-ttl .block02 {
		display: block;
		padding-bottom: .1em;
		text-align: center;
		background: url(../images/top/howto_sim_line03.svg) no-repeat center bottom / 31.2rem auto;
	}

	.c-howto__sim-desc {
		width: 55rem;
		margin: 2rem auto 0;
		font-size: 3.2rem;
		text-align: left;
	}

	.c-howto__sim-content {
		width: 55rem;
		margin: 4rem auto 0;
	}

	.c-howto__balloon {
		padding: 1.6rem 1rem;
		font-size: 3.2rem;
	}

	.c-howto__sim-content-slider {
		margin: 5.3rem -10rem 0;
		position: relative;
		z-index: 1;
	}

	.c-howto__sim-content-slider .slider-prev {
		width: 8.6rem;
		height: 8.6rem;
		background: url(../images/top/icon_slider_prev01.svg) no-repeat center / contain;
		border-radius: 50%;
		box-shadow: .4rem .4rem .6rem rgba(0, 0, 0, .2);
		position: absolute;
		top: 50%;
		left: 5.7rem;
		z-index: 2;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.c-howto__sim-content-slider .slider-next {
		width: 8.6rem;
		height: 8.6rem;
		background: url(../images/top/icon_slider_next01.svg) no-repeat center / contain;
		border-radius: 50%;
		box-shadow: .4rem .4rem .6rem rgba(0, 0, 0, .2);
		position: absolute;
		top: 50%;
		right: 5.7rem;
		z-index: 2;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.c-howto__sim-content-slider-main {
		display: flex;
		justify-content: space-between;
	}

	.c-howto__sim-content-slider-main .slick-list {
		margin-right: -2.5rem;
		margin-left: -2.5rem;
		/*padding-right: 5rem;*/
		box-sizing: content-box;
	}

	.c-howto__sim-content-slider-main .slick-list .slick-track {
		display: flex;
	}

	.c-howto__sim-content-slider-main-section {
		width: auto;
		height: auto !important;
		float: none !important;
		margin-right: 2.5rem;
		margin-left: 2.5rem;
	}

	.c-howto__sim-content-slider-main-section .inner {
		display: flex;
		flex-direction: column;
		width: 55rem;
	}

	.c-howto__sim-content-slider-main-section .inner .num {
		padding: 1.8rem 1rem;
		font-size: 3.2rem;
		border-radius: 1rem 1rem 0 0;
	}

	.c-howto__sim-content-slider-main-section .inner .body {
		flex: 1;
		padding: 4.8rem 2rem 9rem;
		border-radius: 0 0 1rem 1rem;
	}

	.c-howto__sim-content-slider-main-section .inner .body .box {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.c-howto__sim-content-slider-main-section .inner .body .box .desc {
		font-size: 2.8rem;
	}

	.c-howto__sim-content-slider-main-section .inner .body .box .desc a {
		color: var(--primary-color);
	}

	.c-howto__sim-content-slider-main-section .inner .body .pic {
		width: 37rem;
		margin: 3rem auto 0;
		text-align: center;
	}

	.c-howto__step {
		padding: 5rem 0 6rem;
		margin-top: 8.2rem;
		border-radius: 4rem;
	}

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

	.c-howto__step-ttl {
		padding-bottom: .8rem;
		margin-top: 1rem;
		font-size: 4.6rem;
		letter-spacing: normal;
		background: url(../images/top/howto_step_line02.svg) no-repeat center bottom / 40.3rem auto;
	}

	.c-howto__step-ttl .large {
		font-size: 5.6rem;
	}

	.c-howto__step-content {
		width: 55rem;
		margin: 5rem auto 0;
	}

	.c-howto__step-content-slider {
		margin: 5.3rem -10rem 0;
		position: relative;
		z-index: 1;
	}

	.c-howto__step-content-slider .slider-prev {
		width: 8.6rem;
		height: 8.6rem;
		background: url(../images/top/icon_slider_prev01.svg) no-repeat center / contain;
		border-radius: 50%;
		box-shadow: .4rem .4rem .6rem rgba(0, 0, 0, .2);
		position: absolute;
		top: 50%;
		left: 5.7rem;
		z-index: 2;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.c-howto__step-content-slider .slider-next {
		width: 8.6rem;
		height: 8.6rem;
		background: url(../images/top/icon_slider_next01.svg) no-repeat center / contain;
		border-radius: 50%;
		box-shadow: .4rem .4rem .6rem rgba(0, 0, 0, .2);
		position: absolute;
		top: 50%;
		right: 5.7rem;
		z-index: 2;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.c-howto__step-content-slider-main {
		display: flex;
		justify-content: space-between;
	}

	.c-howto__step-content-slider-main .slick-list {
		margin-right: -2.5rem;
		margin-left: -2.5rem;
		/*padding-right: 5rem;*/
		box-sizing: content-box;
	}

	.c-howto__step-content-slider-main .slick-list .slick-track {
		display: flex;
	}

	.c-howto__step-content-slider-main {
		display: flex;
		justify-content: space-between;
	}

	.c-howto__step-content-slider-main .slick-list {
	}

	.c-howto__step-content-slider-main .slick-list .slick-track {
		display: flex;
	}

	.c-howto__step-content-slider-main-section {
		width: auto;
		height: auto !important;
		float: none !important;
		margin-right: 2.5rem;
		margin-left: 2.5rem;
	}

	.c-howto__step-content-slider-main-section .inner {
		display: flex;
		flex-direction: column;
		width: 55rem;
	}

	.c-howto__step-content-slider-main-section .inner .num {
		padding: 1.8rem 1rem;
		font-size: 3.2rem;
		border-radius: 1rem 1rem 0 0;
	}

	.c-howto__step-content-slider-main-section .inner .body {
		flex: 1;
		padding: 3rem 2rem 0;
		background: #F6F7F8;
		border-radius: 0 0 1rem 1rem;
	}

	.c-howto__step-content-slider-main-section .inner .body .box {
	}

	.c-howto__step-content-slider-main-section .inner .body .box .desc {
		font-size: 2.8rem;
	}

	.c-howto__step-content-slider-main-section .inner .body .box .desc a {
		color: var(--primary-color);
	}

	.c-howto__step-content-slider-main-section .inner .body .pic {
		width: 27.3rem;
		margin: 3.5rem auto 0;
	}

	.c-howto__conclusion {
		margin-top: 3.5rem;
	}

	.c-howto__conclusion-txt01 {
	}

	.c-howto__conclusion-txt01:before {
		margin-top: 1rem;
	}

	.c-howto__conclusion-txt02 {
		margin-top: 4rem;
		font-size: 4rem;
		line-height: 1.5;
	}

	.c-howto__conclusion-txt02 .large {
		display: inline-block;
		margin-top: 2rem;
		font-size: 6.4rem;
		line-height: 1.3;
	}

	.c-howto__conclusion-txt02 .dot {
		position: relative;
		z-index: 1;
	}

	.c-howto__conclusion-txt02 .dot:before {
		content: "";
		display: block;
		width: .8rem;
		height: .8rem;
		background: var(--primary-color);
		border-radius: 50%;
		position: absolute;
		top: 0;
		left: 50%;
		z-index: 1;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}
}


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

 c-more

***********************************/
.c-more {
}

.c-more__inner {
	padding-top: 15rem;
	padding-bottom: 4rem;
}

.c-more__so {
	margin-top: -.15em;
	color: var(--primary-color);
	font-size: 6.4rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
	position: relative;
	z-index: 1;
}

.c-more__so:before {
	content: "";
	display: block;
	width: 24.1rem;
	height: 13.4rem;
	margin-top: 1rem;
	background: url(../images/top/more_arr01.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-more__ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3.5rem;
	color: var(--primary-color);
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

.c-more__ttl-txt01 {
	display: block;
	margin-right: .5em;
}

.c-more__ttl-txt02 {
	display: block;
	font-size: 4.8rem;
}

.c-more__discount {
	padding: 3.5rem 3rem 3rem;
	margin-top: 2rem;
	background: #fff;
	border: .6rem solid var(--primary-color);
	border-radius: 2rem;
	position: relative;
	z-index: 1;
}

.c-more__discount-ttl {
	font-size: 4.2rem;
	font-weight: bold;
	text-align: center;
}

.c-more__discount-ttl .block {
	padding: 0 5.5rem;
	position: relative;
	z-index: 1;
}

.c-more__discount-ttl .block:before {
	content: "";
	display: block;
	width: 2.25rem;
	height: 4.7rem;
	background: url(../images/top/more_decoration01_pc.svg) no-repeat center / contain;
	position: absolute;
	bottom: 1rem;
	left: 0;
	z-index: 1;
}

.c-more__discount-ttl .block:after {
	content: "";
	display: block;
	width: 2.25rem;
	height: 4.7rem;
	background: url(../images/top/more_decoration02_pc.svg) no-repeat center / contain;
	position: absolute;
	bottom: 1rem;
	right: 0;
	z-index: 1;
}

.c-more__discount-txt01 {
	margin-top: 2rem;
	font-size: 6.1rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}

.c-more__discount-txt01 .large01 {
	color: var(--primary-color);
	font-size: 9.1rem;
	font-weight: 800;
}

.c-more__discount-txt01 .comma {
	font-weight: 500;
}

.c-more__discount-txt01 .large02 {
	color: var(--primary-color);
	font-size: 8.3rem;
}

.c-more__discount-txt02 {
	margin-top: 3rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.875;
}

.c-more__discount-txt02 .strong {
	color: var(--primary-color);
	font-weight: bold;
}

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

	.c-more__inner {
		padding-top: 15rem;
		padding-bottom: 4rem;
	}

	.c-more__so {
		margin-top: -.15em;
		font-size: 6.4rem;
	}

	.c-more__so:before {
		margin-top: 1rem;
	}

	.c-more__ttl {
		display: block;
		margin-top: 5.5rem;
		font-size: 4rem;
	}

	.c-more__ttl-txt01 {
		margin-right: 0;
		text-align: center;
	}

	.c-more__ttl-txt02 {
		font-size: 6.4rem;
		text-align: center;
		line-height: 1.4;
	}

	.c-more__discount {
		padding: 5rem 4.4rem 5rem;
		margin-top: 3rem;
		border: .6rem solid var(--primary-color);
		border-radius: 4rem;
	}

	.c-more__discount-ttl {
	}

	.c-more__discount-ttl .block {
		padding: 0 6rem;
	}

	.c-more__discount-ttl .block:before {
		width: 2.537rem;
		height: 5.3rem;
		background: url(../images/top/more_decoration01_sp.svg) no-repeat center / contain;
		bottom: 1rem;
	}

	.c-more__discount-ttl .block:after {
		width: 2.537rem;
		height: 5.3rem;
		background: url(../images/top/more_decoration02_sp.svg) no-repeat center / contain;
		bottom: 1rem;
	}

	.c-more__discount-txt01 {
		margin: 2rem -.5em 0;
		font-size: 4.5rem;
		letter-spacing: .01em;
	}

	.c-more__discount-txt01 .large01 {
		font-size: 7.5rem;
	}

	.c-more__discount-txt01 .large02 {
		font-size: 6.7rem;
	}

	.c-more__discount-txt02 {
		margin-top: 4rem;
		font-size: 3.2rem;
		text-align: left;
		line-height: 1.3125;
		letter-spacing: .14em;
	}

	.c-more__discount-txt02 .strong {
		color: var(--primary-color);
		font-weight: bold;
	}
}


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

 c-cv

***********************************/
.c-cv {
	background: var(--primary-color);
	border-radius: 4rem;
	position: relative;
	z-index: 2;
}

.c-cv__inner {
	padding: 6rem 0 6.6rem;
}

.c-cv__ttl {
	color: #fff;
	font-size: 4.2rem;
	font-weight: bold;
	text-align: center;
}

.c-cv__desc {
	margin-top: 2rem;
	color: #fff;
	font-size: 2.7rem;
	font-weight: bold;
	text-align: center;
}

.c-cv .c-cv-btn-area {
	margin-top: 3.5rem;
}

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

	.c-cv {
		border-radius: 4rem;
	}

	.c-cv__inner {
		padding: 4.4rem 0 7rem;
	}

	.c-cv__ttl {
		padding-bottom: 4rem;
		font-size: 5.4rem;
		background: url(../images/top/cv_line01.svg) no-repeat center bottom / 64.7rem 2.45rem;
	}

	.c-cv__desc {
		margin-top: 1rem;
		font-size: 4rem;
	}

	.c-cv .c-cv-btn-area {
		margin-top: 3.5rem;
	}
}


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

 c-faq

***********************************/
.c-faq {
	margin-top: -4rem;
	background: #F6F7F8;
}

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

.c-faq__ttl {
	color: var(--primary-color);
	font-size: 3.8rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
}

@media screen and (max-width:767px){
	.c-faq {
		margin-top: -4rem;
	}

	.c-faq__inner {
		padding: 12rem 0 7.5rem;
	}

	.c-faq__ttl {
		font-size: 6.4rem;
	}

}


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

 c-company

***********************************/
.c-company {
	background: #F6F7F8;
}

.c-company__inner {
	padding: 10rem 0 13rem;
}

.c-company__content {
	margin-top: 7rem;
	border-top: .1rem solid var(--primary-color);
}

.c-company__content dl {
	display: flex;
	padding: 3.75rem 0;
	border-bottom: .1rem solid var(--primary-color);
}

.c-company__content dl dt {
	width: 23rem;
	color: var(--primary-color);
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 2.2;
}

.c-company__content dl dd {
	flex: 1;
	font-size: 1.6rem;
	line-height: 2.2;
}

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

	.c-company__inner {
		padding: 8.2rem 0 13.6rem;
	}

	.c-company__content {
		margin-top: 8.7rem;
	}

	.c-company__content dl {
		padding: 3.75rem 0;
	}

	.c-company__content dl dt {
		width: 20rem;
		margin-right: 2rem;
		font-size: 3.6rem;
		line-height: 1.68;
	}

	.c-company__content dl dd {
		padding-top: .2em;
		font-size: 3.2rem;
		line-height: 1.5;
	}
}


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

 c-privacy

***********************************/
.c-privacy {
	background: #F6F7F8;
}

.c-privacy__inner {
	padding: 10rem 0 13rem;
}

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

.c-privacy__sign p {
	text-align: right;
	line-height: 1.8;
}

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

.c-privacy__content-sec {
	margin-top: 5rem;
}

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

.c-privacy__content-sec-ttl {
	color: var(--primary-color);
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.8;
}

.c-privacy__content-sec-box {
	margin-top: 2rem;
}

.c-privacy__content-sec-box p {
	margin-top: 1.25em;
	line-height: 1.4;
}

.c-privacy__content-sec-box p:first-child,
.c-privacy__content-sec-box p.mt0 {
	margin-top: 0;
}

.c-privacy__content-sec-box ul {
	margin-top: 1.25em;
	line-height: 1.4;
}

.c-privacy__content-sec-box ul:first-child,
.c-privacy__content-sec-box ul.mt0 {
	margin-top: 0;
}

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

	.c-privacy__inner {
		padding: 8.2rem 0 13.6rem;
	}

	.c-privacy__sign {
		margin-top: 9rem;
	}

	.c-privacy__sign p {
		font-size: 3.2rem;
	}

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

	.c-privacy__content-sec {
		margin-top: 10rem;
	}

	.c-privacy__content-sec-ttl {
		font-size: 4rem;
		line-height: 1.5;
	}

	.c-privacy__content-sec-box {
		margin-top: 4rem;
	}

	.c-privacy__content-sec-box a.sp-default {
		text-decoration: none;
	}

	.c-privacy__content-sec-box a.primary-color {
		color: var(--primary-color);
	}

	.c-privacy__content-sec-box a.sp-small {
		letter-spacing: normal;
	}

	.c-privacy__content-sec-box p {
		margin-top: 1.25em;
		font-size: 3.2rem;
		line-height: 1.4;
	}

	.c-privacy__content-sec-box p:first-child,
	.c-privacy__content-sec-box p.mt0 {
		margin-top: 0;
	}

	.c-privacy__content-sec-box ul {
		margin-top: 1.25em;
		line-height: 1.4;
	}

	.c-privacy__content-sec-box ul:first-child,
	.c-privacy__content-sec-box ul.mt0 {
		margin-top: 0;
	}
}


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

 xxx

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

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

}

