@charset "UTF-8";

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
	/*overflow-y: scroll;*/
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
input,
figure,
picture {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	text-align: left;
	color: #092323;
}

a {
	text-decoration: none;
	color: #092323;
	transition: all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

a:hover {
	opacity: 0.7
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
form,
input,
textarea,
button,
table,
tr,
th,
td,
article,
aside,
footer,
header,
hgroup,
nav,
section,
a,
span,
img {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	width: 100%;
	word-break: break-all;
	-webkit-appearance: none;
	-webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
	text-align: justify;
	text-justify: distribute;
	line-height: 1.5;
}

img {
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: bottom;
}

p img {
	margin: 0 0.1em;
	vertical-align: unset;
}

input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

picture {
	display: block;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.flex {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
}

.flexwrap_wrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexdirection_column {
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.justifycontent_flexend {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.justifycontent_center {
	-webkit-justify-content: center;
	justify-content: center;
}

.justifycontent_spacebetween {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.justifycontent_spacearound {
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.aligncontent_spacebetween {
	-webkit-align-content: space-between;
	align-content: space-between;
}

.alignitems_center {
	-webkit-align-items: center;
	align-items: center;
}

.alignitems_flexend {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.alignitems_flexstart {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.fadeup {
	opacity: 0;
}

.fadeup.on {
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeup {
	0% {
		transform: translateY(50px);
		opacity: 0;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.mb1em {
	margin-bottom: 1em;
}

.mb2em {
	margin-bottom: 2em;
}

p {
	font-size: 1.3rem;
	line-height: 1.76;
}

.en {
	font-family: "Barlow", sans-serif;
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */
main {
	position: relative;
	z-index: -2;
}

/* ---------------------------------------
  contents_wrap
-----------------------------------------*/
.contents_wrap {
	position: relative;
	width: 100%;
}

.contents {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
	background: #fff;
}


.yellow {
	color: #fffc99;
}

.red {
	color: #b02e2e;
}

section {
	position: relative;
}

.wrap {
	width: 90%;
	margin: auto;
}

.txt {
	max-width: 31rem;
	width: calc(100% - 15px);
	margin: auto;
}

.cnt_l_pc,
.cnt_r_pc {
	display: none;
}

.sec_fv img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.sec_fv .sec_btn_area {
	margin: 14px 0 17px;
	padding-left: 1.87%;
}

.sec_btn_area {
	position: relative;
	z-index: 1;
	margin: 30px 0;
	padding-left: calc(1.87% - 3px);
}

.sec_btn_area .sec_btn_area_link {
	position: relative;
	display: block;
	width: 96.8%;
	margin: 0 auto;
	overflow: hidden;
}

.sec_btn_area .sec_btn_area_link::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 30%;
	height: 100%;
	transform: skewX(-30deg);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
	animation: shine 3s linear infinite;
}

@keyframes shine {
	0% {
		left: -100%;
	}

	20% {
		left: 100%;
	}

	21%,
	100% {
		left: 100%;
	}
}

.sec_btn_area .sec_btn_area_link img {
	display: block;
	margin: 0 auto;
}

.sec_feature {
	background: url(../img/feature_bg.svg) no-repeat center top/cover;
}

.sec_feature .wrap {
	padding: 33px 0 30px;
	width: calc(100% - 18px);
}

.sec_feature_title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100px;
	background: linear-gradient(86.7deg, rgba(46, 176, 176, 0.7) 0.52%, rgba(32, 165, 189, 0.7) 33.35%, rgba(23, 157, 199, 0.7) 67.13%, rgba(12, 146, 217, 0.7) 99.48%);
}

.sec_feature_title img {
	display: block;
	margin: 0 auto;
	width: 66.4%;
}

.feature_item img {
	display: block;
	margin: 0 auto;
}

.feature_item:nth-child(n + 2) {
	margin-top: 20px;
}

.sec_online {
	padding-bottom: 42px;
}

.sec_online .wrap {
	width: 86.13%;
}

.sec_online_title {
	position: relative;
	z-index: 2;
}

.sec_online_title img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.online_img {
	position: relative;
	margin: -52px 0 58px;
}

.online_main_img img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.online_sub_img {
	position: absolute;
	top: 61px;
	right: 0;
	z-index: 1;
	width: 52.27%;
}

.online_catch {
	width: 100%;
}

.online_catch img {
	display: block;
	margin: 0 auto;
	width: 95.98%;
}

.online_point {
	display: flex;
	justify-content: center;
	gap: 23px;
	margin-top: 15px;
}

#sec01 {
	padding: 20px 0 55px;
	background: #E4F4F4;
}

#sec01 .title02 {
	position: relative;
	display: table;
	padding-bottom: 10px;
	margin: 0 auto 20px;
	font-size: 3rem;
	font-weight: bold;
}

#sec01 .title02 span {
	font-size: 70%;
}

#sec01 .title02:before,
#sec01 .title02:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #2eb0b0;
}

#sec01 .title02:before {
	bottom: 5px;
}

#sec01 .title02+picture {
	margin-bottom: 10px;
}

#sec01 .title03 {
	width: 100%;
	margin: 30px 0 0;
	font-size: 3rem;
	color: #fff;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.05em;
	background: linear-gradient(90deg, rgba(46, 176, 176, 1) 0%, rgba(11, 145, 217, 1) 100%);
}

#sec01 .title03 span {
	font-size: 60%;
}

#sec01 .w_box {
	padding: 15px;
	background: #fff;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
}

#sec01 .w_box+.w_box {
	margin-top: 20px;
}

#sec01 .w_box .fukidashi {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 25px;
	font-size: 2.5rem;
	color: #2eb0b0;
	font-weight: bold;
	text-align: center;
}

