﻿@charset "UTF-8";
/* =============================================================================

共通

============================================================================= */

/*________________________________________________________

HTML SELECTORS
________________________________________________________
*/

* {
	box-sizing: border-box;
}

html,body {
	width: 100%;
}

body {
	background: #fff;
	color: #4d4d4d;
	margin: 0;
    font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 500;
	text-align: center;
	line-height: 1.6;
	font-size: 90%;
}

nav, h2, h3, h4 {
	font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

h2, h3, h4 {
	text-align: center;
	font-weight: normal;
}
h2 span {
	display: block;
}
h2 img {
	margin: 0 auto;
}
h2 {
	font-size: 130%;
}
img {
	display: block;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
ul {
	padding: 0;
	margin: 0;
}
ul li {
	list-style: none;
}

/*________________________________________________________

LINK
________________________________________________________
*/

a {
	color: #a58d38;
}

.btnMore {
	position: relative;
	display: inline-block;
	padding: 10px;
	color: #a58d38;
	text-decoration: none;
	border-top: 1px solid #a58d38;
	border-left: 1px solid #a58d38;
	border-right: 1px solid #a58d38;
	border-bottom: 3px solid #a58d38;
	transition: .3s;
}
.btnMore::after {
	position: absolute;
	display: inline-block;
	height: 24px;
	right: 24px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '\f105';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.btnMore:hover {
	background-color: #c4af65;
	color: #FFF;
}

.btnMore2 {
	position: relative;
	display: inline-block;
	padding: 10px;
	color: #a58d38;
	text-decoration: none;
	border-top: 1px solid #a58d38;
	border-left: 1px solid #a58d38;
	border-right: 1px solid #a58d38;
	border-bottom: 3px solid #a58d38;
	transition: .3s;
	background-color: #fff;
}
.btnMore2::after {
	position: absolute;
	display: inline-block;
	height: 24px;
	right: 24px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '\f105';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.btnMore2:hover {
	background-color: #c4af65;
	color: #FFF;
}




/*________________________________________________________

	h2,スライドイン
	________________________________________________________*/

h2, .slide-in, .contInner {
	position: relative;
	top: -16px;
	left: 0px;
}
h2.on, .slide-in.on, .contInner.on {
	top: 0px;
	left: 0;
	animation: slide_in 0.5s linear forwards;
}
@keyframes slide_in {
    0%   { transform:translate(0px,0px); opacity: 0; }
    100% { transform:translate(0px,-16px); opacity: 1; }
}


/* 
	ページトップ
-------------------------------------*/
a.pagetop {
	position: fixed;
	display: block;
	right: 40px;
    bottom: 40px;
	width: 56px;
	height: 56px;
	padding: 8px;
    cursor: pointer;
	color: #FFF;
	font-size: 100%;
	line-height: 1.3;
	text-decoration: none;
	border-radius: 100px;
	background-color: rgba(18,117,187,0.7);
    z-index: 10;
}
.pagetop:before {
	display: block;
	content: '\f062';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}



/* 文字
----------------------------- */
.small {
	font-size: 80%;
}
.big {
	font-size: 120%;
}
.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal;
}
.txtR {
	text-align: right;
}
.txtC {
	text-align: center;
}
.red {
	color: #e60012;
}


/*________________________________________________________

HTML5
________________________________________________________
*/
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary {
	display:block;
}