@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');

/* ------------------------------
variables
------------------------------ */

/* ------------------------------
common
------------------------------ */

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #050505;
  color: #f9f9f9;
  font-family: sans-serif;
  line-height: 1;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

a {
  color: #feef00;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, figure {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  list-style: none;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}

/* ------------------------------
header
------------------------------ */

div.header-wrapper {
    height: 80px;
    width: 100%;
}
@media screen and (min-width: 960px) {
    div.header-wrapper {
        height: 96px;
    }
}

header {
    position: relative;
    width: 100%;
}
@media screen and (min-width: 960px) {
    header {
        margin: 0 auto;
        width: 960px;
    }
}

header a {
    color: #fff;
}

header div.logo {
    padding: 12px;
    position: absolute;
        left: 0;
        top: 0;
    z-index: 100;
}
@media screen and (min-width: 960px) {
    header div.logo {
        padding: 16px;
    }
}

header div.logo img {
    height: 64px;
    width:auto;
}
@media screen and (min-width: 960px) {
    header div.logo img {
        height: 72px;
    }
}

header div.globalmenu {
    position: relative;
}
@media screen and (min-width: 960px) {
    header div.globalmenu {
        position: absolute;
            right: 0;
            top: 0;
    }
}

header div.globalmenu #globalmenu-button-check {
    display: none;
}

header div.globalmenu label.globalmenu-button-label {
    background-color: rgba(5, 5, 5, 0.8);
    position: fixed;
    top: 12px;
    right: 0;
    display: flex;
    height: 56px;
    width: 56px;
    justify-content: center;
    align-items: center;
    z-index: 110;
}
@media screen and (min-width: 960px) {
    header div.globalmenu label.globalmenu-button-label {
        display: none;
    }
}

header div.globalmenu label.globalmenu-button-label span,
header div.globalmenu label.globalmenu-button-label span:before,
header div.globalmenu label.globalmenu-button-label span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #feef00;
    position: absolute;
}

header div.globalmenu label.globalmenu-button-label span:before {
    bottom: 8px;
}

header div.globalmenu label.globalmenu-button-label span:after {
    top: 8px;
}



header div.globalmenu #globalmenu-button-check:checked ~ label.globalmenu-button-label span {
    background-color: rgba(255, 255, 255, 0);
}

header div.globalmenu #globalmenu-button-check:checked ~ label.globalmenu-button-label span::before {
    bottom: 0;
    transform: rotate(45deg);
}

header div.globalmenu #globalmenu-button-check:checked ~ label.globalmenu-button-label span::after {
    top: 0;
    transform: rotate(-45deg);
}

header div.globalmenu div.globalmenu-list {
    background-color: rgba(5,5,5,0.8);
    display: none;
    width: 50%;
    position: fixed;
    top: 68px;
    right: 0;/*leftの値を変更してメニューを画面外へ*/
    z-index: 110;
    transition: all 0.5s;/*アニメーション設定*/
}
@media screen and (min-width: 960px) {
    header div.globalmenu div.globalmenu-list {
        display: block;
        position: relative;
            top: 0;
        width: 640px;
    }
}

header div.globalmenu #globalmenu-button-check:checked ~ div.globalmenu-list {
    display: block; /*メニューを画面内へ*/
}

header div.globalmenu div.globalmenu-list ul {
    padding: 12px 16px;
}
@media screen and (min-width: 960px) {
    header div.globalmenu div.globalmenu-list ul {
        display: flex;
        justify-content: space-around;
        padding: 16px;
    }
}

header div.globalmenu div.globalmenu-list ul li {
    list-style: none;
}

header div.globalmenu div.globalmenu-list ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
}
@media screen and (min-width: 960px) {
    header div.globalmenu div.globalmenu-list ul li a {
        padding: 8px 16px;
    }
}

header div.globalmenu div.globalmenu-list ul li a dl dd.en {
    font-family: 'Patua One', cursive;
    font-size: 2rem;
    color: #feef00;
}

header div.globalmenu div.globalmenu-list ul li a dl dd.ja {
    font-size: 1.2rem;
    color: #bbb;
}


header div.globalmenu div.globalmenu-list ul li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: solid 2px #feef00;
    border-right: solid 2px #feef00;
    transform: rotate(45deg);
    position: absolute;
    right: 4px;
    top: 28px;
}
@media screen and (min-width: 960px) {
    header div.globalmenu div.globalmenu-list ul li a::before {
        border: none;
    }
}

