@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&display=swap');

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

*, 
*:before, 
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

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

a {
  color: #e7398e;
  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
------------------------------ */

header {
  height: 80px;
  width: 100%;
}

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

header a {
    color: #fff;
}

header div.logo {
    padding: 12px;
    position: absolute;
        left: 0;
        top: 0;
    z-index: 100;
}

header div.logo img {
    height: 64px;
    width:auto;
}

header div.globalmenu {
    position: relative;
}

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

header div.globalmenu label.globalmenu-button-label {
    background-color: rgba(5, 5, 5, 0.8);
    border-radius: 50%;
    position: fixed;
    top: 12px;
    right: 12px;
    display: flex;
    height: 56px;
    width: 56px;
    justify-content: center;
    align-items: center;
    z-index: 110;
}

header div.globalmenu #globalmenu-button-check:checked ~ label.globalmenu-button-label {
  border-radius: 50% 50% 0 0;
}

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: #e7398e;
    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;/*アニメーション設定*/
}

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

header div.globalmenu div.globalmenu-list ul {
    padding: 12px 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;
}

header div.globalmenu div.globalmenu-list ul li a dl dd.en {
    font-family: "Baloo Da 2", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #e7398e;
}

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


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

/* ------------------------------
layout
------------------------------ */

.l-content {
  position: relative;
}

.l-wrapper-zero {
	margin: 0 auto;
	max-width: 428px;
	padding: 0;
  position: relative;
  width: 100%;
}

.l-wrapper-md {
	margin: 0 auto;
	max-width: 428px;
	padding: 0 16px;
  position: relative;
  width: 100%;
}

.l-wrapper-lg {
	margin: 0 auto;
	max-width: 428px;
	padding: 0 32px;
  position: relative;
}

.l-column-parent {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
	max-width: 428px;
  position: relative;
}

/* ------------------------------
Component
------------------------------ */

p.annotation {
  font-size: 1.4rem;
}

/* ------------------------------
project
------------------------------ */

.p-news {
  border: 3px solid #e7398e;
  margin: 0 auto;
  padding: 16px;
  position: relative;
  width: 80%;
  z-index: 90;
}

.p-news h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.p-news p {
  font-size: 1.5rem;
}

.p-introduction {
	background-image: url('/media/introduction_bg.jpg');
	background-position: center top;
	background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0;
  max-width: 428px;
  padding-top: 100%;
  position: relative;
  width: 100%;
  z-index: 80;
}
@media screen and (min-width: 428px) {
  .p-introduction {
    padding-top: 428px;
  }
}

.p-introduction > div.live {
  background-color:rgba(5, 5, 5, 0.5);
  box-shadow: 0 0 16px #e7398e;
  margin: 0 auto;
  overflow: hidden;
  padding: 8px 16px;
  position: absolute;
    left: 0;
    right: 0;
    top: 20%;
  width: 100%;
  z-index: 80;
}
@media screen and (min-width: 428px) {
  .p-introduction > div.live {
    width: 80%;
  }
}


.p-introduction > div.live p {
  animation: live-loop 16s linear infinite;
  display : inline-block;
  font-size: 1.5rem;
  padding-left: 100%;
  white-space: nowrap;
}

@keyframes live-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-106%);
  }
}

.p-introduction > p.lead {
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
    left: 32px;
    top: 50%;
  text-shadow: 0px 2px 6px #000000;
  transform:rotate(-16deg);
}

.p-introduction > p.lead span.big {
  font-size: 2rem;
}

.p-introduction2 div.button-bbs {
}

.p-introduction2 div.button-bbs a.button {
  background-color: #e7398e;
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  margin: 0 auto;
  padding: 2px;
  text-align: center;
  width: 70%;
}

.p-introduction2 div.button-bbs a.button span {
  border: 1px solid #e7398e;
  color: #fff;
  display: block;
  padding: 8px;
}

.p-notice {
  border: 1px solid #e7398e;
  padding: 16px;
}

.p-notice h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.p-notice p {
  font-size: 1.5rem;
}

.p-events {
}

.p-events > .p-events-dates {
}

.p-events > .p-events-dates > ul {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
}

.p-events > .p-events-dates > ul > li {
  background-color: #555;
  border-radius: 16px 16px 0 0;
  color: #999;
  font-family: "Baloo Da 2", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding: 12px 0 8px 0;
  text-align: center;
  width: calc((100% - 8px) / 1);
}

.p-events > .p-events-dates > ul > li.current {
  background-color: #e7398e;
  color: #fff;
}

.p-events > .p-events-detail {
  padding: 0 16px;
}

