@charset "utf-8";

@media print {
    html {
        display: none;
    }
}
/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #0376b5;
    --co_4: #f2ff00;
    --ff_go_1: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff_mi_1: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_2);
    line-height: 1.5;
    font-family: var(--ff_go_1);
    background-image: url(../img/bg/1.jpg);
    background-size: 100% auto;
    background-position: center top;
    background-color: var(--co_3);
    font-weight: 400;
    overflow: hidden;
}

@media (min-width: 1000px) {
    body {
        min-width: 1080px;
        font-size: 14px;
    }
}

@media (max-width: 999px) {
    body {
        min-width: 320px;
        font-size: 14px;
        background-size: 200% auto;
    }
}

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: var(--co_2);
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body */
/* ---------------------------------------------------- */
.body {
    position: relative;
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}
.body::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/2.png), url(../img/bg/2.png);
    background-position:
        left 0 top,
        right 0 top;
    background-size: 60px auto;
    background-repeat: repeat-y;
    pointer-events: none;
}

@media (max-width: 999px) {
    .body::after {
        background-size: 10px auto;
    }
}

/* ---------------------------------------------------- */
/* contents */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    .contents {
        padding-top: 0;
    }
}

@media (max-width: 999px) {
    .contents {
        padding-top: 0;
    }
}
/* ---------------------------------------------------- */
/* header_1 */
/* ---------------------------------------------------- */
.header_1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 1180px;
    z-index: 100;
    transition: 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 1);
}

.header_1 .header_inner {
    position: relative;
    height: 80px;
}

.header_1 .logo_1 {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    transition: 0.3s ease-in-out;
}

.header_1 .logo_1 a {
    display: block;
}

.header_1 .logo_2 {
    display: block;
    margin: 0 auto 30px;
    width: 300px;
}

.header_1 .logo_2 a {
    display: block;
}

.header_1 .btn_toggle_megamenu {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    width: 35px;
    height: 40px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    z-index: 110;
}
.header_1 .btn_toggle_megamenu::after {
    content: "MENU";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    color: var(--co_3);
    font-size: 11px;
    text-align: center;
    line-height: 1;
}
.header_1 .btn_toggle_megamenu.is_show:after {
    content: "CLOSE";
}

.header_1 .btn_toggle_megamenu div {
    position: relative;
    width: 100%;
    height: 40px;
}

.header_1 .btn_toggle_megamenu div > span span,
.header_1 .btn_toggle_megamenu div > span:before,
.header_1 .btn_toggle_megamenu div > span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--co_3);
    transform-origin: center center;
    transition: 0.3s ease-in-out;
}

.header_1 .btn_toggle_megamenu div > span span {
    transform: translateY(-1px);
}

.header_1 .btn_toggle_megamenu div > span:before {
    transform: translateY(-9px);
}

.header_1 .btn_toggle_megamenu div > span:after {
    transform: translateY(7px);
}

.header_1 .btn_toggle_megamenu.is_show div > span span,
.header_1 .btn_toggle_megamenu.is_show div > span:before,
.header_1 .btn_toggle_megamenu.is_show div > span:after {
    width: 100% !important;
}

.header_1 .btn_toggle_megamenu.is_show div > span span {
    opacity: 0;
}

.header_1 .btn_toggle_megamenu.is_show div > span:before {
    transform: translateY(-50%) rotate(-45deg);
}

.header_1 .btn_toggle_megamenu.is_show div > span:after {
    bottom: 0;
    transform: translateY(-50%) rotate(45deg);
}

.header_1 .toggle_megamenu {
    display: none;
    position: fixed;
    right: 0;
    top: 80px;
    width: 600px;
    height: calc(100% - 80px);
    background-color: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
}

.header_1 .toggle_megamenu .toggle_inner {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 20px;
    height: 100%;
}

.header_1 .nav_1 {
    width: 100%;
}
.header_1 .nav_1 > ul {
    border-top: 1px solid var(--co_3);
}

