@charset "UTF-8";
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    color: var(--c-text);
    font-size: 16px;
    background: var(--c-white);
    letter-spacing: 0.1em;
    line-height: 1.6;
}

#container {
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 100;
}

:root {
    --c-bg: #f4f4f4;
    --c-text: #272727;
    --c-textGrey: #989898;
    --c-white: #ffffff;
    --c-grey: #dddddd;
    --c-accent: #ea8a90; /* デフォルト */
    --c-accent-2: #00a5e3; /* 必要ならサブ */
    --c-bubPk: #ffd8e3; /* 必要ならサブ */
    --c-bubBl: #cdedf2; /* 必要ならサブ */
}

/* 2つめ */
[data-theme='accent-2'] {
    --c-accent: #4b714f;
    --c-accent-2: #becbb1; /* 必要ならサブ */
    --c-bg: #f8f0de;
    --c-text: #171717;
}

/* 3つめ */
[data-theme='accent-3'] {
    --c-accent: #145da0;
    --c-accent-2: #b1d4e0; /* 必要ならサブ */
    --c-bg: #ffffff;
    --c-text: #051d40;
}

:root {
    --ff-gothic: system-ui, -apple-system, 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    --ff-mincho: 'Zen Old Mincho', serif;
    --ff-logo-zenkaku: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --ff-logo-gothic: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
    --ff-logo-mincho: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
}

.font-body-gothic {
    font-family: var(--ff-gothic);
}

.font-body-mincho {
    font-family: var(--ff-mincho);
}

.header__logo a,
.footer-info__logo a {
    font-family: var(--ff-logo);
}

.font-logo-zenkaku {
    --ff-logo: var(--ff-logo-zenkaku);
}

.font-logo-gothic {
    --ff-logo: var(--ff-logo-gothic);
}

.font-logo-mincho {
    --ff-logo: var(--ff-logo-mincho);
}

.inner {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.inner-tab {
    width: 100%;
}
@media screen and (min-width: 900px) {
    .inner-tab {
        width: 90%;
        max-width: 1180px;
        margin: 0 auto;
    }
}

.inner-pc {
    width: 100%;
}
@media screen and (min-width: 1200px) {
    .inner-pc {
        width: 90%;
        max-width: 1180px;
        margin: 0 auto;
    }
}

.inner-side {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}
@media screen and (min-width: 900px) {
    .inner-side {
        width: 100%;
    }
}

.entry.inner {
    max-width: 850px;
}

.is-pc {
    display: none;
}
@media screen and (min-width: 1200px) {
    .is-pc {
        display: block;
    }
}

@media screen and (min-width: 1200px) {
    .is-sp {
        display: none;
    }
}

.page-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
}
@media screen and (min-width: 900px) {
    .page-layout {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media screen and (min-width: 900px) {
    .page-layout.front {
        padding-top: 50px;
    }
}

.sns-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    font-size: 20px;
}
.sns-nav__item a {
    display: inline-block;
    padding: 7px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}
.sns-nav__item a:hover {
    color: var(--c-accent);
}

.scale:hover .scale__thumb img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.scale__thumb {
    overflow: hidden;
}
.scale__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
    transition:
        transform 0.8s ease,
        -webkit-transform 0.8s ease;
}

.common-button {
    display: inline-block;
    background-color: var(--c-accent);
    color: var(--c-white);
    height: 40px;
    line-height: 40px;
    min-width: 140px;
    padding: 0 15px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.common-button:hover {
    opacity: 0.8;
}
@media screen and (min-width: 900px) {
    .common-button {
        font-size: 18px;
        height: 60px;
        line-height: 60px;
        min-width: 230px;
    }
}

.meta {
    line-height: 1.4;
}
.meta time {
    display: inline;
    padding-right: 4px;
}
.meta__category {
    padding-left: 4px;
    display: inline;
    position: relative;
}
.meta__category::after {
    content: '|';
    position: absolute;
    left: -4px;
    top: -2px;
}

.header__bar {
    position: fixed;
    inset: 0;
    width: 100%;
    z-index: 101;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 1px 3px rgba(221, 221, 221, 0.8);
    box-shadow: 0 1px 3px rgba(221, 221, 221, 0.8);
}
@media screen and (min-width: 1200px) {
    .header__content {
        padding-top: 64px;
        background: var(--c-bg);
    }
}
.header__inner {
    position: relative;
}
.header__sns {
    position: absolute;
    top: 0;
    left: 0;
    height: 64px;
}
.header__logo {
    text-align: center;
}
.header__logo a {
    font-family: var(--ff-logo);
    font-size: 40px;
    font-weight: var(--logo-weight, 500);
}
.header__logo a img {
    height: 40px;
    width: auto;
    max-width: 80%;
    -o-object-fit: contain;
    object-fit: contain;
}
.header .global-nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
    .header .global-nav > ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
.header .global-nav > ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header .global-nav > ul > li {
    padding: 0 17.5px;
    line-height: 64px;
}
.header .global-nav > ul > li > a {
    position: relative;
    display: inline-block;
}
.header .global-nav > ul > li > a::after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    display: inline-block;
    height: 5px;
    width: 0px;
    background: var(--c-accent);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.header .global-nav > ul > li > a:hover::after {
    width: 100%;
}
.header .global-nav .sub-menu {
    opacity: 0;
    visibility: hidden;
    -webkit-transition:
        opacity 0.3s ease,
        -webkit-transform 0.3s ease;
    transition:
        opacity 0.3s ease,
        -webkit-transform 0.3s ease;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        -webkit-transform 0.3s ease;
    position: absolute;
    width: 100vw;
    margin: 0 auto;
    top: 64px;
    left: 50%;
    -webkit-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 6px 100px;
    background-color: var(--c-white);
}
.header .global-nav .sub-menu li {
    width: 33.33333%;
    aspect-ratio: 16/10;
    padding: 6px;
}
.header .global-nav .sub-menu li a {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
    transition:
        transform 0.8s ease,
        -webkit-transform 0.8s ease;
    position: relative;
}
.header .global-nav .sub-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 50%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 70%);
}
.header .global-nav .sub-menu li a:hover .menu-bg {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.header .global-nav .sub-menu li a .menu-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    max-width: 100%;
    width: 100%;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition:
        transform 0.5s ease,
        -webkit-transform 0.5s ease;
}
.header .global-nav .sub-menu li a .menu-label {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
}
.header .global-nav > ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.header__search {
    position: absolute;
    top: 0;
    right: 0;
}
@media screen and (min-width: 1200px) {
    .header__search {
        display: block;
    }
}
.header__content .header__inner {
    padding: 30px 0;
}
.header__content .header__logo {
    margin-bottom: 20px;
}
.header__content .header__logo a {
    font-size: 68px;
}
.header__content .header__logo a img {
    height: 80px;
    max-width: 80%;
}
.header__content .header__disc {
    text-align: center;
}

