@charset "utf-8";
/*------------------------------------------------------------------------------
Css name: content.css
Css info: 各ページスタイル
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
index
--------------------------------------------------------------------------*/
.index .gNav .page_nav01 a{
	background: #fbac07;
	color: #fff;
}
/*----------------------------------------------------------------*/

.hero_area{
	position: relative;
	width: 100%;
	padding-top: 50%;
	background: url(../img/index/hero.webp) center center no-repeat;
	background-size: cover;
}
	.hero_tit_area{
		position: absolute;
		bottom: 24px;
		width: 100%;
	}
		.hero_tit{
			width: 1000px;
			max-width: 92%;
			margin: 0 auto;

			font-size: 42px;
			font-weight: 700;
			color: #fff;
			text-shadow: 2px 2px 2px rgba(0,0,0,.9);
		}
@media only screen and (max-width: 780px) {
	.hero_area{
		padding-top: 134%;
		background: url(../img/index/hero_sp.webp) center center no-repeat;
		background-size: cover;
	}
		.hero_tit_area{
			bottom: 16px;
		}
			.hero_tit{
				font-size: 3.6rem;
			}
}
@media only screen and (max-width: 580px) {
			.hero_tit{
				font-size: 8vw;
			}
}
/*製品一覧*/
.index_item_area{
	width: 1000px;
	max-width: 90%;
	margin: 24px auto 0;
}
	.index_item_txt{
		width: 80%;
	}
	.index_item_list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;

		width: 100%;
		margin-top: 48px;
	}
		.index_item_list li{
			width: 47%;
			margin-bottom: 32px;
		}
			.index_item_list li a{
				display: block;
				width: 100%;
				height: 100%;
			}
			.index_item_img{
				overflow: hidden;
			}
				.index_item_img img{
					transition: .5s;
				}
				.index_item_list li:hover .index_item_img img{
					transform: scale(1.05);
				}
			.index_item_name{
				position: relative;

				padding: 10px 0 0 1em;
				font-size: 2.2rem;
			}
			.index_item_name::before{
				position: absolute;
				top: 0;
				left: 0;

				display: block;
				content: "";
				width: 44px;
				height: 2px;
				background: #fbac07;
				transition: .5s;
			}
			.index_item_list li:hover .index_item_name::before{
				width: 66px;
			}
@media only screen and (max-width: 560px) {
	.index_item_area{
		margin: 20px auto 0;
	}
		.index_item_txt{
			width: 100%;
		}
		.index_item_list{
			margin-top: 40px;
		}
			.index_item_list li{
				width: calc( 100% / 1 );
				margin-bottom: 20px;
			}
				.index_item_name{
					font-size: 2.0rem;
				}
				.index_item_name::before{
					width: 40px;
				}
				.index_item_list li:hover .index_item_name::before{
					width: 60px;
				}
}
/* 共通 */
.index_inner_area{
	width: 1000px;
	max-width: 90%;
	margin: 0 auto;
	padding: 100px 0;
}
.index_content_tit{
	position: relative;

	margin-bottom: 80px;
	padding-left: 1em;
	color: #1d426e;
	font-size: 3.8rem;
	line-height: 1;
}
.index_case_area_bg .index_content_tit{
}
.index_content_tit::before{
	position: absolute;
	top: 5px;
	left: 0;

	display: block;
	content: "";
	width: 14px;
	height: 28px;
	background: #fbac07;
}
@media only screen and (max-width: 560px) {

	.index_inner_area{
		padding: 80px 0;
	}
		.index_content_tit{
			margin-bottom: 60px;
		}
}
/*制作事例*/
.index_case_area_bg{
	margin-top: 100px;
	background: #fffcc7;

}

