@charset "utf-8";

/* ============================================
   リセット・ベーススタイル
   ============================================ */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* モーダルが開いている時、背景のスクロールを無効化 */
body.modal-open {
    overflow: hidden;
}

body.news-popup-open {
    overflow: hidden;
}

/* ============================================
   CSS変数
   ============================================ */
:root {
    --primary-color: #000000;
    --background-cream: #FFFCE8;
    --background-blue: #F5F5FC;
    --background-yellow: #FFF7C4;
    --background-pink: #FFEAF5;
    --white: #ffffff;
    --black: #000000;
    --pink: #D579AB;
    --yellow: #FFED0D;
    --blue: #5D5D9C;
    --content-width-sm: 800px;
    --content-width: 1080px;
    --content-width-lg: 1124px;
    --font-secondary: "Noto Sans", sans-serif;
}

/* ============================================
   レイアウト・コンテナ
   ============================================ */
.container,
.container-sm,
.container-lg {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.container-sm {
    max-width: calc(var(--content-width-sm) + 32px);
}

.container {
    max-width: calc(var(--content-width) + 32px);
}

.container-lg {
    max-width: calc(var(--content-width-lg) + 32px);
}

/* ============================================
   ヘッダー・ナビゲーション
   ============================================ */
.header {
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    z-index: 1;
    padding: 30px 50px;
}

@media screen and (max-width: 1100px) {
    .header {
        display: none;
    }
}

@media screen and (max-height: 680px) {
    .header {
        display: none;
    }
}

.header-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: bold;
    color: var(--white);
}

.header-nav__item a {
    transition: all 0.2s ease;
}

.header-nav__item a:hover {
    color: var(--pink);
}

/* ハンバーガーメニュー */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 20px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 100000;
    display: none;
}

@media screen and (max-width: 1100px) {
    .hamburger {
        display: block;
    }
}

@media screen and (max-height: 680px) {
    .hamburger {
        display: block;
    }
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 999px;
    transition: background-color 0.3s ease, transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before {
    top: 0;
}

.hamburger::after {
    bottom: 0;
}

.hamburger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 999px;
    top: calc(50% - 1.5px);
    display: block;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-scrolled::before,
.hamburger.is-scrolled::after,
.hamburger.is-scrolled .hamburger__line,
.hamburger.is-active::before,
.hamburger.is-active::after,
.hamburger.is-active .hamburger__line {
    background-color: #707070;
}

/* ハンバーガーボタンがアクティブな時（Xに変化） */
.hamburger.is-active .hamburger__line {
    opacity: 0;
}

.hamburger.is-active::before {
    top: calc(50% - 1.5px);
    transform: rotate(45deg);
}

.hamburger.is-active::after {
    bottom: calc(50% - 1.5px);
    transform: rotate(-45deg);
}

/* モーダルナビゲーションメニュー */
.modal-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #E8E5F7;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.modal-nav.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-nav__menu {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 200px;
}

.modal-nav__menu::before,
.modal-nav__menu::after {
    content: "";
    position: fixed;
    top: 0;
    width: 2px;
    height: 100vh;
    background-color: rgba(65, 176, 232, 0.3);
    z-index: 1;
}

.modal-nav__menu::before {
    left: 0;
}

.modal-nav__menu::after {
    right: 0;
}

.modal-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.modal-nav__item {
    margin-bottom: 20px;
}

.modal-nav__item:last-child {
    margin-bottom: 0;
}

.modal-nav__item a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 4px;
}


/* ============================================
   CTA
   ============================================ */
.cta {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 600px) {
    .cta {
        width: 100%;
        right: 0;
    }
}

/* .cta.is-visible {
    opacity: 1;
    visibility: visible;
} */

.cta__area {
    display: flex;
    align-items: center;
    background: var(--pink);
    border-radius: 10px 0 0 0;
    overflow: hidden;
    max-width: 600px;
}

@media screen and (max-width: 600px) {
    .cta__area {
        max-width: 100%;
        border-radius: 0;
    }
}

.cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    position: relative;
    min-width: 0;
    border-right: 2px solid var(--white);
}

@media screen and (max-width: 600px) {
    .cta__btn {
        padding: 10px 20px;
    }
}

