@charset "utf-8";

/* google-fontを使いたい時には有効化 */
/* @import url('https://fonts.googleapis.com/*'); */

/********** ↓ リセットcss:デフォルトcss設定を削除 ↓ **********/
h1,
h2,
h3,
p,
ul,
li,
figure,
body {
    font-family: "ヒラギノ角ゴ ProN",
                "メイリオ",
                "ＭＳ Ｐゴシック",
                sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: #333;
	/* ここを変更する際は ”a” も一緒に同じフォントカラーに変更 */
}

a {
	text-decoration: none;
	color: #333;
}

a:hover {}

ul {
	list-style-type: none;
}

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

/********** ↓ 全体のページ幅 ↓ **********/
header,
main,
footer,
.products,
.factory {
	width: 100vw;
	text-align: center;
}

.explain-01,
.explain-02,
.ex-factory,
.policy {
	width: 100vw;
	text-align: center;
	margin: 0 auto;
}

/********** ↑ 全体のページ幅 ↑ **********/

/********** ↓ 共通ボタン設定 ↓ **********/
.btn-flm a {
	color: #FFF;
	z-index: 1000;
}

.btn {
	font-size: 22px;
	color: #FFF;
	display: inline-block;
	padding: 15px 110px;
	cursor: pointer;
	background-color: #F5BA90;
	font-weight: bold;
	border-radius: 5px;
	border: 1px solid #F5BA90;
}

.btn:hover {
	color: #333;
	background-color: #FFF;
}

/********** ↑ 共通ボタン設定 ↑ **********/

/********** ↑ リセットcss:デフォルトcss設定を削除 ↑ **********/

/********** ↓ index ↓ **********/
/******** ↓ header ↓ ********/
header {
	/* background-color: #F5E3D6; */
	border-bottom: 5px solid #E1A479;
	position: fixed;
	background: #fff;
	top: 0;
	z-index: 1000;
}

/* 謎のすき間対策 */
header div {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#logo {
	/* background-color: #F5E3D6; */
	width: 35VW;
	height: 100%;
	float: left;
	text-align: left;
	padding-left: 1rem;
}

#logo img {
	width: 100%;
}

.flex {
	display: flex;
	justify-content: flex-end;
}

.drawer-hidden {
	display: none;
}


@media screen and (min-width: 1000px) {
	.drawer-list {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.drawer-item {
		width: 13%;
		font-weight: bold;
		height: 3.7rem;
		text-align: center;
		border-left: 1px solid #999;
		position: relative;
	}

	.drawer-item a {
		display: block;
		padding: 19px 0px;
		text-align: center;
	}

	.drawer-item a::after {
		position: absolute;
		top: 0px;
		left: 0;
		content: '';
		width: 100%;
		height: 4px;
		background: #E1A479;
		transform: scale(0, 1);
		transform-origin: left top;
		transition: transform .3s;
	}

	.drawer-item a:hover::after {
		transform-origin: right top;
		transform: scale(1, 1);
	}
}


/* ↓ ハンバーガーメニュー ↓ */
/*参考サイト:https://yuntu-tek.com/hamburger-menu/*/
@media screen and (max-width: 999px) {

	/* ハンバーガーアイコンの設置スペース */
	.drawer-open {
		float: right;
		display: flex;
		height: 10vw;
		width: 10%;
		justify-content: center;
		align-items: center;
		position: relative;
		z-index: 100;
		/* 重なり順を一番上に */
		cursor: pointer;
		margin-right: 1rem;
	}

	/* ハンバーガーメニューのアイコン */
	.drawer-open span,
	.drawer-open span:before,
	.drawer-open span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background: #333;
		transition: 0.5s;
		position: absolute;
	}

	/* 三本線のうち一番上の棒の位置調整 */
	.drawer-open span:before {
		bottom: 8px;
	}

	/* 三本線のうち一番下の棒の位置調整 */
	.drawer-open span:after {
		top: 8px;
	}

	/* アイコンがクリックされたら真ん中の線を透明にする */
	#drawer-check:checked ~ .drawer-open span {
		background: rgba(255, 255, 255, 0);
	}

	/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
	#drawer-check:checked ~ .drawer-open span::before {
		bottom: 0;
		transform: rotate(45deg);
	}

	#drawer-check:checked ~ .drawer-open span::after {
		top: 0;
		transform: rotate(-45deg);
	}

	/* メニューのデザイン*/
	.drawer-content {
		width: 40vw;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		/* メニューを画面の外に飛ばす */
		z-index: 99;
		background: #F5E3D6;
		transition: .5s;
		padding-top: 13vw;
	}

	/* アイコンがクリックされたらメニューを表示 */
	#drawer-check:checked ~ .drawer-content {
		left: 60vw;
		/* メニューを画面に入れる */
	}

	.drawer-item {
		padding: 0.5rem 0;
	}
}

