@charset "UTF-8";
/* CSS Document */
@media (min-width: 960px){
	.sptb,.navToggle{
		display: none !important;
	}	
}
@media (min-width: 750px){
	.sp{
		display: none !important;
	}	
}
body{
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	background-color: #333;
	color: #fff;
}

a{
	text-decoration-line: none;
}
a:link{
	text-decoration: none;
}
ul li,ol li{
	list-style-type: none;
}
p{
	line-height: 200%;
}
/* スペース調整======================================== */
.w960{
	max-width: 960px;
	margin: auto;
}
.h50{
	height: 50px;
}
.h30{
	height: 30px;
}
.bg_light{
	background:url("../img/bg_black02.jpg") repeat-y; /* 皮革黒 */
	background-size: 100%;
}
.bg_dark{
	background:#000; /* 黒 */
}
.bg_in_b{
	background:#333;
	padding: 20px;
}
.bg_in_w{
	background: #f5f5f5;
	padding: 20px;
}

/* Loading背景画面設定*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background:url("../img/bg_brown.jpg");
	background-size: cover;
	text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width: 90%;
	max-width:300px;
}

/* ヘッダー　======================================== */
header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	
}
.site-header{
	background: rgba(51,51,51,0.0);
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items: center;
    transition: .5s;
    width: 100%;
	height: 70px;
}
.site-header.transform{
    background: rgba(51,51,51,1.0);

}
.site-header h1{
	line-height: 60px;
	vertical-align: middle;
	position: relative;
	transition: .5s;
	font-size: 1rem;
}
.site-header h1 img{
	width: auto;
	height: 60px;
	vertical-align: middle;
	padding-left: 15px;
	padding-right: 5px;
	transition: .5s;
}
.site-header h1 a{
	color: #000;
}
/* ヘッダーナビゲーション　================================================== */
.site-header nav{
	opacity: 0;
	transition: .5s;
	pointer-events: none;
}
.site-header.transform nav{
	opacity: 1;
	pointer-events:auto;
}
.site-header nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
}
.site-header nav ul li{
	margin: auto;
	padding: 0 12px;
	line-height: 70px;
	font-size:1em;
	position: relative;
	overflow: hidden;
	
}
.site-header nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 2px 2px 5px #000;
}
.site-header nav ul li ::after{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background:rgba(209,17,0,0.0);
	content: '';
	transition: transform 0.35s;
	transform: translate3d(-100%,0,0);
}
.site-header nav ul li:hover ::after{
	background:rgba(209,17,0,1.0);
	transform: translate3d(0,0,0);
}

/* ヘッダー問い合わせボタン　================================================== */
.btn_header{
	display: inline-block;
	text-align: center;
	width: 170px;
	background-color:rgba(255,255,255,0.0);
	color: #fff;
	padding: 0.5em;
	text-shadow: 2px 2px 5px #000;
	position: relative;
	border: solid 1px #fff;
	border-radius: 30px;
	margin-right: 20px;
}
.btn_header::after{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	transition: .5s;
}
.btn_header:hover{
	color: #000;
	text-shadow: 2px 2px 5px #fff;
	background:rgba(255,255,255,1.0);
	transition: .5s;
}
.btn_header:hover::after{
	right: 10px;
	transition: .5s;
}

/* スライダー　======================================== */
.slide_wrap{
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	background: url("../img/bg_black.jpg") no-repeat;
	background-size: cover;
}
.slider{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	-ms-overflow-style: none;
}
.slider02{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	-ms-overflow-style: none;
}
.slide_belt{
	width: 100%;
	height: 300px;
	
}
.top_copy{
	position: absolute;
	top:40%;
	left:50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 10;
}
img.top_copy{
	width: 300px;
}
img.top_deco{
	position: absolute;
	top:40%;
	left:50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 9;
	width: 90%;
	max-width: 800px;
	mix-blend-mode: screen;
}

