@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Cinzel:400,700,900|Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese,latin-ext);

/*

font-family: 'Noto Serif JP', serif;
font-family: 'Cinzel', serif;
	BASE
*******************************/


* {
	font-family:'Noto Serif JP', "Times New Roman", Times, "serif","MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
}

body > #container {
	/*height: auto;*/
}
body * {line-height:1.22em;}

img {
	vertical-align:bottom;
	line-height:0;
}

p,th,td,dt,dd,li,h1,h2,h3,h4,h5,h6 { color:#000;}
dt,dd { color:#000;}
a,
a:link,
a:visited {
	color: #000000;
	text-decoration:none;
}
a:hover {
	color:#666666;
	text-decoration:none;
}

a img {
	outline:none;
	border:none;
}
#container div area {
	border:none;
	outline:none;
}

.clear { clear:both;}

* img {
	max-width: 100%;
	height: auto;
}
.fontcz {
	font-family: 'Cinzel', serif;
}

/*//////////////////////////////////////////////////////////////////////////*/

/*
	BASE LAYOUT
******************/
body {
}
#main {
}
#main p {
	color: #000;
	font-size:1.6rem;
	line-height:1.8em;
	margin:0 0 1em;
	padding:0;
}
#sm-menu {
	display: none;
}
/*基本：左右配置　上下センター　折り返しなし*/
.fbox {    
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}
/*折り返しなし*/
.fbox.nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
/*左寄せ*/
.fbox.bxstart {
  -webkit-box-pack: start;
     -ms-flex-pack: start;
   justify-content: flex-start;
}
/*右寄せ*/
.fbox.bxend {
  -webkit-box-pack: end;
     -ms-flex-pack: end;
   justify-content: flex-end;
}
/*中央寄せ*/
.fbox.bxcenter {
  -webkit-box-pack: center;
     -ms-flex-pack: center;
   justify-content: center;
}
/*上寄せ*/
.fbox.alstart {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
/*下寄せ*/
.fbox.alend {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
/*上下中央*/
.fbox.alcenter {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/*上下端*/
.fbox.albt {
  -ms-flex-line-pack: justify;
       align-content: space-between;
}
/*上下均等*/
.fbox.linedist {
  -ms-flex-line-pack: distribute;
       align-content: space-around;
}
/*子要素に設定　順番を1番目に*/
.fbox .pos0 {
  -webkit-box-ordinal-group: 1;
             -ms-flex-order: -1;
                      order: -1;
}


/*//////////////////////////////////////////////////////////////////////////*/
html,body,#head,#foot {
	/*min-width: 1200px;*/
}

/*
	Header LAYOUT
******************/
#head {
	width:100%;
	position:relative;
}
#header {
	width:calc(100% - 60px);
	max-width: 1100px;
	margin:0 auto;
}

#menu {
	margin: 0;
	padding:30px 0;
}
#menu ul {
	width: 100%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
}
#menu ul li {
	font-size:1.6rem;
	padding:0 1em;
}

#menu ul li a {
	display:block;
	font-size:1.6rem;
	line-height:1em;
	font-family: 'Cinzel', serif;
	letter-spacing:0.1em;
	color:#990000;
	position:relative;
}
#menu ul li a::after {
	content:'';
	display:block;
	width:0;
	height:1px;
	background:#990000;
	position:absolute;
	left:50%;
	bottom:-10px;
	transform:translateX(-50%);
	transition:.3s;
}
#menu ul li.onn a::after,
#menu ul li a:hover::after {
	width:20px;
}

#head .spbtn {
	display:none;
}

/*//////////////////////////////////////////////////////////////////////////*/

/*
	Contents LAYOUT
******************/
#contents {
	margin:0;
	padding:0;
	position:relative;
}

/*
	Footer LAYOUT
******************/

