@charset "utf-8";
/*山本亭*/
/* CSS Document */
.mobile{
display: none;	
}
.pc{
display: block;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

}
img{
	/*画像の伸縮設定*/
	max-width: 100%;
	width /***/: auto;
　/*画像のボーダーを消す*/
    border:none;
	height: auto;
	text-align: right;
}

a img {
    border-style: none;
}

p {
	padding: 0px;
	margin: 0px;
}
* {
	margin:0;
padding:0;	
}
/*clearfix*/
.cf:before,
.cf:after {
  content:"";
  display: table;
}
.cf:after {
  clear:both;
}
/*IE6,7対策 （haslayout対策）*/
.cf {
  *zoom:1;
}
/*clearfixここまで*/
.clear {
	clear: both;
}

ul {
 padding: 0px;
margin: 0px;
list-style-type: none;
}


.contents {
    width: 100%;
}
.wp {
    width: 100%;
}
/*改行*/
.brl{
}
/*行間の余白*/
.pad_h10{
	padding-top:10px;
}
.pad_h20{
	padding-top:20px;
}
.pad_h30{
	padding-top:30px;
}
.pad_h40{
	padding-top:40px;
}
.pad_h50{
	padding-top:50px;
}


.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
/*ロールオーバーで明るさ調整------------------------------------------------*/
	
 .effect-brightness {
      transition: filter 0.8s ease;
      filter: brightness(0.7); /* デフォルト値なのでこの一行は省略してもOK */
    }

    .effect-brightness:hover {
      filter: brightness(1.3); /* 明るくする */
    }


 .effect-brightness1 {
      transition: filter 0.8s ease;
      filter: brightness(1.0); /* デフォルト値なのでこの一行は省略してもOK */
    }

    .effect-brightness1:hover {
      filter: brightness(1.5); /* 明るくする */
    }

.effect-brightness2 {
      transition: filter 0.8s ease;
      filter: brightness(0.8); /* デフォルト値なのでこの一行は省略してもOK */
    }

    .effect-brightness2:hover {
      filter: brightness(1.3); /* 明るくする */
    }

/*ロールオーバーで拡大縮小------------------------------------------------*/
img {
	-webkit-transition: all 1s;
	transition: all 1s;
}
.expand img:hover{
	-webkit-transform: scale(1.3);
	transform: scale(1.1);
}
.expand1 img:hover{
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
}
.expand2 img:hover{
	-webkit-transform: scale(1.6);
	transform: scale(1.6);
	margin-right: 55px;
	position: relative;
	right: 55px;
}


@media screen,print and (min-width: 769px) {
/*横幅769px以上に適応*/

/*pc-タブレット-スマホ使い分け*/
.mobile{
	display: none;
}
.pc{

}
}

/*ロールオーバーで拡大縮小------------------------------------------------*/
img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.expand img:hover{
	-webkit-transform: scale(1.3);
	transform: scale(1.1);
}
.expand1 img:hover{
	-webkit-transform: scale(2.0);
	transform: scale(1.8);
}
.expand2 img:hover{
	-webkit-transform: scale(1.6);
	transform: scale(1.6);
	margin-right: 55px;
	position: relative;
	right: 55px;
}
	

/*ハンバーガー-メニュー-----------------------------------------------*/	
#nav-toggle {
  position: fixed;
  top: 25px;
  right: 25px;
  height: 32px;
  cursor: pointer;

}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background-color: #731F31;
    position: absolute;
    -webkit-transition: top .5s ease, -webkit-transform .6s ease-in-out;
    transition: top .5s ease, -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out, top .5s ease;
    transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 23px;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

/* ハンバーガー　クリック後メニュー　 */
#gloval-nav {
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    /*text-align: center;*/
    display: -webkit-box;
    display: flex;
    visibility: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    /*font-size: 29px;*/
    opacity: 0;
    -webkit-transition: opacity .6s ease, visibility .6s ease;
    transition: opacity .6s ease, visibility .6s ease;
}

/*#gloval-nav a {
  display: block;
  text-decoration: none;
  padding: 10px 0;
  -webkit-transition: color .6s ease;
  transition: color .6s ease;
}
#gloval-nav a:hover {
  color: #666;
}*/
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: transform .6s ease, opacity .2s ease;
  transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
}




