@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese');
/* ---------------------------------------------
	reset
--------------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,img {margin: 0; padding: 0;}
table {border-collapse: collapse; border-spacing: 0;}
fieldset,img {border: 0;}
img {display: block;}
img a {border: none;}
address,caption,cite,code,dfn,em,strong,th,var {font-style: normal; font-weight: normal;}
ol, ul {list-style: none;}
caption, th {text-align: left;}
h1,h2,h3,h4,h5,h6 {font-size: 100%; font-weight: normal; line-height: 1.0;}
q:before, q:after {content: "";}
figure {width: 100%; margin: 0; padding: 0;}
/* ---------------------------------------------
	common
--------------------------------------------- */
* {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
body {
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
	color: #fff;
    font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    background: #000;
}
img {width: 100%; height: auto;}
a {text-decoration: none; outline: none;}
a:link {color: #fff;}
a:visited {color: #fff;}
a:hover {color: #fed54f; text-decoration: underline; -webkit-transition: all .3s; transition: all .3s;}
a:active {color: #fed54f;}
p {line-height: 1.6;}
::-webkit-scrollbar{
	width: 10px;
}
::-webkit-scrollbar-track{
	background: #ccc;
}
::-webkit-scrollbar-thumb{
	background: #c8ab14;
}
.indent1 {text-indent: -1em; padding-left: 1em;}
.mb30 {margin-bottom: 30px !important;}

/*linkBtn*/
.linkBtn {
	max-width: 430px;
	margin: 0 auto;
	padding: 0 15px;
}
.button1,
.button2 {
	display: block;
	width: 100%;
	text-align: center;
	outline: none;
	position: relative;
	z-index: 2;
	padding: 20px 10px;
	font-size: 18px;
	font-weight: 500;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.button1 {
	background-color: #c8ab14;
	border: 2px solid #c8ab14;
	color: #fff;
}
.button2 {
	background-color: #c8ab14;
	border: 2px solid #c8ab14;
	color: #fed54f !important;
}
.button1::before,
.button1::after,
.button2::before,
.button2::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	top: 0;
	width: 50%;
	height: 100%;
}
.button1::before,
.button1::after {background-color: #c8ab14;}
.button2::before,
.button2::after {background-color: #000;}
.button1,
.button1::before,
.button1::after,
.button2,
.button2::before,
.button2::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.button1::before,
.button2::before {right: 0;}
.button1::after,
.button2::after {left: 0;}
.button1:hover {
	background-color: #000;
	border-color: #c8ab14;
	color: #fed54f;
	text-decoration: none;
}
.button2:hover {
	background-color: #c8ab14;
	border-color: #c8ab14;
	color: #fff !important;
	text-decoration: none;
}
.button1:hover::before,
.button1:hover::after,
.button2:hover::before,
.button2:hover::after {
	width: 0;
	background-color: #c8ab14;
}
@media only screen and (max-width: 768px) {
	.button1,
	.button2 {font-size: 16px;}
}
@media only screen and (max-width: 640px) {
	.button1,
	.button2 {font-size: 15px;}
}

.scroll-prevent {overflow: hidden;}
/* ---------------------------------------------
	Header
--------------------------------------------- */
.siteHeader {
    background: rgba(255,255,255,1);
    position: fixed;
    top: 0;
    transition: .5s;
    width: 100%;
    height: 64px;
    z-index: 10000;
    border-bottom: 1px solid #eee;
}
.siteHeader.hide {transform: translateY(-100%);}
@media only screen and (max-width: 768px) {
	.siteHeader {height: 54px;}
}
.header {
	width: 100%;
	position: absolute;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 15px 0;
}
.header .hdL {margin-right: 15px;}
.header .hdL img {width: auto; height: 46px;}
.header .hdC {margin-right: 15px;}
.header .hdC img {width: auto; height: 40px;}
.header .hdR {padding-left: 50px;}
@media only screen and (max-width: 768px) {
	.header {padding: 10px 10px 0;}
	.header .hdL {margin-right: 10px;}
	.header .hdL img {width: auto; height: 34px;}
	.header .hdC {margin-right: 10px;}
	.header .hdC img {width: auto; height: 30px;}
	.header .hdR {padding-left: 40px;}
}
@media only screen and (max-width: 480px) {
	.header .hdC img {width: auto; height: 22px;}
}
/*menu*/
.menu {
    position: absolute;
    top: 19px;
    right: 15px;
    width: 50px;
    height: 26px;
    z-index: 9999;
}
.menu:hover {cursor: pointer;}
.menu__line {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    transition: transform .3s;
}
.menu__line--center {top: 12px;}
.menu__line--bottom {bottom: 0;}
.menu__line--top.active {
    top: 12px;
    transform: rotate(45deg);
    background: #fff;
}
.menu__line--center.active {transform: scaleX(0);}
.menu__line--bottom.active {
    bottom: 12px;
    transform: rotate(135deg);
    background: #fff;
}
/*gnav*/
.gnav {
    /*background: rgba(0,0,0,0.9);*/
    background-image: url(../img/bg-navi.jpg);
    background-size: cover;
    background-position: 60% center;
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9998;
    /*overflow: auto;*/
    padding: 60px 20px 40px;
}
.gnav__wrap {
	max-width: 640px;
	margin: 0 auto;
}
.gnav__menu1 {
	max-width: 640px;
	margin: 0 auto 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.gnav__menu2 {
	display: flex;
	max-width: 640px;
	margin: 0 auto;
	justify-content: center;
}
.gnav__menu1 li {
	font-size: 26px;
	line-height: 1;
	color: #fff;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.gnav__menu1 li a {
	display: block;
	padding: 15px 0px;
	color: #fff;
}
.gnav__menu1 li a:hover {
	text-decoration: none;
	color: #fed54f;
}
.gnav__menu2 li {
	width: 40px;
	margin-right: 30px;
}
.gnav__menu2 li:last-child {margin-right: 0;}
.gnav__tamaari {
	max-width: 200px;
	margin: 30px auto 0;
}
@media only screen and (max-width: 768px) {
	.menu {
	    position: absolute;
	    top: 17px;
	    right: 10px;
	    width: 40px;
	    height: 20px;
	}
	.menu__line--center {top: 9px;}
	.menu__line--top.active {top: 9px;}
	.menu__line--bottom.active {bottom: 9px;}
	.gnav__menu1 li {font-size: 20px;}
}

/* ---------------------------------------------
	Footer
--------------------------------------------- */
footer {
	width: 100%;
	padding: 100px 15px 40px;
}
footer nav {margin-bottom: 20px;}
footer .fnav1 ul,
footer .fnav2 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer .fnav2 ul {margin-bottom: 40px;}
footer .fnav1 ul li {
	font-size: 16px;
	margin-right: 2em;
}
footer .fnav1 ul li a:hover {text-decoration: none;}
footer .fnav2 ul li {
	width: 34px;
	margin-right: 15px;
}
footer .fnav1 ul li:last-child,
footer .fnav2 ul li:last-child {margin-right: 0;}
footer .logo-tamaari_town {
	max-width: 200px;
	margin: 0 auto 30px;
}
footer .copyright {
	font-size: 12px;
	text-align: center;
}
/*pageTop*/
#pageTop {
    position: fixed;
    width: 46px;
    right: 10px;
    bottom: 10px;
    z-index: 9997;
}
#pageTop a {
    display: block;
    outline: none;
}
@media only screen and (max-width: 640px) {
	footer .fnav1 ul li {
		font-size: 14px;
		margin-right: 1.5em;
	}
	footer .fnav2 ul li {
		width: 30px;
	}
}
@media only screen and (max-width: 480px) {
	footer .fnav1 ul li {
		width: 100%;
		margin: 0;
		text-align: center;
	}
	footer .fnav1 ul li::after {
		content: "－";
		display: block;
		color: #999;
	}
	footer .fnav1 ul li:last-child::after {content: "";}
}

/* ---------------------------------------------
	Contents
--------------------------------------------- */
.headline2 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 100px;
	padding: 0 15px;
}
.headline2 span {
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	padding-bottom: 5px;
}
.headline3 {
	font-size: 22px;
	font-weight: 500;
	color: rgba(195,158,88,1);
	border: 1px solid rgba(195,158,88,1);
	background: rgba(0,0,0,0.5);
	margin-bottom: 40px;
	padding: 15px;
}
.headline4 {
	font-size: 18px;
	font-weight: 500;
	color: #cccccc;
	border-bottom: 1px solid #cccccc;
	background: rgba(0,0,0,0.5);
	margin-top: 60px;
	margin-bottom: 40px;
	padding-bottom: 15px;
}
@media only screen and (max-width: 768px) {
	.headline2 {
		font-size: 30px;
		margin-bottom: 70px;
	}
	.headline3 {
		font-size: 18px;
		margin-bottom: 30px;
	}
}
@media only screen and (max-width: 640px) {
	.headline2 {font-size: 24px;}
	.headline3 {font-size: 16px;}
}
@media only screen and (max-width: 480px) {
	.headline2 {
		font-size: 22px;
		margin-bottom: 50px;
	}
}
