#sec01 .w_box .fukidashi:before,
#sec01 .w_box .fukidashi:after {
	content: "";
	display: block;
	width: 3px;
	height: 40px;
	background: #2eb0b0;
}

#sec01 .w_box .fukidashi:before {
	transform: rotate(-20deg);
}

#sec01 .w_box .fukidashi:after {
	transform: rotate(20deg);
}

#sec01 .w_box .fukidashi .small {
	font-size: 60%;
}

#sec01 .w_box .txt {
	margin-top: 10px;
}

#sec01 .w_box .fukidashi+.small {
	margin-bottom: 15px;
	font-size: 1.3rem;
	color: #808080;
	text-align: center;
}

#sec02 {
	position: relative;
	padding: 0 0 40px;
	z-index: -2;
}

.webp #sec02 {
	background: url(../img/bg01.webp) no-repeat center 62px, #f9f9f9;
	background-size: 100% auto;
}

.no-webp #sec02 {
	background: url(../img/bg_pc.png) no-repeat center top;
	background-size: cover;
}

#sec02 .list_area {
	position: relative;
	max-width: 31rem;
	margin: 18px auto 20px;
	padding: 22px;
	border: 2px solid #2EB0B0;

}

#sec02 .list_area:before {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -5px;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	z-index: -1
}

#sec02 .list_area:after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 0;
	right: 0;
	display: block;
	width: 70px;
	height: calc(70px / 2 * tan(30deg));
	margin: auto;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: linear-gradient(90deg, rgba(46, 176, 176, 1) 0%, rgba(11, 145, 217, 1) 100%);

}

#sec02 .list_area li {
	font-size: 1.6rem;
	font-weight: bold;
}

#sec02 .list_area li+li {
	margin-top: 10px;
}

#sec02 .list_area li img {
	width: 15px;
	margin-right: 10px;
}

#sec02 .center p {
	font-size: 2.45rem;
	text-align: center;
	text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
}

#sec03 {
	position: relative;
	padding: 0 0 30px;
}

.webp #sec03 {
	background: url(../img/bg04.webp) no-repeat center 15px, #f2f2f2;
	background-size: 100% auto;
}

.no-webp #sec03 {
	background: url(../img/bg04.png) no-repeat center 15px, #f2f2f2;
	background-size: 100% auto;
}