.footer {
    background: var(--c-white);
}
.footer .footer-widget__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (min-width: 1200px) {
    .footer .footer-widget__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 50px;
    }
}
.footer .footer-widget__left,
.footer .footer-widget__center,
.footer .footer-widget__right {
    padding: 30px 0;
    width: 100%;
}
@media screen and (min-width: 1200px) {
    .footer .footer-widget__left,
    .footer .footer-widget__center,
    .footer .footer-widget__right {
        width: calc((100% - 100px) / 3);
        padding: 50px 0;
    }
}
.footer .footer-info__logo {
    text-align: center;
}
.footer .footer-info__logo a {
    font-family: var(--ff-logo);
    font-size: 40px;
    font-weight: var(--logo-weight, 500);
}
.footer .footer-info__logo a img {
    height: 40px;
    width: auto;
    max-width: 80%;
    -o-object-fit: contain;
    object-fit: contain;
}
@media screen and (min-width: 1200px) {
    .footer .footer-info__logo {
        margin-bottom: 20px;
    }
    .footer .footer-info__logo a {
        font-size: 57px;
    }
    .footer .footer-info__logo a img {
        height: 80px;
        max-width: 80%;
    }
}
.footer .footer-info__disc {
    text-align: center;
}
.footer .footer-info__sns .sns-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.footer .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer .footer-nav ul li a {
    display: inline-block;
    padding: 10px 0;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}
.footer .footer-nav ul li a:hover {
    color: var(--c-accent);
}
.footer .footer-nav__right,
.footer .footer-nav__left {
    width: 50%;
}
.footer .footer-nav__left {
    padding-right: 10px;
}
.footer .footer-nav__title {
    color: var(--c-accent);
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.2rem;
    margin-bottom: 18px;
}
@media screen and (min-width: 1200px) {
    .footer .footer-nav__title {
        font-size: 18px;
    }
}
.footer .footer-archive__item {
    margin-bottom: 17px;
    height: 120px;
    width: 100%;
    background-color: var(--c-white);
}
.footer .footer-archive__item:last-child {
    margin-bottom: 0;
}
.footer .footer-archive__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer .footer-archive__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.footer .footer-archive__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.footer .footer-archive__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    position: relative;
}
.footer .footer-archive__title {
    font-size: 14px;
    color: var(--c-textGrey);
    padding: 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.footer__copyright {
    font-size: 10px;
    height: 50px;
    line-height: 50px;
    border-top: 1px solid var(--c-grey);
}
@media screen and (min-width: 900px) {
    .footer__copyright {
        font-size: 13px;
    }
}
.footer__inner {
    text-align: center;
}

.footer-subscribe {
    margin-top: 20px;
}
.footer-subscribe__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--c-grey);
    border-radius: 9999px;
    background: var(--c-white);
    font-size: 14px;
    line-height: 1;
    -webkit-transition:
        background-color 0.2s ease,
        -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.2s ease;
    transition:
        background-color 0.2s ease,
        -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.2s ease;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.2s ease;
    text-decoration: none;
}
.footer-subscribe__btn:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    background-color: #fafafa;
}
.footer-subscribe__icon {
    display: inline-block;
}
.footer-subscribe__note {
    margin-top: 8px;
    font-size: 12px;
    color: var(--c-textGrey);
}

.sidebar {
    width: 100%;
    margin-bottom: 50px;
}
@media screen and (min-width: 900px) {
    .sidebar {
        width: 300px;
    }
}

.contents {
    background: var(--c-white);
}
@media screen and (min-width: 900px) {
    .contents {
        background: var(--c-bg);
        padding-bottom: 50px;
    }
}

.page-contents {
    padding-top: 64px;
    margin-top: 0;
}
@media screen and (min-width: 1200px) {
    .page-contents {
        padding-top: 0;
    }
}
@media screen and (min-width: 900px) {
    .page-contents__inner {
        padding: 50px 0;
    }
}
@media screen and (min-width: 1200px) {
    .page-contents__inner {
        padding: 0 0 50px;
    }
}

.main {
    width: 100%;
}

.primary {
    width: 100%;
}
@media screen and (min-width: 900px) {
    .primary {
        width: calc(100% - 300px - 50px);
    }
}

.category-lists {
    width: 90%;
    max-width: 1180px;
    margin: 50px auto 0;
}
@media screen and (min-width: 900px) {
    .category-lists {
        width: calc(100% - 300px - 50px);
        margin: 0 auto;
    }
}

.page-main {
    padding: 0 0 80px;
}

.searchResult {
    margin-top: 50px;
}
.searchResult__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-grey);
    line-height: 1.2;
}
.searchResult__title {
    font-size: 30px;
    font-weight: bold;
}
.searchResult__total {
    font-size: 23px;
    margin-left: 30px;
}

.searchResult-card a {
    display: block;
    padding: 40px 0;
}
.searchResult-card__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.searchResult-card__thumb {
    aspect-ratio: 1/1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
}
.searchResult-card__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.searchResult-card__body {
    padding: 20px 0 0 0;
}
@media screen and (min-width: 600px) {
    .searchResult-card__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
        padding: 20px 0 20px 20px;
    }
}
.searchResult-card__title {
    margin-top: 4px;
    font-size: 30px;
    font-weight: 700;
    color: #00a5e3;
}
.searchResult-card__text {
    color: var(--c-textGrey);
    margin-top: 16px;
}

.notFound {
    padding: 50px 0;
}
.notFound__title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
    .notFound__title {
        font-size: 22px;
    }
}

.author {
    margin: 30px auto 0;
    max-width: 400px;
    width: 100%;
}
.author__user {
    text-align: center;
}
.author__icon {
    margin: 0 auto;
    width: 150px;
    height: 150px;
}
.author__icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.author__name {
    font-size: 21px;
    font-weight: bold;
    margin-top: 7px;
}
.author__body {
    margin-top: 14px;
}
.author__text {
    font-size: 14px;
}
.author__sns {
    margin-top: 12px;
}
.author__sns .sns-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blog-lists {
    margin-top: 30px;
}
.blog-lists > .blog-lists__item:last-child .blog-card {
    border-bottom-width: 1px;
}

.blog-card {
    background: var(--c-white);
    border-color: var(--c-grey);
    border-style: solid;
    border-width: 1px 1px 0 1px;
    position: relative;
}
.blog-card__link {
    display: block;
    padding: 20px;
}
@media screen and (min-width: 600px) {
    .blog-card__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }
}
.blog-card__thumb {
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
}
.blog-card__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
@media screen and (min-width: 600px) {
    .blog-card__thumb {
        aspect-ratio: 1/1;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
    }
}
.blog-card__body {
    padding: 20px 0 0 0;
}
@media screen and (min-width: 600px) {
    .blog-card__body {
        padding: 0;
        margin-top: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}
.blog-card__date {
    margin-bottom: 10px;
}
.blog-card__date time {
    color: var(--c-accent);
}
.blog-card__title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-size: 20px;
}
.blog-card__text {
    color: var(--c-textGrey);
    margin-top: 16px;
}

