@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Noto+Sans+JP:wght@100..900&display=swap');
/* View Switch */
/* Universal Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body p, body span, body dl, h1, h2, h3, h4, h5, h6{
    transform: rotate(0.03deg);
    -moz-transform: rotate(0.03deg);
    -ms-transform: rotate(0.03deg);
    -o-transform: rotate(0.03deg);
    -webkit-transform: rotate(0.03deg);
}
@media (min-width: 681px ) {
	.sp {
		display: none !important;
	}
	.pc {
		display: block !important;
	}
}
@media (max-width: 680px ) {
	.sp {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}

body p, body span, body dl, h1, h2, h3, h4, h5, h6 {}
/***********************************
:root
************************************/
:root {
	--base-color: #fff;
	--main-color: #f0a61d;
	--sub-color: #3c3c3c;
}
/***********************************
Base Settings
************************************/
html {
	background: var(--base-color);
	font-family: "Noto Sans JP", "IBM Plex Sans JP", sans-serif;
	font-size: 10px;
	color: var(--sub-color);
	width: 100%;
	max-width: 100%;
	min-width: 320px;
	height: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}
body {
	height: 100vh;
	margin: 0;
}
.bg_black {
	background: linear-gradient(315deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .9) 55%, rgba(0, 0, 0, .8) 55%, rgba(0, 0, 0, .8) 100%);
	color: var(--base-color);
}
.bg_grey {
	background: #eee;
}
.t_center {
	text-align: center;
}
/*
fade animation */
.fadeUpTrigger {
	opacity: 0;
}
.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeLeftTrigger {
	opacity: 0;
}
.fadeLeft{
	animation-name:fadeLeftAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeLeftAnime{
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.fadeRightTrigger {
	opacity: 0;
}
.fadeRight {
	animation-name:fadeRightAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeRightAnime{
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02{
	animation-delay: 0.2s;
}
.delay-time04{
	animation-delay: 0.4s;
}
.delay-time06{
	animation-delay: 0.6s;
}
.delay-time08{
	animation-delay: 0.8s;
}
.delay-time10{
	animation-delay: 1s;
}
.op0 {
	opacity: 0;
}

.conbox {
	position: relative;
	width: 1280px;
	margin: 0 auto;
}

.cta {
	background: url(./../img/__fv.svg) no-repeat center center;
	background-size: cover;
	background-color: var(--main-color);
	padding: 10.0rem 1.0rem;
}
.cta h2 {
	font-size: 4.0rem;
	font-weight: 700;
	text-align: center;
}
.cta .text {
	margin-top: 5.0rem;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
	line-height: 200%;
}
.cta .btn_cta {
	display: flex;
	justify-content: center;
	margin-top: 5.0rem;
}
.cta .btn_cta .mail {
	margin-right: 2.5rem;
}
.cta .btn_cta .mail a {
	display: block;
	background: var(--sub-color);
	width: 380px;
	height: 102px;
	padding: 0 2.0rem;
	color: var(--base-color);
	font-size: 2.0rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	line-height: 102px;

	border-radius: 6px;

	transition: all .3s;
}
.cta .btn_cta .mail a:hover {
	background: var(--base-color);
	color: var(--sub-color);
}
.cta .btn_cta .tel {
	margin-right: 2.5rem;
}
.cta .btn_cta .tel a {
	display: block;
	background: var(--sub-color);
	width: 380px;
	height: 102px;
	padding: 2.0rem;
	color: var(--base-color);
	font-size: 2.6rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-align: center;
	text-decoration: none;

	border-radius: 6px;

	transition: all .3s;
}
.cta .btn_cta .tel a:hover {
	background: var(--base-color);
	color: var(--sub-color);
}
.cta .btn_cta .tel a span {
	display: block;
	font-size: 1.4rem;
	letter-spacing: .08em;
}
#header {
	position: fixed;
	top: 0; right: 0; left: 0;
	z-index: 999;
	padding-bottom: 15px;

	background: rgba( 255, 255, 255, .7  );
}
#header .h_inner {
	display: flex;
	justify-content: space-between;
	padding: 15px 0 0;
}
#header .h_inner h1 {
	all: unset;
	position: relative;
	margin-left: 10px;
}
#header .h_inner h1 img {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	height: 18px;
	vertical-align: bottom;

	transition: all .3s;
}
#header .h_inner h1 img:hover {
	opacity: .7;
}
#header .h_inner nav {}
#header .h_inner nav ul {
	display: flex;
	list-style: none;
}
#header .h_inner nav ul li {
	position: relative;
	margin: 0 15px;
}
#header .h_inner nav ul li:last-of-type {
	margin-right: 10px;
}
#header .h_inner nav ul li a {
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	color: #222;
	font-weight: 600;
	font-size: 1.5rem;
	text-decoration: none;
	transition: all .3s;
}
#header .h_inner nav ul li a:hover {
	color: var(--main-color);
}
#header .h_inner nav ul li a.btn {
	display: block;
    background: linear-gradient(90deg, #f4a000, #ffc84a);
	padding: 8px 10px;
	border-radius: 6px;
}
#header .h_inner nav ul li a.btn:hover {
    background: linear-gradient(90deg, #222, #555);
	color: #f4a000;
}


