@charset 'UTF-8';

*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 overflow-wrap: break-word;
 word-wrap: break-word;
}

/*
COLORS
================================================ */
:root {
    --light-blue: #4db1ec;
    --blue: #1665cc;
    --purple: #b473bf;
    --pink: #ffb2c1;
    --orange: #ff9f67;
    --yellow: #ffd673;
    --light-green: #a2e29b;
    --green: #00a2af;
    --grey: #333;
    --white: #fff;
}

/*
GENERAL STYLING
================================================ */
html {
    font-size: 100%;
    /* スムーズスクロール */
    scroll-behavior: smooth;
}
body {
	color: var(--grey);
	font-family: sans-serif;
}

/*
COMMON
================================================ */
p {
    line-height: 1.7;
}
img {
    max-width: 100%;
}
h2 {
    font-size: 3rem;
}
h1,
h2 {
    text-align: center;
}
header,
h1,
h2,
.hero-date {
    font-family: impact, sans-serif;
}

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

/*
HEADER
================================================ */
header {
    background: var(--grey);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1;
}
header .wrapper {
    display: flex;
    justify-content: space-between;
}
header a {
    color: var(--white);
    font-size: 1rem;
}
.btn-menu {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 1px solid rgba(255,255,255,.5);
    color: var(--white);
    padding: .5rem 1rem;
    background: transparent;
}
.main-nav {
    background: var(--grey);
    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%;
}

section {
	margin-bottom: 10px;
}

#hero img {
   width:300px;
   float: left;
}

/*
FOOTER
================================================ */
.footer {
    border-top: 1px solid rgba(255,255,255,0.5);
    padding-top: 2rem;
    text-align: center;
    font-size: .875rem;
    color: var(--white);
}
.footer a {
    text-decoration: underline;
}

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

/* 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: 6.875rem;
    }
    .hero-date {
        font-size: 3rem;
    }
    #hero {
       margin-top: 50px;
    }
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6
{
 line-height: 1.25em;
 font-weight: bold;
 margin-top: .45em;
 text-align: left;
}

.article h2 {
 background: #e5e4e6;
 margin-top: 20px;
 border-left: solid 5px #393f4c;
 font-size : 24px;
 padding-left: 25px;
 padding-top: 10px;
 padding-bottom: 10px;
}

.article h4 {
 font-size: 20px;
 padding: 9px 10px;
 border: none;
 border-bottom: 6px solid #e5e4e6;
}

.article ul li,
.article ol li
{
 margin: 0.2em;
}

ul {
 list-style-type: disc;
 margin-left: 20px;
}

.article p
{
 margin-bottom;.5em;
 line-height: 1.8;e
}

.article mark {
  background: linear-gradient(
    transparent 60%,
    #fbeb64 60%
  );
}

main {
 margin: 50px;
}

/* フォーム全体のスタイル */
form {
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* ラベルのスタイル */
label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

/* 入力欄のスタイル */
input, textarea {
    width: 100%; /* box-sizingが適用されるので、paddingやborder込みで100%に収まる */
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* テキストエリアの高さを調整 */
textarea {
    resize: vertical;
    height: 120px;
}

/* 送信ボタンのスタイル */
form button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* ホバー時のボタンスタイル */
button:hover {
    background-color: #218838;
}

.copyright p	{
margin: 50px 0 0;
	padding-top: 10px;
	color: #666666;
	font-size: 14px;
	text-align: center;
}

body	{display: grid;
	grid-template-columns: 0.2fr repeat(6,1fr) 0.2fr;
	margin: 0;
	background-color: #d5ddbe;
	font-family: 'Noto Sans JP', sans-serif;}

.contents	{
grid-column: 2 / -2;
	justify-self: center;
	width: 800px;
	box-sizing: border-box;
	padding:  30px 80px;
	background-color: #ffffff;
 	margin: 0 auto;

}


@media (max-width: 840px) {
	body	{grid-template-columns: 10px 1fr 10px;}
	.contents	{width: auto;}
	h1	{font-size: 20px;}
	h1 span	{font-size: 38px;}
	.contents	{padding: 10px 25px}
}

/* ヒーローテキスト*/
.hero div {
  margin:10px auto;
  display: block;
  width: 500px;
}

.hero .txt{
    padding-top: 30px;
    display: flex;
    overflow: hidden;
    text-align: center;
}

.hero .txt p {
    color: #007c45;
    font-size: 1.5rem;
    font-weight: bold;
    
    letter-spacing: .06em;
    margin: 0;

    /* ここからアニメーション関係 */
    transform: translateY(2em);
    animation: textanimation 1s forwards;
}
/* 1文字目 */
.hero .txt:nth-child(1) p:nth-child(1) {
    animation-delay: 0.2s
}
/* 2文字目 */
.hero .txt:nth-child(1) p:nth-child(2) {
    animation-delay: 0.4s
}
/* 3文字目 */
.hero .txt:nth-child(1) p:nth-child(3) {
    animation-delay: 0.6s
}
/* 4文字目 */
.hero .txt:nth-child(1) p:nth-child(4) {
    animation-delay: 0.8s
}
/* 5文字目 */
.hero .txt:nth-child(2) p:nth-child(1) {
    animation-delay: 1s
}
/* 6文字目 */
.hero .txt:nth-child(2) p:nth-child(2) {
    animation-delay: 1.2s
}
/* 7文字目 */
.hero .txt:nth-child(2) p:nth-child(3) {
    animation-delay: 1.4s
}
/* 8文字目 */
.hero .txt:nth-child(2) p:nth-child(4) {
    animation-delay: 1.6s
}
/* 9文字目 */
.hero .txt:nth-child(3) p:nth-child(1) {
    animation-delay: 1.8s
}
/* 10文字目 */
.hero .txt:nth-child(3) p:nth-child(2) {
    animation-delay: 2s
}
/* 11文字目 */
.hero .txt:nth-child(3) p:nth-child(3) {
    animation-delay: 2.2s
}
/* 12文字目 */
.hero .txt:nth-child(3) p:nth-child(4) {
    animation-delay: 2.4s
}
/* 13文字目 */
.hero .txt:nth-child(3) p:nth-child(5) {
    animation-delay: 2.6s
}
/* 14文字目 */
.hero .txt:nth-child(3) p:nth-child(6) {
    animation-delay: 2.8s
}
/* 15文字目 */
.hero .txt:nth-child(3) p:nth-child(7) {
    animation-delay: 3.0s
}

@keyframes textanimation {
    0% {
        transform: translateY(2em);
    }

    100% {
        transform: translateY(0);
    }
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* テーブルに影を追加 */
}

.custom-table th {
  background-color: #007c45; /* ヘッダーの背景色を緑に */
  color: white;              /* ヘッダーの文字色を白に */
  padding: 10px;
}

.custom-table td {
  border: 1px solid #ddd;    /* セルの境界線を薄いグレーに */
  padding: 8px;
  text-align: center;
}