.header_1 .nav_1 > ul > li {
    border-bottom: 1px solid var(--co_3);
}

.header_1 .nav_1 > ul > li > a {
    display: block;
    padding: 20px 0;
    color: var(--co_3);
    font-size: 25px;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

.header_1 .nav_2 {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
}

.header_1 .nav_2 > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -20px;
}
.header_1 .nav_2 > ul > li {
    margin-right: 20px;
}
.header_1 .nav_2 a {
    display: block;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.header_1 .nav_2 .ig a {
    background-image: url(../img/ico/sns_ig_1.svg?y=25);
}
.header_1 .nav_2 .yt a {
    background-image: url(../img/ico/sns_yt_1.svg?y=25);
}
.header_1 .nav_2 .tw a {
    background-image: url(../img/ico/sns_tw_1.svg?y=25);
}
.header_1 .nav_2 .tt a {
    background-image: url(../img/ico/sns_tt_1.svg?y=25);
}
@media (min-width: 1000px) {
    .header_1 .btn_toggle_megamenu:hover {
        opacity: 0.6;
    }
}

@media (max-width: 999px) {
    .header_1 {
        min-width: auto;
    }

    .header_1 .header_inner {
        position: relative;
        height: 60px;
    }
    .header_1 .logo_1 {
        left: 20px;
        width: 100px;
    }
    .header_1 .btn_toggle_megamenu {
        right: 10px;
    }
    .header_1 .toggle_megamenu {
        top: 60px;
        width: 100%;
        height: calc(100% - 60px);
    }
    .header_1 .toggle_megamenu .toggle_inner {
        padding: 60px 0;
        display: block;
    }

    .header_1 .nav_1 > ul > li > a {
        padding: 15px 0;
        font-size: 20px;
    }
    .header_1 .nav_2 {
        right: 70px;
    }
    .header_1 .nav_2 > ul > li {
        margin-right: 10px;
    }
    .header_1 .nav_2 a {
        width: 25px;
        height: 25px;
    }
}

/* ---------------------------------------------------- */
/* footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}
.footer_1 .sponsor_1 {
    padding-top: 50px;
    border-top: 1px solid var(--co_2);
}

.footer_1 .sponsor_1 > ul {
    display: flex;
    justify-content: center;
    margin-right: -20px;
}

.footer_1 .sponsor_1 > ul > li {
    margin-right: 20px;
}

.footer_1 .contact_1 {
    margin-top: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.footer_1 .btn_1 {
    position: fixed;
    right: -300px;
    bottom: 70px;
    display: block;
    width: 200px;
    z-index: 10;
}

.is_page_scr .footer_1 .btn_1 {
    right: 0;
}
.footer_1 .btn_2 {
    position: fixed;
    right: 10px;
    bottom: -200px;
    display: block;
    width: 150px;
    z-index: 10;
}

.is_page_scr .footer_1 .btn_2 {
    bottom: 10px;
}

@media (max-width: 999px) {
    .footer_1 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer_1 .footer_inner {
        width: calc(100% - 40px);
    }

    .footer_1 .sponsor_1 {
        padding-top: 30px;
        margin: 0 auto;
        width: max-content;
        font-size: 12px;
    }
    .footer_1 .sponsor_1 > ul {
        display: block;
        margin-right: 0;
    }

    .footer_1 .sponsor_1 > ul > li {
        margin-right: 0;
    }

    .footer_1 .contact_1 {
        font-size: 12px;
    }
    .footer_1 .logo_1 {
        margin: 0 auto 20px;
        width: 200px;
    }
    .footer_1 .btn_1 {
        bottom: 60px;
        width: 100px;
    }
    .footer_1 .btn_2 {
        width: 40px;
    }
}

/* ---------------------------------------------------- */
/* sec_mv */
/* ---------------------------------------------------- */
.sec_mv {
    padding-top: 110px;
    padding-bottom: 80px;
    min-height: 500px;
}
.sec_mv .sec_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.sec_mv .mv {
    position: relative;
    width: 100%;
    height: 100%;
}
.sec_mv .ttl_1 {
    margin: 0 auto;
    width: 1000px;
    height: 100%;
}
.sec_mv .ttl_1 > span {
    height: 100%;
    background-size: contain;
}
.sec_mv .btn_1 {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
}

.sec_mv .btn_1 .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.sec_mv .btn_1 .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.sec_mv .btn_1 .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.sec_mv .btn_1 .chevron:before,
.sec_mv .btn_1 .chevron:after {
    content: " ";
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--co_4);
}