#main {
	position: relative;
	top: 67px;
	width: 100%;
}



#main .hero {
	position: relative;
	padding: 100px 0;
}

#main .hero .text {
	position: absolute;
	top: 0; bottom: 0;
}
#main .hero .text .t_inner {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 50px;
}
#main .hero .text .t_inner h2 {
	font-size: 5.0rem;
	font-weight: 900;
}
#main .hero .text .t_inner h2 span {
	color: var(--main-color);
}
#main .hero .text .t_inner h3 {
	margin-top: 2.0rem;
	font-size: 2.4rem;
	font-weight: 700;
}
#main .hero .text .catbox {
	margin-top: 5.0rem;
}
#main .hero .text .catbox .btn_contact a {
	display: block;
    background: linear-gradient(90deg, #f4a000, #ffc84a);
	width: fit-content;
	padding: 20px 60px;

	color: #222;
	font-size: 1.8rem;
	font-weight: 700;
	text-decoration: none;

	border-radius: 6px;
	transition: all .3s;
}
#main .hero .text .catbox .btn_contact a:hover {
	background: linear-gradient(90deg, #222, #555);
	color: #f4a000;
}
#main .hero .text .catbox .btn_tel {
	width: fit-content;
	margin-top: 2.0rem;
	font-size: 1.6rem;
}
#main .hero .text .catbox .btn_tel dt {
	line-height: 45px;
}
#main .hero .text .catbox .btn_tel a {
	margin-left: 1.0rem;
	color: var(--main-color);
	font-size: 3.0rem;
	font-weight: 900;
	text-decoration: none;
}
#main .hero .text .catbox .btn_tel dd {
	text-align: center;
}
#main .hero .img {
	position: relative;
	right: -100px;
	z-index: -1;
	text-align: right;
}
#main .hero .img img {
	width: 50%;
}


#main .bg_gray {
	background: #efefef;
}
#main .bg_gray2 {
	background: #dedede;
}
#main .bg_gray3 {
	background: linear-gradient(315deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .9) 55%, rgba(0, 0, 0, .8) 55%, rgba(0, 0, 0, .8) 100%);
    color: var(--base-color);
}
#main .bg_red {
	background: rgba( 255, 0, 0, .05 );
}
#main .bg_green {
	background: #f0fdf4;
}

#main .f_red {
	color: #900;
}
#main .mt30 {
	margin-top: 3.0rem;
}

#main .content_01 {
	padding: 10.0rem 1.0rem;
}
#main .content_01 p {
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 200%;
}
#main .content_02 {
	position: relative;
	height: 800px;
	padding: 10.0rem 1.0rem;
}
#main .content_02 h2 {
	color: #900;
	font-size: 4.0rem;
	font-weight: 700;
	text-align: center;
}
#main .content_02 .img {
	position: relative;
	top: 50px;
}
#main .content_02 .img img {
	height: 700px;
	transform: scale(-1, 1);
}
#main .content_02 .text {
	position: relative;
}
#main .content_02 .text ul {
	position: relative;
}
#main .content_02 .text ul li {
	position: absolute;
	z-index: 1;
	list-style: none;
}
#main .content_02 .text ul li img {
	width: 300px;
}
#main .content_02 .text ul li:first-of-type {
	top: 100px; right: 350px;
}
#main .content_02 .text ul li:nth-of-type(2) {
	top: 150px; right: 0;
}
#main .content_02 .text ul li:nth-of-type(3) {
	top: 350px; right: 400px;
}
#main .content_02 .text ul li:nth-of-type(4) {
	top: 400px; right: 50px;
}

