/* --------------------------
    variables
-------------------------- */
:root {
    --content-width: 1100px;
    --middle-width: 960px;
    --narrow-width: 800px;
    --wide-width: 1200px;
    --header-height: 80px;
    --header-height-sp: 50px;
    --color: #333;
    --color-blue: #004c87;
    --color-blue-pale: #f2f7f9;
    --color-blue-light: #b4cfdb;
    --color-blue-light2: #cae5f0;
    --color-blue-light3: #ddeef5;
    --line-height: 1.75;
    --font-size: 16px;
    --font-size-sp: 14px;
    --letter-spacing: 0.1em;
    --font-family: 'Noto Sans JP', '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック ProN W3', 'Hiragino Kaku Gothic ProN', 'Meiryo UI', 'ＭＳ Ｐゴシック', sans-serif;
    --serif-font:  'Noto Serif JP', '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
    --display-font: 'Montserrat', var(--font-family);
    --font-awesome: 'Font Awesome 7 Free';
    --ornament-cross: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDY0IDY0Ij4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLnN0MCB7CiAgICAgICAgZmlsbDogIzAwNGM4NzsKICAgICAgfQoKICAgICAgLnN0MSB7CiAgICAgICAgZmlsbDogI2EzYzRkMzsKICAgICAgfQoKICAgICAgLnN0MiB7CiAgICAgICAgZmlsbDogIzYxOTdhZjsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPHJlY3QgY2xhc3M9InN0MCIgeD0iMjEuMzMzMzMiIHdpZHRoPSIyMS4zMzMzMyIgaGVpZ2h0PSIyMS4zMzMzMyIvPgogIDxyZWN0IGNsYXNzPSJzdDIiIHg9IjIxLjMzMzMzIiB5PSIyMS4zMzMzMyIgd2lkdGg9IjIxLjMzMzMzIiBoZWlnaHQ9IjIxLjMzMzMzIi8+CiAgPHJlY3QgY2xhc3M9InN0MSIgeD0iNDIuNjY2NjciIHk9IjIxLjMzMzMzIiB3aWR0aD0iMjEuMzMzMzMiIGhlaWdodD0iMjEuMzMzMzMiLz4KICA8cmVjdCBjbGFzcz0ic3QwIiB4PSIwIiB5PSIyMS4zMzMzMyIgd2lkdGg9IjIxLjMzMzMzIiBoZWlnaHQ9IjIxLjMzMzMzIi8+CiAgPHJlY3QgY2xhc3M9InN0MSIgeD0iMjEuMzMzMzMiIHk9IjQyLjY2NjY3IiB3aWR0aD0iMjEuMzMzMzMiIGhlaWdodD0iMjEuMzMzMzMiLz4KPC9zdmc+);
    --icon-arrow-white: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMyIDMyIj4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLnN0MCB7CiAgICAgICAgZmlsbDogI2ZmZjsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIxNS4zOTcwNSAuNTYyNDIgMTIuODIyIDMuMzI3NDQgMjQuNDIxNDQgMTQuMTA5NjYgMCAxNC4xMDk2NiAwIDE3Ljg4NDYxIDI0LjQzMDcyIDE3Ljg4NDYxIDEyLjgyMiAyOC42NzI1NiAxNS4zOTcwNSAzMS40Mzc1OCAzMiAxNi4wMDE3NyAxNS4zOTcwNSAuNTYyNDIiLz4KPC9zdmc+);
}

/* --------------------------
    reset
-------------------------- */
* {
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-feature-settings: 'palt';
    overflow-wrap: anywhere;
    line-break: strict;
	-webkit-text-size-adjust: 100%;
    font-size: var(--font-size);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
	color: var(--color);
    font-family: var(--font-family);
    font-weight: 400;
    min-height: 100vh;
}

main {
    display: block;
}

img {
    display: block;
    max-width: 100%;
}

