@charset "utf-8";
html {
	font-size: 16px;
}
html * {
	box-sizing: border-box;
}
/*サイト全体の文字の色を指定*/
body {
    margin: 0;
    padding: 0;
    color: #333;
    background :#E6E6FA;
}

/*リンクとしたときの色を指定*/
a { color: #b7a077; }
a:visited { color: #b7a077;}/*訪問済みの色*/
/*マウスを乗せたときの色と動作を指定*/
a:hover {
    color: #988564;
    font-weight: bold;
    text-decoration: none;
}
a img { transition: opecity 0.2s linear; }
a:hover img { opacity: 0.7; }

/*見出しのデフォルトの上マージンをカット*/
h1, h2, h3, h4, h5, h6 { margin-top: 0; }

/*p要素の行間を調整し、上マージンをカット*/
p {
    margin-top: 0;
    line-height: 1.6;
    margin: 0;
}

/*画像下の白い余白をカット*/
img { vertical-align: bottom; }

/*見出し１の装飾*/
#main h1 {
    background-image: url(../images/header bg.jpg);
    padding: 30px 30px 30px 20px;
    font-size: 26px;
    border-bottom: solid 1px #8b7348;
}
/*見出し２の装飾*/
#main h2 {
    font-size: 22px;
    border: 1px solid #b7a077;
    padding: 11px 22px;
    border-radius: 5px;
}
/*見出し３の装飾*/
#main h3 {
    font-size: 18px;
    border-left: solid 3px #b7a077;
    padding:4px 9px 4px 14px;
}
/*見出し４の装飾*/
#main h4{
    font-size: 40px;
    color: floralwhite;
    padding: 0px;
}
header {
	position: relative;
	background: #FFFFFF;
    height: 62px;
}
.header-container {
    margin: 0px;
    padding: auto;
}
.header-logo {
	margin: 0;
	width: 300px;
	height: 62px;
	background-image: url(../images/huviastoplogo.jpg);
	background-size: 300px 62px;
	background-repeat: no-repeat;
	text-indent: -9999px;
    vertical-align: middle;
}

.header-navbtn {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 30;
	width: 62px;
	height: 62px;
	background-image: url(../images/navbtn.png);
	background-size: 62px 62px;
    background-color: black;
    vertical-align: middle;
}
.header-navbtn:hover, .header-navbtn:active {
	background-color: #8bb15a;
}

@media screen and (min-width: 768px) {
    header{
        height: auto;
    }
	/* ヘッダー */
	.header-container {
		padding: 1px;
	}
	.header-logo {
		width: 1046px;
		height: 161px;
		background-size: 1046px 161px;

	}
    .twitter {
    position: absolute;
    top: 0;
	right: 0;
	z-index: 30;
	width: 75.1px;
	height: 62px;
	background-image: url(../images/Twitter_Logo_Blue.png);
	background-size: 75.1px 62px;
	background-repeat: no-repeat;
}
.youtube {
    position: absolute;
    top: 63px;
	right: 0;
	z-index: 30;
	width: 75.1px;
	height: 62px;
	background-image: url(../images/yt_icon_rgb.png);
	background-size: 75.1px 62px;
	background-repeat: no-repeat;
}

}
@media screen and (min-width: 768px) {
	.header-navbtn {
		display: none;
	}
}
/* ナビゲーション */
nav {
	font-size: 0.78rem;
	background: #FFFFFF;
}
@media screen and (min-width: 768px) {
	nav {
		font-size: 1rem;
	}
}
.nav-container {
	position: absolute;
	top: 62px;
	right: 0;
	z-index: 20;
	margin: 0;
	padding: 0;
	width: 200px;
	background: #638a30;
	box-shadow: 0px 5px 5px  rgba(0,0,0,0.4);
}
.globalnav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.globalnav li a {
	display: block;
	padding: 15px 20px;
	border-bottom: 1px solid #8bb15a;
	text-decoration: none;
	line-height: 100%;
	color: #FFFFFF;
}
.globalnav li a:hover,
.globalnav li a.current {
	background: #8bb15a;
	color: #000000;
}
@media screen and (min-width: 768px) {
	.nav-container {
		position: relative;
		top: 0;
		left: 0;
		padding: 0 20px 0 20px;
		width: 100%;
		background: none;
		box-shadow: none;
	}
	.globalnav {
		display: flex;
	}
	.globalnav li {
		flex: 0 0 20%;
	}
	.globalnav li a {
		padding: 10px 0;
		border-bottom: 8px solid #000000;
		text-align: center;
        color: #000000;
	}
	.globalnav li a:hover,
	.globalnav li a.current {
        background: #C0C0C0;
		border-bottom: 8px solid #C0C0C0;
	}
}