#main .content_03 {
	padding: 10.0rem 1.0rem;
}
#main .content_03 h2 {
	color: #008236;
	font-size: 4.0rem;
	font-weight: 700;
	text-align: center;
}
#main .content_03 .text {
	margin-top: 5.0rem;
	font-size: 1.8rem;
	text-align: center;
	line-height: 200%;
}
#main .content_03 .text span {
	color: #008236;
	font-weight: 700;
}
#main .content_03 .box {
	display: flex;
	justify-content: center;
	margin-top: 5.0rem;
}
#main .content_03 .box dl {
	width: 25%;
	background: #b9f8cf;
	margin: 0 3.0rem;
	padding: 2.5rem 2.0rem;

	text-align: center;
	border-radius: 6px;
}
#main .content_03 .box dl dt {}
#main .content_03 .box dl dt h3 {
	font-size: 1.8rem;
	font-weight: 800;
}
#main .content_03 .box dl dd {
	margin-top: 1.0rem;
	font-size: 1.5rem;
	line-height: 180%;
}


#main .content_04 {
	padding: 10.0rem 1.0rem;
}
#main .content_04 h2 {
	color: #222;
	font-size: 4.0rem;
	font-weight: 700;
	text-align: center;
}
#main .content_04 .merit {
	position: relative;
	display: flex;
	justify-content: space-between;

	margin-top: 5.0rem;
}
#main .content_04 .merit .box {
	width: 60%;
}
#main .content_04 .merit .box dl {
	width: 85%;
	margin-bottom: 3.0rem;
	padding: 1.5rem;
	font-size: 1.6rem;

	border: 1px solid #ccc;
	border-radius: 6px;
}
#main .content_04 .merit .box dl dt {}
#main .content_04 .merit .box dl dt h3 {
	font-size: 1.8rem;
	font-weight: 800;
}
#main .content_04 .merit .box dl dd {
	margin-top: 1.0rem;
	line-height: 180%;
}
#main .content_04 .merit .img {
	width: 40%;
}
#main .content_04 .merit .img img {
	width: 100%;
}


#main .content_05 {
	padding: 10.0rem 1.0rem;
}
#main .content_05 h2 {
	color: #222;
	font-size: 4.0rem;
	font-weight: 700;
	text-align: center;
}
#main .content_05 .text {
	margin-top: 5.0rem;
	font-size: 1.8rem;
	text-align: center;
	line-height: 200%;
}
#main .content_05 .box {
	display: flex;
	justify-content: space-between;
	margin-top: 5.0rem;
}
#main .content_05 .box div {
	overflow: hidden;
	background: #fff;
	width: 23%;
	border: 1px solid #ccc;
	border-radius: 6px;
}
#main .content_05 .box div .img {}
#main .content_05 .box div .img img {
	width: 100%;
	vertical-align: bottom;
}
#main .content_05 .box div dl {
	border-top: 1px solid #ccc;
	padding: 1.5rem 0;
}
#main .content_05 .box div dl dt {
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 180%;
}
#main .content_05 .box div dl dd {
	font-size: 1.4rem;
	padding: 1.0rem 1.5rem;
}

#main .content_06 {
	padding: 10.0rem 1.0rem;
}
#main .content_06 h2 {
	color: #222;
	font-size: 4.0rem;
	font-weight: 700;
	text-align: center;
}
#main .content_06 .text {
	margin-top: 5.0rem;
	font-size: 1.8rem;
	text-align: center;
	line-height: 200%;
}
#main .content_06 .text span {
	font-size: 1.4rem;
}

#main .content_06 .voice {
	width: 100%;
	overflow: hidden; /* スクロールバーを隠す */
	padding: 5.0rem 0 0;
}
#main .content_06 .voice .v_inner {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: voice-scroll 60s linear infinite;
}
#main .content_06 .v_inner dl {
	width: 360px;
	flex-shrink: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	padding: 20px;
}
#main .content_06 .v_inner dt {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 18px;
	color: #333;
}
#main .content_06 .v_inner dd {
	margin: 0;
	font-size: 15px;
	line-height: 180%;
	color: #555;
}
/* 横スクロールアニメーション */
@keyframes voice-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

#main .content_07 {
	padding: 10.0rem 1.0rem;
	color: #fff;
}
#main .content_07 h2 {
	font-size: 4.0rem;
	font-weight: 700;
	text-align: center;
}
#main .content_07 .text {
	margin-top: 5.0rem;
	font-size: 1.8rem;
	text-align: center;
	line-height: 200%;
}