.top_nav{
	position: absolute;
	bottom: 6%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 960px;
	z-index: 200;
}
.top_nav nav ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50%;
	min-height: 300px;
}
.li_top{
	align-self:flex-start;
}
.li_center{
	align-self:center;
}
.li_bottom{
	align-self:flex-end;
}
.top_nav nav ul li{
	position: relative;
	padding:10px;
	width: 150px;
	height: 150px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
	line-height: 130px;
	border-radius: 50%;
	background: #000;
	transition: .5s;
	
}
.top_nav nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	outline: none;
	border: 0 solid #000;
	border-radius: 50%;
}
.top_nav nav ul li::before{
	position: absolute;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	border: 2px solid rgba(255,255,255,0.49);
	border-radius: 50%;
	content: '';
	-webkit-transform: scale(0.1);
	transform: scale(0.1);
	transition: .5s;
}
.top_nav nav ul li:hover::before{
	opacity: 0;
	-webkit-transform: scale(1.8);
	transform: scale(1.8);
	cursor: pointer;
	pointer-events: none;
}



/* 最大表示幅枠　======================================== */
.wrapper{
	max-width: 1920px;
	margin: auto;
	padding: 0;
}
/* 各コンテンツ枠　======================================== */
.contents{
	padding: 50px 0;
}
.contents_in{
	max-width: 960px;
	margin: auto;
}

.photo_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.photo_flex div{
	width: 100%;
	padding: 10px;
}
.photo_flex div img{
	width: 100%;
}

/* ボタン　================================================== */
.button_wrap{
	width: 250px;
	margin: 0 0 0 auto;
}
.button_01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background-image: url("../img/texture_gold.jpg");
	background-position: left top;
	background-size: 200%;
	color: #fff;
	padding: 2em;
	position: relative;
	border-radius: 50%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	transition: .5s;
	border: solid 1px #333;
	box-shadow: 2px 2px 5px #000;
	text-shadow: -2px -2px 1px #333;
}
.button_01::after{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	transition: .5s;
}
.button_01:hover{
	background-position: right top;
	transition: .5s;
}
.button_01:hover::after{
	right: 10px;
	transition: .5s;
}

/* 見出し01　==================== */
.txt_box{
	width: 100%;
	height: 5rem;
	position: relative;
	padding-left: 15px;
}
.txt_box h2{
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 1.5em;
	vertical-align: middle;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
}
.txt_box h3{
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 4em;
	vertical-align: middle;
	color: rgba(0,0,0,0);
	background-image: url("../img/texture_gold.jpg");
	-webkit-background-clip: text;  
	opacity: 0.4;
	font-family: 'Noto Serif JP', serif;
}

/* 見出し 黒背景　==================== */
.txt_box02{
	width: 100%;
	height: 5rem;
	position: relative;
}
.txt_box02 h2{
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 1.5em;
	vertical-align: middle;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
}
.txt_box02 h3{
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 4em;
	vertical-align: middle;
	color: rgba(0,0,0,0);
	background-image: url("../img/bg_brown.jpg");
	-webkit-background-clip: text;  
	opacity: 0.7;
	font-family: 'Noto Serif JP', serif;
}
/* 新着情報 ================================================== */
.news_wrap{
	background:url("../img/bg_black.jpg");
	background-size: cover;
	padding: 30px 0;
}
.news{
	max-width: 900px;
	height: 150px;
	overflow:auto;
	margin: auto;
	display: flex;
	justify-content: space-around;
	padding: 20px;
}
.news h3{
	font-size: 18px;
	width: 150px;
	margin-top: auto;
	margin-bottom: auto;
	text-align: center;
	color:#fff;
	font-family: 'Noto Serif JP', serif;
}
.news_in{
	width: 100%;
	height: 100%;
	max-width: 850px;
	margin: 0 ;
	padding: 10px;
	color: #fff;
}

