@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: #c5000a;
	--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;
	--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;
}
.Roboto {
	font-family: 'Roboto', sans-serif;
}
.Poppins {
	font-family: 'Poppins', sans-serif;
}
* {
	box-sizing: border-box;
}



@media screen and (max-width:1370px){
	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: 34.6666666vw;
		padding: 1rem 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: #c50d18;
}
.u-blue {
	color: #1184df;
}
.u-yellow {
	color: #fee400;
}
.u-bgYellow {
	background-color: #fff100;
}
.u-marker {
	background: linear-gradient(transparent 70%, #fee400 70%);
}
.u-marker-gray {
	background: linear-gradient(transparent 70%, #eeeeee 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.has-fixed-contents {
	padding-bottom: 11rem;
}

.l-main {
}

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

.l-wrap.has-fixed-contents .l-pageTop {
	bottom: 15rem;
}

.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.has-fixed-contents {
		padding-bottom: 10rem;
	}

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

	.l-wrap.has-fixed-contents .l-pageTop {
		bottom: 13rem;
	}
}

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

 l-header

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

.l-header__logo {
	width: 8.6rem;
}

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

.l-header__right {
	display: flex;
	align-items: center;
	gap: 0 2.5rem;
	margin-bottom: .4rem;
}

.l-header__tel {
	display: flex;
}

.l-header__tel .balloon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18.7rem;
	height: 6.5rem;
	padding-right: 1rem;
	margin-right: .5rem;
	background: url(../images/hd_balloon01.png) no-repeat center center / contain;
}

