@charset "UTF-8";

/* CSS Document */
/*===============================================
●style.css
===============================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
:root {
	--color_main: #0085d0;
	--color_main_rgb: 0, 133, 208;
	--color_accent: #E74382;
	--color_accent_rgb: 0, 131, 45;
	--radius: clamp(5px, 1vw, 10px);
	--gap: clamp(20px, 3vw, 50px);
	--gap_s: clamp(10px, 2vw, 25px);
}
img {
	width /***/: auto;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
.gm-style img {/* googlemap api表示対応 */
	max-width: inherit;
	height: inherit;
	max-height: inherit;
	width /***/: inherit;
}
.container {
	max-width: 100%;
}
.text_center {
	text-align: center;
}

.ptn_check {
	background:
		linear-gradient(45deg, rgb(255 255 255 / 25%)  25%, transparent 25%, transparent 75%, rgb(255 255 255 / 25%)  75%),
		linear-gradient(45deg, rgb(255 255 255 / 25%)  25%, transparent 25%, transparent 75%, rgb(255 255 255 / 25%)  75%);
	background-size: 40px 40px;
	background-position: 0 0, 20px 20px;
}

.ptn_stripe {
	background-size: auto auto;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 15px, rgba(255, 255, 255, 0.3) 10px, rgba(255, 255, 255, 0.5) 19px );
}
.ptn_dot {
	background-image :
		radial-gradient(rgba(174, 220, 219, 0.25) 16%, transparent 19%),
		radial-gradient(rgba(174, 220, 219, 0.25) 16%, transparent 19%);
	background-position: 0 0, 20px 20px;
	background-size : 40px 40px;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: reset */
body,div,dl,dt,dd, li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote {
	margin: 0;
	padding: 0;
}

header,nav,section,aside,footer {
	display: block;
}

table {
	border-spacing: 0;
}

fieldset,img,a img,abbr,acronym {
	border: 0;
}

li img,dt img {
	vertical-align: top;
}

address,caption,cite,code,dfn,th,var {
	font-style: normal;
	font-weight: normal;
}

caption,th {
	text-align: left;
}

q:before,q:after {
	content: '';
}

a {
	outline: none;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: base */

html {
	font-size: 64.5%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Open Sans', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",Meiryo, sans-serif;
	line-height: 1.5;
	color: #865d31;
	background-color: #ffffff;
	-webkit-text-size-adjust: 100%;
	font-size: 1.4em;
	height: 100%;
	margin: 0;
	padding: 0;
}

h1,h3,h4,h5,h6 {
	font-weight: normal;
}
.h2_normal {
	padding: 2em 1em;
	text-align: center;
	color: #E9608D;
}
h3 {
	color: #E9608D;
	font-weight: bold;
	padding: 0.5em 20px;
	border-bottom: 1px dashed #E9608D;
}
h3 span {
	font-size: 1.2em;
}
@media screen and (min-width: 780px) {
	h2 {
		font-size: 1.5em;
	}
	h3 {
		font-size: 1.2em;
	}
	h4 {
		font-size: 1.3em;
	}
	h5 {
		font-size: 1.1em;
	}
}
@media screen and (max-width: 779px) {
	h2 {
		font-size: 1.2em;
	}
	h3 {
		font-size: 1.1em;
	}
	h4 {
		font-size: 1.1em;
	}
	h5 {
		font-size: 1em;
	}
}
/*--------------------------------------- color */

a {
	color: #42413d;
}
a:hover {
	color: #333333;
}
a:hover img {
	opacity: 0.8;
}
.white {
	color: #FFFFFF;
}
.black {
	color: #000000;
}
.red {
	color: #d2202f;
}
.blue {
	color: #40559F;
}
.bg_white {
	background-color: #FFFFFF;
}
.bg_black {
	background-color: #000000;
}
.bg_lightgrey {
	background-color: #F9F9F9;
}
.bg_grey {
	background-color: #EFEFEF;
}
.bg_blue {
	background-color: #40559F;
	color: #FFFFFF;
}
.bg_lightblue {
	background-color: #F3F7F9;
}
.bg_red {
	background-color: #d2202f;
	color: #FFFFFF;
}
.bg_lightred {
	background-color: #FFD9DE;
}
.bg_pink {
	background-color: #f7d8ea;
}
.bg_yellow {
	background-color: #FFF599;
}
.bg_green {
	background-color: #60D795;
	color: #FFFFFF;
}
.bg_lightgreen {
	background-color: #C5FFDF;
}
.bg_cream {
	background-color: #FFFFFA;
}
/*--------------------------------------- container */
.container {
	padding: 1em 0;
}
.copy div,
article {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}
.bg_rblue{
	background-color: #E9608D;
	padding: 1em 10px;
}
.bg_rblue .bg_white {
	background-color:#fff;
	padding: 10px 0;
	border-radius: 10px;
}
.img {
	text-align:center;
}

@media screen and (min-width: 780px) {
	.columnBox {
		display: flex;
		gap: 20px;
		width: 100%;
	}
	.columnBox .v_middle {
		vertical-align: middle;
	}
	.columnBox .v_bottom {
		vertical-align: bottom;
	}
	.w20 {
		width: 20%;
	}
	.w30 {
		width: 30%;
	}
	.w40 {
		width: 40%;
	}
	.w50 {
		width: 50%;
	}
	.w60 {
		width: 60%;
	}
	.w70 {
		width: 70%;
	}
	.w80 {
		width: 80%;
	}
	.padr3 {
		padding-right: 3%;
	}
	.padL3 {
		padding-left: 3%;
	}
	.padt3 {
		padding-top: 3%;
	}
	.padt6 {
		padding-top: 6%;
	}
}

/*--------------------------------------- btn */
.btn {
	text-align: center;
	padding: 10px 10px 30px;
	display: block;
}
.btn a {
	transition: linear 0.2s;
}
.btn a:hover{
	opacity:0.8;
}
.btn_contact {
	animation: flash 1s linear infinite;
}

@keyframes flash {
	0%,100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}
/*--------------------------------------- header */
header {
	position: relative;
	z-index: 9999;
	width: 100%;
	background: linear-gradient(to right,  rgba(151,0,19,1) 0%,rgba(233,85,65,1) 50%,rgba(207,17,38,1) 100%);
}
header #header_inner {
	display: block;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	text-align: center;
}

header a:hover {
	text-decoration: none;
}

header div {
	position: relative;
}
header #header_logo a {
	display: inline-block;
	vertical-align: middle;
	padding: 0 20px;
}
header img {
	display: block;
	width: 100%;
	max-width: 100%;
}
@media screen and (max-width: 779px) {
	header img {
		display: block;
	}
}