.case_list{
	display: flex;
	flex-wrap: wrap;
}
	.case_list li{
		width: 25%;
		margin: 0;
	}
		.case_list li a{
			position: relative;

			display: block;
			width: 100%;
			padding-bottom: 18px;
			color: #fff;
		}
		.case_list li a::before{
			content: "";
			display: block;
			padding-top: 100%;
		}
		.case_list_img{
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			margin: auto;
			object-fit: cover;

			object-position: center;
			font-family: 'object-fit: cover; object-position: bottom;';
		}
			.case_list_img img{
				transition: .5s;
			}
			.case_list li:hover .case_list_img img{
				transform: scale(1.05);
			}
@media only screen and (max-width: 560px) {
	.index_case_area_bg{
		margin-top: 80px;
	}

		.case_list li{
			width: calc( 100% / 3 );
		}
}
/*ストーリー*/
.index_story_area_bg{
	background: #f7f7f2;
}
.index_story_list{
	display: flex;
	flex-wrap: wrap;
}
	.index_story_list li{
		width: 30%;
		margin: 0 5% 40px 0;
	}
	.index_story_list li:nth-child(3n){
		margin-right: 0;
	}
		.index_story_list li a{
			display: block;
			width: 100%;
			height: 100%;
		}
		.index_story_img{
			overflow: hidden;
			margin-bottom: 14px;
		}
			.index_story_img img{
				transition: .5s;
			}
			.index_story_list li:hover .index_story_img img{
				transform: scale(1.05);
			}
		.index_story_client{
			line-height: 1.4;
		}
@media only screen and (max-width: 560px) {
		.index_story_list li{
			width: 100%;
			margin: 0 0 30px 0;
		}
}
/*フッター　ボタン*/
.index_btn_area{
	width: 1000px;
	max-width: 90%;
	margin: 80px auto;
}
	.index_btn_list{
		display: flex;
		justify-content: space-around;
	}
		.index_btn_list li{
			width: 45%;
		}
			.index_btn_list li a{
				display: block;
				width: 100%;
				line-height: 160px;
				padding-left: 2.5em;
				font-size: 2.8rem;
				font-weight: 700;
				color: #fff;
				background: url(../img/common/ico_arrow.png) 90% center no-repeat;
				background-size: 18px 15px;
				border-radius: 10em;
			}
			.index_btn_list li a:hover{
				opacity: .8;
				background: url(../img/common/ico_arrow.png) 91% center no-repeat;
				background-size: 18px 15px;
			}
				.index_btn_list .index_btn_order a,
				.index_btn_list .index_btn_order a:hover{
					background-color: #57c1ce;
				}
				.index_btn_list .index_btn_contact a,
				.index_btn_list .index_btn_contact a:hover{
					background-color: #e64273;
				}

@media only screen and (max-width: 560px) {
	.index_btn_area{
		width: 80%;
		margin: 60px auto;
	}
		.index_btn_list{
			flex-wrap: wrap;
		}
			.index_btn_list li{
				width: 100%;
			}
			.index_btn_list li + li{
				margin-top: 30px;
			}
				.index_btn_list li a{
					line-height: 80px;
					font-size: 2.2rem;
				}
}

/*------------------------------------------------------------------------
item
--------------------------------------------------------------------------*/
.item .gNav .page_nav02 a{
	background: #fbac07;
	color: #fff;
}
/*----------------------------------------------------------------*/
.item_list{
	display: flex;
	flex-wrap: wrap;
}

	.item_list li{
		width: calc( 100% / 3 );
		margin-bottom: 30px;
	}
		.item_list li a{
			display: block;
			width: 100%;
			height: 100%;
			transition: .3s;
		}
		.item_list li a:hover{
			opacity: .8;
		}
			.item_list li a img{
				display: block;
				width: 80%;
				height: auto;
				margin: 0 auto;
				background: #ccc;
			}
			.item_list li p{
				padding: 0 5%;
			}
			.item_list li .item_list_type{
				border-top: 1px solid #57c1ce;
				margin-top: 8px;
				padding-top: 8px;
			}
			.item_list li .item_list_size{
				font-size: 1.6rem;
			}
