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

/*メニュー*/

@media screen and (max-width:1024px){
	.p_menu-btn {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    height: 60px;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 200;
    background-color: #ffffff;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	}
	.p_menu-btn span,
	.p_menu-btn span:before,
	.p_menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #393939;
		position: absolute;
	}
	.p_menu-btn span:before {
		bottom: 8px;
	}
	.p_menu-btn span:after {
		top: 8px;
	}

	#p_menu-btn-check:checked ~ .p_menu-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#p_menu-btn-check:checked ~ .p_menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#p_menu-btn-check:checked ~ .p_menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}

	#p_menu-btn-check {
		display: none;
	}

	.p_menu_wrap {
		width: 100%;
		box-sizing: border-box;
		padding-top:100px;
		position: fixed;
		top: 0;
		right:0;
		z-index: 190;
		background:rgba(0,0,0,0.75);
		transition: all 0.3s;
		backdrop-filter: blur(10px);
		opacity: 0;
		visibility: hidden;
	}

	#p_menu-btn-check:checked ~ .p_menu_wrap {
		right: 0%;/*メニューを画面内へ*/
		opacity: 1;
		visibility: visible;
	}
	
	.p_menu_logo {
		display: flex;
		height:100px;
		align-items: center;
	}

	.p_menu_logo a {
		display: block;
		background:url("../img/mainlogo_white.png") center top no-repeat;
		width:200px;
		height:63px;
		margin:0 auto 24px;
		background-size: cover;
		transition: all 0.3s;
	}

	.p_menu_wrap ul {
		width: 100%;
		position: relative;
	}
	.p_menu_wrap ul li {
		list-style: none;
	}
	.p_menu_wrap ul li a,.p_menu_wrap ul li span {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding:6%;
		border-bottom: solid 1px #fff;
		color:#fff;
		text-align: left;
		font-size: 2.4rem;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		transform: rotate(0.03deg);
		font-weight: 700;
	}
	.p_menu_wrap ul li a:hover {
		text-decoration: none;
	}
}

@media screen and (min-width:1025px){
	
	#p_menu-btn-check {
		display: none;
	}
	
	.p_menu-btn {
		display: none;
	}

	.p_menu_wrap {
		width:100%;
		padding:0 3%;
		max-width:1366px;
		margin:0 auto 0;
		position: relative;
		display: flex;
		justify-content: space-between;
	}

	.p_menu_logo {
		display: flex;
		height:100px;
		align-items: center;
	}

	.p_menu_logo a {
		display: block;
		background:url("../img/mainlogo_color.png") center top no-repeat;
		width:200px;
		height:63px;
		background-size: cover;
		transition: all 0.3s;
	}

	.p_menu_logo a:hover {
		opacity: 0.6;
	}

	.p_menu_wrap ul {
		display: flex;
		justify-content: flex-start;
		gap:48px;
	}

	.p_menu_wrap ul li {
		display: flex;
		height:100px;
		align-items: center;

	}

	.p_menu_wrap ul li a, .p_menu_wrap ul li span {
		font-size: 2.4rem;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		transform: rotate(0.03deg);
		font-weight: 700;
		color:#7d7d7d;
		text-decoration: none;
		transition: all 0.3s;
	}

	.p_menu_wrap ul li a:hover {
		color:deepskyblue;
	}
	
}

/*メインビジュアル*/

.p_main_logo_group {
	width:700px;
	height:300px;
	background-color:rgba(255,255,255,0.8);
	position: absolute;
	left:0;
	top:250px;
	right:0;
	margin:auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width:1025px) {
	.p_main_logo_group {
		display: flex;
	}
}
@media screen and (max-width:1024px) {
	.p_main_logo_group {
		display: none;
	}
}


.p_main_logo {
	background:url("../img/mainlogo_color.png") center top no-repeat;
	width:500px;
	height:156px;
	margin:0 auto;
}

/*タイトル関係*/

.p_title {
	margin:0 auto;
	display: block;
	position: relative;
}

@media screen and (min-width:1025px) {
	.p_title {
		width:500px;
		height:135px;
	}
}
@media screen and (max-width:1024px) {
	.p_title {
		width:100%;
		padding-top:27%;
	}
}

