@charset "utf-8";

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

html {
	font-size: 10px;
}

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

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

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

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



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

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


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

 general

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

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

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

 parts

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

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


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

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

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

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

 anime-text-link

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

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

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

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

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

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

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

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

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

 layout

***********************************/
.l-wrap {
	overflow: hidden;
}

.l-wrap.top {
	padding-bottom: 10rem;
}

.l-main {
}

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

.l-wrap.top .l-pageTop {
	bottom: 14rem;
}

.l-pageTop a {
	display: block;
}

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

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

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

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

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

	.l-wrap.top .l-pageTop {
		bottom: 14rem;
	}
}

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

 l-header

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

.l-header__logo {
	width: 14.6rem;
}

.l-header__logo a,
.l-header__logo img {
	display: block;
}

.l-header__contact {
	margin-bottom: 1.8rem;
}

.l-header__contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.5rem;
	padding: .6rem 2rem 0;
	background: #00468d;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

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

.l-header__contact a .balloon {
	display: block;
	padding: .3rem 1.2rem;
	color: #000000;
	font-size: 1.1rem;
	font-weight: bold;
	white-space: nowrap;
	background: #fee400;
	border-radius: .7rem;
	position: absolute;
	top: -1.3rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-header__contact a .icon {
	padding-left: 3.4rem;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

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


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

	.l-header {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 13.7rem;
		padding: 0 3.5rem;
	}

	.l-header__logo {
		width: 17.6rem;
	}

	.l-header__contact {
		display: none;
	}
}

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

 l-fixed-contents-pc

***********************************/
.l-fixed-contents-pc {
	display: none;
	width: 100%;
	background: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
}

.l-fixed-contents-pc__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10rem;
	border-top: .3rem solid #00468d;
}

.l-fixed-contents-pc__logo {
	width: 11.7rem;
	margin-right: 5rem;
}

.l-fixed-contents-pc__logo a,
.l-fixed-contents-pc__logo img {
	display: block;
}

.l-fixed-contents-pc__box {
	margin-right: 4rem;
}

.l-fixed-contents-pc__box-txt01 {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 900;
}

.l-fixed-contents-pc__box-txt01 .block {
	display: inline-block;
	padding: .3rem 1.2rem;
	background: #ff0059;
	border-radius: 1rem;
}

.l-fixed-contents-pc__box-copy {
	margin-top: .2em;
	margin-bottom: -.3em;
	font-size: 2rem;
	font-weight: 900;
}

.l-fixed-contents-pc__contact {
	margin-top: .5rem;
}

.l-fixed-contents-pc__contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.5rem;
	padding: .6rem 2rem 0;
	background: #00468d;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

	.l-fixed-contents-pc__contact a:hover {
		box-shadow: 0 .3rem .3rem rgba(0,0,0,.15);
		transform: translateY(-.3rem);
		filter: brightness(1.1);
	}
}