.breadcrumb {
    font-size: 12px;
    height: 50px;
    line-height: 50px;
}

#toc_container {
    background: #fff;
    border: 1px solid var(--c-accent);
    margin: 64px auto 0;
    padding: 20px;
    width: 90%;
}
#toc_container span.toc_toggle {
    font-weight: 400;
    font-size: 90%;
}
#toc_container .toc_title {
    border-bottom: 1px solid var(--c-accent);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 0;
    padding-bottom: 6px;
    text-align: center;
}
#toc_container ul a {
    color: var(--c-text);
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding-left: 10px;
}
#toc_container ul a:hover {
    opacity: 0.6;
}
#toc_container ul a:hover::after {
    width: 0;
}
#toc_container > ul > li {
    counter-increment: toc;
    margin-top: 0;
}
#toc_container > ul > li:not(:last-child) {
    margin-bottom: 20px;
}
#toc_container > ul > li > a {
    padding-left: 40px;
    font-size: 20px;
}
#toc_container > ul > li > a::before {
    content: counter(toc);
    height: 28px;
    line-height: 28px;
    min-width: 28px;
    padding-left: 2px;
    font-size: 16px;
    font-weight: bold;
    background: var(--c-accent);
    border-radius: 50%;
    color: var(--c-white);
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#toc_container > ul > li > ul {
    margin-left: 40px;
}
#toc_container > ul > li > ul > li a {
    padding: 5px 16px;
}
#toc_container > ul > li > ul > li a::before {
    content: '';
    height: 5px;
    width: 5px;
    min-width: initial;
    background: var(--c-accent);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.child-page-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: calc(-80px + 5.4%) auto 0;
    max-width: 960px;
    width: 90%;
}
@media screen and (min-width: 900px) {
    .child-page-cards {
        width: 100%;
    }
}
.child-page-cards__item {
    margin: 80px 0 113px;
    width: 100%;
    position: relative;
}
@media screen and (min-width: 600px) {
    .child-page-cards__item {
        width: 48.4375%;
    }
}
.child-page-cards__thumb img {
    height: 252px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.child-page-cards__body {
    position: absolute;
    right: 4.55%;
    bottom: -112px;
    padding: 13.5px 22px;
    width: 80%;
    text-align: left;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.child-page-cards__title {
    font-size: 1.5rem;
}
.child-page-cards__excerpt {
    margin: 10px 0 20px;
}
.child-page-cards__btn {
    text-align: right;
}
.child-page-cards__moreBtn {
    padding-right: 74px;
    font-size: 1.4rem;
    font-family: 'Vollkorn', serif;
    position: relative;
}
.child-page-cards__moreBtn::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 60px;
    height: 6px;
    background-image: url(../images/icon-next.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.entry {
    background: var(--c-white);
    border-color: var(--c-grey);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
}
.entry.page {
    padding-bottom: 30px;
}
.entry__body h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    border-bottom: 3px solid var(--c-text);
    margin: 30px 0 20px;
    padding: 0 0 0.6em;
}
@media screen and (min-width: 900px) {
    .entry__body h2 {
        font-size: 28px;
        margin: 30px 0 40px;
    }
}
.entry__body h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
    .entry__body h3 {
        font-size: 22px;
    }
}
.entry__body h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 30px 0 20px;
    padding-left: 0.8em;
    border-left: 3px solid var(--c-text);
}
@media screen and (min-width: 900px) {
    .entry__body h4 {
        font-size: 20px;
    }
}
.entry__body h5 {
    font-size: 16px;
    font-weight: bold;
    margin: 30px 0 20px;
}
@media screen and (min-width: 900px) {
    .entry__body h5 {
        font-size: 18px;
    }
}
.entry__body p {
    margin-bottom: 2em;
}
.entry__body p.well {
    margin: 1em 0 30px;
    padding: 1em 1.5em;
    line-height: 2;
    border: 1px solid var(--c-grey);
    background: var(--c-bg);
    -webkit-box-shadow: 0 1px 3px 0 rgba(195, 195, 195, 0.3);
    box-shadow: 0 1px 3px 0 rgba(195, 195, 195, 0.3);
    line-height: 1.8;
}
.entry__body a {
    display: inline-block;
    color: var(--c-accent);
    position: relative;
}
.entry__body a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--c-accent);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.entry__body a:hover::after {
    width: 100%;
}
.entry__body ul {
    padding: 0 1em 0 2.3em;
    margin-bottom: 2rem;
}
.entry__body ul li {
    position: relative;
    padding-left: 1.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.entry__body ul li::before {
    position: absolute;
    content: '';
    width: 14px;
    height: 6px;
    top: calc(50% - 3px);
    left: 0;
    border-left: 2px solid var(--c-accent);
    border-bottom: 2px solid var(--c-accent);
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
    color: var(--c-accent);
}
.entry__body .wp-block-pullquote {
    padding: 1em 0;
    font-size: 1em;
}
.entry__body blockquote {
    position: relative;
    padding: 10px 15px 10px 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: dotted 1px var(--c-text);
    color: var(--c-text);
}
.entry__body blockquote::before {
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 15px;
    content: '\f10d';
    font-family: FontAwesome;
    color: var(--c-accent);
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
}
.entry__body blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.6;
}
.entry__body blockquote cite {
    display: block;
    text-align: right;
    color: var(--c-textGrey);
    font-size: 0.9em;
}
.entry__body .bubble {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
}
.entry__body .bubble__user {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
}
.entry__body .bubble__icon {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    background: var(--c-grey); /* 画像未設定のときのプレースホルダ色 */
}
.entry__body .bubble__name {
    font-size: 12px;
    line-height: 1;
    margin-top: 8px;
    text-align: center;
}
.entry__body .bubble--pink .bubble__text {
    background-color: var(--c-bubPk);
    border-color: var(--c-bubPk);
}
.entry__body .bubble--pink .bubble__text::before {
    border-right: 10px solid var(--c-bubPk);
}
.entry__body .bubble--blue .bubble__text {
    background-color: var(--c-bubBl);
    border-color: var(--c-bubBl);
}
.entry__body .bubble--blue .bubble__text::before {
    border-left: 10px solid var(--c-bubBl);
}
.entry__body .bubble--left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.entry__body .bubble--left .bubble__text::before {
    right: 100%;
    border-left: 0;
}
.entry__body .bubble--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.entry__body .bubble--right .bubble__text::before {
    left: 100%;
    border-right: 0;
}
.entry__body .bubble__text {
    border-radius: 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    line-height: 2;
    margin-bottom: 3em;
    min-height: 80px;
    padding: 20px 24px;
    position: relative;
}
.entry__body .bubble__text::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-top: -10px;
    position: absolute;
    top: 40px;
}
.entry__header {
    width: 100%;
    height: 330px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
@media screen and (min-width: 900px) {
    .entry__header {
        aspect-ratio: 16/9;
        overflow: hidden;
        height: auto;
    }
}
.entry__header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.entry__header img {
    width: 100%;
    height: 330px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
@media screen and (min-width: 900px) {
    .entry__header img {
        height: auto;
    }
}
.entry__info {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    color: var(--c-white);
    width: 100%;
    padding: 20px 10px;
    text-align: left;
}
@media screen and (min-width: 900px) {
    .entry__info {
        padding: 20px;
    }
}
.entry__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}
@media screen and (min-width: 900px) {
    .entry__title {
        font-size: 20px;
    }
}
@media screen and (min-width: 900px) {
    .entry__title {
        font-size: 30px;
    }
}
.entry__meta {
    font-size: 10px;
}
@media screen and (min-width: 900px) {
    .entry__meta {
        font-size: 16px;
    }
}
@media screen and (min-width: 1200px) {
    .entry__meta {
        font-size: 20px;
    }
}
.entry__body {
    padding: 30px 0;
    font-size: 14px;
}
.entry__btn {
    margin: 30px 0 20px;
    text-align: center;
}
.entry__btn .page-button {
    color: var(--c-white);
    background: var(--c-textGrey);
    display: inline-block;
    font-size: 100%;
    font-weight: bold;
    max-width: 90%;
    min-width: 200px;
    padding: 0.6em 1.3em 0.5em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    vertical-align: middle;
}
.entry__more {
    padding: 40px 0;
}

.form {
    text-align: center;
}
.form a {
    text-decoration: underline;
}
.form a:hover {
    opacity: 0.8;
}
.form__lead {
    margin-top: 5%;
}
.form__lead strong {
    font-weight: bold;
}
.form__inner {
    margin: 80px auto 0;
    padding: 0 0 120px;
    max-width: 720px;
}
.form__form {
    margin: auto;
}
.form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    border-top: 1px solid var(--c-grey);
    padding: 24px 20px;
}
.form__row:last-child {
    border-bottom: 1px solid var(--c-grey);
}
@media screen and (min-width: 600px) {
    .form__row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
.form__row--agree {
    display: block;
}
.form__row.is-required .form__label {
    position: relative;
}
.form__row.is-required .form__label::after {
    content: '＊';
    position: absolute;
    top: 0;
    left: -18px;
    color: var(--c-accent);
    line-height: 1;
}
.form__row--agree .form__check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.form__label {
    padding: 6px 0;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
}
@media screen and (min-width: 600px) {
    .form__label {
        width: 30%;
    }
}
@media screen and (min-width: 900px) {
    .form__label {
        width: 25%;
    }
}
.form__field {
    width: 100%;
    color: var(--c-grey);
    position: relative;
}
@media screen and (min-width: 600px) {
    .form__field {
        width: 70%;
    }
}
@media screen and (min-width: 900px) {
    .form__field {
        width: 75%;
    }
}
.form__field input {
    width: 100%;
}
.form__field textarea {
    resize: none;
    padding: 9px 12px;
    width: 100%;
    height: 243px;
}
.form__field input,
.form__field textarea {
    color: var(--c-textGrey);
    border: 2px solid #aaa;
    padding: 0.5em 1em;
    border-radius: 6px;
    line-height: 1.6;
    font-size: 18px;
}
.form__field input:focus,
.form__field textarea:focus {
    outline: none;
    color: var(--c-text);
    border: 2px solid var(--c-accent);
    -webkit-box-shadow: 0 0 8px 0 var(--c-accent);
    box-shadow: 0 0 8px 0 var(--c-accent);
}
.form__field .input-error {
    display: none;
    position: absolute;
    bottom: -30px;
    left: 0;
    color: var(--c-accent);
}
.form__field .input-error.wpcf7-not-valid-tip {
    display: block;
}
.form__field .wpcf7-not-valid-tip {
    color: var(--c-accent);
}
.form__actions,
.form .action-box {
    margin-top: 7%;
}
.form__check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.form__check input[type='checkbox'] {
    width: 18px;
    height: 18px;
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    accent-color: var(--c-accent);
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form__btn,
.form .wpcf7-submit,
.form .button {
    margin-top: 24px;
    padding: 0.8em;
    min-width: 160px;
    font-size: 16px;
    border-radius: 6px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    letter-spacing: 0.05em;
    background: var(--c-accent);
    color: var(--c-white);
    font-weight: bold;
}
@media screen and (min-width: 600px) {
    .form__btn,
    .form .wpcf7-submit,
    .form .button {
        margin-top: 32px;
        min-width: 280px;
        font-size: 20px;
    }
}
.form__btn[disabled] {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}
.form__note {
    margin-top: 4%;
}
.form__note small {
    line-height: 2.4;
    letter-spacing: 0.2em;
}
.form__error {
    margin-top: 8px;
    font-size: 0.875rem;
}

.form--cf7 .wpcf7 {
    width: 100%;
}
.form--cf7 .wpcf7 form label:has(input[type='text']),
.form--cf7 .wpcf7 form label:has(input[type='email']),
.form--cf7 .wpcf7 form label:has(input[type='tel']),
.form--cf7 .wpcf7 form label:has(input[type='file']),
.form--cf7 .wpcf7 form label:has(select),
.form--cf7 .wpcf7 form label:has(textarea),
.form--cf7 .cf7-group {
    width: 100%;
    text-align: left;
    border-top: 1px solid var(--c-grey);
    padding: 24px 20px;
    display: block;
    position: relative;
}
@media screen and (min-width: 600px) {
    .form--cf7 .wpcf7 form label:has(input[type='text']),
    .form--cf7 .wpcf7 form label:has(input[type='email']),
    .form--cf7 .wpcf7 form label:has(input[type='tel']),
    .form--cf7 .wpcf7 form label:has(input[type='file']),
    .form--cf7 .wpcf7 form label:has(select),
    .form--cf7 .wpcf7 form label:has(textarea),
    .form--cf7 .cf7-group {
        display: grid;
        grid-template-columns: 30% calc(70% - 10px);
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}
@media screen and (min-width: 900px) {
    .form--cf7 .wpcf7 form label:has(input[type='text']),
    .form--cf7 .wpcf7 form label:has(input[type='email']),
    .form--cf7 .wpcf7 form label:has(input[type='tel']),
    .form--cf7 .wpcf7 form label:has(input[type='file']),
    .form--cf7 .wpcf7 form label:has(select),
    .form--cf7 .wpcf7 form label:has(textarea),
    .form--cf7 .cf7-group {
        grid-template-columns: 25% calc(75% - 10px);
    }
}
.form--cf7 .wpcf7 form label:has(input[type='text']) > .wpcf7-form-control-wrap,
.form--cf7 .wpcf7 form label:has(input[type='email']) > .wpcf7-form-control-wrap,
.form--cf7 .wpcf7 form label:has(input[type='tel']) > .wpcf7-form-control-wrap,
.form--cf7 .wpcf7 form label:has(input[type='file']) > .wpcf7-form-control-wrap,
.form--cf7 .wpcf7 form label:has(select) > .wpcf7-form-control-wrap,
.form--cf7 .wpcf7 form label:has(textarea) > .wpcf7-form-control-wrap,
.form--cf7 .cf7-group .wpcf7-form-control-wrap {
    width: 100%;
    position: relative;
}
@media screen and (min-width: 600px) {
    .form--cf7 .wpcf7 form label:has(input[type='text']) > .wpcf7-form-control-wrap,
    .form--cf7 .wpcf7 form label:has(input[type='email']) > .wpcf7-form-control-wrap,
    .form--cf7 .wpcf7 form label:has(input[type='tel']) > .wpcf7-form-control-wrap,
    .form--cf7 .wpcf7 form label:has(input[type='file']) > .wpcf7-form-control-wrap,
    .form--cf7 .wpcf7 form label:has(select) > .wpcf7-form-control-wrap,
    .form--cf7 .wpcf7 form label:has(textarea) > .wpcf7-form-control-wrap,
    .form--cf7 .cf7-group .wpcf7-form-control-wrap {
        grid-column: 2;
    }
}
.form--cf7 .cf7-group__label {
    position: relative;
    display: inline-block;
}
@media screen and (min-width: 600px) {
    .form--cf7 .cf7-group__label {
        grid-column: 1;
        align-self: start;
    }
}
.form--cf7 .wpcf7 input[type='text'],
.form--cf7 .wpcf7 input[type='email'],
.form--cf7 .wpcf7 input[type='tel'],
.form--cf7 .wpcf7 input[type='file'],
.form--cf7 .wpcf7 select,
.form--cf7 .wpcf7 textarea {
    width: 100%;
    color: var(--c-textGrey);
    border: 2px solid #aaa;
    padding: 0.5em 1em;
    border-radius: 6px;
    line-height: 1.6;
    font-size: 18px;
    background: var(--c-white);
}
.form--cf7 .wpcf7 input[type='text']:focus,
.form--cf7 .wpcf7 input[type='email']:focus,
.form--cf7 .wpcf7 input[type='tel']:focus,
.form--cf7 .wpcf7 input[type='file']:focus,
.form--cf7 .wpcf7 select:focus,
.form--cf7 .wpcf7 textarea:focus {
    outline: none;
    color: var(--c-text);
    border: 2px solid var(--c-accent);
    -webkit-box-shadow: 0 0 8px 0 var(--c-accent);
    box-shadow: 0 0 8px 0 var(--c-accent);
}
.form--cf7 .wpcf7 textarea {
    resize: none;
    padding: 9px 12px;
    height: 243px;
}
.form--cf7 .wpcf7 select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.form--cf7 .wpcf7 form label:has(input[required]),
.form--cf7 .wpcf7 form label:has(textarea[required]),
.form--cf7 .wpcf7 form label:has(select[required]),
.form--cf7 .wpcf7 form label:has(input[aria-required='true']),
.form--cf7 .wpcf7 form label:has(textarea[aria-required='true']),
.form--cf7 .wpcf7 form label:has(select[aria-required='true']) {
    position: relative;
}
.form--cf7 .wpcf7 form label:has(input[required])::after,
.form--cf7 .wpcf7 form label:has(textarea[required])::after,
.form--cf7 .wpcf7 form label:has(select[required])::after,
.form--cf7 .wpcf7 form label:has(input[aria-required='true'])::after,
.form--cf7 .wpcf7 form label:has(textarea[aria-required='true'])::after,
.form--cf7 .wpcf7 form label:has(select[aria-required='true'])::after {
    content: '＊';
    position: absolute;
    top: 18px;
    left: 0;
    color: var(--c-accent);
    line-height: 1;
}
.form--cf7 .cf7-group.is-required {
    position: relative;
}
.form--cf7 .cf7-group.is-required::after {
    content: '＊';
    position: absolute;
    top: 18px;
    left: 0;
    color: var(--c-accent);
    line-height: 1;
}
.form--cf7 .wpcf7 .wpcf7-list-item {
    display: block;
    margin: 0 0 12px 0;
}
.form--cf7 .wpcf7 .wpcf7-list-item:last-child {
    margin-bottom: 0;
}
.form--cf7 .wpcf7 .wpcf7-list-item label,
.form--cf7 .wpcf7 .wpcf7-acceptance label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0;
    cursor: pointer;
    text-align: left;
}
.form--cf7 .wpcf7 input[type='checkbox'],
.form--cf7 .wpcf7 input[type='radio'] {
    width: 18px;
    height: 18px;
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    accent-color: var(--c-accent);
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form--cf7 .wpcf7 .wpcf7-list-item-label {
    color: var(--c-text);
    line-height: 1.6;
}
.form--cf7 .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}
.form--cf7 .wpcf7 .wpcf7-quiz-label {
    display: block;
    margin-bottom: 10px;
    font-weight: normal;
    color: var(--c-text);
    line-height: 1.6;
}
.form--cf7 .wpcf7 .wpcf7-not-valid {
    border-color: var(--c-accent);
}
.form--cf7 .wpcf7-not-valid-tip {
    color: var(--c-accent);
    display: block;
    margin-top: 6px;
    font-size: 14px;
}
.form--cf7 .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 12px 14px;
    border-radius: 6px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
}
.form--cf7 .wpcf7-submit {
    border: none;
    cursor: pointer;
}
.form--cf7 .wpcf7-spinner {
    margin: 12px 0 0;
}

.grid {
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-items: stretch;
}
.grid > .grid-card:only-child {
    max-width: 320px; /* 好みで 300〜360px */
}

.grid-card {
    width: 100%;
    outline: 1px solid var(--c-grey);
    padding: 14px;
    background: var(--c-white);
}
.grid-card__link {
    display: block;
}
.grid-card__link:hover .grid-card__title {
    opacity: 0.5;
}
.grid-card__thumb {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.grid-card__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.grid-card__info {
    margin-top: 23px;
}
.grid-card__meta {
    font-size: 12px;
    color: var(--c-accent);
}
.grid-card__title {
    margin-top: 8px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}
.grid-card__lead {
    margin-top: 8px;
    color: var(--c-textGrey);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 64px;
    width: 300px;
    height: calc(100dvh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu__item {
    display: block;
    padding: 0 40px;
    -webkit-transform: translate3d(0, 0, -1000px);
    transform: translate3d(0, 0, -1000px);
    -webkit-transition:
        opacity 0.2s,
        -webkit-transform 0.3s;
    transition:
        opacity 0.2s,
        -webkit-transform 0.3s;
    transition:
        transform 0.3s,
        opacity 0.2s;
    transition:
        transform 0.3s,
        opacity 0.2s,
        -webkit-transform 0.3s;
    opacity: 0;
}
.mobile-menu__nav {
    margin-top: 20px;
}
.mobile-menu__nav ul {
    -webkit-perspective: 2000px;
    perspective: 2000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.mobile-menu__nav ul li {
    display: block;
    padding: 0 40px;
    -webkit-transform: translate3d(0, 0, -1000px);
    transform: translate3d(0, 0, -1000px);
    -webkit-transition:
        opacity 0.2s,
        -webkit-transform 0.3s;
    transition:
        opacity 0.2s,
        -webkit-transform 0.3s;
    transition:
        transform 0.3s,
        opacity 0.2s;
    transition:
        transform 0.3s,
        opacity 0.2s,
        -webkit-transform 0.3s;
    opacity: 0;
}
.mobile-menu__nav ul li a {
    display: block;
    padding: 15px 0;
}
.mobile-menu__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    -webkit-transition:
        opacity 1s,
        visibility 1s;
    transition:
        opacity 1s,
        visibility 1s;
    cursor: pointer;
}
.mobile-menu__btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 64px;
    padding: 0 20px;
    text-align: center;
    background-color: unset;
    border: none;
    outline: none !important;
    cursor: pointer;
}
@media screen and (min-width: 1200px) {
    .mobile-menu__btn {
        display: none;
    }
}
.mobile-menu__btn > span {
    background-color: var(--c-text);
    width: 20px;
    height: 3px;
    display: block;
    margin-bottom: 4px;
    -webkit-transition: -webkit-transform 0.7s;
    transition: -webkit-transform 0.7s;
    transition: transform 0.7s;
    transition:
        transform 0.7s,
        -webkit-transform 0.7s;
}
.mobile-menu__btn > span:last-child {
    margin-bottom: 0;
}
.mobile-menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 1s;
    transition: all 1s;
    pointer-events: none;
}
.mobile-menu .sub-menu .mobile-menu__item {
    padding: 0 10px;
}
.mobile-menu .sub-menu.menu-open {
    max-height: 500px;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
}

.sub-menu-open .mobile-menu__cover {
    opacity: 1;
    visibility: visible;
}

.menu-open #container {
    -webkit-transform: translate(-300px, 60px);
    transform: translate(-300px, 60px);
}
.menu-open .mobile-menu__cover {
    opacity: 1;
    visibility: visible;
}
.menu-open .mobile-menu ul li {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
}
.menu-open .mobile-menu ul li:nth-child(1) {
    -webkit-transition-delay: 0.07s;
    transition-delay: 0.07s;
}
.menu-open .mobile-menu ul li:nth-child(2) {
    -webkit-transition-delay: 0.14s;
    transition-delay: 0.14s;
}
.menu-open .mobile-menu ul li:nth-child(3) {
    -webkit-transition-delay: 0.21s;
    transition-delay: 0.21s;
}
.menu-open .mobile-menu ul li:nth-child(4) {
    -webkit-transition-delay: 0.28s;
    transition-delay: 0.28s;
}
.menu-open .mobile-menu ul li:nth-child(5) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}
.menu-open .mobile-menu ul li:nth-child(6) {
    -webkit-transition-delay: 0.42s;
    transition-delay: 0.42s;
}
.menu-open .mobile-menu ul li:nth-child(7) {
    -webkit-transition-delay: 0.49s;
    transition-delay: 0.49s;
}
.menu-open .mobile-menu ul li:nth-child(8) {
    -webkit-transition-delay: 0.56s;
    transition-delay: 0.56s;
}
.menu-open .mobile-menu ul li:nth-child(9) {
    -webkit-transition-delay: 0.63s;
    transition-delay: 0.63s;
}
.menu-open .mobile-menu ul li:nth-child(10) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.menu-open .mobile-menu ul li:nth-child(11) {
    -webkit-transition-delay: 0.77s;
    transition-delay: 0.77s;
}
.menu-open .mobile-menu ul li:nth-child(12) {
    -webkit-transition-delay: 0.84s;
    transition-delay: 0.84s;
}
.menu-open .mobile-menu ul li:nth-child(13) {
    -webkit-transition-delay: 0.91s;
    transition-delay: 0.91s;
}
.menu-open .mobile-menu ul li:nth-child(14) {
    -webkit-transition-delay: 0.98s;
    transition-delay: 0.98s;
}
.menu-open .mobile-menu ul li:nth-child(15) {
    -webkit-transition-delay: 1.05s;
    transition-delay: 1.05s;
}
.menu-open .mobile-menu ul li:nth-child(16) {
    -webkit-transition-delay: 1.12s;
    transition-delay: 1.12s;
}
.menu-open .mobile-menu ul li:nth-child(17) {
    -webkit-transition-delay: 1.19s;
    transition-delay: 1.19s;
}
.menu-open .mobile-menu ul li:nth-child(18) {
    -webkit-transition-delay: 1.26s;
    transition-delay: 1.26s;
}
.menu-open .mobile-menu ul li:nth-child(19) {
    -webkit-transition-delay: 1.33s;
    transition-delay: 1.33s;
}
.menu-open .mobile-menu ul li:nth-child(20) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}
.menu-open .mobile-menu ul li:nth-child(21) {
    -webkit-transition-delay: 1.47s;
    transition-delay: 1.47s;
}
.menu-open .mobile-menu ul li:nth-child(22) {
    -webkit-transition-delay: 1.54s;
    transition-delay: 1.54s;
}
.menu-open .mobile-menu ul li:nth-child(23) {
    -webkit-transition-delay: 1.61s;
    transition-delay: 1.61s;
}
.menu-open .mobile-menu ul li:nth-child(24) {
    -webkit-transition-delay: 1.68s;
    transition-delay: 1.68s;
}
.menu-open .mobile-menu ul li:nth-child(25) {
    -webkit-transition-delay: 1.75s;
    transition-delay: 1.75s;
}
.menu-open .mobile-menu ul li:nth-child(26) {
    -webkit-transition-delay: 1.82s;
    transition-delay: 1.82s;
}
.menu-open .mobile-menu ul li:nth-child(27) {
    -webkit-transition-delay: 1.89s;
    transition-delay: 1.89s;
}
.menu-open .mobile-menu ul li:nth-child(28) {
    -webkit-transition-delay: 1.96s;
    transition-delay: 1.96s;
}
.menu-open .mobile-menu ul li:nth-child(29) {
    -webkit-transition-delay: 2.03s;
    transition-delay: 2.03s;
}
.menu-open .mobile-menu ul li:nth-child(30) {
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
}
.menu-open .mobile-menu .mobile-menu__item {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
    -webkit-transition-delay: 70ms;
    transition-delay: 70ms;
    -webkit-transform: translateY(7px) rotate(135deg);
    transform: translateY(7px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-18px) scaleX(0);
    transform: translateX(-18px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
    -webkit-transition-delay: 140ms;
    transition-delay: 140ms;
    -webkit-transform: translateY(-7px) rotate(-135deg);
    transform: translateY(-7px) rotate(-135deg);
}

.mv {
    padding-top: 64px;
    display: block;
    overflow: hidden;
    height: 54vh;
    max-height: 500px;
    background: var(--c-bg);
}
@media screen and (min-width: 1200px) {
    .mv {
        padding-top: 0;
    }
}
.mv__inner {
    position: relative;
    z-index: 2;
    height: 100%;
}
.mv__inner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}
.mv__inner::after {
    display: inline-block;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #301a0b;
    opacity: 0.3;
    position: absolute;
    inset: 0;
    z-index: 1;
}
.mv__content {
    color: var(--c-white);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 3;
    padding: 0 20px;
}
.mv__title {
    font-size: 27px;
    text-shadow: 0px 0px 0px #999999;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
}
@media screen and (min-width: 600px) {
    .mv__title {
        font-size: 35px;
    }
}
@media screen and (min-width: 1200px) {
    .mv__title {
        font-size: 40px;
    }
}
.mv__lead {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-shadow: 0px 0px 0px #999999;
}
@media screen and (min-width: 600px) {
    .mv__lead {
        font-size: 16px;
    }
}
.mv__btn {
    margin-top: 14px;
    text-align: center;
}
.mv__notice {
    position: absolute;
    bottom: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--c-white);
    width: 90%;
    z-index: 3;
    text-align: center;
}
.mv__cover {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: #301a0b;
    opacity: 0.3;
    z-index: 2;
}