input[type="image"],
video,
embed,
iframe,
marquee,
object {
    display: block;
    max-width: 100%;
    aspect-ratio: attr(width) / attr(height);
}

table {
    max-width: 100%;
    aspect-ratio: attr(width) / attr(height);
}

a {
    color: inherit;
    text-decoration: none;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.75rem;
}

h6 {
    font-size: 0.75rem;
    font-weight: 500;
}

table {
    border-spacing: 0;
}

@media (max-width: 768px) {
    body {
        font-size: var(--font-size-sp);
    }
}

/* --------------------------
    common
-------------------------- */
.content-width {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
}

.narrow-width {
    width: 100%;
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.middle-width {
    width: 100%;
    max-width: var(--middle-width);
    margin: 0 auto;
}

.wide-width {
    width: 100%;
    max-width: var(--wide-width);
    margin: 0 auto;
}

.section-padding {
    padding: 4em 1em;
}

.section-padding-low {
    padding: 2em 1em;
}

.section-padding-full {
    padding: 4em 0;
}

.clearfix {
    clear: both;
}

.scrollable {
    overflow-x: scroll;
    position: relative;
}

.mt4 {
    margin-top: 4em;
}

.heading3 {
    margin-bottom: 1em;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.heading3:before {
    content: '';
    display: block;
    width: 100%;
    border-top: 1px solid var(--color-blue);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}

.heading3 > span {
    display: inline-flex;
    align-items: center;
    font-family: var(--serif-font);
    font-weight: 400;
    font-size: 1em;
    color: var(--color-blue);
    background-color: var(--color-blue-light2);
    padding-right: 1em;
    font-size: clamp(0.75em, 2vw, 0.875em);
}

.heading3 > span:before {
    content: attr(data-text);
    font-family: var(--display-font);
    font-size: 2.25em;
    font-weight: 500;
    letter-spacing: 0;
    padding-right: 0.5em;
}

.button-wrap {
    margin-top: 2em;
}

.button-wrap.center {
    text-align: center;
}

.big-button {
    display: block;
    padding: 1em 3em 1em 2em;
    border-radius: 0.25em;
    background-color: var(--color-blue);
    font-family: var(--serif-font);
    font-weight: 400;
    font-size: clamp(1em, 2vw, 1.5em);
    color: #fff;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.big-button:hover {
    opacity: 0.7;
    transition: all 0.2s ease;
}

.big-button:before {
    content: '';
    display: block;
    border-left: 0.25em solid #fff;
    border-top: 0.25em solid transparent;
    border-bottom: 0.25em solid transparent;
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.big-button:hover:before {
    right: 1em;
    transition: all 0.2s ease;
}

.button {
    display: inline-block;
    padding: 1em 3em 1em 2em;
    border-radius: 0.25em;
    background-color: var(--color-blue);
    font-family: var(--serif-font);
    font-weight: 400;
    font-size: clamp(0.875em, 2vw, 1em);
    color: #fff;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.button:hover {
    opacity: 0.7;
    transition: all 0.2s ease;
}

.button:before {
    content: '';
    display: block;
    border-left: 0.25em solid #fff;
    border-top: 0.25em solid transparent;
    border-bottom: 0.25em solid transparent;
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.button:hover:before {
    right: 1em;
    transition: all 0.2s ease;
}

.gradient-bg {
    background: linear-gradient(to right, var(--color-blue-light2), transparent 10%, transparent 90%, var(--color-blue-light2));
}

@media (max-width: 768px) {
    .section-padding {
        padding: 2em 1em;
    }

    .section-padding-low {
        padding: 1em;
    }
    
    .section-padding-full {
        padding: 2em 0;
    }

    .sp-hide {
        display: none;
    }

    .button-wrap {
        margin-top: 1em;
    }

    .mt4 {
        margin-top: 2em;
    }

    .heading3 > span {
        flex-flow: column;
        align-items: flex-start;
    }

    .heading3 > span:before {
        font-size: 1.75em;
        margin-bottom: 0.25em;
    }

    .scrollable:before {
        content: 'スクロールできます';
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        padding-top: 4em;
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .scrollable:after {
        content: '\f25a';
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        font-family: var(--font-awesome);
        font-weight: 700;
        font-size: 2em;
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        animation: scrollFinger 2s ease infinite;
        z-index: 2;
    }

    .scrollable.scrolled:before,
    .scrollable.scrolled:after {
        display: none;
    }

	@keyframes scrollFinger {
		0% {
			transform: translateX(0.5em);
		}
		33% {
			transform: translateX(-0.5em);
		}
		66% {
			transform: translateX(-0.5em);
		}
		100% {
			transform: translateX(-0.5em);
		}
	}


    .gradient-bg {
        background: linear-gradient(to right, var(--color-blue-light3), transparent 20%, transparent 80%, var(--color-blue-light3));
    }
}


/* --------------------------
    header
-------------------------- */
/* header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--header-height);
    background-color: #fff;
    padding: 0 2rem;
    border-bottom: 1px solid #ddd;
}

#header-logo {
    display: inline-block;
}

#header-logo > img {
    height: calc(var(--header-height) - 2rem);
}

@media (max-width: 768px) {
    header {
        height: var(--header-height-sp);
        padding: 0 1rem;
    }

    #header-logo > img {
        width: 320px;
        height: auto;
    }
}

/* --------------------------
    footer
-------------------------- */
footer {
    border-top: 1px solid #ddd;
}

footer > div {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
}

#footer-logo {
    display: inline-block;
    justify-self: center;
    width: 75%;
    max-width: 480px;
}

#footer-logo > img {
    width: 100%;
}

footer > div:first-of-type > div {
    justify-self: center;
    font-size: clamp(1em, 1.5vw, 1.25em);
}

footer > div:first-of-type > .tel {
    justify-self: center;
}

footer > div:first-of-type > .tel > span {
    font-family: var(--display-font);
    font-weight: 500;
    font-size: clamp(1.5em, 4vw, 3em);
    letter-spacing: 0;
    line-height: 1.25;
}

footer > div:first-of-type > .tel > span:before {
    content: 'tel.';
    font-size: 0.75em;
}

footer > div:first-of-type > .tel > div {
    text-align: center;
}

footer > div:first-of-type > .tel > div > span {
    display: inline-block;
    padding: 0.25em 1em;
    border-radius: 0.5em;
    background-color: var(--color-blue);
    color: #fff;
    font-size: 0.75em;
    margin-right: 1em;
}

footer > div:first-of-type > .button {
    justify-self: center;
    margin-top: 1em;
}

footer > div:last-of-type {
    padding: 1em;
    border-top: 1px solid #ccc;
}

#copyright {
    display: flex;
    justify-content: center;
    font-family: var(--display-font);
    font-size: 0.875em;
    letter-spacing: 0;
    color: #555;
}


/* --------------------------
    top
-------------------------- */
#top-main-banner {
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    max-height: 100vw;
    position: relative;
}

#top-main-banner > figure {
    height: 60%;
    background-color: #eee;
}