#main .content_07 .plan_box {
	display: flex;
	justify-content: space-between;
	margin: 5.0rem 0 0;
}
#main .content_07 .plan_box .plan {
	/*background: rgba( 255, 255, 255, .1 );*/
	background: #444;
	width: 31%;

	border-radius: 10px;
	border: 1px solid rgba( 255, 255, 255, .05 );
}
#main .content_07 .plan_box .plan h3 {
	text-align: center;
	padding: 20px 10px 10px;

	color: var(--main-color);
	font-size: 2.4rem !important;
	font-weight: 900;
}
#main .content_07 .plan_box .plan .plan_head_text {
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
}
#main .content_07 .plan_box .plan ul {
	list-style: none;
	margin: 20px 0 0;
	border-top: 1px solid rgba( 0, 0, 0, .1 );
}
#main .content_07 .plan_box .plan ul li {
	background: rgba( 0, 0, 0, .1 );
	min-height: 60px;
	padding: 0 20px;

	font-size: 1.4rem;
	line-height: 60px;

	border-bottom: 1px solid rgba( 0, 0, 0, .1 );

	&:nth-child(2n) {
		background: none;
	}
}
#main .content_07 .plan_box .plan ul li img {
	height: 20px;
	vertical-align: middle;
	margin: -5px 10px 0;
}
#main .content_07 .plan_box .plan .price {
	border-top: 1px solid rgba( 0, 0, 0, .1 );
	padding: 20px;

	color: var(--main-color);
	font-size: 3.2rem;
	font-weight: 900;
	text-align: center;
}
#main .content_07 .plan_box .plan .price span {
	margin: 0 0 0 5px;
	font-size: 1.6rem;
}

#main .content_08 {
	padding: 10.0rem 1.0rem;
}
#main .content_08 h2 {
	font-size: 4.0rem;
	font-weight: 700;
	text-align: center;
}
#main .content_08 .faq {
	margin-top: 5.0rem;
}
#main .content_08 .faq dl {
	margin: 15px 0;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}
#main .content_08 .faq dl:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
#main .content_08 .faq dt {
	cursor: pointer;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: bold;
	background: #f9f9f9;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#main .content_08 .faq dd {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	transition: max-height 0.4s ease, padding 0.4s ease;
}
#main .content_08 .faq dd a {
	color: var(--main-color);
	font-weight: 600;
	text-decoration: none;
	transition: all .3s;
}
#main .content_08 .faq dd a:hover {
	color: var(--sub-color);
}
/* 開いたとき */
#main .content_08 .faq dl.open dd {
	max-height: 500px; /* コンテンツに十分な高さ */
	padding: 15px 20px;
}

/* 矢印回転 */
#main .content_08 .faq dt .icon {
	transition: transform 0.3s ease;
}
#main .content_08 .faq dl.open .icon {
	transform: rotate(180deg);
}

.contact {
	background: url(./../img/__fv.svg) no-repeat center center;
	background-size: cover;
	background-color: var(--main-color);
	padding: 10.0rem 1.0rem;
}
.contact .conbox {
	display: flex;
	justify-content: space-between;
}
.contact .conbox .tel {
	width: 40%;
}
.contact .conbox .tel h2 {
	font-size: 2.5rem;
	font-weight: 700;
}
.contact .conbox .tel .text {
	margin-top: 3.0rem;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 200%;
}
.contact .conbox .tel dl {
	margin-top: 3.0rem;
}
.contact .conbox .tel dl dt {
	background: var(--sub-color);
	width: fit-content;
	padding: 0.5rem 1.0rem;
	color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
}
.contact .conbox .tel dl dd {
}
.contact .conbox .tel dl dd a {
	display: block;
	width: fit-content;
	color: var(--sub-color);
	font-size: 4.0rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-decoration: none;
	transition: all .3s;
}
.contact .conbox .tel dl dd a:hover {
	opacity: .7;
}
.contact .conbox .tel dl dd span {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
}