.cta__btn:last-child {
    border-right: none;
}

.cta__btn:hover {
    opacity: 0.8;
}

.cta__btn p {
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    word-break: keep-all;
    flex-shrink: 0;
}

.cta__btn span {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 16px;
    height: 16px;
}

.cta__btn span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cta__divider {
    width: 1px;
    height: 60%;
    background: var(--white);
    opacity: 0.5;
}

@media screen and (max-width: 600px) {
    .cta__divider {
        height: 50%;
    }
}

/* ============================================
   メインビジュアル
   ============================================ */
.main-visual {
    padding: 60px;
    padding-top: 30px;
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(/static/img/maas/mobi/kr001/mt-tsukuba/common/mainV-bg-pc.jpg) no-repeat bottom center / cover;
}

@media screen and (max-width: 600px) {
    .main-visual {
        padding: 40px;
        padding-top: 80px;
        height: 350px;
        background: url(/static/img/maas/mobi/kr001/mt-tsukuba/common/mainV-bg-sp.jpg) no-repeat bottom center / cover;
    }
}

.main-visual__copy {
    width: clamp(300px, 40vw, 700px);
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 600px) {
    .main-visual__copy {
        position: relative;
        transform: none;
        top: 50%;
        transform: translateY(-50%);
        left: auto;
        margin: 0 auto;
    }
}


/* お知らせ */