.sec_mv .btn_1 .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.sec_mv .btn_1 .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@media (max-width: 999px) {
    .sec_mv {
        padding-top: 89px;
        padding-bottom: 60px;
        min-height: 400px;
        background-image: url(../img/bg/3_sp.jpg);
    }
    .sec_mv .ttl_1 {
        width: 95%;
    }
    .sec_mv .btn_1 {
        bottom: -15px;
    }
}

/* ---------------------------------------------------- */
/* sec_message */
/* ---------------------------------------------------- */
.sec_message {
}
@media (max-width: 999px) {
}
/* ---------------------------------------------------- */
/* sec_information */
/* ---------------------------------------------------- */
.sec_information .list_1 {
    font-size: 18px;
}
.sec_information .list_1 > ul {
    width: max-content;
    max-width: 100%;
}
.sec_information .list_1 > ul > li {
    display: flex;
}
.sec_information .list_1 > ul > li + li {
    margin-top: 15px;
}
.sec_information .list_1 > ul > li:nth-child(n + 4) {
    display: none;
}
.sec_information .list_1 .date {
    flex: none;
    width: 130px;
}
.sec_information .list_1 .ttl {
    display: block;
    font-weight: 700;
}
.sec_information .btn_1 {
    display: block;
    margin-top: 20px;
    margin-right: 0;
    margin-left: auto;
    width: max-content;
    font-size: 20px;
}

@media (max-width: 999px) {
    .sec_information .list_1 {
        font-size: 15px;
    }
    .sec_information .list_1 > ul > li {
        display: block;
    }

    .sec_information .list_1 .date {
        width: auto;
    }
    .sec_information .btn_1 {
        font-size: 18px;
    }
}
/* ---------------------------------------------------- */
/* sec_artist */
/* ---------------------------------------------------- */
.sec_artist .list_1 {
    margin: 0 auto;
    width: 700px;
    pointer-events: none;
}
.sec_artist .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -40px;
    margin-bottom: -40px;
}
.sec_artist .list_1 > ul > li {
    margin-right: 40px;
    margin-bottom: 40px;
    width: calc(100% / 3 - 40px);
}

.sec_artist .list_1 .img {
    background-position: center;
    background-size: cover;
    margin-bottom: 5px;
}

@media (min-width: 1000px) {
    .sec_artist .list_1 > ul > li:nth-child(1) {
        margin-left: 20px;
    }
    .sec_artist .list_1 > ul > li:nth-child(2) {
        margin-right: 60px;
    }
}
@media (max-width: 999px) {
    .sec_artist .list_1 {
        width: auto;
    }
    .sec_artist .list_1 > ul {
        justify-content: flex-start;
        margin-right: -20px;
        margin-bottom: -20px;
    }
    .sec_artist .list_1 > ul > li {
        margin-right: 20px;
        margin-bottom: 20px;
        width: calc(100% / 2 - 20px);
    }
}
/* ---------------------------------------------------- */
/* sec_guest */
/* ---------------------------------------------------- */
.sec_guest .comingsoon {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
.sec_guest .list_1 {
    position: relative;
    margin: 0 auto;
    width: 800px;
}
.sec_guest .list_1::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 10px;
    height: calc(100% - 40px);
    background-image: url(../img/bg/3.svg);
    background-size: contain;
    background-repeat: repeat-y;
    background-position: center top;
}
.sec_guest .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -100px;
    margin-bottom: -40px;
}

