﻿

/* !HTML5 elements
---------------------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{ display: block;}

/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif; /*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	font-size: 16px;
	line-height: 28px;
	color: #222;
	background: #fff;
	margin: 0;
	padding: 0;
	height: 100%;
}

.wrapper {
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

a {
	text-decoration: none;
	color: #222;
}
a:hover {
	opacity: 0.6; /*マウスオン時の透明度*/
}
ol, ul {
	list-style: none;
	list-style-type: none;
}

/* !Clear
---------------------------------------------------------- */
.clearfix {
	display: block;
}

.clearfix:after, .clearfix:before {
	content: "";
	display: block;
	clear: both;
}

.Clear {
	clear: both;
}

{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box;}

/*ヘッダー
---------------------------------------------------------------------------*/
.header {
	position: fixed;
	height: 116px;
	width: 100%;
	background: #fff;
	top: 0;
	left: 0;
	z-index: 999;
}

@media screen and (max-width: 790px) {
		.header {
			height: 86px;
		}
	}

/*---トップ---*/
#Top_Wrap {
	display: flex;
	position: fixed;
	z-index: 0;
	top: 0px;
	margin: 0 auto;
	width: 100%;
}
	@media screen and (max-width: 790px) {
		#Top_Wrap {
			display: none;
		}
	}

#logo img {
	width: 180px;
	margin-left: 30px;
}
	@media screen and (max-width:790px) {
		#logo img {
			width: 120px;
			margin-left: 20px;
		}
	}

#Sp_Wrap {
	display: flex;
	position: fixed;
	z-index: 0;
	top:0;
	left: 0;
}
	@media screen and (min-width: 791px) {
		#Sp_Wrap {
			display: none;
		}
	}
#Navi_Wrap {
	position: fixed;
	z-index: 0;
	top: 100px;
	left: 0;
	width: 100%;
}
	@media screen and (max-width: 790px) {
		#Navi_Wrap {
			display: none;
		}
	}

/*mail/shop/sns
---------------------------------------------------------------------------*/
/*pcボタン*/
.mssbtn {
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
	align-items:center;
}
.mssbtn ul {
	display: flex;
}
.mssbtn ul li {
	margin-right: 10px;
}
.mssbtn ul img {
	height: 30px;
}
	@media screen and (max-width: 790px) {
		.mssbtn {
			display: none;
		}
	}
/*spボタン*/
.sp-mssbtn {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.sp-mssbtn ul {
	display: flex;
}
.sp-mssbtn ul li {
	margin: 12px;
}
.sp-mssbtn ul img {
	width: 20px;
}
	@media screen and (min-width: 791px) {
		.sp-mssbtn {
			display: none;
		}
	}

/*ナビゲーション
---------------------------------------------------------------------------*/
@media only screen and (min-width: 791px) {
	.global_menu { /* メニュー全体のスタイル */
		width: 100%;
		position: relative;
		color: #666; /* 文字色 */
		background: #b3bcc7; /* 背景色 */
		text-align: center;
		visibility: visible;
		overflow-y: visible;
	}
	.global_menu ul {}
	.global_menu li {
		display: inline-block;
	}
	.global_menu a { /* 各項目のスタイル */
		color: #666; /* 文字色 */
		display: block;
		padding: 6px 32px;
	}
	.menu:hover > a {
		background: #d0def2;
	}
	.child_menu > li > a { /* 子項目のスタイル */
		font-size: 16px;
	}
	.child_menu > li > a:hover { /* 子項目のスタイル（ホバー時） */
		background: #d0def2;
	}
	.child_menu { /* 下層メニューのスタイル */
		width: 100%;
		position: absolute;
		top: 0; /* topを0に */
		left: 0;
		padding: 40px;
		color: #666; /* 文字色 */
		background: rgba(208,222,242,0.9);; /* 背景色 */
		visibility: hidden; /* 下層メニューを非表示 */
		transition: 1s top, 1.5s opacity; /* アニメーション設定 */
	}
	.menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
		top: 100%; /* 定位置に戻す */
		visibility: visible; /* 下層メニューを表示 */
	}
	.child_menu a:hover {
		color: #666;
	}
	.child_menu img {
		height: 22px;
		margin-right: 10px;
	}
}
	@media screen and (max-width: 790px) {
		.global_menu {
			display: none;
		}
	}