/* ------------------------------
#main .content
------------------------------ */

div#main > div.content {
    position: relative;
    width: 100%;
}

div#main > div.content div.wrapper {
    background-position: left bottom;
    background-repeat: repeat-x;
    position: relative;
    width: 100%;
}

div#main > div.content section {
    margin: 0 auto;
    padding: 24px 24px;
    text-align: left;
    width: 100%;
}
@media screen and (min-width: 960px) {
    div#main > div.content section {
        width: 960px;
    }
}

div#main > div.content section h2 {
    background-color: #feef00;
    color: #050505;
    font-family: 'Patua One', cursive;
    font-size: 2.8rem;
    font-weight: 400;
    padding: 8px 12px 8px 12px;
    position: relative;
    line-height: 1.2;
    margin: 0 0 24px -24px;
    width: 75%;
    
}
@media screen and (min-width: 960px) {
    div#main > div.content section h2 {
        padding: 12px 16px;
        width: 60%;
    }
}

div#main > div.content section h2 a {
    color: #050505;
}

div#main > div.content section h2 span.sub {
    display: inline-block;
    font-family: sans-serif;
    font-size: 1.3rem;
    margin-left: 1rem;
}

div#main > div.content section h2::after {
    content: "";

    width: 0;
    height: 0;
    border: none;
    border-left: solid 58px transparent;
    border-bottom: solid 58px #050505;
    position: absolute;
    right: 0;
    top: 0;
}

div#main > div.content section h3 {
    font-size: 2.4rem;
}

div#main > div.content div.pager {
	padding: 0 8px;
	text-align: center;
}

div#main > div.content div.pager ul {
}

div#main > div.content div.pager ul li {
	border: none;
	display: inline-block;
	padding: 8px 8px 0 8px;
}

div#main > div.content div.pager ul li a {
}

div#main > div.content div.pager ul li.off {
	color: #777;
}

div#main > div.content div.backNavigation {
    margin-top: 24px;
}

div#main > div.content div.backNavigation ul {
}

div#main > div.content div.backNavigation ul li {
	margin-bottom: 4px;
	text-align: center;
}

div#main > div.content div.backNavigation ul li a {
    color: #fff;
	font-size: 1.5rem;
	padding: 0 0 0 16px;
    position: relative;
}


div#main > div.content div.backNavigation ul li a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #FEEF00;
    border-left: solid 2px #FEEF00;
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: 2px;
}


div#main > div.content dl.form {
    padding: 0;
}

div#main > div.content dl.form dt {
	font-size: 1.8rem;
	margin-bottom: 8px;
}

div#main > div.content dl.form dd {
    font-size: 1.5rem;
	margin-bottom: 16px;
	padding-left: 16px;
}


div#main > div.content dl.form input.field,
div#main > div.content dl.form textarea {
	appearance: none;
		-moz-appearance: none;
		-webkit-appearance: none;
	border: none;
    border-radius: 0;
	font-size: 1.5rem;
	outline: none;
	margin: 0 0 8px 0;
	padding: 8px;
}

div#main > div.content dl.form select {
	appearance: none;
		-moz-appearance: none;
		-webkit-appearance: none;
	background: #FFF;
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	outline: none;
	margin: 0 0 8px 0;
	padding: 8px;
}

div#main > div.content dl.form .annotation {
	color: #BBB;
	font-size: 1.4rem;
}

div#main > div.content dl.form .caution {
	color: #FEEF00;
	font-size: 1.4rem;
}

div#main > div.content dl.form dd ul.terms {
	border: 1px solid #777;
	padding: 8px;
}

div#main > div.content dl.form ul.terms li {
    font-size: 1.5rem;
}

div#main > div.content dl.form dd.submit {
	padding-top: 8px;
}

div#main > div.content dl.form dd.submit ul {
}

div#main > div.content dl.form dd.submit ul li {
	display: block;
}

div#main > div.content dl.form dd.submit ul li input.button {
	appearance: none;
		-moz-appearance: none;
		-webkit-appearance: none;
	background: #FEEF00;
	border: none;
	border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
	color: #050505;
	display: block;
	font-size: 1.5rem;
    margin: 0 auto;
	padding: 12px 0;
	text-decoration: none;
	width: 200px;
}

div#main > div.content > div.introduction {
    position: relative;
}