/* 挨拶　==================== */
.catch{
	font-size: 2.2em;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 2px 2px 10px #000;
}
.catch::first-letter{
	font-size: 200%;
}
.bgimg01{
	background:url("../img/bg_greeting_b.jpg")no-repeat;
	background-size: cover;
	background-position: center;
}
.greeting_wrap{
	width: 100%;
}

.greeting_wrap .greeting_txt{
	width: 55%;
	margin: 0 0 0 auto;
}
.greeting_wrap .greeting_txt p{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	margin-bottom: 20px;
	margin-top: 50px;
	line-height: 200%;
	min-height: 300px;
}
/* ギャラリー============================================================ */
.carousel_wrap{
	width: 100%;
	margin: auto;
	background:#000;
	padding: 50px 0;
}
.carousel_g {
	width: calc(100% - 100px);
	padding: 0;
	margin: auto;
}
.carousel_g div {
	overflow: hidden;
	margin: auto;
}
.carousel_g div img {
	width: 100%;
	height: 250px;
	padding: 10px;
	object-fit: cover;
}
.carousel_g .slick-next {
	right: -40px;
	z-index: 50;
}
.carousel_g .slick-prev {
	left: -40px;
	z-index: 50;
}

/* 取扱製品　================================================== */
.flex_item{
	display: flex;
	flex-wrap: wrap;
	color: #000;
}
.flex_item figure{
	width: calc(100% / 2 - 20px);
	padding: 15px;
	background:#f5f5f5;
	margin: 10px;
	display: flex;
	align-content: stretch;
	justify-content:flex-start;
}
.flex_item figure img{
	width: 200px;
	height: 200px;
	object-fit: cover;
}
.flex_item figure figcaption{
	padding: 10px 10px 10px 15px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.flex_item figure figcaption h3{
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 1.4rem;
	font-family: 'Noto Serif JP', serif;
	vertical-align: bottom;
	line-height: 100%;
}
.flex_item figure figcaption h3 span{
	font-size: 60%;
}
.flex_item figure figcaption p{
	display: inline-block;
	color: #666;
	min-height: 3em;
}

.flex_item figure figcaption button{
	display: inline-block;
	text-align: center;
	width: 100%;
	background-color:rgba(0,0,0,0.0);
	color: #000;
	padding: 0.25em;
	position: relative;
	border: solid 1px #000;
	font-size: 0.9em;
}
.flex_item figure figcaption button::after{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	transition: .5s;
}
.flex_item figure figcaption button:hover{
	color: #fff;
	background:rgba(0,0,0,1.0);
	transition: .5s;
}
.flex_item figure figcaption button:hover::after{
	right: 10px;
	transition: .5s;
}
/* オーダーメイド案内　================================================== */
.bgimg02{
	background:url("../img/bg_img03bl.jpg")no-repeat;
	background-size: cover;
	background-position: center;
}
.contents_txt{
	width: 55%;
	margin: 0 0 0 auto;
}
.contents_txt p{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 20px;
	margin-top: 50px;
	line-height: 200%;
	min-height: 200px;
	text-shadow: 2px 2px 5px #000;
}


/* 感染症対策　================================================== */
.taisaku h3{
	font-size: 1.5em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

.taisaku_flex{
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	margin: 1em 0;
}
.taisaku_flex img{
	width: 150px;
	padding: 10px;
	background:#fff;
	border-radius: 50%;
}
.taisaku_flex p{
	text-align: center;
	font-weight: 500;
}

/* オンラインショップ案内================================================== */
.bgimg03{
	background:url("../img/item06.jpg"),url("../img/bg_black.jpg");
	background-repeat: no-repeat;
	background-size: auto 90%,cover;
	background-position:10% center, left center;
	padding: 50px 10px;
}
.rec_wrap .rec_txt{
	width: 60%;
	margin: 0 0 0 auto;
}
.rec_wrap .rec_txt h2{
	color: #fff;
}
.rec_wrap .rec_txt p{
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 20px;
	margin-top: 50px;
	line-height: 200%;
}

/* リンクバナー　================================================== */
.banner_wrap{
	padding: 50px 10px;
}
.banner_link{
	margin:auto;
	max-width: 700px;
	overflow: hidden;
}
.banner_link img{
	width: 100%;
	transition-duration: 0.5s;
	vertical-align: middle;
}

.banner_link:hover img{
	transform: scale(1.1);
	transition-duration: 0.5s;
}

/* フッター部分　================================================== */
footer{
	background: url("../img/bg_black.jpg");
	background-size: cover;
	margin-bottom: 0;
	padding-top: 30px;
}
footer nav{
	max-width: 800px;
	margin: auto;
}
footer nav ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
footer nav ul li{
	font-size: 0.9em;
	font-weight: 700;
	padding: 1em;
	text-align: center;
}
footer nav ul li a{
	color:#fff ;
	padding-bottom: 10px;
	transition:all .5s ease-in;
}
footer nav ul li a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f0da';
	padding: 5px;
}
footer nav ul li a:hover{
	color: #decb5a;
	transition:all .5s ease-in;
}
.footer_in h2 img{
	width: 250px;
	padding: 10px 0;
}
.footer_in{
	max-width: 900px;
	margin: auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 50px 20px;
}
.footer_in p{
	color: #fff;
	line-height: 180%;
}
.footer_in p.phone_buttom{
	text-align: center;
	font-size:1.8em;
	padding: 20px 0;
	line-height: 180%;
	font-family: 'Noto Serif JP', serif;
}
.footer_in p.phone_buttom a{
	color: #fff;
}
.footer_in p.phone_buttom a:hover{
	color: #d11100;
	transition:all .5s ease-in;
}
footer small p{
	color: #fff;
	text-align: center;
	background-color: #000;
	padding: 1em 0;

}
/* footerお問い合わせボタン　================================================== */
.footerbtn_wrap{
	width: 100%;
}
.footerbtn{
	display: inline-block;
	text-align: center;
	width: 100%;
	background-color:rgba(255,255,255,0.0);
	color: #fff;
	padding: 0.5em;
	position: relative;
	border: solid 1px #fff;
	border-radius: 30px;
}
.footerbtn::after{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	transition: .5s;
}
.footerbtn:hover{
	color: #000;
	background-color:rgba(255,255,255,1.0);
	transition: .5s;
}
.footerbtn:hover::after{
	right: 10px;
	transition: .5s;
}

/* サブページタイトル ================================================== */

.subtitle{
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;
	-ms-overflow-style: none;
}
.sub_copy{
	position: absolute;
	top:50%;
	left:50%;
	transform: translateX(-50%);
	z-index: 10;
	width: 90%;
	text-align: center;
}
.sub_copy h2{
	font-size: 1.5em;
	vertical-align: middle;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
}
.sub_copy h2 span{
	font-size: 250%;
	vertical-align: middle;
	color: rgba(0,0,0,0);
	background-image: url("../img/texture_gold.jpg");
	-webkit-background-clip: text;  
	opacity: 1.0;
	font-family: 'Noto Serif JP', serif;
}
/* 製品ギャラリー ================================================== */
.shop_wrap{
	display: flex;
	justify-content: flex-start;
	max-width: 1200px;
	margin: auto;
}
.shop_menu{
	width: 150px;
	height: 50%;
	position: sticky;
	top:70px;
	background:#333;
	align-self: stretch;
}
.shop_menu ul li{
	font-size: 1em;
    list-style-type: none;
    width: 100%;
	border-bottom: solid 1px #666;
}
.shop_menu ul li a{
	display: block;
	width: 100%;
	padding: 0.5em 1em;
	color: #fff;
	border-left: solid 5px #decb5a;
}
.shop_menu ul li a:hover{
	background:#666;
}
.shop_menu ul li.menu_arrow{
	display: none;
}


.contents_shop{
	margin-left: 10px;
	padding: 10px 20px;
	flex: 1;
}

.contents_shop h2{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5em;
	color: #fff;
}
.goods_wrap{
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.goods_wrap figure{
	background:#f5f5f5;
	width: calc(100% / 3 - 20px);
	margin: 10px;
	padding: 10px;
	align-self: stretch;
	color: #333;
}
.goods_wrap figure img{
	display: block;
	width: 100%;
	height: 250px;
	object-fit: contain;
	margin: auto;
}

.font_small{
	font-size: 80%;
	padding: 15px;
	color: #ccc;
}


/* オーダーメイド ================================================== */
.catch_order{
	font-size: 2.2em;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 2px 2px 10px #000;
}
.bg_order{
	background:url("../img/sub_img01.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 500px;
}
.order{
	margin: 50px 10px;
}

.order p{
	line-height: 200%;
}
.type_inner{
	margin-bottom: 30px;
}
.type_inner h3{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5em;
}
.type_inner h3 i{
	color: #decb5a;
}
.type_inner p{
	padding: 1em;
}
.type_img{
	width: 100%;
	border-radius: 5px;
	margin-bottom: 30px;
}
.carousel_wrap02{
	width: 100%;
	margin: auto ;
	max-width: 800px;
}
.carousel_leather {
	width: 100%;
	padding: 0;
	margin: auto;
}
.carousel_leather div {
	width: 100%;
	overflow: hidden;
	margin: auto;
}
.carousel_leather img {
	display: block;
	width: 100%;
	height: 350px;
	object-fit: contain;
}
.carousel_leather .slick-next {
	right: 50px;
	z-index: 50;
}
.carousel_leather .slick-prev {
	left: 50px;
	z-index: 50;
}
/* フローチャート ================================================== */
.flow_wrap02,.flow_wrap03{
	width: 95%;
	max-width: 900px;
	border:#f5f5f5 solid 3px;
	padding: 20px;
	margin: 50px auto 30px;
	border-radius: 5px;
	position: relative;
	background:#f5f5f5;
}
.flow_wrap02::after{
	content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 15px solid #f5f5f5; 
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
.flow_wrap02 dl,.flow_wrap03 dl{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
.flow_wrap02 dt,.flow_wrap03 dt{
	width: 120px;
	padding: 0.25em;
	text-align: center;
	background: url("../img/bg_black.jpg") no-repeat;
	color: #fff;
	border-radius: 5px;
}
.flow_wrap02 dt img,.flow_wrap03 dt img{
	width: 60px;
	padding-top: 25px;
}

.flow_wrap02 dd,.flow_wrap03 dd{
	width: 100%;
	padding: 0.25em 2em;
}
.flow_wrap02 dd h4,.flow_wrap03 dd h4{
	color: #333 ;
	font-size:1.4em;
	font-weight: 400;
	margin-bottom: 0.5em;
	padding-bottom: 0.25em;	
	font-family: 'Noto Serif JP', serif;
}
.flow_wrap02 dd p,.flow_wrap03 dd p{
	color: #333;
	font-size:1em;
	line-height: 200%;
	margin-bottom: 20px;
}

.button_flow{
	display: inline-block;
	text-align: center;
	background-color:#333;
	color: #fff;
	padding: 0.25em 2.5em 0.25em 0.5em;
	position: relative;
	border-radius: 5px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.9em;
}
.button_flow::after{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	transition: .5s;
}
.button_flow:hover{
	color: #fff;
	background:#666;
	transition: .5s;
}
.button_flow:hover::after{
	right: 10px;
	transition: .5s;
}


/* 皮のあれこれ ================================================== */
.trivia{
	padding: 50px 10px;
}
.trivia h3{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5em;
	border-left: solid 5px #decb5a;
	line-height: 100%;
	vertical-align: middle;
	padding: 0 10px;
}
.trivia p{
	padding: 0.5em 1em;
	line-height: 200%;
}
.trivia ol{
	padding: 1em;
	margin-bottom: 30px;
}
.trivia ol li{
	padding: 0.5em 0;
	font-size: 1em;
	border-bottom: solid 1px #666;
}
.trivia ol li::first-letter{
	font-size: 130%;
	color: #decb5a;
}
.tanning{
	padding: 1em;
	background:rgba(0,0,0,0.35);
	margin-bottom: 30px;
}
.tanning h4{
	background:#decb5a;
	padding: 0.25em 1em;
	color: #000;
	font-size: 1.1em;
}

.point{
	padding: 1em;
	background:rgba(255,255,255,0.25);
	margin-bottom: 30px;
}
.point h4{
	color: #decb5a;
}

/* 概要ページ ================================================== */

.gaiyou{
	width: 100%;
	background-color: rgba(0,0,0,0.2);
	border-collapse: collapse;
	border-spacing: 0;
	margin: 30px auto;
}
.gaiyou th{
	position: relative;
	text-align: left;
	vertical-align: top;
	padding: 15px 20px;
	background: #333;
	width: 180px;
	color: #fff;
	border-bottom: #000 1px solid;
}
.gaiyou th::after{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top:50%;
	transform: translateY(-50%);
	right: -1.5em;
	border-style: solid;
	border-color: transparent transparent transparent #333;
	border-width: 0.5em 1em 0.5em 0.5em;
	z-index: 10;
}
.gaiyou td{
	vertical-align: top;
	padding: 15px 20px;
	border-bottom: #666 1px solid;
}
.map iframe{
	display: block;
	width: 100%;
	height: 350px;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: .5s;
}
.map iframe:hover{
	filter: grayscale(0);
}
.gaiyou_flex{
	display:flex;
	align-items: flex-start;
	justify-content: space-around;
}
.gaiyou_flex div{
	width: 100%;
	margin-top: 50px;
}
.gaiyou_flex div p{
	line-height: 200%;
}
.gaiyou_img{
	width: 280px;
	display:block;
	margin: auto;
}



/* TOPへ戻るボタン ================================================== */
#page_top{
	width: 70px;
	height: 70px;
	position: fixed;
	right: 10px;
	bottom: 10px;
	background: transparent;
	opacity: 0.8;
	z-index: 999;
}
#page_top a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}
#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f077';
	font-size: 50px;
	color:#fff;
	position: absolute;
	width: 50px;
	height: 50px;
	top: 15px;
	bottom: 0;
	right: 0;
	left: 10px;
	margin: auto;
	text-align: center;
}

/*パンくずリスト ================================================== */
.breadcrumb {
	list-style: none;
	position: absolute;
	bottom: 1em;
	left: 1em;
	background:rgba(0,0,0,0.25);
	padding: 3px 5px;
}

.breadcrumb li {
	display: inline;
	list-style: none;
	line-height: 100%;
}

.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	color: #fff;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}
/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0.1;
	transform : translate(0, 100px);
	transition : all 500ms;
	}

.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}


.sec221007{
	padding: 30px 0;
}
.sec221007 .text{
	position: relative;
	background-color: #fff;
	color: #333;
	padding: 30px;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}
.sec221007 .text::after{
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid #decb5a;
	pointer-events: none;
	z-index: 1;
}
.sec221007 .text img{
	display: block;
	margin: 0 auto 20px;
	width: 200px;
}
.sec221007 .text h3{
	font-size: 1.4rem;
	margin-bottom: 15px;
	letter-spacing: 0.1em;
}
.sec221007 .text h3 span{
	display: inline-block;
}
.text2{
	position: relative;
/*	background-color: #fff;*/
	background-image: url("../img/bg.jpg");
	background-size: cover;
	background-position: bottom;
	width: 100%;
	color: #333;
	padding: 30px;
	margin: auto;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}