@charset "UTF-8";
html {
	font-size: 10px
}
@media only screen and (min-width: 1500px) {
	html {
		font-size: 12.5px
	}
}

@media only screen and (max-width: 767px) {
	html {
		font-size: 2.67vw
	}
}
body * {
	line-height: 1.62em;
}
body {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	color: #565657;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.05em;
}
a {
	color: #565657;
}
img {
	width: 100%;
}

/* 背景グラデーション */
@keyframes bggradient{
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

/* font */
.shippori {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
}
.comfortaa {
	font-family: "Comfortaa", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

@keyframes curtain_anim_left {
	0% {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0)
	}
	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0)
	}
}

@keyframes curtain_anim_right {
	0% {
		-webkit-clip-path: inset(0 0 0 100%);
		clip-path: inset(0 0 0 100%)
	}
	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0)
	}
}

.pc-hidden {
	display: none !important
}

@media only screen and (max-width: 1023px) {
	.tbsp-hidden {
		display: none !important
	}
}

@media only screen and (max-width: 767px) {
	.sp-hidden {
		display: none !important
	}
	.pc-hidden {
		display: block !important
	}
	br.pc-hidden {
		display: inline-block !important
	}
}

/*左から右にフェードイン*/
.left-to-right {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 1s;
    transition-delay: .5s;
}
.left-to-right.inview {
    opacity: 1;
    transform: translate(0);
}

/*右から左にフェードイン*/
.right-to-left {
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s;
    transition-delay: .5s;
}
.right-to-left.inview {
    opacity: 1;
    transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
    transition-delay: .5s;
}
.down-to-top.inview {
    opacity: 1;
    transform: translateY(0);
}

/*上から下にフェードイン*/
.top-to-down {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 1s;
    transition-delay: .5s;
}
.top-to-down.inview {
    opacity: 1;
    transform: translateY(0);
}

/*フェードイン*/
.fade-in {
    opacity: 0;
    transition: all 1s;
    transition-delay: .5s;
}
.fade-in.inview {
    opacity: 1;
}

/*左から右にカーテン*/
.left-to-right-curtain {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
.left-to-right-curtain.inview {
    -webkit-animation: curtain_anim_left 1s cubic-bezier(0.7, 0, 0.17, 1) 0.2s 1 normal both running;
    animation: curtain_anim_left 1s cubic-bezier(0.7, 0, 0.17, 1) 0.2s 1 normal both running;
}

.down-to-top_parent .down-to-top_child {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
}
.down-to-top_parent .down-to-top_child:nth-child(1) {
    transition-delay: .5s;
}
.down-to-top_parent .down-to-top_child:nth-child(2) {
    transition-delay: .7s;
}
.down-to-top_parent .down-to-top_child:nth-child(3) {
    transition-delay: .9s;
}
.down-to-top_parent .down-to-top_child:nth-child(4) {
    transition-delay: 1.1s;
}
.down-to-top_parent .down-to-top_child:nth-child(5) {
    transition-delay: 1.3s;
}
.down-to-top_parent .down-to-top_child:nth-child(6) {
    transition-delay: 1.5s;
}
.down-to-top_parent .down-to-top_child:nth-child(7) {
    transition-delay: 1.7s;
}
.down-to-top_parent .down-to-top_child:nth-child(8) {
    transition-delay: 1.9s;
}
.down-to-top_parent .down-to-top_child:nth-child(9) {
    transition-delay: 2.1s;
}
.down-to-top_parent .down-to-top_child:nth-child(10) {
    transition-delay: 2.3s;
}
.down-to-top_parent.inview .down-to-top_child {
	opacity: 1;
    transform: translateY(0);
}
.footer_inner1_contact_wrap.right-to-left {
    transition-delay: 1.5s;
}


.pc-hidden {
	display: none !important
}

@media only screen and (max-width: 1023px) {
	.tbsp-hidden {
		display: none !important
	}
}

@media only screen and (max-width: 767px) {
	.sp-hidden {
		display: none !important
	}
	.pc-hidden {
		display: block !important
	}
	br.pc-hidden {
		display: inline-block !important
	}
}

/* テキストグラデーション */
.gradation {
	background: linear-gradient(135deg, #86b3e1, #d591c4);
	background: -webkit-linear-gradient(135deg, #86b3e1, #d591c4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}
.gradation2 {
	background: linear-gradient(135deg, #d591c4, #86b3e1);
	background: -webkit-linear-gradient(135deg, #d591c4, #86b3e1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}


/*========= ローディング画面のためのCSS ===============*/

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999;
	text-align: center;
	top: 0;
}
#splash_logo {
	display: none;
	width: 14%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}



/*========= 画面遷移のためのCSS ===============*/


/*画面遷移アニメーション*/

.splashbg {
	display: none;
}


/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
	display: block;
	content: "";
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	transform: scaleX(0);
	background-color: #fff;
	/*伸びる背景色の設定*/
	animation-name: PageAnime;
	animation-duration: 1.2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
    /* visibility: hidden; */
}

@keyframes PageAnime-fadeout {
	0% {
		transform: scaleX(1);
	}
	100% {
        transform: scaleX(1);
	}
}
@keyframes PageAnime {
	0% {
		transform-origin: left;
		transform: scaleX(0);
	}
	50% {
		transform-origin: left;
		transform: scaleX(1);
	}
	50.001% {
		transform-origin: right;
	}
	100% {
		transform-origin: right;
		transform: scaleX(0);
	}
}


/*画面遷移の後現れるコンテンツ設定*/
#header {
	opacity: 0;
}
#header_nav {
	opacity: 0;
}

#main_wrapper {
	opacity: 0;
}

#footer {
	opacity: 0;
}


/*bodyにappearクラスがついたら出現*/
body.appear #header {
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}
body.appear #header_nav {
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

body.appear #main_wrapper {
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

body.appear #footer {
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}




/* #wrapper {
	min-width: 1200px;
} */


