@charset "utf-8";
/* CSS Document */

main {
	height: auto !important;
}

/* topContent
----------------------------------- */
.topContent {
}
.topContent .topContent_title {
	text-align: center;
	position: relative;
}
.topContent .topContent_title:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	content: '';
	background: #000;
}
.topContent .topContent_title_en {
	font-family: var(--secondary-font);
	color: var(--main-color);
	font-weight: bold;
}
.topContent .topContent_title_jp {
	line-height: 1.0;
}
.topContent .topContent_body {
	margin-right: auto;
	margin-left: auto;
}

/* slant-bg
----------------------------------- */
.slant-bg {
	position: relative;
}
.slant-bg:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}

/* fadeDown
----------------------------------- */
.fadeDown {
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInDown 0.8s ease forwards;
}
.delay { animation-delay: 0s; }
.delay_01 {	animation-delay: 0.1s !important; }
.delay_02 {	animation-delay: 0.2s !important; }
.delay_03 {	animation-delay: 0.3s !important; }
.delay_04 {	animation-delay: 0.4s !important; }
.delay_05 {	animation-delay: 0.5s !important; }
.delay_06 {	animation-delay: 0.6s !important; }
.delay_07 {	animation-delay: 0.7s !important; }
.delay_08 {	animation-delay: 0.8s !important; }
.delay_09 {	animation-delay: 0.9s !important; }
.delay_10 {	animation-delay: 10s !important; }

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* kv
----------------------------------- */
.kv {
	overflow-x: hidden;
}
.kv_inner {
	width: 100vw;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

/* ドット */
.kv_inner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
	pointer-events: none;
	z-index: 2;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}


.kv .kv_content {
	position: absolute;
	z-index: 800;
}
.kv .kv_content_text {
}
.kv .kv_content_text_big {
	color: #fff;
	font-weight: bold;
	line-height: 1.3;
}
.kv .kv_content_text_small {
	color: #fff;
	font-weight: bold;
}
.kv .kv_content_monitor {
}
.kv .kv_content_thumbnail {
}
.kv .kv_content_thumbnail {
}
.kv .kv_content_thumbnail {
}
.kv .kv_content_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* logo
----------------------------------- */
#logo {
}
#logo .swiper-wrapper {
	transition-timing-function: linear;
}
#logo .logo_items {
	display: flex;
}
#logo .logo_item {
}
#logo .logo_thumbnail {
	aspect-ratio: 30/13;
	overflow: hidden;
	position: relative;
	border: 1px solid #ddd;
	border-radius: 4px;
}
#logo .logo_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* topSlider
----------------------------------- */
.topSlider {
	background-color: #fff;
}
.topSlider .topSlider_items {
	margin-bottom: 0 !important;
}
.topSlider .topSlider_item {}
.topSlider .topSlider_link {
	display: block;
}
.topSlider .topSlider_thumbnail {
	aspect-ratio: 2/1;
	overflow: hidden;
	position: relative;
}
.topSlider .topSlider_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.topSlider .slick-dots {
	bottom: 0 !important;
}

/* 要素が1個の場合 */
.topSlider_items.single-slider {
	display: flex;
	justify-content: center;
}
.topSlider_items.single-slider .topSlider_item {
	max-width: 840px;
}


/* description
----------------------------------- */
#description {
	background-color: #f8f8f8;
}
#description .description_intro {
}
#description .description_intro_text {
}
#description .description_intro_items {
}
#description .description_intro_item {
}
#description .description_intro_item:before {
	content: '『';
}
#description .description_intro_item:after {
	content: '』';
}
#description .description_text {
	line-height: 1.7;
	letter-spacing: 0.05em;
}
#description .marking {
	background: -webkit-linear-gradient(left, rgba(229,0,90,0.3) 50%, transparent 50%);
	background: -moz-linear-gradient(left, rgba(229,0,90,0.3) 50%, transparent 50%);
	background: linear-gradient(left, rgba(229,0,90,0.3) 50%, transparent 50%);
	background-repeat: no-repeat;
	background-size: 200% .25em;
	background-position: 100% 1.1em;
	transition: 2s;
}
#description .marking.is-active{
    background-position: 0% 1.1em;
}