#top-main-banner > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#top-main-banner > div {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 40%;
}

#top-main-banner > div > h2 {
    font-family: var(--display-font);
    font-size: clamp(2.5em, 10vw, 6em);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-blue);
}

#top-main-banner > div > h3 {
    font-family: var(--serif-font);
    font-size: clamp(1.25em, 2.5vw, 1.5em);
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
}

#top-main-banner > div > p {
    font-size: clamp(0.75em, 1.5vw, 1em);
    margin-top: 1em;
}

@media (max-width: 768px) {
    #top-main-banner {
        min-height: unset;
    }
}

#opencampus-button {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 12em;
    aspect-ratio: 1 / 1;
    background-color: var(--color-blue);
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    font-size: clamp(10px, 1.5vw, 0.875em);
    position: absolute;
    right: 1em;
    bottom: 1em;
    transition: all 0.2s ease;
}

#opencampus-button:hover {
    opacity: 0.85;
    filter: brightness(1.25);
    transition: all 0.2s ease;
}

#opencampus-button:before {
    content: '';
    display: block;
    border-left: 0.5em solid #fff;
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    position: absolute;
    bottom: 1.25em;
    left: 50%;
    transform: translateX(-50%);
}

#opencampus-button > div {
    font-family: var(--display-font);
    font-size: 2em;
    letter-spacing: 1.25;
    line-height: 1;
}

