@charset 'UTF-8';

/*
GENERAL STYLING
================================================ */
html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body {
	color: white;
    background-color: #1c1c1c;
	font-family: sans-serif;
}

/*
COMMON
================================================ */
p {
    line-height: 1.7;
}
img {
    max-width: 100%;
    margin-bottom: 0.8rem;
}
h2 {
    font-size: 3rem;
    padding: 0.8rem 0;
}
h1,
h2 {
    text-align: center;
}
header,
h1,
h2,
.hero-date {
    font-family: impact, sans-serif;
}
h3{
    font-size: 1.25rem;
    font-weight: bold;
}
#header2{
    padding-top: 80px;
}

/* Layout */
.wrapper {
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/*
HEADER
================================================ */
header {
    background-color: #1a1a2e;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
header .wrapper {
    display: flex;
    justify-content: space-between;
}
header a {
    font-size: 1.5rem;
}
.btn-menu {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 1px double rgba(255,255,255,.5);
    padding: .5rem 1rem;
}
.main-nav {
    background-color: #1a1a2e;
    width: 0;
    position: absolute;
    z-index: 2;
    top: 50px;
    right: 0;
    overflow: hidden;
    transition: .5s;
}
.main-nav li {
    text-align: center;
    margin: 2rem 0;
}
.main-nav a {
    display: block;
}
.main-nav.open-menu {
    width: 100%;
}
nav a:hover{
    color: aqua;
}
.text-box {
    display: block; /* テキストの周りに合わせてボックスサイズを調整 */
    padding: 0; /* 内側の余白 */
    border: 2px solid white; /* 2pxの黒い枠線 */
    border-radius: 0; /* 角を丸くする（オプション） */
}

/*
HERO
================================================ */
#hero {
    background-image: url('../images/hero.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
#hero h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px #000;
}
.hero-face {
  position: absolute; /* 絶対位置指定 */
  top: 78%; /* 上から50%の位置 */
  left: 50%; /* 左から50%の位置 */
  transform: translate(-50%, -50%); /* 中央に配置 */
  text-align: center; /* テキストを中央揃え */
  width: 100%; /* 幅を100%に設定 */
}
#hero p{
    padding-bottom: 0.5rem;
}

/*
NEWS
================================================ */
#news {
    padding: 2.5rem 0;
}
.news-table {
    width: 100%;
}
.news-table tr {
    border-bottom: 1px solid rgba(255,255,255,.5);
}
.news-table td {
    display: block;
    line-height: 1.5;
}
.news-date {
    font-size: .875rem;
    padding-top: 1rem;
}
.news-content {
    padding-bottom: 1rem;
}
.more{
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}
.more a:hover,
.news-content a:hover{
    color: aqua;
}

/*
BODY
================================================ */
.content {
  flex-direction: column;
  padding: 0.2rem 0.5rem;
  margin: 3rem 1rem;
  max-width: 880px;
}
/* テキストブロック */
.text-block {
  border-radius: 5px;
}
/* 画像ブロック */
.image-block,
.image-block2 {
    display: block;
    margin: auto;
}
.image-block img,
.image-block2 img {
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
}


/*
Activity
================================================ */
/* 記事部分 */
.post {
    margin-bottom: 3rem;
}
.post-title {
    font-weight: normal;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}
.post-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.post-date {
    font-size: .875rem;
}
.post-thumbnail {
    border-radius: 16px;
    margin-bottom: 1.5rem;
}
.post p {
    margin-bottom: 1.5rem;
    line-height: 2;
}
/* サイドバー */
.side-menu {
    list-style: none;
    text-align: center;
}
.side-menu li {
    border-bottom: 1px solid white;
}
.side-menu a {
    display: block;
    padding: 1rem;
}
.side-menu a:hover {
    color: #0bd;
}
.heading-medium {
    margin-top: 3rem;
}


/*
Contact
================================================ */
/* 店舗情報 */
.location {
    margin-bottom: 3.5rem;
}
.location-info {
    margin-bottom: 2rem;
}
.location-info .info {
    padding: 0;
}
.align-center{
    text-align: center;
}
.info{
    width: 100%;
    max-width: 544px;
    margin: auto;
    padding: 0 1.5rem;
    border-spacing: 0;
}
.info th,
.info td{
    border-bottom: 1px solid white;
}
.info th{
    text-align: left;
    font-weight: normal;
    padding: 1rem;
}
.info td{
    text-align: left;
    padding: 1rem 0;
}
iframe{
    width: 100%;
}


/*
FOOTER
================================================ */
.footer {
    border-top: 1px solid rgba(255,255,255,0.5);
    margin-top: 3rem;
    padding: 1.5rem;
    text-align: center;
    font-size: .875rem;
    background-color: #1a1a2e;
}
.footer a {
    text-decoration: underline;
}

/*
DESKTOP SIZE
================================================ */
@media (min-width: 600px) {
/* Common */
    h2 {
        font-size: 5rem;
    }
    h3{
        font-size: 1.5rem;
    }
    a:hover,
    .ticket-btn:hover {
        transition: .3s;
    }

/* Header */
    .btn-menu {
        display: none;
    }
    .main-nav {
        width: 100%;
        position: static;
        display: flex;
    }
    .main-nav li {
        margin: 0 0 0 1.5rem;
    }
/* Hero */
    #hero h1 {
        font-size: 5rem;
    }
/* News */
    .news-table td {
        display: table-cell;
    }
    .news-date {
        padding: 1.125rem 0 1rem 1rem;
    }
    .news-content {
        padding: 1rem 1rem 1rem 0;
    }
/* メインコンテンツのレイアウト */
.content {
    flex-direction: row;
    justify-content: center;
    display: flex;
    justify-content: space-between;
    margin: 3rem auto;
}
/* テキストブロック */
.text-block {
  padding: auto;
  border-radius: 5px;
  width: 60%;
}
/* 画像ブロック */
.image-block,
.image-block2 {
  width: 35%;
}
.image-block2{
    margin: 0 auto;
}

/*
Activity
================================================ */
/* 記事部分 */
.activity-contents {
    display: flex;
    justify-content: space-between;
}
.post {
    padding-left: 150px;
}
.sidebar {
    width: 100px;
    position: fixed;
}
.sidebar .heading-medium {
    line-height: 1;
    margin-top: 3rem;
    margin-bottom: 1rem;
}
}