.contact .conbox .mail {
	width: 60%;
}
.contact .conbox .mail form {
	background: linear-gradient(315deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .9) 55%, rgba(0, 0, 0, .8) 55%, rgba(0, 0, 0, .8) 100%);
	width: 100%;
	padding: 50px 0;
	border-radius: 10px;
}
.contact .conbox .mail form dl {
	display: flex;
	margin: 0 20px;

	border-bottom: 1px solid rgba( 255, 255, 255, .1 );
	&:last-of-type {
		border-bottom: 0;
	}
}
.contact .conbox .mail form dl dt {
	width: 200px;
	padding: 20px 0;
	color: var(--base-color);
	font-size: 1.6rem;
	line-height: 34px;
}
.contact .conbox .mail form dl dt span {
	margin: 0 0 0 5px;
	color: #f00;
	font-size: 1.6rem;
}
.contact .conbox .mail form dl dd {
	width: calc( 100% - 200px );
	padding: 20px 0;
}
.contact .conbox .mail form dl dd input[type="text"],
.contact .conbox .mail form dl dd input[type="email"],
.contact .conbox .mail form dl dd input[type="tel"],
.contact .conbox .mail form dl dd textarea {
	background: rgba( 255, 255, 255, .8);
	width: 100%;
	min-height: 34px;
	padding: 10px;

	font-size: 1.4rem;

	resize: none;
}
.contact .conbox .mail form .privacy {
	margin: 0 20px;
	padding: 0 20px 20px;

	color: var(--base-color);
	font-size: 1.4rem;
	text-align: center;
}
.contact .conbox .mail form .privacy a {
	color: var(--main-color);
	text-decoration: none;

	transition: all .5s;

	&:hover {
		color: var(--base-color);
	}
}
.contact .conbox .mail form .btn {
	padding: 10px 0 20px;
	text-align: center;
}
.contact .conbox .mail form .btn input[type="submit"] {
	background: var(--main-color);
	padding: 15px 50px;

	font-size: 1.6rem;
	font-weight: 700;
	border-radius: 6px;

	transition: all .5s;
}
.contact .conbox .mail form .btn input[type="submit"]:hover {
		background: var(--base-color);
		color: var(--sub-color);
}


/* Responsive */
/* Tablet (<=1024px) */
@media (max-width: 1024px) {
	.conbox { width: 100%; padding: 0 20px; }
	#main .hero { padding: 60px 0; }
	#main .hero .text .t_inner h2 { font-size: 36px; }
	#main .hero .text .t_inner h3 { font-size: 18px; }

	#main .content_02 .text ul li:first-of-type { top: 30px; }
	#main .content_02 .text ul li:nth-of-type(2) { top: 100px; }
	#main .content_02 .text ul li:nth-of-type(3) { top: 300px; left: 350px; }
	#main .content_02 .text ul li:nth-of-type(4) { top: 400px; right: 20px; }
	#main .content_02 .img img { width: 50%;}

	#main .content_03 .box { flex-wrap: wrap; }
	#main .content_03 .box dl { width: 45%; margin: 15px; }

	#main .content_04 .merit { flex-direction: column; }
	#main .content_04 .merit .box { width: 100%; }
	#main .content_04 .merit .box dl { width: 100%; }
	#main .content_04 .merit .img { width: 100%; text-align: center;}
	#main .content_04 .merit .img img { width: 80%; max-width: 400px; margin-top: 3.0rem; }

	#main .content_05 .box { flex-wrap: wrap; gap: 2%; }
	#main .content_05 .box div { width: 48%; margin-bottom: 20px; }

	#main .content_07 .plan_box { flex-wrap: wrap; }
	#main .content_07 .plan_box .plan { width: 100%; margin-bottom: 20px; }
	.contact .conbox { display: block; }
	.contact .conbox .tel h2 { font-size: 4.0rem; font-weight: 700; text-align: center; }
	.contact .conbox .tel .text { font-size: 1.8rem; font-weight: 500; }
	.contact .conbox .tel { width: 100%; text-align: center; }
	.contact .conbox .tel dl { width: fit-content; margin: 3.0rem auto 0; }
	.contact .conbox .tel dl dt { margin: 0 auto; }
	.contact .conbox .mail { width: 100%; margin-top: 3.0rem; }
}