.page-head {
    width: 100%;
    height: 300px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}
.page-head img {
    width: 100%;
    height: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
}
.page-head__body {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: var(--c-white);
    z-index: 2;
}
.page-head__title-en {
    font-size: 2.2rem;
}
.page-head__title {
    margin-top: 12px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
}
@media screen and (min-width: 600px) {
    .page-head__title {
        font-size: 38px;
    }
}
@media screen and (min-width: 1200px) {
    .page-head__title {
        font-size: 48px;
    }
}
.page-head__notice {
    position: absolute;
    bottom: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--c-white);
    width: 90%;
}

.pagination {
    margin: 38px 0;
    text-align: center;
}
.pagination a {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
@media screen and (min-width: 600px) {
    .pagination {
        margin-top: 50px;
    }
}

.page-numbers {
    background: var(--c-white);
    border: 1px solid var(--c-white);
    color: var(--c-textGrey);
    display: inline-block;
    height: 45px;
    line-height: 43px;
    width: 45px;
    min-width: 45px;
    margin-right: 14px;
    text-align: center;
    text-decoration: none;
}
.page-numbers:last-child {
    margin-right: 0;
}
.page-numbers.current {
    background: var(--c-accent);
    border: 1px solid var(--c-accent);
    color: #fff;
    font-weight: 700;
}
.page-numbers.dotx,
.page-numbers.next,
.page-numbers.prev {
    border: none;
    line-height: 40px;
}

.more__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.more__prev a,
.more__next a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 10px 16px;
    position: relative;
    width: auto;
}
.more__prev a::before {
    content: '';
    width: 7.281px;
    height: 12.135px;
    background: var(--c-text);
    margin-right: 9.5px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.more__next a::after {
    content: '';
    width: 7.281px;
    height: 12.135px;
    background: var(--c-text);
    margin-left: 9px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.related__tag {
    margin-bottom: 40px;
}
.related__title {
    padding: 15px 25px;
    background-color: var(--c-accent);
    color: var(--c-white);
    font-weight: bold;
    font-family: var(--ff-logo);
    letter-spacing: 0.3rem;
}
.related__title span {
    font-size: 15px;
}

.related-card {
    height: 120px;
    width: 100%;
    background-color: var(--c-white);
    border-color: var(--c-grey);
    border-style: solid;
    border-width: 0 0 1px 0;
}
.related-card__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.related-card__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.related-card__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.related-card__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    position: relative;
}
.related-card__title {
    font-size: 14px;
    color: var(--c-textGrey);
    padding: 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search-btn {
    display: block;
    height: 64px;
    width: 60px;
    margin-left: auto;
}

.search-form.search-pc {
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}
.search-form.search-pc.search-open {
    opacity: 1;
}
.search-form .search-box {
    position: relative;
}
.search-form .search-box__input {
    padding: 10px 7px 10px 30px;
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--c-grey);
    border-radius: 5px;
}
.search-form .search-box__submit {
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--c-text);
}