#sec03 .wrap {
	margin: 4px auto 0;
}

#sec03 .midle {
	margin: 10px 0 30px;
}

#sec03 .point_list {
	margin: 30px 0 0;
}

#sec03 .point_list>li {
	position: relative;
	padding: 20px 15px;
	background: #fff;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
}

#sec03 .point_list>li+li {
	margin-top: 20px;
}

#sec03 .point_list>li>.number {
	position: absolute;
	top: 20px;
	left: -6%;
	width: 75px
}

#sec03 .point_list>li .title03 {
	padding: 14px 0 24px 60px;
	margin-bottom: 15px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.27;
	border-bottom: 2px solid #2eb0b0;
}

#sec03 .point_list>li:first-child .title03 {
	padding: 0 0 15px 60px;
}

#sec03 .point_list>li .txt {
	max-width: none;
	width: 100%;
}

#sec03 .point_list>li .txt p {
	letter-spacing: -0.5px;
}

#sec03 .point_list>li .txt p.small {
	margin: 0.5em 0.4em 0;
	font-size: 1.1rem;
	color: #808080;
}

#sec03 .point_list>li picture+p {
	margin-top: 15px;
}

#sec03 .point_list>li .g_box {
	padding: 16px 14px 18px;
	margin: 24px 0 20px;
	background: #E4F4F4;
	border-radius: 8px;
}

#sec03 .point_list>li .g_box .title04 {
	padding-bottom: 12px;
	margin-bottom: 12px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 2px solid #2eb0b0;
}

#sec03 .point_list>li .g_box ol li {
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.5;
}

#sec03 .point_list>li .g_box ol li span {
	margin-right: 6px;
	font-size: 1.75rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	background: linear-gradient(90deg, rgba(46, 176, 176, 1) 0%, rgba(11, 145, 217, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#sec05 {
	z-index: -2;
}

#sec05 .top {
	position: relative;
	padding: 0 0 60px;
	z-index: -2;
}

#sec05 .top:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 9vw;
	z-index: 10;
}

.webp #sec05 .top:after {
	background: url(../img/bg05.webp) no-repeat center top;
	background-size: 100% auto;
}

.no-webp #sec05 .top:after {
	background: url(../img/bg05.png) no-repeat center top;
	background-size: 100% auto;
}

.webp #sec05 .top {
	background: url(../img/bg02.webp) no-repeat center 162px, #f2f2f2;
	background-size: 100% auto;
}

.no-webp #sec05 .top {
	background: url(../img/bg02.png) no-repeat center 162px, #f2f2f2;
	background-size: 100% auto;
}

#sec05 .top .txt {
	margin: 15px auto 0;
}

#sec05 .bottom {
	position: relative;
	padding: 20px 0;
	background: #e4f4f4;
}

#sec05 .bottom .list {
	position: relative;
	max-width: 32rem;
	margin: 18px auto 20px;
	padding: 22px 20px;
	border: 2px solid #2EB0B0;

}

#sec05 .bottom .list:before {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -5px;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	z-index: -1
}

#sec05 .bottom .list:after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 0;
	right: 0;
	display: block;
	width: 70px;
	height: calc(70px / 2 * tan(30deg));
	margin: auto;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: linear-gradient(90deg, rgba(46, 176, 176, 1) 0%, rgba(11, 145, 217, 1) 100%);
}

#sec05 .bottom .list li {
	font-size: 1.6rem;
	font-weight: bold;
}

#sec05 .bottom .list li+li {
	margin-top: 14px;
}

#sec05 .bottom .list li img {
	width: 15px;
	margin-right: 10px;
}

#sec06 {
	padding: 188px 0 40px;
}

.webp #sec06 {
	background: url(../img/bg06.webp) no-repeat center top;
	background-size: cover;
}

.no-webp #sec06 {
	background: url(../img/bg06.png) no-repeat center top;
	background-size: cover;
}

#sec06 .title02 {
	position: absolute;
	top: -14px;
	left: 0
}