.l-header__tel .balloon p {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.l-header__tel .box {
}

.l-header__tel .box a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.5rem;
	padding: .8rem 2rem 0;
	background: #fff;
	border: .2rem solid #dddddd;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

.l-header__tel .box a .txt01 {
	display: block;
	padding: .5rem 1rem;
	margin-top: -1.5rem;
	color: #fff;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.5;
	white-space: nowrap;
	background: #111111;
	border-radius: .7rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-header__tel .box a .icon {
	display: block;
	padding-left: 3rem;
	color: #c5000a;
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: .03em;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

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

.l-header__line,
.l-header__contact {
	margin-bottom: .2rem;
}

.l-header__line {

}

.l-header__contact {

}

.l-header__line a,
.l-header__contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.5rem;
	padding: 0 2rem;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

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

.l-header__line a {
	background: #40bf1f;
}

.l-header__contact a {
	background: #c6000a;
}

.l-header__line a .balloon,
.l-header__contact a .balloon {
	display: block;
	padding: .2rem 1.2rem;
	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__line a .icon,
.l-header__contact a .icon {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.l-header__line a .icon {
	padding-left: 4rem;
}

.l-header__contact a .icon {
	padding-left: 3.2rem;
}

.l-header__line a .icon:before,
.l-header__contact a .icon:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-header__line a .icon:before {
	width: 3.1rem;
	height: 2.7rem;
	background: url(../images/icon_line01.png) no-repeat center / contain;
}

.l-header__contact a .icon:before {
	width: 2.5rem;
	height: 1.8rem;
	background: url(../images/icon_mail01.png) no-repeat center / contain;
}

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

	.l-header__logo {
		width: 12.8rem;
	}

	.l-header__right {
		display: none;
	}
}

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

 l-fixed-contents-pc

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

.l-fixed-contents-pc__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 8.5rem;
	height: 11rem;
	padding-top: 1.2rem;
	background: #fff;
	border-top: .3rem solid #c6000a;
}

.l-fixed-contents-pc__logo {
	width: 8.6rem;
}

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

.l-fixed-contents-pc__right {
	display: flex;
	align-items: center;
	gap: 0 2.5rem;
}

.l-fixed-contents-pc__tel {
	display: flex;
}

.l-fixed-contents-pc__tel .balloon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18.7rem;
	height: 6.5rem;
	padding-right: 1rem;
	margin-right: .5rem;
	background: url(../images/hd_balloon01.png) no-repeat center center / contain;
}

.l-fixed-contents-pc__tel .balloon p {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.l-fixed-contents-pc__tel .box {
}

.l-fixed-contents-pc__tel .box a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.5rem;
	padding: .8rem 2rem 0;
	background: #fff;
	border: .2rem solid #dddddd;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

.l-fixed-contents-pc__tel .box a .txt01 {
	display: block;
	padding: .5rem 1rem;
	margin-top: -1.5rem;
	color: #fff;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.5;
	white-space: nowrap;
	background: #111111;
	border-radius: .7rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-fixed-contents-pc__tel .box a .icon {
	display: block;
	padding-left: 3rem;
	color: #c5000a;
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: .03em;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

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

.l-fixed-contents-pc__line,
.l-fixed-contents-pc__contact {
	margin-bottom: .2rem;
}

.l-fixed-contents-pc__line {

}

.l-fixed-contents-pc__contact {

}

.l-fixed-contents-pc__line a,
.l-fixed-contents-pc__contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.5rem;
	padding: 0 2rem;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

	.l-fixed-contents-pc__line a:hover,
	.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__line a {
	background: #40bf1f;
}

.l-fixed-contents-pc__contact a {
	background: #c6000a;
}

.l-fixed-contents-pc__line a .balloon,
.l-fixed-contents-pc__contact a .balloon {
	display: block;
	padding: .2rem 1.2rem;
	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__line a .icon,
.l-fixed-contents-pc__contact a .icon {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.l-fixed-contents-pc__line a .icon {
	padding-left: 4rem;
}

.l-fixed-contents-pc__contact a .icon {
	padding-left: 3.2rem;
}

.l-fixed-contents-pc__line a .icon:before,
.l-fixed-contents-pc__contact a .icon:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-fixed-contents-pc__line a .icon:before {
	width: 3.1rem;
	height: 2.7rem;
	background: url(../images/icon_line01.png) no-repeat center / contain;
}

.l-fixed-contents-pc__contact a .icon:before {
	width: 2.5rem;
	height: 1.8rem;
	background: url(../images/icon_mail01.png) no-repeat center / contain;
}

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

 l-fixed-contents-sp

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

.l-fixed-contents-sp__inner {
	display: flex;
	height: 10rem;
	background: #fff;
}

.l-fixed-contents-sp__tel {
	width: 33.33334%;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: calc(39.2 / 28);
}

.l-fixed-contents-sp__tel a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10rem;
	color: #c5000a;
	background: #ffffff;
}

.l-fixed-contents-sp__tel a .icon {
	padding-left: 5.2rem;
	position: relative;
	z-index: 1;
}

.l-fixed-contents-sp__tel a .icon:before {
	content: "";
	display: block;
	width: 3.8rem;
	height: 3.8rem;
	background: url(../images/icon_tel01.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__line {
	width: 33.33334%;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: calc(39.2 / 28);
}

.l-fixed-contents-sp__line a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10rem;
	color: #fff;
	background: #40bf1f;
}

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

.l-fixed-contents-sp__line a .icon:before {
	content: "";
	display: block;
	width: 4.6rem;
	height: 4rem;
	background: url(../images/icon_line01.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__contact {
	width: 33.33334%;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: calc(39.2 / 28);
}

.l-fixed-contents-sp__contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10rem;
	color: #fff;
	background: #c6000a;
}

.l-fixed-contents-sp__contact a .icon {
	padding-left: 5.2rem;
	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: 8rem 0;
}

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

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

.l-footer__copy {
	margin-top: 3.5rem;
	color: #b8b8b8;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
}

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

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

	.l-footer__logo {
		width: 12.8rem;
	}

	.l-footer__copy {
		margin-top: 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: #f0f8ff;
}

.c-sub-hero__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 34rem;
	padding-top: 8rem;
}

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

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

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

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

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

 c-btn01

***********************************/
a.c-btn01 {
	display: block;
	width: 100%;
	padding: 2rem 1.5rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: var(--text-letter-spacing-base);
	border-radius: 100px;
	box-shadow: 0 .5rem 0 0 #6a0005;
	background: linear-gradient(to bottom, rgba(227, 0, 12, 1) 0%, rgba(198, 0, 10, 1) 100%);
}

@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 #6a0005;
		filter: brightness(1.1);
	}
}

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

	@media (hover: hover) {

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

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

 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: 28.5rem;
	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.8;
}

.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: #c5000a;
}

.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 .note {
	margin-top: 1.2rem;
	font-size: 1.2rem;
	font-weight: bold;
}

.c-form__content dl dd .note li {
	text-indent: -1.15em;
	margin-left: 1.15em;
}

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

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

.c-form__privacy-content {
	margin-top: 2rem;
	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__privacy input {
	margin-right: .5em;
}

.c-form__submit {
	width: 32rem;
	max-width: 100%;
	margin: 4rem 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 #6a0005;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e3000c+0,c6000a+100 */
	background: linear-gradient(to bottom,  rgba(227,0,12,1) 0%,rgba(198,0,10,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: 4rem;
}

.c-form__confirmBtn__btn {
	width: 36rem;
}

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

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


@media (hover: hover) {

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

	.c-form__submit button:hover,
	.c-form__submit input:hover,
	.c-form__confirmBtn__btn .submit:hover {
		transform: translateY(.5rem);
		box-shadow: 0 0 0 0 #6a0005;
		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 {
		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: .2rem .7rem;
		font-size: 1.8rem;
		border-radius: .8rem;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

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

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

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

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

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

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

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

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

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

	.c-form__content dl dd .attached {
		text-align: center;
	}

	.c-form__content dl dd .note {
		margin-top: 2rem;
		font-size: 2.2rem;
	}

	.c-form__content dl dd .note li {
	}

	.c-form__privacy {
		display: flex;
		flex-direction: column-reverse;
		margin-top: 4rem;
	}

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

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

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

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

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

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

	.c-form__privacy-txt01 {
		margin-top: 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 #6a0005;
	}

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

	.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);
		}

		.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: 6.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;
}

@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: #fbfbf9;
}

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

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

.c-completeSec__inner .back {
	max-width: 34rem;
	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: 42rem;
	}
}



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

 c-hero

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

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

.c-hero__inner {
	width: 129rem;
	padding-top: 11.8rem;
	padding-bottom: 9rem;
	position: relative;
	z-index: 1;
}

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

.c-hero__txt01 .large {
	font-size: 2.6rem;
}

.c-hero__txt01 .block {
	display: inline-block;
	padding: 0 1.5rem;
	background: #000000;
	border-radius: .9rem;
	box-shadow: 0 .3rem 0 rgba(0,0,0,.1);
}

.c-hero__ttl {
	margin-top: 2.5rem;
	font-size: 6.8rem;
	font-weight: 900;
	line-height: 1.5;
}

.c-hero__ttl .large {
	font-size: 7.2rem;
}

.c-hero__ttl .block {
	display: inline-block;
	margin-top: 1.5rem;
	padding: .3rem 1.5rem;
	background: #fff;
	border-radius: 2rem;
	box-shadow: 0 .3rem 0 rgba(0,0,0,.1);
}

.c-hero__ttl .block:first-child {
	margin-top: 0;
}

.c-hero__desc {
	margin-top: 2rem;
	padding: 0 1.5rem;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: calc(39.6 / 22);
}

.c-hero__feature {
	display: flex;
	gap: 0 3rem;
	margin-top: 4.5rem;
}

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

.c-hero__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: #c6000a;
	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__feature li .txt01 {
	font-size: 2.2rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
}

.c-hero__feature li .txt02 {
	margin-top: .5rem;
	font-size: 2.2rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
}

.c-hero__feature li .txt02 .large01 {
	display: inline-block;
	font-size: 2.6rem;
	line-height: 1.2;
}

.c-hero__feature li .txt02 .large02 {
	display: inline-block;
	font-size: 4.6rem;
	font-weight: bold;
	line-height: 1;
}

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

.c-hero__line-inner {
	display: inline-block;
	text-align: center;
}

.c-hero__line-desc {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.c-hero__line-btn {
	margin-top: 1.5rem;
	font-size: 2.8rem;
	font-weight: 900;
}

.c-hero__line-btn a {
	display: inline-block;
	padding: 1.4rem 3.5rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#41c521+0,3aad1c+100 */
	background: linear-gradient(to bottom,  rgba(65,197,33,1) 0%,rgba(58,173,28,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 20rem;
	box-shadow: 0 .5rem 0 #1c580e;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

	.c-hero__line-btn a:hover {
		box-shadow: 0 0 0 #1c580e;
		transform: translateY(.5rem);
		filter: brightness(1.1);
	}
}

.c-hero__line-btn 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: -6rem;
	z-index: 1;
}

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

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

.c-hero__pic01 {
	width: 75.4rem;
	position: absolute;
	bottom: 0;
	right: -7.9rem;
	z-index: -1;
}

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

	.c-hero {
		padding: 0 3.5rem;
		background: url(../images/hero_bg01_sp.jpg) no-repeat center / cover;
	}

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

	.c-hero__inner {
		width: auto;
		padding-top: 14.5rem;
		padding-bottom: 44rem;
	}

	.c-hero__txt01 {
		font-size: 3.2rem;
		text-align: center;
	}

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

	.c-hero__txt01 .block {
		display: inline-block;
		margin-top: 1.5rem;
		padding: 0 1.5rem;
		border-radius: 1rem;
		box-shadow: 0 .3rem 0 rgba(0,0,0,.2);
	}

	.c-hero__txt01 .block:first-child {
		margin-top: 0;
	}

	.c-hero__ttl {
		margin-top: 2.2rem;
		font-size: 5rem;
		text-align: center;
		letter-spacing: .02em;
	}

	.c-hero__ttl .large {
		font-size: 5.4rem;
	}

	.c-hero__ttl .block {
		margin-top: 0;
		margin-bottom: 1.5rem;
		padding: .7rem 2rem;
		border-radius: 2rem;
		box-shadow: 0 .3rem 0 rgba(0,0,0,.2);
	}

	.c-hero__ttl .block:first-child {
		margin-top: 0;
	}

	.c-hero__ttl .block:last-child {
		margin-bottom: 0;
	}

	.c-hero__desc {
		margin-top: 3rem;
		padding: 0;
		font-size: 2.8rem;
		font-weight: bold;
		line-height: calc(50.4 / 28);
		text-align: center;
	}

	.c-hero__feature {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 5.5rem 4rem;
		margin-top: 5rem;
	}

	.c-hero__feature li {
		padding: 2.5rem 2rem 2rem;
		border-radius: 0;
		box-shadow: 0 .3rem 0 rgba(0,0,0,.2);
	}

	.c-hero__feature li:nth-child(2) {
		min-width: 22rem;
	}

	.c-hero__feature li:nth-child(3) {
		min-width: 32rem;
	}

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

	.c-hero__feature li .txt01 {
		font-size: 2.8rem;
		line-height: 1.5;
	}

	.c-hero__feature li .txt02 {
		margin-top: .5rem;
		font-size: 3.2rem;
		line-height: 1.5;
	}

	.c-hero__feature li .txt02 .large01 {
		font-size: 4rem;
		line-height: 1.2;
	}

	.c-hero__feature li .txt02 .large02 {
		font-size: 5.6rem;
	}

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

	.c-hero__line-desc {
		font-size: 2.4rem;
	}

	.c-hero__line-btn {
		margin-top: 2rem;
		font-size: 4.4rem;
	}

	.c-hero__line-btn a {
		padding: 1.2rem 5rem;
		box-shadow: 0 .7rem 0 #1c580e;
	}

	@media (hover: hover) {

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

	.c-hero__line-btn a:before {
		width: 11.2rem;
		height: 11.2rem;
		background: url(../images/hero_balloon01_sp.png) no-repeat center / contain;
		top: -7.6rem;
		right: -5.6rem;
	}

	.c-hero__line-btn a .icon {
		padding-left: 6.4rem;
	}

	.c-hero__line-btn a .icon:before {
		width: 4.7rem;
		height: 4rem;
		background: url(../images/icon_line01.png) no-repeat center / contain;
	}

	.c-hero__pic01 {
		width: 67.7rem;
		right: -1.7rem;
	}
}



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

 c-trouble

***********************************/
.c-trouble {
	background: #fbfbf9 url(../images/trouble_bg01_pc.png) no-repeat center bottom / 192rem auto;
}

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

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

.c-trouble__inner .c-title01:before {
	content: "";
	display: block;
	width: 51.2rem;
	height: 6.2rem;
	margin-bottom: -.4rem;
	background: url(../images/trouble_ttl_bg01.png) no-repeat center / contain;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-trouble__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4rem 4rem;
	width: 100rem;
	max-width: 100%;
	margin: 8rem auto 0;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.8;
	text-align: center;
	position: relative;
	z-index: 3;
}

.c-trouble__list-item {
	padding: 2.6rem 2rem 2.5rem;
	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__list-item:before {
	content: "";
	display: block;
	width: 3.4rem;
	height: 3.4rem;
	background: url(../images/trouble_check01.png) no-repeat center / contain;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-trouble__resolution {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 113.4rem;
	height: 42rem;
	margin: -4rem auto -29rem;
	padding-bottom: 2rem;
	background: url(../images/trouble_bg02_pc.png) no-repeat center / contain;
	position: relative;
	z-index: 2;
}

.c-trouble__resolution-inner {

}

.c-trouble__resolution-txt01 {
	color: #fff;
	font-size: 5.2rem;
	font-weight: 900;
	text-align: center;
	line-height: calc(87 / 58);
	text-shadow: 0 .3rem 0 rgba(0,0,0,.3);
}

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

@media screen and (min-width:1921px){
	.c-trouble {
		background-size: 100% 64.9rem;
	}
}

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

	.c-trouble {
		background: url(../images/trouble_bg01_sp.png) no-repeat center / cover;
	}

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

	.c-trouble__inner .c-title01:before {
		width: 51.2rem;
		height: 6.2rem;
		margin-bottom: -.4rem;
	}

	.c-trouble__list {
		display: block;
		width: 64rem;
		margin: 8rem auto 0;
		font-size: 3.2rem;
	}

	.c-trouble__list-item {
		margin-top: 5.5rem;
		padding: 3.6rem 2rem 2.5rem;
		border-radius: 1.5rem;
		box-shadow: 0 .3rem 0 rgba(0,0,0,.05);
	}

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

	.c-trouble__list-item:before {
		width: 5.1rem;
		height: 5.1rem;
	}

	.c-trouble__resolution {
		width: auto;
		height: 59.7rem;
		margin: -5rem -3.5rem 0;
		padding-bottom: 17rem;
		background: url(../images/trouble_bg02_sp.png) no-repeat center / contain;
	}

	.c-trouble__resolution-inner {

	}

	.c-trouble__resolution-txt01 {
		color: #fff;
		font-size: 5.2rem;
		font-weight: 900;
		text-align: center;
		line-height: calc(87 / 58);
		text-shadow: 0 .3rem 0 rgba(0,0,0,.3);
	}

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



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

 c-reason

***********************************/
.c-reason {
	background: #fbfbf9;
}

.c-reason__inner {
	padding: 34.5rem 0 19rem;
}

.c-reason__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5.5rem 6rem;
	margin-top: 7rem;
}

.c-reason__list-item {
	width: calc(100%/3 - 4rem);
	flex: 0 1 calc(100%/3 - 4rem);
	padding: 2.3rem 2.8rem 2rem;
	background: #fff;
	border-radius: 2rem;
	border: .2rem solid #ddd;
	position: relative;
	z-index: 1;
}

.c-reason__list-item .num {
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	margin-top: -.1rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 900;
	text-align: center;
	background: #c6000a;
	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-item .pic {
}

.c-reason__list-item .ttl {
	margin-top: 1.2rem;
	font-size: 2.2rem;
	font-weight: 900;
	text-align: center;
	line-height: calc(35.2 / 22);
}

.c-reason__list-item .desc {
	margin-top: 1rem;
	font-size: 1.8rem;
}

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

	.c-reason {
		margin-top: -13.6rem;
	}

	.c-reason__inner {
		padding: 19rem 0 17rem;
	}

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

	.c-reason__list-item {
		width: auto;
		margin-top: 7.3rem;
		padding: 3.9rem 3.7rem 3rem;
		border-radius: 2.5rem;
		border: .3rem solid #ddd;
	}

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

	.c-reason__list-item .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-item .ttl {
		margin-top: 2rem;
		font-size: 4rem;
	}

	.c-reason__list-item .desc {
		margin-top: 1.5rem;
		font-size: 2.8rem;
	}
}



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

 c-price

***********************************/
.c-price {
	margin-top: -10rem;
	margin-bottom: -10rem;
	background: #d02f37;
	border-radius: 10rem;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.c-price__inner {
	padding: 7.5rem 0 17.5rem;
	position: relative;
	z-index: 1;
}

.c-price__inner:before {
	content: "";
	display: block;
	width: 131.9rem;
	height: 18.9rem;
	background: url(../images/price_txt01.png) no-repeat center bottom / contain;
	position: absolute;
	bottom: 0;
	left: -8.8rem;
	z-index: -1;
}

.c-price__list {
	display: flex;
	justify-content: space-between;
	margin-top: 7rem;
	padding-bottom: 5rem;
	position: relative;
	z-index: 1;
}

.c-price__list:before {
	content: "";
	display: block;
	width: 130rem;
	height: 38rem;
	background: #9e2127;
	border-radius: 3rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-price__list-item {
	width: 36rem;
	background: #fff;
	border-radius: 2rem;
}

.c-price__list-item .pic {

}

.c-price__list-item .content {
	padding: 1.5rem 3rem 3rem;
}

.c-price__list-item .ttl {
	font-size: 2.2rem;
	font-weight: 900;
	text-align: center;
	line-height: calc(35.2 / 22);
}

.c-price__list-item .detail {
	margin-top: 2rem;
	border-top: 1px solid #cccccc;
}

.c-price__list-item .detail dl {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 1.5rem 0;
	border-bottom: 1px solid #cccccc;
}

.c-price__list-item .detail dl dt {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: calc(28.8 / 18);
}

.c-price__list-item .detail dl dd {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: calc(28.8 / 18);
}

.c-price__list-item .detail dl:first-child dd {
	font-weight: 900;
}

.c-price__list-item .detail dl dd .large01 {
	display: inline-block;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1;
}

.c-price__list-item .detail dl dd .large02 {
	display: inline-block;
	font-size: 2.4rem;
	line-height: 1.4;
}

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

	.c-price__inner {
		padding: 6.5rem 0 7rem;
	}

	.c-price__inner:before {
		width: 71.5rem;
		height: 10rem;
		left: -2.5rem;
	}

	.c-price__list {
		display: block;
		width: 62rem;
		margin: 5.5rem auto 0;
		padding-bottom: 6rem;
	}

	.c-price__list:before {
		width: 69rem;
		height: calc(100% - 18rem);
		border-radius: 2rem;
	}

	.c-price__list-item {
		width: auto;
		margin-top: 6rem;
		border-radius: 2rem;
	}

	.c-price__list-item:first-child {
		margin-top: 0;
	}

	.c-price__list-item .pic {

	}

	.c-price__list-item .content {
		padding: 2.5rem 4rem 4rem;
	}

	.c-price__list-item .ttl {
		font-size: 3.6rem;
	}

	.c-price__list-item .detail {
		margin-top: 2.5rem;
	}

	.c-price__list-item .detail dl {
		padding: 1.7rem 0;
	}

	.c-price__list-item .detail dl dt {
		font-size: 3.2rem;
	}

	.c-price__list-item .detail dl dd {
		font-size: 3.2rem;
	}

	.c-price__list-item .detail dl dd .large01 {
		font-size: 5.8rem;
	}

	.c-price__list-item .detail dl dd .large02 {
		font-size: 4.8rem;
	}
}



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

 c-cta

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

.c-cta__inner {
	padding-top: 11rem;
}

.c-cta__inner--first {
	padding-top: 21rem;
}

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

.c-cta__ttl .block {
	display: inline-block;
	margin-top: 1.5rem;
	padding: 0 1.5rem;
	background: #fff;
	border-radius: 1rem;
}

.c-cta__ttl .block:first-child {
	margin-top: 0;
}

.c-cta__content {
	display: flex;
	justify-content: space-between;
	width: 105rem;
	max-width: 100%;
	margin: 4rem auto 0;
	padding-bottom: 7.5rem;
	position: relative;
	z-index: 1;
}

.c-cta__content:before {
	content: "";
	display: block;
	width: 105rem;
	height: 21.5rem;
	background: url(../images/cta_pic01.png) no-repeat center / contain;
	position: absolute;
	bottom: 100%;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	pointer-events: none;
}

.c-cta__content:after {
	content: "";
	display: block;
	width: 128rem;
	height: 34rem;
	background: #004fae;
	border-radius: 10rem 10rem 0 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-cta__tel {
	width: 55rem;
	padding: 2.5rem 3rem 3rem;
	background: #fff;
	border: .7rem solid #d74c53;
	border-radius: 3rem;
}

.c-cta__tel-ttl {
	font-size: 3.6rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
}

.c-cta__tel-num {
	margin-top: 2rem;
	font-size: 5.1rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .03em;
	line-height: 1;
	white-space: nowrap;
}

.c-cta__tel-num a {
	padding-left: 4.8rem;
	color: #c5000a;
	position: relative;
	z-index: 1;
}

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

.c-cta__tel-desc {
	margin-top: 2rem;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.c-cta__tel-desc .block {
	display: inline-block;
	padding: .3rem 2.8rem;
	border: .2rem solid #dddddd;
	background: #fafbfc;
	border-radius: 20rem;
}

.c-cta__tel-list {
	display: flex;
	justify-content: center;
	gap: 2rem 2rem;
	margin-top: 2.5rem;
	color: #c6000a;
	font-size: 1.8rem;
	font-weight: bold;
}

.c-cta__tel-list li {
	padding: .1rem .8rem;
	border: .3rem solid #c6000a;
	border-radius: 1rem;
}

.c-cta__contact {
	width: 46rem;
	padding: 2rem 4.4rem 3.8rem;
	background: #fff;
	border: .1rem solid #cccccc;
	border-radius: 3rem;
}

.c-cta__contact-ttl {
	font-size: 2.2rem;
	font-weight: 900;
	text-align: center;
}

.c-cta__contact-line {
	margin-top: 3rem;
}

.c-cta__contact-mail {
	margin-top: 4rem;
}

.c-cta__contact-line a,
.c-cta__contact-mail a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 9rem;
	border-radius: 2rem;
	position: relative;
	z-index: 1;
}

.c-cta__contact-line a {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#41c521+0,3aad1c+100 */
	background: linear-gradient(to bottom,  rgba(65,197,33,1) 0%,rgba(58,173,28,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .5rem 0 #216510;
}

.c-cta__contact-mail a {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#df000c+0,c7000a+100 */
	background: linear-gradient(to bottom,  rgba(223,0,12,1) 0%,rgba(199,0,10,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .5rem 0 #6a0005;
}

@media (hover: hover) {

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

	.c-cta__contact-line a:hover,
	.c-cta__contact-mail a:hover {
		transform: translateY(.5rem);
		filter: brightness(1.1);
	}

	.c-cta__contact-line a:hover {
		box-shadow: 0 0 0 #216510;
	}

	.c-cta__contact-mail a:hover {
		box-shadow: 0 0 0 #6a0005;
	}
}

.c-cta__contact-line a .balloon,
.c-cta__contact-mail a .balloon {
	display: block;
	padding: .2rem 1.2rem;
	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%);
}

.c-cta__contact-line a .icon,
.c-cta__contact-mail a .icon {
	color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

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

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

.c-cta__contact-line a .icon:before,
.c-cta__contact-mail a .icon:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-cta__contact-line a .icon:before {
	width: 3.1rem;
	height: 2.7rem;
	background: url(../images/icon_line01.png) no-repeat center / contain;
}

.c-cta__contact-mail a .icon:before {
	width: 2.7rem;
	height: 2rem;
	background: url(../images/icon_mail01.png) no-repeat center / contain;
}

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

	.c-cta__inner {
		padding-top: 9rem;
	}

	.c-cta__inner--first {
		padding-top: 18.5rem;
	}

	.c-cta__ttl {
		font-size: 3rem;
		position: relative;
		z-index: 2;
	}

	.c-cta__ttl .block {
		margin-top: 0;
		margin-bottom: 3rem;
		padding: 0 1.5rem;
		border-radius: 1rem;
	}

	.c-cta__ttl .block:first-child {
		margin-top: 0;
	}

	.c-cta__ttl .block:last-child {
		margin-bottom: 0;
	}

	.c-cta__content {
		display: block;
		width: 60rem;
		margin: 5rem auto 0;
		padding-bottom: 8rem;
	}

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

	.c-cta__content:after {
		width: 68rem;
		height: calc(100% + 34.5rem);
		border-radius: 8rem 8rem 0 0;
	}

	.c-cta__tel {
		width: auto;
		padding: 2.5rem 3rem 3.5rem;
		background: #fff;
		border: .7rem solid #d74c53;
		border-radius: 3rem;
	}

	.c-cta__tel-num {
		margin-top: 2rem;
		font-size: 5.5rem;
	}

	.c-cta__tel-num a {
		padding-left: 4.8rem;
	}

	.c-cta__tel-num a:before {
		width: 3.8rem;
		height: 3.8rem;
	}

	.c-cta__tel-desc {
		margin-top: 2rem;
		font-size: 2.4rem;
	}

	.c-cta__tel-desc .block {
		padding: .1rem 2rem;
		border: .2rem solid #dddddd;
	}

	.c-cta__tel-list {
		gap: 2rem 2rem;
		margin-top: 2.5rem;
		font-size: 2.4rem;
	}

	.c-cta__tel-list li {
		padding: .1rem 1rem;
		border: .3rem solid #c6000a;
		border-radius: 1rem;
	}

	.c-cta__contact {
		width: auto;
		margin-top: 4rem;
		padding: 2rem 3.3rem 4rem;
		background: #fff;
		border: .7rem solid #cccccc;
		border-radius: 3rem;
	}

	.c-cta__contact-ttl {
		font-size: 3.6rem;
		line-height: calc(57.6 / 36);
	}

	.c-cta__contact-line {
		margin-top: 4.5rem;
	}

	.c-cta__contact-mail {
		margin-top: 6.4rem;
	}

	.c-cta__contact-line a,
	.c-cta__contact-mail a {
		height: 12.5rem;
		border-radius: 2rem;
	}

	.c-cta__contact-line a {
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#41c521+0,3aad1c+100 */
		background: linear-gradient(to bottom,  rgba(65,197,33,1) 0%,rgba(58,173,28,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		box-shadow: 0 .7rem 0 #216510;
	}

	.c-cta__contact-mail a {
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#df000c+0,c7000a+100 */
		background: linear-gradient(to bottom,  rgba(223,0,12,1) 0%,rgba(199,0,10,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		box-shadow: 0 .7rem 0 #6a0005;
	}

	@media (hover: hover) {

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

		.c-cta__contact-line a:hover,
		.c-cta__contact-mail a:hover {
			transform: translateY(.7rem);
			filter: brightness(1.1);
		}
	}

	.c-cta__contact-line a .balloon,
	.c-cta__contact-mail a .balloon {
		padding: .1rem 1.2rem;
		font-size: 2.2rem;
		border-radius: 1rem;
		top: -2.2rem;
	}

	.c-cta__contact-line a .icon,
	.c-cta__contact-mail a .icon {
		font-size: 3.6rem;
	}

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

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

	.c-cta__contact-line a .icon:before {
		width: 4.6rem;
		height: 4rem;
	}

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



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

 c-works

***********************************/
.c-works {
}

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

.c-works__content {
	width: 100rem;
	margin: 5.5rem auto 0;
	position: relative;
	z-index: 1;
}

.c-works__content .slider-prev {
	width: 6rem;
	height: 6rem;
	background: url(../images/icon_prev01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: -9rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	cursor: pointer;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.c-works__content .slider-next {
	width: 6rem;
	height: 6rem;
	background: url(../images/icon_next01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: -9rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	cursor: pointer;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

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

.c-works__content-slider .slick-list {
	margin-right: -6rem;
}

.c-works__content-slider .slick-track {
	display: flex;
}

.c-works__content-slider-item {
	height: auto !important;
	margin-right: 6rem;
}

.c-works__content-slider-item .ttl {
	width: 41rem;
	margin: 0 auto -2.5rem;
	padding: .7rem 0;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	background: #c6000a;
	border-radius: 1.5rem;
	position: relative;
	z-index: 2;
}

.c-works__content-slider-item .content {
	padding: 4.5rem 2.9rem 2.5rem;
	background: #fff;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

.c-works__content-slider-item .content:before {
	content: "";
	display: block;
	width: calc(100% - .5rem);
	height: 100%;
	border: 1px solid #cccccc;
	border-radius: 1.5rem;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	pointer-events: none;
}

.c-works__content-slider-item .content .pic {
	text-align: center;
}

.c-works__content-slider-item .content .txt01 {
	margin-top: 1.5rem;
	font-size: 1.6rem;
	line-height: 2;
}

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

	.c-works {
		background-size: 1.5rem 1.5rem;
	}

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

	.c-works__content {
		width: 47rem;
		margin: 5.5rem auto 0;
	}

	.c-works__content .slider-prev {
		width: 7rem;
		height: 7rem;
		left: -10rem;
	}

	.c-works__content .slider-next {
		width: 7rem;
		height: 7rem;
		right: -10rem;
	}

	.c-works__content .slider-next:hover {
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

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

	.c-works__content-slider-item {
		margin-right: 3rem;
	}

	.c-works__content-slider-item .ttl {
		width: 41rem;
		margin: 0 auto -3rem;
		padding: .2rem 0;
		font-size: 2.8rem;
		border-radius: 1.5rem;
	}

	.c-works__content-slider-item .content {
		padding: 4.3rem 2.8rem 2.5rem;
		border-radius: 1.5rem;
		box-shadow: 0 .15rem 0 rgba(0, 0, 0, 0.05);
	}

	.c-works__content-slider-item .content:before {
		width: calc(100% - .3rem);
		border: .2rem solid #dddddd;
		border-radius: 1.5rem;
	}

	.c-works__content-slider-item .content .txt01 {
		margin-top: 1.5rem;
		font-size: 2.5rem;
	}
}



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

 c-flow

***********************************/
.c-flow {
	background: #fbfbf9;
}

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

.c-flow__inner-list {
	width: 100rem;
	max-width: 100%;
	margin-top: 8rem;
	margin-left: auto;
	margin-right: auto;
}

.c-flow__inner-list-sec {
	display: flex;
	justify-content: space-between;
	padding: 4rem 5rem 3rem;
	margin-top: 8.4rem;
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 .3rem 0 rgba(0, 0, 0, 0.05);
	position: relative;
	z-index: 1;
}

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

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

.c-flow__inner-list-sec.arr-none:before,
.c-flow__inner-list-sec:last-child:before {
	display: none;
}

.c-flow__inner-list-sec .num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 9.6rem;
	height: 4rem;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: .03em;
	background: #c6000a;
	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__inner-list-sec .pic {
	width: 24rem;
	margin-right: 4rem;
}

.c-flow__inner-list-sec .content {
	flex: 1;
}

.c-flow__inner-list-sec .content .ttl {
	padding: .7rem 2rem;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.6;
	border-top: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.c-flow__inner-list-sec .content .ttl:before {
	content: "";
	display: block;
	width: .4rem;
	height: 100%;
	background: #c6000a;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.c-flow__inner-list-sec .content .txt01 {
	margin-top: 1.5rem;
	margin-bottom: -.3em;
	margin-right: -.25em;
	font-size: 1.6rem;
	line-height: 2;
}

.c-flow__inner-list-free {
	padding: .9rem 1.5rem;
	margin-top: 3.3rem;
	background: #c6000a;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

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

.c-flow__inner-list-free p {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

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

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

	.c-flow__inner-list {
		width: 60rem;
		margin-top: 8rem;
	}

	.c-flow__inner-list-sec {
		display: block;
		padding: 6rem 4rem 3rem;
		margin-top: 12rem;
		border-radius: 2rem;
		box-shadow: 0 .3rem 0 rgba(0, 0, 0, 0.05);
	}

	.c-flow__inner-list-sec:before {
		width: 4.8rem;
		height: 3.4rem;
		margin-bottom: -7rem;
	}

	.c-flow__inner-list-sec .num {
		width: 11.6rem;
		height: 4.8rem;
		color: #fff;
		font-size: 2.4rem;
		border-radius: 1.5rem;
	}

	.c-flow__inner-list-sec .pic {
		width: 40rem;
		margin: 0 auto;
		text-align: center;
	}

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

	.c-flow__inner-list-sec .content .ttl {
		padding: 1.2rem 3rem;
		font-size: 3.2rem;
		text-align: center;
		border-radius: 1rem;
		border-top: none;
		border-left: .1rem solid #dddddd;
	}

	.c-flow__inner-list-sec .content .ttl:before {
		width: 100%;
		height: .4rem;
		top: 0;
		left: 0;
	}

	.c-flow__inner-list-sec .content .txt01 {
		margin-top: 2rem;
		font-size: 2.8rem;
	}

	.c-flow__inner-list-free {
		padding: 1rem 3rem;
		margin-top: 4.3rem;
	}

	.c-flow__inner-list-free:before {
		width: 4.8rem;
		height: 3.5rem;
		margin-bottom: -7rem;
	}

	.c-flow__inner-list-free p {
		font-size: 3rem;
	}
}



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

 c-faq

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

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

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

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

}



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

 c-contact

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

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

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

.c-contact__cta {
	display: flex;
	justify-content: space-between;
	width: 110rem;
	max-width: 100%;
	margin: 4rem auto 5rem;
}

.c-contact__tel {
	width: 52.5rem;
	padding: 2rem 3rem 3rem;
	background: #fff;
	border: .1rem solid #dddddd;
	border-radius: 3rem;
}

.c-contact__tel-ttl {
	width: 38rem;
	margin: 0 auto 2rem;
	padding-bottom: 1.5rem;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
	border-bottom: .1rem solid #dddddd;
}

.c-contact__tel-num {
	font-size: 3.4rem;
	font-weight: bold;
	white-space: nowrap;
	letter-spacing: .03em;
	line-height: 1;
	text-align: center;
}

.c-contact__tel-num a {
	padding-left: 3.2rem;
	color: #c5000a;
	position: relative;
	z-index: 1;
}

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

.c-contact__tel-time {
	margin-top: 1.5rem;
	font-size: 1.2rem;
	text-align: center;
}

.c-contact__tel-time .block {
	display: inline-block;
	width: 30rem;
	background: #f5f5f5;
	border-radius: 20rem;
}

.c-contact__line {
	width: 52.5rem;
	padding: 2rem 3rem 3rem;
	background: #fff;
	border: .1rem solid #dddddd;
	border-radius: 3rem;
}

.c-contact__line-ttl {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

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

.c-contact__line-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 37rem;
	height: 9rem;
	margin: 0 auto;
	border-radius: 2rem;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#41c521+0,3aad1c+100 */
	background: linear-gradient(to bottom,  rgba(65,197,33,1) 0%,rgba(58,173,28,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	box-shadow: 0 .5rem 0 #216510;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

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

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

.c-contact__line-btn a .balloon {
	display: block;
	padding: .2rem 1.2rem;
	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%);
}

.c-contact__line-btn a .icon {
	display: inline-block;
	padding-left: 3.8rem;
	color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

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

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

.c-contact__wrap-ttl {
	margin-bottom: 3rem;
	padding: .3rem 3rem;
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	background: #c5000a;
	border-radius: 1.5rem;
}

.c-contact__content {
	padding: 1rem 4.8rem 6.3rem;
	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: #c5000a;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

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

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

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

	.c-contact__cta {
		display: block;
		width: 60rem;
		margin: 4.5rem auto 6rem;
	}

	.c-contact__tel {
		width: auto;
		padding: 2rem 3rem 3rem;
		text-align: center;
		background: #fff;
		border: .3rem solid #dddddd;
		border-radius: 3rem;
	}

	.c-contact__tel-ttl {
		display: inline-block;
		width: auto;
		margin: 0 auto 2rem;
		padding-bottom: 2rem;
		font-size: 2.8rem;
		border-bottom: .1rem solid #dddddd;
	}

	.c-contact__tel-num {
		font-size: 6rem;
	}

	.c-contact__tel-num a {
		padding-left: 5.4rem;
	}

	.c-contact__tel-num a:before {
		width: 4.8rem;
		height: 4.8rem;
	}

	.c-contact__tel-time {
		margin-top: 2rem;
		padding: .2rem 0;
		font-size: 1.8rem;
	}

	.c-contact__tel-time .block {
		width: 46rem;
	}

	.c-contact__line {
		width: auto;
		margin-top: 6rem;
		padding: 2rem 3.7rem 4rem;
		border: .3rem solid #dddddd;
		border-radius: 3rem;
	}

	.c-contact__line-ttl {
		font-size: 2.8rem;
	}

	.c-contact__line-btn {
		margin-top: 4.5rem;
	}

	.c-contact__line-btn a {
		width: auto;
		height: 12.5rem;
		margin: 0 auto;
		border-radius: 2rem;
		box-shadow: 0 .7rem 0 #216510;
	}

	@media (hover: hover) {

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

	.c-contact__line-btn a .balloon {
		padding: 0 1.2rem;
		font-size: 2.2rem;
		border-radius: .7rem;
		top: -2.2rem;
	}

	.c-contact__line-btn a .icon {
		padding-left: 6rem;
		font-size: 3.6rem;
	}

	.c-contact__line-btn a .icon:before {
		width: 4.6rem;
		height: 4rem;
	}

	.c-contact__wrap {
		width: auto;
	}

	.c-contact__wrap-ttl {
		margin-bottom: 3rem;
		padding: .8rem 3rem;
		font-size: 3.2rem;
		border-radius: 3rem;
	}

	.c-contact__content {
		padding: 1rem 2.8rem 6.5rem;
		border-left: .2rem solid #dddddd;
		border-right: .2rem solid #dddddd;
		border-bottom: .2rem solid #dddddd;
		border-radius: 3rem;
	}

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



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

 c-company

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

.c-company__inner {
	padding: 7rem 0 2rem;
}

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

.c-company__list dl {
	display: flex;
	padding: 3.9rem 0;
	line-height: 1.8;
	border-bottom: 1px solid #dddddd;
}

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

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

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

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

	.c-company__inner {
		padding: 6rem 0 2rem;
	}

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

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

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

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

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


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

 xxx

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

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

}