.p_title_costume_making {background:url("../img/head_costume_making.png") center top no-repeat;background-size: cover;}
.p_title_service_list {background:url("../img/head_service_list.png") center top no-repeat;background-size: cover;}
.p_title_about_reala {background:url("../img/head_about_reala.png") center top no-repeat;background-size: cover;}
.p_title_company_info {background:url("../img/head_company_info.png") center top no-repeat;background-size: cover;}
.p_title_contact_us {background:url("../img/head_contact_us.png") center top no-repeat;background-size: cover;}
.p_title_recruit {background:url("../img/head_recruit.png") center top no-repeat;background-size: cover;}

/*サービス一覧*/

.p_service_catch {
	background-color:#fff;
	border-bottom:2px solid #7084c6;
	box-sizing: border-box;
	
	margin:0 auto;
	color:#535353;
}

@media screen and (min-width:1025px) {
	.p_service_catch {
		padding:12px 32px;
		display: inline-block;
	}
}
@media screen and (max-width:1024px) {
	.p_service_catch {
		padding:12px;
		display: block;
		line-height: 1.7;
		text-align: justify;
	}
}

.p_service_example {
	width:100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:32px 0;
}

.p_service_box {
	width:48.5%;
	position: relative;
	background-color: #fff;
	box-sizing: border-box;
	padding:0 0 20px;
}

@media screen and (min-width:1025px) {
	.p_service_box {
		width:48.5%;
	}
}
@media screen and (max-width:1024px) {
	.p_service_box {
		width:100%;
	}
}

.p_service_box figure figcaption {
	line-height: 1.7;
	color:#535353;
	position: relative;
	padding-top:20px;
}

.p_service_tag {
	position: absolute;
	left:0;
	top:-40px;
	line-height: 40px;
	color:#fff;
	box-sizing: border-box;
	padding:0 16px;
}

.p_service_box figure img {
	width: 100%;
}



@media screen and (min-width:1025px) {
	.p_service_others {
		color:#fff;
		display: inline-block;
		margin:0 auto;
		box-sizing: border-box;
		padding:8px;
		font-size: 2.8rem;
	}
}
@media screen and (max-width:1024px) {
	.p_service_others {
		color:#fff;
		display: inline-block;
		margin:0 auto;
		box-sizing: border-box;
		padding:8px;
		font-size: 2rem;
	}
}

@media screen and (min-width:1025px) {
	a.p_service_contact {
		display: inline-block;
		background-color:#fff;
		color:#8f82bc;
		border:2px solid #8f82bc;
		transition: all 0.3s;
		line-height: 80px;
		border-radius: 40px;
		box-sizing: border-box;
		padding:0 60px;
		text-decoration: none;
	}
}
@media screen and (max-width:1024px) {
	a.p_service_contact {
		display: block;
		background-color:#fff;
		color:#8f82bc;
		border:2px solid #8f82bc;
		transition: all 0.3s;
		border-radius: 15px;
		box-sizing: border-box;
		padding:24px;
		text-decoration: none;
	}
}

a:hover.p_service_contact {
	text-decoration: none!important;
	opacity: 0.6;
}

/*フッター*/

.p_foot_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color:#362e2b;
}

