/*リセットCss*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*リセットCssここまで*/

body {
    background-color: #030303;
    color: white;
    overflow-y: scroll;
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
    height: 80%;
    font-family: "Noto Sans JP";
}

body a {
    text-decoration: none;
    font-size: 1.5em;
    color: white;
}

body::-webkit-scrollbar {  /* Chrome, Safari 対応 */
    display:none;
}

.topMenuWrap {
    display: flex;
    justify-content: center;
    padding-top: 3%;
}

.menuHome {
    /*margin-right: 4vw;*/
    margin: 0 1vw;
}

.menuMenu {
    margin-left: 4vw;
    opacity: 0.6;
}

.menuContent {
    font-family: essonnes-text;
}

#menu {
    display: none;
}

.menuText {
    position: relative;
}

.menuText::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #EEE;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
.menuText:hover::after {
    transform: scale(1, 1);
}

.menuTextR {
    position: relative;
}

.menuTextR::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #EEE;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }
.menuTextR:hover::after {
    transform: scale(1, 1);
}

.menuTextL {
    position: relative;
}

.menuTextL::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #EEE;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
.menuTextL:hover::after {
    transform: scale(1, 1);
}

.sideMenuContent {
    display: flex;
    align-items: center;
    font-family: essonnes-text;
}

.leftMenuWrap {
    padding-left: 3vw;
}

.rightMenuWrap {
    padding-right: 3vw;
}

.centerWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.centerWrap .sideMenuContent a {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

h1 {
    font-family: dapifer-stencil;
    font-size: 5em;
}

.background img{
    z-index: -10;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
}

.go-on_logo {
    animation: fadeIn 4s ease 0.8s 1 normal;
    opacity:0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn { /*animetion-nameで設定した値を書く*/

    0% {opacity: 0} /*アニメーション開始時は不透明度0%*/
  
    100% {opacity: 1} /*アニメーション終了時は不透明度100%*/
  
}

.floatL {
    float: left;
}

.formWrapper {
    max-width: 75vw;
}

.formWrapper div textarea {
    max-width: 75vw;
}

.formSubmitButtonWrapper {
    display: flex;
    justify-content: center;
}

.formSubmitButton {
    font-size: 20px;
    font-weight: bold;
    width: 180px;
    height: 40px;
    display: inline-block;
    background: black;
    padding: 0.3em 1em;
    text-decoration: none;
    color: white;
    border: solid 2px white;
    transition: .4s;
    cursor: pointer;
}

.formSubmitButton:hover {
    background: white;
    border: solid 2px black;
    color: black;
}

table th,table td{
    padding: 0 1em;
}

.tableAddress{
    vertical-align: bottom;
}

.pin{
    width: 2.5rem;
    height: 2.5rem;
    vertical-align: bottom;
}

.pin:hover {
    filter:drop-shadow(3px 3px 3px rgba(240,240,240,0.5));
    transform: translateY(-3px);
    transition-duration: 0.5s;
}

.worksTitle{
    display: flex;
    justify-content: center;
}

.contactButtonWrapper {
    display: flex;
    justify-content: center;
}

.contactButton {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    width: 180px;
    height: 40px;
    display: inline-block;
    background: black;
    padding: 0.3em 1em;
    text-decoration: none;
    color: white;
    border: solid 2px white;
    transition: .4s;
    letter-spacing: 0.3em;
    cursor: pointer;

}

.contactButton:hover {
    background: white;
    border: solid 2px black;
    color: black;
}

#gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width:60%;
}
#gallery li{
    width: 18%;
    margin-right: 3.5%;
    margin-left: 3.5%;
    margin-bottom: 7%;
}
.gallery-item img{
    width: 100%;
    object-fit: cover;
}

.googleCalender{
    display: inline-block;
}

.snsCenter {
    flex-direction :column;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    right: 0px;
    bottom: 0px;
    font-size: 1.5em;
    margin-right: 3vw;
    font-family: essonnes-text;
}

.snsCenter span {
    margin: 0 auto 3vw auto;
}

.snsCenter a i {
    font-size: 1.5em;
    vertical-align: bottom;
}

.snsCenter a {
    font-size: 1em;
}

.rightMenuWrap {
    padding-right: 3vw;
}

.bottomMenuWrap {
    display: flex;
    justify-content: center;
    position: relative;
    padding-bottom: 3%;
}

.bottomMenuContent {
    font-family: essonnes-text;
}

.bottomMenuWrap .sns{
    float: right;
    position: absolute;
    right: 0px;
    font-size: 1.5em;
    margin-right: 3vw;
    font-family: essonnes-text;
}

.bottomMenuWrap .sns i {
    font-size: 1.5em;
    margin-left: 1vw;
}
.sns a {
    font-size : 1em;
}

.sns {
    z-index: 2;
}


.barba-leave-active,
.barba-enter-active {
  transition: opacity 450ms ease;
}

/* initial state */
.barba-leave {
  opacity: 1;
}

.barba-enter {
  opacity: 0;
}

/* ending state */
.barba-leave-to {
  opacity: 0;
}

.barba-enter-to {
  opacity: 1;
}

@media screen and (max-width: 1024px) { 
.googleCalender iframe{
    width: 500px;
    height: 500px;
}

}

@media screen and (max-width: 480px) { 
.go-on_logo {
    max-width: 70vw;
    max-height: 70vw;
}

.leftMenuWrap{
    padding-left: 1vw;
}

.rightMenuWrap {
    padding-right: 1vw;
}

.bottomMenuWrap {
    padding-bottom: 10%;
}

.bottomMenuWrap .sns {
    padding-top: 3%;
    bottom: -2%;
}

table th, table td {
    padding: 0 0.5vw;
}

table {
    font-size: 12px;
}

.pin{
    width: 1.5rem;
    height: 1.5rem;
}

.pin:hover {
    color:white;
    translate: 1s;
}

#gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 80%;
    height: 85%;
}
#gallery li{
    width: 40%;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 5%;
}

#gallery li:nth-last-child(1),#gallery li:nth-last-child(2){
    margin-bottom: 0;
}

.gallery-item img{
    width: 100%;
    object-fit: cover;
}

.snsCenter {
    flex-direction: column;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    right: 0px;
    bottom: 0px;
    font-size: 1.5em;
    margin-right: 3vw;
    font-family: essonnes-text;
}

.snsCenter a i {
    font-size: 1.25em;
}

.snsCenter a {
    font-size: 0.8em;
}

.bottomWrap .sns {
    bottom: 0px;
}

.googleCalender iframe{
    width: 280px;
    height: 430px;
}

}