#description .description_point {
}
#description .description_point_items {
}
#description .description_point_item {
}
#description .description_point_title {
	text-align: center;
}
#description .description_point_title_num {
	display: block;
	color: var(--main-color);
}
#description .description_point_title_num:before {
	content: '導入事例';
}
#description .description_point_thumbnail {
	aspect-ratio: 5/3;
	overflow: hidden;
	position: relative;
}
#description .description_point_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#description .description_point_caption {
	color: #454545;
	text-align: center;
}

/* merit
----------------------------------- */
#merit {
	background-color: var(--main-color_005);
}
#merit.slant-bg:before {
	background-color: #f8f8f8;	/*1つ上のコンテンツの背景色*/
}
#merit .merit_title {
}
#merit .merit_items {
}
#merit .merit_item {
}
#merit .merit_item_head {
}
#merit .merit_item_icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
#merit .merit_item_icon i {
	color: #333;
}
#merit .merit_item_title {
}
#merit .merit_modal {
}
#merit .merit_modal_content {
}
#merit .merit_modal_inner {
	border: 1px solid #fff;
}
#merit .merit_modal_text {
	color: #fff;
}
#merit .merit_modal_close {
	all: unset;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: absolute;
}
#merit .merit_modal_close span {
	display: block;
}
#merit .merit_modal_close span:before,
#merit .merit_modal_close span:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 100px;
}
#merit .merit_modal_close span:before {
	transform: rotate(-45deg);
}
#merit .merit_modal_close span:after {
	transform: rotate(45deg);
}

#merit .merit_text {
	text-align: center;
}

/* price
----------------------------------- */
#price {
}
#price.slant-bg:before {
	background-color: var(--main-color_005);	/*1つ上のコンテンツの背景色*/
}
#price .price_detail {
}
#price .price_text {
}
#price .price_text_big {
	font-weight: 900;
}
#price .price_text_big_price {
	color: var(--main-color);
}
#price .price_text_big_price:before {
	content: '月額';
	color: var(--tertiary-color);
}
#price .price_text_big_price:after {
	content: '円';
	color: var(--main-color);
}
#price .price_text_small {
}
#price .price_thumbnail {
	aspect-ratio: 16/9;
}
#price .price_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#price .moreBtn_link {
	background: var(--tertiary-color);
}
#price .moreBtn_link:after {
	content: "\f35a";
	color: #fff;
}
#price .moreBtn_link_inn {
	text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
}
#price .moreBtn_link:hover .animeBtn_inn {
	text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
}

/* faq
----------------------------------- */
#faq {
	background-color: var(--main-color_005);
}
#faq .faq_box {
}
#faq .faq_box:last-child {
	margin-bottom: 0;
}
#faq .faq_box_title {
	font-weight: normal;
}
#faq .faq_items {
}
#faq .faq_item {
	background: #fff;
	border-radius: 16px;
}
#faq .faq_item:last-child {
	margin-bottom: 0;
}
#faq .faq_question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
#faq .faq_question:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f107";
	transition: transform 400ms;
}
.accordion_header.open::after {
	transform: rotate(180deg);
}
#faq .faq_question_text {
	display: flex;
	font-weight: bold;
}
#faq .faq_question_text:before {
	display: flex;
	align-items: center;
	justify-content: center;
	content: 'Q';
	color: #fff;
	font-weight: normal;
	background: var(--tertiary-color);
	border-radius: 100px;
}
#faq .faq_answer {
	display: none;
	border-top: 1px solid var(--tertiary-color_02);
}
#faq .faq_answer_text {
	display: flex;
}
#faq .faq_answer_text:before {
	content: 'A';
	color: var(--main-color);
	font-weight: bold;
}
#faq .moreBtn_link {
	background: var(--tertiary-color);
}
#faq .moreBtn_link:after {
	content: "\f35a";
	color: #fff;
}
#faq .moreBtn_link_inn {
	text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
}
#faq .moreBtn_link:hover .animeBtn_inn {
	text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
}

