
html body {letter-spacing:0.1em;} body {
margin: 0;
background: #f5f5f5;
color: #000000;
}





div.menu {
font-size: 0.8rem;
line-height: 1;
}

ul.menu, ul.menu ul {
margin: 0;
padding: 0;
list-style: none;
}
ul.menu li {
margin: 0;
padding: 0;
vertical-align: top;
}

ul.menu a {
display: block;
text-decoration: none;
color: #000000;
}

ul.menu span.sub {
display: block;
margin: 2px 5px 0;
opacity: 0.5;
font-size: 0.6rem;
text-decoration: none;
text-shadow: none;
}


@media only screen and (min-width: 768px) {
div#menu {
text-align: center;
}

ul.menu {
display: table;
border-spacing: 10px;
margin: -2px auto;
}

ul.menu > li {
position: relative;
display: table-cell;
padding: 5px;

border-bottom: 2px solid #be161d;

transition: border-color 0.5s;
}
ul.menu > li:after {
position: absolute;
content: "";
left: 50%;
bottom: 0;
margin-left: -5px;
border: 5px solid transparent;
border-bottom: 5px solid #be161d;
}

ul.menu > li.on, ul.menu li:hover {
border-bottom-color: #cccccc;
}
ul.menu > li.on:after, ul.menu li:hover:after {
border-bottom-color: #cccccc;
}

ul.menu ul a {
position: relative;
border-left: 2px solid #be161d;
}
ul.menu li:hover ul li.on > a, ul.menu ul a:hover {
border-left-color: #cccccc;
}

ul.menu > li:after {
opacity: 0;
animation: anim1-4 1s forwards;
}
ul.menu > li:nth-of-type(1):after {
animation-delay: 0.1s;
}
ul.menu > li:nth-of-type(2):after {
animation-delay: 0.2s;
}
ul.menu > li:nth-of-type(3):after {
animation-delay: 0.3s;
}
ul.menu > li:nth-of-type(4):after {
animation-delay: 0.4s;
}
ul.menu > li:nth-of-type(5):after {
animation-delay: 0.5s;
}
ul.menu > li:nth-of-type(6):after {
animation-delay: 0.6s;
}
ul.menu > li:nth-of-type(7):after {
animation-delay: 0.7s;
}
ul.menu > li:nth-of-type(8):after {
animation-delay: 0.8s;
}
ul.menu > li:nth-of-type(n+8):after {
animation-delay: 0.9s;
}

ul.menu li ul {
position: absolute;
top: 100%;
left: 0;
padding: 10px;
}
ul.menu li:last-child ul, ul.menu li:nth-last-child(2) ul {
left: auto;
right: 0;
}
ul.menu li:hover ul {
z-index: 2;
background: #f5f5f5;
-webkit-box-shadow:rgba(0, 0, 0, 0.2) 0 0 3px 1px;box-shadow:rgba(0, 0, 0, 0.2) 0 0 3px 1px;
}

ul.menu li ul a {
display: block;
height: 0;
padding: 0 10px;
overflow: hidden;
white-space: nowrap;
text-align: left;

transition: padding 0.3s, margin 0.3s, border-color 0.5s;
}
ul.menu li:hover ul a {
height: auto;
margin: 10px 0;
padding: 10px 10px;
overflow: visible;
}

span.menu3h_toggle {
display: none;
}
}


@media only screen and (max-width: 767px) {
ul.menu > li {
position: relative;
margin: 10px 0;
border-left: 2px solid #be161d;
}
ul.menu > li:after {
position: absolute;
content: "";
top: 50%;
left: 0;
margin-top: -5px;
border: 5px solid transparent;
border-left: 5px solid #be161d;
}
ul.menu > li.on, ul.menu > li.on:after {
border-left-color: #cccccc;
}

ul.menu a {
padding: 15px 10px;
}
ul.menu ul li.on > a {
border-bottom: 1px solid #cccccc;
}

ul.menu ul {
padding: 0 0 10px 20px;
}
ul.menu ul li {
display: inline-block;
}
ul.menu ul a {
display: inline-block;
}


div#menu {
position: fixed;
top: 49px;
bottom: 0;
right: -100%;
z-index: 1;

width: 300px;
box-sizing: border-box;
padding: 10px;

background: #f5f5f5;

text-align: left;
transition: right .4s;

overflow: auto;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
body.menu3h_on div#menu {
right: 0;
-webkit-box-shadow:rgba(0, 0, 0, 0.2) 0 0 3px 1px;box-shadow:rgba(0, 0, 0, 0.2) 0 0 3px 1px;
}