/*--------------------------------------- main_img */
.main_img {
	text-align: center;
	background-color: #E3E6E9;
	background: linear-gradient(45deg,  rgba(151,0,19,1) 0%,rgba(233,85,65,1) 50%,rgba(207,17,38,1) 100%);
}
.main_img_list {
	
}
.main_img article,
.main_img_text article  {
	max-width: 1000px;
}
/*--------------------------------------- top_msg */
.top_msg {
	font-weight: bold;
	padding: 30px 30px 10px;
	text-align: left;
}
.top_msg .color_pink{
	color: #e9608d;
}
.text_small {
	font-weight: normal;
	font-size: 0.7em;
}
.contact_msg {
	padding: 20px 10px;
	font-weight: bold;
	background-color: var(--color_main);
	color: #ffffff;
}
.t_yellow {
	color: #FFF66F;
}
#container_contact {
	padding-top: 0;
}
@media screen and (min-width: 780px) {
	.top_msg {
		font-size: 1.2em;
	}
	.contact_msg {
		font-size: 1.5em;
	}
}
/*--------------------------------------- columnBox_voice */
.voice_info {
	padding: 10px 20px;
}
.voice_info h3 {
	padding: 1em 0;
	border: none;
}

/*--------------------------------------- shop_list */
.shop_list {
	background-size: auto auto;
	background-color: #FFFDE6;
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(254, 251, 198, 1) 3px, rgba(254, 251, 198, 1) 9px );
}
.shop_list h2 {
	text-align: center;
	padding: 20px 20px 10px;
}
.shop_detail {
	padding: 10px;
}
.shop_detail .shop_inner {
	border-radius: 10px;
	background-color: #ffffff;
}
.shop_detail .shop_title {
	font-size: 1.1em;
	font-weight: bold;
	padding: 20px 10px 0 10px;
	border-radius: 10px 10px 0 0;
	background-color: #ffffff;
}
.shop_detail .shop_map {
	text-align: center;
	margin: 10px 10px 0;
	padding: 10px 10px 20px;
	background-color: #ffffff;
	border-radius: 5px;
	border: 1px solid #ddd;
}
.shop_detail .shop_map img {

}
.shop_detail .shop_access {
	padding: 5px 10px;
	font-size: 0.9em;
	color: #fff;
	background-color: #4E2870;
	display: inline-block;
	vertical-align: middle;
	margin: -20px 0 0 10px;
	border-radius: 3px;
}
.shop_detail ul {
	margin: 0;
	padding: 0 20px 20px;
}
.shop_detail li {
	display: block;
	padding: 2px 0;
}
.shop_detail .shop_tel {
	color: #e9608d;
	background-image: url(../img/icon_tel.png);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 30px auto;
	padding: 10px 10px 10px 40px;
}
.shop_detail .shop_add {
	font-size: 0.85em;
	background-color: #fff9ed;
	padding: 10px;
	border-radius: 5px;
}
.shop_detail .shop_tel a {
	color: #e9608d;
}
@media screen and (min-width: 780px) {
	.shop_detail {
		width: 33%;
	}
	.shop_detail .shop_inner {
		padding: 0;
	}
	.shop_detail .shop_tel {
		font-size: 1.4em;
	}
	.shop_detail .shop_tel a {
		text-decoration: none;
	}
}
@media screen and (max-width: 779px) {
	.shop_detail .shop_tel {
		font-size: 1.2em;
	}
}
@media screen and (max-width: 779px) and (min-width: 481px) {
	.shop_detail {
		width: 50%;
	}
}
@media screen and (min-width: 481px) {
	.shop_detail {
		display: inline-block;
		vertical-align: top;
	}
}
@media screen and (max-width: 480px) {

}
/*--------------------------------------- footer */
footer {
	color: #ffffff;
	background: linear-gradient(to right,  rgba(151,0,19,1) 0%,rgba(233,85,65,1) 50%,rgba(207,17,38,1) 100%);
}
footer a {
	color: #fff;
}
footer article {
	padding: 2em 0;
}
.footerLogo {
	text-align: center;
	padding: 0 2em 20px;
}
footer article .shop_title {
}
footer article .shop_tel,
footer article .shop_tel a {
	color: #FFF66F;
}
footer article .shop_info {
	padding: 10px;
}
@media screen and (min-width: 780px) {
	footer article .shop_title,
	footer article .shop_tel {
		font-size: 1.2em;
		font-weight: bold;
	}
}
@media screen and (max-width: 779px) {
	footer article .shop_info {
		border-top: 2px solid rgba(255, 255, 255, 0.6);
	}
	footer article .shop_info:first-child {
		border-top: none;
	}

}
/*--------------------------------------- btn_submit */
.btn_submit {
	transition: linear 0.2s;
}
.btn_submit:hover {
	opacity: 0.8;
}
.text_ca {
	padding: 20px;
	font-size: 0.9em;
}