.tab__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.tab__button {
    width: 50%;
    padding: 10px 20px;
    border: 1px solid var(--c-grey);
    background: var(--c-white);
}
.tab__button:not(:last-child) {
    border-right: none;
}
.tab__button {
    cursor: pointer;
}
.tab__button.is-active {
    border-bottom-color: var(--c-white);
}
.tab__panel {
    background: var(--c-white);
}
.tab__contents {
    border: 1px solid var(--c-grey);
    border-top: var(--c-white);
}

.tab-contents {
    border: 1px solid var(--c-grey);
    border-top: var(--c-white);
}
.tab-contents__inner {
    padding: 20px;
}
.tab-contents__items.poplar .tab-contents__title a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; /* 縦方向に並べる */
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; /* 下に寄せる */
    height: 100%;
    font-weight: bold;
}
.tab-contents__items:not(.poplar) .tab-contents__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; /* 縦並びにして */
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; /* 一番下へ寄せる */
}
.tab-contents__item {
    border-bottom: 2px solid var(--c-white);
    aspect-ratio: 16/9;
}
.tab-contents__link {
    display: block;
    position: relative;
}
.tab-contents__link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.tab-contents__thumb {
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}
.tab-contents__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.tab-contents__title {
    color: var(--c-white);
    font-weight: bold;
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 10px 20px;
    height: 100%;
    display: -webkit-box;
    overflow: hidden;
}