/* voice
----------------------------------- */
#voice {
}
#voice .voice_items {
}
#voice .voice_item {
	display: grid;
	align-content: flex-start;
}
#voice .voice_item_title {
}
#voice .voice_item_text {
	background: var(--secondary-color_01);
	position: relative;
}
#voice .voice_item_text:after {
	content: "";
	position: absolute;
}
#voice .voice_shop {
}
#voice .voice_shop_name {
	display: none;
}
#voice .voice_shop_area {
}
#voice .voice_icon {
	aspect-ratio: 1/1;
	border: 1px solid #666;
	border-radius: 100%;
	overflow: hidden;
}
#voice .voice_icon .voice_icon_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* contact
----------------------------------- */
#contact {
	background: var(--secondary-color);
	position: relative;
}
#contact .contact_inn {
}
#contact .contact_info {
}
#contact .contact_title {
	font-family: var(--secondary-font);
	color: #fff;
	line-height: 1;
	text-shadow: 0 0 10px rgba(0,0,0,0.3);
}
#contact .contact_text {
	color: #fff;
	line-height: 1.6;
}
#contact .contact_btn {
}
#contact .contact_btn_text {
	color: #fff;
	font-weight: bold;
	text-align: center;
	text-shadow: 0 0 10px rgba(0,0,0,0.3);
}
#contact .contact_btn_items {
}
#contact .contact_btn_item {
}
#contact .contact_btn_link {
	background: #ffe610;
}
#contact .contact_btn_link.download:after {
	content: "\f019";
	color: var(--tertiary-color);
}
#contact .contact_btn_link.mail:after {
	content: "\f0e0";
	color: var(--tertiary-color);
}
#contact .animeBtn_inn {
	text-shadow: 0 -1.5em 0 var(--tertiary-color), 0 0 0 var(--tertiary-color);
}
#contact .contact_btn_link:hover .animeBtn_inn {
	text-shadow: 0 0 0 var(--tertiary-color), 0 1.5em 0 var(--tertiary-color);
}


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

	header {
		background-color: transparent;
		box-shadow: none;
		transition: background-color 0.3s, box-shadow 0.3s;
	}
	header .globalmenu .globalmenu_jp {
		color: #fff;
	}
	header .globalmenu .globalmenu_en {
		color: #fff;
	}

	/* INDEXページのみスクロールしたらheaderに「scrolled」付与 */
	header.scrolled {
		background: rgba(255,255,255,0.95);
		color: #000;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	}
	header.scrolled .globalmenu .globalmenu_jp {
		color: #333;
	}
	header.scrolled .globalmenu .globalmenu_en {
		color: var(--main-color) !important;
	}
	header.scrolled .globalmenu_btn .globalmenu_jp {
		color: #fff !important;
	}


	main {
		padding-top: 0 !important;
	}

	/* topContent
	----------------------------------- */
	.topContent {
		padding: 75px 0 90px;
	}
	.topContent .topContent_title {
		margin-bottom: 50px;
		padding-bottom: 40px;
	}
	.topContent .topContent_title:after {
		width: 30px;
		height: 3px;
	}
	.topContent .topContent_title_en {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.topContent .topContent_title_jp {
		font-size: 42px;
	}
	.topContent .topContent_body {
		width: var(--pc_main-width);
	}

	/* slant-bg
	----------------------------------- */
	.slant-bg {
	}
	.slant-bg:before {
		height: 60px;
	}

	/* kv
	----------------------------------- */
	.kv {
		overflow-y: hidden;
		position: relative;
	}

	.kv .kv_inner {
		height: calc( 620px + (var(--pc_header-height) / 2));
		background: -moz-linear-gradient(45deg, #0fc 0%, var(--secondary-color) 29%, #f69 66%, #f96 100%);
		background: -webkit-linear-gradient(45deg, #0fc 0%,var(--secondary-color) 29%,#f69 66%,#f96 100%);
		background: linear-gradient(45deg, #0fc 0%,var(--secondary-color) 29%,#f69 66%,#f96 100%);
		background-size: 350% 12%;
	}

	/* ドット */
	.kv_inner:before {
		background-size: 10px 10px;
	}

	/* 動いてる丸 */
	.kv_inner:after {
		content: '';
		position: absolute;
		top: -20vmin;
		left: -20vmin;
		width: 70vmax;
		height: 70vmax;
		background: rgba(255, 255, 255, 0.07);
		animation: morph 15s linear infinite alternate, spin 20s linear infinite;
		will-change: border-radius, transform;
		transform-origin: 55% 55%;
		pointer-events: none; 
		z-index: 1;
	}
	@keyframes morph {
		0% {
			border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
		100% {
			border-radius: 40% 60%;
		}
	}
	@keyframes spin {
		to {
			transform: rotate(1turn); 
		}
	}

	.kv .kv_content {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 100%;
		padding: 0 50px;
	}
	.kv .kv_content_text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 49%;
		padding-left: 7.5%;
	}
	.kv .kv_content_text_big {
		font-size: clamp(14px, 3.1vw, 56px);
		margin-bottom: 20px;
	}
	.kv .kv_content_text_small {
		font-size: clamp(14px, 1.25vw, 22px);
	}
	.kv .kv_content_monitor {
		width: 49%;
		height: 100%;
		position: relative;
	}
	.kv .kv_content_thumbnail {
		position: absolute;
		transform: translateY(-50%) translateX(-50%);
		-webkit-transform: translateY(-50%) translateX(-50%);
	}
	.kv .kv_content_thumbnail:nth-child(1) {
		top: calc(50% - 25px + 26px);
		left: calc(50% - 25px);
		width: 82.25%;
		max-width: 674px;
	}
	.kv .kv_content_thumbnail:nth-child(2) {
		top: calc(50% + 112px);
		left: calc(50% + 30%);
		width: 25%;
		max-width: 206px;
	}
	.kv .kv_content_image {
	}

	/* logo
	----------------------------------- */
	#logo {
		padding: 50px 0;
	}
	#logo .swiper-wrapper {
	}
	#logo .logo_items {
	}
	#logo .logo_item {
	}
	#logo .logo_thumbnail {
	}
	#logo .logo_image {
	}

	/* topSlider
	----------------------------------- */
	.topSlider {
		padding-top: 25px;
	}
	.topSlider .topSlider_title {
	}
	.topSlider .topSlider_items {}
	.topSlider .topSlider_item {
		margin: 0 15px;
		padding-bottom: 50px !important;
	}
	.topSlider .topSlider_link {
	}
	.topSlider .topSlider_thumbnail {
		border-radius: 8px;
	}
	.topSlider .topSlider_image {
	}
	.topSlider .slick-dots {
		bottom: 0 !important;
	}
	/* 要素が1個の場合 */
	.topSlider_items.single-slider {
	}
	.topSlider_items.single-slider .topSlider_item {
		max-width: 840px;
	}

	/* description
	----------------------------------- */
	#description {
		padding-bottom: 30px;
	}
	#description .description_intro {
		margin-bottom: 25px;
	}
	#description .description_intro_text {
		font-size: 21px;
		font-weight: bold;
		text-align: center;
	}
	#description .description_intro_items {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 8px 0;
	}
	#description .description_intro_item {
		font-size: 21px;
		font-weight: bold;
	}
	#description .description_intro_item:before {
	}
	#description .description_intro_item:after {
	}
	#description .description_text {
		font-size: 16px;
		text-align: center;
		margin-bottom: 50px;
	}
	#description .description_point {
	}
	#description .description_point_items {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}
	#description .description_point_item {
		width: 30%;
		margin: 0 15px;
	}
	#description .description_point_title {
		font-size: 18px;
		margin-bottom: 8px;
	}
	#description .description_point_title_num {
		font-size: 13px;
	}
	#description .description_point_title_num:before {
		margin-right: 0.25em;
	}
	#description .description_point_thumbnail {
		border-radius: 5px;
		margin-bottom: 8px;
	}
	#description .description_point_image {
	}
	#description .description_point_caption {
		width: 90%;
		font-size: 14px;
		margin: 0 auto;
	}

	/* merit
	----------------------------------- */
	#merit {
		padding-top: 125px;
		padding-bottom: 30px;
	}
	#merit .merit_title {
	}
	#merit .merit_items {
		display: flex;
		flex-wrap: wrap;
		width: 930px;
		background: rgba(255,255,255,0.5);
		border: 3px solid rgba(255,255,255,0.8);
		border-radius: 20px;
		box-shadow: 0 0 7px rgba(0,0,0,0.1);
		margin: 0 auto 30px;
		padding: 30px;
	}
	#merit .merit_item {
		width: 25%;
		margin-bottom: 2%;
		padding: 15px;
	}
	#merit .merit_item_head {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#merit .merit_item_icon {
		width: 80px;
		height: 80px;
	}
	#merit .merit_item_icon i {
		font-size: 32px;
	}
	#merit .merit_item_title {
		font-size: 15px;
	}
	#merit .merit_modal {
	}
	#merit .merit_modal_content {
	}
	#merit .merit_modal_inner {
		padding: 20px;
	}
	#merit .merit_modal_text {
	}
	#merit .merit_modal_close {
		top: -30px;
		right: -30px;
		width: 30px;
		height: 30px;
	}
	#merit .merit_modal_close span {
	}
	#merit .merit_modal_close span:before,
	#merit .merit_modal_close span:after {
	}
	#merit .merit_modal_close span:before {
	}
	#merit .merit_modal_close span:after {
	}
	#merit .merit_text {
		font-size: 16px;
		font-weight: bold;
	}

	/* price
	----------------------------------- */
	#price {
		padding-top: 125px;
	}
	#price .price_detail {
		display: grid;
		grid-template-columns: 40% 1fr;
		gap: 30px;
	}
	#price .price_text {
		grid-column: 1 / 1;
		grid-row: 1 / 1;
	}
	#price .price_text_big {
		font-size: 40px;
		margin-bottom: 20px;
	}
	#price .price_text_big_price {
		font-size: 64px;
	}
	#price .price_text_big_price:before {
		font-size: 36px;
		margin-right: 10px;
	}
	#price .price_text_big_price:after {
		font-size: 36px;
		margin-right: 5px;
		margin-left: 10px;
	}
	#price .price_text_small {
	}
	#price .price_thumbnail {
		grid-column: 2 / 3;
		grid-row: 1 / 3;
	}
	#price .price_image {
	}
	#price .moreBtn {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	#price .moreBtn_link {
		width: 250px;
	}

	/* faq
	----------------------------------- */
	#faq {
	}
	#faq .faq_box {
		margin-bottom: 20px;
	}
	#faq .faq_box_title {
	}
	#faq .faq_items {
		padding: 0 10px;
	}
	#faq .faq_item {
		margin-bottom: 20px;
	}
	#faq .accordion_one {
		padding: 20px 24px;
	}
	#faq .faq_question {
	}
	#faq .faq_question:after {
	}
	#faq .faq_question_text {
		font-size: 16px;
		align-items: center;
	}
	#faq .faq_question_text:before {
		width: 48px;
		height: 48px;
		margin-right: 10px;
	}
	#faq .faq_answer {
		margin-top: 20px;
		padding: 16px 36px 16px 24px;
	}
	#faq .faq_answer_text {
		font-size: 16px;
		line-height: 1.6;
	}
	#faq .faq_answer_text:before {
		font-size: 36px;
		margin: -15px 20px 0 0;
	}
	#faq .moreBtn_link {
		width: 250px;
	}

	/* voice
	----------------------------------- */
	#voice {
	}
	#voice .voice_items {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#voice .voice_item {
		grid-template-columns: 42px 1fr;
		gap: 0 15px;
		width: 49%;
		border-bottom: 2px dotted #ccc;
		padding: 20px 15px;
	}
	#voice .voice_item:last-child {
		border-bottom: none;
	}
	#voice .voice_item_title {
		grid-column: 2 / 3;
		grid-row: 1 / 1;
		font-size: 18px;
		margin-bottom: 5px;
	}
	#voice .voice_item_text {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		font-size: 16px;
		line-height: 1.8;
		border-radius: 6px;
		margin-bottom: 5px;
		padding: 15px 20px;
	}
	#voice .voice_item_text:after {
		top: 14px;
		left: -14px;
		border: 7px solid transparent;
		border-right: 7px solid var(--secondary-color_01);
	}
	#voice .voice_shop {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
		display: flex;
		align-items: first baseline;
	}
	#voice .voice_shop_name {
	}
	#voice .voice_shop_area {
		font-size: 12px;
	}
	#voice .voice_icon {
		grid-column: 1 / 2;
		grid-row: 2 / 4;
		width: 42px;
		height: 42px;
	}
	#voice .voice_icon .voice_icon_image {
	}

	/* contact
	----------------------------------- */
	#contact {
		width: 100%;
		height: 220px;
		overflow-x: hidden;
		position: relative;
		z-index: 0;
	}