#opencampus-button > div > span {
    font-size: 0.5em;
}

#top-concept > div:first-of-type > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2em;
    align-items: center;
}

#top-concept > div:first-of-type > div > h2 {
    justify-self: center;
    font-family: var(--serif-font);
    font-size: clamp(1.25em, 3vw, 2.25em);
    font-weight: 400;
    color: var(--color-blue);
}

#top-concept > div:first-of-type > div > figure {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #eee;
    border-radius: 0.5em;
    overflow: hidden;
}

#top-concept > div:first-of-type > div > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#top-concept > div:last-of-type > p {
    text-align: center;
    word-break: keep-all;
    line-height: 2;
}

@media (max-width: 768px) {
    #top-concept > div:first-of-type > div {
        grid-template-columns: 1fr;
    }

    #top-concept > div:first-of-type > div > h2 {
        font-size: clamp(1.25em, 4vw, 2.25em);
        text-align: center;
    }

    #top-concept > div:first-of-type > div > figure {
        max-width: 75%;
        margin: 0 auto;
    }
}

#top-requirement > div > div {
    background-color: var(--color-blue-pale);
    border: 1px solid var(--color-blue-light);
    border-radius: 0.5em;
    padding: 2em 3em;
}

#top-requirement > div > div > h2 {
    font-family: var(--serif-font);
    font-weight: 400;
    color: var(--color-blue);
    text-align: center;
    margin-bottom: 1em;
}

#top-requirement > div > div > dl {
    display: flex;
    flex-wrap: wrap;
}

#top-requirement > div > div > dl > dt {
    display: grid;
    justify-content: center;
    align-items: center;
    width: 10em;
    padding: 1em;
    font-family: var(--serif-font);
    color: var(--color-blue);
}

#top-requirement > div > div > dl > dd {
    width: calc(100% - 10em);
    padding: 1em;
    font-size: clamp(1em, 2vw, 1.125em);
}

#top-requirement > div > div > dl > dt:not(:last-of-type),
#top-requirement > div > div > dl > dd:not(:last-of-type) {
    border-bottom: 1px solid var(--color-blue-light);
}

@media (max-width: 768px) {
    #top-requirement > div > div > dl > dt {
        width: 100%;
        padding: 1em 1em 0 1em;
        justify-content: flex-start;
    }

    #top-requirement > div > div > dl > dt:not(:last-of-type) {
        border-bottom: unset;
    }

    #top-requirement > div > div > dl > dd {
        width: 100%;
        padding-top: 0.5em;
    }

    #top-requirement > div > div {
        padding: 2em 1em;
    }
}

.heading {
    display: flex;
    flex-flow: column;
    font-family: var(--serif-font);
    font-size: clamp(1.25em, 2vw, 1.75em);
    font-weight: 400;
    margin-bottom: 1em;
    color: var(--color-blue);
}

.heading.center {
    word-break: keep-all;
    text-align: center;
    align-items: center;
}

.heading:before {
    content: attr(data-text);
    display: inline-block;
    font-family: var(--display-font);
    font-size: 0.625em;
    font-weight: 500;
    letter-spacing: 0;
    padding-left: 1.5em;
    margin-bottom: 1em;
    background-image: var(--ornament-cross);
    background-size: 1em 1em;
    background-position: center left;
    background-repeat: no-repeat;
}

#top-greeting > div:first-of-type {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 2em;
    align-items: center;
}

