@charset "UTF-8";
/*
Theme Name: やまぐち酒蔵めぐりテーマ
*/



/* 基本設定： フォントサイズ*/
@media (max-width: 599px) {
	:root {
		font-size: 14px;
	}
}

@media (min-width: 600px) and (max-width: 799px) {
	:root {
		font-size: 16px;
	}
}

@media (min-width: 800px) {
	:root {
		font-size: 18px;
	}
}
 


/* 基本設定： ページ全体 */

*{
	margin: 0;
	padding: 0;
}


body {
	margin: 0;
	/*font-family: 'メイリオ',
		'Hiragino Kaku Gothic Pro', 
		sans-serif;*/
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	background-image:url("img/back.gif");
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6em;
	overflow-wrap: break-word;
	/*word-break: keep-all;*/
  line-break: strict;
  /*word-wrap: break-word;
  overflow-wrap: break-word;*/
	
}


/*h1 img{
	width: 200px;
	height: auto;
	
}
*/


a img{
	transition: 0.3s ease;
}

a:hover img{
	opacity: 0.7;
}




/* コンテンツB：メニューボタン */
.conB .container {
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
}

.conB .text {
	text-align: center;
	width: 46%;
	margin: 0 auto 1em;
	box-sizing: border-box;
	
}

.conB .text a{
	width: 100%;
	height: 100%;
	display: block;
	color: #fff;
	background: #000846;
	background:#10195a;
	background:#162646;
	font-family: 'Shippori Mincho', serif;
	text-decoration: none;
	font-size: 18px;
	padding: 0.5em;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}




@media (min-width: 768px) {
	.conB .container {
		display: flex;
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
		padding-top: 80px;
	}

	.conB .text	{
		
		width: 18%;
		margin: 0 auto;
	}
	
	.conB .text a{
		font-size: 20px;
		padding:1.6em 0.5em;
	}
}























/* フッター */
footer {
	color: #fff;
	
	background:#10195a;
	background:#162646;
	
}

footer .container {
	padding: 40px 20px;
	text-align: center;

}

footer .container p{
	font-size: 15px;
}

footer .container p.tel{
	
}

footer h2{
	margin-bottom: 0.2em;
	font-size: 16px;
}

footer p.title{
	font-family: 'Shippori Mincho', serif;
	margin-bottom: 1em;
	font-size: 18px;
}


@media (min-width: 768px) {
	footer .container {

		max-width: 1000px;

		margin-left: auto;
		margin-right: auto;
	}
	
footer h2{
	font-size: 20px;
}	
	
	

}


.copy {
	font-size: 12px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}





/* コンテンツページ: 記事 */
.post .container {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding: 1em;
}

.post h1 {
	padding-left: 0.5rem;
	border-left: solid 0.75rem #BF6A7A;
	border-left: solid 0.75rem var(--accent-color);
	font-size:16px;
}

.post p {
	font-size:15px;
	margin-bottom: 1em;
}

.post img {
	max-width: 100%;
}





/*ハンバーガーメニュー*/
.global-nav {
	position: fixed;
	right: -320px;
	top: 0;
	width: 300px;
	height: 100vh;
	padding-top: 40px;
	background-color: #000846;
	transition: all .6s;
	z-index: 200;
	overflow-y: auto;
	padding: 0 20px;
	box-sizing: border-box;
	/*border:3px solid #000846;*/
	
}
.hamburger {
	position: fixed;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 300;
	/*background: #fff;*/
	/*caret-color: transparent;*/background:#162646;
	
}
.ham-line {
	position: absolute;
	left: 11px;
	width: 28px;
	height: 2px;
	background-color: #fff;
	transition: all .6s;
}
.line01 {
	top: 15px;
}
.line02 {
	top: 23px;
}
.line03 {
	top: 31px;
}
.nav-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
}
.nav-open .global-nav {
	right: 0;
}
.nav-open .nav-bg {
	opacity: .8;
	visibility: visible;
}
.nav-open .line01 {
	transform: rotate(45deg);
	top: 25px;
	background-color: #fff;
}
.nav-open .line02 {
	width: 0;
	left: 50%;
}
.nav-open .line03 {
	transform: rotate(-45deg);
	top: 25px;
	background-color: #fff;
}
.global-nav ul {
	padding-top: 60px;
}
.global-nav ul li {
	display: block;
	position: relative;
}
.global-nav ul li a {
	padding: 15px 20px;
	color: #000846;
	display: block;
	text-decoration: none;
	/*border-bottom: 1px dashed #999;*/
	position: relative;
	vertical-align: middle;
	background: #fff;
	margin-bottom: 0.5em;
	font-weight: bold;
	position: relative;
}

.global-nav ul li a:after {
	content: ">>";
	position: absolute;
	right:2em;
		transition : all 0.5s ease 0s;
}



.global-nav ul li a:hover:after {
	right:1em;
}

@media print, screen and (min-width: 768px){
	
	
.hamburger {
	width: 76px;
	height: 76px;
}	
	
	
	.global-nav{
		width:400px;
		right: -400px;
	}
	
.ham-line {
	position: absolute;
	left: 18px;
	width: 40px;
	height: 2px;
	background-color: #fff;
	transition: all .6s;
}
.line01 {
	top: 22px;
}
.line02 {
	top: 34px;
}
.line03 {
	top: 46px;
}	
	
.nav-open .line01 {
	transform: rotate(45deg);
	top: 30px;
	background-color: #fff;
}

.nav-open .line03 {
	transform: rotate(-45deg);
	top: 30px;
	background-color: #fff;
}	
	
	
	
}




