@charset "UTF-8";

/* Key Visual & Wrapper
------------------------------------------- */

section#kv{
	width:100%;
	height:100vh;
	min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
	z-index:1;
	position: relative;
}





/* Contents Title
------------------------------------------- */

h2{
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 200%;
	font-weight: bold;
	color: #ee7800;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	line-height: 180%;
	position: absolute;
  	top: 50%;
  	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	color: #FFF;
	text-shadow: 2px 2px 2px #000;
}

h3{
	text-align: center;
	font-size: 220%;
    line-height: 100%;
}
h3 span{
	font-size: 50%;
}



h4{
	margin: 15px auto 0;
	padding: 0 0 9px;
	text-align: center;
	font-size: 120%;
	font-weight: bold;
	border-bottom: 1px solid #000;
	width: 95%;
	position: relative;
	line-height: 110%;
}

h4::before{
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -10px;
	left: -6px;
	content: "●";
	font-size: 110%;
}

h4::after{
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -10px;
	right: -6px;
	content: "●";
	font-size: 110%;
}

h4 span{
	font-size: 80%;
}


/* News Area
------------------------------------------- */

dl.news{
}

dl.news dt {
	margin:0 0 20px 0;
	padding:0 0 8px 0;
	width: 80px;
	float: left;
	clear: both;
	line-height:160%;
	font-size: 90%;
}

dl.news dt span{
	font-size: 150%;
}

dl.news dd {
	margin:0 0 20px 0;
	padding: 0 0 8px 120px;
	border-bottom: 1px dotted #CCC;
	line-height:160%;
}

dl.news dd span{
	display: inline-block;
	width: 100px;
	padding: 0;
	margin-right: 10px;
	color: #fff;
	text-align: center;
	font-size: 85%;
}

dl.news dd a{
	color:#FF3300;
}

dl.news dd a:hover{
	color:#006699;
}



.tax{
	background-color: #CA3639;
}
.add{
	background-color: #485CAC;
}
.house{
	background-color: #5BA83F;
}
.event{
	background-color: #C88A8B;
}





/* About
------------------------------------------- */

div.box700{
	width: 700px;
	height: 300px;
}

div.box400{
	width: 400px;
	height: 300px;
}



.about_title{
	text-align: left;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 200%;
	font-weight: bold;
}
.about_title::before{
    font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight:bold;
	font-size: 70%;
    margin-right: 15px;
    color: #8F8080;
}

.about_img{
	text-align: left;
}
.about_txt{
    line-height: 180%;
}


/* Works Area
------------------------------------------- */

ul.works{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

ul.works li{
    display: inline-block;
    text-align: center;
    line-height: 150%;
}

ul.works li img{
     overflow: hidden;
     margin-bottom: 10px;
     width: 350px;
}

ul.works li:nth-child(2){
    margin-left: 50px;
    margin-right: 50px;
}




/* Button
------------------------------------------- */
div.button_area{
	width:120px;
	padding:0;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.button {
	position: relative;
	z-index: 2;
	background-color: #003399;
	color: #fff;
	font-size:80%;
	display: inline-block;
	width: 120px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	outline: none;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-transition: all .8s;
	transition: all .8s;
}

.button:hover {
	background-color: #006699;
	border-color: #006699;
	color: #FFF;
}
.button::before,
.button::after {
	top: 0;
	width: 50%;
	height: 100%;
	background-color: #000;
}
.button::before {
	right: 0;
}
.button::after {
	left: 0;
}
.button:hover::before,
.button:hover::after {
	width: 0;
	background-color: #006699;
}

.button span{
  position: relative;
}
.button span::before{
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
  margin-top: -4px;
}




/* Gold gizagiza
------------------------------------------- */

/* ------ ゴールド背景 上下ぎざぎざ ------ */

.bg_gold::before {
    display: block;
    content: "";
    width: 100%;
    height: 5px;
    background: url("../images/common/gold_top.jpg") repeat-x center top/1280px auto;
    position: absolute;
    z-index: 2;
    top: -4px;
    left: 0;
}

.bg_gold::after {
    display: block;
    content: "";
    width: 100%;
    height: 5px;
    background: url("../images/common/gold_bottom.jpg") repeat-x center top/1280px auto;
    position: absolute;
    z-index: 2;
    bottom: -4px;
    left: 0;
}



