@charset "utf-8";

/*
reset
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
	font-style:normal;
	font-weight:normal;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
ol, ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ins {
    background-color:#000;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#000;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration:line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #000;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}
img {
	vertical-align:top;
	font-size:0;
	line-height:0;
}


/*
base
*/

html {
    font-size: 62.5%;
}
body {
    background: #FFF;
    color: #000;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-size: 1.6rem;/* 16px */
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.5;
}

html,body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

a {color:#000;text-decoration:none;}
a:hover {color:#000;text-decoration:underline;}

a:hover img {
	filter:alpha(opacity=80);
    -khtml-opacity:0.8;
    -moz-opacity:0.8;
    opacity:0.8;
}
a img,
a:hover img {
    transition: 0.5s 0s;
}

.clear {clear:both;}

.clearfix:after {
    content:"";
    display:block;
    clear:both;
}

::selection {
    background:#EEE;
}
::-moz-selection {
    background:#EEE;
}


/* 
layout
*/
#wrap {
    width: auto !important;
    width: 100%;
    margin: 0;
}
#container {
    width: 100vw;
    height: 100vh;
    display: flex;
    background-position: center center;
    background-size: cover;
}
.pc {
    display: inherit;
}
.sp {
    display: none;
}
#information {
    width: 20vw;
    position: relative;
    background: #FFF;
}
main {
    width: 80vw;
    position: relative;
}

/*----- header -----*/
header {
    width: 15vw;
    position: absolute;
    bottom: 3.75vw;
    left: 0;
    right: 0;
    margin: 0 auto;
}
header h1 {
    width: 100%;
    margin: 0 0 6.25vw;
}
header h1 img {
    width: 100%;
    max-width: 240px;
    min-width: 160px;
    height: auto;
}

/*----- informaition -----*/
#information {
}
#information p {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.1em;
}
#information ul {
    padding: 0 0 10px;
}
#information ul li {
    display: flex;
}
#information ul li p:first-of-type {
    width: 60px;
}
#information p.map {
	font-size: 1.2rem;
    padding: 0 0 2.5vw;
}
#information p.map a {
    background: url("../images/arrow@2x.png") no-repeat 0 5px;
    background-size: 21px 6px;
    color: #959595;
    padding: 0 0 0 30px;
    transition: 0.5s 0s;
}
#information p.map a:hover {
    background: url("../images/arrow@2x.png") no-repeat 5px 5px;
    background-size: 21px 6px;
    text-decoration: none;
}

/*----- main -----*/
main h2 {
    width: 60px;
    height: 136px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
main h2 {
    width: 60px;
    text-align: center;
}
main h2 img {
    width: 100%;
    height: auto;
}

/*----- footer -----*/
footer {
    position: absolute;
    bottom: 3.75vw;
    right: 3.75vw;
}
footer p {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-indent: -0.1em;
    text-align: right;
}

@keyframes fadeIn {
    0% {opacity:0}
    100% {opacity:1}
}
@-webkit-keyframes fadeIn {
    0% {opacity:0}
    100% {opacity:1}
}