@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	/*font: inherit;*/
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*---------------基本設定-----------------*/

:root{
	--whiteColor: #fff;
	--orangeColor: #e85532;
}
html{
	scroll-behavior: smooth;
}
body {
	font-family:'Noto Sans JP', YuGothic, Meiryo, sans-serif;
	color: #333;
	font-weight: 500;
}
img {
	vertical-align: bottom;
	border: none;
	line-height: 0;
}
a {
	text-decoration: none;
	color: inherit;
}
.wrapper {
	max-width: 1600px;
	width: 95%;
	margin: 0 auto;
}


/*---------------共通パーツ-----------------*/

.main_wrapper{
	position: relative;
	z-index: 10;
}
.contents {
	width: 100%;
	max-width: 880px;
	font-size: 16px;
	line-height: 1.9;
	margin: 30px auto 0;
}
.align-center {
	text-align: center;
}

.btn_box {
	text-align: center;
}
.o_btn,
.w_btn,
.o_btn_back,
.w_btn_back {
	position: relative;
	z-index: 10;
	display: inline-block;
	width: 290px;
	box-sizing: border-box;
	border: solid 1px var(--whiteColor);
	text-align: center;
	font-size: 18px;
	cursor: pointer;
	padding-block: 20px;
	
	&::after{
		content: "";
		display: block;
		width: 11px;
		height: 11px;
		position: absolute;
		z-index: 10;
		top: 0;
		bottom: 0;
		margin: auto 0;
		border-top: solid 3px var(--whiteColor);
		border-right: solid 3px var(--whiteColor);
	}
}
.o_btn,
.o_btn_back{
	background-color: var(--orangeColor);
	color: var(--whiteColor);
	border-color: var(--orangeColor);
	
	&:hover{
		background-color: var(--whiteColor);
		color: var(--orangeColor);
		box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
		
		&::after{
			border-color: var(--orangeColor);
		}
	}
}
.w_btn,
.w_btn_back{
	background-color: var(--whiteColor);
	color: var(--orangeColor);
	border-color: var(--orangeColor);
	
	&::after{
		border-color: var(--orangeColor);
	}
	&:hover{
		background-color: var(--orangeColor);
		color: var(--whiteColor);
		border-color: var(--whiteColor);
		box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
		
		&::after{
			border-color: var(--whiteColor);
		}
	}
}
.o_btn::after,
.w_btn::after{
	right: 26px;
	rotate: 45deg;
}
.o_btn_back::after,
.w_btn_back::after{
	left: 26px;
	rotate: -135deg;
}

.w300btn {
	width: 100%;
	max-width: 300px;
	margin: 0 30px;
}
.link_underline,
.link_o{
	text-decoration: underline;
	
	&:hover{
		background-color: #ececec;
	}
}
.link_o {
	color: var(--orangeColor);
}

.strong {
	font-weight: 700;
	font-size: 35px;
	color: var(--orangeColor);
	display: inline-block;
	padding: 0 3px 0;
}
.note {
	width: 100%;
	max-width: 650px;
	margin: 0 auto 130px;
	font-size: 15px;
	line-height: 1.5;
	color: #707070;
}
.theme_color {
	background-color: var(--orangeColor);
}

.head_sub {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding-top: 15px;
	
	& h2{
		text-align: center;
		font-size: 30px;
		background-repeat: no-repeat;
		background-size: 150px;
		background-position: center bottom;
		color: #4e2b2b;
		padding-bottom: 57px;
	}
}

/*---------------ヘッダー-----------------*/
.header {
	border-bottom: 2px solid #d8d8d8;
	background-color: rgba(255,255,255,0.9);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 200;
}
.header_inner {
	display: flex;
	justify-content: space-between;
	max-width: 1600px;
	margin: 0 auto;
	
	& h1{
		padding: 21px 0 0 12px;
	}
}
.header_logo {
	display: block;
	width: 250px;
	margin-bottom: 2px;
	
	& img{
		width: 100%;
		height: auto;
	}
}
.catchcopy {
	font-weight: normal;
	font-size: 13px;
}