#top-greeting > div:first-of-type > figure {
    aspect-ratio: 4 / 5;
    background-color: #eee;
    border-radius: 0.5em;
    overflow: hidden;
}

#top-greeting > div:first-of-type > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#top-greeting > div:first-of-type > div > h3 {
    font-family: var(--serif-font);
    font-size: clamp(1.25em, 3vw, 1.75em);
    font-weight: 400;
    color: var(--color-blue);
    white-space: nowrap;
}

#top-greeting > div:last-of-type {
    padding-top: 0;
}

#top-greeting > div:last-of-type > p {
    text-indent: calc(1em + 0.1em);
}

#top-greeting > div:last-of-type > p:not(:last-of-type) {
    margin-bottom: 1em;
}

#top-greeting > div:last-of-type > .name {
    text-align: right;
    font-family: var(--serif-font);
    font-size: 1.25em;
}

#top-greeting > div:last-of-type > .name > span {
    font-size: 0.75em;
    margin-right: 0.5em;
}

@media (max-width: 768px) {
    #top-greeting > div:first-of-type {
        grid-template-columns: 1fr;
    }

    #top-greeting > div:first-of-type > div > .heading {
        align-items: center;
    }

    #top-greeting > div:first-of-type > div > h3 {
        text-align: center;
    }

    #top-greeting > div:first-of-type > figure {
        max-width: 480px;
        width: 66%;
        margin: 0 auto;
    }
}

.heading2 {
    display: flex;
    flex-flow: column;
    font-family: var(--serif-font);
    font-weight: 400;
    font-size: clamp(1.25em, 3vw, 1.75em);
    margin-bottom: 1em;
}

.heading2:before {
    content: attr(data-text);
    display: inline-block;
    font-family: var(--display-font);
    font-size: 0.625em;
    font-weight: 500;
    letter-spacing: 0;
    padding-left: 1.5em;
    background-image: var(--ornament-cross);
    background-size: 1em 1em;
    background-position: center left;
    background-repeat: no-repeat;
    color: var(--color-blue);
}

.heading2:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--color-blue), var(--color-blue-light));
    margin-top: 0.125em;
}

#top-feature-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1em;
    counter-reset: count;
}

#top-feature-list > li {
    background-color: var(--color-blue-pale);
    border: 1px solid var(--color-blue-light);
    border-radius: 0.5em;
    padding: 2em;
}

#top-feature-list > li:before {
    counter-increment: count;
    content: '0'counter(count);
    display: block;
    text-align: center;
    font-family: var(--display-font);
    font-weight: 500;
    font-size: clamp(1.5em, 3vw, 2em);
    color: var(--color-blue);
}

#top-feature-list > li > div {
    font-family: var(--serif-font);
    font-size: clamp(1.125em, 1.5vw, 1.25em);
    text-align: center;
    white-space: nowrap;
    color: var(--color-blue);
    margin-bottom: 1em;
}

@media (max-width: 768px) {
    #top-feature-list {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

#top-plus-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 4em;
}

#top-plus-list > li {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-blue);
    padding: 2em;
    background-color: var(--color-blue-pale);
    font-size: clamp(0.75em, 1.5vw, 1em);
    position: relative;
}

#top-plus-list > li + li:before {
    content: '\2b';
    display: block;
    aspect-ratio: 1 / 1;
    font-family: var(--font-awesome);
    font-weight: 700;
    font-size: 2em;
    color: var(--color-blue);
    position: absolute;
    top: 50%;
    left: -1em;
    transform: translate(-50%, -50%);
}

#top-plus-list > li > div {
    font-family: var(--serif-font);
    font-size: 1.25em;
    color: var(--color-blue);
    text-align: center;
    white-space: nowrap;
}

#top-plus-list > li > p {
    margin-top: 0.5em;
}

@media (max-width: 768px) {
    #top-plus-list {
        grid-template-columns: 1fr;
    }

    #top-plus-list > li {
        font-size: clamp(1em, 1.5vw, 1.25em);
    }

    #top-plus-list > li + li:before {
        top: -1em;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

