@charset "UTF-8";

/* 全体設定 */

html {
    font-size: 100%;
}

body {
    font-size: 0.8rem;
    color: #f4f4f5;
    background-color: #0a0a0a;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #f4f4f5;
}

.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
}

.wrapper {
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: 20px;
}

.title h2 {
    font-size: 50px;
    color: #FF003C;
    text-shadow: 0 0 5px #FF003C;
    padding-block: 10px;
}

.title h2 span {
    color: white;
}

.title p {
    opacity: 0.7;
    font-size: 17px;
}

.fade-in {
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.fade-in.is-active {
    opacity: 1;
    transform: translateY(0);
}

.sub-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: subFadeIn 0.5s ease forwards;
}

@keyframes subFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ローディングイベント */
/* 全体 */
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 中央コンテンツ */
.loader-inner {
    text-align: center;
    color: #fff;
}

/* ロゴ */
.loader-text {
    font-size: 35px;
    margin-bottom: 20px;
    color: #FF003C;
    font-weight: bold;
}

/* ライン */
.loader-line {
    width: 200px;
    height: 2px;
    margin: 0 auto;
    transform: scaleX(0);
    transform-origin: center;
    animation: lineMove 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

/* ラインアニメーション */
@keyframes lineMove {
    to {
        transform: scaleX(1);
    }
}

/* フェードアウト用 */
#loader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: 0.8s ease;
}

/* ヘッダー */
header {
    width: 100%;
    position: fixed;
    top: 0;
    background: #141414;
    z-index: 5;
}

header .container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a {
    color: #ff003c;
}

.header-menu ul {
    display: flex;
}

.header-menu a {
    transition: 0.3s;
}

.header-menu a:hover {
    opacity: 0.6;
}

.header-menu .now a {
    color: #ff003c;
    pointer-events: none;
    cursor: default;
}

.header-menu ul li {
    margin-left: 20px;
}

.header-menu ul li a>* {
    vertical-align: middle;
}

.hamburger {
    display: none;
    height: 100%;
    width: 30px;
    position: relative;
    z-index: 3;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 30px;
}

.hamburger span:nth-child(2) {
    top: 40px;
}

.hamburger span:nth-child(3) {
    top: 50px;
}

header.open .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

header.open .hamburger span:nth-child(2) {
    opacity: 0;
}

header.open .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
}

/* メインビジュアル */
.mainvisual {
    width: 100%;
    height: 100vh;
    position: relative;
}

.mainvisual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/mainvisual.png');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 3s ease;
}

.mainvisual.is-active::before {
    opacity: 1;
}

.mainvisual-mask {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 3;
}

.main-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-block: 40px;
    padding-inline: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.main-text.is-active {
    opacity: 1;
    transform: translateY(0);
}

.tagline {
    width: fit-content;
    margin: 0 auto;
    background: #FF003C;
    padding: 2px 10px;
    box-shadow: 0 0 7px #FF003C;
}

.tagline p {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1.5px;
    color: black;
}

.main-title h1 {
    font-size: 90px;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 0 7px #FF003C;
    padding-block: 10px;
}

.main-title p {
    color: white;
    font-size: 25px;
}

.main-btn {
    width: fit-content;
    margin: 40px auto 0px auto;
    display: flex;
    justify-content: center;
}

.main-btn1 {
    display: inline-block;
    transform: skewX(-20deg);
    background: #FF003C;
    box-shadow: 0 0 7px #FF003C;
    margin-right: 20px;
    transition: 0.3s;
}

.main-btn1:hover {
    transform: skewX(-20deg) scale(1.03);
    box-shadow: 0 0 12px #FF003C;
}