/*スマホ　グローバルナビ
---------------------------------------------------------------------------*/
@media only screen and (max-width: 790px) {
	.hamburger {
		margin: 20px auto 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	.hamburger .btn-gNav {
		position: fixed;
		top: 26px;
		right: 20px;
		width: 30px;
		height: 24px;
		z-index: 12;
		box-sizing: border-box;
		cursor: pointer;
		-webkit-transition: all 400ms;
		transition: all 400ms;
	}
	.hamburger .btn-gNav span {
		position: absolute;
		width: 100%;
		height: 2px;
		background: #000;
		border-radius: 10px;
		-webkit-transition: all 400ms;
		transition: all 400ms;
	}
	.hamburger .btn-gNav span:nth-child(1) {
		top: 0;
	}
	.hamburger .btn-gNav span:nth-child(2) {
		top: 10px;
	}
	.hamburger .btn-gNav span:nth-child(3) {
		top: 20px;
	}
	.hamburger .btn-gNav.open span:nth-child(1) {
		background: #666;
		top: 6px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.hamburger .btn-gNav.open span:nth-child(2), 
	.hamburger .btn-gNav.open span:nth-child(3) {
		top: 6px;
		background: #666;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.btn-gNav {
		display: none;
	}
	.gNav .gNav-menu {
		display: flex;
		justify-content: space-between;
	}
	.gNav .gNav-menu li {
		margin: 0 auto;
		padding: 0 5px;
	}
}
	@media screen and (max-width: 790px) {
		.btn-gNav {
			display: block;
		}
		.gNav {
			position: fixed;
			top: 0;
			right: -100%;
			width: 80%;
			height: 100%;
			background-color: rgba(208,222,242,0.9);;
			font-size: 16px;
			box-sizing: border-box;
			z-index: 2;
			padding-top: 50px;
			transition: .3s;
		}
		.gNav.open {
			right: 0;
		}
		.gNav .gNav-menu {
			padding: 0;
			width: 100%;
			height: 100%;
			display: block;
			flex-direction: column;
		}
		.gNav .gNav-menu li {
			width: 70%;
			padding: 15px;
			border-bottom: #666 1px solid;
		}
		.gNav .gNav-menu a {
			color: #666; /* 文字色 */
			display: block;
		}
		.gNav .list:not(:first-child) {
			margin-top: 10px;
			font-size: 16px;
		}
		.gNav .title {
			cursor: pointer;
			font-size: 16px;
			position: relative;
		}
		.gNav .title:before {
			position: absolute;
			content: '';
			top: 50%;
			right: 25px;
			height: 2px;
			width: 15px;
			background: #666;
			transform: rotate(90deg);
			transition: all .3s ease-in-out;
		}
		.gNav .title:after {
			position: absolute;
			content: '';
			top: 50%;
			right: 25px;
			height: 2px;
			width: 15px;
			background: #666;
			transition: all .3s ease-in-out;
		}
		.gNav .title.open:before {
			transform: rotate(180deg);
		}
		.gNav .title.open:after {
			opacity: 0;
		}
		.box {
			display: none;
			margin-left: 22px;
		}
	}

/*メインビジュアル
---------------------------------------------------------------------------*/
#Mv {
	margin-top: 60px;
	margin-right: calc(50% - 50vw);
 	margin-left: calc(50% - 50vw);
}
.mvpc {
	margin-top: 123px;
	display: block !important;
	width: 100%;
}
.mvsp { display: none !important;}

			@media only screen and (max-width: 790px) {
					.mvpc { display: none !important; }
					.mvsp { 
						margin-top: 60px;
						display: block !important;
						width: 100%;
				}
			}

/*タイトル
---------------------------------------------------------------------------*/
#Title { 
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	background-color: #eaf4f6;
}
.slavetitle {
	font-size: 22px;
	color: #666;
	margin-top: 146px;
	height: 160px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 790px) {
					.slavetitle {
						margin-top: 80px;
						height: 100px;
					}
			}

/*コンテンツ
---------------------------------------------------------------------------*/
#Container {
	background: #fff;
	padding-top: 20px;
}
.row {
	width: 90%;
	margin: 0 auto;
}
.contents {
	margin: 0 auto;
	max-width: 1020px;
	position: relative;
}
.inner {
	width: 100%;
	margin: 0 auto;
}