#sec06 .title03 {
	position: relative;
	display: table;
	padding-bottom: 10px;
	margin: 0 auto 45px;
	font-size: 2.65rem;
	font-weight: bold;
	text-align: center;
}

#sec06 .title03 span {
	display: inline-block;
	margin-left: 0.1em;
	font-size: 160%;
	color: #2eb0b0;
}

#sec06 .title03:before,
#sec06 .title03:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #2eb0b0;
}

#sec06 .title03:before {
	bottom: 5px;
}

#sec06 ol li {
	position: relative;
	padding: 40px 18px 25px;
	background: #fff;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
}

#sec06 ol li:after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 0;
	right: 0;
	display: block;
	width: 70px;
	height: calc(70px / 2 * tan(30deg));
	margin: auto;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: linear-gradient(90deg, rgba(46, 176, 176, 1) 0%, rgba(11, 145, 217, 1) 100%);
}

#sec06 ol li:last-child:after {
	display: none;
}

#sec06 ol li+li {
	margin-top: 38px;
}

#sec06 ol li .numbere {
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 30px;
	margin: auto;
	font-size: 2.2rem;
	color: #fff;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
}

.webp #sec06 ol li .numbere {
	background: url(../img/bg_title.webp) no-repeat center top;
	background-size: 100% auto;
}

.no-webp #sec06 ol li .numbere {
	background: url(../img/bg_title.png) no-repeat center top;
	background-size: 100% auto;
}

#sec06 ol li .title04 {
	margin: 10px 0;
	font-size: 2.5rem;
	font-weight: 600;
}

#sec07 {
	padding: 0 0 20px;
}

.webp #sec07 {
	background: url(../img/bg03.webp) no-repeat center 100px;
	background-size: 100% auto;
}

.no-webp #sec07 {
	background: url(../img/bg03.png) no-repeat center 100px;
	background-size: 100% auto;
}

#sec07 .txt {
	margin-top: 28px;
}


#sec08 {
	padding: 30px 0 40px;
	background: #414C4C;
	border-bottom: 2px solid #fff;
}

#sec08 * {
	color: #fff;
}

#sec08 .title02 {
	margin-bottom: 30px;
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
}

#sec08 p {
	font-size: 1.2rem;
	font-weight: normal;
}

#sec08 .top .title03 {
	padding-left: 12px;
	margin-bottom: 8px;
	font-size: 1.5rem;
	line-height: 1;
	border-left: 5px solid #2EB0B0;
}

#sec08 .top p+.title03 {
	margin-top: 15px;
}

#sec08 .bottom {
	margin-top: 40px;
}

#sec08 .bottom .title03 {
	padding-bottom: 10px;
	margin-bottom: 15px;
	font-size: 1.5rem;
	line-height: 1;
	border-bottom: 2px solid #fff;
}

#sec08 .bottom p+.title03 {
	margin-top: 30px;
}

footer {
	padding: 8px 0 130px;
	background: #092323;
}

.footer-menu {
	text-align: center;
	margin: 20px 0;
}

.footer-menu-link {
	display: inline-block;
	font-size: 1.4rem;
	color: #fff;
}

.copy {
	font-size: 1rem;
	color: #fff;
	text-align: center;
}

.btn_floating {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	margin: auto;
	background: #fff;
	z-index: 9999;
}

.btn_floating--sp {
	padding: 10px 1px 3px 1.9%;
}

.btn_floating--pc {
	display: none;
}

.btn_floating img {
	display: block;
	margin: 0 auto;
}

.btn_floating.is-hidden {
	display: none;
}

/*ポップアップ*/
.popup {
	position: fixed;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}

.popup.is-show {
	opacity: 1;
	visibility: visible;
}

.popup-inner {
	position: relative;
	width: 345px;
	text-align: center;
	z-index: 2;
}

.close-area {
	position: absolute;
	top: -230px;
	right: 0;
	cursor: pointer;
	width: 25px;
	height: 25px;
}

.black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7);
	z-index: 1;
	cursor: pointer;
}

.popup-inner .btn_line {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 320px;
	margin: auto;
}