/* ハンバーガーメニューopen */
.open {
  overflow: hidden;

}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
overflow-y: scroll; 
-webkit-overflow-scrolling:touch;   // 慣性スクロールを追加
}
.open #gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}

/*ハンバーガーメニューここまで------------------------------------------------*/	

/*-sns----------------------------------------------------------------*/

.sns_header {
width:13%;
	float: right;
	position: absolute;
	top: 0px;
	right: 18px;
}
.sns_in {
width: 22%;
	float: left;
	margin-left: 3%;
}




/*#########################################################
レイアウト
#########################################################*/

.header {
    width: 100%;
    z-index: 100;
    /* [disabled]min-height: 113px; */
/*    padding-bottom: 10px;*/
}

.header-in {
   /* height: 105px;*/
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
/*ポータルサイトメニュー*/
.header_pt_menu {
	/*	text-align: center;*/
	
}
.header_pt_menu h1 {
	font-size: 1.13em;
	color: #534741;
	text-align: center;
	 margin-left: auto;
    margin-right: auto;
	margin-top: 20px;
	margin-bottom: 10px;
}
.header_pt_menu_li_all {
	width: 100%;
	   margin-left: auto;
    margin-right: auto;
	max-width: 1050px;
	margin-bottom: 20px;
}

/*山本亭*/
.header_pt_menu_li_1 {
	float: left;
	width: auto;
	font-size: 1em;
	margin-left: 2%;
	color: #534741;

}
.header_pt_menu_li_1 a {
 /*   width: 30%;*/
    background-image: url("../images/heder_icon_1.png");
    background-repeat: no-repeat;
    background-position: 0% center;
    padding-left: 30px;
    font-size: 1em;
   	color: #534741;
    text-decoration: none;
    text-align: left;
	padding-top: 5px;
}
.header_pt_menu_li_1 a:hover {
	background-image: url(../images/heder_icon_1_ov.png);
	background-repeat: no-repeat;
	background-position: 0% center;
	color: #731F31;
}

/*寅さん記念館*/
.header_pt_menu_li_2 {
	float: left;
	width: auto;
	font-size: 1em;
	margin-left: 2%;
	color: #534741;

}
.header_pt_menu_li_2 a {
   /* width: 20%;*/
    background-image: url("../images/heder_icon_2.png");
    background-repeat: no-repeat;
    background-position: 0% center;
    padding-left: 30px;
    font-size: 1em;
   	color: #534741;
    text-decoration: none;
    text-align: left;
	padding-top: 5px;
}
.header_pt_menu_li_2 a:hover {
	background-image: url(../images/heder_icon_2_ov.png);
	background-repeat: no-repeat;
	background-position: 0% center;
	color: #731F31;
}
/*山田ミュージアム*/
.header_pt_menu_li_3 {
	float: left;
	width: auto;
	font-size: 1em;
	margin-left: 2%;
	color: #534741;


}
.header_pt_menu_li_3 a {
  /*  width: 30%;*/
    background-image: url("../images/heder_icon_3.png");
    background-repeat: no-repeat;
    background-position: 0% center;
    padding-left: 30px;
    font-size: 1em;
   	color: #534741;
    text-decoration: none;
    text-align: left;
		padding-top: 5px;
}
.header_pt_menu_li_3 a:hover {
	background-image: url(../images/heder_icon_3_ov.png);
	background-repeat: no-repeat;
	background-position: 0% center;
	color: #731F31;
}
/*カフェ*/
.header_pt_menu_li_4 {
	float: left;
	width: auto;
	font-size: 1em;
	margin-left: 2%;
	color: #534741;

}
.header_pt_menu_li_4 a {
 /*   width: 30%;*/
    background-image: url("../images/heder_icon_4.png");
    background-repeat: no-repeat;
    background-position: 0% center;
    padding-left: 30px;
    font-size: 1em;
   	color: #534741;
    text-decoration: none;
    text-align: left;
	padding-top: 5px;
}
.header_pt_menu_li_4 a:hover {
	background-image: url(../images/heder_icon_4_ov.png);
	background-repeat: no-repeat;
	background-position: 0% center;
	color: #731F31;
}
/*取材*/
.header_pt_menu_li_5 {
	float: left;
	width: auto;
	font-size: 1em;
	margin-left: 2%;
	color: #534741;

}
.header_pt_menu_li_5 a {
   /* width: 30%;*/
    background-image: url("../../images/heder_icon_5.png");
    background-repeat: no-repeat;
    background-position: 0% center;
    padding-left: 30px;
    font-size: 1em;
   	color: #534741;
    text-decoration: none;
    text-align: left;
	padding-top: 5px;
}
.header_pt_menu_li_5 a:hover {
	background-image: url(../images/heder_icon_5_ov.png);
	background-repeat: no-repeat;
	background-position: 0% center;
	color: #731F31;
}

/*-----------------------*/
/*--ヘッダーロゴ--*/
.header_logo {
    background-color: #EBE9E7;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;

}
.header_logo img {
	width: 20%;
}

.header_menu {
	background-color:#731F31;
		text-align: center;
 margin-left: auto;
    margin-right: auto;
	height: 70px;
	padding-bottom: 15px;
}
.header_menu_in {
    background-image: url(../images/heder_menu_bg.png);
    background-repeat: repeat-x;
    background-position: 0% center;
    padding-bottom: 20px;
}

.header_menu_in ul {
	width: 100%;
	max-width: 1100px;
	 margin-left: auto;
    margin-right: auto;
	padding-top: 1%;
	
}
.header_menu_in ul li {
	width: 24.5%;
float: left;
font-size:1.06em; 
	color: #FFFFFF;
	text-align: center;
/*border-right: thin solid #FFFFFF;*/


}

.header_menu_in ul li a{
	color: #FFFFFF;
	text-decoration: none;
	margin:  1% 0 2% 0;
	 padding: 1% 0 1% 0;
}
.header_menu_in ul li:hover{
	color: #FFFFFF;
	text-decoration: none;
}
/*
.header_menu_in a:hover {
    color:#998675;*/
 /*   background-color: hsla(198,76%,52%,0.30);*/
   /* background-image: url(../images/hat.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;*/
}

