@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&display=swap');
html,body {
	margin:0;
	padding:0;
	height:100%;
	scroll-behavior: smooth;
	font-size: 62.5%; /*フォントサイズの規定値を１０pxに*/
}
body {
margin: 0;
font-family: 'Noto Sans JP';
 font-size: 1.8rem;
 font-weight: 400;
 font-style: normal;
 color: #333;
 height: 100%;
 min-height: 100%;
 background-color: #F4F4F4;
 position: relative;
}
.clear{
	clear: both;
}

@media print, screen and (min-width: 651px){
body{
 padding-bottom: 200px/*フッター高さ分の余白*/
}
.esc-pc{
display: none;
}
.document{
width: 1200px;
max-width: 95%;
margin: 0 auto;
}
section{
display:block
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.5s;
  font-style: normal;
}

a:hover {
  color : #ED7104;
}

h1 {
  width: 280px;
  max-width: 25%;
  margin: 0;
  padding-top: 20px;
}
h1 img{
width: 100%;
}

h2 {
  border-bottom: solid 3px #6d5b2f;
  position: relative;
  color: #6d5b2f;
  margin-top: 50px;
  margin-bottom: 25px
}

h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffc778;
  bottom: -3px;
  width: 30%;
}

hr {
  border: 1px #333 solid;
}
table{
width: 100%;
border-collapse: collapse;
}
td{
padding: 1%;
border: #666 1px solid;
}
ul{
margin: 0;
padding: 0;
}
dl dd{
margin-left: 0;
}
img {
	vertical-align: text-bottom;
}