/* ↑ ハンバーガーメニュー ↑ */

/* ↓ サイトトップページへ戻るためのボタン設定 ↓ */
/*参考サイト:https://cotodama.co/pagetop/*/
#site_top {
	width: 105px;
	height: 80px;
	position: fixed;
	right: 0;
	bottom: 0;
	background: #333;
	opacity: 0.6;
	border-radius: 15px;
}

#site_top a {
	position: relative;
	display: block;
	width: 100px;
	height: 60px;
	text-decoration: none;
}

#site_top a::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -25px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

#site_top a::after {
	content: 'K.Kishimoto のトップへ戻る';
	font-size: 13px;
	color: #fff;
	position: absolute;
	top: 30px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

/* ↑ サイトトップページへ戻るためのボタン設定 ↑ */

/******** ↑ header ↑ ********/

/******** ↓ main ↓ ********/
.header-Separated {
	height: 64px;
}

.TOP-image {
	width: 100vw;
	height: 430px;
	padding-top: 250px;
	background-color: #666;
	text-align: center;
	background-position: center center;
	background-size: cover;
	align-items: center;
	justify-content: center;
}

.TopLogo-img {
	width: 65%;
	margin: 0 auto;
}

.TOP-image p {
	color: #fff;
	font-size: 32px;
}

.our-policy {
	width: 100%;
	margin-bottom: 72px;
	background-color: #FFF;
}

.explain-01 {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-top: 72px;
	margin-bottom: 54px;
}

.explain-01 div {
	width: 45%;
	text-align: left;
}

.catch-01 {
	font-size: 2rem;
	line-height: 3.5em;
}

.detail-01 {
	line-height: 2.0em;
	min-width: 0;
}

.products {
	padding: 72px 0;
	background-color: #F9F4F0;
}

.explain-02 {
	width: 100%;
	display: flex;
	justify-content: space-around;
	margin-bottom: 54px;
}

.ex-box-02 {
	margin: 0 2rem;
}

.pro-img img {
	width: 100%;
	position: relative;
	top: 8px;
}

.ex-02 {
	background-color: #fff;
	padding-bottom: 1rem;
}

.pro-p {
	line-height: 2.5em
}

.factory {
	padding: 72px 0;
	background-color: #FFF;
}

/******** ↓ ボタンが潜り込むことへの対策 ↓ ********/
.ex-factory {
	width: 100%;
	position: relative;
	/* position: absoluteの効果で空いたスペースに潜り込ませないために空白作成 */
	height: 70vh;
}

@media screen and (max-width: 900px) {
	.ex-factory {
		width: 100%;
		position: relative;
		/* position: absoluteの効果で空いたスペースに潜り込ませないために空白高さ調整 */
		height: 485px;
	}
}

@media screen and (max-width: 750px) {
	.ex-factory {
		width: 100%;
		position: relative;
		/* position: absoluteの効果で空いたスペースに潜り込ませないために空白高さ調整 */
		height: 400px;
	}
}

/******** ↑ ボタンが潜り込むことへの対策 ↑ ********/

.ex-03 {
	background-color: #F9F4F0;
	width: 70vw;
	text-align: left;
	position: absolute;
	left: 0vw;
	top: 10vw;
	padding: 2rem 2rem;
	z-index: 100;
}

.ex-03 h2 {
	line-height: 3rem;
}

.ex-03 p {
	line-height: 2.0rem;
}


.fac-img {
	width: 85vw;
	position: absolute;
	top: 0vw;
	right: 0VW;
	z-index: 0;
}

.fac-img img {
	width: 100%;
}

.factory-Separated {}

.foot-image {
	width: 100%;
	height: 500px;
	padding-top: 150px;
	background: #666 url("../images/foot.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	text-align: center;
	position: relative;
	z-index: 0;
}

