@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: #00519f;
	--text-color-placeholder: #b8b8b8;
	--text-size-base: 1.6rem;
	--text-size-base-sp: 2.8rem;
	--text-line-height-base: 2;
	--text-letter-spacing-base: .07em;
	--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;
}
.Barlow {
	font-family: 'Barlow Condensed', sans-serif;
}
.Jost {
	font-family: 'Jost', sans-serif;
}
.Ubuntu {
	font-family: 'Ubuntu', sans-serif;
}
* {
	box-sizing: border-box;
}



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

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


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

 general

***********************************/
.u-full {
	max-width: none;
	width: 100%;
}
.u-inline-block {
	display: inline-block;
}
.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: #d85700;
}
.u-blue {
	color: #1184df;
}
.u-yellow {
	color: #ffff00;
}
.u-bgYellow {
	background-color: #fff100;
}
.u-marker {
	background: linear-gradient(transparent 70%, #ffbf00 70%);
}
.u-underline {
	text-decoration: underline;
	text-underline-offset: .4em;
}

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

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

 parts

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

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


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

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

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

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

 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-main {
}

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

.l-pageTop a {
	display: block;
}

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

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

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

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

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

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

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

 l-header

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

.l-header__logo {
	width: 6.4rem;
}

.l-header__contact {
	margin-top: .5rem;
}

.l-header__contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.2rem;
	padding: .3rem 2rem 0;
	border-radius: 1.5rem;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ee5548+0,eb3020+100 */
	background: linear-gradient(to bottom,  rgba(238,85,72,1) 0%,rgba(235,48,32,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .3rem 0 #83160d;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

	.l-header__contact a:hover {
		transform: translateY(.3rem);
		box-shadow: 0 0 0 0 #83160d;
		filter: brightness(1.1);
	}
}

.l-header__contact a .balloon {
	display: block;
	padding: .2rem 1.2rem;
	margin-top: -1.6rem;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .07em;
	white-space: nowrap;
	background: #fff200;
	border-radius: .7rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-header__contact a .icon {
	display: block;
	padding-left: 3rem;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: .07em;
	position: relative;
	z-index: 1;
}

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

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

	.l-header {
		display: flex;
		justify-content: center;
		align-items: flex-end;
		width: 100%;
		height: 12rem;
	}

	.l-header__logo {
		width: 8.3rem;
	}

	.l-header__contact {
		display: none;
	}
}

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

 l-fixed-contents

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

.l-fixed-contents__inner {
	height: 10rem;
}

.l-fixed-contents__contact {
	font-size: 4rem;
	font-weight: 900;
}

.l-fixed-contents__contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10rem;
	color: #fff;
	text-align: center;
	background: #ed4a3b;
}

.l-fixed-contents__contact a .icon {
	padding-left: 5.8rem;
	position: relative;
	z-index: 1;
}

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

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

 l-footer

***********************************/
.l-footer {
	background: #f2f6fa;
}

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

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

.l-footer__copy {
	margin-top: 3rem;
	color: #bababa;
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.6;
}

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

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

	.l-footer__logo {
		width: 8.3rem;
	}

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

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

 c-title01

***********************************/
.c-title01 {
	margin-top: -.25em;
	font-size: 4.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

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

.c-title01 .block {
	display: inline-block;
	padding: 0 1.5rem;
	background: #fff;
	border-radius: 1.5rem;
}

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

}

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

 c-sub-hero

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

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

.c-sub-hero__inner__ttl {
	color: var(--text-color-primary);
	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 #86160d;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ee5548+0,eb3020+100 */
	background: linear-gradient(to bottom,  rgba(238,85,72,1) 0%,rgba(235,48,32,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 #86160d;
		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 #86160d;
	}

	@media (hover: hover) {

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

		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: 26rem;
	padding-right: 2.5rem;
	vertical-align: middle;
	border-right: 1px solid #dddddd;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-form__content dl dd .address {
}

.c-form__content dl dd .address__zip {
	display: flex;
	align-items: center;
}

.c-form__content dl dd .address__zip-txt01 {
	margin-right: .6em;
}

.c-form__content dl dd .address__zip-entry {
	width: 14rem;
}

.c-form__content dl dd .address__entry {
	margin-top: 2rem;
}

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

.c-form__privacy-content {
	padding: 2.5rem 0 2.5rem 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 {
	font-size: 1.6rem;
	margin-bottom: 1.5em;
}

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

.c-form__privacy-content-scroll .ttl {
	margin-bottom: 1.5em;
	font-size: 1.6rem;
}

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

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

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

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

.c-form__submit button,
.c-form__submit input,
.c-form__confirmBtn__btn .submit {
	display: block;
	width: 100%;
	padding: 2.2rem 1.5rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: .07em;
	border-radius: 100px;
	box-shadow:0 .5rem 0 0 #86160d;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ee5548+0,eb3020+100 */
	background: linear-gradient(to bottom,  rgba(238,85,72,1) 0%,rgba(235,48,32,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);
}


@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 #86160d;
		filter: brightness(1.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: 3rem;
}

.c-form__confirmBtn__btn {
	width: 32rem;
}

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

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

@media (hover: hover) {

	.c-form__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 {
		display: block;
		width: auto;
		position: relative;
	}

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

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

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

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

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

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

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

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

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

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

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

	.c-form__content dl dd .address__zip-entry {
		width: 23rem;
	}

	.c-form__content dl dd .address__entry {
		margin-top: 3rem;
	}

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

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

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

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

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

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

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

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

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

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

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


	@media (hover: hover) {

		.c-form__submit button:hover,
		.c-form__submit input:hover,
		.c-form__confirmBtn__btn .submit:hover {
			transform: translateY(.7rem);
		}
	}

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

	.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__confirmBtn__btn .back:hover {
			transform: translateY(.7rem);
		}
	}

}


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

 c-faq-list

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

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

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

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

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

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

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

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

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

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

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

	.c-faq-list {
	}

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

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

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

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

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

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

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

}


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

 c-faq-list-acc

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

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

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

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

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

.c-faq-list-acc dl dt .ttl {
	flex: 1;
	padding-right: 8rem;
	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: 1.8rem;
	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: 1.8rem;
	margin: 1rem 3.8rem 0 0;
	background-color: var(--text-color-primary);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

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

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

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

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

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

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

	.c-faq-list-acc dl {
		padding-left: 0;
		border-bottom: .1rem 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 {

}

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

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

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


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

	.c-completeSec__inner {
		padding: 7rem 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.png) repeat center bottom / 192rem auto;
	position: relative;
	z-index: 1;
}

.c-hero:before {
	content: "";
	display: block;
	width: 100%;
	height: 4.4rem;
	background: url(../images/hero_bg02_pc.png) no-repeat center bottom / 191.9rem 4.4rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 3;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-hero__inner {
	width: 126rem;
	padding: 9.5rem 0 1.7rem;
	position: relative;
}

.c-hero__inner:before {
	content: "";
	display: block;
	width: 45rem;
	height: 71rem;
	background: url(../images/hero_bg03_pc.png) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.c-hero__copy {
	font-size: 2.8rem;
	font-weight: 900;
	position: relative;
	z-index: 3;
}

.c-hero__copy .block {
	display: inline-block;
	padding: .1rem 4rem .1rem 2.7rem;
	background: #fff;
	border: .3rem solid #d0c5b7;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

.c-hero__copy .block:before {
	content: "";
	display: block;
	width: 4.9rem;
	height: 3.1rem;
	margin-left: -1.2rem;
	background: url(../images/hero_arr01.png) no-repeat center / contain;
	position: absolute;
	bottom: -2.4rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-hero__copy .block:after {
	content: "";
	display: block;
	width: 12.2rem;
	height: 8.6rem;
	background: url(../images/hero_pic01.png) no-repeat center / contain;
	position: absolute;
	top: -2.8rem;
	right: -8.6rem;
	z-index: 1;
}

.c-hero__ttl {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 2rem;
	position: relative;
	z-index: 3;
}

.c-hero__ttl .block {
	color: #00519f;
	font-size: 7.6rem;
	font-weight: 900;
	line-height: 1.35;
}

.c-hero__ttl .block:last-child {
	width: 100%;
}

.c-hero__ttl .monthly {
	display: flex;
	width: 21.5rem;
	height: 7.2rem;
	margin-left: .5em;
	background: url(../images/hero_monthly_bg01.png) no-repeat center / contain;
}

.c-hero__ttl .monthly__ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.5rem;
	color: #fff;
	font-size: 2.2rem;
	font-weight: 900;
	line-height: 1.2;
}

.c-hero__ttl .monthly__txt01 {
	display: flex;
	align-items: flex-end;
	padding-left: 1.2rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 900;
}

.c-hero__ttl .monthly__txt01 .num {
	display: block;
	margin-right: .1em;
	font-style: italic;
	color: #fff;
	font-size: 6.5rem;
	font-weight: bold;
	line-height: 1.2;
}

.c-hero__desc {
	margin-top: 2rem;
	font-size: 1.8rem;
	line-height: 2;
	letter-spacing: .12em;
	position: relative;
	z-index: 3;
}

.c-hero__feature {
	margin-top: 3rem;
	color: #00519f;
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1.5;
	position: relative;
	z-index: 3;
}

.c-hero__feature .block {
	display: inline-block;
	padding: .6rem 1rem;
	background: #ffffff;
	border: .2rem solid #d0c5b7;
	border-radius: 1rem;
}

.c-hero__btn {
	margin-top: 5.5rem;
	position: relative;
	z-index: 4;
}

.c-hero__btn a {
	display: inline-block;
	padding: 1.6rem 3.5rem 1.6rem 3rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 900;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ee5548+0,eb3020+100 */
	background: linear-gradient(to bottom,  rgba(238,85,72,1) 0%,rgba(235,48,32,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 20rem;
	box-shadow: 0 .5rem 0 #86160d;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

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

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

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

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

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

	.c-hero:before {
		height: 4.4rem;
		background-size: 100% 4.4rem;
	}
}

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

	.c-hero__inner {
		width: 120rem;
		padding-top: 11rem;
	}
}

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

	.c-hero {
		padding: 0 3.5rem;
		background: url(../images/hero_bg01_sp.png) repeat center bottom / 192rem auto;
	}

	.c-hero:before {
		height: 4.4rem;
		background: url(../images/hero_bg02_pc.png) no-repeat center bottom / 100% 4.4rem;
	}

	.c-hero__inner {
		width: auto;
		padding: 14.5rem 0 10.7rem;
	}

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

	.c-hero__copy {
		margin-left: -1rem;
		margin-right: -1rem;
		font-size: 2.8rem;
		text-align: center;
	}

	.c-hero__copy .block {
		padding: .2rem 4rem .2rem 2.7rem;
		margin-right: 8.3rem;
	}

	.c-hero__copy .block:after {
		width: 12.1rem;
		height: 8.5rem;
		background: url(../images/hero_pic01.png) no-repeat center / contain;
		top: -2.8rem;
		right: -8.6rem;
	}

	.c-hero__ttl {
		padding-left: 3rem;
		margin-top: 3rem;
	}

	.c-hero__ttl .block {
		font-size: 6.8rem;
		line-height: 1.4;
	}

	.c-hero__ttl .monthly {
		width: 21.5rem;
		height: 7.2rem;
		margin-left: .5em;
		background: url(../images/hero_monthly_bg01.png) no-repeat center / contain;
	}

	.c-hero__ttl .monthly__ttl {
		width: 4.2rem;
		font-size: 2.2rem;
	}

	.c-hero__ttl .monthly__txt01 {
		padding-left: 1.2rem;
		font-size: 2.4rem;
	}

	.c-hero__ttl .monthly__txt01 .num {
		margin-right: .1em;
		font-size: 6.5rem;
	}

	.c-hero__desc {
		width: 62rem;
		margin: 4rem auto 0;
		font-size: 2.4rem;
	}

	.c-hero__feature {
		margin-top: 4rem;
		font-size: 3.6rem;
		text-align: center;
		line-height: 1.5;
	}

	.c-hero__feature .block {
		padding: 1rem 2rem;
		border: .3rem solid #d0c5b7;
		border-radius: 1.5rem;
	}

	.c-hero__btn {
		margin-top: 6.5rem;
		text-align: center;
	}

	.c-hero__btn a {
		padding: 1.6rem 4rem 1.6rem 4rem;
		font-size: 3.6rem;
		box-shadow: 0 .7rem 0 #86160d;
	}

	@media (hover: hover) {

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

	.c-hero__btn a:before {
		width: 11rem;
		height: 11rem;
		margin-top: -5.6rem;
		margin-right: -6.8rem;
		background: url(../images/hero_balloon_sp.png) no-repeat center / contain;
	}

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

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



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

 c-resolution

***********************************/
.c-resolution {
}

.c-resolution__inner {
	padding: 7rem 0 8.5rem;
}

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

.c-resolution__wrap-pic01 {
	width: 56rem;
	margin-left: 3.7rem;
	margin-right: 7rem;
}

.c-resolution__wrap-content {
	flex: 1;
}

.c-resolution__wrap-content p {
	margin-top: .9em;
	margin-right: -.5em;
	font-size: 2rem;
	line-height: 2.2;
}

.c-resolution__wrap-content p:first-child {
	margin-top: -.5em;
}

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

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

	.c-resolution__wrap {
		display: block;
		width: 60rem;
		margin: 4.5rem auto 0;
	}

	.c-resolution__wrap-pic01 {
		width: auto;
		margin-left: 0;
		margin-right: 0;
	}

	.c-resolution__wrap-content {
		flex: 1;
		margin-top: 3rem;
	}

	.c-resolution__wrap-content p {
		margin-top: .7em;
		margin-right: 0;
		font-size: 2.8rem;
		line-height: 1.8;
	}

	.c-resolution__wrap-content p:first-child {
		margin-top: 0;
	}
}



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

 c-reason

***********************************/
.c-reason {
	background: url(../images/reason_bg01_pc.png) repeat center / 192rem auto;
	position: relative;
}

.c-reason:before {
	content: "";
	display: block;
	width: 100%;
	height: 4.4rem;
	background: url(../images/reason_bg03_pc.png) no-repeat center bottom / 192rem 4.4rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-reason:after {
	content: "";
	display: block;
	width: 100%;
	height: 4.4rem;
	background: url(../images/reason_bg02_pc.png) no-repeat center top / 192rem 4.4rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-reason__inner {
	padding: 12.5rem 0 14rem;
}

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

.c-reason__list-sec {
	width: 36rem;
	position: relative;
	z-index: 1;
}

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

.c-reason__list-sec .pic {

}

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

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

	.c-reason {
		background: url(../images/reason_bg01_sp.png) repeat center / 100% auto;
		position: relative;
	}

	.c-reason:before {
		height: 4.4rem;
		background: url(../images/reason_bg03_sp.png) no-repeat center bottom / 100% 4.4rem;
	}

	.c-reason:after {
		height: 4.4rem;
		background: url(../images/reason_bg02_sp.png) no-repeat center top / 100% 4.4rem;
	}

	.c-reason__inner {
		padding: 10rem 0 10rem;
	}

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

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

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

	.c-reason__list-sec .num {
		width: 5rem;
		height: 5rem;
		line-height: 5rem;
		font-size: 2.6rem;
	}

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



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

 c-servise

***********************************/
.c-servise {
}

.c-servise__inner {
	padding: 7rem 0 10rem;
}

.c-servise__sec01 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 5rem;
}

.c-servise__sec01-head {
	width: 56rem;
}

.c-servise__sec01-head .ttl {
	padding: 1.5rem 0;
	color: #0151a0;
	font-size: 3rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.7;
	border-top: .1rem solid #0151a0;
}

.c-servise__sec01-head .pic {

}

.c-servise__sec01-body {
	width: 56rem;
}

.c-servise__sec01-body p {
	margin-top: 1.2em;
	line-height: 2.2;
}

.c-servise__sec01-body p:first-child {
	margin-top: -.5em;
}

.c-servise__feature {
	display: flex;
	justify-content: center;
	gap: 2rem 2rem;
	margin-top: 4.5rem;
	color: #00519f;
	font-size: 3rem;
	font-weight: 900;
}

.c-servise__feature li {
	padding: .4rem 2rem;
	background: #f2f6fa;
	border-radius: 2rem;
}

.c-servise_closing {
	margin-top: 6.5rem;
	font-size: 3.6rem;
	font-weight: bold;
	text-align: center;
}

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

	.c-servise__inner {
		padding: 5rem 0 6rem;
	}

	.c-servise__sec01 {
		display: block;
		width: 60rem;
		margin: 5rem auto 0;
	}

	.c-servise__sec01-head {
		width: auto;
	}

	.c-servise__sec01-head .ttl {
		padding: 1.5rem 0;
		font-size: 3.2rem;
		border-top: .2rem solid #0151a0;
	}

	.c-servise__sec01-head .pic {

	}

	.c-servise__sec01-body {
		width: auto;
		margin-top: 3rem;
	}

	.c-servise__sec01-body p {
		margin-top: .6em;
		line-height: 1.8;
	}

	.c-servise__sec01-body p:first-child {
		margin-top: 0;
	}

	.c-servise__feature {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 3rem 0;
		margin-top: 4.5rem;
		font-size: 3.6rem;
		font-weight: 900;
	}

	.c-servise__feature li {
		padding: .3rem 2rem;
		border-radius: 2rem;
	}

	.c-servise_closing {
		margin: 5rem -.5em 0;
		font-size: 3.6rem;
		letter-spacing: .03em;
	}
}



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

 c-case

***********************************/
.c-case {
	padding-bottom: 10rem;
}

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

.c-case__inner:before {
	content: "";
	width: 136rem;
	height: 100%;
	background: url(../images/case_bg01.png) repeat center / 136rem auto;
	border-radius: 5rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-case__list {
	margin-top: 6rem;
	position: relative;
	z-index: 1;
}

.c-case__list:before {
	content: "";
	display: block;
	width: 120rem;
	height: 24.6rem;
	background: url(../images/case_pic01_pc.png) no-repeat center / contain;
	position: absolute;
	top: -24.6rem;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	pointer-events: none;
}

.c-case__list-sec {
	padding: 4.2rem 3.4rem 3.9rem;
	margin-top: 7.7rem;
	border: .1rem solid #dddddd;
	background: #fff;
	border-radius: 3rem;
	position: relative;
	z-index: 1;
}

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

.c-case__list-sec .num {
	padding: .2rem 1.5rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	background: #0151a0;
	border-radius: 20rem;
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-case__list-sec .num .large {
	margin-left: .3em;
	font-size: 1.9rem;
	line-height: 1.6;
}

.c-case__list-info {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem 1rem;
	font-size: 1.4rem;
}

.c-case__list-info li {
	padding: .4rem 1rem;
	background: #f5f6f1;
	border-radius: 1rem;
}

.c-case__list-ttl {
	margin-top: 1.8rem;
	color: #00519f;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-case__list-assignment {
	display: flex;
	align-items: flex-start;
	margin-top: 2rem;
	padding-top: 2.3rem;
	border-top: .1rem solid #dddddd;
}

.c-case__list-assignment-ttl {
	padding: .4rem 1rem;
	width: 14.5rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	background: #d85700;
	border-radius: 1rem;
}

.c-case__list-assignment-body {
	flex: 1;
	margin-left: 2rem;
	padding-top: .3rem;
}

.c-case__list-assignment-body p {
	line-height: 1.8;
}

.c-case__list-approach {
	display: flex;
	align-items: flex-start;
	margin-top: 2.5rem;
	padding-top: 2.3rem;
	border-top: .1rem solid #dddddd;
}

.c-case__list-approach-ttl {
	padding: .4rem 1rem;
	width: 14.5rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	background: #0151a0;
	border-radius: 1rem;
}

.c-case__list-approach-body {
	flex: 1;
	margin-left: 2rem;
}

.c-case__list-approach-body ul {
	color: #00519f;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.8;
}

.c-case__list-approach-body ul li {
	margin-top: 1rem;
	padding: .9rem 3rem .9rem 4.2rem;
	background: #f2f6fa;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
}

.c-case__list-approach-body ul li:first-child {
	margin-top: 0;
}

.c-case__list-approach-body ul li:before {
	content: "";
	display: block;
	width: 1.5rem;
	height: 1.1rem;
	background: url(../images/case_check01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 1.9rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

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

	.c-case {
		padding-bottom: 7rem;
		background: url(../images/case_bg01.png) repeat center / 68rem auto;
	}

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

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

	.c-case__list {
		margin-top: 6rem;
		position: relative;
		z-index: 1;
	}

	.c-case__list:before {
		width: 68rem;
		height: 18.4rem;
		background: url(../images/case_pic01_sp.png) no-repeat center / contain;
		top: -18.4rem;
	}

	.c-case__list-sec {
		padding: 4.4rem 3.8rem 3.8rem;
		margin-top: 7.6rem;
		border: .2rem solid #dddddd;
		border-radius: 3rem;
	}

	.c-case__list-sec .num {
		padding: .2rem 1.5rem;
		font-size: 2.4rem;
	}

	.c-case__list-sec .num .large {
		margin-left: .3em;
		font-size: 2.7rem;
	}

	.c-case__list-info {
		justify-content: normal;
		gap: 1.5rem 1.5rem;
		font-size: 2rem;
	}

	.c-case__list-info li {
		padding: .5rem 1.2rem;
		border-radius: 1rem;
	}

	.c-case__list-ttl {
		margin-top: 2.3rem;
		font-size: 2.8rem;
		text-align: left;
	}

	.c-case__list-assignment {
		display: block;
		margin-top: 2rem;
		padding-top: 1.9rem;
	}

	.c-case__list-assignment-ttl {
		padding: .2rem 1rem;
		width: auto;
		font-size: 2rem;
		border-radius: 1rem;
	}

	.c-case__list-assignment-body {
		margin-top: 1rem;
		margin-left: 0;
		padding-top: 0;
	}

	.c-case__list-assignment-body p {
		font-size: 2.4rem;
		line-height: 1.8;
	}

	.c-case__list-approach {
		display: block;
		margin-top: 2rem;
		padding-top: 1.9rem;
	}

	.c-case__list-approach-ttl {
		padding: .2rem 1rem;
		width: auto;
		font-size: 2rem;
		border-radius: 1rem;
	}

	.c-case__list-approach-body {
		margin-top: 2rem;
		margin-left: 0;
	}

	.c-case__list-approach-body ul {
		font-size: 2.8rem;
		line-height: 1.6;
	}

	.c-case__list-approach-body ul li {
		margin-top: 2rem;
		padding: 1.4rem 3rem 1.4rem 5.8rem;
		border-radius: 1rem;
	}

	.c-case__list-approach-body ul li:before {
		width: 2.3rem;
		height: 1.7rem;
		left: 2.3rem;
	}
}



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

 c-cta

***********************************/
.c-cta {
	background: #fbeee5;
}

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

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

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

.c-cta__ttl .block {
	padding: 0 0 0 .2em;
	background-color: #fff;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.c-cta__btn {
	margin-top: 4.5rem;
	text-align: center;
}

.c-cta__btn a {
	display: inline-block;
	padding: 1.6rem 3.5rem 1.6rem 3rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 900;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ee5548+0,eb3020+100 */
	background: linear-gradient(to bottom,  rgba(238,85,72,1) 0%,rgba(235,48,32,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 20rem;
	box-shadow: 0 .5rem 0 #86160d;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

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

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

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

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

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

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

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

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

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

	.c-cta__btn {
		margin-top: 4.5rem;
	}

	.c-cta__btn a {
		padding: 1.6rem 4rem 1.6rem 4rem;
		font-size: 3.6rem;
		box-shadow: 0 .7rem 0 #86160d;
	}

	@media (hover: hover) {

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

	.c-cta__btn a:before {
		width: 11rem;
		height: 11rem;
		margin-top: -5.6rem;
		margin-right: -6.8rem;
		background: url(../images/cta_balloon_sp.png) no-repeat center / contain;
	}

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

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



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

 c-plan

***********************************/
.c-plan {
}

.c-plan__inner {
	padding: 7rem 0 7rem;
}

.c-plan__table {
	margin-top: 4.5rem;
}

.c-plan__table table {
	width: 100%;
	border-spacing: 0;
}

.c-plan__table table thead tr th {
	padding: .7rem 1rem;
	width: 33rem;
	color: #fff;
	font-size: 2.1rem;
	font-weight: bold;
	text-align: center;
	background: #0151a0;
	border-right: .1rem solid #013569;
}

.c-plan__table table thead tr th:first-child {
	width: 21rem;
	border-radius: 1.5rem 0 0 0;
}

.c-plan__table table thead tr th:last-child {
	border-radius: 0 1.5rem 0 0;
	border-right: none;
}

.c-plan__table table tbody tr th {
	padding: 1.1rem 1rem;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.8;
	background: #f2f6fa;
	border-bottom: .1rem solid #dddddd;
}

.c-plan__table table tbody tr th:first-child {
	border-left: .2rem solid #dddddd;
}

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

.c-plan__table table tbody tr td {
	padding: 1.1rem 1rem;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.8;
	background: #fff;
	border-right: .1rem solid #dddddd;
	border-bottom: .1rem solid #dddddd;
}

.c-plan__table table tbody tr td:last-child {
	border-right: .2rem solid #dddddd;
}

.c-plan__table table tbody tr:last-child td {
	border-bottom: .2rem solid #dddddd;
}

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

.c-plan__note {
	margin-top: 1.5rem;
	font-size: 1.2rem;
	line-height: 1.8;
}

.c-plan__note li {
	text-indent: -1.2em;
	margin-left: 1.2em;
}

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

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

	.c-plan__table {
		margin: 4rem -3.5rem 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.c-plan__table table {
		width: 92rem;
		border-spacing: 0;
	}

	.c-plan__table table thead tr th {
		padding: .7rem 1rem;
		width: 25rem;
		font-size: 2.1rem;
	}

	.c-plan__table table thead tr th:first-child {
		width: 17rem;
		border-radius: 1.5rem 0 0 0;
	}

	.c-plan__table table thead tr th:last-child {
		border-radius: 0 1.5rem 0 0;
		border-right: none;
	}

	.c-plan__table table tbody tr th {
		padding: 1.1rem 1rem;
		font-size: 1.8rem;
	}

	.c-plan__table table tbody tr td {
		padding: 1.1rem .5rem;
		font-size: 2rem;
	}

	.c-plan__table table tbody tr td span {
		letter-spacing: .04em;
	}

	.c-plan__note {
		margin-top: 2.5rem;
		font-size: 1.8rem;
	}
}



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

 c-flow

***********************************/
.c-flow {
	padding-bottom: 10rem;
}

.c-flow__inner {
	padding: 7rem 0 10rem;
	position: relative;
	z-index: 1;
}

.c-flow__inner:before {
	content: "";
	width: 136rem;
	height: 100%;
	background: url(../images/flow_bg01.png) repeat center / 136rem auto;
	border-radius: 5rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-flow__inner:after {
	content: "";
	display: block;
	width: 27.8rem;
	height: 22.3rem;
	background: url(../images/flow_pic01.png) no-repeat center / contain;
	position: absolute;
	top: -5rem;
	left: 6rem;
	z-index: 1;
}

.c-flow__content {
	width: 100rem;
	margin: 8rem auto 0;
}

.c-flow__content-wrap {
	margin-top: 8.5rem;
	position: relative;
	z-index: 1;
}

.c-flow__content-wrap:first-child {
	margin-top: 0;
}

.c-flow__content-sec {
	margin-top: 8.5rem;
	padding-left: 20rem;
	position: relative;
	z-index: 1;
}

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

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

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

.c-flow__content-sec-inner {
	padding: 3.9rem 4.9rem 4.4rem;
	border: .1rem solid #dddddd;
	background: #fff;
	border-radius: 2rem;
}

.c-flow__content-sec-inner .num {
	padding: 0 1.2rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 800;
	background: #0151a0;
	border-radius: 1rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-flow__content-sec-inner .ttl {
	padding: .8rem 2rem;
	color: #00519f;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.6;
	background: #f9f9f7;
	border-radius: 1rem;
}

.c-flow__content-sec-inner .desc {
	margin-top: 1.5rem;
}

.c-flow__content-period {
	display: flex;
	justify-content: space-between;
	width: 14rem;
	height: calc(100% + 2rem);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.c-flow__content-period-txt01 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	height: 100%;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.1;
	background: #0151a0;
	border-radius: 1rem;
}

.c-flow__content-period-txt01 .block {
	display: block;
}

.c-flow__content-period-txt01 .vertical {
	display: inline-block;
	margin-top: .25em;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.c-flow__content-period-arr {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 2rem;
	position: relative;
	z-index: 1;
}

.c-flow__content-period-arr:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 1.9rem solid transparent;
	border-left: 1.9rem solid transparent;
	border-bottom: 2rem solid #cfdeed;
	border-top: 0;
}

.c-flow__content-period-arr:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 1.9rem solid transparent;
	border-left: 1.9rem solid transparent;
	border-top: 2rem solid #cfdeed;
	border-bottom: 0;
}

.c-flow__content-period-arr-line {
	flex: 1;
	width: 2rem;
	background: #cfdeed;
}

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

	.c-flow {
		padding-bottom: 7rem;
	}

	.c-flow__inner {
		padding: 7rem 0 7rem;
	}

	.c-flow__inner:before {
		width: 101vw;
		height: 100%;
		background: url(../images/flow_bg01.png) repeat center / 6.8rem auto;
		border-radius: 0;
	}

	.c-flow__inner:after {
		width: 19.3rem;
		height: 15.5rem;
		top: 1rem;
		left: -3.5rem;
	}

	.c-flow__content {
		width: auto;
		margin: 8.5rem auto 0;
	}

	.c-flow__content-wrap {
		margin-top: 11.6rem;
	}

	.c-flow__content-wrap:first-child {
		margin-top: 0;
	}

	.c-flow__content-sec {
		margin-top: 11.6rem;
		margin-left: 14rem;
		padding-left: 0;
	}

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

	.c-flow__content-sec:before {
		width: 4.8rem;
		height: 3.1rem;
		bottom: -6.2rem;
	}

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

	.c-flow__content-sec-inner {
		padding: 5.2rem 2.9rem 2.9rem;
		border-radius: 2rem;
	}

	.c-flow__content-sec-inner .num {
		padding: 0 1.5rem;
		font-size: 2.4rem;
		border-radius: 1.5rem;
	}

	.c-flow__content-sec-inner .ttl {
		padding: .8rem 1.5rem;
		font-size: 3.2rem;
		text-align: center;
		border-radius: 1.5rem;
	}

	.c-flow__content-sec-inner .desc {
		margin-top: 1.5rem;
	}

	.c-flow__content-period {
		width: 11rem;
		height: calc(100% + 2.4rem);
	}

	.c-flow__content-period-txt01 {
		width: 6rem;
		font-size: 2.4rem;
		border-radius: 1.5rem;
	}

	.c-flow__content-period-txt01 .block {
		display: block;
	}

	.c-flow__content-period-txt01 .vertical {
		display: inline-block;
		margin-top: .25em;
		writing-mode: vertical-rl;
		text-orientation: upright;
	}

	.c-flow__content-period-arr {
		width: 2rem;
	}
}



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

 c-voice

***********************************/
.c-voice {
	padding: 10rem 8rem 0;
}

.c-voice__inner {
	width: auto;
	padding: 6.5rem 0 10rem;
	position: relative;
	z-index: 1;
}

.c-voice__inner:before {
	content: "";
	width: 136rem;
	height: 100%;
	background: url(../images/voice_bg01.png) repeat center / 136rem auto;
	border-radius: 5rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-voice__inner:after {
	content: "";
	width: 136rem;
	height: 100%;
	background: url(../images/voice_bg02_pc.png) no-repeat center top / 136rem auto;
	border-radius: 5rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-voice__content {
	width: 120rem;
	max-width: 100%;
	margin: 4rem auto 0;
	position: relative;
	z-index: 1;
}

.c-voice__content .slider-prev {
	width: 4.4rem;
	height: 4.4rem;
	background: url(../images/voice_prev01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: -6rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	cursor: pointer;
}

@media (hover: hover) {

	.c-voice__content .slider-prev {
		transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-voice__content .slider-prev:hover {
		transform: translateY(-50%) scale(1.2, 1.2);
		-webkit-transform: translateY(-50%) scale(1.2, 1.2);
	}
}

.c-voice__content .slider-prev:before {
	display: none;
}

.c-voice__content .slider-next {
	width: 4.4rem;
	height: 4.4rem;
	background: url(../images/voice_next01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: -6rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	cursor: pointer;
}

@media (hover: hover) {

	.c-voice__content .slider-next {
		transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-voice__content .slider-next:hover {
		transform: translateY(-50%) scale(1.2, 1.2);
		-webkit-transform: translateY(-50%) scale(1.2, 1.2);
	}
}

.c-voice__content .slider-next:before {
	display: none;
}

.c-voice__content-slider {
	overflow: hidden;
}

.c-voice__content-slider .slick-list {
	margin-right: -5rem;
	padding-bottom: .1rem;
}

.c-voice__content-item {
	margin-right: 5rem;
	padding-bottom: .1rem;
}

.c-voice__content-inner {
	padding: 3.9rem;
	background: #fff;
	border: .1rem solid #dddddd;
	border-radius: 3rem;
}

.c-voice__content-head {
	display: flex;
}

.c-voice__content-head .pic {
	width: 32rem;
	margin-right: 3rem;
}

.c-voice__content-head .content {
	flex: 1;
}

.c-voice__content-head .content__ttl {
	margin-top: -.3em;
	color: #00519f;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.8;
}

.c-voice__content-head .content__info {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1rem;
	margin-top: 1.5rem;
	font-size: 1.4rem;
}

.c-voice__content-head .content__info li {
	padding: .4rem 1.2rem;
	background: #f5f6f1;
	border-radius: 1rem;
}

.c-voice__content-head .content__trigger {
	padding-top: 2.4rem;
	margin-top: 2.5rem;
	border-top: .1rem solid #dddddd;
}

.c-voice__content-head .content__trigger-ttl {
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
}

.c-voice__content-head .content__trigger-ttl .block {
	display: inline-block;
	padding: .4rem 1.5rem;
	background: #d85700;
	border-radius: 1rem;
}

.c-voice__content-head .content__trigger-desc {
	margin-top: .8rem;
	line-height: 1.8;
}

.c-voice__content-body {
	margin-top: 3.5rem;
}

.c-voice__content-body-ttl {
	padding: .3rem 1.5rem;
	color: #0151a0;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	background: #f2f6fa;
	border-radius: 1rem;
}

.c-voice__content-body p {
	margin-top: 1em;
	line-height: 1.8;
}

.c-voice__content-body p:first-of-type {
	margin-top: .8em;
}

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

	.c-voice__content-head .content__ttl .inline-block {
		display: inline-block;
	}
}

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

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

	.c-voice:before {
		content: "";
		width: 1001%;
		height: 100%;
		background: url(../images/voice_bg01.png) repeat center / 68rem auto;
		position: absolute;
		top: 0;
		left: 50%;
		z-index: -1;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}

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

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

	.c-voice__inner:after {
		width: 75rem;
		height: 100%;
		background: url(../images/voice_bg02_sp.png) no-repeat center top / 75rem auto;
		border-radius: 0;
	}

	.c-voice__content {
		width: 54rem;
		margin: 4rem auto 0;
	}

	.c-voice__content .slider-prev {
		width: 6.6rem;
		height: 6.6rem;
		left: -8.6rem;
	}

	.c-voice__content .slider-next {
		width: 6.6rem;
		height: 6.6rem;
		right: -8.6rem;
	}

	.c-voice__content-slider .slick-list {
		margin-right: -5rem;
		padding-bottom: .1rem;
	}

	.c-voice__content-item {
		margin-right: 5rem;
		padding-bottom: .1rem;
	}

	.c-voice__content-inner {
		padding: 2.9rem;
		border-radius: 1.5rem;
	}

	.c-voice__content-head {
		display: block;
	}

	.c-voice__content-head .pic {
		width: 32rem;
		margin: 0 auto;
	}

	.c-voice__content-head .content {
		margin-top: 2rem;
	}

	.c-voice__content-head .content__ttl {
		margin-top: 0;
		font-size: 2.8rem;
		line-height: 1.6;
	}

	.c-voice__content-head .content__info {
		gap: 1.5rem 1.5rem;
		margin-top: 2rem;
		font-size: 2rem;
	}

	.c-voice__content-head .content__info li {
		padding: .5rem 1.2rem;
		border-radius: 1rem;
	}

	.c-voice__content-head .content__trigger {
		padding-top: 1.9rem;
		margin-top: 3rem;
	}

	.c-voice__content-head .content__trigger-ttl {
		font-size: 2rem;
	}

	.c-voice__content-head .content__trigger-ttl .block {
		display: block;
		padding: .2rem 1.5rem;
		text-align: center;
		border-radius: 1rem;
	}

	.c-voice__content-head .content__trigger-desc {
		margin-top: 1rem;
		font-size: 2.4rem;
	}

	.c-voice__content-body {
		margin-top: 2.5rem;
	}

	.c-voice__content-body-ttl {
		padding: .2rem 1.5rem;
		font-size: 2rem;
	}

	.c-voice__content-body p {
		margin-top: .6em;
		font-size: 2.4rem;
	}

	.c-voice__content-body p:first-of-type {
		margin-top: 1rem;
	}
}



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

 c-faq

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

.c-faq__inner {
	padding: 7rem 0 3.5rem;
}

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

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


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

 c-contact

***********************************/
.c-contact {

}

.c-contact__inner {
	padding: 3.5rem 0 4rem;
}

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

.c-contact__desc {
	margin-top: 3.5rem;
	margin-bottom: 4rem;
	font-size: 1.6rem;
	text-align: center;
}

.c-contact__content {
	width: 110rem;
	margin: 0 auto 0;
	padding: 1rem 4.9rem 6.4rem;
	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: .3rem;
	background-color: #0151a0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

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

	.c-contact__inner {
		padding: 3.5rem 0 3.5rem;
	}

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

	.c-contact__desc {
		margin-top: 4.5rem;
		margin-bottom: 3.5rem;
		font-size: 2.8rem;
		text-align: left;
	}

	.c-contact__content {
		width: auto;
		padding: 1rem 2.9rem 6.6rem;
		background-color: #fff;
		border-radius: 1.5rem;
		box-shadow: none;
		border-left: .1rem solid #dddddd;
		border-right: .1rem solid #dddddd;
		border-bottom: .1rem solid #dddddd;
	}

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


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

 c-company

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

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

.c-company__list {
	width: 110rem;
	max-width: 100%;
	margin: 4rem auto 0;
}

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

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

.c-company__list dl dt {
	width: 25rem;
	padding: 0 5rem;
	font-weight: bold;
}

.c-company__list dl dd {
	flex: 1;
}

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

	.c-company__inner {
		padding: 3.5rem 0 3.5rem;
	}

	.c-company__list {
		width: 60rem;
		margin: 5rem auto 0;
	}

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

	.c-company__list dl dt {
		width: auto;
		padding: 0;
		text-align: center;
	}

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



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

 c-office

***********************************/
.c-office {
}

.c-office__inner {
	padding: 4rem 0 10rem;
}

.c-office__list {
	width: 110rem;
	max-width: 100%;
	margin: 4rem auto 0;
}

.c-office__list dl {
	display: flex;
	padding: 3.7rem 0;
	font-size: 1.6rem;
	border-bottom: .1rem solid #dddddd;
}

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

.c-office__list dl dt {
	width: 25rem;
	padding: 0 5rem;
	font-weight: bold;
}

.c-office__list dl dd {
	flex: 1;
}

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

	.c-office__inner {
		padding: 3.5rem 0 8rem;
	}

	.c-office__list {
		width: 60rem;
		margin: 5rem auto 0;
	}

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

	.c-office__list dl dt {
		width: auto;
		padding: 0;
		text-align: center;
	}

	.c-office__list dl dd {
		margin-top: .3em;
	}
}


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

 xxx

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

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

}