@media only screen and (max-width: 560px) {
		.item_list li{
			width: calc( 100% / 2 );
			margin-bottom: 20px;
		}
			.item_list li .item_list_type{
				font-size: 1.6rem;
			}
			.item_list li .item_list_size{
				font-size: 1.4rem;
			}
}

/*-- item 詳細ページ --------------------------------------------------*/
.item_header{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;

	width: 800px;
	max-width: 90%;
	margin: 0 auto 100px;
}
	.item_head_img{
		display: block;
		width: 50%;
		height: auto;
	}
	.item_outline{
		width: 44%;
	}
		.item_outline_price{
			color: #1d426e;
			font-size: 2.4rem;
			font-weight: 700;
		}
		.item_outline_table{
			width: 100%;
		}
			.item_outline_table th,
			.item_outline_table td{
				padding: 0.5em;
				text-align: left;
				vertical-align: top;
				border-top: 1px solid #ccc;
				border-bottom: 1px solid #ccc;
			}
			.item_outline_table th{
				width: 25%;
			}
		.item_tmp_box{
			margin-top: 24px;
			padding: 20px 8% 30px;
			text-align: center;
			background: #f2f2f2;
			border-radius: 4px;
		}
			.item_tmp_box a{
				display: block;
				width: 100%;
				margin: 8px auto 0;
				padding: 1em 0;
				color: #fff;
				background: #57c1ce;
				border-radius: 4em;
			}
			.item_tmp_box a:hover{
				opacity: .8;
			}
@media only screen and (max-width: 560px) {
	.item_header{
		justify-content: center;

		margin: 0 auto 80px;
	}
		.item_head_img{
			display: block;
			width: 70%;
			height: auto;
		}
		.item_outline{
			width: 100%;
			margin-top: 24px;
		}
}

/* サイズ・価格 */
.item_size_fig{
	display: block;
	width: 400px;
	max-width: 80%;
	margin: 0 auto 16px;
}
.item_h3_box + .item_h3_box{
	margin-top: 40px;
}
.item_cat{
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
	font-size: 2.0rem;
	color: #fbac07;
}
.item_table_scroll{
	display: none;
}
.item_unit{
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
	font-size: 1.6rem;
	text-align: right;
}
	.item_unit small{
		font-size: .8em;
	}
.item_table_wrap{
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
}
	.item_table{
		width: 100%;
	}
		.item_table th,
		.item_table td{
			padding: 0.5em;
			font-size: 1.6rem;
			text-align: center;
			vertical-align: top;
			border-top: 1px solid #ccc;
			border-bottom: 1px solid #ccc;
		}
		.item_table th{
			color: #fff;

			background: #1d426e;
		}
		.item_table td{
			line-height: 1.5;
		}
		.item_table.cell6 th{
			width: calc( 100% / 6 );
		}
		.item_table.cell4 th{
			width: calc( 100% / 4 );
		}
		.item_table.cell5 th{
			width: calc( 100% / 5 );
		}
		.item_table.cell7 th{
			width: calc( 100% / 7 );
		}
.item_size_att{
	width: 800px;
	max-width: 100%;
	margin: 24px auto 0;
	font-size: 1.4rem;
	text-align: right;
}
@media only screen and (max-width: 560px) {
	.item_table_scroll{
		display: block;

		width: 100%;
		line-height: 20px;
		padding-right: 54px;
		margin: 0 auto 10px;

		font-size: 1.4rem;
		text-align: right;
		background: url(../img/common/ico_scroll.png) right center no-repeat;
		background-size: auto 20px;
	}
	.item_table_wrap{
		overflow-x: scroll;
	}
		.item_table_wrap .item_table{
			border-collapse: collapse;
			white-space: nowrap;
		}
}
/*------------------------------------------------------------------------
case
--------------------------------------------------------------------------*/
.case .gNav .page_nav03 a{
	background: #fbac07;
}
/*----------------------------------------------------------------*/