.contact {
	margin-bottom: 1rem;
}

.contact img {
	width: 40%;
}

.contact p {
	color: #FFF;
}

.btn-foot a {
	color: #FFF;
}

.btn-02 {
	color: #FFF;
	display: inline-block;
	padding: 15px 160px;
	cursor: pointer;
	border-radius: 5px;
	border: 1px solid #FFF;
}

.btn-02:hover {
	color: #E1A479;
	background-color: #FFF;
}

.sns-btn p {
	color: #FFF;
	line-height: 2rem;
	margin-bottom: 1.5rem;
}

/******** ↑ main ↑ ********/

/******** ↓ footer ↓ ********/
/****** ↓ snsボタン設定 ↓ ******/
/* 参考サイト ”https://moonnote.hateblo.jp/entry/2015/12/03/200718” */
.sns-btn {
	text-align: center;
	padding: 56px 0;
}

.follow-me {
	display: flex;
	/* flex使う場合はこれで中身を中央に寄せる */
	justify-content: center;
	margin: 0 auto;
	list-style: none;
	margin: 0 0 -8px;
	overflow: hidden;
	padding: 0;
}

.follow-me li {
	margin: 0 12px 12px 0;
	padding: 0;
}

.follow-me li a::before {
	background-color: #ccc;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #333;
	display: inline-block;
	font-family: FontAwesome;
	font-size: 16px;
	height: 44px;
	/* Button height */
	line-height: 44px;
	/* Button height */
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	text-align: center;
	width: 44px;
	/* Button width */
}

.follow-me li a:hover::before {
	color: #fff;
}

.follow-me li a[href*="facebook.com"]::before {
	content: "\f09a";
}

.follow-me li a[href*="twitter.com"]::before {
	content: "\f099";
}

.follow-me li a[href*="instagram.com"]::before {
	content: "\f16d";
}

.follow-me li a[href*="facebook.com"]:hover::before {
	background-color: #3b5998;
}

.follow-me li a[href*="twitter.com"]:hover::before {
	background-color: #55acee;
}

.follow-me li a[href*="instagram.com"]:hover::before {
	background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	/*インスタグラムアイコンのグラデーション*/
}

/****** ↑ snsボタン設定 ↑ ******/

.copyright {
	background-color: #F5E3D6;
	text-align: center;
	margin: 0 auto;
	padding: 15px 0 20px;
}

.copyright small {
	font-weight: bold;
	color: #555;
}

/******** ↑ footer ↑ ********/
/********** ↑ index ↑ **********/

/********** ↓ policy ↓ **********/
.Pol-TOP-image,
.WS-TOP-image,
.CO-TOP-image {
	width: 100vw;
	height: 430px;
	padding-top: 250px;
}

.Pol-TOP-image {
	background: #666 url("../images/top-pol.jpg") no-repeat;
	background-attachment: fixed;
	text-align: center;
	background-position: center center;
	background-size: cover;
	align-items: center;
	justify-content: center;
}

.about-Pol,
.about-WS {
	font-size: 40px;
	margin-bottom: 54px;
	display: inline-block;
	border-bottom: 6px solid #E1A479;
	padding-bottom: 8px;
}

.Pol-TOP-image h1 {
	color: #FFF;
	font-size: 54px;
	line-height: 6rem;
}

.policy {
	padding: 72px 0;
	background-color: #FFF;
}

.pol-bl-01 {
	display: flex;
	justify-content: center;
}

.pol-bl-01 div {
	width: 50%;
	margin: 0 3rem;
}

.pol-image img {
	width: 100%;
}

.catch-11 {
	font-size: 16px;
	line-height: 3rem;
}

.detail-11 {
	text-align: left;
}

.WS-TOP-image {
	background: #666 url("../images/top-ws.jpg") no-repeat;
	background-attachment: fixed;
	text-align: center;
	background-position: center center;
	background-size: cover;
	align-items: center;
	justify-content: center;
}

.WS-TOP-image h1 {
	color: #FFF;
	font-size: 48px;
	line-height: 6rem;
}

/********** ↑ policy ↑ **********/


/********** ↓ gallery ↓ **********/
.gal-main {
	background-color: #F9F4F0;
}