span.menu3h_toggle {
position: fixed;
right: 0;
top: 0;
z-index: 1;

background: #f5f5f5;
-webkit-box-shadow:rgba(0, 0, 0, 0.2) 0 0 3px 1px;box-shadow:rgba(0, 0, 0, 0.2) 0 0 3px 1px;

opacity: 0.5;
transition: .4s;
}
body.menu3h_on span.menu3h_toggle {
opacity: 1;
}

span.menu3h_toggle > span, span.menu3h_toggle > span:before, span.menu3h_toggle > span:after {
background-color: #000000;
}
}







@media only screen and (min-width: 768px) {
div.contents {
display: grid;
grid-template-columns: auto 1fr auto;
}
#contents {
grid-column: 2 / 3;
}

div.top_wrap {
position: relative;
}

div.top {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 1;

display: flex;
justify-content: center;
align-items: center;

background-color: rgba(245, 245, 245, 0.7);
-webkit-box-shadow:rgba(0, 0, 0, 0.2) 0 -3px 3px -2px;box-shadow:rgba(0, 0, 0, 0.2) 0 -3px 3px -2px;
}
div.top.sticky_fixed {
position: fixed;
top: 0;
bottom: auto;
transition: .4s;

background: #f5f5f5;
-webkit-box-shadow:rgba(0, 0, 0, 0.2) 0 3px 3px -2px;box-shadow:rgba(0, 0, 0, 0.2) 0 3px 3px -2px;
opacity: 0.7;
}
div.top.sticky_fixed:hover {
opacity: 1;
}

div.top > div#header {
flex: 1;
}
div.top.sticky_fixed > div#header {
height: 0;
visibility: hidden;
overflow: hidden;
}

div.top > div#menu {
flex: 2;
padding: 20px 0;
}
div.top.sticky_fixed > div#menu {
padding: 0;
}

body.nophoto div.top_wrap {
position: sticky;
top: 0;
z-index: 1;
}

body.nophoto div.top {
position: static;
}
body.nophoto div.top.sticky_fixed {
position: static;
}
body.nophoto div.top.sticky_fixed > div#header {
height: auto;
visibility: visible;
overflow: visible;
}
}





ul.crumb {
margin: 10px auto;
padding: 0;
list-style: none;
font-size: 0.8rem;
opacity: 0.5;
}
ul.crumb li {
display: inline-block;
margin: 0 10px 0 0;
padding: 0;
}
ul.crumb li:after {
display: inline-block;
content: "»";
margin-left: 10px;
}
ul.crumb li:last-of-type:after {
display: none;
}
ul.crumb a {
color: #000000;
}

span.bar {
position: relative;
display: block;
height: 2px;
margin: 50px auto;
background-color: #be161d;
}
span.bar:after {
position: absolute;
content: "";
left: 50%;
bottom: 100%;
margin-left: -5px;
border: 5px solid transparent;
border-bottom: 5px solid #be161d;
}





@media only screen and (min-width: 1021px) {
ul.crumb, span.bar {
width: 1000px;
}

div.contents {
width: 1000px;
margin: 0 auto;
}


body.liq #contents div.lb, div#photo div.lb, div.footer div.lb, body.liq #contents div.block > div.row, div#photo div.block > div.row, div.footer div.block > div.row {
width: 1000px;
margin: 0 auto;
}
}

@media only screen and (max-width: 767px) {
ul.crumb {
margin: 10px;
}
}


body.liq div.contents {
display: block;
width: auto;
}