.index {
    background: var(--c-bg);
}
.index__inner {
    border-top: 1px solid var(--c-white);
    height: auto;
}
.index .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.index .index-card {
    width: 100%;
    height: 295px;
    border-right: 1px solid var(--c-white);
    position: relative;
}
.index .index-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 0;
    z-index: 2;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 70%);
    pointer-events: none;
}
@media screen and (min-width: 900px) {
    .index .index-card {
        height: 350px;
    }
}
.index .index-card__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.index .index-card__thumb {
    width: 100%;
    height: 100%;
}
.index .index-card__thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
    transition:
        transform 0.8s ease,
        -webkit-transform 0.8s ease;
}
.index .index-card__info {
    position: absolute;
    bottom: 0;
    z-index: 3;
    padding: 0 18px 14px;
    color: var(--c-white);
    pointer-events: none;
}
.index .index-card__title {
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.index .index-card__meta {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 10px;
}
@media screen and (min-width: 600px) {
    .index .index-card__meta {
        font-size: 14px;
    }
}

.speech-bubble {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    margin: 0 0 3em;
    color: var(--c-text);
}
.speech-bubble.is-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.speech-bubble .sb__user {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    text-align: center;
}
.speech-bubble .sb__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    background: var(--c-grey);
    display: block;
}
.speech-bubble .sb__name {
    font-size: 12px;
    line-height: 1;
    color: var(--c-textGrey);
    margin-top: 8px;
}
.speech-bubble .sb__text {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 80px;
    padding: 20px 24px;
    line-height: 2;
    border-radius: 8px;
    background: #f2f2f2;
}
.speech-bubble.is-pink .sb__text {
    background: var(--c-bubPk);
}
.speech-bubble.is-blue .sb__text {
    background: var(--c-bubBl);
}
.speech-bubble.is-borderPink .sb__text {
    background: var(--c-white);
    border: 2px solid var(--c-bubPk);
}
.speech-bubble.is-borderBlue .sb__text {
    background: var(--c-white);
    border: 2px solid var(--c-bubBl);
}
.speech-bubble:not(.is-right).is-pink .sb__text::before {
    position: absolute;
    top: 40px;
    content: '';
    border: 10px solid transparent;
    right: 100%;
    border-right-color: var(--c-bubPk);
}
.speech-bubble:not(.is-right).is-blue .sb__text::before {
    position: absolute;
    top: 40px;
    content: '';
    border: 10px solid transparent;
    right: 100%;
    border-right-color: var(--c-bubBl);
}
.speech-bubble:not(.is-right).is-borderPink .sb__text::before {
    position: absolute;
    top: 37px;
    content: '';
    border: 13px solid transparent;
    right: 100%;
    border-right-color: var(--c-bubPk);
    z-index: 1;
}
.speech-bubble:not(.is-right).is-borderPink .sb__text::after {
    position: absolute;
    top: 40px;
    content: '';
    border: 10px solid transparent;
    right: 100%;
    border-right-color: var(--c-white);
    z-index: 2;
}
.speech-bubble:not(.is-right).is-borderBlue .sb__text::before {
    position: absolute;
    top: 37px;
    content: '';
    border: 13px solid transparent;
    right: 100%;
    border-right-color: var(--c-bubBl);
    z-index: 1;
}
.speech-bubble:not(.is-right).is-borderBlue .sb__text::after {
    position: absolute;
    top: 40px;
    content: '';
    border: 10px solid transparent;
    right: 100%;
    border-right-color: var(--c-white);
    z-index: 2;
}
.speech-bubble.is-right.is-pink .sb__text::before {
    position: absolute;
    top: 40px;
    content: '';
    border: 10px solid transparent;
    left: 100%;
    border-left-color: var(--c-bubPk);
}
.speech-bubble.is-right.is-blue .sb__text::before {
    position: absolute;
    top: 40px;
    content: '';
    border: 10px solid transparent;
    left: 100%;
    border-left-color: var(--c-bubBl);
}
.speech-bubble.is-right.is-borderPink .sb__text::before {
    position: absolute;
    top: 37px;
    content: '';
    border: 13px solid transparent;
    left: 100%;
    border-left-color: var(--c-bubPk);
    z-index: 1;
}
.speech-bubble.is-right.is-borderPink .sb__text::after {
    position: absolute;
    top: 40px;
    content: '';
    border: 10px solid transparent;
    left: 100%;
    border-left-color: var(--c-white);
    z-index: 2;
}
.speech-bubble.is-right.is-borderBlue .sb__text::before {
    position: absolute;
    top: 37px;
    content: '';
    border: 13px solid transparent;
    left: 100%;
    border-left-color: var(--c-bubBl);
    z-index: 1;
}
.speech-bubble.is-right.is-borderBlue .sb__text::after {
    position: absolute;
    top: 40px;
    content: '';
    border: 10px solid transparent;
    left: 100%;
    border-left-color: var(--c-white);
    z-index: 2;
}