.m-news__inner {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-news__title-text {
    white-space: nowrap;
    width: fit-content;
    margin-right: 6vw;
    color: var(--blue);
    font-weight: bold;
    flex-shrink: 0;
    font-size: clamp(20px, 2.4vw, 30px);
}

.m-news__wrap {
    width: 100%;
    max-width: 720px;
}




.m-news__list {
    background: var(--background-blue);
    padding: 30px;
    border-radius: 10px;
}

@media screen and (max-width: 600px) {
    .m-news__list {
        border-radius: 0 0 10px 10px;
        padding: 10px;
    }
}

.m-news__title-sp {
    background: var(--blue);
    padding: 6px 20px;
    border-radius: 10px 10px 0 0;
    color: var(--white);
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    margin-top: 22px;
}

.m-news__item {
    padding: 20px 0;
    border-bottom: 1px solid var(--white);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.m-news__item:hover {
    opacity: 0.7;
}

@media screen and (max-width: 600px) {
    .m-news__item {
        padding: 10px 0;
    }
}

.m-news__list .m-news__item:first-child {
    padding-top: 0;
}

.m-news__list .m-news__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.m-news__item-date {
    display: flex;
    align-items: center;
}



.m-news__item-label {
    font-weight: bold;
    font-size: 15px;
}

@media screen and (max-width: 600px) {
    .m-news__item-label {
        font-size: 12px;
    }
}

.m-news__item-title {
    font-size: 15px;
    margin-top: 4px;
    font-family: var(--font-secondary);
}

@media screen and (max-width: 600px) {
    .m-news__item-title {
        font-size: 11px;
    }
}

.m-news__item-detail {
    display: none;
}

/* ニュース詳細ポップアップ */
.news-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news-popup.is-active {
    opacity: 1;
    visibility: visible;
}

.news-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.news-popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 600px) {
    .news-popup__content {
        width: 95%;
        padding: 30px 20px;
        max-height: 90vh;
    }
}

.news-popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 36px;
    line-height: 1;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.news-popup__close:hover {
    opacity: 0.6;
}

.news-popup__close-btn {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    padding: 15px 30px;
    border: 2px solid var(--blue);
    background-color: var(--white);
    color: var(--blue);
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.news-popup__close-btn:hover {
    background-color: var(--blue);
    color: var(--white);
}

@media screen and (max-width: 600px) {
    .news-popup__close-btn {
        width: 150px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

.news-popup__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-right: 50px;
    border-bottom: 2px solid var(--background-blue);
    gap: 10px;
    position: relative;
}

.news-popup__label {
    font-weight: bold;
    font-size: 18px;
    margin-left: 0;
    color: var(--black);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media screen and (max-width: 600px) {
    .news-popup__label {
        font-size: 14px;
    }
}

.news-popup__body {
    margin-top: 20px;
}

.news-popup__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--black);
    font-family: var(--font-secondary);
    line-height: 1.6;
}

@media screen and (max-width: 600px) {
    .news-popup__title {
        font-size: 14px;
    }
}

.news-popup__detail {
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    font-family: var(--font-secondary);
}

@media screen and (max-width: 600px) {
    .news-popup__detail {
        font-size: 13px;
    }
}

/* ============================================
   セクションヘッダー
   ============================================ */
.section-header {
    margin-top: 56px;
}

@media screen and (max-width: 600px) {
    .section-header {
        margin-top: 60px;
    }
}

.section-header__inner {
    position: relative;
}

.section-header__content {
    width: 100%;
}

.section-header__content--flow {
    top: 45%;
}

.section-header__title {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: clamp(22px, 4vw, 38px);
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .section-header__title {
        margin-bottom: 10px;
    }
}

.section-header__title::before {
    content: "";
    display: block;
    width: 64px;
    height: 96px;
    background: url(/static/img/maas/mobi/kr001/mt-tsukuba/icon/area-icon.png) no-repeat center center / contain;
}

@media screen and (max-width: 600px) {
    .section-header__title::before {
        width: 32px;
        height: 50px;
    }
}

.section-header__title--faq:before {
    background: url(/static/img/maas/mobi/kr001/mt-tsukuba/icon/faq-icon.png) no-repeat center center / contain;
}

.section-header__title--reservation {
    margin-bottom: 30px;
}

/* ============================================
   運行エリア
   ============================================ */
.area-content {
    margin-top: 56px;
}

@media screen and (max-width: 600px) {
    .area-content {
        margin-top: 20px;
    }
}

.area-content__list {
    gap: 60px;
}

@media screen and (max-width: 600px) {
    .area-content__list {
        gap: 30px;
    }
}

.area-content__list-2 {
    align-items: start;
    margin-top: 60px;
}

@media screen and (max-width: 600px) {
    .area-content__list-2 {
        margin-top: 30px;
    }
}

.area-content__item {
    border-radius: 10px;
    background: #D8D5EB;
    border: 1px solid #D8D5EB;
}

.area-content__head {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    justify-content: center;
    background: #D8D5EB;
    height: 110px;
    border-radius: 8px 8px 0 0;
}

@media screen and (max-width: 600px) {
    .area-content__head {
        height: 80px;
        padding-top: 0;
        vertical-align: middle;
    }
}

.area-content__head-title {
    font-size: clamp(18px, 2vw, 30px);
    font-weight: bold;
    color: var(--blue);
    text-align: center;
}

.area-content__head-title span {
    font-size: 13px;
    font-weight: normal;
    color: #000;
}

@media screen and (max-width: 600px) {
    .area-content__head-title span {
        font-size: 10px;
    }
}

.area-content__body {
    padding: 40px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    background: #F5F5FC;
    padding-bottom: 40px;
}

@media screen and (max-width: 600px) {
    .area-content__body {
        padding: 20px;
        padding-bottom: 40px;
    }
}

.area-content__body iframe {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 1/.6;
    border-radius: 10px;
}

@media screen and (max-width: 600px) {
    .area-content__body iframe {
        aspect-ratio: 1 /1;
    }
}

.area-content__desc-time-wrap {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (max-width: 480px) {
    .area-content__desc-time-wrap {
        gap: 0px;
        flex-direction: column;
    }
}

.area-content__desc-head {
    color: var(--blue);
    font-weight: bold;
    font-size: 19px;
    margin-top: 18px;
}

@media screen and (max-width: 600px) {
    .area-content__desc-head {
        font-size: 14px;
    }
}

.area-content__desc-text {
    font-size: 18px;
}

@media screen and (max-width: 600px) {
    .area-content__desc-text {
        font-size: 14px;
    }
}

.area-content__desc-text span {
    font-size: 13px;
}

@media screen and (max-width: 600px) {
    .area-content__desc-text span {
        font-size: 10px;
    }
}

.area-content__desc-text-note {
    margin-top: 24px;
    color: #CB0E0E;
}

.area-content__timetable {
    margin-top: 32px;
}

.area-content__timetable .dot-list {
    display: inline-block;
    text-align: left;
    color: var(--blue);
    margin-top: 10px;
    margin-bottom: 0;
}

.area-content__timetable .dot-list li {
    margin-bottom: 8px;
}

.area-content__timetable .dot-list li:last-child {
    margin-bottom: 0;
}

.area-content__timetable .dot-list a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.area-content__timetable .dot-list a .icon-link {
    display: inline-block;
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin-left: 4px;
    line-height: 0;
}

.area-content__timetable .dot-list a .icon-link img {
    width: 100% !important;
    height: 100% !important;
    vertical-align: top;
    margin-left: 0;
}

@media screen and (max-width: 600px) {
    .area-content__desc-text-note {
        font-size: 13px;
    }
}

.area-content__desc-btn {
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    margin-top: 32px;
}

/* ============================================
   ライドシェア
   ============================================ */
.ride-share {
    margin-top: 60px;
}

@media screen and (max-width: 600px) {
    .ride-share {
        margin-top: 30px;
    }
}

/* ============================================
   運賃表
   ============================================ */
.price-section {
    background: #FFF7C4;
    padding: 60px 0;
}

@media screen and (max-width: 480px) {
    .price-section {
        padding: 30px 0;
    }
}

.price-table {
    background-color: #FFFBE5;
    border-radius: 10px;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    overflow: hidden;
    border: 2px solid #fff;
}

.price-table__header {
    display: contents;
}

.price-table__header-cell {
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.price-table__header-cell--empty {
    background-color: #F5F5FC;
}

.price-table__header-cell--text {
    background-color: #FFFCE8;
    color: #D579AB;
    font-size: 22px;
}

.price-table__header-cell:last-child {
    border-right: none;
}

.price-table__row {
    display: contents;
}

.price-table__label {
    background-color: #F5F5FC;
    padding: 20px 15px;
    text-align: center;
    color: #5D5D9C;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.price-table__row:last-child .price-table__label {
    border-bottom: none;
}

.price-table__label-sub {
    font-size: 18px;
    margin-top: 5px;
    font-weight: bold;
}

.price-table__cell {
    background-color: #F5F5FC;
    padding: 20px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.price-table__cell:last-child {
    border-right: none;
}

.price-table__row:last-child .price-table__cell {
    border-bottom: none;
}

.price-table__price {
    background-image: linear-gradient(transparent 60%, #FFED0D 60%, #FFED0D calc(60% + 12px), transparent calc(60% + 12px));
    font-weight: bold;
    font-size: 36px;
    display: inline-block;
    line-height: 1.2;
}

.price-table__yen {
    font-size: 22px;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .price-table {
        margin-top: 20px;
    }

    .price-table__header-cell--text {
        font-size: 18px;
        padding: 12px 8px;
    }

    .price-table__label {
        font-size: 18px;
        padding: 12px 8px;
    }

    .price-table__label-sub {
        font-size: 14px;
    }

    .price-table__cell {
        padding: 12px 8px;
    }

    .price-table__price {
        font-size: 28px;
    }

    .price-table__yen {
        font-size: 18px;
    }
}

@media screen and (max-width: 430px) {
    .price-table__header-cell--text {
        font-size: 16px;
    }
}

.price-table__notes {
    margin-top: 20px;
    font-family: var(--font-secondary);
}

.price-table__note {
    font-size: 14px;
    line-height: 1.8;
}

.price-table__note:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 600px) {
    .price-table__notes {
        margin-top: 15px;
    }

    .price-table__note {
        font-size: 11px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 600px) {
    .price-table__note span {
        padding-left: 1em;
    }
}

.service-info {
    padding-top: 80px;
}

@media screen and (max-width: 600px) {
    .service-info__movie {
        padding-top: 20px;
    }
}

.service-info__movie {
    aspect-ratio: 16 / 9;
    max-width: 700px;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .service-info__movie {
        aspect-ratio: 1 /.6;
    }
}

.service-info__movie iframe {
    width: 100%;
    height: 100%;
}


/* ============================================
   サービス利用の流れ
   ============================================ */
.service-flow {
    padding-top: 120px;
    margin-top: 50px;
    padding-bottom: 80px;
    position: relative;
}

@media screen and (max-width: 600px) {
    .service-flow {
        padding-top: 10px;
        padding-bottom: 0px;
    }
}

.service-flow__inner {
    margin-top: 80px;
}

@media screen and (max-width: 600px) {
    .service-flow__inner {
        margin-top: 30px;
    }
}

.service-flow__list.m-grid-2col {
    gap: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .service-flow__list.m-grid-2col {
        gap: 40px;
    }
}

.service-flow__text {
    margin-top: 30px;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
    min-height: 3em;
}

@media screen and (max-width: 600px) {
    .service-flow__text {
        font-size: 13px;
    }
}

.service-flow__item {
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .service-flow__item {
        margin-top: 0;
    }
}

.service-flow__list .service-flow__item:nth-child(odd) .service-flow__img {
    position: relative;
}

.service-flow__list .service-flow__item:nth-child(odd) .service-flow__img::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(100%, -50%);
    right: -10px;
    width: 80px;
    height: 80px;
    background: url(/static/img/maas/mobi/kr001/mt-tsukuba/common/m-flow-arrow.png) no-repeat center center / contain;
}

@media screen and (max-width: 600px) {
    .service-flow__list .service-flow__item:nth-child(odd) .service-flow__img::after {
        display: none;
    }
}

.service-flow__list .service-flow__item:last-child .service-flow__img::after {
    display: none;
}

.service-flow__head {
    background: var(--background-cream);
    border-radius: 50px;
    height: 100px;
    border: 1px solid var(--yellow);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .service-flow__head {
        height: 50px;
        width: 60%;
        margin: 0 auto;
    }
}

.service-flow__head-number {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 1px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: clamp(15px, 2.5vw, 30px);
    color: var(--pink);
    text-align: center;
    line-height: 1.1;
}

@media screen and (max-width: 600px) {
    .service-flow__head-number {
        width: 50px;
        height: 50px;
    }
}

.service-flow__head-title {
    text-align: center;
    font-weight: 500;
    font-size: clamp(16px, 3.3vw, 32px);
}

@media screen and (max-width: 600px) {
    .service-flow__head-title {
        font-size: 14px;
        margin-left: 10px;
    }
}

.service-flow__head-title span {
    font-size: 16px;
    font-weight: 500;
    display: block;
}

@media screen and (max-width: 600px) {
    .service-flow__head-title span {
        font-size: 12px;
    }
}

.service-flow__line {
    width: 62%;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .service-flow__line {
        display: none;
    }
}

.service-flow__btn {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.service-flow__btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--pink);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.service-flow__btn-link:hover {
    opacity: 0.8;
}

.service-flow__btn-text {
    color: var(--white);
}

.service-flow__btn-icon {
    display: flex;
    align-items: center;
    line-height: 0;
}

.service-flow__btn-icon img {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 600px) {
    .service-flow__btn-link {
        font-size: 14px;
        padding: 10px 20px;
    }

    .service-flow__btn-icon img {
        width: 18px;
        height: 18px;
    }
}

.service-flow__item-btn {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
    .service-flow__item-btn {
        margin-bottom: 15px;
        max-width: 250px;
    }
}

.btn-dark {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #5F5F5F;
    color: #fff;
    padding: 6px;
    border-radius: 10px;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 15px;
    min-height: 64px;
}

@media screen and (max-width: 600px) {
    .btn-dark {
        padding: 15px;
        gap: 15px;
    }
}

.btn-dark:hover {
    opacity: 0.8;
}

.btn-dark::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url(/static/img/maas/mobi/kr001/mt-tsukuba/icon/arrow-black.png) no-repeat center center / contain;
}

@media screen and (max-width: 600px) {
    .btn-dark::after {
        width: 13px;
        height: 13px;
    }
}

/* ============================================
   予約申込の違いについて
   ============================================ */
.difference {
    background-color: #F5F5FC;
    padding: 60px 0;
    margin-top: 80px;
}

.difference__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.difference__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
    .difference__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
}

.difference__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: bold;
    color: var(--pink);
    text-align: center;
    margin-bottom: 20px;
}

.difference__subtitle {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.difference__highlight {
    background-image: linear-gradient(transparent 70%, #FFED0D 70%, #FFED0D calc(70% + 0px), transparent calc(80% + 6px));
    padding: 2px 4px;
    font-size: 26px;
}

.difference__subtitle .difference__highlight:nth-of-type(1) {
    color: var(--pink);
}

.difference__subtitle .difference__highlight:nth-of-type(2) {
    color: #3369BF;
}

.difference__panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.difference__panel {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #fff;
}

.difference__panel--advance {
    border: 2px solid var(--pink);
}

.difference__panel--lastminute {
    border: 2px solid #3369BF;
}

.difference__panel-header {
    padding: 20px;
    text-align: center;
}

.difference__panel--advance .difference__panel-header {
    background-color: var(--pink);
}

.difference__panel--lastminute .difference__panel-header {
    background-color: #3369BF;
}

.difference__panel-title {
    font-size: clamp(22px, 2vw, 24px);
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.difference__panel-content {
    padding: 20px;
}

.difference__panel-note {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.difference__panel-note span {
    font-weight: bold;
    color: #CB0E0E;
}

.difference__panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference__panel-list li {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
    padding-left: 10px;
    position: relative;
    line-height: 1.3;
    letter-spacing: 0em;
    display: flex;
    align-items: start;
}


.difference__panel-list li span {
    color: #CB0E0E;
}

.difference__panel-list li:before {
    content: "•";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 15px;
    line-height: 1.3;
    transform: translateY(2px);
}

@media screen and (max-width: 480px) {
    .difference__panel-list li::before {
        transform: translateY(-1px);
    }
}

.difference__panel-list li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .difference {
        padding: 40px 0;
        margin-top: 60px;
    }

    .difference__panels {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .difference__title {
        margin-bottom: 15px;
    }

    .difference__subtitle {
        margin-bottom: 30px;
    }

    .difference__panel-header {
        padding: 15px;
    }

    .difference__panel-content {
        padding: 15px;
    }
}

/* ============================================
   予約申込方法詳細
   ============================================ */

.reservation-step {
    padding-top: 80px;
}

@media screen and (max-width: 600px) {
    .reservation-step {
        padding-top: 60px;
    }
}

.reservation-step__map {
    overflow-x: auto;
}

.reservation-step__map-img {
    min-width: 800px;
}

.reservation-step__map-img img {
    width: 100%;
    height: auto;
}




.reservation-step__map-note {
    font-size: 13px;
    margin-top: 15px;
    font-family: var(--font-secondary);
}

@media screen and (max-width: 600px) {
    .reservation-step__map-note {
        font-size: 11px;
        margin-bottom: 60px;
        margin-top: 10px;
    }
}

.reservation-step__inner {
    margin-top: 80px;
    background: #F5F5FC;
    padding-top: 60px;
    padding-bottom: 80px;
}

@media screen and (max-width: 600px) {
    .reservation-step__inner {
        margin-top: 30px;
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

.reservation-step__list {
    padding: 0 20px;
    gap: 6vw !important;
    margin-top: 50px;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .reservation-step__list {
        gap: 40px !important;
        margin-top: 30px;
    }
}

.reservation-step__text {
    margin-top: 30px;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
    min-height: 3em;
    font-size: 14px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .reservation-step__text {
        font-size: 13px;
        margin-top: 15px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .reservation-step__img {
        width: 80%;
        margin: 0 auto;
    }
}

.reservation-step__list .reservation-step__item:nth-child(odd) .reservation-step__img {
    position: relative;
}

.reservation-step__list .reservation-step__item:nth-child(odd) .reservation-step__img::after {
    display: none;
}

.reservation-step__item-head {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.reservation-step__head {
    background: var(--background-cream);
    border-radius: 50px;
    height: 100px;
    border: 1px solid var(--yellow);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .reservation-step__head {
        height: 50px;
        width: 80%;
        margin: 0 auto;
    }
}

.reservation-step__head-number {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 1px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: clamp(15px, 2.5vw, 30px);
    color: var(--pink);
    text-align: center;
    line-height: 1.1;
}

@media screen and (max-width: 600px) {
    .reservation-step__head-number {
        width: 50px;
        height: 50px;
    }
}

.reservation-step__head-title {
    text-align: center;
    font-weight: 500;
    font-size: clamp(16px, 3.3vw, 32px);
}

@media screen and (max-width: 600px) {
    .reservation-step__head-title {
        font-size: 14px;
        margin-left: 10px;
    }
}

.reservation-step__head-title span {
    font-size: 16px;
    font-weight: 500;
    display: block;
}

@media screen and (max-width: 600px) {
    .reservation-step__head-title span {
        font-size: 12px;
    }
}

.reservation-step__btn {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 30px auto;
    min-height: 60px;
    margin-bottom: 60px;
}

.reservation-step__btn-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--pink);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
    min-height: 80px;
}

.reservation-step__btn-link:hover {
    opacity: 0.8;
}

.reservation-step__btn-text {
    color: var(--white);
}

.reservation-step__btn-icon {
    display: flex;
    align-items: center;
    line-height: 0;
}

.reservation-step__btn-icon img {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 600px) {
    .reservation-step__btn-link {
        font-size: 14px;
        padding: 10px 20px;
        min-height: auto;
    }

    .reservation-step__btn-icon img {
        width: 15px;
        height: 15px;
    }
}

/* ============================================
   ご利用の注意
   ============================================ */
.information {
    margin-top: 0px;
    background: var(--background-yellow);
}

@media screen and (max-width: 600px) {
    .information {
        margin-top: 0px;
    }
}

.information__inner {
    padding: 100px 0;
}

@media screen and (max-width: 600px) {
    .information__inner {
        padding: 60px 0;
        padding-top: 20px;
    }
}

.information__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: clamp(20px, 3vw, 38px);
    font-weight: bold;
    color: var(--pink);
}

.information__title span {
    width: 64px;
    height: 64px;
    display: flex;
    line-height: 0;
}

.information__list {
    display: flex;
    gap: 20px;
    justify-content: end;
    margin-bottom: 32px;
}

@media screen and (max-width: 600px) {
    .information__list {
        gap: 10px;
    }
}

.information__item {
    background: #E8E8E8;
    padding: 3px 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media screen and (max-width: 600px) {
    .information__item {
        font-size: 16px;
    }
}

.information__item:hover,
.information__item.is-active {
    background: var(--pink);
    color: var(--white);
}

.information__content {
    height: 220px;
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    overflow: scroll;
    margin-top: 22px;
}

@media screen and (max-width: 600px) {
    .information__content {
        padding: 40px 20px;
    }
}

/* スクロールバーのスタイル */
.information__content::-webkit-scrollbar {
    width: 8px;
}

.information__content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.information__content::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 10px;
}

.information__content::-webkit-scrollbar-thumb:hover {
    background: #f86ab0;
}

/* Firefox用 */
.information__content {
    scrollbar-width: thin;
    scrollbar-color: var(--pink) #f1f1f1;
}

.inner-attention--en {
    display: none;
}

.inner-attention--ja {
    display: block;
}

.attention-title {
    font-weight: bold;
    font-size: clamp(18px, 2vw, 30px);
    margin-bottom: 10px;
    color: var(--pink);
}

@media screen and (max-width: 600px) {
    .attention-title {
        text-align: center;
    }
}

.attention-title.mb-1 {
    margin-bottom: 4px;
}

.dot-list {
    margin-bottom: 30px;
}


.dot-list li.indent {
    margin-left: 0px;
}

.dot-list li {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.8;
    list-style: none;
    /* デフォルトのドットを消す */
    position: relative;
    padding-left: 0.75em;
    /* ドットの分の余白を確保 */
    display: flex;
    align-items: baseline;
}

.dot-list li::before {
    content: "";
    /* ドットを表示 */
    display: inline-block;
    width: 5px;
    height: 5px;
    transform: translateY(-2.5px);
    background-color: #D8D5EB;
    border-radius: 50%;
    margin-right: 8px;
}



/* ============================================
   フッター
   ============================================ */
.footer {
    margin-top: 120px;
    padding-bottom: 80px;
    background: var(--white);
}

@media screen and (max-width: 600px) {
    .footer {
        padding-bottom: 90px;
        margin-top: 40px;
    }
}

.footer__inner {
    background: var(--white);
    padding: 80px 0;
    padding-top: 0px;
}

@media screen and (max-width: 600px) {
    .footer__inner {
        padding: 40px 0;
        padding-top: 0;
    }
}

.footer__title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: bold;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .footer__title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

.footer__description {
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--black);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

@media screen and (max-width: 600px) {
    .footer__description {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

.footer__tel {
    background: #FFF7BA;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
    border-radius: 8px;
    max-width: 600px;
}

@media screen and (max-width: 600px) {
    .footer__tel {
        padding: 16px;
        margin-bottom: 16px;
    }
}

.footer__tel-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: bold;
    color: #5D5D9C;
    margin: 0;
    letter-spacing: 0.05em;
}



.footer__hours {
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--black);
    text-align: center;
    font-weight: 500;
    margin-bottom: 16px;
}

@media screen and (max-width: 600px) {
    .footer__hours {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

.footer__notice {
    font-size: clamp(13px, 1.6vw, 16px);
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

@media screen and (max-width: 600px) {
    .footer__notice {
        font-size: 12px;
        margin-bottom: 30px;
    }
}

.footer__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
}

@media screen and (max-width: 600px) {
    .footer__buttons {
        gap: 12px;
        margin-bottom: 30px;
    }
}

.footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 24px;
    min-height: 54px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--white);
    transition: opacity 0.3s ease;
}

.footer__btn:hover {
    opacity: 0.8;
}

.footer__btn--top {
    background: #D579AB;
}

.footer__btn--inquiry,
.footer__btn--receipt {
    background: #41B0E8;
}

@media screen and (max-width: 600px) {
    .footer__btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

.footer__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    line-height: 0;
}

.footer__btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media screen and (max-width: 600px) {
    .footer__btn-icon {
        width: 18px;
        height: 18px;
    }
}

.footer__policy {
    margin-top: 40px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .footer__policy {
        margin-top: 30px;
    }
}

.footer__policy a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    font-size: clamp(14px, 1.6vw, 16px);
    transition: opacity 0.3s ease;
}

.footer__policy a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 600px) {
    .footer__policy a {
        font-size: 14px;
    }
}

.footer__policy a span {
    width: 13px;
    height: 13px;
    display: block;
    line-height: 0;
}

.footer__policy a span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   ユーティリティクラス
   ============================================ */
.u-pc-only {
    display: block;
}

@media screen and (max-width: 600px) {
    .u-pc-only {
        display: none;
    }
}

.u-sp-only {
    display: none;
}

@media screen and (max-width: 600px) {
    .u-sp-only {
        display: block;
    }
}

.m-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media screen and (max-width: 600px) {
    .m-grid-2col {
        grid-template-columns: repeat(1, 1fr);
    }
}

.m-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media screen and (max-width: 600px) {
    .m-grid-3col {
        grid-template-columns: repeat(1, 1fr);
    }
}

.m-flex-3col {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .m-flex-3col {
        flex-direction: column;
        gap: 40px;
    }
}

.m-flex-3col li {
    width: calc(100% / 3 - 50px);
}

@media screen and (max-width: 600px) {
    .m-flex-3col li {
        width: 100%;
    }
}

/* ユーティリティクラス */
.mb-1 {
    margin-bottom: 4px;
}

.indent {
    margin-left: 20px;
}


/*お知らせ欄*/
.m-news__item-label {
	background: var(--background-cream);
	color: var(--pink);
	font-weight: 500;
	border-radius: 10px;
	font-size: 15px;
	padding: 2px 10px;
	flex-shrink: 0;
}
.news-popup__label {
	background: var(--background-cream);
	color: var(--pink);
	font-weight: 500;
	border-radius: 10px;
	padding: 5px 15px;
	font-size: 15px;
}

.m-news__item-title{
	text-decoration: underline;
}

.m-news__item-title .icon {
	display: inline-block;
	width: 21px;
	vertical-align: sub;
	margin-left: 8px;
}

@media screen and (max-width: 600px) {
	.m-news__item-label {
		font-size: 11px;
	}
	.news-popup__label {
		font-size: 11px;
	}
}