.imgtaC {
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 60px;
	margin-top: 60px;
	display: block !important;
	width: 600px;
	max-width: 80%;
}
/*幅
---------------------------------------------------------------------------*/
.full-width {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.w600 {
	display: block;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.w800 {
	display: block;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

/* 左右に横線
---------------------------------------------------------------------------*/
.heading {
	width: 800px;
	align-items: center;
	display: flex;
	font-size: 20px;
	margin-top: 80px;
	margin-bottom: 60px;
}
.heading::before, .heading::after {
	background-color: #000;
	content: "";
	height: 1px;
	flex-grow: 1;
}
.heading::before {
	margin-right: 80px;
}
.heading::after {
	margin-left: 80px;
}

@media only screen and (max-width: 790px) {
	.heading {
		width: 300px;
		font-size: 18px;
		margin-top: 40px;
 		border-bottom: 1px #222 solid;
		display: block;
		text-align: center;
	}
	.heading::before, .heading::after {
		display: none;
	}
}

/* お知らせ
---------------------------------------------------------------------------*/
ul.newsList {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	border-bottom: 1px dotted #999;
	padding: 10px 0;
}
ul.newsList li {
	display: block;
	margin: 10px 10px;
}
ul.newsList li:nth-child(-n + 3) {
	flex-basis: 90px;
}
ul.newsList li:nth-child(2) {
	color: #fff;
	font-size: 12px;
	padding: 3px 3px;
	text-align: center;
}
ul.newsList li:nth-child(3) {
	flex-basis: auto;
}

.cat-gyomu a{
	width: 100%;
	display:inline-block;
	line-height:20px;
	background: #ccc;
}

.cat-event a{
	width: 100%;
	display:inline-block;
	line-height:20px;
	background: #fdb7b7;
}

.cat-shohin a{
	width: 100%;
	display:inline-block;
	line-height:20px;
	background: #abd5ff;
}

.cat-saiyou a{
	width: 100%;
	display:inline-block;
	line-height:20px;
	background: #ebc8f8;
}

.cat-other a{
	width: 100%;
	display:inline-block;
	line-height:20px;
	background: #d8d7c7;
}

/*縦分割*/
.block .wrap {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.blocka {
	float: left;
	width: 30%;
}
.blocka img {
	width: 100%;
}
.blockb {
	float: right;
	width: 65%;
}
.blockb::after {
	content: "";
	clear: both;
	display: block;
}

@media screen and (max-width:790px){
	.blocka {
		display: block;
		width: 100%;
		order: 2;
	}
	.blocka img {
		width: 60%;
		align-items: center;
	}
	.blockb {
		display: block;
		width: 100%;
	}
}

ul.news {
	padding: 0;
	position: relative;
}

ul.news li {
	color: #333;
}
.onpage {
	display: block;
	padding: 10px;
	margin-bottom: 6px;
	color: #fff;
	background: #b3bcc7;
}
ul.news li a {
	display: block;
	padding: 10px;
	margin-bottom: 6px;
	background: #ececec;
}
ul.news li a:hover {
	color: #fff;
	background: #b3bcc7;
}

.info_title {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 16px;
	padding-left: 16px;
	display: block;
	width: 100%;
	background-color: #addce5;
	font-size: 18px;
	font-weight: 100;
	margin-bottom: 20px;
}
.info_date {
	margin-bottom: 20px;
}
.info_cate {
	width: 120px;
	display: block;
	color: #fff;
	font-size: 12px;
	padding: 3px 3px;
	text-align: center;
	margin-bottom: 20px;
}

.info_img {
	width: 600px;
	max-width: 100%;
}

/*テーブル（メール）
---------------------------------------------------------------------------*/
.table_mailform {
	width: 100%;
	border: none;
}
.table_mailform th, .table_mailform td {
	vertical-align: top;
	border: none;
	padding: 10px;
	white-space: nowrap;
}

@media screen and (max-width:790px){
	.table_mailform {
		width: 100%;
	}
	
	.table_mailform th{
		width: 100%;
		display: block;
		border: none;
	}
	.table_mailform td {
		width: 100%;
		display: block;
		border: none;
	}
	.table_mailform th,
	.table_mailform td {
		border: none;
	}
}

.cp_iptxt input {
	width: 100%; 
	padding: 10px 15px; 
	font-size: 16px;
	border-radius: 6px; 
	border: 0px solid #666; 
	box-sizing: border-box;
}

.cp_iptxt textarea{
	width: 100%; 
	padding: 10px 15px; 
	font-size: 16px;
	border-radius: 6px; 
	border: 0px solid #666; 
	box-sizing: border-box;
}

/*テーブル（枠なし）
---------------------------------------------------------------------------*/
.table_basic {
	width: 100%; 
	border-spacing: 20px;
}
.table_basic th, 
.table_basic td {
	font-weight: normal;
	padding: 10px;
	border-bottom: 1px solid #ccc;
	text-align: left;
}
@media screen and (max-width:790px){
	.table_basic {
		width: 100%;
	}
	.table_basic,
	.table_basic thead,
	.table_basic tbody,
	.table_basic tr,
	.table_basic th,
	.table_basic td {
		display: block;
	}
	.table_basic th{
		background-color: #f0f0f0;
	}
	.table_basic th,
	.table_basic td {
		border: none;
	}
}

.table_basic2 {
	width: 100%;
}
.table_basic2 th, 
.table_basic2 td {
	font-weight: normal;
	padding: 10px;
	border-bottom: 1px dashed #ccc;
	text-align: left;
	vertical-align: top;
}
.table_basic2 th{
	width: 100px;
}

@media screen and (max-width:790px){
	.table_basic2 {
		width: 100%;
	}
	.table_basic2,
	.table_basic2 thead,
	.table_basic2 tbody,
	.table_basic2 tr,
	.table_basic2 th,
	.table_basic2 td {
		display: block;
	}
	.table_basic2 th{
		width: 94%;
		background-color: #f0f0f0;
	}
	.table_basic2 th,
	.table_basic2 td {
		border: none;
	}
}

/* ピックアップ
---------------------------------------------------------------------------*/
.pickup{
	width: 100%;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

/* 企画フロー
---------------------------------------------------------------------------*/
.flow_design {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 0;
}
.flow_design ul {
	padding: 0;
}
.flow_design li {
	list-style-type: none;
}
.flow_design dd {
	margin-left: 80px;
	color: #333;
}

.flow {
	position: relative;
}
.flow::before {
	content: "";
	width: 15px;
	height: 100%;
	background: #eee;
	margin-left: -129px;
	display: block;
	position: absolute;
	top: 0;
	left: 120px;
	border-radius: 20px;
}
.flow > li {
	position: relative;
}
.flow > li:not(:last-child) {
	margin-bottom: 60px;
}
.flow > li .icon {
	width: 3em;
	height: 3em;
	line-height: 3;
	text-align: center;
	border-radius: 100vh;
	color: #fff;
	background: #b7daee;
	display: inline-block;
	margin-right: 1.3em;
}
.flow > li dl {
	padding-left: 60px;
	position: relative;
}
.flow > li dl::before,
.flow > li dl::after {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
}
.flow > li dl::before {
	width: 7px;
	height: 7px;
	margin-top: 6px;
	background: #b7daee;
	border-radius: 50%;
	left: -4px;
}
.flow > li dl::after {
	width: 40px;
	margin-top: 9px;
	border-bottom: 1px dashed #999;
	position: absolute;
	left: 5px;
}
.flow > li dl dt {
	color: #3399cc;
	font-size: 18px;
	display: flex;
	align-items: center;
}

	@media screen and (max-width:790px){
	.flow_design dd {
		margin-left: 68px;
		margin-top: -10px;
		color: #333;
	}
	.flow {
		position: relative;
	}
	.flow::before {
		display: none;
	}
	.flow > li {
		position: relative;
	}
	.flow > li:not(:last-child) {
		margin-bottom: 30px;
	}
	.flow > li .icon {
		width: 60px;
		height: 60px;
		line-height: 2.5;
		text-align: center;
		font-size: 24px;
		border-radius: 100vh;
		color: #fff;
		background: #b7daee;
		display: inline-block;
		margin-right: 0.3em;
	}
	.flow > li dl {
		padding-left: 0px;
		position: relative;
	}
	.flow > li dl::before,
	.flow > li dl::after {
		display: none;
	}
	.flow > li dl::before {
		display: none;
	}
	.flow > li dl::after {
		display: none;
	}
	.flow > li dl dt {
		color: #3399cc;
		display: flex;
		align-items: center;
	}
	}

	
.flowimg {
	float: right;
	width: 220px;
	margin-left: 20px;
}
	@media screen and (max-width:790px){
		.flowimg {
		display: none;
	}
	}
.flowimgsp {
	width: 160px;
	margin-top: 10px;
	margin-left: 68px;
}
	@media screen and (min-width:791px){
		.flowimgsp {
		display: none;
	}
	}

.flow01bg {
	background-image: url(../image/oem01b.png);
	background-repeat: no-repeat;
	background-position: 50% 40%;
	background-size: 130px auto;
}
.flow02bg {
	background-image: url(../image/oem02b.png);
	background-repeat: no-repeat;
	background-position: 65% 10%;
	background-size: 150px auto;
}
.flow03bg {
	background-image: url(../image/oem03b.png);
	background-repeat: no-repeat;
	background-position: 40% 10%;
	background-size: 60px auto;
}
.flow05bg {
	background-image: url(../image/oem05b.png);
	background-repeat: no-repeat;
	background-position: 40% 10%;
	background-size: 60px auto;
}
.flow06bg {
	background-image: url(../image/oem06b.png);
	background-repeat: no-repeat;
	background-position: 65% 10%;
	background-size: 80px auto;
}
.flow07bg {
	background-image: url(../image/oem07b.png);
	background-repeat: no-repeat;
	background-position: 14% 80%;
	background-size: 70px auto;
}

@media screen and (max-width:790px){
		.flow01bg {
		background-position: 100% 50%;
		background-size: 130px auto;
		}
		.flow02bg {
		background-position: 100% 80%;
		background-size: 160px auto;
		}
		.flow03bg {
		background-position: 100% 90%;
		background-size: 100px auto;
		}
		.flow05bg {
		background-position: 90% 10%;
		background-size: 100px auto;
		}
		.flow06bg {
		background-position: 0% 40%;
		background-size: 90px auto;
		}
		.flow07bg {
		background-position: 80% 50%;
		background-size: 80px auto;
		}
	}


/*事業案内
---------------------------------------------------------------------------*/
.busipc {
	margin: 0 auto;
	margin-top: 60px;
	display: block !important;
	width: 90%;
}
.busisp { display: none !important;}

			@media only screen and (max-width: 790px) {
					.busipc { display: none !important; }
					.busisp { 
						margin-top: 60px;
						display: block !important;
						width: 100%;
				}
			}


/* 会社フロー
---------------------------------------------------------------------------*/
.timeline {
	width: 100%;
	max-width: 1020px;
	background-color: #FFF;
	border-radius: 20px;
}

.timeline-list {
	padding: 20px 0;
}

.timeline-list-item {
	display: flex;
	line-height: 1.5;
	font-size: 16px;
}

.timeline-list-item .date {
	width: 20%;
	padding: 0 0 0 20px;
	color: #888888;
}
	@media only screen and (max-width: 790px) {
	.timeline-list-item .date {
		width: 30%;
		}
	}
	
.timeline-list-item .content {
	position: relative;
	width: 60%;
	padding: 0 20px 60px 30px ;
	border-left: 1px solid #aaaaaa;
}

.timeline-list-item .content::before {
	content: "";
	position: absolute;
	top: 0;
	left: -8px;
	width: 16px;
	height: 16px;
	background-color: #00c2bc;
	border-radius: 10px;
}

/* 会社活動
---------------------------------------------------------------------------*/
.companyact_pc {
	margin: 0 auto;
	display: block !important;
	width: 90%;
}
.companyact_sp { display: none !important;}

			@media only screen and (max-width: 790px) {
					.companyact_pc { display: none !important; }
					.companyact_sp { 
						display: block !important;
						margin-right: calc(50% - 50vw);
						margin-left: calc(50% - 50vw);
						width: 100%;
				}
			}

/*オンラインストア
---------------------------------------------------------------------------*/
.table_online {
	width: 100%;
	border-collapse: collapse;
}
.table_online th, 
.table_online td {
	padding-bottom: 10px;
	border-bottom: 1px solid #333;
	text-align: left;
}
.table_online th img{
	margin-top: 20px;
	width: 200px;
}

@media screen and (max-width:790px){
	.ttable_online {
		width: 100%;
	}
	.table_online,
	.table_online tr,
	.table_online th,
	.table_online td {
		display: block;
	}
	.table_online th{
		border: none;
		display:flex;
		justify-content:center;
	}
}

/*採用情報
---------------------------------------------------------------------------*/
.commentonnimg {
	position: relative;
	margin: 0 auto;
	margin-top: 20px;
	width: 100%;
}

.commentonnimg p {
	position: absolute;
	top: 0;/*画像の左上に配置*/
	margin: 4px;
	padding-right: 6px;
	padding-left: 6px;
	padding-top: 4px;
	padding-bottom: 4px;
	color: #666;
	background: #d0def2;
	font-size: 10px;
	line-height: 16px;
	border-radius: 8px;
}

.commentonnimg p span {
	display: block;
	padding-left: 4px;
}

.commentonnimg img {
	width: 100%;
}

/*部署ポイント*/
.boxpoint {
	position: absolute;
	margin: 0 auto;
	margin-top: 40px;
	border: solid 2px #000;
	max-width: 600px;
}
.boxpoint .box-title {
	position: absolute;
	display: inline-block;
	top: -27px;
	left: -2px;
	padding-top: 0;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 0;
	height: 25px;
	line-height: 25px;
	font-size: 17px;
	background: #000;
	color: #ffffff;
	font-weight: bold;
	border-radius: 5px 5px 0 0;
}
.boxpoint p {
	margin: 0; 
	padding: 8px;
	font-size: 28px;
}

/*インタビュー用*/

.qbox {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.qbox .box1 {
	width: 49%;
}
.qbox .box2 {
	width: 49%;
}
.qbox .box-margin {
	width: 2%;
}
@media only screen and (max-width: 790px) {
	.qbox {
		width: 100%;
	}
	.qbox .box1 {
		width: 100%;
		order: 2;
	}
	.qbox .box2 {
		width: 100%;
		margin-top: 0px;
	}
	.qbox .box-margin {
		display: none;
	}
}

/*ボタン（共通）
---------------------------------------------------------------------------*/
.Btn_01 {
	background: #d0def2;
	border-radius: 30px;
	margin: 0 auto;
	width: 80%;
	padding: 10px;
}

.Btn_01 a {
	color: #333;
	font-size: 24px;
}

@media only screen and (max-width: 790px) {
.Btn_01 a {
	font-size: 16px;
}
}

.Btn_02 {
	background: #fd818d;
	border-radius: 30px;
	margin: 0 auto;
	width: 50%;
	padding: 10px;
}

.Btn_02 a {
	color: #fff;
}

.Btn_03 {
	background: #d0def2;
	border-radius: 10px;
	text-align: center;
	width: 50%;
	padding: 6px;
}

.Btn_03 a {
	color: #fff;
}

/*---ボタン（more）---*/
.btn_more{
	position: relative;
	border: 1px solid #ccc;
	padding: 2px 0 4px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: #000;
	outline: none;
	transition: all .2s linear;
	width: 220px;
	margin:0 auto;
}

.btn_more:hover{
	background:#d1def1;
	color:#000;
}

.btn_more::after{
	content:"";
	position: absolute;
	top:14px;
	right: 20px;
	width: 6px;
	height: 6px;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .2s linear;
}

.btn_more:hover::before{
	right:16px;
}

.btn_more:hover::after{
	right:16px;
}

/* !Box
---------------------------------------------------------------------------*/
.box_column01 {
	margin: 0;
}
.box_column01 img {
	width: 100%;
}
	.box_column01 .col {
		float: left;
	}
	.box_column01.col2 .col {
		margin: 0 2.2% 20px 0;
		width: 48.9%;
	}
	.box_column01.col3 .col {
		margin: 0 2.2% 20px 0;
		width: 31.86%;
	}
	.box_column01.col3-1 .col {
		margin: 0 2.2% 20px 0;
		width: 31.86%;
	}
	.box_column01.col4 .col {
		margin: 0 2.2% 20px 0;
		width: 23.35%;
	}
.box_column01.col5 .col {
		margin: 0 2.2% 16px 0;
		width: 18.24%;
	}
	.box_column01.col6 .col {
		margin: 0 2.2% 16px 0;
		width: 14.83%;
	}
	.box_column01.col2 .col:nth-child(2n),
	.box_column01.col3 .col:nth-child(3n),
	.box_column01.col3-1 .col:nth-child(3n),
	.box_column01.col4 .col:nth-child(4n),
	.box_column01.col5 .col:nth-child(5n),
	.box_column01.col6 .col:nth-child(6n) {
		margin-right: 0;
	}
	.box_column01.col2 .col:nth-child(2n+1),
	.box_column01.col3 .col:nth-child(3n+1),
	.box_column01.col3-1 .col:nth-child(3n+1),
	.box_column01.col4 .col:nth-child(4n+1),
	.box_column01.col5 .col:nth-child(5n+1),
	.box_column01.col6 .col:nth-child(6n+1) {
		clear: both;
	}

@media screen and (max-width:790px){
	.box_column01  {
		max-width: 80%;
		margin: 0 auto;
	}
	.box_column01.col2 .col {
		margin: 0 0 12px;
		width: 100%;
	}
	.box_column01.col3 .col {
		margin: 0 0 12px;
		width: 100%;
	}
	.box_column01.col3-1 .col {
		margin: 0 0 12px;
		width: 100%;
	}
	.box_column01.col4 .col {
		margin: 0 0 12px;
		width: 100%;
	}
	.box_column01.col5 .col {
		margin: 0 0 12px;
		width: 100%;
	}
	.box_column01.col6 .col {
		margin: 0 2.2% 2px 0;
		width: 47%;
	}
}

/* スライダー
---------------------------------------------------------------------------*/
.slider{
	width:100%;
	margin:0;
}

/*矢印*/
.slider .slick-next{
	right:20px!important;
}
.slider .slick-prev{
	left:20px!important;
}
.slider .slick-arrow{
	width: initial!important;
	height: initial!important;
	z-index:2!important;
}
.slider .slick-arrow:before{
	font-size: 30px!important;
}
/*間隔*/
.slider .slick-slide{
	margin-right: 4px!important;
	margin-left: 4px!important;
}

/* 背景
---------------------------------------------------------------------------*/
.bgf7f6f3 {
	background-color: #f7f6f3;
}


/* 格子柄
---------------------------------------------------------------------------*/
.plaidpattern{
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
						linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
	background-size: 16px 16px;
	background-repeat: repeat;
	background-position: center center;
}

/* フッター
---------------------------------------------------------------------------*/
.footer { 
	padding-top: 30px;
	max-width: 1020px;
	margin: 0 auto;
	justify-content: space-between;
}
.footer a {
	color: #222;
	text-decoration: none;
}
.footer li {
	margin-bottom: 10px;
}
.footer li a:hover {
	text-decoration: none;
}
.footer li img {
	height: 30px;
	margin-top: 2px;
}
.footer .wrap {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer .wrap .box1 {
	width: 40%;
}
.footer .wrap .box2 {
	width: 30%;
	margin-top: 70px;
}
.footer .wrap .copyright {
	width: 100%;
	font-size: 12px;
	text-align: center;
	margin-bottom: 100px;
}

@media only screen and (max-width: 790px) {
	.footer .wrap p {
		margin-top: 30px;
	}
	.footer .wrap {
		width: 90%;
	}
	.footer .wrap .box1 {
		width: 90%;
		order: 2;
	}
	.footer .wrap .box2 {
		width: 90%;
		margin-top: 0px;
	}
	.footer .wrap .insta {
		text-align: center;
	}
	.footer .wrap .copyright {
		order: 2;
	}
}

/* !Fonts
---------------------------------------------------------------------------*/
.fwB {
	font-weight: bold;
}
.fcPink {
	color: #FF2C67;
}
.fz10 {
	font-size: 10px;
	line-height: 11px;
}
.fz12 {
	font-size: 12px;
	line-height: 14px;
}
.fz16 {
	font-size: 16px;
}
.fz16l {
	font-size: 16px;
	line-height: 40px;
}
.fz16h {
	font-size: 16px;
}
.fz14 {
	font-size: 14px;
}
.fz18 {
	font-size: 18px;
}
.fz22 {
	font-size: 22px;
	line-height: 38px;
}
.fz24 {
	font-size: 24px;
	line-height: 40px;
}
.fz32 {
	font-size: 32px;
	line-height: 46px;
}
@media screen and (max-width: 790px) {
	.fz24 {
		font-size: 16px;
	}
	.fz32 {
		font-size: 24px;
	}
	.fz16h {
		font-size: 14px;
	}
}

.lspace {
	letter-spacing: 1px;
}

/*質問Q*/
.qt {
	font-size: 24px;
	color: #00ccff;
}

/*上付き文字*/
.sup {
	vertical-align: super;
	font-size: smaller;
}
/* !line
---------------------------------------------------------------------------*/
.sitemapitem { 
	margin: 0 0 10px 0;
	padding: 0;
	border-bottom: 1px #222 solid;
}
.rinkaku {
	border: 1px #999 solid;
}
.line_bottom {
	width:100%;
	border-bottom: 1px solid #000;
	padding-top: 20px;
}

/* !Margin
---------------------------------------------------------------------------*/
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}

.ml30 {
	margin-left: 30px;
}

.mt10 {
	margin-top: 10px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt50 {
	margin-top: 50px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt80 {
	margin-top: 80px !important;
}
.mt100 {
	margin-top: 100px !important;
}
.mt120 {
	margin-top: 120px !important;
}

/* !Width
---------------------------------------------------------------------------*/
.w70per {
	width: 70% !important;
}
.w10per {
	width: 10% !important;
}
@media screen and (max-width:790px){
	.w10per {width: 16% !important;}
}
/* !角丸
---------------------------------------------------------------------------*/
.border_radius {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

/* !Inline Align 
---------------------------------------------------------------------------*/
	.taC {
		text-align: center !important;
	}
	.taR {
		text-align: right !important;
	}
	.ImgC {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	/* !Floats 
---------------------------------------------------------------------------*/
	.flL {
		display: inline;
		float: left;
	}
	.flR {
		display: inline;
		float: right;
	}

	/* テキスト均等
---------------------------------------------------------------------------*/
.tfit{
	text-align:justify;
}

/*くの字アロー
---------------------------------------------------------------------------*/
	.arrow {
		position: relative;
		display: inline-block;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.arrow::before {
		content: '';
		width: 4px;
		height: 4px;
		border-top: solid 2px #666;
		border-right: solid 2px #666;
		position: absolute;
		left: 10px;
	}
	.arrow.arrow-top::before {
		transform: rotate(-45deg);
		top: 10px;
	}
	.arrow.arrow-bottom::before {
		transform: rotate(135deg);
	}
	.arrow.arrow-left::before {
		transform: rotate(-135deg);
	}
	.arrow.arrow-right::before {
		transform: rotate(45deg);
	}

/* ==========================================================
Contact Form7
========================================================== */
#Area_Form {
	width: 100%;
	padding-bottom: 20px;
}

/*---テーブル（基本）---*/
.table_cf7 {
	width: 100%;
}
.table_cf7 th,
.table_cf7 td {
	vertical-align: top;
}
.table_cf7 th {
	text-align: left;
	font-weight: normal;
}
@media screen and (max-width:767px){
	.table_cf7 {
		display: block;
		width: 100%;
		margin: 0 auto;
	}
	.table_cf7,
	.table_cf7 thead,
	.table_cf7 tbody,
	.table_cf7 tr,
	.table_cf7 th,
	.table_cf7 td {
		width: 100%;
		display: block;
	}
	.table_cf7 th,
	.table_cf7 td {
		padding: 0;
	}
	.table_cf7 th {
		text-align: left;
	}
}

/* 入力項目を見やすくする */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 94%;
	padding: 4px 10px;
	border: 1px solid #d0d5d8;
	border-radius: 3px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
	height: 200px;
}

/* エラーメッセージを見やすくする */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	font-weight: 600;
}

/*チェックボックス改行*/
span.wpcf7-list-item {
	display: block;
}

/*「必須」文字デザイン*/
.required{
	color: #e60039;
	margin-left: 3px;
}

/*「認証」文字デザイン*/
.check{
	display: block;
	width: 100%;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #ccc;
	padding: 20px 0 26px;
}

/*---ボタン---*/
input[type='submit'] {
	display: block;
	width: 36%;
	margin-left: auto;
	margin-right: auto;
	height: 40px;
	text-align: center;
	text-decoration: none;
	background: #fd818d;
	color: #000;
	line-height: 40px;
	overflow: hidden;
	font-size: 18px;
	border: none;
	border-radius: 30px;
}

input[type='submit']:hover {
	color: #000;
	text-decoration: none;
	background: #f75767;
	transition: all .5s ease;
}

/* ==========================================================
PageNavi
========================================================== */
.wp-pagenavi
	margin: 20px 0;
	font-size: 12px;
}
.wp-pagenavi a {
	color: #000;
}
.pages {
	margin-right: 20px;
}
.wp-pagenavi .current,
.wp-pagenavi a.page {
	margin: 0 6px 6px 0;
	display: inline-block;
	border: solid 1px #eee;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
}
.wp-pagenavi .current {
	border: none;
	background: #d0def2;
	color: #333;
}
.wp-pagenavi a.page:hover {
	background: #d0def2;
	color: #333;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
	margin-right: 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	display: none;
}

/* ==========================================================
エフェクト
========================================================== */
/*フェードイン*/
.fadein {
	opacity: 0;
	transform: translateY(60px);
	transition: all 1s;
}

/*拡大*/
.img-frame{
	width: 100%;
	height: 100%;
}

.img-frame img{
	transition: 0.3s;
}

.img-frame img:hover{
	transform:scale(1.6,1.6);
	transition:1s all;
}

/* ==========================================================
ピックアップ 設定
========================================================== */
/*マージン調整*/
#cont_pick .wp-block-image {
	margin-bottom: 0;
}

#cont_pick .wp-block-column p {
	margin: 0;
}

#cont_pick .wp-block-heading {
	margin: 0;
}

/*見出し*/
#cont_pick h1 {
	font-size: 48px;
	line-height: 1.4em;
}

#cont_pick h2 {
	font-size: 36px;
	line-height: 1.3em;
}

#cont_pick h3 {
	font-size: 24px;
	line-height: 1.2em;
}

@media only screen and (max-width: 790px) {
	#cont_pick h1 {
		font-size: 28px;
	}
	#cont_pick h2 {
		font-size: 24px;
	}
	#cont_pick h3 {
		font-size: 20px;
	}
}

.line-height36{
  line-height:36px;
}