div#main > div.content > div.introduction div#topimage {
    animation-name: topimage-animation;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    background-image: url('/media/topimage.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    padding: 0;
    padding-top: 100%;
    position: sticky;
        left: 0;
        top: 0;
    width: 100%;
    z-index: -10;
}
@media screen and (min-width: 960px) {
    div#main > div.content > div.introduction div#topimage {
        margin: 0 auto;
        height: 480px;
        padding-top: 0;
        width: 960px;
    }
}

@keyframes topimage-animation {
    100% {
        opacity: 1;
    }
}

div#main > div.content > div.introduction section {
    padding-top: 0;
}
@media screen and (min-width: 960px) {
    div#main > div.content > div.introduction section {
        padding-top: 24px;
    }
}

div#main > div.content > div.introduction dl {
    margin-bottom: 24px;
}

div#main > div.content > div.introduction dl dt {
    text-align: center;
    text-shadow: 0px 3px 2px rgba(5, 5, 5, 0.5);
}

div#main > div.content > div.introduction dl dt.ja {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

div#main > div.content > div.introduction dl dt.en {
    font-family: 'Patua One', cursive;
    font-size: 2.4rem;
    margin-bottom: 16px;
}

div#main > div.content > div.introduction dl dd {
    text-align: center;
    text-shadow: 0px 3px 2px rgba(5, 5, 5, 0.5);
}

div#main > div.content > div.introduction dl dd.ja {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

div#main > div.content > div.introduction dl dd.en {
    font-family: 'Patua One', cursive;
    font-size: 1.8rem;
}

div#main > div.content > div.introduction div.buttonBbs {
}

div#main > div.content > div.introduction div.buttonBbs a.button {
    background-color: rgba(5, 5, 5, 0.8);
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.3em;
    margin: 0 auto;
    padding: 3px;
    text-align: center;
    width: 50%;
}

div#main > div.content > div.introduction div.buttonBbs a.button span {
    border: 2px solid #feef00;
    color: #fff;
    display: block;
    padding: 13px;
}

div#main > div.content > div.facilities {
}

div#main > div.content > div.facilities ul {
    display: flex;
    flex-wrap: wrap;
}

div#main > div.content > div.facilities ul li {
    padding: 16px;
    width: calc(100% / 2);
}
@media screen and (min-width: 960px) {
    div#main > div.content > div.facilities ul li {
        width: calc(100% / 3);
    }
}

div#main > div.content > div.facilities ul li a {
	background-position: center center;
	background-size: cover;
    display: block;
    padding-top: 100%;
    transform: rotate(16deg);
    width: 100%;
}

div#main > div.content > div.hours {
}

div#main > div.content > div.hours section {
    background-image: url('/media/bg_index.jpg');
    background-position: right 32px;
    background-repeat: no-repeat;
    background-size: contain;
}  

div#main > div.content > div.hours table {
    border-collapse: collapse;
    font-family: 'Patua One', cursive;
    width: 100%;
}

div#main > div.content > div.hours table tr:nth-child(odd) {

}

div#main > div.content > div.hours table tr th {
    font-size: 2rem;
    padding: 8px 0;
    width: 5em;
}

div#main > div.content > div.hours table tr td {
    padding: 8px 0;
}

div#main > div.content > div.fees {
}

div#main > div.content > div.fees section {
    background-image: url('/media/bg_fees.jpg');
    background-position: left 40px;
    background-repeat: no-repeat;
    background-size: contain;
}  

div#main > div.content > div.fees ul {
}

div#main > div.content > div.fees ul li {
    margin-bottom: 16px;
}

div#main > div.content > div.fees ul li dl {
    text-align: center;
}

div#main > div.content > div.fees ul li dd.condition {
    color: #bbb;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

div#main > div.content > div.fees ul li dd.condition span.en {
    display: block;
    font-size: 1.3rem;
}

div#main > div.content > div.fees ul li dd.price {
    font-family: 'Patua One', cursive;
    font-size: 2.8rem;
    font-weight: 700;
}

div#main > div.content > div.fees ul li dd.price span.sub {
    font-size: 1.6rem;
    margin-left: 0.2em;
}

div#main > div.content > div.fees p.annotation {
    font-size: 1.4rem;
    text-align: center;
}

div#main > div.content > div.map dl {

}

div#main > div.content > div.map dl dt {
    font-family: 'Patua One', cursive;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

div#main > div.content > div.map dl dd.address {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