@media screen and (min-width: 801px) {
	.wrap {
		max-width: 55rem;
	}

	.txt {
		max-width: 53rem;
	}

	.bg_main {
		width: 100%;
		height: 100%;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
	}

	.webp .bg_main {
		background: url(../img/bg_pc.webp) no-repeat center top;
		background-size: cover;
	}

	.no-webp .bg_main {
		background: url(../img/bg_pc.jpg) no-repeat center top;
		background-size: cover;
	}

	.contents {
		max-width: 55rem;
	}

	.cnt_l_pc {
		display: flex;
		justify-content: center;
		align-items: center;
		width: calc((100% - 55rem) / 2);
		height: 100vh;
		position: absolute;
		top: 0;
		left: 0;
	}

	.cnt_l_pc p {
		width: 248px;
	}

	.cnt_r_pc {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: calc((100% - 55rem) / 2);
		height: 100vh;
		padding: 0 30px;
		position: absolute;
		top: 0;
		right: 0;
	}

	.cnt_r_pc picture {
		max-width: 336px;
	}

	.cnt_r_pc .flex {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin: 20px 0 15px;
	}

	.cnt_r_pc .flex p {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 108px;
		height: 32px;
		font-size: 1.5rem;
		color: #fff;
		font-weight: bold;
		background: linear-gradient(90deg, rgba(11, 145, 217, 1) 0%, rgba(46, 176, 176, 1) 100%);
		border-radius: 15px;
	}

	.cnt_r_pc .btn_line {
		max-width: 336px;
		width: 100%;
	}

	.btn_floating {
		width: 55rem;
	}

	.btn_floating--sp {
		display: none;
	}

	.btn_floating--pc {
		display: block;
		padding: 10px;
	}

	#sec05 .bottom:before {
		height: 55px;
	}

	p {
		font-size: 2rem;
	}

	#sec01 .w_box .fukidashi {
		font-size: 3.5rem;
	}

	#sec01 .w_box .fukidashi:before,
	#sec01 .w_box .fukidashi:after {
		height: 80px
	}

	#sec02 .list_area {
		max-width: 40rem;
	}

	#sec02 .list_area li,
	#sec05 .bottom .list li {
		font-size: 2rem;
	}

	#sec03 .point_list>li .g_box ol li {
		font-size: 1.8rem;
	}

	#sec03 .point_list>li .g_box ol li span {
		font-size: 2.2rem;
	}

	#sec03 .point_list>li .txt p.small {
		font-size: 1.6rem;
	}

	#sec05 .bottom .list {
		max-width: 42rem;
	}

	#sec06 {
		padding: 240px 0 40px;
	}

	.copy {
		font-size: 1.5rem
	}

	#sec06 .title02 {
		top: -22px;
	}

	#sec03 .point_list>li .title03 {
		font-size: 3rem;
	}

	.sec_btn_area .flex p {
		font-size: 2rem;
	}

	#sec05 .top:after {
		height: 50px;
	}

	#sec08 .title02 {
		font-size: 3.8rem;
	}

	#sec08 p {
		font-size: 1.5rem;
	}

	#sec08 .top .title03 {
		font-size: 1.8rem;
	}

	#sec08 .bottom .title03 {
		font-size: 1.8rem;
	}

	footer {
		padding: 8px 0 150px;
	}

	.popup-inner {
		width: 506px;
	}

	.popup-inner .btn_line {
		bottom: -545px;
		width: 470px;
	}

	.close-area {
		top: -330px;
		width: 40px;
		height: 40px;
	}
}

#backGuide,
#backGuide p {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

#backGuide {
	display: none;
	position: fixed !important;
	background-color: #333;
	z-index: 9999;
}

#backGuide p {
	display: block;
	width: 300px;
	height: 263px;
	line-height: 80px;
	margin: auto;
	cursor: pointer;
	font-weight: bold;
}

#sec06 { padding: 40px 0; }
#sec06 .title02 { display: none; } /* 念のため、残っていても非表示に */

@media screen and (min-width: 801px) {
	#sec06 { padding: 40px 0; }
}