.js-tab .js-tab-panel {
    display: none;
}
.js-tab .js-tab-panel.is-active {
    display: block;
}

.index-tab__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* スマホ対応でスムーズスクロール */
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}
.index-tab__button {
    width: 100%;
    min-width: 130px;
    height: 45px;
    line-height: 43px;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    background-color: var(--c-white);
    color: var(--c-text);
    border: 1px solid var(--c-grey);
    border-right: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.index-tab__button:last-child {
    border-right: 1px solid var(--c-grey);
}
.index-tab__button:hover {
    background-color: var(--c-accent);
    color: var(--c-white);
    border: 1px solid var(--c-accent);
}
.index-tab__button.is-active {
    background-color: var(--c-accent);
    color: var(--c-white);
    border: 1px solid var(--c-accent);
}
@media screen and (min-width: 600px) {
    .index-tab__button {
        height: 60px;
        line-height: 58px;
        font-size: 18px;
    }
}

.tag__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 10px;
}
.tag__item {
    position: relative;
}
.tag__item:not(:last-child)::after {
    content: '、';
    right: -10px;
    top: 0;
    bottom: 0;
    position: absolute;
}
.tag__item a {
    display: inline-block;
}

.widget {
    margin-top: 40px;
}
@media screen and (min-width: 900px) {
    .widget:first-child {
        margin-top: 0;
    }
}
.widget__title {
    padding: 15px 25px;
    background-color: var(--c-accent);
    color: var(--c-white);
    font-weight: bold;
    font-family: var(--ff-logo);
    letter-spacing: 0.3rem;
}
.widget__title span {
    font-size: 15px;
}
.widget-card {
    height: 120px;
    width: 100%;
    background-color: var(--c-white);
    border-color: var(--c-grey);
    border-style: solid;
    border-width: 0 1px 1px 1px;
}
.widget-card__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.widget-card__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    position: relative;
}
.widget-card__image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 50%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 70%);
}
.widget-card__num {
    background-color: var(--c-text);
    color: var(--c-white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.widget-card__thumb {
    width: 100%;
    height: 100%;
}
.widget-card__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.widget-card__view {
    display: inline-block;
    color: var(--c-white);
    text-align: left;
    padding: 0 0 5px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}
.widget-card__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    position: relative;
}
.widget-card__title {
    font-size: 14px;
    color: var(--c-textGrey);
    padding: 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.parallax {
    width: 100%;
    height: 295px;
    overflow: hidden;
    position: relative;
}
@media screen and (min-width: 900px) {
    .parallax {
        height: 350px;
    }
}
.parallax::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #301a0b;
    opacity: 0.3;
    z-index: 2;
}
.parallax__bg {
    position: absolute;
    inset: -30% 0;
    background-image: url(../images/food.jpg);
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 1;
}
.parallax__content {
    color: var(--c-white);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 3;
    padding: 0 20px;
}
.parallax__lead {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-shadow: 0px 0px 0px #999999;
}
@media screen and (min-width: 600px) {
    .parallax__lead {
        font-size: 16px;
    }
}
.parallax__btn {
    margin-top: 14px;
    text-align: center;
}