@media screen and (min-width: 780px) {
	.text_ca {
		text-align: center;
	}
}
/*--------------------------------------- thanks.html */
.thanks_text {
	padding: 2em 20px;
}
.columnBox_topLink {
	padding: 2em 0 3em;
}
.columnBox_topLink .column {
	padding: 5px 20px;
}

/*--------------------------------------- outline */
.bg_pt1 {
	background-color: #E9608D;
}
.bg_pt1_yellow {
	background-image: url(../img/main_img_bg_yellow.png);
	background-position: center;
	background-color: #f4dbe8;
}
.bg_pt2 { 
	background-image: url(../img/bg_stripe.png);
}
.outline_list .column {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.outline_list .outline_1 {
	background-image: url(../img/outline-01.png);
}
.outline_list .outline_2 {
	background-image: url(../img/outline-02.png);
}

@media screen and (min-width: 641px) {
	.outline_list .column {
		padding: 15% 0;
	}
}
@media screen and (max-width: 640px) {
	.outline_list .outline_1 {
		padding: 20% 0;
	}
	.outline_list .outline_2 {
		padding: 30% 0;
	}
}
/*--------------------------------------- container_outline */
.container_outline {
	padding: 0;
	background-image: url(../img/ptn_dot.png);
}

.container_outline .columnBox {
	table-layout: auto;
}
.container_outline .columnBox .column {
	padding: 0;
	vertical-align: middle;
}


/*--------------------------------------- ここが凄い */
.container_point {
	padding-top: 0;
	background-image: url(../img/bg_stripe.png);
}
.container_point article {
	max-width: 1150px;
}
.point_main_title {
	color: #ffffff;
	background-color: #00a6a8;
	text-align: center;
	padding: 0 20px;
}
.point_main_title p{
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	padding: 20px 7em 20px 20px;
}
.point_main_title span {
	color: #fff79a;
}
.point_main_title p:after {
	content:"";
	position: absolute;
	top: -50%;
	right: 0;
	display: block;
	width: 150px;
	height: 150px;
	background-image: url(../img/point_title.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.point_list {
	padding: 20px 0 0;
	table-layout: auto;
}
@media screen and (max-width: 768px) {
	.point_main_title p{
		padding: 10px 6em 10px 20px;
	}
	.point_main_title p:after {
		top: 0;
		width: 6em;
		height: 100%;
	}
}

/*--------------------------------------- お客様の5つの約束 */
.container_promise {
	padding: 1em 0 2em;
	background-color: #d4c9b0;
}
.promise_title img {
	margin-top: -10%;
}
.promise_list {
	list-style: none;
	display: block;
	padding: 0 20px;
	margin: 0;
}

.promise_list li {
	display:inline-block;
	vertical-align: top;
	padding: 0 10px 20px;
	text-align: center;
}
.promise_list li span{
	display: inline-block;
	background-color: #ffffff;
	box-shadow: 2px 2px 5px rgba(140, 85, 79, 0.3);
	border-radius: 10px;
}
.promise_list li .promise_box span{
	text-align: left;
	display: block;
	padding: 10px;
}
@media screen and (min-width: 769px) {
	.promise_list li {
		width: 33%;
	}
}
@media screen and (max-width: 768px) and (min-width: 481px) {
	.promise_list li {
		width: 50%;
	}
}
@media screen and (max-width: 480px) {
	.promise_list li {
		width: 100%;
	}
}

/*--------------------------------------- お客様のよくあるご質問 */
.container_faq article{
	padding: 0 10px;
}
.faq_main_bg{
	box-shadow: inset 0 0 0 4px #8dc556;
	border-radius: 20px;
	padding: 0;
	background-color: #f8ffeb;
}
.faq_main_title {
	position: relative;
	padding: 0 10px;
	text-align: center;
	top: -20px;
	left: -6px;
	-moz-transform: rotate(-1deg);
	-webkit-transform: rotate(-1deg);
	-o-transform: rotate(-1deg);
	-ms-transform: rotate(-1deg);
	transform: rotate(-1deg);
}
.faq_main_title:before {
	content: '';
	position: absolute;
	border-style: solid;
	border-color: transparent;
}
.faq_main_title:before {
	z-index: -1;
	left: 0;
	bottom: 0;
	height: 80%;
	width: 100%;
	background-color: #8DC556;
	box-shadow: 0 5px 5px rgba(141, 197, 86, 0.3);
}
.faq_list {
	padding: 20px 30px;
}
.faq_title {
	position:relative;
	color: #8dc556;
	font-size: 1.5em;
	font-weight: bold;
	padding: 20px 0 20px 50px;
}
.faq_text {
	position:relative;
	font-size: 1.1em;
	padding: 0 0 1em 50px;
}
.faq_title:before,
.faq_text:before  {
	content:"";
	display:block;
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	left: 0;
	padding: 0.2em 0.5em;
	border-radius: 100%;
}
.faq_title:before {
	content: "Q";
	color: #8dc556;
	background-color: #fff;
	top: 20px;
}
.faq_text:before {
	content: "A";
	color: #E85598;
	background-color: #F9DBE8;
	top: 0;
}
.faq_img {
	background-image: url(../img/faq_img.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
}

@media screen and (max-width: 779px) {
	.faq_title {
		font-size: 1.2em;
	}
	.faq_text {
		font-size: 1em;
	}
	.faq_list {
		padding: 20px;
	}
	.faq_img {
		background-size: 40% auto;
		background-position: center top;
		padding: 15%;
		display: block;
	}
}



/*--------------------------------------- 施術の流れ */
.container_flow {
	background-position: center;
	padding: 20px 10px;
	background-image: url(../img/ptn_dot.png);
}
.container_flow article {
	padding: 20px 0;
}
.flow_all {
	box-shadow: 0 0 20px #d5edf9;
	background-color: #ffffff;
	border-radius: 20px;
}
.columnBox_flow {
	padding: 20px;
	position:relative;
}
.columnBox_flow:nth-child(2n+1) {
	background-color: #fff9ed;
}
.column_flow_1 {
	font-weight: bold;
	color: #E9608D;
	position:relative;
}
.column_flow_1 span {
	font-size: 2em;
	font-weight: bold;
}
.column_flow_title {
	font-weight: bold;
	color: #E9608D;
	padding-bottom: 0.25em;
	margin-bottom: 0.5em;
	border-bottom: 1px dashed;
}
.column_flow_text {
	padding: 10px 0 20px 0;
}
.column_flow_3 span {
	display: inline-block;
	vertical-align: middle;
	border-radius: 20px;
	padding: 10px;
	border: 1px dashed #eb6d88;

}
.column_flow_3 img {
	border-radius: 20px;
	width: 100%;
	max-width: 320px;
}
@media screen and (min-width: 780px) { 
	.column_flow_1 {
		text-align: center;
	}
	.column_flow_1 span {
		display: block;
	}
	.column_flow_title {
		font-size: 1.6em;
	}
	.column_flow_text {
		font-size: 1.2em;
		padding-right:20px;
	}
	.columnBox_arrow .column_flow_1:after {
		content:"";
		display:block;
		position:absolute;
		left: 50%;
		bottom: 0;
		margin-left: -1em;
		width: 2em;
		height: 2em;
		border-right: 1px solid #E9608D;
		border-bottom: 1px solid #E9608D;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}
@media screen and (max-width: 779px) {
	.column_flow_title {
		font-size: 1.2em;
	}
	.columnBox_arrow:after {
		content:"";
		display:block;
		position:absolute;
		z-index: 1;
		left: 50%;
		bottom: -0.5em;
		margin-left: -1em;
		width: 2em;
		height: 2em;
		border-right: 1px solid #E9608D;
		border-bottom: 1px solid #E9608D;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}
/*--------------------------------------- エスティークってこんなサロン */
.container_feature {
	padding: 30px 10px;
}
.article_feature {
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	border: 1px solid #E9608D;
}
.article_feature .text {
	font-weight: bold;
	color: #E9608D;
	padding: 20px 10px;
	background-color: #fff9ed;
	margin: 20px 0;
	border-radius: 10px;
	border: 1px dashed;
}

.article_feature .sub_text {
	font-weight: bold;
	padding: 30px 0 40px;
}
.columnBox_feature {
	margin: 0 auto;
	display: table;
	table-layout: fixed;
	width: 100%;
}
.columnBox_feature .column{
	padding: 0 5px;
	display: table-cell;
	vertical-align: middle;
	border-radius: 10px;
}
.columnBox_feature .column span{
	display: block;
	border-radius: 10px;
}
.column_1 span {
	background-color: #FCE4DF;
}
.column_2 span {
	background-color: #EBF1BF;
}
.column_3 span {
	background-color: #E1DFEF;
}
.satisfaction_title {
	position:relative;
	padding: 0 20px 0 10px;
}
.satisfaction_title img {
	position:relative;
	z-index: 1;
	top: -4px;
}
.satisfaction_title:before {
	content:"";
	position:absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80%;
	z-index: 0;
	background-color: #fff9ed;
	box-shadow: inset 0 0 0 4px #E9608D;
	border-radius: 20px;
}

@media screen and (min-width: 769px) { 
	.article_feature .text {
		font-size: 1.4em;
		text-align: center;
	}
	.article_feature .sub_text {
		font-size: 1.2em;
		text-align: center;
	}
}

/*--------------------------------------- container_add_plan */

.container_add_plan_1 {
	background-color: #F5FBFE;
}
.container_add_plan_2 {
	background-color: #fefdf4;
}
.container_add_plan article {
	padding: 20px;
}
.container_add_plan .columnBox .column {
	padding: 0;
}
@media screen and (min-width: 780px) {
	.container_add_plan {
		padding: 20px 0 30px;
	}
	.container_add_plan article {
		border-radius: 10px;
	}
}
@media screen and (max-width: 779px) {
}
/*--------------------------------------- container_maricafe */
.container_maricafe {
	background-image: url(../img/maricafe_bg.png);
	background-size: cover;
	background-position: center;
	position: relative;
	border-bottom: 2px solid #e9566e;
}
.container_maricafe:before {
	content: "";
	background-image: url(../img/maricafe_line.png);
	width: 100%;
	display: block;
	height: 20px;
	position: absolute;
	left: 0;
	top: 0;
}
/*--------------------------------------- container_attention */
.container_attention {
	text-align: center;
	background-color: #FEF9FB;
	border-top: 3px solid #E9566E;
}
.container_attention article {
	max-width: 800px;
	padding-bottom: 20px;
}
.container_attention .columnBox .column {
	padding: 0;
}
@media screen and (min-width: 780px) {
	.container_attention {
		padding: 20px 0 30px;
	}
}
@media screen and (max-width: 779px) {
}
/*--------------------------------------- add_info */
.add_info {
	background-color: #acdcf0;
	padding: 20px 0;
}
.add_info article {
	text-align: center;
}

/*--------------------------------------- 新生活 */

.newlife {
	padding: 20px 0;
	text-align: center;
	background-image: url(../img/newlife_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
/*--------------------------------------- キッズ脱毛メリット */
.all_main_img {
	background-color: #111931;
}
.kids_main_img {
	background-image: url(../img/kids_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.kids_main_img_1 {
	text-align: center;
	padding: 0 5px;
}
.container_kids_merit {
	background-color: #FFFCDD;
}
.container_kids_merit .content_title {
	text-align: center;
}
.kids_merit_list {
	padding: 0;
	list-style: none;
}
.kids_merit_list li {
	padding: 20px;
}
.kids_merit_list li .img,
.kids_merit_list li .title {
	display: inline-block;
	vertical-align: middle;
}
.kids_merit_list li .img {
	max-width: 30%;
}
.kids_merit_list li .title {
	width: 70%;
	color: #855c30;
	font-weight: bold;
	font-size: 1.2em;
	padding: 10px 0 10px 10px;
}
.kids_merit_list li .text {
	padding-top: 20px;
	color: #ed7082;
	font-weight: bold;
}
@media screen and (min-width: 780px) {
	.kids_merit_list li {
		width: 33%;
		display: inline-block;
		vertical-align: top;
	}
}
/*--------------------------------------- キッズ脱毛 お客様の声 */
.container_kids_voice {
	padding: 20px 20px 0;
}
.container_kids_voice .content_title {
	text-align: center;
}
.container_kids_voice .content_1 {
	background-color: #FFFCDD;
	border-radius: 1em;
	margin-top: 20px;
}
.container_kids_voice .content_1 .content_title img{
	margin-top: -20px;
}
.container_kids_voice .content_1 ul {
	list-style: none;
	padding: 20px 10px;
	max-width: 800px;
	margin: 0 auto;
}
.container_kids_voice .content_1 ul li {
	font-weight: bold;
	padding: 10px;
	padding-left: 40px;
	position: relative;
}
.container_kids_voice .content_1 ul li:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-color: #ed7082;
	border-radius: 100%;
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -10px;
}
.container_kids_voice .content_1 ul li span {
	color: #ed7082;
}
@media screen and (min-width: 780px) {
	.container_kids_voice .content_1 ul li {
		font-size: 1.4em;
	}
}
/*--------------------------------------- キッズ脱毛 よくある質問 */
.container_kids_voice .content_2 {
	color: #fff;
	padding: 20px 0;
}
.container_kids_voice .content_2 ul {
	list-style: none;
	padding: 20px 0;
}
.container_kids_voice .content_2 ul li {
	padding: 10px;
	position: relative;
}
.container_kids_voice .content_2 ul li .title {
	color: #E9566E;
	font-weight: bold;
}
.container_kids_voice .content_2 .text {
	color: #956134;
}
.container_kids_voice .content_2 ul li .text .small_text {
	font-size: 0.9em;
}
.container_kids_voice .content_2 {
	background-image: url(../img/kids_faq_img_202406.png);
	background-repeat: no-repeat;
	background-position: right bottom  -1px;
}
@media screen and (min-width: 780px) {
	.container_kids_voice .content_2 {
		background-size: 20% auto;
	}
	.container_kids_voice .content_2 ul {
		width: 80%;
	}
	.container_kids_voice .content_2 ul li .title {
		font-size: 1.6em;
	}
	.container_kids_voice .content_2 ul li .text {
		font-size: 1.3em;
	}
}
@media screen and (max-width: 779px) {
	.container_kids_voice .content_2 {
		background-size: 140px;
		padding-bottom: 140px;
		background-position: center bottom;
	}

}
.main_menu_parts_list li{
	display:inline-block;
}
.sub_menu_1_list li {
	display:inline-block;
}
.main_menu_course_list li {
	display:inline-block;
}

.box_add {
	width: 95%;
	max-width: 960px;
	margin: 0 auto;
	color: #DE667C;
	font-size: clamp(12px, 1vw, 13px);
	border: 1px solid;
	background-color: #ffffff;
	padding: 10px;
	border-radius: 10px;
}
.main_add_plan {
	padding: 20px 0;
	text-align: center;
	background-color: #FFFCDD;
	background-image: radial-gradient(rgb(255 255 255) 16%, transparent 19%), radial-gradient(rgb(255 255 255) 16%, transparent 19%);
	background-position: 0 0, 30px 30px;
	background-size: 30px 30px;
}