.sec_guest .list_1 > ul > li {
    margin-right: 100px;
    margin-bottom: 40px;
    width: calc(100% / 3 - 100px);
}
.sec_guest .list_1 .day {
    margin: 0 auto 10px;
    width: 90%;
}
.sec_guest .list_1 .img {
    background-position: center;
    background-size: cover;
    margin-bottom: 5px;
}

@media (max-width: 999px) {
    .sec_guest .list_1 {
        width: auto;
    }
    .sec_guest .list_1::before {
        width: 5px;
        height: calc(100% - 20px);
    }
    .sec_guest .list_1 > ul {
        justify-content: flex-start;
        margin-right: -20px;
        margin-bottom: -20px;
    }
    .sec_guest .list_1 > ul > li {
        margin-right: 20px;
        margin-bottom: 20px;
        width: calc(100% / 2 - 20px);
    }
}

/* ---------------------------------------------------- */
/* sec_ticket */
/* ---------------------------------------------------- */
.sec_ticket .img_1 {
    margin: 0 auto 40px;
    width: 700px;
}
.sec_ticket .ttl_2 {
    margin-bottom: 20px;
    padding: 5px;
    color: var(--co_1);
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    background-color: var(--co_3);
}
.sec_ticket .ttl_3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
}
.sec_ticket .desc_1,
.sec_ticket .list_1 {
    font-size: 14px;
}
.sec_ticket .ttl_4 {
    margin: 40px auto 20px;
    padding: 5px;
    width: 700px;
    background-color: var(--co_4);
    border-radius: 20px;
}
.sec_ticket .ttl_4 img {
    margin: 0 auto;
    width: auto;
    height: 50px;
}
.sec_ticket .pg_1 {
    margin: 0 auto;
    width: 700px;
}
.sec_ticket .pg_1 > li {
    position: relative;
    padding: 20px;
    color: var(--co_2);
    line-height: 1.4;
    text-align: center;
    background-color: var(--co_4);
    border-radius: 20px;
}
.sec_ticket .pg_1 > li + li {
    margin-top: 20px;
}
.sec_ticket .pg_1.end > li {
    background-color: #d1d2d2;
}
.sec_ticket .pg_1.end > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    background-image: url(../img/ico/end_1.svg?y=25);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% auto;
}
.sec_ticket .pg_1 .ttl {
    font-size: 30px;
    font-weight: 700;
}
.sec_ticket .pg_1 .ttl span {
    font-size: 70%;
}
.sec_ticket .pg_1 .date {
    padding-top: 20px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    border-top: 1px solid var(--co_2);
}
.sec_ticket .pg_1 .desc {
    margin-top: 10px;
    font-size: 18px;
    word-break: break-all;
}
.sec_ticket .pg_1 .note {
    padding-top: 15px;
    font-size: 14px;
}
.sec_ticket .btn_1 {
    display: block;
    margin: 20px auto;
    width: 700px;
}
@media (max-width: 999px) {
    .sec_ticket .img_1 {
        margin-bottom: 20px;
        width: auto;
    }
    .sec_ticket .ttl_2 {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .sec_ticket .ttl_3 {
        margin-top: 10px;
        font-size: 16px;
    }
    .sec_ticket .desc_1,
    .sec_ticket .list_1 {
        font-size: 11px;
    }
    .sec_ticket .ttl_4 {
        margin: 30px auto 20px;
        width: auto;
        border-radius: 10px;
    }
    .sec_ticket .ttl_4 img {
        height: 30px;
    }
    .sec_ticket .pg_1 {
        width: auto;
    }
    .sec_ticket .pg_1 > li + li {
        margin-top: 20px;
    }
    .sec_ticket .pg_1 > li {
        border-radius: 10px;
    }
    .sec_ticket .pg_1.end > li::before {
        background-size: 50% auto;
    }
    .sec_ticket .pg_1 .ttl {
        font-size: 20px;
    }
    .sec_ticket .pg_1 .date {
        padding-top: 10px;
        margin-top: 10px;
        font-size: 14px;
    }
    .sec_ticket .pg_1 .desc {
        margin-top: 10px;
        font-size: 13px;
    }
    .sec_ticket .pg_1 .note {
        padding-top: 10px;
        font-size: 11px;
        text-align: justify;
    }
    .sec_ticket .btn_1 {
        margin-top: 20px;
        width: auto;
    }
}

/* ---------------------------------------------------- */
/* sec_goods */
/* ---------------------------------------------------- */
.sec_goods .ttl_2 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.sec_goods .desc_1 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 18px;
}
.sec_goods .ttl_3 {
    font-size: 18px;
    font-weight: 700;
}
.sec_goods .list_1 {
    font-size: 14px;
}
.sec_goods .btn_1 {
    display: block;
    margin: 50px auto 0;
    width: 700px;
}
.sec_goods .img_2 {
    margin: 20px auto 0;
    width: 624px;
}