.header_in_right{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 10;
}
.gnavi_list {
	margin: 0 3px;
	
	&:nth-last-child(2){
		margin-right: 0;
	}
	
	& a{
		display: block;
		font-size: 14px;
		padding: 29px 12px 23px;
		box-sizing: border-box;
		border-bottom: 3px solid transparent;
		transition: border-bottom 0.2s ease;
		white-space: nowrap;
		
		&:hover{
			border-bottom-color: var(--orangeColor);
		}
	}
}

.nav_trial a{
	display: block;
	height: 100%;
	background-color: var(--orangeColor);
	box-sizing: border-box;
	color: var(--whiteColor);
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
	padding: 14px 20px 0;
	transition: border-bottom 0.2s ease;
	
	&:hover{
		border-bottom: solid 2px var(--whiteColor);
	}
}
.currently a {
	border-bottom: 3px solid var(--orangeColor);
}


/*---------------フッター-----------------*/
.trial_banner_box {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
	flex-wrap: wrap;
	padding: 60px 0 50px;
}
.footer_trial_svg{
	width: 90%;
	margin-bottom: 30px;
	
	& img{
		width: 100%;
		height: auto;
	}
}
.trial_btn_box .w_btn{
	font-weight: bold;
}

.footer {
	background-color: #f0f0f0;
	padding-top: 80px;
}
.footer_contact_box {
	width:95%;
	max-width: 880px;
	margin: 0 auto;
	background-color: var(--whiteColor);
	padding: 40px 0;
	
	& h3{
		width: 100%;
		max-width: 520px;
		margin: 0 auto;
		box-sizing: border-box;
		padding: 12px 0 12px 55px;
		font-size: 33px;
		background-image: url(../img/footer_contact.png);
		background-size: 50px;
		background-repeat: no-repeat;
		background-position: left center;
	}
}
.footer_contact_inner {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 35px;
	
	& .footer_tel{
		
		& div{
			font-size: 35px;
			margin-bottom: 10px;
			padding-left: 50px;
			background-image: url(../img/footer_tel.png);
			background-repeat: no-repeat;
			background-position: left center;
			background-size: 40px;
		}
		& p{
			padding-left: 50px;
			font-size: 17px;
		}
		
	}
}
.contact_warn{
	width: 600px;
	background-color: #fffaed;
	border: solid 2px #ffc38e;
	border-radius: 6px;
	box-sizing: border-box;
	text-align: center;
	font-size: 14px;
	line-height: 1.8;
	margin: 40px auto 0;
	padding: 11px 0 10px;
	
	& span{
		display: block;
		margin-bottom: 8px;
	}
}
.footer_navi_box {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.footer_gnavi {
	margin-left: 10px;
	
	& li{
		margin: 9px 20px;
		font-size: 18px;
		display: inline-block;
	}
}
.etc_navi {
	width: 95%;
	max-width: 660px;
	margin: 50px auto 0;
	padding-bottom: 35px;
	
	& li{
		display: inline-block;
		font-size: 13px;
		margin: 0 10px;
		line-height: 1.5;
	}
}
.copyright {
	background-color: #e7e6e7;
	text-align: center;
	padding: 10px 0;
}

/* コロナ注意 */
.head_warns{
	font-size: 13px;
	background-color: #ffe0e0;
	color: #981c1c;
	line-height: 1.5;
	padding: 12px 10px;
	
	& h3{
		font-size: 16px;
		margin-bottom: 6px;
	}
	& p{
		padding: 0 0.4rem;
	}
	& a{
		text-decoration: underline;
	}
}

.bg_gray {
	background-color: #f8f8f8;
	padding: 50px 0;
}

/*---------------階層ページの共通パーツ-----------------*/

.head_bg {
	padding: 50px 0 30px;
	margin-bottom: 70px;
	background-color: #f6f6f6;
	background-size: cover;
	background-position: 50%50%;
	position: relative;
	z-index: 10;
	
	&::after{
		content: "";
		display: block;
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255,255,255,0.3);
		box-sizing: border-box;
		border-bottom: solid 3px #d7d7d7;
	}
	
	&.feature_bg,
	&.function_bg,
	&.flow_bg{
		background-image: url("../img/subtitle_back01.webp");
	}
	&.price_bg,
	&.faq_bg,
	&.etc_bg{
		background-image: url("../img/subtitle_back02.webp");
	}
	&.news_bg{
		background-image: url("../img/subtitle_back03.webp");
	}
}
.bg_theme-light {
	background-color: #f9f9ff;
	padding:70px 0;
}