.header {
	position: fixed;
	z-index: 20;
	width: 100%;
    min-width: 1254px;
    top: 0;
    height: 80px;
    background: #fff;
	box-shadow: rgb(0 0 0 / 5%) 0px 10px 10px;
}
.header_logo a {
	position: absolute;
	top: 0;
	left: 2vw;
	display: block;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) 0s;
	transition: all .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) 0s;
	display: block;
	overflow: hidden;
	text-indent: -5260px;
	max-width: 170px;
	width: 20%;
	height: 80px;
	background: url(../images/svg/comari_logo2.svg) no-repeat left center;
	background-size: contain
}
.header_nav {
	position: fixed;
	right: 0;
	top: 0;
	width: calc(100% - 20rem);
	height: 80px;
	zoom: 1;
	-webkit-transition: all .5s cubic-bezier(0.57, 0.15, 0.13, 0.97) 0s;
	transition: all .5s cubic-bezier(0.57, 0.15, 0.13, 0.97) 0s;
	z-index: 30;
}
.header_nav .h_mainNav_list {
	zoom: 1;
	display: flex;
    align-items: center;
    list-style: none;
    justify-content: flex-end;
	height: 80px;
}
.header_nav .h_mainNav_list .item > a {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 16px;
    padding: 18px 50px;
    line-height: 14px;
	letter-spacing: 0.2em;
	/* margin-right: 1.2vw; */
	height: 80px;
}
.header_nav .h_mainNav_list .item > a:after {
	content: '';
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #e4bdda, #a5c4e3);
    transition: all 0.5s;
    transform: scale(0,1);
    transform-origin: left;
}
.header_nav .h_mainNav_list .item:last-child a:after {
	content: none;
}
.item_service > a:before {
	content: "";
	width: 15px;
	height: 15px;
	background-image: url(../images/svg/comari_hp_arrow_down1.svg);
	background-size: 15px;
	position: absolute;
	top: 50%;
	left: 20px;
	z-index: 0;
	transform: scale(1,1);
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.header_nav .h_mainNav_list .item.item_contact a {
	background: linear-gradient(to right, #a5c4e3, #e4bdda);
	position: relative;
	color: #fff;
	border-radius: 40px 0 0 40px;
	z-index: 1;
	padding: 18px 50px 18px 80px;
	
}
.header_nav .h_mainNav_list .item.item_contact a:after {
	content: "";
	width: 25px;
	height: 25px;
	background-image: url(../images/svg/comari_hp_mail_icon1.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 25px;
	left: 40px;
	position: absolute;
	top: 50%;
	z-index: 0;
	transform: scale(1,1);
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.header_nav .h_mainNav_list .item.item_contact a:before {
	background: linear-gradient(to right, #e4bdda, #a5c4e3);
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: .5s;
	z-index: -1;
}
.header_nav .h_mainNav_list .item > a span {
	display: inline-block;
}
.header_nav .h_mainNav_list .item > a span.item_name {
	font-size: 16px;
}
.header_nav .h_mainNav_list .item > a span.item_sub_name {
	font-size: 12px;
	color: #adb2b4;
	letter-spacing: 0.05em;
}
.header_nav .h_mainNav_list .item.item_contact a span.item_sub_name {
	color: #fff;
}
.item_child_list_wrap {
	display: none;
	position: fixed;
	left: 0;
	top: 80px;
	width: 100%;
	background: #fff;
}
.item_child_list {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
}
.item_child_list_li {
	max-width: 306px;
	width: calc( 100% / 3 - 30px );
	margin: 0 15px;
	padding-right: 17px;
	background: url(../images/svg/comari_hp_arrow_right1.svg) no-repeat;
	background-position: right center;
	background-size: 15px;
	position: relative;
}
.item_child_list_li_number {
	font-size: 90px;
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 0;
    transform: scale(1,1);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	opacity: .2;
	height: 75px;
	line-height: 64px;
}

.child_link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
}
.item_child_list_li_image {
	width: 26%;
	box-sizing: border-box;
	position: relative;
}
.item_child_list_li_image:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
	transition:all 0.5s ease;
    border: 0px solid transparent;
    background: linear-gradient(135deg,#a5c4e3 0%,#e4bdda 100%) border-box border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
  }
.item_child_list_li_text {
	width: 72%;
	position: relative;
	z-index: 1;
}
.item_child_list_li_text_ja {
	font-size: 14px;
	margin-bottom: 5px;
}
.item_child_list_li_text_en {
	font-size: 10px;
	color: #adb2b4;
}

.main_visual {
	height: calc( 100vh - 80px );
	margin-top: 80px;
	position: relative;
}
.main_visual_image1 {
	position: absolute;
	width: 54%;
	left: 0;
	top: 0;
	z-index: 2;
	transition-delay: 1s;
	transition-duration: 1.5s;
}
.main_visual_image2 {
	position: absolute;
	width: 54%;
	right: 0;
	top: 7%;
	z-index: 1;
	transition-delay: 1.3s;
	transition-duration: 1.5s;
}
.main_visual_image3 {
	position: absolute;
	width: 24.8%;
	right: 4.3%;
	top: 50%;
	z-index: 2;
	transition-delay: 1.6s;
	transition-duration: 1.5s;
}
.main_visual_image4 {
	position: absolute;
	width: 14.6%;
	right: 2.15%;
	top: 3.6%;
	z-index: 2;
	transition-delay: 1.9s;
	transition-duration: 1.5s;
}
.main_visual_text_wrap {
	position: absolute;
	width: 62.2%;
	left: 6.5%;
	top: 62.6%;
	z-index: 3;
}
.main_visual_text1 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
	margin-bottom: 22px;
}
.main_visual_text1_title {
	width: 53.5%;
	transition-delay: 2.2s;
}
.main_visual_text1_list {
	width: 38%;
	transition-delay: 2.5s;
}
.main_visual_text1_list_li {
	font-size: 14px;
	letter-spacing: 0.8em;
	padding-left: 26px;
	background: url(../images/svg/comari_hp_check_icon.svg) no-repeat;
	background-size: 15px;
	background-position: left center;
	margin-top: 10px;
}
.main_visual_text_line {
	width: 100%;
	height: 1px;
	background: linear-gradient(60deg, #a5c4e3, #e4bdda);
	margin-bottom: 20px;
	animation-delay: 2.5s!important;
}
.main_visual_text2_en {
	letter-spacing: 0.1em;
	font-size: 12px;
	color: #adb2b4;
	transition-delay: 3s;
}
.main_visual_text2_en1 {
	font-size: 14px;
	display: inline-block
}
.main_visual_text2_en2 {
	font-size: 12px;
	display: inline-block
}

.section {
	padding: 70px 0;
}
.about_section {
	background: linear-gradient(60deg, #a5c4e3, #e4bdda);
    /* animation: bggradient 10s ease infinite;
    background-size: 250% 250%; */
	/* background: url(../images/comari_hp_pc_top_service_main_img.jpg) no-repeat; */
	margin-bottom: 80px;
	/* background-size: cover;
	background-attachment: fixed;
	background-position: center center; */
}
/* .about_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background: url(../images/comari_hp_pc_top_service_main_img.jpg) no-repeat;
	background-size: cover;
} */
/* .parallax-container:before{
	background: linear-gradient(60deg, #a5c4e3, #e4bdda);
    animation: bggradient 10s ease infinite;
    background-size: 250% 250%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-attachment: fixed;
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	height: 80%;
	padding: 10% 0;
	content: "";
	z-index: -1;
} */
.section_inner {
	margin: 0 auto;
	width: 90%;
	max-width: 1186px;
}
.section_title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 30px;
}
.section_title_name {
	font-size: 20px;
	letter-spacing: 0.2em;
}
.section_title_line {
	width: 50px;
	height: 1px;
	background: #adb2b4;
	margin: 0 10px;
}
.section_title_en {
	color: #adb2b4;
	font-size: 16px;
	letter-spacing: 0.05em;
}
.about_section .section_title_name {
	color: #fff;
}
.about_section .section_title_line {
	background: #fff;
}
.about_section .section_title_en {
	color: #fff;
}
.section_content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.about_section_left {
	width: 47%;
}
.about_section_left_image {
	margin-bottom: 30px;
}
.about_section_right {
	width: 47%;
}
.about_section_right_title {
	color: #fff;
	font-size: 30px;
	margin-bottom: 30px;
	letter-spacing: 0.1em;
}
.about_section_right_comment {
	color: #fff;
}
.about_section_right_comment_ja {
	font-size: 16px;
	margin-bottom: 30px;
}
.about_section_right_comment_en {
	font-size: 14px;
}
.about_section_right_comment_signature {
	text-align: right;
	margin-top: 5px;
}
.about_section_right_comment_signature small {
	font-size: 12px;
}
.link_btn_a {
	background: linear-gradient(to right, #a5c4e3, #e4bdda);
	color: #fff;
	height: 60px;
	border-radius: 30px;
	border: 2px solid #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	width: 100%;
	max-width: 280px;
	margin: 0 0 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-bottom: 10px;
}
.link_btn_a:before {
	background: linear-gradient(to right, #e4bdda, #a5c4e3);
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: .5s;
	z-index: -1;
}
.link_btn_a_ja {
	font-size: 18px;
}
.link_btn_a_en {
	font-size: 14px;
	margin-left: 14px;
	margin-top: 4px;
}
.link_btn_a:after {
	content: "";
	background-image: url(../images/svg/comari_hp_arrow_right2.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 15px;
	width: 15px;
	height: 15px;
	right: 20px;
	position: absolute;
	top: 50%;
	z-index: 0;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.service_section_image {
	background-image: url(../images/comari_hp_pc_top_service_main_img.jpg);
	background-size: cover;
	width: 100%;
	height: 300px;
	margin-bottom: 40px;
}
.service_section_text {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 50px;
}
.service_section_text_left, .service_section_text_right {
	width: 47%;
}
.service_section_text_left {
	font-size: 30px;
}
.service_section_text_right_ja {
	font-size: 16px;
	margin-bottom: 30px;
}
.service_section_text_right_en {
	font-size: 14px;
	color: #adb2b4;
}
.service_section_content {
	margin-bottom: 70px;
}
.service_section_content_upper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}
.service_section_content_upper_image, .service_section_content_upper_text {
	width: 47%;
}
.service_section_content_upper_image {
	box-shadow: 20px 20px 40px 0px rgba(0, 0, 0, 0.1);
}
.service_section_content_upper_text_title {
	padding: 40px 0 20px;
	position: relative;
	margin-bottom: 30px;
}
.service_section_content_upper_text_title:before {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 160px;
	z-index: -1;
	color: #eef3f6;
	line-height: 120px;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
}
.service_section_01 .service_section_content_upper_text_title:before {
	content: "01";
}
.service_section_02 .service_section_content_upper_text_title:before {
	content: "02";
}
.service_section_03 .service_section_content_upper_text_title:before {
	content: "03";
}
.service_section_04 .service_section_content_upper_text_title:before {
	content: "04";
}
.service_section_content_upper_text_title_ja {
	font-size: 28px;
	margin-bottom: 10px;
}
.service_section_content_upper_text_title_en {
	font-size: 14px;
	color: #adb2b4;
}
.service_section_content_upper_text_comment {
	font-size: 16px;
	margin-bottom: 30px;
}
#service_section_03 .service_section_content_upper_text_comment {
	margin-bottom: 10px;
}
.service_section_content_lower {
	margin-bottom: 50px;
}
.service_section_content_lower_list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.service_section_content_lower_list2 {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}
.service_section_02 .service_section_content_lower_list {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.service_section_02 .service_section_content_lower_list2 {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}
.service_section_01 .service_section_content_lower_list_li {
	width: 22%;
}
.service_section_02 .service_section_content_lower_list_li {
	width: 31%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.service_section_02 .service_section_content_lower_list_li:nth-child(2),
.service_section_02 .service_section_content_lower_list_li:nth-child(5),
.service_section_02 .service_section_content_lower_list_li:nth-child(8) {
	width: 31%;
	margin: 0 3.5% 30px;
}
.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li {
	width: 50%;
}
.service_section_03 .service_section_content_lower_list_li {
	width: 22%;
}
.service_section_04 .service_section_content_lower_list_li {
	width: 22%;
}
.service_section_04 .service_section_content_lower_list {
	margin-bottom: 50px;
}
.service_section_04 .service_section_content_lower_list2_li {
	width: 48%;
}
.service_section_content_lower_list_li_image {
	margin-bottom: 10px;
}
.service_section_content_lower_list_li_title {
	margin-bottom: 10px;
	text-align: center;
}
.service_section_content_lower_list_li_title_ja {
	font-size: 24px;
}
.service_section_content_lower_list_li_title_en {
	font-size: 12px;
	color: #adb2b4;
}
.service_section_content_lower_list_li_keywords {
	display: flex; 
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.service_section_content_lower_list_li_keywords li {
	border: 1px solid #adb2b4;
	padding: 3px 5px;
	margin: 0 5px 10px;
	font-size: 14px;
}
.service_section_02 .service_section_content_lower_list_li_image {
	width: 36%;
}
.service_section_02 .service_section_content_lower_list_li_text {
	width: 60%;
}
.service_section_02 .service_section_content_lower_list_li_title {
	text-align: left;
	margin-bottom: 0;
}
.service_section_content_lower_list_li_title_detail_price {
	font-size: 16px;
	margin-bottom: 5px;
}
.service_section_content_lower_list_li_title_detail_price span {
	font-style: italic;
}
.service_section_content_lower_list_li_title_detail_price span b {
	font-size: 24px;
	font-weight: 400;
}
.service_section_content_lower_list_li_title_detail_comment {
	font-size: 14px;
}
.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li_title {
	text-align: center;
	margin-bottom: 10px;
}
.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li_text {
    width: 100%;
}
.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li_title_detail_comment {
    font-size: 16px;
}
.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li_title_detail_comment span {
    margin-top: 15px;
	display: block;
}
.service_section_03 .service_section_content_lower_list_li_title {
	margin-bottom: 0;
}
.service_section_03 .service_section_content_lower_list_li_title_detail_price {
	text-align: center;
}
.service_section_03 .service_section_content_lower_list_li_title_detail_comment span {
	display: block;
	margin-top: 15px;
}
.service_section_04 .service_section_content_lower_list_li_title_detail_price {
	text-align: center;
}
.service_section_04 .service_section_content_lower_list2 .service_section_content_lower_list_li_title {
	margin-bottom: 0;
}

.service_section_content_lower2 .service_section_content_lower_list_li_image {
	width: 76%;
	margin: 0 auto 10px;
}
.service_section_content_lower2 .service_section_content_lower_list_li_title_detail {
	text-align: center;
}
.service_section_content_lower2 .service_section_content_lower_list_li_title {
	margin-bottom: 0;
}

.footer_inner1 {
	background: url(../images/comari_hp_pc_top_contact_main_img.jpg) no-repeat;
	background-size: cover;
	padding: 24px 0;
	position: relative;
}
.footer_inner1_contact_wrap {
	max-width: 1186px;
	width: 90%;
	margin: 0 auto;
}
.footer_inner1_contact {
	width: 47%;
	min-width: 557px;
	margin: 0 0 0 auto;
	padding: 45px 0 75px;
	background: url(../images/svg/comari_symbolmark1.svg) no-repeat;
	background-size: contain;
	background-position: center center;
}
.footer_inner1_contact_title {
	font-size: 16px;
	text-align: center;
	border-bottom: 1px solid;
  	border-image: linear-gradient(to right, #e4bdda, #a5c4e3) 1;
	letter-spacing: 0.2em;
	padding-bottom: 10px;
	color: #565657;
	margin-bottom: 15px;
}
.footer_inner1_contact_detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer_inner1_contact_detail_phone {
	width: 89%;
}
.footer_inner1_contact_detail_phone_number {
	margin-bottom: 10px;
}
.footer_inner1_contact_detail_phone_number a {
	font-size: 48px;
	letter-spacing: 0.19em;
	text-decoration: none;
	padding-left: 40px;
	background: url(../images/svg/comari_hp_tel_icon1.svg) no-repeat;
	background-size: 26px;
	background-position: left 8px top 22px;
	color: #838688;
	line-height: 38px;
	filter: drop-shadow(2px 2px 0px rgba(255, 255, 255, 1));
}
.footer_inner1_contact_detail_phone_comment {
	background: linear-gradient(to right, #e4bdda, #a5c4e3);
	text-align: center;
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.21em;
	padding: 3px 0;
	width: 98%;
}
.footer_inner1_contact_detail_mail {
	width: 11%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-right: 7px;
}
.footer_inner1_contact_detail_mail a {
	height: 60px;
	width: 60px;
	background: linear-gradient(135deg, #a5c4e3, #e4bdda);
    position: relative;
    color: #fff;
    border-radius: 30px;
    z-index: 1;
	overflow: hidden;
	border: 2px solid #fff;
}
.footer_inner1_contact_detail_mail a:before {
    background: linear-gradient(135deg, #e4bdda, #a5c4e3);
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: .5s;
    z-index: -1;
}
.footer_inner1_contact_detail_mail a:after {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../images/svg/comari_hp_mail_icon2.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    transform: scale(1,1);
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
.footer_inner1_contact_detail_insta {
	width: 11%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.footer_inner1_contact_detail_insta a {
	height: 60px;
	width: 60px;
	background: linear-gradient(135deg, #a5c4e3, #e4bdda);
    position: relative;
    color: #fff;
    border-radius: 30px;
    z-index: 1;
	overflow: hidden;
	border: 2px solid #fff;
}
.footer_inner1_contact_detail_insta a:before {
    background: linear-gradient(135deg, #e4bdda, #a5c4e3);
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: .5s;
    z-index: -1;
}
.footer_inner1_contact_detail_insta a:after {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../images/svg/comari_hp_instagraml_icon.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    transform: scale(1,1);
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
.to_top {
	position: absolute;
	bottom: -30px;
	right: 4%;
	z-index: 1;
}
.to_top a {
	height: 60px;
	width: 60px;
    background: linear-gradient(135deg, #a5c4e3, #e4bdda);
    position: relative;
    color: #fff;
    border-radius: 30px;
    z-index: 1;
	overflow: hidden;
	border: 2px solid #fff;
	display: block;
}
.to_top a:before {
    background: linear-gradient(135deg, #e4bdda, #a5c4e3);
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: .5s;
    z-index: -1;
}
.to_top a:after {
    content: "";
    width: 18px;
    height: 12px;
    background-image: url(../images/svg/comari_hp_arrow.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    transform: scale(1,1);
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
.footer_inner2 {
	padding: 90px 0 22px
}
.footer_inner2_logo {
	width: 90%;
	margin: 0 auto;
	background-image: url(../images/svg/comari_hp_top_main_text.svg);
	background-position: right;
	background-size: 460px;
	height: 150px;
	margin-bottom: 30px;
}
.footer_inner2_nav {
	width: 92%;
	margin: 0 auto;
}
.footer_inner2_nav_list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.footer_inner2_nav_list li {
	margin-left: 18px;
}
.footer_inner2_nav_list li a {
	text-decoration: none;
	font-size: 14px;
	position: relative;
	padding-bottom: 6px;
	letter-spacing: 0.2em;
}
.footer_inner2_nav_list li a span {
	font-size: 10px;
	margin-left: 5px;
	color: #adb2b4;
	letter-spacing: 0.05em;
}
.footer_inner2_nav_list li a:after {
    content: '';
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #e4bdda, #a5c4e3);
    transition: all 0.5s;
    transform: scale(0,1);
    transform-origin: left;
}
.footer_inner3 {
	background: linear-gradient(to right, #e4bdda, #a5c4e3);
	padding: 20px 0;
}
.footer_inner3_info {
	width: 92%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.footer_inner3_info_detail {
	margin-right: 30px;
	text-align: right;
}
.footer_inner3_info_detail_1 {
	color: #fff;
	font-size: 14px;
}
.footer_inner3_info_detail_2 a {
	color: #fff;
	font-size: 16px;
	margin-left: 20px;
	text-decoration: none;
}
.footer_inner3_info_logo {
	width: 170px;
}
.footer_inner4 {
	padding: 5px 0 10px
}
.footer_inner4_copy {
	width: 92%;
	margin: 0 auto;
	text-align: right;
	color: #adb2b4;
	font-size: 10px;
}







/* 下層ページ */
.lower_page_main_visual {
	margin-top: 80px;
    position: relative;
}
.lower_page_main_visual_title {
	width: 50%;
	margin: 0 auto 0 20%;
}
.lower_page_main_visual_title_ja {
	font-size: 30px;
	letter-spacing: 0.4em;
	margin-bottom: 20px;
}
.lower_page_main_visual_title_en {
	font-size: 18px;
	color: #adb2b4;
}
.lower_page_main_visual_title {
	transition-delay: 1.5s;
}



/* 会社紹介ページ */
.company_page_main_visual {
	background-image: url(../images/comari_hp_pc_company_main_img.jpg);
	background-size: cover;
	background-position: center right;
	height: 300px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.company_outline_section_content {
	border-top: 1px solid #d3d9db;
	display: block;
}
.company_outline_section_content_dl {
	padding: 50px 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid #d3d9db;
}
.company_outline_section_content_dl_1line {
	padding: 50px 30px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	border-bottom: 1px solid #d3d9db;
}
.company_outline_section_content_dl_dt {
	width: 24%;
}
.company_outline_section_content_dl_dt_ja {
	font-size: 16px;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
}
.company_outline_section_content_dl_dt_ja100 {
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.company_outline_section_content_dl_dt_en {
	font-size: 14px;
	color: #adb2b4;
}
.company_outline_section_content_dl_dd {
	width: 76%;
}
.company_outline_section_content_dl_dd_ja {
	font-size: 16px;
	margin-bottom: 10px;
}
.company_outline_section_content_dl_dd_ja a {
	text-decoration: none;
}
.company_outline_section_content_dl_dd_ja small {
	font-size: 14px;
}
.company_outline_section_content_dl_dd_en {
	font-size: 14px;
	color: #adb2b4;
}
.company_outline_section_content_dl_dd_en a {
	color: #adb2b4;
	text-decoration: none;
}
.company_access_section .section_inner {
	width: 100%;
	min-width: 100%;
}
.company_access_section .section_title {
    margin: 0 auto 30px;
    width: 90%;
    max-width: 1186px;
}
.company_access_section .section_content {
    margin: 0 auto;
    width: 90%;
    max-width: 1186px;
}

.company_access_section_map {
	margin-bottom: 40px;
}
.company_access_section_map iframe {
	width: 100%;
	height: 400px;
	vertical-align: bottom;
}

.company_access_section_content {
	display: block;
}
.company_access_section_content_dl {
	padding: 20px 30px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}
.company_access_section_content_dl_dt {
	width: 24%;
}
.company_access_section_content_dl_dt_ja {
	font-size: 16px;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
}
.company_access_section_content_dl_dt_ja100 {
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.company_access_section_content_dl_dt_ja50 {
	font-size: 16px;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}
.company_access_section_content_dl_dt_en {
	font-size: 14px;
	color: #adb2b4;
}
.company_access_section_content_dl_dd {
	width: 76%;
}
.company_access_section_content_dl_dd_ja {
	font-size: 16px;
	margin-bottom: 10px;
}
.company_access_section_content_dl_dd_ja small {
	font-size: 14px;
}
.company_access_section_content_dl_dd_en {
	font-size: 14px;
	color: #adb2b4;
}




/* お問い合わせページ */
.contact_page_main_visual {
	background-image: url(../images/comari_hp_pc_contact_main_img.jpg);
	background-size: cover;
	background-position: center right;
	height: 300px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.contact_text_section .section_inner {
    margin: 0 auto;
    width: 84%;
    max-width: 1066px;
}
.section_text_comment_ja {
	font-size: 16px;
	margin-bottom: 24px;
}
.section_text_comment_en {
	font-size: 14px;
	color: #adb2b4;
}
.contact_form_section_content {
	border-top: 1px solid #d3d9db;
}
#mail_form {
	margin: 0 auto;
    width: 90%;
    max-width: 1066px;
}
#mail_form .contact_form_inner {
	padding: 40px 0;
}
#mail_form .contact_form_inner .contact_form_item {
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.contact_form_privacy {
	width: 100%;
	max-width: 1000px;
	margin: 50px auto;
}
.contact_form_privacy_title {
	text-align: center;
	font-size: 18px;
	margin-bottom: 30px;
}
.contact_form_privacy_title b {
	font-weight: normal;
}
.contact_form_privacy_text {
	border: 1px solid #d3d9db;
	padding: 30px;
	height: 400px;
	overflow-y: scroll;
}
.contact_form_privacy_text_box {
	margin-bottom: 50px;
	font-size: 16px;
}
.contact_form_privacy_text_box_title {
	font-weight: bold;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid #d3d9db;
}




/* フォームcss */
::placeholder {
    color: #d3d9db;
}
.contact_form_item input, .contact_form_item select, .contact_form_item textarea {
	background: #fff;
	border: 1px solid #d3d9db;
	border-radius: 0;
	padding: 12px 18px;
	width: 100%;
	min-height: 60px;
	line-height: 1.5;
	vertical-align: middle;
	outline: none;
	font-size: 1.8rem;
	-webkit-appearance: none;
	font-size: 16px;
}
.contact_form_item .each {
	margin-right: 20px;
}
.contact_form_item select {
	padding: 12px 50px 12px 18px;
	border-radius: 5px;
	background-image: url(../images/svg/comari_hp_arrow_down1.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: center right 20px;
}
.contact_form_item textarea {
	height: 250px;
}

.contact_form_item input[type="file"], .contact_form_item input[type="radio"], .contact_form_item input[type="checkbox"], .contact_form_item select[type="file"], .contact_form_item select[type="radio"], .contact_form_item select[type="checkbox"], .contact_form_item textarea[type="file"], .contact_form_item textarea[type="radio"], .contact_form_item textarea[type="checkbox"] {
	position: relative;
	top: -1px;
	padding: 0;
	width: inherit;
	margin-right: 5px;
}

.contact_form_item input[type="button"], .contact_form_item select[type="button"], .contact_form_item textarea[type="button"] {
	border: 2px solid #fff;
	background: #00752a;
	color: #fff;
	font-size: 2.6rem;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.contact_form_item dt {
	font-size: 16px;
	width: 25%;
}
.contact_form_item dt > span:last-child {
	font-size: 14px;
	font-family: "Shippori Mincho", serif;
	color: #adb2b4;
}
.contact_form_item dt span span {
	font-size: 14px;
	font-family: "Shippori Mincho", serif;
	color: #565657;
}
.contact_form_item dd {
	width: 75%;
	position: relative;
}
.contact_form_item label {
	width: 100%;
}
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.row.jc_sb {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.row.jc_c {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.row.jc_fe {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: center;
}

.row.ai_c {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.row.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
input.half, select.half, textarea.half {
	width: 49%;
}
.error_blank {
	color: #cb0010;
	width: 100%;
	font-size: 14px;
}
#contact_form_agreement {
	margin-bottom: 40px;
}
#contact_form_agreement .error_check {
    display: none;
    color: #cb0010;
    text-align: center;
}
#contact_form_agreement .agree_check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 40px auto 0;
    width: 300px;
    height: 60px;
    font-size: 1.8rem;
    text-align: center;
}
.agree_check .checkbox01 {
	font-size: 16px;
}
.agree_check .checkbox01 span {
	font-size: 14px;
	font-family: "Shippori Mincho", serif;
	color: #adb2b4;
	width: 100%;
	text-align: left;
}
.agree_check input[type=checkbox] {
    display: none;
}
.agree_check label {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-left: 56px;
    width: auto;
}
.agree_check .checkbox01:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
	bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
	border-radius: 50%;
}
.agree_check input[type=checkbox]:checked+.checkbox01:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 12px;
    margin: auto 0;
    width: 15px;
    height: 15px;
	border-radius: 50%;
    background: #565657;
}
#form_submit {
	display: flex;
	justify-content: center;
	align-items: center;
}
#form_submit button {
    background: linear-gradient(to right, #a5c4e3, #e4bdda);
    color: #fff;
    height: 80px;
    border-radius: 40px;
    border: 2px solid #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    width: 100%;
    max-width: 280px;
    margin: 0 20px;
    padding: 0 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#form_submit button:before {
    background: linear-gradient(to right, #e4bdda, #a5c4e3);
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: .5s;
    z-index: -1;
}
#form_submit button:after {
    content: "";
    background-image: url(../images/svg/comari_hp_arrow_right2.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 15px;
    width: 15px;
    height: 15px;
    right: 20px;
    position: absolute;
    top: 50%;
    z-index: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.select {
	position: relative;
	width: 100%;
	height: 60px;
	cursor: pointer;
	background-color: white;
	box-shadow: 0 2px 0 white;
	border-radius: 2px;
}

.select_expand {
    width: 0!important;
    height: 0;
    position: absolute!important;
    top: 0;
    right: 0;
    z-index: 0;
    border: none!important;
}

.select_expand::after {
	content: '';
	background-image: url(../images/svg/comari_hp_arrow_down1.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: center;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 40%;
	right: 15px;
	z-index: 11;
}

.select_expand:hover::after {
	opacity: 1
}

.select_expand:checked::after {
	transform: translate(0%, 0%) rotate(180deg) scaleX(-1) scaleY(1);
}

.select_expandLabel {
	display: block;
	width: 100%;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	border-radius: 5px;
}

.select_close {
	display: none
}

.select_closeLabel {
	width: 100%;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

.select_items {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #d3d9db;
	border-radius: 5px;
	padding-top: 60px;
	z-index: 10;
}

.select_input {
	display: none
}

.select_label {
	transition: all 250ms cubic-bezier(.4,.25,.3,1);
	display: block;
	height: 0;
	font-size: 16px;
	line-height: 60px;
	overflow: hidden;
	color: #3e3e3e;
	background-color: #fff;
	cursor: pointer;
	padding-left: 20px;
	border-radius: 5px;
}

.select_label-placeholder {
	height: 60px;
	vertical-align: middle;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .6;
	background-color: transparent;
}

.select_expand:checked + .select_closeLabel {
	display: block;
}

.select_expand:checked + .select_closeLabel + .select_options .select_label {
	height: 60px;
}

.select_expand:checked + .select_closeLabel + .select_options .select_label:hover {
	background-color: #f7f7f7
}

.select_expand:checked + .select_closeLabel + .select_options + .select_expandLabel {
	display: none
}

.select_input:checked + .select_label {
	height: 50px;
	margin-top: -50px;
}
.select_label span {
	font-size: 14px;
	font-family: "Shippori Mincho", serif;
	color: #adb2b4;
}
.select_option .select_label {
	line-height: 20px;
}

.style_check .each {
	margin-bottom: 10px;
}
.style_check label span {
	font-size: 14px;
	color: #adb2b4;
	margin-left: 10px;
}
.checkbox01 {
    display: block;
    position: relative;
    padding-left: 41px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
	font-size: 16px;
}
.checkbox01::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    width: 30px;
    height: 30px;
    border: 1px solid #d3d9db;
    background: #fff;
}
.checkbox01::after {
    content: '';
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto 0;
    width: 10px;
    height: 10px;
    background: #565657;
}
input[type=checkbox] {
    display: none;
}
input[type=checkbox]:checked+.checkbox01::after {
    opacity: 1;
}

.radio01 {
    display: block;
    position: relative;
    padding-left: 41px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
	font-size: 16px;
}
.radio01 a {
	color: #86b3e1;
}
.radio01::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    width: 30px;
    height: 30px;
    border: 1px solid #d3d9db;
    background: #fff;
}
.radio01::after {
    content: '';
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto 0;
    width: 10px;
    height: 10px;
    background: #565657;
}
/* input[type=radio] {
    display: none;
} */
input[type=radio]:checked+.radio01::after {
    opacity: 1;
}

.contact_form_item .ion-calendar {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 2rem;
    line-height: 29px;
}

.number_of_people_box.row {
	flex-wrap: nowrap;
	font-size: 16px;
}
.number_of_people_box .each input {
	width: 5em;
}




/* サンクスページ */
.thanks_text_section {
	margin-bottom: 200px;
}
.thanks_text_section_title {
	margin-bottom: 40px;
	text-align: center;
}
.thanks_text_section_title_ja {
	font-size: 28px;
}
.thanks_text_section_title_en {
	font-size: 14px;
	color: #adb2b4;
}


/*トップページ下部固定バナー*/
.fixed_bn {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 33%;
	z-index: 10;
}
	


@media screen and (min-width: 1187px) {
    .header_nav .h_mainNav_list .item:hover > a:after {
        transform: scale(1,1);
    }
    .header_nav .h_mainNav_list .item.item_contact a:hover:after {
        transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
    }
	.header_nav .h_mainNav_list .item.item_contact a:hover:before {
		opacity: 0;
	}
	.link_btn_a:hover:before {
		opacity: 0;
	}
	.footer_inner1_contact_detail_mail a:hover:before {
		opacity: 0;
	}
	.footer_inner2_nav_list li a:hover:after {
		transform: scale(1,1);
    }
	.to_top a:hover:before {
		opacity: 0;
	}
	.child_link:hover .item_child_list_li_image:before {
		border: 4px solid transparent;
		background: linear-gradient(135deg,#e4bdda 0%,#a5c4e3 100%) border-box border-box;
		-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
		-webkit-mask-composite: destination-out;
		mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
		mask-composite: exclude;
	}
	#form_submit button:hover:before {
		opacity: 0;
	}
}








@media only screen and (max-width: 1186px) {
	.contact_btn {
		display: block;
		position: absolute;
		top: 10px;
		right: 70px;
		z-index: 4;
		width: 40px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		background: transparent;
		border-radius: 50%;
		background: linear-gradient(to right, #e4bdda, #a5c4e3);
	}
	.contact_btn a {
		width: 100%;
		height: 100%;
		display: block;
	}
	.contact_btn:after {
		position: absolute;
		top: 14px;
		left: 11px;
		content: "";
		width: 17px;
		height: 12px;
		background-image: url(../images/svg/comari_hp_mail_icon2.svg);
		background-repeat: no-repeat;
		background-size: 17px;
		z-index: -1;
	}
	.nav_menu_btn {
		display: block;
		position: absolute;
		top: 10px;
		right: 15px;
		z-index: 4;
		width: 40px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		background: transparent;
		border: 1px solid #d3d9db;
        border-radius: 50%;
	}
	.nav_menu_btn span:nth-of-type(1) {
		top: 15px;
		width: 14px;
	}
	.nav_menu_btn span:nth-of-type(2) {
		top: 22px;
		width: 14px;
	}
	.nav_menu_btn.active span:nth-of-type(1) {
		top: 13px;
		left: 12px;
		transform: translateY(6px) rotate(-45deg);
		width: 14px;
	}
	.nav_menu_btn.active span:nth-of-type(2) {
		top: 25px;
		left: 12px;
		transform: translateY(-6px) rotate(45deg);
		width: 14px;
	}
	.nav_menu_btn span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 12px;
		height: 1px;
		background-color: #adb2b4;
	}
	.nav_menu_btn span {
		height: 1px;
	}
	.header {
        min-width: auto;
		height: 60px;
    	background-size: 115%;
		box-shadow: rgb(0 0 0 / 5%) 0px 5px 10px;
	}
    .header_bottom {
        position: absolute;
        top: 60px;
        left: 0;
        width: 110px;
        height: 110px ;
        background: url(../images/soh_lp_header_back.svg) no-repeat;
        background-size: 100%;
    }
	.header:before {
		height: 8rem;
		z-index: 2
	}
	.header_logo {
		height: 60px;
	}
	.header_logo a {
		left: 2rem;
		width: 120px;
		height: 60px;
	}
	.header_nav {
		right: 0;
		display: block;
		width: 100%;
		height: 100%;
		overflow: hidden;
		/* visibility: hidden; */
		overflow: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		background: #ffffff;
		position: fixed;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		z-index: 10;
	}
	.header_nav.active {
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}
	.header_navInner {
		position: static;
		height: auto;
		/* transform: translateY(-50%) translateX(0%);
		-webkit-transform: translateY(-50%) translateX(0%); */
		margin: 60px auto;
		width: 100%;
        min-width: auto;
	}
    .header_nav .h_mainNav_list .item {
        padding: 0;
		border-bottom: 3px solid;
		border-image: linear-gradient(to right, #a5c4e3, #e4bdda) 1;
    }
	.header_nav .h_mainNav_list .item > a {
		display: block;
		margin-left: 0;
		font-size: 15px;
		font-family: 'Noto Sans JP', sans-serif;
		line-height: 60px;
		padding: 0;
		margin: 0;
		font-weight: bold;
		letter-spacing: 0.2em;
		height: 60px;
		text-align: left;
		padding-left: 30px;
	}
	.header_nav .h_mainNav_list .item.item_contact a {
		display: block;
		margin-left: 0;
		font-size: 15px;
		font-family: 'Noto Sans JP', sans-serif;
		line-height: 60px;
		padding: 0;
		margin: 0;
		font-weight: bold;
		letter-spacing: 0.2em;
		height: 60px;
		text-align: left;
		padding-left: 30px;
	}
	/* .header_nav .h_mainNav_list .item > a:after {
		transform: scale(1,1);
		height: 1.5px;
		bottom: 5px;
	} */
	.header_nav .h_mainNav_list {
		display: flex;
		/* flex-flow: column wrap; */
		flex-wrap: wrap;
		/* max-height: 450px; */
	}
	.header_nav .h_mainNav_list .item {
		width: 100%;
        text-align: center;
	}
	.header_nav .h_mainNav_list .item_btn {
		width: 100%;
	}
	.header_nav .h_mainNav_list .item > a span.item_sub_name {
		margin-left: 14px;
		font-size: 13px;
	}
	.header_nav .h_mainNav_list .item.item_contact a {
		background: transparent;
		color: #565657;
	}
	.header_nav .h_mainNav_list .item.item_contact a span.item_sub_name {
		color: #adb2b4;
	}
	.header_nav .h_mainNav_list .item.item_contact a:before {
		background: transparent;
	}
	.header_nav .h_mainNav_list .item.item_contact a:after {
		content: none;
	}
	.item_service > a:before {
		right: 30px;
		left: auto;
	}
	.item_service.selected > a:before {
		content: "";
		transform: scale(1,1);
		transform: translateY(-50%) rotate(180deg);
		-webkit-transform: translateY(-50%) rotate(180deg);
		position: absolute;
		top: 50%;
		right: 30px;
		left: auto;
	}
	.item_child_list_wrap {
		position: static;
		margin-top: 5px;
	}
	.item_child_list {
		height: auto;
		flex-wrap: wrap;
	}
	.item_child_list_li {
		width: calc( 100% / 1 );
		margin: 0 30px 15px;
		max-width: 100%;
	}
	.item_child_list_li_image {
		width: 50px;
	}
	.item_child_list_li_text {
		width: 82%;
		text-align: left;
	}
	.item_child_list_li_text_ja {
		font-size: 12px;
		margin-bottom: 5px;
	}
	.child_link .item_child_list_li_image:before {
		border: 2.5px solid transparent;
		background: linear-gradient(135deg,#e4bdda 0%,#a5c4e3 100%) border-box border-box;
		-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
		-webkit-mask-composite: destination-out;
		mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
		mask-composite: exclude;
	}
	.item_child_list_li_number {
		font-size: 55px;
		right: 20px;
		height: 75px;
		line-height: 64px;
	}
	.service_section_content_lower_list {
		justify-content: center;
	}
	.service_section_01 .service_section_content_lower_list_li {
		width: 40%;
		margin: 0 3% 20px;
	}
	.service_section_02 .service_section_content_lower_list {
		justify-content: center;
	}
	.service_section_02 .service_section_content_lower_list_li {
		width: 41%;
	}
	.service_section_02 .service_section_content_lower_list_li:nth-child(2), .service_section_02 .service_section_content_lower_list_li:nth-child(5), .service_section_02 .service_section_content_lower_list_li:nth-child(8) {
		width: 41%;
		margin: 0 0 30px;
	}
	.service_section_02 .service_section_content_lower_list2 {
		justify-content: center;
	}
	.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li_text {
		margin: 0 2% 0px;
	}
	.service_section_03 .service_section_content_lower_list_li {
		width: 40%;
		margin: 0 3% 20px;
	}

	.service_section_01 .service_section_content_lower2 .service_section_content_lower_list_li {
		margin: 0 auto 30px;
	}


}

@media only screen and (max-width: 767px) {
	body * {
		line-height: 1.76em;
	}

	#splash_logo {
		display: none;
		width: 37.3%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
	}

	.main_visual {
		height: calc( 100vh - 60px );
		margin-top: 60px;
	}
	.main_visual_image1 {
		position: absolute;
		width: 52%;
		left: 0;
		top: 0;
		z-index: 2;
		transition-delay: 1s;
	}
	.main_visual_image2 {
		position: absolute;
		width: 66%;
		right: 0;
		top: 20vw;
		z-index: 1;
		transition-delay: 1.3s;
	}
	.main_visual_image3 {
		position: absolute;
		width: 40.8%;
		right: 43%;
		top: 47vw;
		z-index: 3;
		transition-delay: 1.6s;
	}
	.main_visual_image4 {
		position: absolute;
		width: 26%;
		right: 2%;
		top: 2vw;
		z-index: 2;
		transition-delay: 1.9s;
	}
	.main_visual_text_wrap {
		position: absolute;
		width: 84%;
		left: 8%;
		top: 84vw;
		z-index: 3;
	}
	.main_visual_text1 {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		flex-wrap: wrap;
		width: 100%;
		margin-bottom: 12px;
	}
	.main_visual_text1_title {
		width: 100%;
		margin-bottom: 5px;
	}
	.main_visual_text1_list {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
	.main_visual_text1_list_li {
		font-size: 13px;
		letter-spacing: 0.1em;
		padding-left: 26px;
		background: url(../images/svg/comari_hp_check_icon.svg) no-repeat;
		background-size: 15px;
		background-position: left center;
		margin-top: 7px;
		width: 50%;
	}
	.main_visual_text_line {
		margin-bottom: 11px;
	}
	.main_visual_text2_en {
		letter-spacing: -0.01em;
		font-size: 10px;
	}
	.main_visual_text2_en1 {
		font-size: 10px;
		margin-bottom: 2px;
	}
	.main_visual_text2_en2 {
		font-size: 9px;
	}
	.section {
		padding: 40px 0;
	}
	.section_inner {
		width: 84%;
	}
	.section_content {
		flex-wrap: wrap;
	}
	.section_title {
		margin-bottom: 20px;
	}
	.section_title_name {
		font-size: 16px;
	}
	.section_title_en {
		font-size: 12px;
	}
	.about_section {
		margin-bottom: 50px;
	}
	.about_section_left {
		width: 100%;
	}
	.about_section_right {
		width: 100%;
	}
	.about_section_right_title {
		font-size: 20px;
		margin-bottom: 20px;
		letter-spacing: 0.05em;
	}
	.about_section_right_comment_ja {
		font-size: 13px;
		margin-bottom: 20px;
	}
	.about_section_right_comment_en {
		font-size: 12px;
		margin-bottom: 50px;
	}
	.link_btn_a {
		height: 50px;
		border-radius: 25px;
		border: 1.5px solid #fff;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		text-decoration: none;
		width: 100%;
		max-width: 240px;
		padding: 0 25px;
	}
	.link_btn_a_ja {
		font-size: 15px;
	}
	.link_btn_a_en {
		font-size: 12px;
		margin-left: 12px;
		margin-top: 3px;
	}

	.service_section_content {
		margin-bottom: 50px;
	}
	.service_section_image {
		background-image: url(../images/comari_hp_sp_top_service_main_img.jpg);
		background-size: cover;
		width: 100%;
		height: 225px;
		margin-bottom: 25px;
	}
	.service_section_text_left, .service_section_text_right {
		width: 100%;
	}
	.service_section_text_left {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.service_section_text_right_ja {
		font-size: 13px;
		margin-bottom: 20px;
	}
	.service_section_text_right_en {
		font-size: 12px;
	}
	.service_section_content_upper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		margin-bottom: 40px;
	}
	.service_section_content_upper_image, .service_section_content_upper_text {
		width: 100%;
	}
	.service_section_content_upper_image {
		box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
	}
	.service_section_content_upper_text_title {
		padding: 25px 0 15px;
		position: relative;
		margin-bottom: 7px;
	}
	.service_section_content_upper_text_title_ja {
		font-size: 19px;
		margin-bottom: 7px;
	}
	.service_section_content_upper_text_title_en {
		font-size: 11px;
	}
	.service_section_content_upper_text_title:before {
		font-size: 140px;
		line-height: 100px;
		top: 25px;
	}
	.service_section_content_upper_text_comment {
		font-size: 13px;
		margin-bottom: 20px;
	}
	.service_section_01 .service_section_content_lower_list_li {
		width: 71%;
		margin: 0 auto 20px;
	}
	.service_section_01 .service_section_content_lower_list_li:last-child {
		margin: 0 auto 0;
	}
	.service_section_content_lower_list_li_image {
		margin-bottom: 7px;
	}
	.service_section_content_lower_list_li_title_ja {
		font-size: 18px;
	}
	.service_section_content_lower_list_li_title_ja .gradation2 {
		line-height: 1.27em;
	}
	.service_section_content_lower_list_li_title_en {
		font-size: 11px;
	}
	.service_section_content_lower_list_li_keywords li {
		border: 0.7px solid #adb2b4;
		padding: 2px 4px;
		margin: 0 5px 10px;
		font-size: 12px;
	}
	.service_section_02 .service_section_content_upper_image {
		order: 0;
	}
	.service_section_02 .service_section_content_upper_text {
		order: 1;
	}
	.service_section_02 .service_section_content_lower_list_li {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		margin-bottom: 24px;
	}
	.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li {
		width: 100%;
	}
	.service_section_02 .service_section_content_lower_list_li:last-child {
		margin-bottom: 10px;
	}
	.service_section_02 .service_section_content_lower_list_li:nth-child(2), .service_section_02 .service_section_content_lower_list_li:nth-child(5), .service_section_02 .service_section_content_lower_list_li:nth-child(8) {
		width: 100%;
		margin: 0 0 30px;
	}
	.service_section_02 .service_section_content_lower_list_li_image {
		width: 37%;
		margin-bottom: 0;
	}
	.service_section_content_lower_list_li_title_detail_price {
		font-size: 13px;
		margin-bottom: 3px;
	}
	.service_section_content_lower_list_li_title_detail_price span b {
		font-size: 20px;
	}
	.service_section_content_lower_list_li_title_detail_comment {
		font-size: 12px;
	}
	.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li_title {
		margin-bottom: 6px;
	}
	.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li_title_detail_comment {
		font-size: 13px;
	}
	.service_section_02 .service_section_content_lower_list2 .service_section_content_lower_list_li_title_detail_comment span {
		margin-top: 8px;
	}
	.service_section_03 .service_section_content_lower_list_li {
		width: 71%;
		margin: 0 auto 30px;
	}
	.service_section_03 .service_section_content_lower_list_li_title_detail_comment span {
		display: block;
		margin-top: 8px;
	}
	.service_section_04 .service_section_content_upper_image {
		order: 0;
	}
	.service_section_04 .service_section_content_upper_text {
		order: 1;
	}
	.service_section_04 .service_section_content_lower_list {
		margin-bottom: 20px;
	}
	.service_section_04 .service_section_content_lower_list_li {
		width: 71%;
		margin: 0 auto 30px;
	}
	.service_section_04 .service_section_content_lower_list2_li {
		width: 100%;
	}
	.service_section_04 .service_section_content_lower_list_li_title {
		margin-bottom: 7px;
	}

	.footer_inner1 {
		background: url(../images/comari_hp_sp_top_contact_main_img.jpg) no-repeat;
		background-size: cover;
		padding: 24px 0;
		position: relative;
	}
	.footer_inner1_contact_wrap {
		width: 100%;
		margin: 0 auto;
	}
	.footer_inner1_contact {
		width: 84%;
		min-width: auto;
		margin: 0 auto;
		padding: 30px 0 30px;
		background: url(../images/svg/comari_symbolmark1.svg) no-repeat;
		background-size: contain;
		background-position: center center;
	}
	.footer_inner1_contact_title {
		font-size: 11px;
		border-bottom: 0.7px solid;
		border-image: linear-gradient(to right, #e4bdda, #a5c4e3) 1;
		letter-spacing: 0.02em;
		padding-bottom: 6px;
		margin-bottom: 8px;
	}
	.footer_inner1_contact_detail_phone_number a {
		font-size: 6.9vw;
		letter-spacing: 0.2em;
		padding-left: 26px;
		background: url(../images/svg/comari_hp_tel_icon1.svg) no-repeat;
		background-size: 16px;
		background-position: left 5px top 11px;
		color: #838688;
		line-height: 27px;
	}
	.footer_inner1_contact_detail_phone_comment {
		font-size: 2.3vw;
		letter-spacing: 0.02em;
		padding: 3px 0;
		line-height: 1.2em;
		width: 99%;
	}
	.footer_inner1_contact_detail_mail {
		width: 14%;
		margin-right: 0px;
	}
	.footer_inner1_contact_detail_mail a {
		height: 38px;
		width: 38px;
		background: linear-gradient(to right, #a5c4e3, #e4bdda);
		position: relative;
		color: #fff;
		border-radius: 22px;
		z-index: 1;
		overflow: hidden;
		border: 1.5px solid #fff;
	}
	.footer_inner1_contact_detail_mail a:after {
		content: "";
		width: 17px;
		height: 17px;
		background-image: url(../images/svg/comari_hp_mail_icon2.svg);
		background-repeat: no-repeat;
		background-position: left center;
		background-size: 17px;
		position: absolute;
	}
	.footer_inner1_contact_detail_insta {
		width: 14%;
	}
	.footer_inner1_contact_detail_insta a {
		height: 38px;
		width: 38px;
		background: linear-gradient(to right, #a5c4e3, #e4bdda);
		position: relative;
		color: #fff;
		border-radius: 22px;
		z-index: 1;
		overflow: hidden;
		border: 1.5px solid #fff;
	}
	.footer_inner1_contact_detail_insta a:after {
		content: "";
		width: 17px;
		height: 17px;
		background-image: url(../images/svg/comari_hp_instagraml_icon.svg);
		background-repeat: no-repeat;
		background-position: left center;
		background-size: 17px;
		position: absolute;
	}
	.to_top {
		position: absolute;
		bottom: -20px;
		right: 4%;
		z-index: 1;
	}
	.to_top a {
		height: 40px;
		width: 40px;
		background: linear-gradient(to right, #a5c4e3, #e4bdda);
		position: relative;
		color: #fff;
		border-radius: 30px;
		z-index: 1;
		overflow: hidden;
		border: 1.5px solid #fff;
		display: block;
	}
	.to_top a:after {
		content: "";
		width: 12px;
		height: 8px;
		background-image: url(../images/svg/comari_hp_arrow.svg);
		background-repeat: no-repeat;
		background-position: left center;
		background-size: 12px;
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 0;
		transform: scale(1,1);
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
	}
	.footer_inner2_logo {
		width: 84%;
		margin: 0 auto;
		background-size: 100%;
		height: 27vw;
		margin-bottom: 30px;
	}
	.footer_inner2_nav_list {
		flex-wrap: wrap;
	}
	.footer_inner2_nav_list li {
		margin-bottom: 6px;
	}
	.footer_inner2_nav_list li a {
		font-size: 12px;
		padding-bottom: 6px;
	}
	.footer_inner2_nav_list li a span {
		font-size: 9px;
		margin-left: 3px;
	}
	.footer_inner3_info {
		flex-wrap: wrap;
	}
	.footer_inner3_info_logo {
		order: 0;
		width: 33%;
		margin-bottom: 10px;
	}
	.footer_inner3_info_detail {
		order: 1;
		margin-right: 0;
	}
	.footer_inner3_info_detail_1 {
		font-size: 11px;
	}
	.footer_inner3_info_detail_2 a {
		font-size: 13px;
	}
	.footer_inner4 {
		padding: 5px 0 15px;
	}



	/* 下層ページ */
	.lower_page_main_visual {
		margin-top: 60px
	}
	.lower_page_main_visual_title {
		width: 100%;
		margin: 0 auto 0 8%;
	}
	.lower_page_main_visual_title_ja {
		font-size: 20px;
		letter-spacing: 0.2em;
		margin-bottom: 15px;
	}
	.lower_page_main_visual_title_en {
		font-size: 14px;
	}



	/* 会社概要ページ */
	.company_page_main_visual {
		background-image: url(../images/comari_hp_sp_company_main_img.jpg);
		background-size: cover;
		background-position: center right;
		height: 225px;
	}
	.company_outline_section_content_dl {
		padding: 35px 0;
		flex-wrap: wrap;
	}
	.company_outline_section_content_dl_dt {
		width: 100%;
		display: flex;
		justify-self: flex-start;
		align-items: center;
		margin-bottom: 15px;
	}
	.company_outline_section_content_dl_dt_ja {
		font-size: 13px;
		margin-bottom: 0;
		margin-right: 7px;
	}
	.company_outline_section_content_dl_dt_ja100 {
		font-size: 13px;
		margin-bottom: 0;
		margin-right: 7px;
	}
	.company_outline_section_content_dl_dd_ja small {
		font-size: 12px;
	}
	.company_outline_section_content_dl_dt_en {
		font-size: 12px;
	}
	.company_outline_section_content_dl_dd {
		width: 100%;
	}
	.company_outline_section_content_dl_dd_ja {
		font-size: 13px;
		margin-bottom: 5px;
	}
	.company_outline_section_content_dl_dt_ja100 {
		font-size: 13px;
		letter-spacing: 0.1em;
		margin-bottom: 0;
	}
	.company_outline_section_content_dl_dd_en {
		font-size: 12px;
	}
	.company_access_section .section_title {
		margin: 0 auto 20px;
		width: 84%;
	}
	.company_access_section .section_content {
		width: 84%;
	}
	.company_access_section_content_dl {
		padding: 20px 0;
		flex-wrap: wrap;
	}
	.company_access_section_content_dl_dt {
		width: 100%;
		display: flex;
		justify-self: flex-start;
		align-items: center;
		margin-bottom: 15px;
	}
	.company_access_section_content_dl_dt_ja {
		font-size: 13px;
		margin-bottom: 0;
		margin-right: 7px;
	}
	.company_access_section_content_dl_dt_ja50 {
		font-size: 13px;
		letter-spacing: 0.05em;
		margin-bottom: 0;
		margin-right: 7px;
	}
	.company_access_section_content_dl_dt_en {
		font-size: 12px;
	}
	.company_access_section_content_dl_dd {
		width: 100%;
	}
	.company_access_section_content_dl_dd_ja {
		font-size: 13px;
		margin-bottom: 5px;
	}
	.company_access_section_content_dl_dd_en {
		font-size: 12px;
	}
	.company_access_section_map iframe {
		height: 73vw;
	}


	/* お問い合わせページ */
	.contact_page_main_visual {
		background-image: url(../images/comari_hp_sp_contact_main_img.jpg);
		background-size: cover;
		background-position: center right;
		height: 225px;
	}
	.contact_text_section {
		padding: 80px 0 40px;
	}
	.section_text_comment_ja {
		font-size: 12px;
		margin-bottom: 20px;
	}
	.section_text_comment_en {
		font-size: 12px;
	}
	#contact_form {
		margin-bottom: 40px;
	}
	#mail_form {
		width: 100%;
	}
	#mail_form .contact_form_inner {
		padding: 20px 0;
	}
	#mail_form .contact_form_inner .contact_form_item {
		flex-wrap: wrap;
	}
	.contact_form_item dt {
		font-size: 13px;
		width: 100%;
		margin-bottom: 20px;
	}
	.contact_form_item dt br {
		display: none;
	}
	.contact_form_item dt br.pc_hidden {
		display: inline;
	}
	.contact_form_item dt span:last-child {
		margin-left: 8px;
		font-size: 12px;
	}
	.contact_form_item dd {
		font-size: 13px;
		width: 100%;
	}
	input.half, select.half, textarea.half {
		width: 100%;
		margin-bottom: 20px;
	}
	input.half:nth-child(2) {
		margin-bottom: 0;
	}
	.contact_form_privacy {
		margin: 30px auto;
	}
	.contact_form_privacy_title {
		text-align: center;
		font-size: 14px;
		margin-bottom: 30px;
	}
	.contact_form_privacy_title b {
		font-weight: bold;
	}
	.contact_form_privacy_text_box {
		margin-bottom: 50px;
		font-size: 13px;
	}
	.agree_check .checkbox01 {
		font-size: 13px;
	}
	.agree_check .checkbox01 span {
		font-size: 12px;
	}
	.error_blank {
		font-size: 12px;
	}
	#contact_form_agreement .error_check {
		font-size: 12px;
	}
	#contact_form_agreement .agree_check {
		width: 63vw;
	}
	#form_submit {
		flex-wrap: wrap;
	}
	#form_submit button {
		height: 60px;
	}
	button#form_submit_button {
		margin-bottom: 20px;
	}
	.contact_form_item textarea {
		height: 200px;
	}


	.contact_form_item input, .contact_form_item select, .contact_form_item textarea {
		font-size: 13px;
		min-height: 50px;
	}
	.row.jc_sb_sp {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.row.jc_c_sp {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.row.jc_fe_sp {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.row.ai_c_sp {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.row.ai_fe_sp {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.row.fd_c_sp {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.select_items {
		padding-top: 50px;
	}
	.select_expandLabel {
		height: 50px;
	}
	.select_label-placeholder {
		height: 50px;
	}
	.select_label {
		line-height: 50px;
		font-size: 13px
	}
	.select_input:checked + .select_label {
		height: 45px;
		margin-top: -45px;
	}
	.select_label span {
		font-size: 12px;
	}
	.select_closeLabel {
		height: 40px;
	}
	.number_of_people_box.row {
        flex-wrap: wrap;
        font-size: 3.5vw;
    }
	.contact_form_item .each {
		margin-bottom: 10px;
        width: 50%;
        margin-right: 0;
	}
	.contact_form_item dt span span {
		font-size: 12px;
	}
	.number_of_people_box.row {
		flex-wrap: wrap;
		font-size: 3.5vw;
	}
	.number_of_people_box .each input {
		width: 4em;
		padding: 12px 10px;
	}
	.number_of_people_box .each label {
		width: 4em;
	}
	.number_of_people_box .each label .pc-hidden {
		display: inline !important;
	}
	.style_check .each {
		width: 100%;
	}
	.style_check label span {
		font-size: 12px;
		margin-left: 5px;
	}
	.checkbox01 {
		display: block;
		position: relative;
		padding-left: 41px;
		height: 30px;
		line-height: 30px;
		cursor: pointer;
		font-size: 13px;
	}


	/* サンクスページ */
	.thanks_text_section_title_ja {
		font-size: 20px;
	}
	.thanks_text_section_title_en {
		font-size: 11px;
		color: #adb2b4;
	}


	/*トップページ下部固定バナー*/
	.fixed_bn {
		position: fixed;
		bottom: 0;
		right: 0;
		width: 100%;
		z-index: 10;
	}

}

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

}









