@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,
.our-policy,
.policy {
	width: 1000px;
	text-align: center;
	margin: 0 auto;
}

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

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

.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; */
	height: auto;
	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: 20vw;
	max-width: 240px;
	height: 100%;
	float: left;
	text-align: left;
	padding-left: 1rem;
}

#logo img {
	width: 100%;
}

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

.drawer {
	width: 100vw;
	height: auto;
}

.drawer-hidden,
.fortop {
	display: none;
}

.drawer-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

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

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

.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://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,
.Pol-TOP-image,
.WS-TOP-image {
	width: 100vw;
	height: 500px;
	margin-bottom: 72px;
	background-size: cover;
	background-position: center center;
}

.TOP-image {
	padding-top: 250px;
	background-color: #666;
	text-align: center;
	align-items: center;
	justify-content: center;
}

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

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

.explain-01 {
	display: flex;
	justify-content: center;
	margin-bottom: 54px;
}

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

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

.catch-01 {
	font-size: 28px;
	line-height: 3.5em
}

.detail-01 {
	line-height: 2.0em
}

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

.explain-02 {
	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 {
	position: relative;
}

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

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

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


.fac-img {
	width: 700px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 0;
}

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

.factory-Separated {
	height: 500px;
}

.foot-image {
	width: 100%;
	padding-top: 250px;
	height: 550px;
	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: 23%;
}

.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 {
	padding-top: 250px;
	background: #666 url("../images/top-pol.jpg") no-repeat;
	background-attachment: fixed;
	background-size: cover;
	text-align: center;
	position: relative;
}

.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-bottom: 72px;
	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 {
	padding-top: 250px;
	background: #666 url("../images/top-ws.jpg") no-repeat;
	background-attachment: fixed;
	background-size: cover;
	text-align: center;
	position: relative;
}

.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 {
	width: 100vw;
	height: 750px;
	background: #666 url("../images/co-top.jpg") no-repeat;
	background-size: cover;
	text-align: center;
	position: relative;
}

.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 {
	display: flex;
	justify-content: center;
}

.co-bl-11 div {
	width: 45%;
	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 {
	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 {
	width: 100%;
}

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

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

.ggl-map {
    position: relative;
    width: 100%;
}
 
.ggl-map iframe {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: 70%;
}

/********** ↑ 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-explan,
.contact-ses {
	width: 900px;
	margin: 0 auto;
	font-size: 16px;
}

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

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

.contact-rec input {
	min-width: 650px;
	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;
}

.pos-no input {
	height: 2rem;
}

.op-inq textarea {
	min-width: 650px;
	height: 8rem;
}

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

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