/*均等配置2列ーーーーーーーーーーーーーーーーーー*/
.box_flex2{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex2 .inner{
width: 46%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置3列ーーーーーーーーーーーーーーーーーー*/
.box_flex3{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex3::after{
  content:"";
  display: block;
  width:31%;
}
.box_flex3 .inner{
width: 31%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置４列ーーーーーーーーーーーーーーーーーー*/
.box_flex4{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex4::before{
  content:"";
  display: block;
  width:22%;
  order:1;
}
.box_flex4::after{
  content:"";
  display: block;
  width:22%;
}
.box_flex4 .inner{
width: 22%;
padding: 1%;
margin-bottom: 20px;
}

.inner img{
width: 100%;
}
/*横並び配置スタンダードーーーーーーーーーーーーーーーーーー*/
.box_flex{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex .com{
 width: 70%;
}
.box_flex .photo{
width: 26%;
padding: 1%;
}
.box_flex .photo img{
width: 100%;
}

header{
display: block;
width:100%;
padding-bottom: 5px;
background-color: rgba(000,000,000,0.8);
position: relative;
}
header .document{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
width: 100%!important;
}
nav{
display: block;
width: 900px;
max-width: 70%;
padding: 60px 0 0 0;
}
nav .box_nav {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-left: #FFF 1px solid
}
nav .box_nav li {
display: block;
width: calc(100% / 6);
  color: #c8ba8c;
}
nav .box_nav a {
display: block;
  text-align: center;
  font-weight:400;
  padding: 5px 0;
  font-size: 1.4rem;
  color: #FFF;
  box-sizing: border-box;
  margin: 0;
  line-height: 120%;
border-right: #FFF 1px solid;
position: relative;
overflow: hidden;
transition: all .2s;
}

/*背景がつくのアニメーションの開始を0.5秒遅らせる*/
nav .box_nav a:hover{
  transition-delay: .5s;
}

/*線の設定*/
nav .box_nav a:before,
nav .box_nav a:after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    left: 0;
    /*線の形状*/
    height: 1px;
    width:100%;
    background: #FFF;
    /*アニメーションの指定*/
  transition: all .5s;
}

/*線の位置と変化*/
nav .box_nav a::before {
    top: 0;
  transform: translateX(-100%);/*X方向に-100%移動*/
}
nav .box_nav a::after {
    bottom: 0;
  transform: translateX(100%);/*X方向に100%移動*/
}

/*hoverした際の線の変化*/
nav .box_nav a:hover::before ,
nav .box_nav a:hover::after {
  transform: translateX(0);/*X方向に0%移動*/
}
.nav2{
position: absolute;
width: 400px;
top:5px;
right: 0;
left: auto;
color: #EEE;
font-size: 12px;
font-weight: 500;
border-bottom: solid 3px #1952FF;
}
.nav2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #999;
  bottom: -3px;
  width: 30%;
}
.nav2 .tel{
display: inline-block;
font-size: 16px;
font-weight: 00;
text-align: right;
padding-right: 10px
}
.nav2 .mail{
display: inline-block;
font-size: 15px;
font-weight: 600;
text-align: right;
padding-right: 20px
}
.hide-area{
  display: none;
  background-color: #000!important;
  width: 1000px
}
.text_menu{
font-size: 1.8rem;
font-weight: 500;
text-align: center;
padding-bottom: 15px
}
.servicemenu{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.servicemenu a{
display: block;
width: 19%;
padding: 1%;
border: #FFF 1px solid;
color: #EEE;
font-size: 13px;
background-color: #000;
box-sizing: border-box;
text-align: center
}
.servicemenu a img{
width: 100%;
margin-top: 5px;
transition: 0.5s
}
.servicemenu a:hover img{
opacity: 0.7
}
.pagetitle{
margin: 0;
position: relative
}
.pagetitle .box_title{
width: 350px;
position:absolute;
text-align: center;
padding: 50px 0;
top:50%;
left: 5%;
transform: translateY(-50%)

}
.pagetitle .box_title img{
width: 100%
}
.pagetitle .text_title{
color: #FFF;
font-size: 22px;
font-weight: 600;
text-align: center;
}
.pagetitle .photo{
width: 100%;
}
.pagetitle .photo img{
width: 100%
}
.breadcrumb-area {
font-size: 11px;
background-color: #600;
color: #FFF
}
/*フッター--------------------------------------------------------------------------*/

#footer {
padding-bottom:10px;
background-color: #333;
color:#FFF;
line-height:130%;
border-top:#EEE 3px solid
}
#footer a:link{
	color:#FFF;
}
#footer a:visited{
color:#FFF;
}
#footer .document{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
#footer .box_sitemap{
 font-weight: 300;
 font-size:90%;
 margin-bottom: 40px;
 width: 63%;
 display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 50px;
}
#footer .sitemap {
  width: 40%;
}
#footer .sitemap a{
 display: block;
 margin-bottom: 10px;
 position: relative;
 padding-left: 15px;
 font-size: 1.3rem;
 border-bottom: #666 1px dotted
}
#footer .sitemap a:hover{
  color:#F48E49;
}
#footer .sitemap a:before{
  font-family: FontAwesome;
  content: '\f0da'; /* アイコンのunicode */
  position:absolute;
  left: 0;
  top:2px;
  color: #FFF;
}
#footer .rogo{
 width: 30%;
box-sizing: border-box;
 font-size: 12px;
 padding-left: 10px;
 margin-top: 50px;
 border-left: #FFF 1px dotted;
}
#footer .rogo i{
font-size: 35px;
padding-top: 50px
}
#footer .rogo img{
width: 180px;
max-width: 100%
}
#footer .copyright{
  border-top:1px #FFF solid;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  margin: 20px 0;
}
/*パンくずー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------*/
.breadcrumbs{
 font-size: 12px;
 font-weight: normal;
 padding-top: 5px;
}
.pager{
padding-bottom: 50px;
}
.pager td{
 border: none!important;
}
.pager a{
 background-color: #999;
 color: #FFF;
 padding: 5px 25px;
 margin-right: 10px;
 font-size: 16px;
}
}