/*.nav-item:last-child {
  display: block;
		border-right: none;

}
.nav-item:hover {
  display: block;
  padding: 1% 0 1% 0;
}*/
/*------------------------------------------------
グローバルメニュー
------------------------------------------------*/ 	
.gr-menu-box {
    width: 100%;

}
.gr-menu-box-in {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
/*------------------------------------------------
.contents
------------------------------------------------*/ 	

.contents {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /*max-width: 1100px;*/
    border-bottom: thin solid #CACACA;
}	
	.contents a {
		text-decoration: none;
	}
/*------------------------------------------------
.footer
------------------------------------------------*/ 	
.footer {
    width: 100%;
	
}
/*------------------------------------------------
.footer　お問い合わせ
------------------------------------------------*/ 	

.footer_otoiawase_all{
    /*	display: block;
		width: 65%;*/
    width: 100%;
    background-color: #EBE9E7;
    font-size: 1.25em;
    font-weight: bold;
    padding-bottom: 2%;
    padding-top: 1%;
}
.footer_otoiawase {
	
}

.footer_otoiawase a {
   /* width: 30%;*/
    background-image: url("../images/footer_otoiawase.png");
    background-repeat: no-repeat;
    background-position: 10% center;
	padding: 3% 2% 3% 3%;
	padding-top:3%;
    padding-left:200px;
    font-size: 1em;
   	color: #534741;
    text-decoration: none;
	border: thin solid #CCCCCC;
	 margin-left: auto;
    margin-right: auto;
	float: none;
	display: block;
	width: 25%;
	margin-top: 20px;
	background-color: #FFFFFF;

}
.footer_otoiawase a:hover {
 background-image: url("../images/footer_otoiawase_ov.png");
background-repeat: no-repeat;
    background-position: 10% center;
	padding: 3% 2% 3% 3%;
	padding-top:3%;
    padding-left:200px;
	color: #731F31;
}



/*------------------------------------------------
.footer（バナー）
------------------------------------------------*/ 

.footer_bnr {
	max-width: 1150px;
   width: 100%;
    margin-left: auto;
    margin-right: auto;
	padding-top: 150px;
	padding-bottom: 80px;
}

.footer_bnr_all {
	width: 27%;
	border: thin solid #CCCCCC;
	padding:2% 1% 1% 1%;
	float: left;
	margin-left: 2%;
	margin-right: 2%;
	margin-bottom: 3%;
	text-align: center;
	color: #333333;
}
.footer_bnr_title {
	text-align: center;
	font-size: 1em;
	margin-bottom: 20px;
}
.footer_bnr_img {
	
}

.footer_bnr_all a{
	color: #333333;
}
.footer_bnr_all:hover{
	color: #731F31;
	background-color: #EBE9E7;
	transition : all 0.5s ease 0s;
/*	border: thin dashed #CCCCCC;*/
}


.footer_bnr_all img:hover {
      filter: brightness(1.1); /* 明るくする */
    }

/*--３つの施設--*/
.footer_bnr_all_02 {
	width: 29%;

	border: thin solid #CCCCCC;
	float: left;
	margin-left: 2%;
	margin-right: 2%;
	margin-bottom: 3%;
	text-align: center;
	color: #333333;
	height:auto;
	
}

.footer_bnr_all_02:hover{
	color: #731F31;
	background-color: #EBE9E7;
	transition : all 0.5s ease 0s;
}
.footer_bnr_all_02 img {
	vertical-align: bottom;
}
.footer_bnr_all_02 img:hover {
      filter: brightness(1.2); /* 明るくする */
	
    }
/*------------------------------------------------
.footer（footメニュー）
------------------------------------------------*/ 
.footer_bg {
    background-color: #EBE9E7;
    width: 100%;
    background-image: url("../images/footer_bg_pattern.jpg");
    background-repeat: repeat-x;
    background-position: 0% center;
}
.footer_bg_in {
    background-color: rgba(235,233,231,0.80);
    width: 100%;
}
.footer_in {
	max-width: 1100px;
   width: 100%;
    margin-left: auto;
    margin-right: auto;
	
	padding-top: 80px;
}
.footer_in a {
    color: #333333;
/*    font-size: 0.81em;*/
    text-decoration: none;
}
.footer_in a:hover {
    color: #534741;
    position: relative;
    right: -1px;
    bottom: -1px;
}
.footer_logo {
    width: 8%;
    float: left;

}
.footer_access {
	 width: 25%;
    float: left;
	line-height: 2em;
		margin-left: 8%;

font-size: 1.19em;}
.footer_menu_all {
    margin-bottom: 50px;
    width: 50%;
    float: right;
	}
.footer_menu {
    width: 35%;
    float: right;
    /*border-left: thin dotted #5892B5;*/
/*    padding-left: 1%;*/
    min-height: 400px;
}

.footer_menu_in {
    width: 100%;
    padding-bottom: 8px;
	
}
.footer_menu-title {
    color: #42210B;
    font-size: 20px;
    font-weight: bold;
	margin-bottom: 3%;
}
.footer_menu-title a {
    color: #42210B;
/*    font-size: 1em;*/
    font-weight: bold;
}
.footer_menu-title a:hover {
    color: #534741;

    font-weight: bold;
}
/*.footer_menu-title:before {
    font-family: "Font Awesome 5 Free";
  content: "\f138";アイコンの種類
  color:  #0073BE;
border-bottom: none;
    padding-right: 2%;
}*/
.footer_menu ul {
    margin: 0;
    padding: 0;
    display: block;
}
.footer_menu ul li {
 /*   padding-left: 8%;*/
    float: left;
    width: 90%;
    font-size: 16px;
	padding-top: 1%;
	padding-bottom: 3%;
/*    line-height: 2em;*/
}

/*コピーライト*/	
.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
margin-left:auto;
margin-right: auto;
}

.footer-copy_in {
    width: 90%;
    text-align: center;
  /*  color: #FFFFFF;*/
    font-size: 16px;
	margin-left:auto;
margin-right: auto;
}
/*------------------------------------------------
topページへ戻る
------------------------------------------------*/ 
#page-top {
    position: fixed;
    bottom: 60px;
    right: 60px;
    font-size: 50%;
    z-index: 100;
}
#page-top a {
    text-decoration: none;
    width: 100px;
    padding-top: 12px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 12px;
    text-align: center;
    display: block;
    background-image: url(../images/pagetop1.png);
    background-repeat: no-repeat;
    height: 130px;
	  background-size: contain;
}
#page-top a:hover {
    text-decoration: none;
    color: rgba(255,255,255,1.00);
    background-image: url(../images/pagetop2.png);
}	  