footer{
    background-color: #6699CC;
    text-align: center;
}
footer #footer_nav {
    background-color: #efefef;
    padding: 10px 0;
}
footer #footer_nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer #footer_nav li {
    display: inline;
    border-left: solid 1px #aaa;
    margin-left: 8px;
    padding-left: 8px;
    font-size: smaller;
}
footer #footer_nav li:last-child {
    border-right: solid 1px #aaa;
    padding: 0 8px;
}
footer small {
    display: block;
    padding: 8px 0;
    color: #fff;
}
/*パンくずリスト*/
#breadcrumb { font-size: smaller; }
#breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
#breadcrumb ol li { display: inline; }
#breadcrumb ol li::after {
    content: ">";
    padding-left: 7px;
}
#breadcrumb ol li:last-child::after { content: none; }



#point { margin-bottom: 30px; }
#point section {
    margin-bottom: 10px;
    overflow: hidden;
}
#point figure {
    float: right;
    margin: 0 0 0 16px;
}
#point figcaption {
    font-size: 12px;
    color: #9C9689;
    text-align: center;
}

#information ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#information ul li{
    width:700px;
    margin: 0 30px 30px 0;
    padding: 10px 0;
    border: solid 1px #ccc;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
#entry dl {
    background: #f1ede4;
    border: 1px solid #ddd;
    border-top: 0;
}
#entry dl dt,
#entry dl dd {
    padding: 10px;
    border-top: 1px solid #ddd;
}
#entry dl dt{
    width: 13em;
    float: left;
    clear: both;
    font-weight: bold;
}
#entry dl dd {
    background-color: #fff;
    border-left: 1px solid #ddd;
    margin-left: 13em;
}
.must { color: #f00; }
#entry #name {
    width: 15em;
    padding: 3px;
}
#entry #email {
    width: 25em;
    padding: 3px;
}
#entry #category2,
#entry #category3,
#entry #questionnaire2,
#entry #questionnaire3 {
    margin-left: 15px;
}
#entry #detail {
    width: 36em;
    height: 15em;
}
#entry #submit_button_cover {
    text-align: center;
}
#entry #submit_button {
    background-color: #b8a077;
    border: 1px solid #b7a077;
    padding: 15px 100px;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.1s linear;
}
#entry #submit button:haver {
    background-color: #c7ae81;
}
#top_btn
{
  position: fixed;
  bottom: 10px;
  right: 10px;
  
  border-radius: 50%;
  background-color: aqua;
  padding: 6px 3px;
    
    width: 70px;
    height: 70px;
    
    opacity: 70%;
}
@media screen and (min-width: 768px){
    #top_btn{
            width: 120px;
    height: 120px;
    }
    
}

/* ========== Javascript用CSS ========== */
/* ナビゲーションを最初は非表示。 */
#js-slidemenu {
	display: none;
}
/* パソコン向けではナビゲーションを常に表示 */
@media screen and (min-width: 768px) {
	#js-slidemenu {
		display: block !important; 
	}
}
/* ナビゲーションが開いたときに画面を暗くする処理のためのCSS */
.js-slidemenu-effect {
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.4;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