/*=============== 効果いろいろ ===============*/


.flex{
  display:flex;
  flex-wrap: wrap;
}

.box{
  opacity: 0;
}



.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
 
  }
}


/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}



.scroll_up2 {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
	animation-duration:2s;
	
}
.scroll_up2.on {
  transform: translateY(0);
  opacity: 1.0;
	animation-delay: 2s;
	animation-duration:2s;
}






/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}


/*.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


*/

/* hover波紋 */

.btnripple3{
  position: relative;

}

.btnripple3:hover::before {
    content: '';
    position: absolute;
    left:50%;
    top:5%;
    border: 2px solid #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
  opacity:1;
    animation:1s circleanime2 forwards;
}

@keyframes circleanime2{
  0%{
    transform: scale(0);
  }
  100%{
    transform:scale(2);
    opacity: 0;
  }
}



/*市名タグ*/
.tag{
	color: #fff;
	background: #111;
	font-size: 14px;
	padding: 0.1em 0.5em;
	display: inline-block;
	margin-bottom: 0.2em;
	line-height: 1.4em;
}



/*PCとスマホで切り替え*/


.pc{
	display: none;
}

@media print, screen and (min-width: 768px){
	.sm{
		display: none;
	}	
	
	.pc{
		display: inline-block;
	}
}


.g_link{
	
	display: block;
	padding:0.2em 0.5em;
	border:1px solid #666;
	background:#fff;
	text-decoration: none;
	color: #111;
	text-align: center;
	
	box-sizing: border-box;
}


@media print, screen and (min-width: 768px){
	
	.g_link:after{
	content:">";
	position: absolute;
	transition: all .6s;
	position: relative;
	right: -1em;
}

.g_link:hover:after{
	right: -2em;
}

	
	
	.g_link{
font-weight: bold;	
}

	
	
}



/*=============== 下層ページ共通部分 ===============*/



/*左側固定ロゴ*/

.goshuin-left{
	position: fixed;
	left:0;
	width: 50px;
	height: auto;
	z-index: 200;
}

.goshuin-left img{
	width: 50px;
	height: auto;
	margin-top: 10px;
	margin-left: 10px;
}

.goshuin-right{
	width: 100%;
	padding:1em 1em 1em 70px;
	box-sizing: border-box;
}



@media print, screen and (min-width: 768px){
	
.goshuin-left{

	width: 100px;
	}
	
.goshuin-left img{
	width: 100px;
	height: auto;
	margin-top: 20px;
	margin-left: 20px;
}
	
	
	
}






.nohero .conA{
	margin-bottom: 30px;
}

.nohero .conA h1{
	text-align: center;
	font-family: 'Shippori Mincho', serif;
	font-size: 26px;
	padding: 2em 0 1em;
	font-weight: lighter;
	/*line-height: 1.6em;*/
	
}

@media print, screen and (min-width: 768px){
	
	.nohero .conA h1{
		font-size: 40px;
		padding: 3em 0 2em;
	}
	
	
	.goshuin-right{
	padding-left: 150px;
	box-sizing: border-box;
}

}





.pagenavi{
	margin-bottom: 40px;
}

.pagenavi ul{
            display: flex;
	justify-content: center;
	list-style: none;
	}


.pagenavi ul li a{
	display: block;
	padding: 1em;
	box-sizing: border-box;
	font-size: 14px;
	
	
	display: flex;
	justify-content: center;
	align-items: center;
	color: #111;
	font-family: 'Shippori Mincho', serif;
}

.pagenavi ul li a::before{
            position:relative;
            display:inline-block;
            content:"";
            background:#666;
            width: 1px;
            height: 1.5em;
            transform: rotate(40deg);
            /*top:0.5em;*/
	left:-1em;
	}


.pagenavi ul li:first-child a::before{
           background:#fff;
           
	}


/*.pagenavi ul li:last-child a::after{
    position:relative;
	display:inline-block;
	content:"";
            background:#666;
            width: 1px;
            height: 1.5em;
            transform: rotate(40deg);
            top:0.5em;
            right:-1em;
	}*/

/*
.post p {
	font-size: 16px;
	line-height: 2;
	text-indent: 1em;
}
*/

.pagenavi img{
	width: 30px;
	margin-right:0.5em;
}

@media print, screen and (min-width: 768px){
	
	.pagenavi{
		margin-bottom: 80px;
	}	
	
.pagenavi ul li a{
	padding: 1em 2em;
	font-size: 16px;
	box-sizing: border-box;
}
	
	
.pagenavi ul li a::before{
            left:-2em;
	height: 2em;
	}
	
	

.pagenavi ul li:last-child a::after{
            right:-2em;
	height: 2em;
	}	
	
	
	
	.pagenavi img{
	width: 30px;
	margin-right: 1em;
}

	
}



/*.pagenavi ul li{
            display: flex;
	justify-content: center;
	align-items: center;
	}
*/


.mm h2.t-mm{
	font-family: 'Shippori Mincho', serif;
}

.mm .container{
	

font-family: 'Shippori Mincho', serif;
	
}