/* Smartphone (<=680px) */
@media (max-width: 680px) {
	h2 { font-size: 24px !important; }
	h3 { font-size: 18px !important; }
	#header .h_inner {
		padding: 0 5px;
	}
	#header .h_inner h1 {
		margin-top: 10px;
	}
	#header .h_inner nav ul { margin-top: 10px; }

	#main {
		top: 77px;
	}

	#main .hero { padding: 40px 0; }
	#main .hero .text { width: 100%; }
	#main .hero .text .t_inner { position: relative; top: auto; width: 100%; transform: none; margin-top: 5.0rem; padding: 0 3.0rem; }
	#main .hero .text .catbox .btn_contact a { width: 100%; padding: 1.5rem 0; font-size: 1.6rem; text-align: center; }
	#main .hero .img { right: 0; text-align: center; }
	#main .hero .img img { width: 90%; opacity: .2; }

	#main .content_01,
	#main .content_02,
	#main .content_03,
	#main .content_04,
	#main .content_05,
	#main .content_06,
	#main .content_07,
	#main .content_08 ,
	#main .cta,
	#main .contact {
		padding: 5.0rem 0;
	}

	#main .content_01 p { font-size: 1.8rem; }

	#main .content_02 { height: 550px; }
	#main .content_02 .conbox { height: 450px; }
	#main .content_02 .text ul li:first-of-type { top: 30px; left: 0; }
	#main .content_02 .text ul li:nth-of-type(2) { top: 100px; right: 0; }
	#main .content_02 .text ul li:nth-of-type(3) { top: 170px; left: 0; }
	#main .content_02 .text ul li:nth-of-type(4) { top: 240px; right: 0; }
	#main .content_02 .text ul li img { width: 200px; }
	#main .content_02 .img {
		position: relative;
	}
	#main .content_02 .img img {
		position: absolute;
		top: 250px; height: auto; }

	#main .content_03 .box dl,
	#main .content_05 .box div,
	#main .content_07 .plan_box .plan { width: 100%; margin: 15px 0; }

	.cta .btn_cta { flex-direction: column; }
	.cta .btn_cta .mail,
	.cta .btn_cta .tel { margin: 0 0 15px 0; width: 100%; }
	.cta .btn_cta .mail a,
	.cta .btn_cta .tel a { width: 100%; height: auto; line-height: 1.6; padding: 20px; }

	.contact .conbox { flex-direction: column; }
	.contact .conbox .tel,
	.contact .conbox .mail { width: 100%; }
	.contact .conbox .mail form dl { flex-direction: column; }
	.contact .conbox .mail form dl dt,
	.contact .conbox .mail form dl dd { width: 100%; padding: 10px 0; }
}


/***********************************
#footer
************************************/
#footer {
	background: url(./../img/__fv.svg) no-repeat center center;
	background-size: cover;
	background-color: var(--sub-color);
	border-top: 5px solid var(--main-color);
}
#footer .footer_main {
	padding: 15.0rem 1.0rem 10.0rem;
}
#footer .footer_main .logo {
	text-align: center;
}
#footer .footer_main .logo svg {
	width: 320px;
	vertical-align: bottom;
	& .st0 {
		fill: var(--base-color);
		transition: all .3s;
	}
	& .st1 {
		fill: var(--main-color);
		transition: all .3s;
	}
	&:hover {
		& .st0 {
			fill: var(--main-color);
		}
	}
}
#footer .footer_main .text {
	margin: 40px 0;

	color: var(--base-color);
	font-size: 1.6rem;
	text-align: center;
}
#footer .footer_main .text p {
	line-height: 200%;
}
#footer .footer_main nav {
	display: flex;
	justify-content: space-between;

	width: 800px;
	margin: 80px auto 0;
}
#footer .footer_main nav ul {}
#footer .footer_main nav ul li {
	margin: 0 0 10px;
	color: var(--base-color);
	font-size: 1.6rem;
	font-weight: 600;

	list-style: none;
}
#footer .footer_main nav ul li a {
	color: var(--main-color);
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: none;
	transition:  all .5s;
	&:hover {
		color: var(--base-color);
	}
}
#footer .footer_main .copyright {
	margin: 80px 0 0;

	color: var(--base-color);
	font-size: 1.4rem;
	text-align: center;
}
@media ( max-width: 1300px ) {
	#footer .footer_main {
		width: 100%;
	}
}
@media ( max-width: 1000px ) {
	#footer .footer_main {
		padding: 150px 20px 100px;
	}
	#footer .footer_main nav {
		width: 100%;
		max-width: 800px;
	}
}
@media ( max-width: 600px ) {
	#footer .footer_main nav {
		display: block;
		text-align: center;
		margin: 40px 0 0;
	}
	#footer .footer_main nav ul {
		margin: 40px 0 0;
	}
}
@media ( max-width: 400px ) {
	#footer .footer_main .logo svg {
		width: 280px;
	}
	#footer .footer_main .text {
		font-size: 1.4rem;
	}
}