/*------------------------------------------------------------------------
contact
--------------------------------------------------------------------------*/
.contact_shopName{
	font-size: 2.0rem;
	text-align: center;
	font-weight: 700;
}
	.contact_shopName small{
		font-size: 1.8rem;
	}
.contact_addr{
	margin: 10px 0 20px;
	text-align: center;
}
.contact_tel,
.contact_tel a{
	font-size: 4.0rem;
	line-height: 1.6;
	text-align: center;
	font-weight: 700;
	color: #57c1ce;
}
.contact_shopTime{
	margin-top: 20px;
	font-size: 1.6rem;
	text-align: center;
}


@media only screen and (max-width: 560px) {
	.contact_shopName{
		font-size: 2.0rem;
	}
		.contact_shopName small{
			font-size: 1.6rem;
		}
	.contact_addr{
		margin: 10px 0 20px;
		font-size: 1.6rem;
	}
	.contact_tel,
	.contact_tel a{
		font-size:3.0rem;
		line-height: 1.6;
		text-align: center;
		font-weight: 700;
		color: #57c1ce;
	}
	.contact_shopTime{
		margin-top: 20px;
		font-size: 1.6rem;
		text-align: center;
	}
}

/*メールフォーム*/
.form_table{
	width: 100%;
	max-width:600px;
	margin: 0 auto 40px;
}
	.form_table th,
	.form_table td,
	table#mfp_confirm_table tr th,
	table#mfp_confirm_table tr td{
		display: block;
		width: 100% !important;
		text-align: left;
	}
	.form_table th,
	table#mfp_confirm_table tr th{
		font-size: 1.6rem;
	}
	.form_table td,
	table#mfp_confirm_table tr td{
		padding-bottom: 1em;
	}

 .form_table .form_check_privacy label{
	 position: relative;
	 padding-left: 30px;
	 font-size: 1.6rem;
 }
	.form_table .form_check_privacy input[type="checkbox"]{
		position: absolute;
		top: 6px;
		left: 0;
	}

/* 送信完了 */
.form_thanks_tit{
	margin-bottom: 28px;
	font-size: 2.0rem;
	color: #0f3299;
}
.form_thanks_txt{
	margin-top: 1em;
}
@media only screen and (max-width: 560px) {
	.form_table{
		margin: 0 auto 20px;
	}
}


/*------------------------------------------------------------------------
privacy
--------------------------------------------------------------------------*/
.privacy .content_box{
	font-size: 1.6rem;
}
.pri_item{
	line-height: 1.8;
}
	.pri_item dt{
		margin-top: 1em;
		font-weight: 700;
		color: #0f3299;
	}
.txt_pri_name{
	margin: 2em 0;
	text-align: right;
}

/*------------------------------------------------------------------------
flow
--------------------------------------------------------------------------*/
.order .gNav .page_nav04 a{
	background: #fbac07;
	color: #fff;
}
/*----------------------------------------------------------------*/
.order_list{
	margin-top: 60px;
}
	.order_list li{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;

	}
	.order_list li + li{
		margin-top: 30px;
	}
		.order_list .order_num{
			width: 80px;
			height: 80px;
			padding-top: 18px;
			color: #fff;
			text-align: center;
			font-size: 2.4rem;
			line-height: 1;
			background: #1d426e;
			border-radius: 4px;
		}
			.order_list .order_num .txt{
				display: block;
				margin-bottom: 6px;
				font-size: 1.8rem;
			}
		.order_txt_box{
			width: calc( 100% - 100px );
		}
			.order_txt_box h3{
				margin: 4px 0 9px;
				color: #fbac07;
			}
/*------------------------------------------------------------------------
story
--------------------------------------------------------------------------*/
.story_tit small{
	display: block;
	margin-bottom: 10px;
	font-size: 1.4rem;
}.story_tit::before{
	position: absolute;
	top: 5px;
	left: 0;

	display: block;
	content: "";
	width: 14px;
	height: 54px;
	background: #fbac07;
}