/*モバイルー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------*/
@media screen and (max-width: 650px){
.esc-sp{
display: none;
}

.document{
width: 92%;
margin: 0 auto;
}
header {
display: block;
width: 100%;
background-color: #000;
padding-bottom:  5px;
border-bottom: #666 1px solid;
position: fixed;
top:0;
z-index: 9999
}
header .document{
width: 100%!important
}


h1 {
width: 400px;
max-width:  60%;
padding:5px 0 3px 0;
margin: 0;
}
h1 img{
width: 100%;
}
h2 {
margin: 0 40px 0 0;
padding: 0;
width: 100%;
}
h2 img{
 width: 100%;
 display: block;
}
h2 {
  border-bottom: solid 3px #6d5b2f;
  position: relative;
  color: #6d5b2f;
  margin-top: 50px;
  margin-bottom: 25px
}

h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffc778;
  bottom: -3px;
  width: 30%;
}

h3 {
font-size: 20px;
text-align: center;

}

h4 {
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 25px 0
}

h5 {
  font-weight: 400;
}
hr {
  border: 1px #333 solid;
}

table{
width: 100%;
border-collapse: collapse;
}
td{
display: block;
width: 98%;
padding: 1%;
border: #666 1px solid;
}
td:nth-child(last){
margin-bottom: 25px;
}
ul{
margin: 0;
padding: 0;
}
dl dd{
margin-left: 0;
}
a{
text-decoration: none
}
img {
	vertical-align: text-bottom;
}
/*均等配置2列ーーーーーーーーーーーーーーーーーー*/
.box_flex2{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_flex2 .inner{
width: 98%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置3列ーーーーーーーーーーーーーーーーーー*/
.box_flex3{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_flex3::after{
  content:"";
  display: block;
  width:31%;
}
.box_flex3 .inner{
width: 98%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置４列ーーーーーーーーーーーーーーーーーー*/
.box_flex4{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_fle4x .inner{
width: 98%;
padding: 1%;
margin-bottom: 20px;
}

.inner img{
width: 100%;
}
/*横並び配置スタンダードーーーーーーーーーーーーーーーーーー*/
.box_flex{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_flex .com{
 width: 98%;
}
.box_flex .photo{
width: 80%;
padding: 1%;
}
.box_flex .photo img{
width: 100%;
}
.bt_link a {
display: block;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background-color: #999;
  padding: 6px 30px;
  text-align: center;
  margin: 10px auto;
  width: 80%;
}

/*ナビゲーション---------------------------------------*/
nav .globalMenuSp {
	position:fixed;
	color: #FFF;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
	height: 100vh;
	z-index:15;
	padding-bottom: 30px;
	height: 100vh;
	background-color: rgba(000,000,000,0.8);
	padding-top: 50px;

}
nav .globalMenuSp .box_nav-shop {
	padding: 40px 2% 0 2%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
nav .globalMenuSp .box_nav-shop a {
display: block;
margin-bottom: 15px;
  width: 80%;
  padding: 3% 5px 3px 5px;
  border-bottom: #FFF 1px dotted;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  color: #FFF;
	line-height:100%;
}

nav .globalMenuSp .text1{
padding-top: 30px;
text-align: center
}
nav .globalMenuSp .box_nav {
	padding: 20px 2% 0 2%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

nav .globalMenuSp .box_nav  a {
display: block;
  width: 46%;
  border: #FFF 1px solid;

  margin-left: 1%;
  margin-bottom: 15px;
  padding: 3.5vw 0;
  text-align: center;
  box-sizing: border-box;
  font-size: 3.8vw;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  color: #FFF;
	line-height:100%;
}

/* 最後はラインを描かない */
nav .globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* このクラスを、jQueryで付与・削除する */
nav .globalMenuSp.active {
    transform: translateY(0%);
}
nav .globalMenuSp ul li ul{
	margin-top:-20px;
	padding-bottom:5px;
}
nav .globalMenuSp ul li ul li{
	height:28px;
	padding-bottom:0;
	border:none;
	font-weight:normal;
}
/*ハンバーガー---------*/
.navToggle {
    display: block;
    position: absolute;
    right: 13px;
    top: 3px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 13;
  /* background: #999;*/
    text-align: center;
	z-index:20;
}

.navToggle span {
    display: block;
    position: absolute;    /* navToggleに対して */
    width: 35px;
    border-bottom: solid 3px #FFF;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;

}

.navToggle span:nth-child(1) {
    top: 9px;
}

.navToggle span:nth-child(2) {
    top: 18px;
}

.navToggle span:nth-child(3) {
    top: 27px;
}

.navToggle span:nth-child(4) {
    border: none;
    color: #FFF;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}
/*タップ後のXボタン---------*/
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
	border-bottom: solid 3px #FFF;
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
	border-bottom: solid 3px #FFF;
}

.bt a{
width: 90%;
 margin: 20px auto;
 display: block;
 padding: 7px 0;
 font-size: 16px;
 font-weight: 400;
 text-align: center;
 border: 4px #441a0c double;
 color: #441a0c;
 transition: 0.5s;
 position: relative;
}

.bt a:after{
 font-family: FontAwesome;
  content: '\f105'; /* アイコンのunicode */
  position:absolute;
  right:5px;
  top:13px;
  font-size:14px;
  font-weight: 800
}
  /* ヘッダー終わり */
.pagetitle{
margin: 0;
padding-top: 18vw
}
.pagetitle .box_title{
background-color: #CCC;
padding: 5px 0;
position: relative;
}
.pagetitle .box_title img{
display: none
}
.pagetitle .text_title{
font-weight: 600;
width: 100%;
color: #333;
font-size: 1.8rem;
text-align: center
}
.pagetitle .photo{
}
.pagetitle .photo img{
width: 100%
}
.breadcrumbs{
color: #666
}
.breadcrumbs a{
color: #666
}
/*フッター--------------------------------------------------------------------------*/

#footer {
padding-bottom:25px;
background-color: #333;
color:#FFF;
line-height:130%;
border-top:#EEE 3px solid
}
#footer a:link{
	color:#FFF;
}
#footer a:visited{
color:#FFF;
}
#footer .document{
display: flex;
flex-wrap: wrap;
justify-content:center;
padding-top: 50px
}
#footer .box_sitemap {
width: 100%
}
#footer .sitemap {
width: 80%;
margin: 0 auto
}
#footer .sitemap a{
 display: block;
 margin-bottom: 10px;
 position: relative;
 padding-left: 15px;
 font-size: 1.3rem;
 border-bottom: #666 1px dotted
}

#footer .sitemap a.nohover:hover{
  color:#FFF;
}
#footer .sitemap a:before{
  font-family: FontAwesome;
  content: '\f0da'; /* アイコンのunicode */
  position:absolute;
  left: 0;
  top:2px;
  color: #FFF;
}
#footer .rogo{
display: none
}