.head_inner {
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 20;
	
	& h2{
		font-size: 32px;
		letter-spacing: 2px;
		margin-bottom: 20px;
	}
	& span{
		font-size: 16px;
		line-height: 1.5;
	}
}
.contents_o {
	width: 100%;
	max-width: 880px;
	font-size: 20px;
	line-height: 1.5;
	text-align: center;
	color: var(--orangeColor);
	font-weight: 700;
	margin: 50px auto 0;
}
.head_large{
	text-align: center;
	margin: 0 auto;
	
	&.price_color{
		background-color: #ffdfcf;
		max-width: 1300px;
	}
	&#basic{
		max-width: 1100px;
		background-color: #dcecec;
		color: #227b80;
		border-color: #227b80;
	}
	&#option {
		max-width: 1100px;
		background-color: #fce8e8;
		color: #b65757;
		border-color: #b65757;
	}
	
	& h2{
		display: inline-block;
		font-size: 25px;
		padding: 28px 0;
		position: relative;
		z-index: 10;
		
		&::after{
			content: "";
			display: block;
			position: absolute;
			border-bottom: 2px dotted var(--orangeColor);
			width: 150%;
			left: 50%;
			bottom: 0;
			transform: translate(-50%, 0);
		}
	}
	& h3{
		font-size: 25px;
		padding: 28px 0;
	}
	& h3.flow_h3{
		display: inline-block;
		vertical-align: middle;
	}
}
.head_large_light {
	text-align: center;
	background-color: #fff5f3;
}
.flow_h3_img{
	width: auto;
	height: 55px;
	vertical-align: middle;
	margin-right: 11px;
}
.faq_wrapper {
	width: 95%;
	max-width: 900px;
	margin: 0 auto;
}
.top_news_link{
	text-align: center;
	
	&.detail{
		margin-bottom: 60px;
	}
	& a{
		display: inline-block;
		border-bottom: solid 1px #333;
		padding: 0 10px 8px;
		font-size: 18px;
		font-weight: bold;
		
		&:hover{
			border-color: transparent;
		}
	}
}

/*---------------特定商取引に基づく表示-----------------*/

.commerce_list {
	width: 100%;
	max-width: 1100px;
	margin: 50px auto 100px;
	
	& li{
		display: flex;
		justify-content: space-between;
	}
}
.commerce_item,
.commerce_cont {
	border-bottom: 1px solid #b6b6b6;
	padding: 28px 0 28px 30px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.5;
}
.commerce_item {
	width: 19%;
}
.commerce_cont {
	width: 79%;
}

/*---------------契約終了・再開-----------------*/
.restart_head {
	font-size: 20px;
	margin-bottom: 25px;
	
	& span{
		display: inline-block;
		padding-bottom: 12px;
		padding-right: 16px;
		border-bottom: 1px solid #ffb29f;
	}
}
.restart_cont {
	font-size: 18px;
	line-height: 1.5;
	box-sizing: border-box;
	padding: 0 0 40px;
	
	& p{
		padding-bottom: 20px;
	}
}
.restart_note {
	border-radius: 10px;
	box-sizing: border-box;
	padding: 20px;
	background-color: #ffeee6;
	margin-bottom: 20px;
	line-height: 1.6;
}