#contact .contact_back,
#contact .contact_back_rtl {
	position: absolute;
}
#contact .contact_back_rtl {
	bottom: 10px;
}
#contact .contact_back_items {
	transition-timing-function: linear !important;
	padding-top: 10px;
}
#contact .contact_back_item {
	width: auto !important;
}
#contact .contact_back_text {
	font-family: var(--secondary-font);
	color: rgba(255,255,255,0.15);
	font-weight: bold;
	line-height: 1;

	font-size: 100px;
}
	#contact .contact_inn {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		-webkit-transform: translateY(-50%) translateX(-50%);
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: var(--pc_main-width);
		margin: 0 auto;
		z-index: 2;
	}
	#contact .contact_info {
		width: calc(100% - 520px);
	}
	#contact .contact_title {
		font-size: 60px;
		margin-bottom: 12px;
	}
	#contact .contact_text {
		font-size: 15px;
	}
	#contact .contact_btn {
		width: 520px;
	}
	#contact .contact_btn_text {
		font-size: 42px;
		margin-bottom: 20px;
	}
	#contact .contact_btn_items {
		display: flex;
		flex-wrap: wrap;
		/* justify-content: space-between; */
		justify-content: center;
	}
	#contact .contact_btn_item {
	}
	#contact .contact_btn_link {
		width: 250px;
	}

}