@media (max-width: 999px) {
    .sec_goods .ttl_2 {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 16px;
    }
    .sec_goods .desc_1 {
        margin-bottom: 40px;
        font-size: 14px;
    }
    .sec_goods .ttl_3 {
        font-size: 14px;
    }
    .sec_goods .list_1 {
        font-size: 11px;
    }
    .sec_goods .btn_1 {
        margin-top: 30px;
        width: auto;
    }
    .sec_goods .img_2 {
        width: auto;
    }
}

/* ---------------------------------------------------- */
/* sec_access */
/* ---------------------------------------------------- */
.sec_access .desc_1 {
    margin-bottom: 40px;
    font-size: 20px;
    text-align: center;
}

.sec_access .map_1 {
    margin-bottom: 40px;
}

.sec_access .map_1 iframe {
    width: 100%;
}
.sec_access .ttl_2 {
    margin-bottom: 20px;
    padding: 5px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    background-color: var(--co_4);
}
.sec_access .list_1 {
    margin: 0 auto 30px;
    width: max-content;
    max-width: 100%;
    font-size: 20px;
}
.sec_access .desc_2 {
    margin: 0 auto;
    width: max-content;
    max-width: 100%;
    color: #ff0000;
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 999px) {
    .sec_access .desc_1 {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .sec_access .map_1 {
        margin-bottom: 20px;
    }

    .sec_access .map_1 iframe {
        height: 300px;
    }
    .sec_access .ttl_2 {
        font-size: 18px;
    }
    .sec_access .list_1 {
        margin-bottom: 20px;
        font-size: 14px;
    }
    .sec_access .desc_2 {
        font-size: 14px;
    }
}

/* ---------------------------------------------------- */
/* sec_archive */
/* ---------------------------------------------------- */
.sec_archive {
    padding-top: 160px;
}

.sec_archive .list_1 > ul > li {
    display: flex;
}
.sec_archive .list_1 > ul > li + li {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--co_2);
}

.sec_archive .list_1 .date {
    flex: none;
    width: 150px;
    font-size: 20px;
}
.sec_archive .list_1 .ttl {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}
.sec_archive .list_1 .desc {
    word-break: break-all;
}
.sec_archive .list_1 a {
    text-decoration: underline;
}
.sec_archive .btn_1 {
    display: block;
    margin-top: 50px;
    margin-right: 0;
    margin-left: auto;
    width: max-content;
    font-size: 20px;
}
@media (min-width: 1000px) {
    .sec_archive .list_1 a:hover {
        opacity: 0.6;
    }
}
@media (max-width: 999px) {
    .sec_archive {
        padding-top: 110px;
    }
    .sec_archive .list_1 {
        font-size: 15px;
    }
    .sec_archive .list_1 > ul > li {
        display: block;
    }

    .sec_archive .list_1 > ul > li + li {
        margin-top: 20px;
        padding-top: 20px;
    }

    .sec_archive .list_1 .date {
        width: auto;
        font-size: 14px;
    }
    .sec_archive .list_1 .ttl {
        display: block;
        font-size: 18px;
    }
    .sec_archive .btn_1 {
        font-size: 18px;
    }
}