.main-btn1 a {
    display: flex;
    transform: skewX(20deg);
    padding: 15px 28px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.main-btn1 span {
    padding-right: 5px;
}

.main-btn2 {
    display: inline-block;
    transform: skewX(-20deg);
    background: #1F1F1F;
    box-shadow: 0 0 7px #1F1F1F;
    transition: 0.3s;
}

.main-btn2:hover {
    transform: skewX(-20deg) scale(1.03);
    box-shadow: 0 0 12px #1F1F1F;
}


.main-btn2 a {
    display: flex;
    transform: skewX(20deg);
    padding: 15px 28px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.main-btn2 span {
    padding-right: 8px;
}


/* メインコンテンツ */
.maincontents {
    padding-block: 100px;
    text-align: center;
    background: #141414;
}

.contents {
    padding-block: 40px;
    display: flex;
    justify-content: space-between;
}

.display {
    width: 47%;
    border: 0.1px solid rgba(255, 0, 60, 0.3);
    background: #1F1F1F;
}

.display img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.display-text {
    padding: 20px;
    text-align: left;
}

.display-text p {
    opacity: 0.7;
    font-size: 15px;
}

.display h3 {
    color: #FF003C;
    padding-bottom: 10px;
    font-size: 23px;
    font-weight: 600;
    text-shadow: 0 0 1px #FF003C;
}

.display h3 span {
    font-size: 20px;
    padding-right: 10px;
}

.project {
    width: 47%;
    border: 0.1px solid rgba(255, 0, 60, 0.3);
    background: #1F1F1F;
}

.project img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-text {
    padding: 20px;
    text-align: left;
}

.project-text li {
    opacity: 0.7;
    font-size: 15px;
}

.project h3 {
    color: #FF003C;
    padding-bottom: 10px;
    font-size: 23px;
    font-weight: 600;
    text-shadow: 0 0 1px #FF003C;
}

.project h3 span {
    font-size: 20px;
    padding-right: 10px;
}

.project ul {
    list-style: none;
}

.project li {
    padding-bottom: 5px;
}

.project li span {
    color: #FF003C;
    padding-right: 10px;
}

/* キッズアンドファミリー */
.kids {
    padding-bottom: 100px;
    text-align: center;
    background: #141414;
}

.kids-contents {
    padding-block: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.kids-icon {
    width: calc((100% - 60px) / 3);
    padding: 20px;
    background: #1F1F1F;
}

.kids-circle {
    border: 1px solid #FF003C;
    background: rgba(255, 0, 60, 0.05);
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 7px #FF003C;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kids-circle span {
    font-size: 50px;
    color: #FF003C;
}

.kids-title {
    padding-top: 15px;
    font-size: 20px;
    font-weight: 500;
}

.kids-text {
    font-size: 15px;
    opacity: 0.7;
    padding-top: 10px;
}

/* フードアンドローカル */
.food {
    padding-bottom: 100px;
    background: #141414;
}

.food .wrapper {
    display: flex;
    justify-content: space-between;
}

.food-left {
    width: 48%;
}

.food-contents {
    padding-block: 40px;
}

.food-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.food-icon span {
    color: #FF003C;
    padding-right: 10px;
    font-size: 30px;
}

.food-title {
    font-size: 20px;
    font-weight: 500;
}

.food-detail {
    opacity: 0.7;
    font-size: 16px;
}


.food-right {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.food-right img {
    max-width: 290px;
}

.food-right img:nth-child(1) {
    margin-top: 80px;
}

.food-right img:nth-child(2) {
    margin-top: 20px;
    margin-left: 110px;
    ;
}

/* アフターパーティー */
.party {
    background-image: url('../img/party.png');
    background-size: cover;
    height: 600px;
}

.party-mask {
    width: 100%;
    height: 100%;
    padding-block: 100px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.party .title h2 {
    text-shadow: 0 0 20px #141414;
}

.party .title p {
    opacity: 1;
    font-size: 18px;
    text-shadow: 0 0 10px #141414;
}

.party-contents {
    padding-block: 40px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.party-icon {
    width: calc((100% - 20px) / 2);
    margin-bottom: 20px;
    background: rgba(31, 31, 31, 0.9);
    padding: 20px;
    text-align: left;
    border: 0.1px solid rgba(255, 0, 60, 0.3);
}

.party-title {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.party-title span {
    color: #FF003C;
    padding-right: 10px;
    font-size: 30px;
}

.party-title p {
    font-size: 23px;
    font-weight: 500;
}

.party-text {
    opacity: 0.7;
    font-size: 15px;
}

/* インフォメーション */
.information {
    padding-block: 100px;
    background: #141414;
    text-align: center;
}

.information-contents {
    padding-block: 40px;
    display: flex;
    justify-content: space-between;
}

.information-icon {
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: calc((100% - 40px)/ 3);
    padding: 30px 20px;
    background: rgba(31, 31, 31, 0.9);
    cursor: pointer;
}

.information-icon i {
    font-size: 35px;
    padding-bottom: 10px;
}

.information-icon:first-child {
    box-shadow: 0 0 7px rgb(29, 161, 242);
    transition: 0.3s;
    position: relative;
}

.information-icon:first-child::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(255, 254, 254, 0.1);
    top: 0;
    left: 0;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

.information-icon:first-child:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgb(29, 161, 242);
}

.information-icon:first-child:hover::after {
    opacity: 1;
}

.information-icon:nth-child(2) {
    box-shadow: 0 0 7px rgb(225, 48, 108);
    transition: 0.3s;
    position: relative;
}

.information-icon:nth-child(2) i {
    color: rgb(225, 48, 108);
}

.information-icon:nth-child(2)::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(255, 254, 254, 0.1);
    top: 0;
    left: 0;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

.information-icon:nth-child(2):hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgb(225, 48, 108);
}

.information-icon:nth-child(2):hover::after {
    opacity: 1;
}

.information-icon:last-child {
    box-shadow: 0 0 7px rgb(255, 0, 0);
    transition: 0.3s;
    position: relative;
}

.information-icon:last-child i {
    color: rgb(255, 0, 0);
}

.information-icon:last-child::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(255, 254, 254, 0.1);
    top: 0;
    left: 0;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

.information-icon:last-child:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgb(255, 0, 0);
}

.information-icon:last-child:hover::after {
    opacity: 1;
}

.information-icon .sns-name {
    font-size: 22px;
}

.information-icon .account {
    color: #FF003C;
    font-size: 16px;
    padding-bottom: 15px;
}

.information-icon .information-text {
    font-size: 14px;
    opacity: 0.7;
}

/* スポンサー */
.sponsors {
    padding-bottom: 100px;
    background: #141414;
    text-align: center;
}

.sponsors .title {
    padding-bottom: 40px;
}

.sponsors-contents {
    display: flex;
}

.sponsors-contents img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.sponsors-contents .slick-slide {
    margin: 0 10px;
}

.sponsors-contents .slick-list {
    margin: 0 -10px;
}


/* お問い合わせ */
.line {
    padding-bottom: 100px;
    background: #141414;
    text-align: center;
}

.line-top {
    background: #06C755;
    height: 6px;
}

.line-contents {
    background: #1F1F1F;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 2px #FF003C;
}

.line-text {
    padding-block: 35px;
}

.line-text p {
    font-size: 25px;
    font-weight: 600;
}

.line-text p span {
    color: #06C755
}

.line-btn {
    display: inline-block;
    transform: skewX(-20deg);
    background: #06C755;
    box-shadow: 0 0 4px #06C755;
    margin-top: 20px;
    transition: 0.3s;
}

.line-btn:hover {
    transform: skewX(-20deg) scale(1.03);
    box-shadow: 0 0 7px #06C755;
}

.line-btn a {
    display: flex;
    align-items: center;
    transform: skewX(20deg);
    padding: 15px 28px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.line-btn span {
    padding-inline: 10px;
}

.line-btn .input {
    font-size: 16px;
    opacity: 0.7;
}

/* スケジュール */
#schedule {
    margin-top: 100px;
}

#schedule .title {
    text-align: center;
    padding-bottom: 40px;
}

.schedule-contents {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-inline: auto;
    flex-direction: row-reverse;
    width: 800px;
}

.schedule-contents::before {
    content: "";
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0%;
    background-color: #FF003C;
    opacity: 0.5;
    animation: line-encho 2.5s ease 0.5s forwards;
}

@keyframes line-encho {
    to {
        height: 83%;
    }
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    width: 50%;
    height: 70px;
    margin-bottom: 40px;
    animation: item-fade-in 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.schedule-item:nth-child(1) {
    animation-delay: 0.4s;
}

.schedule-item:nth-child(2) {
    animation-delay: 0.9s;
}

.schedule-item:nth-child(3) {
    animation-delay: 1.4s;
}

.schedule-item:nth-child(4) {
    animation-delay: 1.9s;
}

.schedule-item:nth-child(5) {
    animation-delay: 2.4s;
}

@keyframes item-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule-item.left {
    margin-top: 120px;
}

.schedule-item.right {
    flex-direction: row-reverse;
}

.schedule-yoso {
    border: 1px solid #ff003c;
    padding-inline: 10px;
}

.schedule-text {
    width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-text h3 {
    font-size: 1.2rem;
}

.schedule-text p {
    color: #ff003c;
    font-weight: bold;
}

.schedule-comment {
    font-size: 0.7rem;
}

.circle {
    position: relative;
    border: 1px solid #ff003c;
    background: #0a0a0a;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 7px #ff003c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle.left {
    margin-right: -10px;
}

.circle.right {
    margin-left: -10px;
}

.schedule-icon {
    display: block;
    color: #FF003C;
    transform: scale(0.7);
}

/* ギャラリー */
#gallery {
    margin-top: 100px;
}

#gallery .title {
    text-align: center;
    padding-bottom: 40px;
}

.gallery-contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-item {
    width: 90%;
    margin-inline: auto;
    position: relative;
    margin-bottom: 50px;
    box-shadow: inset 0 -80px 80px -30px rgba(0, 0, 0, 0.8);
}

.gallery-item img {
    position: relative;
    z-index: -1;
    width: 100%;
}

.gallery-item p {
    position: absolute;
    left: 10px;
    bottom: 20px;
    color: #FF003C;
    font-weight: bold;
}

/* アクセス */
#access {
    margin-top: 100px;
}

#access .title {
    text-align: center;
    padding-bottom: 40px;
}

.train-access,
.car-access {
    width: 50%;
}

.train-access-img,
.car-access-img {
    display: flex;
    align-items: center;
}

.access-icon {
    color: #ff003c;
}

.access-title {
    color: #ff003c;
}

.container-map {
    width: 100%;
}

.container-access {
    display: flex;
    margin-block: 80px;
}

.container-access span {
    color: #FF003C;
    font-size: 22px;
    margin-right: 10px;
}

.container-access h3 {
    font-size: 20px;
}

.train-access,
.car-access {
    background-color: #222222;
    padding: 16px;
}

.container-access-nav li {
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

.train-access-img,
.car-access-img {
    padding-left: 8px;
}

.attention {
    padding-left: 16px;
}

.access-station {
    width: 35%;
}

.access-overview {
    width: 60%;
}

/* フッター */
.footer {
    background-color: #000;
    padding: 80px;
    height: 256px;
}

.footer-logo {
    color: red;
    text-align: center;
}

.copyright {
    color: #f4f4f5;
    text-align: center;
}

.sns-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

.sns-icons img {
    width: 24px;
    margin-left: 24px;
    background-color: #676767;
    border-radius: 50%;
    transition: 0.3s;
}

.sns-icons li:nth-child(1) img {
    margin-left: 0px;
}

.sns-icons li:nth-child(1) img:hover {
    background-color: #fff;
    transition: all 0.3s ease;
    transform: scale(1.05);
}

.sns-icons li:nth-child(2) img:hover {
    background-color: #cf2e92;
    transition: all 0.3s ease;
    transform: scale(1.05);
}

.sns-icons li:nth-child(3) img:hover {
    background-color: #ff0000;
    transition: all 0.3s ease;
    transform: scale(1.05);
}

.sns-icons li:nth-child(4) img:hover {
    background-color: #00b900;
    transition: all 0.3s ease;
    transform: scale(1.05);
}

@media screen and (max-width: 840px) {

    /* 全体 */
    .wrapper {
        max-width: 840px;
    }

    .title h2 {
        font-size: 40px;
        padding-block: 5px;
    }

    .title p {
        font-size: 15px;
    }

    /* ヘッダー */
    .header-menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 2;
        background-color: rgba(10, 10, 10, 0.7);
    }

    header.open .header-menu {
        right: 0;
    }

    .header-menu ul {
        position: absolute;
        top: 0;
        left: -300px;
        bottom: 0;
        width: 300px;
        padding: 30px 20px;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    .header-menu ul li {
        margin-bottom: 10px;
    }

    header.open .header-menu ul {
        left: 0;
        background-color: #0a0a0a;
    }

    .hamburger {
        display: inline;
    }

    /* メインビジュアル */
    .main-text {
        padding-inline: 40px;
    }

    .tagline p {
        font-size: 13px;
    }

    .main-title h1 {
        font-size: 65px;
    }

    .main-title p {
        font-size: 18px;
        text-align: left;
    }

    .main-btn {
        flex-direction: column;
        width: 100%;
        max-width: 600px;
    }

    .main-btn1 {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .main-btn1 a {
        justify-content: center;
        align-items: center;
    }

    .main-btn2 {
        display: block;
        width: 100%;
    }

    .main-btn2 a {
        justify-content: center;
        align-items: center;
    }

    .main-btn2 span {
        padding-right: 8px;
    }

    /* メインコンテンツ */
    .contents {
        flex-direction: column;
    }

    .display {
        width: 100%;
        max-width: 600px;
        margin-inline: auto;
        margin-bottom: 30px;
    }

    .display-text {
        padding: 10px 20px 30px 20px;
    }

    .display-text h3 {
        font-size: 22px;
    }

    .project {
        width: 100%;
        max-width: 600px;
        margin-inline: auto;
    }

    .project-text {
        padding: 10px 20px 30px 20px;
    }

    .project-text h3 {
        font-size: 22px;
    }

    /* キッズアンドファミリー */
    .kids-contents {
        flex-direction: column;
    }

    .kids-icon {
        width: 100%;
        max-width: 550px;
        margin-inline: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .kids-circle {
        width: 50px;
        height: 50px;
    }

    .kids-circle span {
        font-size: 27px;
        color: #FF003C;
    }

    .kids-icon-text {
        width: 80%;
        text-align: left;
        margin-left: 10px;
    }

    .kids-title {
        padding-top: 0px;
        font-size: 18px;
        font-weight: 500;
    }

    .kids-text {
        font-size: 14px;
        opacity: 0.7;
        padding-top: 5px;
    }

    /* フード＆ローカル */
    .food .wrapper {
        flex-direction: column;
    }

    .food-left {
        width: 100%;
        text-align: center;
    }

    .food-contents {
        padding-bottom: 10px;
    }

    .food-icon {
        width: 100%;
        max-width: 550px;
        margin-inline: auto;
        background: #1F1F1F;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .fooe-icon span {
        width: 10%;
    }

    .food-text {
        width: 90%;
        text-align: left;
    }

    .food-title {
        font-size: 17px;
    }

    .food-detail {
        font-size: 14px;
    }

    .food-right {
        width: 100%;
        max-width: 550px;
        margin-inline: auto;
        flex-direction: row;
        justify-content: space-between;
    }

    .food-right img {
        width: 48%;
    }

    .food-right img:nth-child(1) {
        margin-top: 0px;
    }

    .food-right img:nth-child(2) {
        margin-top: 0px;
        margin-left: 0px;
    }

    /* アフターパーティー */
    .party {
        height: fit-content;
    }

    .party-mask {
        padding-block: 50px;
    }

    .party .title p {
        font-size: 15px;
    }

    .party-contents {
        padding-bottom: 0;
    }

    .party-icon {
        width: 100%;
        max-width: 600px;
        margin-inline: auto;
        margin-bottom: 15px;
        padding-block: 10px;
        padding-inline: 20px;
    }

    .party-title {
        padding-bottom: 5px;
    }

    .party-title span {
        color: #FF003C;
        padding-right: 10px;
        font-size: 23px;
    }

    .party-title p {
        font-size: 20px;
        font-weight: 500;
    }

    .party-text {
        font-size: 15px;
    }

    /* インフォメーション */
    .information-contents {
        flex-direction: column;
    }

    .information-icon {
        width: 100%;
        max-width: 550px;
        margin-inline: auto;
        margin-bottom: 20px;
    }

    /* お問い合わせ */
    .line-contents {
        max-width: 550px;
    }

    .line-text {
        padding: 20px;
    }

    .line-text p {
        font-size: 20px;
        font-weight: 500;
    }

    .line-text p span {
        font-weight: 600;
    }

    .line-btn a {
        padding: 10px 25px;
    }

    /* スケジュール */
    .schedule-contents {
        flex-direction: column;
        max-width: 350px;
    }

    .schedule-contents::before {
        left: 20px;
        transform: translateX(0);
    }

    .schedule-item {
        width: 100%;
        justify-content: left;
    }

    .schedule-item.left {
        margin-top: 0;
        flex-direction: row-reverse;
    }

    .circle.right,
    .circle.left {
        margin-right: 30px;
        margin-left: 0;
    }

    /* アクセス */
    .train-access,
    .car-access {
        width: 100%;
    }

    .container-access {
        display: flex;
        flex-direction: column;
    }

    .access-car {
        width: 40%;
    }

    .access-overview {
        width: 60%;
        margin-left: 32px;
    }
    
}