#top-weekly-style > div > p {
    text-align: center;
    word-break: keep-all;
    line-height: 2;
}

#top-weekly-style-table {
    width: 100%;
    border-top: 1px solid var(--color-blue);
    border-left: 1px solid var(--color-blue);
}

#top-weekly-style-table th {
    border-right: 1px solid var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
    background-color: var(--color-blue-pale);
    padding: 0.5em 1em;
    font-family: var(--serif-font);
    font-weight: 400;
    color: var(--color-blue);
}

#top-weekly-style-table td {
    border-right: 1px solid var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
    background-color: #fff;
    padding: 0.5em 1em;
    text-align: center;
}

@media (max-width: 768px) {
    #top-weekly-style-table {
        width: auto;
        white-space: nowrap;
    }
}
#top-main-activity > div > p {
    text-align: center;
    word-break: keep-all;
    line-height: 2;
}

#top-main-activity-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2em;
}

#top-main-activity-list > li > figure {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #eee;
    border-radius: 0.5em;
    overflow: hidden;
}

#top-main-activity-list > li > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#top-main-activity-list > li > div {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

@media (max-width: 768px) {
    #top-main-activity-list {
        grid-template-columns: 1fr;
        max-width: 320px;
        width: 66%;
    }
}

.schedule-wrap {
    padding: 3em;
    border-radius: clamp(1em, 3vw, 2em);
    background-color: var(--color-blue-light2);
}

.schedule-wrap + .schedule-wrap {
    margin-top: 2em;
}

.schedule-list {
    list-style-type: none;
    font-size: clamp(1em, 2vw, 1.25em);
}

.schedule-list > li {
    display: grid;
    grid-template-columns: 9em auto;
    grid-gap: 1em;
    align-items: center;
    background-color: #fff;
    padding: 1em 2em;
    border-radius: 0.5em;
    font-family: var(--display-font);
    font-weight: 500;
    letter-spacing: 0;
}

.schedule-list > li + li {
    margin-top: 0.5em;
}

.schedule-list > li > span > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    font-size: 0.75em;
    letter-spacing: 0;
    background-color: var(--color-blue);
    color: #fff;
    margin-left: 0.5em;
}

@media(max-width: 768px) {
    .schedule-wrap {
        padding: 1.5em;
    }

    .schedule-wrap + .schedule-wrap {
        margin-top: 1em;
    }
}

#part-banner > div {
    padding-top: unset;
}

.part-banner-list {
	list-style-type: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0.75em;
	font-size: 1em;
}

.part-banner-list > li > a {
	display: flex;
	align-items: center;
	aspect-ratio: 3 / 1;
	border-radius: 0.5em;
	border: 1px solid #ccc;
	padding: 0.75em 2em 0.75em 0.75em;
	background-color: #fff;
	transition: all 0.2s ease;
    position: relative;
}

.part-banner-list > li > a:hover {
	border: 1px solid var(--color-blue);
	background-color: var(--color-blue-pale);
	transition: all 0.2s ease;
}

.part-banner-list > li > a:before {
    content: '';
    display: block;
    width: 1.25em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-image: var(--icon-arrow-white);
    background-size: 33%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-blue);
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    z-index: 1;
}

.part-banner-list > li > a > figure {
	width: 30%;
	aspect-ratio: 1 / 1;
	background-color: #eee;
	border-radius: 0.375em;
	overflow: hidden;
	margin-right: 1em;
}

.part-banner-list > li > a > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.part-banner-list > li > a > div {
	width: calc(70% - 1em);
	font-size: clamp(0.75em, 1.5vw, 1em);
	line-height: 1.5;
}

@media (width < 768px) {
	.part-banner-list {
		grid-template-columns: 1fr;
	}

	.part-banner-list > li > a > div {
		font-size: clamp(0.75em, 3vw, 1em);
		letter-spacing: 0;
	}
}