.l-fixed-contents-pc__contact a .balloon {
	display: block;
	padding: .3rem 1.2rem;
	color: #000000;
	font-size: 1.1rem;
	font-weight: bold;
	white-space: nowrap;
	background: #fee400;
	border-radius: .7rem;
	position: absolute;
	top: -1.3rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-fixed-contents-pc__contact a .icon {
	padding-left: 3.4rem;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

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

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

 l-fixed-contents-sp

***********************************/
.l-fixed-contents-sp {
	display: none;
	width: 100%;
	background: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
}

.l-fixed-contents-sp__inner {

}

.l-fixed-contents-sp__contact {

}

.l-fixed-contents-sp__contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 11rem;
	padding: 1.6rem 2rem 0;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0061c1+0,00468c+100 */
	background: linear-gradient(to bottom,  rgba(0,97,193,1) 0%,rgba(0,70,140,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	position: relative;
	z-index: 1;
}

.l-fixed-contents-sp__contact a .balloon {
	display: block;
	padding: .3rem 1.2rem;
	color: #000000;
	font-size: 2.4rem;
	font-weight: bold;
	white-space: nowrap;
	background: #fee400;
	border-radius: 1.5rem;
	position: absolute;
	top: -2.4rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-fixed-contents-sp__contact a .icon {
	padding-left: 5.4rem;
	color: #fff;
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

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

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

 l-footer

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

}

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

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

.l-footer__logo a,
.l-footer__logo img {
	display: block;
}

.l-footer__copy {
	margin-top: 4rem;
	color: #aaaaaa;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

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

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

	.l-footer__logo {
		width: 17.6rem;
	}

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

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

 c-title01

***********************************/
.c-title01 {
	margin-block: var(--leading-trim);
	font-size: 4.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-title01 .large {
	font-size: 4.6rem;
	font-weight: 900;
}

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

	.c-title01 {
		font-size: 4.2rem;
	}
}

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

 c-sub-hero

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

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

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

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

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

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

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

 c-btn01

***********************************/
a.c-btn01 {
	display: block;
	width: 100%;
	padding: 2rem 1.5rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: var(--text-letter-spacing-base);
	border-radius: 100px;
	box-shadow:0 .5rem 0 0 #00264d;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0061c1+0,00468c+100 */
	background: linear-gradient(to bottom,  rgba(0,97,193,1) 0%,rgba(0,70,140,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

@media (hover: hover) {

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

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

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

	@media (hover: hover) {

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

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

 c-form

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

.c-form:before {
}

.c-form__content {
}

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

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

.c-form__content dl dt .inner {
	display: flex;
	width: 100%;
	line-height: 1.5;
}

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

.c-form__content dl dt .inner .require,
.c-form__content dl dt .inner .any {
	margin-left: .25em;
	color: #ff0059;
	font-size: 1.8rem;
	font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-form__submit button,
.c-form__submit input,
.c-form__confirmBtn__btn .submit {
	display: block;
	width: 100%;
	padding: 2.2rem 1.5rem;
	color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: .07em;
	border-radius: 100px;
	box-shadow:0 .5rem 0 0 #00264d;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0061c1+0,00468c+100 */
	background: linear-gradient(to bottom,  rgba(0,97,193,1) 0%,rgba(0,70,140,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.c-form__confirmBtn__btn {
	width: 34rem;
}

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

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


@media (hover: hover) {

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

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

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

	.c-form__confirmBtn__btn .back:hover {
		transform: translateY(.5rem);
		box-shadow: 0 0 0 0 #333333;
		filter: brightness(1.1);
	}
}

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

	.c-form__content {
	}

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

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

	.c-form__content dl dt .inner {
		justify-content: center;
		width: auto;
		position: relative;
	}

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

	.c-form__content dl dt .inner .require,
	.c-form__content dl dt .inner .any {
		font-size: 2.8rem;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.c-form__confirmBtn {
		justify-content: space-between;
		margin-top: 4.5rem;
	}

	.c-form__confirmBtn__btn {
		width: 47.5%;
	}

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

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


	@media (hover: hover) {

		.c-form__submit button:hover,
		.c-form__submit input:hover,
		.c-form__confirmBtn__btn .submit:hover {
			transform: translateY(.7rem);
			box-shadow: 0 0 0 0 #00264d;
		}

		.c-form__confirmBtn__btn .back:hover {
			transform: translateY(.7rem);
			box-shadow: 0 0 0 0 #333333;
		}
	}

}


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

 c-faq-list

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

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

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

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

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

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

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

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

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

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

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

	.c-faq-list {
	}

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

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

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

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

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

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

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

}


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

 c-faq-list-acc

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

.c-faq-list-acc dl {
	padding-left: 3rem;
	border-bottom: 1px solid #dddddd;
}

.c-faq-list-acc dl:first-child {
	border-top: 1px solid #dddddd;
}

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

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

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

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

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

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

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

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

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

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

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

.c-faq-list-acc dl dd .cont p {
	padding-right: 8rem;
}

.c-faq-list-acc dl dd .cont ul {
	padding-right: 8rem;
}

.c-faq-list-acc dl dd .cont ul li {
	text-indent: -1.15em;
	margin-left: 1.15em;
}

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

	.c-faq-list-acc {
		width: 60rem;
		max-width: 100%;
		margin: 5.5rem auto 0;
	}

	.c-faq-list-acc dl {
		padding-left: 0;
		border-bottom: .2rem solid #dddddd;
	}

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

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

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

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

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

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

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

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

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

	.c-faq-list-acc dl dd .cont p {
		padding-right: 0;
	}

}


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

 c-table-style01

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

}

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

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

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

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

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

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

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

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

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

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

 c-2column-list

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




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

 c-3column-list

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

 c-completeSec

***********************************/
.c-completeSec {
	background: #f7f9f4;
}

.c-completeSec__inner {
	padding: 7.5rem 0 9rem;
}

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

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


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

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

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

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



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

 c-hero

***********************************/
.c-hero {
	background: url(../images/hero_bg01_pc.jpg) no-repeat center top / cover;
}

.c-hero__inner {
	width: 127rem;
	padding: 10.8rem 0 9.6rem;
	position: relative;
	z-index: 1;
}

.c-hero__content {

}

.c-hero__content-txt01 {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 900;
}

.c-hero__content-txt01 .block {
	display: inline-block;
	padding: .5rem 2rem;
	background: #ff0059;
	border-radius: 1.5rem;
}

.c-hero__content-ttl {
	margin-top: 2rem;
	font-size: 7.2rem;
	font-weight: 900;
	line-height: 1.45;
}

.c-hero__content-desc {
	margin-top: 2rem;
	font-size: 2rem;
	font-weight: bold;
}

.c-hero__content-feature {
	display: flex;
	gap: 0 3rem;
	margin-top: 4rem;
}

.c-hero__content-feature li {
	padding: 2.5rem 3.5rem 2rem;
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 .3rem 0 rgba(0, 0, 0, .2);
	position: relative;
	z-index: 1;
}

.c-hero__content-feature li .num {
	width: 2.6rem;
	height: 2.6rem;
	line-height: 2.6rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	background: #ff0059;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-hero__content-feature li .txt01 {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}

.c-hero__content-feature li .txt02 {
	font-size: 2.8rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.6;
}

.c-hero__content-feature li .txt02 .large {
	display: inline-block;
	font-size: 4.6rem;
	font-weight: bold;
	line-height: .8;
}

.c-hero__content-feature li .txt02 .en {
	font-size: 2.2rem;
}

.c-hero__contact {
	margin-top: 5.3rem;
	font-size: 2.6rem;
	font-weight: 900;
}

.c-hero__contact a {
	display: inline-block;
	padding: 1.9rem 4rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0061c1+0,00468c+100 */
	background: linear-gradient(to bottom,  rgba(0,97,193,1) 0%,rgba(0,70,140,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 20rem;
	box-shadow: 0 .5rem 0 #00254a;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

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

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

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

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

.c-hero__pic {
	width: 60.5rem;
	position: absolute;
	top: 12.8rem;
	right: 0;
	z-index: -1;
}

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

	.c-hero {
		background: #f7f9f4 url(../images/hero_bg01_sp.jpg) no-repeat center top / 100% auto;
	}

	.c-hero__inner {
		width: auto;
		padding: 14.7rem 0 8rem;
	}

	.c-hero__content {

	}

	.c-hero__content-txt01 {
		margin: 0 -2.5rem;
		font-size: 3.2rem;
		text-align: center;
	}

	.c-hero__content-txt01 .block {
		display: inline-block;
		padding: .3rem 1.5rem;
		background: #ff0059;
		border-radius: 2rem;
	}

	.c-hero__content-ttl {
		margin-top: 2.5rem;
		font-size: 6.2rem;
		text-align: center;
	}

	.c-hero__content-desc {
		margin-top: 2.5rem;
		font-size: 2.8rem;
		text-align: center;
	}

	.c-hero__content-feature {
		display: flex;
		justify-content: center;
		gap: 0 4rem;
		margin-top: 5rem;
	}

	.c-hero__content-feature li {
		width: 26rem;
		padding: 3rem 1.5rem 2rem;
		background: #fff;
		border-radius: 1.5rem;
		box-shadow: 0 .3rem 0 rgba(0, 0, 0, .2);
		position: relative;
		z-index: 1;
	}

	.c-hero__content-feature li .num {
		width: 3.9rem;
		height: 3.9rem;
		line-height: 3.9rem;
		font-size: 2.1rem;
	}

	.c-hero__content-feature li .txt01 {
		font-size: 2.8rem;
	}

	.c-hero__content-feature li .txt02 {
		margin-top: .5rem;
		font-size: 3.8rem;
	}

	.c-hero__content-feature li .txt02 .large {
		font-size: 8.6rem;
		line-height: .8;
	}

	.c-hero__content-feature li .txt02 .en {
		font-size: 3.2rem;
	}

	.c-hero__contact {
		margin-top: 6.3rem;
		font-size: 3.6rem;
		text-align: center;
	}

	.c-hero__contact a {
		padding: 2.3rem 4rem;
		box-shadow: 0 .7rem 0 #00254a;
	}

	@media (hover: hover) {

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

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

	.c-hero__contact a:before {
		width: 11.2rem;
		height: 11.2rem;
		background: url(../images/hero_balloon01_sp.png) no-repeat center / contain;
		top: -8rem;
		right: -2rem;
	}

	.c-hero__contact a .icon {
		padding-left: 5.6rem;
	}

	.c-hero__contact a .icon:before {
		width: 4.1rem;
		height: 3rem;
	}

	.c-hero__pic {
		width: 48rem;
		margin: 4.7rem auto 0;
		text-align: center;
		position: static;
	}
}



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

 c-trouble

***********************************/
.c-trouble {
	background: url(../images/trouble_bg01_pc.jpg) no-repeat center bottom / 256rem auto;
}

@supports (background-image: url("../images/trouble_bg01_pc.webp")) {
	.c-trouble {
		background-image: url(../images/trouble_bg01_pc.webp);
	}
}

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

.c-trouble__feature {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5.7rem 4.5rem;
	margin: 7rem auto 0;
}

.c-trouble__feature li {
	padding: 2.5rem 3.5rem 2rem;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 .3rem 0 rgba(0, 0, 0, .05);
	position: relative;
	z-index: 1;
}

.c-trouble__feature li:before {
	content: "";
	display: block;
	width: 3.4rem;
	height: 3.2rem;
	background: url(../images/trouble_check01.png) no-repeat center / contain;
	position: absolute;
	top: -1.7rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-trouble__box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110rem;
	height: 51rem;
	margin: -7rem auto -25rem;
	background: url(../images/trouble_bg02_pc.png) no-repeat center / contain;
}

.c-trouble__box-inner {

}

.c-trouble__box-txt01 {
	color: #fff;
	font-size: 4.6rem;
	font-weight: 900;
	line-height: calc(78 / 52);
	text-align: center;
	text-shadow: 0 .3rem 0 rgba(0, 0, 0, .3);
}

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

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

	.c-trouble {
		background-size: 100% auto;
	}
}

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

	.c-trouble {
		background: url(../images/trouble_bg01_sp.jpg) no-repeat center bottom / 256rem auto;
	}

	@supports (background-image: url("../images/trouble_bg01_sp.webp")) {
		.c-trouble {
			background-image: url(../images/trouble_bg01_sp.webp);
		}
	}

	.c-trouble__inner {
		padding: 6.5rem 0 .1rem;
	}

	.c-trouble__feature {
		display: block;
		width: 64rem;
		margin: 7.5rem auto 0;
	}

	.c-trouble__feature li {
		margin-top: 5.3rem;
		padding: 4rem 2rem 2.5rem;
		font-size: 3.2rem;
		border-radius: 2rem;
	}

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

	.c-trouble__feature li:before {
		width: 5rem;
		height: 4.8rem;
		top: -2rem;
	}

	.c-trouble__box {
		display: flex;
		justify-content: center;
		align-items: center;
		width: auto;
		height: 72.4rem;
		margin: -8rem -3.5rem -64.4rem;
		padding-bottom: 17rem;
		background: url(../images/trouble_bg02_sp.png) no-repeat center / contain;
	}

	.c-trouble__box-inner {

	}

	.c-trouble__box-txt01 {
		line-height: calc(85 / 50);
	}

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



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

 c-reason

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

.c-reason__inner {
	padding: 29rem 0 9rem;
}

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

.c-reason__list-sec {
	width: 36rem;
}

.c-reason__list-content {
	padding: 2.3rem 2.8rem 2rem;
	background: #fff;
	border: .2rem solid #dddddd;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

.c-reason__list-content:before {
	content: "";
	display: block;
	width: 11rem;
	height: 2.2rem;
	background: url(../images/reason_arr01_pc.png) no-repeat center / contain;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-reason__list-content .num {
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	margin-top: -.1rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	background: #ff0059;
	border-radius: 1rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-reason__list-content .pic {
}

.c-reason__list-content .ttl {
	margin: 1rem -.5em 0;
	color: #ff0059;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	line-height: calc(35.2 / 22);
}

.c-reason__list-content .desc {
	margin-top: .8rem;
}

.c-reason__list-result {
	margin-top: 3rem;
	padding: 1.2rem 2.8rem 2rem;
	background: #fff9fb;
	border: .2rem solid #ff0059;
	border-radius: 1.5rem;
}

.c-reason__list-result p {
	font-size: 2rem;
	font-weight: bold;
}

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

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

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

	.c-reason__list-sec {
		width: auto;
		margin-top: 8.5rem;
	}

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

	.c-reason__list-content {
		padding: 3.9rem 3.7rem 3rem;
		border: .3rem solid #dddddd;
		border-radius: 2rem;
	}

	.c-reason__list-content:before {
		width: 18.3rem;
		height: 3.6rem;
		background: url(../images/reason_arr01_sp.png) no-repeat center / contain;
	}

	.c-reason__list-content .num {
		width: 4.8rem;
		height: 4.8rem;
		line-height: 4.8rem;
		margin-top: -.15rem;
		font-size: 2.8rem;
		border-radius: 1.5rem;
	}

	.c-reason__list-content .ttl {
		margin-top: 2rem;
		font-size: 3.6rem;
	}

	.c-reason__list-content .desc {
		margin-top: 1.5rem;
	}

	.c-reason__list-result {
		margin-top: 5.3rem;
		padding: 2.4rem 2.8rem 2.4rem;
		border: .3rem solid #ff0059;
		border-radius: 2rem;
	}

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

}



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

 c-service

***********************************/
.c-service {
	background: #f7f9f4;
}

.c-service__inner {
	padding: 7rem 0 9rem;
}

.c-service__table {
}

.c-service__table table {
	width: 100%;
	margin-top: 5.5rem;
	border-spacing: 0;
}

.c-service__table table thead tr th {
	width: 45rem;
	padding: .9rem 1rem;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
	background: #00468d;
	border-right: .1rem solid #002851;
}

.c-service__table table thead tr th:first-child {
	width: 30rem;
	border-left: .2rem solid #00468d;
	border-radius: 1.5rem 0 0 0;
}

.c-service__table table thead tr th:last-child {
	border-right: .2rem solid #00468d;
	border-radius: 0 1.5rem 0 0;
}

.c-service__table table thead tr th .small {
	font-size: 1.4rem;
}

.c-service__table table tbody tr th {
	padding: 2.5rem 1rem 2.5rem 1.7rem;
	color: #00468d;
	font-weight: bold;
	background: #fff;
	border-left: .2rem solid #00468d;
	border-right: .1rem solid #cccccc;
	border-bottom: .1rem solid #cccccc;
}

.c-service__table table tbody tr:last-child th {
	border-bottom: .2rem solid #00468d;
	border-radius: 0 0 0 1.5rem;
}

.c-service__table table tbody tr td {
	padding: 2.5rem 2rem;
	background: #fff;
	border-right: .1rem solid #cccccc;
	border-bottom: .1rem solid #cccccc;
}

.c-service__table table tbody tr:last-child td {
	border-bottom: .2rem solid #00468d;
}

.c-service__table table tbody tr td:last-child {
	border-right: .2rem solid #00468d;
}

.c-service__table table tbody tr:last-child td:last-child {
	border-right: .2rem solid #00468d;
	border-radius: 0 0 1.5rem 0;
}

.c-service__table table tbody tr td .guideline {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.c-service__table table tbody tr td .guideline dt {
	margin-right: 1rem;
	padding: 0 .8rem;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	background: #00468d;
	border-radius: .5rem;
}

.c-service__table table tbody tr td .guideline dd {
	flex: 1;
	font-weight: bold;
	line-height: 1;
}

.c-service__table table tbody tr td .guideline dd .num {
	font-size: 2.8rem;
}

.c-service__table table tbody tr td .desc {
}

.c-service__table table tbody tr td .desc--small {
	font-size: 1.4rem;
}

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

	.c-service__inner {
		padding: 7rem 0 8rem;
	}

	.c-service__table {
		margin: 0 -3.5rem;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.c-service__table table {
		width: 159.5rem;
		margin-top: 5.5rem;
		border-spacing: 0;
	}

	.c-service__table table thead tr th {
		width: 53.5rem;
		padding: 1.4rem 1rem;
		font-size: 3rem;
		border-right: .1rem solid #002851;
	}

	.c-service__table table thead tr th:first-child {
		width: 45rem;
		border-left: .2rem solid #00468d;
		border-radius: 0;
	}

	.c-service__table table thead tr th:last-child {
		width: 61rem;
		border-right: .2rem solid #00468d;
		border-radius: 0;
	}

	.c-service__table table thead tr th .small {
		font-size: 2.1rem;
	}

	.c-service__table table tbody tr th {
		padding: 3rem 1rem 3rem 2rem;
		font-size: 2.7rem;
	}

	.c-service__table table tbody tr:last-child th {
		border-radius: 0;
	}

	.c-service__table table tbody tr td {
		padding: 3rem 3rem;
		font-size: 2.7rem;
	}

	.c-service__table table tbody tr:last-child td:last-child {
		border-radius: 0;
	}

	.c-service__table table tbody tr td .guideline {
		display: flex;
		align-items: center;
		margin-bottom: 1rem;
	}

	.c-service__table table tbody tr td .guideline dt {
		margin-right: 1.5rem;
		padding: 0 .8rem;
		font-size: 1.8rem;
		border-radius: .6rem;
	}

	.c-service__table table tbody tr td .guideline dd .num {
		font-size: 4.2rem;
	}

	.c-service__table table tbody tr td .desc {
	}

	.c-service__table table tbody tr td .desc--small {
		font-size: 2.1rem;
	}
}



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

 c-cta

***********************************/
.c-cta {
	background: url(../images/cta_bg01_pc.jpg) no-repeat center / cover;
}

.c-cta__inner {
	padding: 6rem 0 9.3rem;
	position: relative;
	z-index: 1;
}

.c-cta__inner:before {
	content: "";
	display: block;
	width: 120rem;
	height: 23.9rem;
	background: url(../images/cta_pic01_pc.png) no-repeat center bottom / contain;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-cta__ttl {
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
}

.c-cta__contact {
	margin-top: 5.5rem;
	font-size: 2.6rem;
	font-weight: 900;
	text-align: center;
}

.c-cta__contact a {
	display: inline-block;
	padding: 1.9rem 4rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0061c1+0,00468c+100 */
	background: linear-gradient(to bottom,  rgba(0,97,193,1) 0%,rgba(0,70,140,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 3rem;
	box-shadow: 0 .5rem 0 #00254a;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

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

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

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

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

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

	.c-cta {
		background: url(../images/cta_bg01_sp.jpg) no-repeat center / cover;
	}

	.c-cta__inner {
		padding: 5rem 0 0;
	}

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

	.c-cta__inner:after {
		content: "";
		display: block;
		width: 68rem;
		height: 17.4rem;
		margin: 3.2rem auto 0;
		background: url(../images/cta_pic01_sp.png) no-repeat center bottom / contain;
	}

	.c-cta__ttl {
		font-size: 3.6rem;
	}

	.c-cta__contact {
		margin-top: 5rem;
		font-size: 3.6rem;
		text-align: center;
	}

	.c-cta__contact a {
		padding: 2.3rem 4rem;
		box-shadow: 0 .7rem 0 #00254a;
		border-radius: 3.5rem;
	}

	@media (hover: hover) {

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

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

	.c-cta__contact a:before {
		width: 11.2rem;
		height: 11.2rem;
		background: url(../images/cta_balloon01_sp.png) no-repeat center / contain;
		top: -8rem;
		right: -2rem;
	}

	.c-cta__contact a .icon {
		padding-left: 5.6rem;
	}

	.c-cta__contact a .icon:before {
		width: 4.1rem;
		height: 3rem;
	}
}



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

 c-comparison

***********************************/
.c-comparison {
	background: #f7f9f4;
}

.c-comparison__inner {
	padding: 7rem 0 9rem;
}

.c-comparison__table {
}

.c-comparison__table table {
	width: 100%;
	margin-top: 5.5rem;
	border-spacing: 0;
}

.c-comparison__table table thead tr th {
	width: 31rem;
	padding: .9rem 1rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
	background: #00468d;
	border-right: .1rem solid #002851;
}

.c-comparison__table table thead tr th:first-child {
	width: 27rem;
	border-left: .2rem solid #00468d;
	border-radius: 1.5rem 0 0 0;
}

.c-comparison__table table thead tr th:last-child {
	border-right: .2rem solid #00468d;
	border-radius: 0 1.5rem 0 0;
}

.c-comparison__table table thead tr th.large {
	font-size: 2rem;
}

.c-comparison__table table tbody tr th {
	padding: 2.5rem 1rem 2.5rem 1.7rem;
	color: #00468d;
	font-weight: bold;
	background: #fff;
	border-left: .2rem solid #00468d;
	border-right: .1rem solid #cccccc;
	border-bottom: .1rem solid #cccccc;
}

.c-comparison__table table tbody tr:last-child th {
	border-bottom: .2rem solid #00468d;
	border-radius: 0 0 0 1.5rem;
}

.c-comparison__table table tbody tr th .small {
	display: block;
	font-size: 1.4rem;
}

.c-comparison__table table tbody tr td {
	padding: 2.5rem 2rem;
	background: #fff;
	border-right: .1rem solid #cccccc;
	border-bottom: .1rem solid #cccccc;
}

.c-comparison__table table tbody tr:last-child td {
	border-bottom: .2rem solid #00468d;
}

.c-comparison__table table tbody tr td:last-child {
	border-right: .2rem solid #00468d;
}

.c-comparison__table table tbody tr:last-child td:last-child {
	border-right: .2rem solid #00468d;
	border-radius: 0 0 1.5rem 0;
}

.c-comparison__table table tbody tr td .icon {
	display: block;
	width: 2.4rem;
	margin: 0 auto 1rem;
}

.c-comparison__table table tbody tr td .icon img {
	display: block;
}

.c-comparison__table table tbody tr td .desc {
	font-size: 1.6rem;
	text-align: center;
}

.c-comparison__table table tbody tr td .desc .large {
	display: inline-block;
	font-size: 2.8rem;
	line-height: 1.5;
}

.c-comparison__table table tbody tr td ul {
	font-size: 1.6rem;
}

.c-comparison__table table tbody tr td ul li {
	text-align: center;
}

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

	.c-service__inner {
		padding: 7rem 0 8rem;
	}

	.c-comparison__table {
		margin: 0 -3.5rem;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.c-comparison__table table {
		width: 200.5rem;
		margin-top: 5.5rem;
		border-spacing: 0;
	}

	.c-comparison__table table thead tr th {
		width: 53.5rem;
		padding: 1.4rem 1rem;
		font-size: 3rem;
		border-right: .1rem solid #002851;
	}

	.c-comparison__table table thead tr th:first-child {
		width: 40rem;
		border-left: .2rem solid #00468d;
		border-radius: 0;
	}

	.c-comparison__table table thead tr th:last-child {
		border-right: .2rem solid #00468d;
		border-radius: 0;
	}

	.c-comparison__table table thead tr th.large {
		font-size: 3rem;
	}

	.c-comparison__table table tbody tr th {
		padding: 3rem 1rem 3rem 2rem;
		font-size: 2.7rem;
	}

	.c-comparison__table table tbody tr:last-child th {
		border-radius: 0;
	}

	.c-comparison__table table tbody tr th .small {
		font-size: 2rem;
	}

	.c-comparison__table table tbody tr td {
		padding: 3rem 3rem;
		font-size: 2.7rem;
	}

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

	.c-comparison__table table tbody tr td .icon {
		width: 3.8rem;
		margin: 0 auto 1rem;
	}

	.c-comparison__table table tbody tr td .desc {
		font-size: 2.7rem;
	}

	.c-comparison__table table tbody tr td .desc .large {
		font-size: 4.2rem;
	}

	.c-comparison__table table tbody tr td ul {
		font-size: 2.7rem;
	}

}



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

 c-movie

***********************************/
.c-movie {
	background: #f7f9f4;
}

.c-movie__inner {
	padding: 7.5rem 0 9rem;
}

.c-movie__list {
	margin-top: 5.5rem;
}

.c-movie__list-sec {
}

.c-movie__list-sec .youtube {
}

.c-movie__list-sec .youtube__inner {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
	border-radius: 1.5rem;
}

.c-movie__list-sec .youtube__inner iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.c-movie__list-sec .ttl {
	margin-top: 1rem;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
}


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

	.c-movie__list {
		display: flex;
		flex-wrap: wrap;
		gap: 4.5rem 6rem;
	}

	.c-movie__list-sec {
		width: calc(100%/3 - 4rem);
		flex: 0 1 calc(100%/3 - 4rem);
	}

}

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

	.c-movie__inner {
		padding: 7.5rem 0 8rem;
	}

	.c-movie__list {
		width: 60rem;
		margin: 4.5rem auto 0;
		position: relative;
		z-index: 1;
	}

	.c-movie__list .slick-prev {
		width: 7rem;
		height: 7rem;
		background: url(../images/icon_prev01.png) no-repeat center / contain;
		top: 13.4rem;
		left: -3.5rem;
		z-index: 2;
		transform: none;
		-webkit-transform: none;
	}

	.c-movie__list .slick-prev:before {
		display: none;
	}

	.c-movie__list .slick-next {
		width: 7rem;
		height: 7rem;
		background: url(../images/icon_next01.png) no-repeat center / contain;
		top: 13.4rem;
		right: -3.5rem;
		z-index: 2;
		transform: none;
		-webkit-transform: none;
	}

	.c-movie__list .slick-next:before {
		display: none;
	}

	.c-movie__list .slick-list {
		margin-right: -3rem;
	}

	.c-movie__list-sec {
		margin-right: 3rem;
	}

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


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

 c-flow

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

.c-flow__inner {
	padding: 7.5rem 0 9rem;
}

.c-flow__list {
	margin-top: 5.5rem;
}

.c-flow__list-sec {
	display: flex;
	justify-content: space-between;
	margin-top: 8.4rem;
	position: relative;
	z-index: 1;
}

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

.c-flow__list-sec:before {
	content: "";
	display: block;
	width: 3.5rem;
	height: 3.8rem;
	background: url(../images/flow_arr01.png) no-repeat center / contain;
	position: absolute;
	bottom: -6rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-flow__list-sec:last-child:before {
	display: none;
}

.c-flow__list-sec .pic {
	width: 30rem;
}

.c-flow__list-sec .content {
	width: 87rem;
}

.c-flow__list-sec .content__head {
	display: flex;
	position: relative;
	z-index: 1;
}

.c-flow__list-sec .content__head:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: #fff;
	border: .1rem solid #cccccc;
	border-radius: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.c-flow__list-sec .content__head-num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5.5rem;
	color: #00468c;
	font-size: 2rem;
	font-weight: bold;
	background: #f0f8ff;
	border: .1rem solid #cccccc;
	border-radius: 1rem;
}

.c-flow__list-sec .content__head-ttl {
	flex: 1;
	padding: 1rem 2rem;
	color: #00468c;
	font-size: 2rem;
	font-weight: bold;
}

.c-flow__list-sec .content__body {
	margin-top: 1.5rem;
}

.c-flow__list-sec .content__body-desc {
}

.c-flow__list-sec .content__body-desc a {
	color: #ff0059;
}

.c-flow__list-sec .content__body-note {
	margin-top: .5em;
	font-size: 1.4rem;
}

.c-flow__list-sec .content__body-note li {
	text-indent: -1.1em;
	margin-left: 1.1em;
}

.c-flow__list-free {
	margin-top: 7.4rem;
	position: relative;
	z-index: 1;
}

.c-flow__list-free:before {
	content: "";
	display: block;
	width: 3.5rem;
	height: 3.8rem;
	background: url(../images/flow_arr01.png) no-repeat center / contain;
	position: absolute;
	bottom: -6rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-flow__list-free p {
	padding: 1rem 3rem;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	background: #00468c;
	border-radius: 20rem;
}

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

	.c-flow {
	}

	.c-flow__inner {
		padding: 7.5rem 0 8rem;
	}

	.c-flow__list {
		width: 60rem;
		margin: 5.5rem auto 0;
	}

	.c-flow__list-sec {
		display: block;
		margin-top: 13rem;
	}

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

	.c-flow__list-sec:before {
		width: 7rem;
		height: 7.5rem;
		bottom: -10rem;
	}

	.c-flow__list-sec:last-child:before {
		display: none;
	}

	.c-flow__list-sec .pic {
		width: auto;
	}

	.c-flow__list-sec .content {
		width: auto;
		margin-top: 4rem;
	}

	.c-flow__list-sec .content__head:before {
		border: .2rem solid #cccccc;
		border-radius: 1.5rem;
	}

	.c-flow__list-sec .content__head-num {
		width: 7.2rem;
		height: 100%;
		font-size: 3.2rem;
		border: .2rem solid #cccccc;
		border-radius: 1.5rem;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}

	.c-flow__list-sec .content__head-ttl {
		padding: 1rem 9.2rem;
		font-size: 3.2rem;
		text-align: center;
		line-height: 1.6;
	}

	.c-flow__list-sec .content__body {
		margin-top: 3rem;
	}

	.c-flow__list-sec .content__body-note {
		margin-top: .75em;
		font-size: 2.4rem;
	}

	.c-flow__list-sec .content__body-note li {
		text-indent: -1.1em;
		margin-left: 1.1em;
	}

	.c-flow__list-free {
		margin-top: 13rem;
	}

	.c-flow__list-free:before {
		width: 7rem;
		height: 7.5rem;
		bottom: -10rem;
	}

	.c-flow__list-free p {
		padding: 1rem 2rem;
		font-size: 3.2rem;
	}
}



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

 c-faq

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

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

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

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

}



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

 c-contact

***********************************/
.c-contact {
	background: #f7f9f4;
}

.c-contact__inner {
	padding: 7.5rem 0 9rem;
}

.c-contact__desc {
	margin-top: 4rem;
	text-align: center;
	line-height: 2;
}

.c-contact__content {
	margin-top: 4rem;
	padding: 1rem 7.9rem 6.5rem;
	background-color: #fff;
	border-left: .1rem solid #dddddd;
	border-right: .1rem solid #dddddd;
	border-bottom: .1rem solid #dddddd;
	border-radius: 3rem;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.c-contact__content:before {
	content: "";
	display: block;
	width: 100%;
	height: .2rem;
	background-color: #00468c;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

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

	.c-contact__inner {
		padding: 7.5rem 0 8rem;
	}

	.c-contact__desc {
		margin-top: 3rem;
		text-align: left;
		line-height: 2;
	}

	.c-contact__content {
		margin-top: 5rem;
		padding: 1rem 2.8rem 6.5rem;
		background-color: #fff;
		border-radius: 3rem;
		box-shadow: none;
		border-left: .2rem solid #dddddd;
		border-right: .2rem solid #dddddd;
		border-bottom: .2rem solid #dddddd;
	}

	.c-contact__content:before {
		height: .3rem;
	}
}



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

 c-company

***********************************/
.c-company {
}

.c-company__inner {
	padding: 7.5rem 0 9rem;
}

.c-company__list {
	margin-top: 5.5rem;
}

.c-company__list dl {
	display: flex;
	padding: 3.8rem 0;
	border-bottom: .1rem solid #dddddd;
}

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

.c-company__list dl dt {
	display: flex;
	align-items: center;
	width: 30rem;
	padding: 0 4rem 0 10rem;
	font-weight: bold;
	border-right: .1rem solid #dddddd;
}

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

.c-company__list dl dd .d-ib {
	display: inline-block;
}

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

	.c-company__inner {
		padding: 7.5rem 0 9rem;
	}

	.c-company__list {
		margin-top: 5.5rem;
	}

	.c-company__list dl {
		display: block;
		padding: 3rem 0;
	}

	.c-company__list dl dt {
		display: block;
		width: auto;
		padding: 0;
		text-align: center;
		border-right: none;
	}

	.c-company__list dl dd {
		margin-top: .3em;
		padding-left: 0;
	}
}



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

 c-greeting

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

.c-greeting__inner {
	padding: 7.5rem 0 9rem;
}

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

.c-greeting__intro-pic {
	width: 40rem;
}

.c-greeting__intro-content {
	width: 75rem;
}

.c-greeting__intro-content p {
	margin-top: 1.5em;
	line-height: 2;
}

.c-greeting__intro-content p:first-child {
	margin-top: -.3em;
}

.c-greeting__profile {
	margin-top: 6rem;
}

.c-greeting__profile dl {
	display: flex;
	padding: 4rem 0;
	border-bottom: .1rem solid #dddddd;
}

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

.c-greeting__profile dl dt {
	display: flex;
	align-items: center;
	width: 12rem;
	padding-right: 4rem;
	font-size: 1.5rem;
	font-weight: bold;
	border-right: .1rem solid #dddddd;
}

.c-greeting__profile dl dd {
	padding-left: 4rem;
	font-size: 1.6rem;
}

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

	.c-greeting__inner {
		padding: 7.5rem 0 8rem;
	}

	.c-greeting__intro {
		display: block;
		width: 60rem;
		margin: 5.5rem auto 0;
	}

	.c-greeting__intro-pic {
		width: 40rem;
		margin: 0 auto;
	}

	.c-greeting__intro-content {
		width: auto;
		margin-top: 4rem;
	}

	.c-greeting__intro-content p {
		margin-top: 1.2em;
		line-height: 1.8;
	}

	.c-greeting__intro-content p:first-child {
		margin-top: -.3em;
	}

	.c-greeting__profile {
		width: 60rem;
		margin: 5.5rem auto 0;
	}

	.c-greeting__profile dl {
		display: block;
		padding: 3rem 0;
		border-bottom: .1rem solid #dddddd;
	}

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

	.c-greeting__profile dl dt {
		display: block;
		width: auto;
		padding-right: 0;
		font-size: 2.8rem;
		font-weight: bold;
		text-align: center;
		border-right: none;
	}

	.c-greeting__profile dl dd {
		margin-top: .3em;
		padding-left: 0;
		font-size: 2.8rem;
	}
}


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

 xxx

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

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

}