div#main > div.content > div.map dl dd.phone {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

div#main > div.content > div.map div.googlemaps {
    height: 0;
    overflow: hidden;
    padding-top: 75%;
    position: relative;
}

div#main > div.content > div.map div.googlemaps iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}


/* ------------------------------
Content Board
------------------------------ */

div#main > div.content > div.board p.introduction {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

div#main > div.content > div.board div.buttonPost {
}

div#main > div.content > div.board div.buttonPost a.button {
    background-color: rgba(5, 5, 5, 0.8);
    display: block;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    margin: 0 auto;
    padding: 3px;
    text-align: center;
    width: 50%;
}

div#main > div.content > div.board div.buttonPost a.button span {
    border: 2px solid #feef00;
    color: #fff;
    display: block;
    padding: 13px;
}

div#main > div.content > div.board div.buttonComment {
    margin-top: 16px;
}

div#main > div.content > div.board div.buttonComment a.button {
    background-color: rgba(5, 5, 5, 0.8);
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    margin: 0 auto;
    padding: 3px;
    text-align: center;
    width: 44%;
}

div#main > div.content > div.board div.buttonComment a.button span {
    border: 1px solid #feef00;
    color: #fff;
    display: block;
    padding: 6px;
}

div#main > div.content > div.board div.boardList {
	margin-bottom: 24px;
}

div#main > div.content > div.board div.boardList p.noResult {
	padding: 24px 16px;
}

div#main > div.content > div.board div.boardList ul {
}

div#main > div.content > div.board div.boardList ul li {
	border: 1px solid #999;
	display: block;
    margin: 16px 0;
	padding: 16px;
}

div#main > div.content > div.board div.boardList ul li div.child {
	margin: 16px 0 0 24px;
}

div#main > div.content > div.board div.boardList ul li dl {
	position: relative;
}

div#main > div.content > div.board div.boardList ul li div.child dl {
    border-top: 1px solid #555;
    padding: 16px;
}

div#main > div.content > div.board div.boardList ul li div.child dl:last-child {
    border-bottom: 1px solid #555;
}

div#main > div.content > div.board div.boardList ul li dl dt,
div#main > div.content > div.board div.boardDetail dl dt {
	margin-top: 8px;
}

div#main > div.content > div.board div.boardList ul li dl dd,
div#main > div.content > div.board div.boardDetail dl dd {
	color: #DDD;
	font-size: 1.4rem;
}

div#main > div.content > div.board div.boardList ul li dl dd.delete {
	position: absolute;
		top: 0;
		right: 0;
}

div#main > div.content > div.board div.boardList ul li dl dd.delete a {
	color: #555;
	text-decoration: none;
}

div#main > div.content > div.board div.boardDetail {
	margin-bottom: 24px;
    padding: 0;
}

div#main > div.content > div.board div.boardDetail dl {
    background: #252525;
    border: 1px solid #555;
    padding: 16px;
}

div#main > div.content > div.board div.boardList ul li dl dt {
	margin-top: 8px;
}

div#main > div.content > div.board div.boardList ul li dl dd {
	color: #BBB;
	font-size: 1.4rem;
}

/* ------------------------------
footer
------------------------------ */

div.footer-wrapper {
    width: 100%;
}

footer {
    padding: 24px;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 960px) {
    footer {
        margin: 0 auto;
        width: 960px;
    }
}


footer div.pageTop {
	position: fixed;
		bottom: -56px;
		right: 0;
	z-index: 1000;
}

footer div.pageTop a {
    background-color: rgba(5, 5, 5, 0.8);
	display: block;
	width: 56px;
	height: 56px;
	text-align: center;
	color: #000;
	text-decoration: none;
}

footer div.pageTop a::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: solid 3px #feef00;
    border-left: solid 3px #feef00;
    border-radius: 1px;
    transform: rotate(45deg);
    position: absolute;
    left: 20px;
    top: 23px;
}

footer div.links {
    text-align: center;
}

footer div.links ul {
    display: flex;
    flex-wrap: no-wrap;
    justify-content: center;
}

footer div.links ul li {
    padding: 0 0.5em;
}

footer div.links ul li img {
    height: 48px;
    margin-bottom: 12px;
    opacity: 0.8;
    width: 48px;
}

footer p {
    color: #bbb;
    font-family: 'Patua One', cursive;
    font-size: 1.6rem;
    text-align: center;
}