#footer .copyright{
  border-top:1px #FFF solid;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  margin: 20px 0;
}
.footer-fix{
position: fixed;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
bottom: 0;
width: 100%
}
.footer-fix .inner{
width: 50%;
border: #CCC 1px solid;
box-sizing: border-box;
padding: 10px 0;
text-align: center;
background-color: rgba(200,000,000,0.7)
}
.footer-fix .inner a{display: block;
color: #FFFFFF
}
/*パンくずー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------*/
.breadcrumbs{
 font-size: 13px;
 font-weight: normal;
 padding-top: 5px;
 padding-left: 10px;
}
.pager{
padding-bottom: 50px;
}
.pager td{
 border: none!important;
 display: table-cell;
 width: 50%
}
.pager a{
 background-color: #999;
 color: #FFF;
 padding: 5px 25px;
 margin-right: 10px;
 font-size: 16px;
}

}

/*ページトップ--------------------------------------*/

#page-top {
	position: fixed;
	bottom: 20px;
	right:2%;
	z-index: 9999;
}
#page-top a {
	text-decoration: none;
	background-color: #331405;
	color: #FFF;
	padding: 0 5px;
	font-weight:bold;
	font-size:30px;
	text-align: center;
	display: block;
	border-radius: 3px;
}
#page-top a:hover {
	text-decoration: none;
	opacity: 0.7;
}