.p-events > .p-events-detail > .p-events-detail-unit {
  border: 2px solid #e7398e;
  padding: 24px 16px;
}

.p-events > .p-events-detail > .p-events-detail-unit > .title {
  text-align: center;
}

.p-events > .p-events-detail > .p-events-detail-unit > .title > .date {
  font-size: 1.4rem;
  font-weight: 700;
}

.p-events > .p-events-detail > .p-events-detail-unit > .title > h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 4px; 
}

.p-events > .p-events-detail > .p-events-detail-unit > .title > h2 > span.sub {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}

.p-events > .p-events-detail > .p-events-detail-unit > .title > .title_en {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail {
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > h3 {
  border-left: 4px solid #e7398e;
  font-size: 2rem;
  font-weight: 700;
  padding: 4px 0 4px 8px;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > p {
  padding-left: 12px;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > p span.big {
  font-size: 2rem;
  font-weight: 700;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > p span.small {
  font-size: 1.4rem;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > table.price {
  border-collapse: collapse;
  width: 100%;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > table.price th {
  font-size: 1.5rem;
	padding: 4px 8px 4px 12px;
  text-align: left;
	vertical-align: top;
	white-space: nowrap;
	width: 7em;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > table.price td {
  font-size: 1.5rem;
	padding: 4px 12px 4px 8px;
  text-align: right;
	vertical-align: top;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > .marasokutei {
  background-color: #252525;
  padding: 12px;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > .marasokutei > h4 {
  font-size: 1.6rem;
  font-weight: 700;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > .marasokutei > h4 > span.em {
  background-color: #e7398e;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.5em;
  padding: 4px;
}

.p-events > .p-events-detail > .p-events-detail-unit > .detail > .marasokutei > p {
  font-size: 1.4rem;
}

.p-mara > h2,
.p-facilities > h2,
.p-howtostay > h2 {
  border-left: 8px solid #e7398e;
  font-size: 2.8rem;
  font-weight: 700;
  padding: 4px 0 4px 12px;
}

.p-mara > p,
.p-facilities > p,
.p-howtostay > p {
  padding-left: 20px;
}

div.p-facilities {
}

div.p-facilities ul {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(4, 1fr);
    padding-left: 20px;
}

div.p-facilities ul li {
}

div.p-facilities ul li:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1/3;
}

div.p-facilities ul li:nth-child(2) {
    grid-row: 1/2;
    grid-column: 3/4;
}

div.p-facilities ul li:nth-child(3) {
    grid-row: 1/2;
    grid-column: 4/5;
}

div.p-facilities ul li:nth-child(4) {
    grid-row: 2/3;
    grid-column: 3/4;
}

div.p-facilities ul li:nth-child(5) {
    grid-row: 2/3;
    grid-column: 4/5;
}

div.p-facilities ul li:nth-child(6) {
  grid-row: 3/4;
  grid-column: 1/2;
}

div.p-facilities ul li:nth-child(7) {
  grid-row: 3/4;
  grid-column: 2/3;
}

div.p-facilities ul li:nth-child(8) {
  grid-row: 4/5;
  grid-column: 1/2;
}

div.p-facilities ul li:nth-child(9) {
  grid-row: 4/5;
  grid-column: 2/3;
}

div.p-facilities ul li:nth-child(10) {
  grid-row: 3/5;
  grid-column: 3/5;
}

div.p-facilities ul li div.thumbnail {
	background-position: center;
	background-size: cover;
        padding-top: 100%;
}
@media screen and (min-width: 768px) {
	div.p-facilities ul li div.thumbnail {
	}
}

.p-map dl {
}

.p-map dl dt {
  font-family: "Baloo Da 2", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.p-map dl dd.address {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.p-map dl dd.phone {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.p-map div.googlemaps {
    height: 0;
    overflow: hidden;
    padding-top: 75%;
    position: relative;
}

.p-map div.googlemaps iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

/* ------------------------------
utility
------------------------------ */

.u-margin-top-xs {
	margin-top: 0.8rem;
}

.u-margin-top-sm {
	margin-top: 1.6rem;
}

.u-margin-top-md {
	margin-top: 2.4rem;
}

.u-margin-top-lg {
	margin-top: 3.2rem;
}

.u-margin-top-xl {
	margin-top: 4rem;
}



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

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

footer {
    padding: 24px;
    position: relative;
    width: 100%;
}

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

footer div.pageTop a {
  background-color: rgba(5, 5, 5, 0.8);
  border-radius: 50%;
	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 #e7398e;
    border-left: solid 3px #e7398e;
    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: "Baloo Da 2", sans-serif;
    font-size: 1.6rem;
    text-align: center;
}