#foot {
	width:100%;
	background:#990000;
}
#footer {
	max-width:1200px;
	width: calc(100% - 60px);
	margin:0 auto;
	padding:60px 0;
}
#footer > .fbox {
	width:100%;
}
#footer .fbox > div {
	font-size:2.1rem;
    font-family: 'Cinzel', serif;
	font-weight:100;
	line-height:1em;
	letter-spacing:0.2em;
	color:#ffffff;
}
#footer ul li:not(:last-child)::after {
	content:'';
	display:inline-block;
	width:1px;
	height:.66em;
	background:#ffffff;
	margin:0 1em;
}
#footer ul li a {
	font-size:1.3rem;
    font-family: 'Cinzel', serif;
	line-height:1em;
	color:#ffffff;
}
#copyright {
    font-family: 'Cinzel', serif;
	width:100%;
	text-align:center;
	background:#ffffff;
	color:#000000;
	font-size:1.2rem;
	letter-spacing:0.2em;
	line-height:1em;
	padding:1.5em 0;
}

br.pc,
br.tb,
br.sp {
	display:none;
}


@media screen and (max-width:1160px){

}

@media screen and (max-width:1000px){

#menu ul li {
	font-size:1.4rem;
	padding:0 .5em;
}
#menu ul li a {
	font-size:1.4rem;
}

#footer > .fbox {
	width:100%;
}
#footer .fbox > div {
	width:100%;
	text-align:center;
	margin-bottom:0.5em;
}
#footer .fbox > ul {
	width:100%;
}


br.pc {
	display:inline;
}



}

@media screen and (max-width:940px){


}


@media screen and (max-width:768px){


#header {
	width: calc(100% - 40px);
}
#menu ul li {
	font-size:1.3rem;
	padding:0;
}
#menu ul li a {
	font-size:1.3rem;
}
#main p {
	font-size:1.4rem;
}


#footer {
	width: calc(100% - 40px);
}
#footer .fbox > div {
	font-size:1.8rem;
}
#footer .fbox > ul a {
	font-size:1.2rem;
}


br.tb {
	display:inline;
}

}


@media screen and (max-width:640px){


#header {
	width: calc(100% - 30px);
}
#head .spbtn {
    display:block;
    width:40px;
    height:40px;
    position:absolute;
    top:5px;
    right:5px;
    background:#000000;
    box-sizing:border-box;
    border-radius:4px;
}
#head .spbtn .svg-inline--fa {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	font-size: 2.4rem;
	color:#ffffff;

}
#head .spbtn .close {
	display:none;
}
#head .spbtn.open .open {
	display:none;
}
#head .spbtn.open .close {
	display:inline-block;
}

#menu {
	position:fixed;
	width:75%;
	height:100vh;
	box-sizing:border-box;
	padding:30px 20px;
	left:-80%;
	top:0;
	background:rgba(255,255,255,.95);
	transition:.3s;
	z-index: 99;
}
#menu.open {
	left:0;
}
#menu ul li {
	width:100%;
	text-align:left;
	padding:0;
}
#menu ul li a {
	padding:.7em 0;
}
#menu ul li a::after {
	left:-15px;
	bottom:1.2em;
}


#main p {
	font-size:1.4rem;
	line-height:1.6em;
}




#footer {
	width: calc(100% - 30px);
	padding:30px 0;
}
#footer .fbox {
	text-align:center;
}
#footer .fbox > div {
	font-size:1.6rem;
	margin-bottom:1em;
}
#footer .fbox > ul {
	font-size:1.2rem;
	width: 24em;
	margin: 0 auto;
}
#footer ul li:nth-child(-n+4){
	margin-bottom:0.3em;
}
#footer ul li:nth-child(4)::after {
	content:none;
}
#footer .fbox > ul a {
	font-size:1.2rem;
}


#copyright {
	font-size:1.1rem;
	padding:1em 0;
}

br.sp {
	display:inline;
}

}


@media screen and (max-width:480px){

}