:root {
    /* デザイン基準 */
    --design-width: 1920;
    /* 動的なフォントサイズ */
    --font-body: calc(20 / var(--design-width) * 100vw); /* 本文 */
    --font-subtitle: calc(30 / var(--design-width) * 100vw); /* 中タイトル */
    --font-title: calc(44 / var(--design-width) * 100vw); /* タイトル */
    /* 色 */
    --base-color:#353535;
    --green-color:#23BF71;
    --gray-color:#707070;
}
/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color:var(--base-color);
}

/* 入れ子 */
html {
    font-size: var(--font-body); /* 本文 */
}

body {
    font-family: "游明朝体", "Yu Mincho", serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    font-size: max(var(--font-body), 15px);
    position: relative;
}
.container {
    width:calc(1820 / var(--design-width) * 100vw);
    margin: 0 auto;
    padding:60px 0;
}
.inner {
    width:calc(1520 / var(--design-width) * 100vw);
    margin: 0 auto;
}
.inner__s {
    width:calc(1000 / var(--design-width) * 100vw);
    margin: 0 auto;
}

/* Flex */
.flex {
    display:flex;
}
.flex.is__jb {
    justify-content: space-between;
}
.flex.is__ac {
    align-items: center;
}

/* フォントサイズ */
h1{
    font-size: calc(70 / var(--design-width) * 100vw);
    line-height: 1.1;
}
h1 span{
    font-size: calc(40 / var(--design-width) * 100vw);
    display: block;
}
h2 {
    font-size: var(--font-title);
}
h3 {
    font-size: var(--font-subtitle);
}

/* 配置 */
.c__txt{
    text-align: center;
}

/* 画像 */
img {
    max-width: 100%;
    height: auto;
}

/* リンクボタン */
.btn{
    border: 1px solid var(--gray-color);
    position: relative;
    text-align: left;
    padding: 1em 3px;
    width: 18em;
    display: block;
    color:var(--base-color);
    text-decoration: none;
    transition: opacity 0.5s;
}
.btn:hover{
    opacity:0.8;
}
.btn:after{
    content: "";
    position: absolute;
    right: 2em;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(calc(-50%)) rotate(45deg);
    border-top: 1px solid var(--gray-color);
    border-right: 1px solid var(--gray-color);
}

/* 情報テーブル */
.table__line dl {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--gray-color);
    padding: 10px 0 10px 1em;
}
.table__line dl:first-child {
    border-top: 1px solid var(--gray-color);
}
.table__line dt {
    min-width: 16em;
    padding-right: 1rem;
    color: #333;
}
.table__line dd {
    margin: 0;
    color: #555;
    word-wrap: break-word;
}

/* テーブルの入れ子 */
table{
    border-collapse:collapse;
    border-spacing: 0;
}
.table__box{
    width: 100%;
}
.table__box table{
    width: 100%;
}
.table__box table th,
.table__box table td{
    padding: 7px;
    border: 1px solid var(--gray-color);
}
.table__box table th{
    color:#fff;
    background:var(--green-color);
}

/* sp */
@media (max-width: 768px) {
    .events__grid {
        grid-template-columns: 1fr;
    }
    /* .table__box{
        overflow-x:scroll;
    } */
}