/*-------------------------*/
.mobile {
	display: none;
}
.desktop {
	display: block;
}
.desktop_inline{
	display: inline;
}
.desktop_flex {
	display: flex;
}
.br_tb {
	display: none;
}
.br_desktop {
	display: inline;
}
.br_mobile {
	display: none;
} 
.mb_20 {
	margin-bottom: 20px;
}
.mb_50 {
	margin-bottom: 50px;
}
.mb_90 {
	margin-bottom: 90px;
}
.mb_130 {
	margin-bottom: 130px;
}


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

	/*---------------共通パーツ-----------------*/
	#main_box{
		width: 100%;
		overflow: hidden;
	}
	.contents {
		font-size: 4.4vw;
		line-height: 1.7;
		margin: 6vw auto 0;
		width: 90%;
	}
	.o_btn,
	.w_btn,
	.o_btn_back,
	.w_btn_back {
		font-size: 4.7vw;
		padding-block: 4.6vw;
		background-size: 10vw;
		width: 70vw;
		
		&::after{
			width: 2.5vw;
			height: 2.5vw;
			border-width: 0.8vw;
		}
	}
	.o_btn::after,
	.w_btn::after{
		right: 6vw;
	}
	.o_btn_back::after,
	.w_btn_back::after{
		left: 6vw;
	}
	
	.w300btn {
		width: 46vw;
		margin: 0 10vw 4vw;
	}
	.bg_theme-light {
		padding: 9vw 0;
	}
	.strong{
		font-size: 180%;
		display: inline-block;
		margin-top: 0;
	}
	.note {
		font-size: 4vw;
		width: 90%;
		max-width: inherit;
		margin-bottom: 15vw;
	}
	
	.head_sub {
		background-size: 12vw auto;
		
		& h2{
			font-size: 6vw;
			background-size: 26vw;
			white-space: nowrap;
			padding-bottom: 10vw;
		}
	}
	
	
	/*---------------ヘッダー-----------------*/
	.header_inner h1 {
		padding: 4.3vw 0 3.5vw 3vw;
		text-align: left;
	}
	.header_logo {
		width: 56%;
		margin-bottom: 0;
	}
	.catchcopy {
		font-size: 3vw;
		white-space: nowrap;
	}
	.header_in_right{
		position: fixed;
		z-index: 200;
		top: 0;
		width: 100%;
		height: 100%;
		right: -100%;
		overflow-y: auto;
		transition: right 0.4s ease;
		display: block;
		background-color: var(--whiteColor);
		overscroll-behavior: none;
	}
	.opened .header_in_right{
		right: 0;
	}
	
	.gnavi {
		padding-top: 13vw;
		display: block;
		background-color: var(--whiteColor);
		box-sizing: border-box;
	}
	.gnavi_list {
		margin: 0;
		text-align: center;
		
		& a{
			border: none;
			font-size: 4.2vw;
			padding: 6vw 0 6vw;
			border-bottom: dashed 1px #f3f3f3;
			
			&:hover{
				border: none;
				background-color: #f4f4f4;
			}
		}
	}
	.nav_trial{
		padding-top: 5vw;
		
		& a{
			width: 56vw;
			height: auto;
			font-size: 4.5vw;
			text-align: center;
			padding: 4vw 0 3.9vw;
			border-radius: 1.5vw;
			margin: 0 auto;
		}
	}
	.currently a {
		border: none;
	}
	.mb_sidebar_icon {
		position: absolute;
		width: 11vw;
		height: 9vw;
		top: 0;
		bottom: 0;
		right: 4vw;
		border-radius: 4px;
		margin: auto 0;
		z-index: 205;
		
		& p{
			position: absolute;
			width: 80%;
			height: 75%;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			margin: auto;
		}
		
		& span{
			position: absolute;
			width: 100%;
			height: 3px;
			background-color: var(--orangeColor);
			transition: rotate 0.2s ease;
			top: 0;
			bottom: 0;
			
			&:nth-child(1){
				margin-bottom: auto;
			}
			&:nth-child(2){
				margin: auto 0;
			}
			&:nth-child(3){
				margin-top: auto;
			}
		}
	}
	
	body.opened{
		& .gnavi {
			right: 0;
		}
		& .mb_sidebar_icon span{
			&:nth-child(1){
				rotate: 45deg;
				margin: auto;
			}
			&:nth-child(2){
				opacity:0;
			}
			&:nth-child(3){
				rotate: -45deg;
				margin: auto;
			}
		}
	}
	
	/*---------------フッター-----------------*/
	.trial_banner_box{
		max-width: inherit;
		width: 100%;
		padding: 6vw 0;
	}
	.footer_trial_svg{
		margin-bottom: 4vw;
	}
	.trial_btn_box {
		text-align: center;
	}
	.footer {
		padding-top: 10vw;
	}
	.footer_contact_box {
		padding: 20px 0 25px;
		
		& h3{
			text-align: center;
			font-size: 5.4vw;
			line-height: 1.3;
			padding: 12vw 0 0;
			background-position: center top;
			background-size: 13vw;
			max-width: inherit;
		}
	}
	.footer_contact_inner {
		margin-top: 6vw;
		
		& .footer_tel{
			& div{
				font-size: 9vw;
				padding-left: 11vw;
				margin-bottom: 3vw;
				background-size: 9vw;
				box-sizing: border-box;
			}
			& p{
				padding-left: 0;
				text-align: center;
				font-size: 4vw;
				margin-bottom: 7vw;
			}
			
		}
	}
	.contact_warn{
		width: 90%;
		font-size: 3.8vw;
		text-align: left;
		line-height: 1.6;
		margin-top: 9vw;
		padding: 4vw 2vw 4vw;
		
		& span{
			margin-bottom: 3vw;
		}
	}
	
	.footer_navi_box {
		display: block;
		margin-top: 10vw;
	}
	.footer_gnavi {
		margin: 5vw 0 0;
		text-align: center;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		background-color: var(--whiteColor);
		padding-top: 7vw;
		
		& li{
			font-size: 4.2vw;
			margin: 0 0 6vw;
			width: 33%;
		}
	}
	.etc_navi {
		margin: 8vw auto 0;
		padding-bottom: 4vw;
		text-align: center;
		
		& li{
			display: block;
			font-size: 4vw;
			margin: 0 0 3vw;
		}
	}
	.copyright {
		font-size: 3.5vw;
		padding: 3vw 0 3vw;
	}

	.head_warns{
		font-size: 2.6vw;
		line-height: 1.3;
		
		& h3{
			font-size: 3vw;
		}
	}
	
	.bg_gray{
		padding: 9vw 0;
	}
	
	/*---------------階層ページの共通パーツ-----------------*/
	.head_bg {
		padding: 7vw 0 7vw;
		margin-bottom: 10vw;
	}
	.head_inner h2 {
		font-size: 7vw;
		margin-bottom: 0;
	}
	.contents_o {
		font-size: 5vw;
		margin: 0 auto;
		max-width: inherit;
	}
	.head_large.price_color{
		margin-bottom: 7vw;
	}
	.head_large h2,
	.head_large h3{
		font-size: 6.4vw;
		padding: 6vw 0 5.6vw;
	}
	.flow_h3_img{
		display: block;
		margin: 0 auto -3vw;
		width: 14vw;
		height: auto;
	}
	.top_news_link.detail{margin-bottom: 15vw;}
	.top_news_link a{font-size: 4vw;}
	
	/*---------------特定商取引に基づく表示-----------------*/
	.commerce_list {
		margin-bottom: 30px;
		
		& li{
			display: block;
		}
	}
	.commerce_item,
	.commerce_cont {
		width: 100%;
		border-bottom: none;
	}
	.commerce_item {
		font-weight: 700;
		padding: 10px;
		background-color: #f4f4f4;
	}
	.commerce_cont {
		padding: 10px 10px 15px;
	}
	
	/*---------------契約終了・再開-----------------*/
	.restart_head {
		font-size: 5vw;
		margin-bottom: 4vw;
		
		& span{
			padding-bottom: 3vw;
			padding-right: 3vw;
			border-width: 0.8vw;
		}
	}
	.restart_cont {
		font-size: 4.2vw;
		padding-bottom: 8vw;
		line-height: 1.7;
	}
	.restart_note {
		padding: 4vw 4vw;
		text-align: justify;
		margin-bottom: 4vw;
		font-size: 4.4vw;
	}
	
	/*-------------------------*/
	.mobile {
		display: block;
	}
	.desktop,
	.desktop_inline {
		display: none;
	}
	.br_desktop {
		display: none;
	}
	.br_mobile {
		display: inline;
	} 
	.mb_50 {
		margin-bottom: 10vw;
	}
	.mb_90{
		margin-bottom: 15vw;
	}
	.mb_130 {
		margin-bottom: 20vw;
	}
}

@media print{
	.header,
	.slide_share,
	.top_video,
	.top_news,
	.btn_box,
	.footer_navi_box,
	.etc_navi,
	.trial_banner_box,
	.demo_eventlist,
	.print_none,
	.faq_cate{
		display: none;
	}
	.cp_actab .cp_actab-content{
		max-height: 3000px;
	}
	.print_separator{
		page-break-before: always;
	}
}