.gallery {
	width: 600px;
	text-align: center;
	margin: 0 auto;
	padding: 54px 0;
}

.about-gal {
	font-size: 40px;
	margin-bottom: 54px;
	display: inline-block;
	border-bottom: 6px solid #E1A479;
	padding-bottom: 8px;
}

.gal-bl-01 {
	margin-bottom: 56px;
}

.gal-bl-01 li {
	display: block;
}

/******** ↓ slider jquery ↓ ********/
/*左右の矢印の色を変える*/
.slick-prev:before,
.slick-next:before {
	color: #000;
}

/*左右の矢印の位置を変える*/
.slick-next {
	right: 20px;
	z-index: 99;
}

.slick-prev {
	left: 15px;
	z-index: 100;
}

/*スライド数のドットの色を変える*/
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
	color: #fff;
}

/*スライド画像の横幅可変*/
img {
	max-width: 100%;
	height: auto;
}

/******** ↑ slider jquery ↑ ********/
/********** ↑ gallery ↑ **********/

/********** ↓ corp-prof ↓ **********/
.header-Separated {
	height: 64px;
}

.CO-TOP-image {
	background: #666 url("../images/co-top.jpg") no-repeat;
	text-align: center;
	background-position: center center;
	background-size: cover;
	align-items: center;
	justify-content: center;
}

.corp-prof {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.corp-prof {
	margin: 72px 0;
}

.co-h {
	font-size: 40px;
	margin-bottom: 54px;
	display: inline-block;
	border-bottom: 6px solid #E1A479;
	padding-bottom: 8px;
}

.co-bl-11 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.co-bl-11 div {
	margin: 0 1rem;
}

.corp-prof-ses {
	width: 900px;
	text-align: center;
	margin: 0 auto;
}

.corp-prof-ses theader {
	display: block;
	text-align: right;
	padding: 1.5rem 0;
}

.corp-prof-tab {
	width: 100%;
	border-collapse: collapse;
}

.corp-prof-tab,
.corp-prof-tab th,
.corp-prof-tab td {
	border: 1px solid #999;
}


.corp-prof-tab th,
.corp-prof-tab td {
	padding: 14px 15px 16px;
	text-align: left;
}

.corp-prof-tab {}

.corp-prof-tab th {
	width: 25%;
	background-color: #F5E3D6;
}

.corp-prof-tab td {
	width: 70%;
}

.ggl-map {
    position: relative;
    width: 100%;
    padding-top: 75%; /* = height ÷ width × 100 */
}
 
.ggl-map iframe {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 85%;
}

/********** ↑ corp-prof ↑ **********/

/********** ↓ contact ↓ **********/
.contact-f {
	margin: 72px 0;
}


.contact-h h1 {
	font-size: 40px;
	margin-bottom: 54px;
	display: inline-block;
	border-bottom: 6px solid #E1A479;
	padding-bottom: 8px;
}

.contact-h,
.contact-ses {
	width: 90%;
	margin: 0 auto;
	font-size: 16px;
}

.contact-ses form {
	width: 100%;
}

.contact-rec,
.op-inq {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 1.5rem 0;
	border-bottom: 1px solid #ccc;
}

.contact-rec label,
.op-inq label {
	width: 25%;
}

.contact-rec input {
	width: 65%;
	min-width: 500px;
	height: 2rem;
}

.contact-purp,
.contact-category {
	display: flex;
	padding: 1.5rem 0;
}

.contact-purp div,
.contact-category div {
	width: 25%;
}

.contact-purp label,
.contact-category label {
	margin-right: 1rem;
}

.op-inq textarea {
	width: 65%;
	min-width: 500px;
	height: 8rem;
}

#contact-check {
	text-align: center;
	margin: 48px auto 0;
}

#submit {
    /* iphoneでsubmitボタンのcssが効くようにデフォルト設定を明示的にクリア */
	-webkit-appearance: none;
	border-radius: 0;

	width: 100%;
	padding: 10px 60px;
	font-size: 22px;
	color: #FFF;
	display: inline-block;
	cursor: pointer;
	background-color: #F5BA90;
	font-weight: bold;
	border-radius: 5px;
	border: 1px solid #F5BA90;
}

#submit:hover {
	color: #333;
	background-color: #FFF;
}

/********** ↑ contact ↑ **********/