@media screen and (min-width:1025px) {
	.p_foot_wrap{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}
@media screen and (max-width:1024px) {
	.p_foot_wrap{
		display: block;
	}
}

.p_foot_info {
	text-align:left;
	line-height: 1.7;
}

.p_foot_logo a {
	display: block;
	background:url("../img/mainlogo_white.png") center top no-repeat;
	width:300px;
	height:94px;
	background-size: cover;
	transition: all 0.3s;
}

@media screen and (min-width:1025px) {
	.p_foot_logo a{
		margin:0;
	}
}
@media screen and (max-width:1024px) {
	.p_foot_logo a{
		margin:24px auto 0;
	}
}

.p_foot_logo a:hover {
	opacity: 0.6;
}

/*会社概要*/

.p_company_list {
	display: flex;
	flex-direction: column;
	gap:12px;
}

.p_company_list dl {
	display: flex;
	justify-content: space-between;
	background-color:#fff;
	line-height: 1.7;
}

.p_company_list dl dt {
	color:#fff;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform: rotate(0.03deg);
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	box-sizing: border-box;
	padding:12px 8px;
	width:25%;
	background-color:#7084c6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p_company_list dl dd {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform: rotate(0.03deg);
	font-size: 1.8rem;
	font-weight: 400;
	text-align: left;
	box-sizing: border-box;
	padding:12px 8px;
	width:75%;
}

/*サービス一覧（サブページ）*/

.p_making_flow {
	display: flex;
	flex-direction: column;
	gap:40px;
}

.p_making_flow dl {
	display: flex;
	justify-content: space-between;
	background-color:#fff;
	line-height: 1.7;
	position: relative;
}

.p_making_flow dl dt {
	color:#fff;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform: rotate(0.03deg);
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	box-sizing: border-box;
	padding:12px 8px;
	width:25%;
	background-color:#7084c6;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-wrap: wrap;
}

.p_making_flow dl:after {
	content: "";
	width:5%;
	height:20px;
	background-color:#7084c6;
	position: absolute;
	bottom:-24px;
	left:10%;
	display: block;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.p_making_flow dl:last-child:after {
	display: none;
}

.p_making_flow dl dd {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform: rotate(0.03deg);
	font-size: 1.8rem;
	font-weight: 400;
	text-align: left;
	box-sizing: border-box;
	padding:12px 8px;
	width:75%;
}

.p_topics {
	width:100%;
	position: relative;
}

.p_topics:before {
	content: "";
	width:100%;
	border-bottom:1px dotted #000;
	position: absolute;
	left:0;
	top:33px;
	margin:auto;
}

.p_topics h4 {
	
	color:#535353;
	display: inline-block;
	text-align: center;
	letter-spacing: 0.25rem;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	background-color:#fff;
	border:2px solid #7084c6;
	box-shadow:0 5px 0 rgba(0,0,0,0.25);
	border-radius: 15px;
	box-sizing: border-box;
	margin:0 auto;
	position: relative;
	z-index:20;
}

@media screen and (min-width:1025px) {
	.p_topics h4 {
		font-size: 2.8rem;
		line-height: 60px;
		padding:0 24px;
	}
}
@media screen and (max-width:1024px) {
	.p_topics h4 {
		font-size: 2.4rem;
		line-height: 1.7;
		padding:0 12px;
	}
}

.p_cos_image ul {
	width:100%;
	gap:12px 24px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}

@media screen and (min-width:1025px) {
	.p_cos_image ul {
		
	}
	.p_cos_image ul li{
		width:25%;
		position: relative;
	}
}
@media screen and (max-width:1024px) {
	.p_cos_image ul {
	}
	.p_cos_image ul li{
		width:80%;
		position: relative;
	}
}

.p_cos_image ul li img {
	width:100%;
}

.p_doushite {
	width: 100%;
	max-width:1024px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
}

.p_cleaning_image ul {
	width:100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:12px 0;
}

@media screen and (min-width:1025px) {
	.p_cleaning_image ul li{
		width:20%;
		position: relative;
	}
}
@media screen and (max-width:1024px) {
	.p_cleaning_image ul li{
		width:48%;
		position: relative;
	}
}

.p_cleaning_image ul li img {
	width:100%;
}

.p_souko_list01 {
	display: flex;
	flex-direction: column;
	gap:12px;
}

.p_souko_box {
	display: flex;
	justify-content: center;
	background-color:#E9EDFC;
	box-sizing: border-box;
	padding:12px;
	gap:12px;
	flex-wrap: wrap;
}

.p_souko_category {
	width: 100%;
	background-color:#7084c6;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	box-sizing: border-box;
	padding: 8px;
}

.p_souko_img {
}

.p_souko_img img {
	width: 100%;
	max-width: 600px;
	margin:0 auto;
}

.p_souko_text {
	box-sizing: border-box;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	position: relative;
	gap:8px;
}

@media screen and (min-width:1025px) {
	.p_souko_img {
		width:calc(25% - 12px);
	}
	.p_souko_text {
		width: 75%;
	}
}
@media screen and (max-width:1024px) {
	.p_souko_img {
		width:100%;
	}
	.p_souko_text {
		width:100%;
	}
}

.p_souko_text dl {
}

.p_souko_text dl dt {
	background-color:#CAD2EF;
	width: 100%;

	box-sizing: border-box;
	padding: 8px;
	font-size: 1.4rem;
	line-height: 1.6;
}

.p_souko_text dl dd {
	background-color:#ffffff;
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
	font-size: 1.6rem;
	height: auto;
	line-height: 1.6;
}

.p_souko_list03 dl {
	display: flex;
	justify-content: space-between;
	line-height: 1.7;
	flex-wrap: wrap;
	gap:4px;
}

.p_souko_list03 dl dt {
	width:calc((100% - 12px) / 3);
	color:#fff;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform: rotate(0.03deg);
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	box-sizing: border-box;
	padding:8px;
	background-color:#7084c6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p_souko_list03 dl dd {
	width:calc((100% - 12px) / 3);
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform: rotate(0.03deg);
	font-size: 1.8rem;
	font-weight: 400;
	box-sizing: border-box;
	padding:8px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
}

.p_color01 {background-color:#CAD2EF;}
.p_color02 {background-color:#E9EDFC;}

.p_souko_list02 {
	display: flex;
	flex-direction: column;
	gap:12px;
}

.p_souko_list02 dl {
	display: flex;
	justify-content: space-between;
	background-color:#fff;
	line-height: 1.7;
}

.p_souko_list02 dl dt {
	color:#fff;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform: rotate(0.03deg);
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	box-sizing: border-box;
	padding:12px 8px;
	width:25%;
	background-color:#7084c6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p_souko_list02 dl dd {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform: rotate(0.03deg);
	font-size: 1.8rem;
	font-weight: 400;
	text-align: left;
	box-sizing: border-box;
	padding:12px 8px;
	width:75%;
	align-items: center;
	justify-content: flex-start;
}

@media screen and (min-width:1025px) {
	.p_souko_list02 dl {
		display: flex;
		justify-content: space-between;
	}

	.p_souko_list02 dl dt {
		width:25%;
	}

	.p_souko_list02 dl dd {
		width:75%;
	}	
}
@media screen and (max-width:1024px) {
	.p_souko_list02 dl {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}

	.p_souko_list02 dl dt {
		width:100%;
	}

	.p_souko_list02 dl dd {
		width:100%;
	}	
}

/*お問い合わせ*/

.p_contact_form {
	width:100%;
}

.p_form_premise,
.p_form_acceptance {
	text-align: left;
	width:100%;
}

.p_contact_form dl {
	width:100%;
	display: flex;
	justify-content: space-between;
	margin-bottom:8px;
}

.p_contact_form dl dt {
	width:29%;
	color:#fff;
	background-color:#7084c6;
	font-size:1.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding:16px;
}

.p_contact_form dl dd {
	width:70%;
	background-color:#F9F9F7;
	position: relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding:16px;
	font-size:1.6rem;
}

@media screen and (min-width:1025px) {
	.p_contact_form dl {
		display: flex;
		justify-content: space-between;
	}
	.p_contact_form dl dt {
		width:29%;
	}
	.p_contact_form dl dd {
		width:70%;
	}
}
@media screen and (max-width:1024px) {
	.p_contact_form dl {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		flex-wrap: wrap;
	}
	.p_contact_form dl dt {
		width:100%;
	}
	.p_contact_form dl dd {
		width:100%;
	}
}

.p_contact_form dl dd div {
	width:96%;
	margin:0 auto;
	position: relative;
	text-align: left;
}

.p_contact_form dl dd input[type="text"],input[type="email"],input[type="tel"] {
	width:100%;
	display: block;
	margin:0 auto;
    box-sizing: border-box;
    outline: none;
    border: 1px solid lightgray;
    border-radius: 3px;
    padding: 10px 10px 10px 10px;
    transition: all 0.1s ease-out;
	font-size:1.6rem;
	color:dimgray;
	position: relative;
}

span.check {color:dimgray; margin:8px 0;display: block;}

.p_contact_form select {
	width:100%;
	display: block;
    box-sizing: border-box;
    outline: none;
    border: 1px solid lightgray;
    border-radius: 3px;
    padding: 10px 10px 10px 10px;
    transition: all 0.1s ease-out;
	font-size:1.6rem;
	color:dimgray;
	position: relative;
}

.p_contact_form dl dd textarea {
	width:100%;
	display: block;
	margin:0 auto;
	box-sizing: border-box;
    outline: none;
    border: 1px solid lightgray;
    border-radius: 3px;
    padding: 10px 10px 10px 10px;
    transition: all 0.1s ease-out;
	font-size:1.6rem;
	color:dimgray;
	position: relative;
}

.wpcf7-form-control-wrap {
	display: block;
}

.wpcf7-form-control.wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap:10px;
}

.wpcf7-list-item-label {/*項目の色や文字サイズ*/
	cursor: pointer;
}

.p_form_label .wpcf7-list-item {
	display: block;
	
	line-height: 40px;
	height:40px;
	background-color:#FFF;
	box-sizing: border-box;
	padding:0 8px;
	border-radius: 5px;
	position: relative;
	margin:0!important;
}

/*PC*/
@media screen and (min-width:1025px) {
	.p_form_label .wpcf7-list-item {
		width:calc(calc(100% - 20px) / 3);
	}
}
/*MOB*/
@media screen and (max-width:1024px) {
	.p_form_label .wpcf7-list-item {
		width:calc(calc(100% - 20px) / 2);
	}
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;/*既存のチェックボックスを見えなくする*/
}

.wpcf7-list-item-label:before {/*チェックボックスの枠*/
  content: '';
  border: 1px solid #f092a8;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: -3px;
  margin-right: 12px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}

input[type="checkbox"]:checked + .wpcf7-list-item-label:after {/*チェックアイコン*/
	content: "";
	display: block;
	position: absolute;
	top: 10px;
	left: 8px;
	width: 20px;
	height: 20px;
	background: url("../img/check-solid.svg") no-repeat center;
  background-size: contain;
}

.p_contact_check {
	width:100%;
	background-color:#F9F9F7;
	position: relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	flex-direction: column;
	padding:16px;
	font-size:1.6rem;
}

.p_contact_check .wpcf7-list-item {
	display: block!important;
	width:100%;
	line-height: 40px;
	height:40px;
	background-color:#FFF;
	box-sizing: border-box;
	padding:0 8px;
	border-radius: 5px;
	position: relative;
	margin: 0!important;
}

.p_form_bt {
	width:100%;
	margin:64px auto 64px;
}

.p_form_bt input[type="submit"],input[type="reset"] {
	display: block;
	width:200px;
	height:60px;
	color:#fff;
	background-color:#503989;
	outline: none;
	border:0;
	font-size: 1.6rem;
	font-weight: bold;
	cursor: pointer;
	margin:0 auto;
}

.p_form_bt input[type="submit"] {
	background-color:#7084c6;
	transition: all 0.3s;
	border:5px solid #7084c6;
}

.p_form_bt input[type="submit"]:hover {
	background-color:#fff;
	color:#7084c6;
	border:5px solid #7084c6;
}

.p_form_bt p {

}

.p_form_bt span {

}

.wpcf7 form .wpcf7-response-output {
	margin:0!important;
}

div.wpcf7-mail-sent-ok {
	width:100%;
border: 2px solid #7084c6;
}
div.wpcf7-mail-sent-ng {
	width:100%;
border: 2px solid #ff0000;
}
div.wpcf7-spam-blocked {
	width:100%;
border: 2px solid #ffa500;
}
div.wpcf7-validation-errors {
	width:100%;
border: 2px solid #f7e700;
}


.wpcf7 form.sent .wpcf7-response-output {/* 送信ボタン下完了時 */
    border-color: #8cebe5;
	font-size: 1.8rem;
	box-sizing: border-box;
	padding:12px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {/* 送信ボタン下未入力警告 */
    border-color: #f88;
	font-size: 1.8rem;
	box-sizing: border-box;
	padding:12px;
}
.wpcf7-not-valid-tip {/* 必須未入力項目下の文章 */
    color: #f88;
    font-size: 12px;
}