/* --------------------------------------------------
スマホ
-------------------------------------------------- */
@media all and (max-width: 767px) {

	/* topContent
	----------------------------------- */
	.topContent {
		padding: 7.5vw 0 9.0vw;
	}
	.topContent .topContent_title {
		margin-bottom: 5.0vw;
		padding-bottom: 4.0vw;
	}
	.topContent .topContent_title:after {
		width: 3.0vw;
		height: 2px;
	}
	.topContent .topContent_title_en {
		font-size: 4.5vw;
		margin-bottom: 1.0vw;
	}
	.topContent .topContent_title_jp {
		font-size: 6.25vw;
	}
	.topContent .topContent_body {
		width: 90vw;
	}

	/* slant-bg
	----------------------------------- */
	.slant-bg {
	}
	.slant-bg:before {
		height: 6.0vw;
	}

	/* kv
	----------------------------------- */
	.kv {
		height: 120vw;
	}
	.kv .kv_inner {
		height: 100%;
		background: -moz-linear-gradient(67.5deg, #0fc 0%, var(--secondary-color) 29%, #f69 66%, #f96 100%);
		background: -webkit-linear-gradient(67.5deg, #0fc 0%,var(--secondary-color) 29%,#f69 66%,#f96 100%);
		background: linear-gradient(67.5deg, #0fc 0%,var(--secondary-color) 29%,#f69 66%,#f96 100%);
		background-size: 350% 100%;
	}

	/* ドット */
	.kv_inner:before {
		background-size: 1vw 1vw;
	}

	/* 動いてる丸 */
	.kv_inner:after {
	}

	.kv .kv_content {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	.kv .kv_content_text {
		order: 2;
		margin-top: 2.5vw;
	}
	.kv .kv_content_text_big {
		font-size: 7.5vw;
		text-align: center;
		margin-bottom: 5vw;
	}
	.kv .kv_content_text_small {
		font-size: 4.25vw;
		text-align: center;
		position: relative;
	}
	.kv .kv_content_monitor {
		order: 1;
		width: 80vw;
		height: 50vw;
		position: relative;
		top: 10vw;
		left: 10vw;
		margin-bottom: 10vw;
	}
	.kv .kv_content_thumbnail {
		position: absolute;
	}
	.kv .kv_content_thumbnail:nth-child(1) {
		top: 0;
		left: 0;
		width: 90%;
	}
	.kv .kv_content_thumbnail:nth-child(2) {
		bottom: 0;
		right: 0;
		width: 32.6%;
	}
	.kv .kv_content_image {
	}

	/* logo
	----------------------------------- */
	#logo {
		padding: 5vw 0;
	}
	#logo .swiper-wrapper {
	}
	#logo .logo_items {
	}
	#logo .logo_item {
	}
	#logo .logo_thumbnail {
	}
	#logo .logo_image {
	}

	/* topSlider
	----------------------------------- */
	.topSlider {
	}
	.topSlider .topSlider_items {}
	.topSlider .topSlider_item {
		margin: 0 3vw;
	}
	.topSlider .topSlider_link {
	}
	.topSlider .topSlider_thumbnail {
		border-radius: 5px;
	}
	.topSlider .topSlider_image {
	}
	.topSlider .slick-dots {
		height: 10vw;
		bottom: -10vw !important;
	}
	/* 要素が1個の場合 */
	.topSlider_items.single-slider {
	}
	.topSlider_items.single-slider .topSlider_item {
		max-width: 76vw;
	}

	/* description
	----------------------------------- */
	#description {
	}
	#description .description_intro {
		margin-bottom: 3.5vw;
	}
	#description .description_intro_text {
		font-size: 4vw;
		font-weight: bold;
		text-align: center;
	}
	#description .description_intro_items {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 1.5vw 0;
	}
	#description .description_intro_item {
		font-size: 4vw;
		font-weight: bold;
		margin: 0.5vw;
	}
	#description .description_intro_item:before {
	}
	#description .description_intro_item:after {
	}
	#description .description_text {
		font-size: 3.67vw;
		font-weight: normal;
		text-align: left;
		margin-bottom: 5vw;
	}
	#description .description_point {
	}
	#description .description_point_items {
		padding: 0 5vw 3.5vw;
	}
	#description .description_point_item {
		width: 100%;
		margin-bottom: 5vw;
	}
	#description .description_point_item:last-child {
		margin-bottom: 0;
	}
	#description .description_point_title {
		font-size: 4.5vw;
		margin-bottom: 8px;
	}
	#description .description_point_title_num {
		font-size: 4vw;
	}
	#description .description_point_title_num:before {
	}
	#description .description_point_thumbnail {
		border-radius: 5px;
		margin-bottom: 0.5vw;
	}
	#description .description_point_image {
	}
	#description .description_point_caption {
		width: 90%;
		font-size: 3.67vw;
		margin: 0 auto;
	}

	/* merit
	----------------------------------- */
	#merit {
	}
	#merit .merit_title {
	}
	#merit .merit_items {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 3.5vw;
	}
	#merit .merit_item {
		width: 49%;
		margin-bottom: 10vw;
	}

	#merit .merit_item_head {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#merit .merit_item_icon {
		margin-bottom: 2vw;
	}
	#merit .merit_item_icon i {
		font-size: 10vw;
	}
	#merit .merit_item_title {
		font-size: 3.5vw;
		line-height: 1.4;
		text-align: center;
		padding: 0 2.5vw;
	}
	#merit .merit_modal {
	}
	#merit .merit_modal_content {
	}
	#merit .merit_modal_inner {
		width: 80vw;
		padding: 4vw;
	}
	#merit .merit_modal_text {
		font-size: 3.5vw;
	}
	#merit .merit_modal_close {
		top: -5vw;
		right: -5vw;
		width: 5vw;
		height: 5vw;
	}
	#merit .merit_modal_close span {
	}
	#merit .merit_modal_close span:before,
	#merit .merit_modal_close span:after {
	}
	#merit .merit_modal_close span:before {
	}
	#merit .merit_modal_close span:after {
	}
	#merit .merit_text {
		font-size: 3.67vw;
		text-align: center;
		line-height: 1.9;
		letter-spacing: 0.05em;
	}

	/* price
	----------------------------------- */
	#price {
	}
	#price .price_detail {
	}
	#price .price_text {
		margin-bottom: 3.5vw;
	}
	#price .price_text_big {
		font-size: 7.5vw;
		margin-bottom: 3.5vw;
	}
	#price .price_text_big_price {
		font-size: 10vw;
	}
	#price .price_text_big_price:before {
		font-size: 5vw;
		margin-right: 2vw;
	}
	#price .price_text_big_price:after {
		font-size: 5vw;
		margin-right: 1vw;
		margin-left: 0.5vw;
	}
	#price .price_text_small {
		font-size: 3.67vw;
		line-height: 1.7;
	}
	#price .price_thumbnail {
		margin-bottom: 3.5vw;
	}
	#price .price_image {
	}
	#price .moreBtn_link {
		width: 60vw;
	}

	/* faq
	----------------------------------- */
	#faq {
	}
	#faq .faq_box {
		margin-bottom: 3vw;
	}
	#faq .faq_box_title {
	}
	#faq .faq_items {
	}
	#faq .faq_item {
		margin-bottom: 3vw;
	}
	#faq .accordion_one {
		padding: 2.0vw 2.4vw;
	}
	#faq .faq_question {
	}
	#faq .faq_question:after {
		font-size: 0.8rem;
		margin-left: 1vw;
	}
	#faq .faq_question_text {
		font-size: 3.5vw;
		align-items: flex-start;
		padding-top: 1.0vw;
	}
	#faq .faq_question_text:before {
		min-width: 7.5vw;
		height: 7.5vw;
		font-size: 2.75vw;
		margin: -1vw 2vw 0 0;
	}
	#faq .faq_answer {
		margin: 2vw 1vw 0 1vw;
		padding: 2vw;
	}
	#faq .faq_answer_text {
		font-size: 3.5vw;
	}
	#faq .faq_answer_text:before {
		font-size: 5vw;
		margin: -1.5vw 2vw 0 0
	}
	#faq .moreBtn {
		margin-top: 5vw;
	}
	#faq .moreBtn_link {
		width: 60vw;
	}

	/* voice
	----------------------------------- */
	#voice {
	}
	#voice .topContent_body {
		width: 100% !important;
	}
	#voice .voice_items {
		display: flex;
		overflow-x: scroll;
		padding: 0 5vw 3.5vw;
	}
	#voice .voice_item {
		flex-shrink: 0;
		grid-template-columns: 1fr 11vw;
		grid-template-rows: auto;
		gap: 0;
		width: 75%;
		margin-right: 5vw;
	}
	#voice .voice_item:last-child {
		margin-right: 0;
	}
	#voice .voice_item_title {
		grid-column: 1 / 3;
		grid-row: 1 / 1;
		font-size: 3.75vw;
		line-height: 1.3;
		margin-bottom: 1.25vw;
	}
	#voice .voice_item_text {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		font-size: 3.33vw;
		line-height: 1.7;
		border-radius: 4px;
		margin-bottom: 2.5vw;
		padding: 2.5vw;
	}
	#voice .voice_item_text:after {
		top: 100%;
		right: 4vw;
		border: 2vw solid transparent;
		border-top: 2vw solid var(--secondary-color_01);
	}
	#voice .voice_shop {
	}
	#voice .voice_shop_name {
	}
	#voice .voice_shop_area {
		font-size: 3.25vw;
	}
	#voice .voice_icon {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
		width: 10vw;
		height: 10vw;
	}
	#voice .voice_icon i {
		font-size: 8vw;
		margin-top: 1.5vw;
	}

	/* contact
	----------------------------------- */
	#contact {
		width: 100%;
		padding: 7.5vw 0 9.0vw;
		background-image: radial-gradient(circle, rgba(255,255,255,0.17) 0.3vw, transparent 0.3vw);
		background-position: 0 0;
		background-size: 3vw 3vw;
	}
	#contact .contact_back,
	#contact .contact_back_rtl {
		display: none;
	}
	#contact .contact_back_rtl {
	}
	#contact .contact_back_items {
	}
	#contact .contact_back_item {
	}
	#contact .contact_back_text {
	}
	#contact .contact_inn {
		width: 90vw;
		margin: 0 auto;
	}
	#contact .contact_info {
		margin-bottom: 2.5vw;
	}
	#contact .contact_title {
		font-size: 10vw;
		margin-bottom: 2.5vw;
	}
	#contact .contact_text {
		font-size: 3.3vw;
	}
	#contact .contact_btn {
	}
	#contact .contact_btn_text {
		font-size: 4.75vw;
		margin-bottom: 2.5vw;
		padding: 0 0.5vw;
	}
	#contact .contact_btn_items {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	#contact .contact_btn_item {
		/* width: 49%; */
		width: 60vw;
	}
	#contact .contact_btn_link {
	}
	#contact .animeBtn_inn {
		/* font-size: 2.75vw; */
		font-size: 3.5vw;
	}
}
