/**
 * WMNC Theme - Main Stylesheet
 *
 * 構成:
 * 1. CSS Variables / Reset
 * 2. Typography
 * 3. Layout
 * 4. Header
 * 5. Footer
 * 6. Main Visual
 * 7. Sections
 * 8. Post Slider
 * 9. Pickup Banners
 * 10. Information
 * 11. Instagram
 * 12. Utilities
 */

/* ==========================================================================
   1. CSS Variables / Reset
   ========================================================================== */

:root {
    --color-primary: #7c61a7;
    --color-secondary: #00acce;
    --color-accent: #ef3340;
    --color-text: #333;
    --color-text-light: #666;
    --color-text-muted: #a8a8a8;
    --color-border: #e5e5e5;
    --color-bg: #fff;
    --color-bg-alt: #f5f5f5;
    --color-bg-dark: #000;

    --font-family: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;

    --content-max-width: 1140px;
    --section-margin-pc: 20px;
    --section-margin-sp: 10px;

    --header-height-pc: 120px;
    --header-height-sp: 20vw;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p {
    margin: 0;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link {
    background-color: var(--color-primary);
    color: #fff;
    padding: 1em 2em;
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
}

.d-flex {
    display: flex;
}

.ib {
    display: inline-block;
}

/* Responsive helpers */
.sp {
    display: none;
}

.pc {
    display: initial;
}

.pcandtab {
    display: initial;
}

@media screen and (max-width: 1068px) {
    .pc {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .sp {
        display: initial;
    }

    .pcandtab {
        display: none;
    }
}

/* ==========================================================================
   4. Header
   ========================================================================== */

#header {
    position: relative;
    width: 100%;
    background: #fff;
    z-index: 1000;
}

#header img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.header-bar {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    text-align: center;
    justify-content: space-between;
    width: calc(100% - 30px);
    z-index: 1100;
}

.site-id {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.site-id a,
.site-id .logo {
    display: block;
}

.site-id .logo {
    display: block;
    text-indent: -9999em;
    text-align: left;
    font-size: 0;
    width: 100%;
    padding-bottom: 26.8%;
    background: url("../../public/img/logo-wordmouthnc.svg") no-repeat center center;
    background-size: 100% auto;
}

.site-menu-btn {
    position: relative;
    cursor: pointer;
    margin-right: auto;
    background: none;
    border: none;
    padding: 0;
}

.site-menu-btn .ico {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.site-menu-btn .ico::before,
.site-menu-btn .ico::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    transition: all var(--transition-normal);
    background: #545252;
}

.site-menu-btn .ico::before {
    top: 0;
}

.site-menu-btn .ico::after {
    bottom: 0;
}

body.gNavShow .site-menu-btn .ico::before {
    transform: rotate(135deg);
    top: 50%;
}

body.gNavShow .site-menu-btn .ico::after {
    transform: rotate(-135deg);
    bottom: 50%;
}

.header-bar .join-btn a {
    position: relative;
    display: inline-block;
    line-height: 1.2;
    font-weight: 500;
    text-align: left;
}

.header-bar .join-btn a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Header - PC */
@media print,
screen and (min-width: 701px) {
    .header-bar {
        height: 60px;
        padding-top: 35px;
        margin-bottom: 25px;
        align-items: flex-end;
    }

    .site-id {
        width: 32%;
        max-width: 260px;
    }

    .site-menu-btn .text {
        display: inline-block;
        width: 47px;
        margin-right: 15px;
        vertical-align: middle;
    }

    .site-menu-btn .text img {
        display: block;
    }

    .site-menu-btn .ico {
        width: 42px;
        height: 14px;
    }

    .site-menu-btn .ico::before,
    .site-menu-btn .ico::after {
        height: 2px;
    }

    body.gNavShow .site-menu-btn .ico::before {
        margin-top: -1px;
    }

    body.gNavShow .site-menu-btn .ico::after {
        margin-bottom: -1px;
    }

    .header-bar .join-btn a {
        padding: .2em 3em .2em 1.5em;
        color: #fff;
        transition: opacity var(--transition-fast);
        border-radius: 20em;
        background: linear-gradient(90deg, rgba(124, 97, 167, 1) 0%, rgba(0, 172, 206, 1) 100%);
    }

    .header-bar .join-btn a:hover {
        opacity: .8;
    }

    .header-bar .join-btn a::after {
        right: .5em;
        top: 50%;
        margin-top: -7px;
        border-width: 7px 0 7px 9px;
        border-color: transparent transparent transparent #fff;
    }
}

/* Header - SP */
@media screen and (max-width: 700px) {
    .header-bar {
        height: 20vw;
        align-items: center;
        background: #fff;
    }

    .site-id {
        width: 44%;
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .site-menu-btn .text {
        display: none;
    }

    .site-menu-btn .ico {
        width: 8.2vw;
        height: 4vw;
    }

    .site-menu-btn .ico::before,
    .site-menu-btn .ico::after {
        height: 1px;
    }

    .header-bar .join-btn a {
        font-size: 10px;
        padding: 0 1.5em 0 0;
    }

    .header-bar .join-btn a::before {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        width: 1.1em;
        height: 1.1em;
        background: #231815;
        border-radius: 50%;
        margin-top: -0.55em;
    }

    .header-bar .join-btn a::after {
        top: 50%;
        right: .3em;
        margin-top: -0.3em;
        border-width: 0.3em 0 0.3em 0.4em;
        border-color: transparent transparent transparent #fff;
    }
}

/* Header Global Menu */
.header-global-menu,
.header-global-menu a {
    color: #fff;
}

.header-global-menu {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.header-global-menu .bg {
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.header-global-menu>*:not(.bg) {
    position: relative;
    max-width: var(--content-max-width);
    margin: 0 auto;
    z-index: 5;
}

.header-global-menu .menu-list {
    padding: 0;
}

.header-global-menu .menu-list .menu-link {
    position: relative;
    font-weight: 500;
    border-bottom: 1px dashed #666;
}

.header-global-menu .menu-list a {
    position: relative;
    display: block;
    text-decoration: underline;
}

.header-global-menu .menu-list a::after {
    content: "＞";
    display: inline-block;
    margin-left: 1em;
}

.header-global-menu .menu-list .menu-link>.main-menu-link {
    font-weight: 700;
    display: block;
}

.header-global-menu .header-sns-list {
    padding-left: 0;
    justify-content: center;
}

/* PC Global Menu */
@media print,
screen and (min-width: 701px) {
    .header-global-menu {
        height: 0;
        pointer-events: none;
        visibility: hidden;
        padding: 0 15px;
        transition: all var(--transition-slow);
    }

    body.gNavShow .header-global-menu {
        height: auto;
        pointer-events: auto;
        visibility: visible;
        padding: 60px 15px;
    }

    .header-global-menu .menu-list a:hover {
        text-decoration: none;
    }

    .header-global-menu .menu-list .menu-link>.main-menu-link {
        padding: 0.8em 35px 0.8em 60px;
        font-size: 1.8rem;
    }

    .header-global-menu .sub-menu-list {
        margin: -5px 0 0 35px;
        padding: 0 0 20px 25px;
    }

    .header-global-menu .sub-menu-list .sub-menu-link>a {
        padding: .4em 0 .4em 1em;
        font-size: 1.4rem;
    }

    .header-global-menu .header-sns-list {
        padding-top: 40px;
    }

    .header-global-menu .header-sns-list li {
        width: 36px;
        margin: 0 20px;
    }

    .header-global-menu .header-sns-list img {
        transition: transform var(--transition-fast);
    }

    .header-global-menu .header-sns-list a:hover img {
        transform: scale(1.1);
    }
}

/* SP Global Menu */
@media screen and (max-width: 700px) {
    .header-global-menu {
        position: fixed;
        width: 100%;
        height: calc(100% - 20vw);
        top: -100%;
        padding: 0;
        overflow-y: auto;
        transition: top var(--transition-slow);
        z-index: 10;
    }

    body.gNavShow {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        overflow: hidden;
    }

    body.gNavShow #header {
        padding-top: 20vw;
    }

    body.gNavShow .header-bar {
        position: fixed;
        left: 0;
        top: 0;
        width: calc(100% - 30px);
        background: #000;
    }

    body.gNavShow .header-global-menu {
        top: 20vw;
        padding: 0 0 80px;
    }

    body.gNavShow .site-id .logo {
        background-image: url("../../public/img/logo-wordmouthnc_white.svg");
    }

    body.gNavShow .site-menu-btn .ico::before,
    body.gNavShow .site-menu-btn .ico::after {
        background: #fff;
    }

    body.gNavShow .join-btn {
        opacity: 0;
        visibility: hidden;
    }

    .header-global-menu .menu-list {
        width: 88%;
        margin: 0 auto;
        font-size: 1.3rem;
    }

    .header-global-menu .menu-list .menu-link>.main-menu-link {
        padding: 0.8em 0 0.8em 1.5rem;
        font-size: 1.3rem;
    }

    .header-global-menu .sub-menu-list {
        margin: -5px 0 0 0;
        padding: 0 0 15px 15px;
    }

    .header-global-menu .sub-menu-list .sub-menu-link>a {
        padding: .4em 0 .4em 1em;
        font-size: 1.2rem;
    }

    .header-global-menu .header-sns-list {
        padding-top: 30px;
    }

    .header-global-menu .header-sns-list li {
        width: 7.4vw;
        max-width: 36px;
        margin: 0 5%;
    }
}

/* ==========================================================================
   5. Footer
   ========================================================================== */

.site-footer {
    color: #525054;
    text-align: center;
}

#footer-around-world {
    padding: 70px 20px 50px;
    margin-bottom: 60px;
    text-align: center;
    background: var(--color-bg-alt);
}

#footer-around-world .inner {
    max-width: var(--content-max-width);
    position: relative;
    margin: 0 auto;
}

#footer-around-world .heading {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

#footer-around-world .heading .img {
    width: 80px;
}

#footer-around-world .heading .img img {
    width: 100%;
    height: auto;
}

#footer-around-world .heading .title {
    padding-left: 30px;
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0;
}

#footer-around-world .note {
    padding-top: 2em;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Footer World Links */
#footer-world-links {
    padding: 40px 0 20px;
}

#footer-world-links .links-checkbox {
    display: none;
}

#footer-world-links .link-list {
    display: block;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
}

#footer-world-links .link-list dt {
    width: 7em;
    font-weight: 700;
}

#footer-world-links dd {
    padding: 0 0 0 8em;
    margin: -1.8em 0 .2em;
}

#footer-world-links dd a {
    display: inline-block;
}

#footer-world-links a:hover {
    color: var(--color-primary);
}

@media print,
screen and (min-width: 1069px) {
    #footer-world-links {
        display: flex;
        justify-content: space-between;
    }

    #footer-world-links .links-col {
        width: 48%;
    }

    #footer-world-links .links-col+.links-col {
        padding-top: 0;
    }
}

@media screen and (max-width: 700px) {
    #footer-around-world {
        padding: 60px 0 20px;
        margin-bottom: 40px;
    }

    #footer-around-world .heading {
        flex-direction: column;
    }

    #footer-around-world .heading .img {
        width: 26.67%;
        margin: 0 auto;
    }

    #footer-around-world .heading .title {
        padding: .5em 0 0;
        margin: 0;
        font-size: 1.7rem;
        line-height: 1.4;
        text-align: center;
    }

    #footer-world-links {
        padding: 15px 0;
    }

    #footer-world-links .links-col {
        width: 87%;
        max-width: 345px;
        margin: 0 auto;
        font-size: 15px;
        text-align: center;
    }

    #footer-world-links .links-col+.links-col {
        padding-top: 15px;
    }

    #footer-world-links .links-label {
        position: relative;
        display: block;
        color: var(--color-text);
        padding: .75em 0;
        margin: 0;
        font-size: 1.3rem;
        border-radius: 40px;
        border: 1px solid var(--color-text);
        background: #fff;
        font-weight: 500;
        cursor: pointer;
    }

    #footer-world-links .link-list {
        max-width: 400px;
        width: 80vw;
        margin: 0 auto;
        padding-top: 0;
        font-size: 13px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
    }

    #footer-world-links .links-checkbox:checked~.link-list {
        max-height: 999em;
        opacity: 1;
        margin-bottom: 20px;
        transition: all var(--transition-normal);
    }

    #footer-world-links .link-list dt {
        padding: 10px 0 0;
        width: auto;
    }

    #footer-world-links .link-list dd {
        padding: 0;
        margin: 0;
    }
}

/* Footer SNS */
.footer-sns-list {
    text-align: center;
    font-size: 0;
    padding-bottom: 60px;
}

.footer-sns-list .title,
.footer-sns-list ul,
.footer-sns-list li {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.footer-sns-list .title {
    font-size: 1.6rem;
    width: 10em;
    text-align: left;
}

.footer-sns-list ul {
    padding-left: 2rem;
    border-left: 1px solid #525054;
}

.footer-sns-list li {
    width: 30px;
    margin: 0 3rem;
}

.footer-sns-list li a {
    display: block;
}

.footer-sns-list img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--transition-fast);
}

.footer-sns-list a:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 700px) {
    .footer-sns-list {
        padding: 0 15px 25px;
        display: flex;
    }

    .footer-sns-list .title,
    .footer-sns-list li {
        font-size: 1.3rem;
    }

    .footer-sns-list .title {
        display: flex;
        align-items: center;
        width: 11rem;
    }

    .footer-sns-list ul {
        width: calc(100% - 11rem);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-sns-list li {
        width: 5.6vw;
        padding: .5em 0;
        max-width: 30px;
        margin: 0;
    }
}

/* Footer Global Nav */
.footer-global-nav {
    text-align: left;
    color: #3f3f3f;
    padding: 60px 30px;
    background-color: #fafafa;
}

.footer-global-nav a {
    position: relative;
    display: block;
    color: #3f3f3f;
}

.footer-global-nav a:hover {
    text-decoration: underline;
}

.footer-global-nav-inner {
    position: relative;
    max-width: var(--content-max-width);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.footer-global-nav .footer-nav-cat {
    padding-bottom: 25px;
}

.footer-global-nav .footer-nav-cat a {
    padding-left: 15px;
}

.footer-global-nav .footer-nav-cat a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: .4em;
    width: 8px;
    height: 14px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4IDE0IiBmaWxsPSIjMmQyZDJkIj48cGF0aCBkPSJtNy43MSw2LjI5Yy4zOS4zOS4zOSwxLjAyLDAsMS40MSwwLDAsMCwwLDAsMEwxLjcxLDEzLjcxYy0uMzkuMzktMS4wMi4zOS0xLjQxLDAtLjM5LS4zOS0uMzktMS4wMiwwLTEuNDFsNS4yOS01LjI5TC4zLDEuNzFDLS4xLDEuMzItLjEuNjguMy4yOS42OS0uMSwxLjMyLS4xLDEuNzEuMjlsNiw2aDBaIi8+PC9zdmc+") no-repeat center center;
    background-size: 100% auto;
}

.footer-global-nav .footer-nav-cat .main-link {
    font-weight: 700;
    font-size: 1.6rem;
}

.footer-global-nav .footer-nav-cat .sub-links {
    margin: 0;
    padding: 12px 0 0 15px;
    font-size: 1.3rem;
}

.footer-global-nav .footer-nav-cat .sub-links>li+li {
    margin-top: .8em;
}

.footer-global-nav .links-checkbox {
    display: none;
}

.footer-global-nav .trigger {
    display: none;
}

@media screen and (max-width: 700px) {
    .footer-global-nav {
        padding: 0;
    }

    .footer-global-nav-inner {
        flex-direction: column;
        border-top: 1px solid var(--color-border);
    }

    .footer-global-nav .footer-nav-row {
        display: contents;
    }

    .footer-global-nav .footer-nav-cat {
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 0;
    }

    .footer-global-nav .footer-nav-cat a {
        display: flex;
        align-items: center;
        font-weight: 700;
        height: 50px;
        padding-left: 15px;
        background-color: #fafafa;
        font-size: 13px;
    }

    .footer-global-nav .footer-nav-cat .main-link,
    .footer-global-nav .footer-nav-cat .sub-links a {
        position: relative;
        padding-right: 50px;
    }

    .footer-global-nav .footer-nav-cat .main-link::before,
    .footer-global-nav .footer-nav-cat .sub-links a::before {
        content: "";
        display: block;
        position: absolute;
        left: auto;
        right: 0;
        top: 0;
        width: 50px;
        height: 100%;
        background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4IDE0IiBmaWxsPSIjMmQyZDJkIj48cGF0aCBkPSJtNy43MSw2LjI5Yy4zOS4zOS4zOSwxLjAyLDAsMS40MSwwLDAsMCwwLDAsMEwxLjcxLDEzLjcxYy0uMzkuMzktMS4wMi4zOS0xLjQxLDAtLjM5LS4zOS0uMzktMS4wMiwwLTEuNDFsNS4yOS01LjI5TC4zLDEuNzFDLS4xLDEuMzItLjEuNjguMy4yOS42OS0uMSwxLjMyLS4xLDEuNzEuMjlsNiw2aDBaIi8+PC9zdmc+") no-repeat center center;
        background-size: 8px auto;
    }

    .footer-global-nav .footer-nav-cat .main-link {
        font-size: 13px;
    }

    .footer-global-nav .sub-links-toggle {
        display: flex;
        position: relative;
        background-color: #fafafa;
    }

    .footer-global-nav .sub-links-toggle .main-link {
        width: calc(100% - 50px);
        border-right: 1px solid var(--color-border);
    }

    /* sub-links-toggle内のmain-linkからは「>」を非表示 */
    .footer-global-nav .sub-links-toggle .main-link::before {
        display: none;
    }

    .footer-global-nav .trigger {
        display: block;
        position: relative;
        cursor: pointer;
        width: 50px;
        margin: 0;
    }

    /* triggerの「>」アイコン（+の左側、ボックス外に表示） */
    .footer-global-nav .trigger::before {
        content: "";
        display: block;
        position: absolute;
        left: -25px;
        top: 0;
        width: 25px;
        height: 100%;
        background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4IDE0IiBmaWxsPSIjMmQyZDJkIj48cGF0aCBkPSJtNy43MSw2LjI5Yy4zOS4zOS4zOSwxLjAyLDAsMS40MSwwLDAsMCwwLDAsMEwxLjcxLDEzLjcxYy0uMzkuMzktMS4wMi4zOS0xLjQxLDAtLjM5LS4zOS0uMzktMS4wMiwwLTEuNDFsNS4yOS01LjI5TC4zLDEuNzFDLS4xLDEuMzItLjEuNjguMy4yOS42OS0uMSwxLjMyLS4xLDEuNzEuMjlsNiw2aDBaIi8+PC9zdmc+") no-repeat center center;
        background-size: 8px auto;
    }

    .footer-global-nav .trigger i {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
        height: 100%;
        background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0iIzJkMmQyZCI+PHBhdGggZD0ibTguMDgsMS4wOEM4LjA4LjQ4LDcuNTksMCw3LDBjLS41OSwwLTEuMDguNDgtMS4wOCwxLjA4djQuODVIMS4wOEMuNDgsNS45MiwwLDYuNCwwLDdzLjQ4LDEuMDgsMS4wOCwxLjA4aDQuODV2NC44NWMwLC41OS40OCwxLjA4LDEuMDgsMS4wOC41OSwwLDEuMDgtLjQ4LDEuMDgtMS4wOGgwdi00Ljg1aDQuODVjLjU5LDAsMS4wOC0uNDgsMS4wOC0xLjA4LDAtLjU5LS40OC0xLjA4LTEuMDgtMS4wOGgtNC44NVYxLjA4WiIvPjwvc3ZnPg==") no-repeat center center;
        background-size: 14px auto;
    }

    .footer-global-nav .footer-nav-cat .sub-links {
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0;
    }

    .footer-global-nav .links-checkbox:checked~.sub-links {
        max-height: 999em;
        opacity: 1;
        visibility: visible;
        transition: all var(--transition-slow);
    }

    .footer-global-nav .links-checkbox:checked~.sub-links-toggle .trigger i {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0iIzJkMmQyZCI+PHBhdGggZD0ibTE0LDdjMCwuNTktLjQ4LDEuMDgtMS4wOCwxLjA4SDEuMDhDLjQ4LDguMDgsMCw3LjU5LDAsN3MuNDgtMS4wOCwxLjA4LTEuMDhoMTEuODVjLjU5LDAsMS4wOC40OCwxLjA4LDEuMDdoMFoiLz48L3N2Zz4=");
    }

    .footer-global-nav .footer-nav-cat .sub-links>li {
        border-top: 1px solid var(--color-border);
        margin-top: 0;
    }

    .footer-global-nav .footer-nav-cat .sub-links a {
        padding-left: 35px;
    }

    .footer-global-nav .footer-nav-cat .sub-links a::after {
        content: "";
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        width: 10px;
        height: 10px;
        margin-top: -5px;
        border-left: 1px solid #afafaf;
        border-bottom: 1px solid #afafaf;
        box-sizing: border-box;
    }

    .footer-global-nav .footer-nav-sub {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        font-size: 12px;
    }

    .footer-global-nav .footer-nav-sub>a {
        width: 50%;
        height: 50px;
        border-bottom: 1px dotted #ccc;
        justify-content: center;
    }
}

/* Footer Policy */
.footer-policy {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: calc(var(--content-max-width) + 60px);
    margin: 0 auto;
    padding: 25px 30px 0;
    font-weight: 500;
}

.footer-policy-nav {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 12px;
}

.footer-policy-nav li {
    position: relative;
}

.footer-policy-nav li+li {
    margin-left: 1em;
    padding-left: 2em;
}

.footer-policy-nav li+li::before {
    content: "｜";
    position: absolute;
    left: 0;
    top: 0;
}

.footer-policy-nav a {
    display: block;
}

.footer-policy-nav a:hover {
    text-decoration: underline;
}

.footer-copyright {
    max-width: calc(var(--content-max-width) + 60px);
    margin: 0 auto;
    padding: 5px 30px 20px;
    font-size: 10px;
    font-weight: 500;
    text-align: right;
}

@media screen and (max-width: 700px) {
    .footer-policy {
        justify-content: center;
        padding: 25px 15px 0;
    }

    .footer-policy-nav {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 11px;
    }

    .footer-policy-nav>li {
        padding: 0 1em;
    }

    .footer-policy-nav>li+li {
        margin-left: 0;
        padding-left: 1em;
    }

    .footer-copyright {
        padding: 15px 0 20px;
        text-align: center;
    }
}

/* ==========================================================================
   6. Main Visual
   ========================================================================== */

.mv-section {
    position: relative;
    margin-bottom: var(--section-margin-pc);
    overflow: hidden;
}

.mv-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Height variations */
.mv-height--auto {
    min-height: auto;
}

.mv-height--fullscreen {
    min-height: 100vh;
}

.mv-height--large {
    min-height: 80vh;
}

.mv-height--medium {
    min-height: 60vh;
}

/* Filter effects */
.mv-filter--grayscale .mv-slide__image img,
.mv-filter--grayscale .mv-video__player {
    filter: grayscale(100%);
}

.mv-filter--sepia .mv-slide__image img,
.mv-filter--sepia .mv-video__player {
    filter: sepia(50%);
}

.mv-filter--blur .mv-slide__image img,
.mv-filter--blur .mv-video__player {
    filter: blur(3px);
}

/* Slider */
.mv-slider {
    width: 100%;
}

.mv-slider .swiper-slide {
    position: relative;
}

.mv-slide__link {
    display: block;
    position: relative;
}

.mv-slide__image {
    display: block;
}

.mv-slide__image img {
    display: block;
    width: 100%;
    height: auto;
}

.mv-slide__content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 10;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mv-slide__title {
    font-size: 3.6rem;
    font-weight: 900;
    margin-bottom: 0.5em;
}

.mv-slide__subtitle {
    font-size: 1.8rem;
    margin-bottom: 1em;
}

.mv-slide__btn {
    display: inline-block;
}

/* Video */
.mv-video {
    position: relative;
}

.mv-video__player {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mv-video__volume-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

/* Image */
.mv-image {
    position: relative;
}

.mv-image img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 700px) {
    .mv-section {
        margin-bottom: var(--section-margin-sp);
    }

    .mv-slide__content {
        bottom: 5%;
        left: 3%;
        right: 3%;
    }

    .mv-slide__title {
        font-size: 2.4rem;
    }

    .mv-slide__subtitle {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   7. Sections (General)
   ========================================================================== */

.top-section {
    margin-bottom: var(--section-margin-pc);
}

.top-full-wrap,
.top-double-wrap {
    position: relative;
    margin-bottom: var(--section-margin-pc);
}

.top-full-wrap img,
.top-double-wrap img {
    display: block;
    margin: 0 auto;
}

@media print,
screen and (min-width: 701px) {
    .top-double-wrap {
        display: flex;
        justify-content: space-between;
    }

    .top-double-wrap .column {
        position: relative;
        width: calc(50% - 6px);
        display: flex;
        height: 480px;
    }

    .top-double-wrap .column.short-bnr {
        height: auto;
    }
}

@media screen and (max-width: 700px) {
    .top-section {
        margin-bottom: var(--section-margin-sp);
    }

    .top-full-wrap,
    .top-double-wrap {
        margin-bottom: 2.67%;
    }

    .top-double-wrap .column {
        display: flex;
    }

    .top-double-wrap .column+.column {
        margin-top: 10px;
    }
}

/* ==========================================================================
   8. Post Slider
   ========================================================================== */

.post-slider-section {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
}

.post-slider__title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-text);
}

.post-slider {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 50px;
}

.post-slider .swiper-slide {
    height: auto;
}

.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow var(--transition-normal);
}

.post-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.post-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.post-card__thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.post-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.post-card:hover .post-card__thumbnail img {
    transform: scale(1.05);
}

.post-card__content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.post-card__category {
    background: var(--color-primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 1.1rem;
}

.post-card__excerpt {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Swiper Navigation */
.post-slider .swiper-button-prev,
.post-slider .swiper-button-next {
    color: var(--color-primary);
}

.post-slider .swiper-button-prev {
    left: 10px;
}

.post-slider .swiper-button-next {
    right: 10px;
}

@media screen and (max-width: 700px) {
    .post-slider-section {
        padding: 40px 0;
    }

    .post-slider__title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .post-slider {
        padding: 0 15px;
    }

    .post-slider .swiper-button-prev,
    .post-slider .swiper-button-next {
        display: none;
    }
}

/* ==========================================================================
   9. Pickup Banners
   ========================================================================== */

.pickup-section {
    padding: 0;
    margin-bottom: var(--section-margin-pc);
}

.pickup-grid {
    display: grid;
    gap: var(--pickup-gap, 20px);
}

.pickup-cols-pc--2 .pickup-grid {
    grid-template-columns: repeat(2, 1fr);
}

.pickup-cols-pc--3 .pickup-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pickup-cols-pc--4 .pickup-grid {
    grid-template-columns: repeat(4, 1fr);
}

.pickup-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--pickup-radius, 0);
}

.pickup-item__link {
    display: block;
}

.pickup-item__image {
    position: relative;
    overflow: hidden;
}

.pickup-item__image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--transition-normal);
}

/* Effects */
.pickup-effect--zoom .pickup-item:hover .pickup-item__image img {
    transform: scale(1.05);
}

.pickup-effect--grayscale .pickup-item__image img {
    filter: grayscale(100%);
    transition: filter var(--transition-normal), transform var(--transition-normal);
}

.pickup-effect--grayscale .pickup-item:hover .pickup-item__image img {
    filter: grayscale(0);
}

.pickup-effect--shadow .pickup-item {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pickup-effect--shadow .pickup-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Title positions */
.pickup-title--bottom .pickup-item__title {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
    background: #fff;
}

.pickup-title--overlay .pickup-item__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

@media screen and (max-width: 700px) {
    .pickup-section {
        margin-bottom: 2.67%;
    }

    .pickup-cols-sp--1 .pickup-grid {
        grid-template-columns: 1fr;
    }

    .pickup-cols-sp--2 .pickup-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pickup-title--bottom .pickup-item__title {
        font-size: 1.2rem;
        padding: 8px;
    }
}

/* ==========================================================================
   10. Information
   ========================================================================== */

.information-section {
    padding: 60px 0 80px;
}

.information-section .info-title {
    margin: 0 auto 40px;
    width: 180px;
}

.information-section .info-title img {
    display: block;
    width: 100%;
}

.news-list-nav,
.news-list-area {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.news-list-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.news-category {
    display: flex;
    width: calc(100% - 11em);
    max-width: 508px;
}

.news-category a {
    display: block;
    position: relative;
    width: 25%;
    text-align: center;
    cursor: pointer;
    padding: 10px 0;
}

.news-category a::before,
.news-category a::after {
    content: "";
    display: block;
    position: absolute;
    height: 6px;
    bottom: 0;
}

.news-category a::before {
    left: 0;
    width: 100%;
    background: #e1e1e1;
}

.news-category a::after {
    left: 50%;
    width: 0;
    background: var(--color-primary);
    opacity: .5;
    transition: left var(--transition-normal), width var(--transition-normal);
}

.news-category a:hover::after,
.news-category a.active::after {
    width: 100%;
    left: 0;
}

.news-category a.active::after {
    opacity: 1;
}

.news-list-nav .more a:hover,
.information-section .news-list a:hover {
    text-decoration: underline;
}

.information-section .news-list {
    font-weight: 500;
}

.information-section .news-list:not(.active) {
    display: none;
}

.information-section .news-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.3rem;
    padding-bottom: .8em;
}

.information-section .news-list .date,
.information-section .news-list .text {
    padding: .15em 0;
}

.information-section .news-list .date {
    width: 7em;
    color: var(--color-text-muted);
}

.information-section .news-list .category {
    border: 1px solid #727272;
    width: 7em;
    padding: .15em 0;
    text-align: center;
    color: #727272;
}

.information-section .news-list .text {
    width: calc(100% - 14em);
    padding-left: 2em;
    color: #727272;
}

.information-section .news-list .text a {
    color: #727272;
}

@media screen and (max-width: 700px) {
    .information-section {
        padding: 9% 0 5%;
    }

    .information-section .info-title {
        width: 35.74%;
        margin-bottom: 6.67%;
    }

    .news-list-nav {
        flex-direction: column;
    }

    .news-category {
        justify-content: space-between;
        width: 90%;
        margin: 0 auto;
        font-size: 1.2rem;
    }

    .news-category a {
        width: 32.5%;
        padding: 0 0 10px;
    }

    .news-list-nav .more {
        padding: 1.5em 0;
        text-align: center;
        font-size: 1.2rem;
    }

    .information-section .news-list li {
        flex-direction: column-reverse;
        padding: 2% 5%;
        border-bottom: 1px dashed #999;
    }

    .information-section .news-list li:first-child {
        border-top: 1px dashed #999;
    }

    .information-section .news-list .date,
    .information-section .news-list .category {
        margin-top: .5em;
        font-size: 1.1rem;
    }

    .information-section .news-list .text {
        width: 100%;
        padding-left: 0;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   11. Instagram
   ========================================================================== */

.top-instagram {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 0 100px;
}

.top-instagram .insta-area {
    display: block;
    position: relative;
}

.top-instagram ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -1px;
}

.top-instagram ul li {
    width: calc(25% - 2px);
    margin: 1px;
    border: 1px solid #bababa;
    overflow: hidden;
}

.top-instagram ul li img {
    display: block;
    width: 100%;
    transition: transform var(--transition-normal);
}

.top-instagram li a:hover img {
    transform: scale(1.1);
}

.top-instagram .message {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 88%;
    max-width: 830px;
    text-align: center;
    line-height: 1.36;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%);
    padding: 3em 1em;
    font-size: 2.2rem;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

.top-instagram .insta-area:hover .message {
    opacity: 0;
}

@media screen and (max-width: 700px) {
    .top-instagram {
        padding: 2% 0 10%;
    }

    .top-instagram ul {
        margin: 0 0 0 -1px;
    }

    .top-instagram ul li {
        margin: 0 0 1px 1px;
        width: calc(50% - 1px);
    }

    .top-instagram ul li:nth-child(n+5) {
        display: none;
    }

    .top-instagram .message {
        padding: 1em;
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   12. Utilities & Buttons
   ========================================================================== */

.btn-blue {
    display: inline-block;
    line-height: 1;
    padding: .35em 2em;
    font-size: 14px;
    font-weight: 700;
    min-width: 200px;
    border-radius: 8em;
    color: #fff;
    background: linear-gradient(90deg, rgba(5, 173, 202, 1) 0%, rgba(5, 225, 202, 1) 100%);
    text-align: center;
    transition: opacity var(--transition-fast);
}

.btn-blue:hover {
    text-decoration: underline;
    color: #fff;
}

@media screen and (max-width: 700px) {
    .btn-blue {
        padding: .4em 2em;
        font-size: 12px;
        min-width: 180px;
    }
}

/* Swiper customizations */
.swiper-button-prev,
.swiper-button-next {
    color: var(--color-primary);
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* Fullwidth banner */
.fullwidth-banner-section {
    position: relative;
}

.fullwidth-banner__link {
    display: block;
    position: relative;
}

.fullwidth-banner__image {
    display: block;
}

.fullwidth-banner__image img {
    display: block;
    width: 100%;
    max-width: none;
}

/* ==========================================================================
   13. Animated Main Visual（元HTMLのアニメーションMV）
   ========================================================================== */

#top-lp-anytimeyear {
    position: relative;
}

#top-lp-anytimeyear::before {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #fff7eb 94%, #0000) top/6px 6px no-repeat,
        conic-gradient(#0000 30%, #fff7eb);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 6px), #000 0);
    mask: radial-gradient(farthest-side, #0000 calc(100% - 6px), #000 0);
    animation: loading 1s infinite linear;
    z-index: 10;
}

@keyframes loading {
    100% {
        transform: rotate(1turn);
    }
}

#top-lp-anytimeyear.active::before {
    display: none;
}

#top-lp-anytimeyear a {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: #6e38d5;
}

#top-lp-anytimeyear .main-title {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 10;
}

#top-lp-anytimeyear .main-title img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#top-lp-anytimeyear .kv {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: none;
}

#top-lp-anytimeyear .kv .slide {
    position: relative;
    display: flex;
    white-space: nowrap;
}

#top-lp-anytimeyear .kv .slide:nth-of-type(odd) {
    justify-content: flex-end;
}

#top-lp-anytimeyear .kv .slide .col {
    display: block;
    height: 100%;
    flex-shrink: 0;
    white-space: nowrap;
}

#top-lp-anytimeyear .kv .slide .col img {
    display: block;
    height: 100%;
    max-width: none;
}

#top-lp-anytimeyear .bg {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

#top-lp-anytimeyear .bg>span {
    display: block;
    height: 100%;
}

#top-lp-anytimeyear .bg img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
}

#top-lp-anytimeyear .bg-left {
    left: 0;
}

#top-lp-anytimeyear .bg-right {
    right: 0;
}

#top-lp-anytimeyear .scroll-down {
    position: absolute;
    z-index: 20;
}

#top-lp-anytimeyear .scroll-down .text {
    display: block;
    width: 100%;
    margin-bottom: 10%;
}

#top-lp-anytimeyear .scroll-down .text img {
    display: block;
    width: 100%;
}

#top-lp-anytimeyear .scroll-down .wrap {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 60%;
    padding-bottom: 120%;
    border: 1px solid #fff;
    border-radius: 100vh;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    75% {
        transform: translateY(180%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

#top-lp-anytimeyear .scroll-down .wrap .circle {
    display: block;
    position: absolute;
    left: 21%;
    top: 0;
    width: 58%;
    margin-top: 21.4%;
    padding-bottom: 58%;
    border-radius: 50%;
    background-color: #fff;
}

#top-lp-anytimeyear .main-title,
#top-lp-anytimeyear .kv,
#top-lp-anytimeyear .bg,
#top-lp-anytimeyear .scroll-down,
#top-lp-anytimeyear .badge_contents,
#top-lp-anytimeyear .update {
    opacity: 0;
}

#top-lp-anytimeyear.active .main-title,
#top-lp-anytimeyear.active .kv,
#top-lp-anytimeyear.active .bg,
#top-lp-anytimeyear.active .scroll-down,
#top-lp-anytimeyear.active .badge_contents,
#top-lp-anytimeyear.active .update {
    opacity: 1;
}

#top-lp-anytimeyear.active .bg {
    transition: opacity .1s .3s ease-in-out;
}

#top-lp-anytimeyear .bg-left>span {
    clip-path: inset(0 100% 0 0);
    transition: all .4s .5s ease-in-out;
}

#top-lp-anytimeyear.active .bg-left>span {
    clip-path: inset(0);
}

#top-lp-anytimeyear .bg-right>span {
    clip-path: inset(0 100% 0 0);
    transition: all .3s .65s ease-in-out;
}

#top-lp-anytimeyear.active .bg-right>span {
    clip-path: inset(0);
}

#top-lp-anytimeyear .main-title {
    transform: scale(.65) rotate(6deg);
}

#top-lp-anytimeyear.active .main-title {
    transform: scale(1) rotate(0deg);
    transition: opacity .5s 1.8s ease-in-out, transform .3s 1.8s ease-in-out;
}

#top-lp-anytimeyear .kv {
    transform: scale(1.05);
}

#top-lp-anytimeyear.active .kv {
    transform: scale(1);
    transition: opacity .5s 1s ease-in-out, transform .8s .7s ease-in-out;
}

#top-lp-anytimeyear .scroll-down {
    transform: translateY(20px);
}

#top-lp-anytimeyear.active .scroll-down {
    transform: translateY(0);
    transition: opacity .5s 2.5s ease-in-out, transform .3s 2.5s ease-in-out;
}

#top-lp-anytimeyear.active .scroll-down .wrap .circle {
    animation: scrollDown 1.2s ease-in-out infinite;
}

#top-lp-anytimeyear .more {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 20;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

#top-lp-anytimeyear.active .more {
    opacity: 1;
}

#top-lp-anytimeyear .more .btn-blue {
    text-align: center;
}

@keyframes slideLoop {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slideLoopRev {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

#top-lp-anytimeyear .update,
#top-lp-anytimeyear .badge_contents {
    transition-delay: 1.8s;
}

#top-lp-anytimeyear .update {
    position: absolute;
    z-index: 15;
    pointer-events: none;
}

/* PC */
@media print,
screen and (min-width: 701px) {
    #top-lp-anytimeyear .kv {
        height: calc(100vh - 249px);
        height: calc(100dvh - 249px);
        min-height: 540px;
    }

    #top-lp-anytimeyear .main-title {
        width: 58.565%;
        left: 20.7175%;
        margin-bottom: 40px;
    }

    #top-lp-anytimeyear .kv .slide {
        height: 33.3333%;
    }

    #top-lp-anytimeyear.active .kv .slide .col {
        animation: slideLoop 60s linear infinite;
    }

    #top-lp-anytimeyear.active .kv .slide:nth-of-type(odd) .col {
        animation-name: slideLoopRev;
    }

    #top-lp-anytimeyear .kv .slide:nth-of-type(1) .col {
        animation-delay: -20s;
    }

    #top-lp-anytimeyear .kv .slide.forSP {
        display: none;
    }

    #top-lp-anytimeyear .scroll-down {
        width: 3.66%;
        bottom: 2.93%;
        right: 4.4%;
    }

    #top-lp-anytimeyear .more {
        padding: 0 30px 30px;
        text-align: right;
    }

    #top-lp-anytimeyear .badge_contents {
        position: absolute;
        top: 0;
        left: 1.39%;
        width: 11.11%;
        margin-top: 1.39%;
        z-index: 10;
    }

    #top-lp-anytimeyear .update {
        width: 28%;
        max-width: 240px;
        right: 1.39%;
        bottom: 70px;
    }
}

/* SP */
@media screen and (max-width: 700px) {
    #top-lp-anytimeyear .kv {
        aspect-ratio: 1 / 1;
        padding-bottom: 17.33%;
    }

    #top-lp-anytimeyear .main-title {
        width: 96%;
        left: 2%;
        padding-bottom: 34.66%;
    }

    #top-lp-anytimeyear .kv .slide {
        height: 25%;
    }

    #top-lp-anytimeyear.active .kv .slide .col {
        animation: slideLoop 30s linear infinite;
    }

    #top-lp-anytimeyear.active .kv .slide:nth-of-type(odd) .col {
        animation-name: slideLoopRev;
    }

    #top-lp-anytimeyear .scroll-down {
        width: 13.33%;
        bottom: 0;
        margin-bottom: 20.5%;
        left: 43.335%;
    }

    #top-lp-anytimeyear .more {
        padding-bottom: 5px;
    }

    #top-lp-anytimeyear .badge_contents {
        display: none;
    }

    #top-lp-anytimeyear .update {
        width: 100%;
        bottom: 0;
    }
}

@media (hover: hover) {
    #top-lp-anytimeyear a:hover .btn-blue {
        text-decoration: underline;
    }
}

/* ==========================================================================
   14. Front Page Widgets
   ========================================================================== */

.front-page-widgets {
    max-width: var(--content-max-width);
    margin: 0 auto var(--section-margin-pc);
    padding: 0;
}

@media screen and (max-width: 700px) {
    .front-page-widgets {
        margin-bottom: var(--section-margin-sp);
    }
}

/* ==========================================================================
   15. Loading State
   ========================================================================== */

body:not(.is-loaded) .site-main {
    opacity: 0;
}

body.is-loaded .site-main {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* ==========================================================================
   16. Content Layout
   ========================================================================== */

.content-container {
    display: flex;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 40px 15px;
    gap: 40px;
}

.content-primary {
    flex: 1;
    min-width: 0;
}

.content-primary--full {
    width: 100%;
}

.content-sidebar {
    width: 300px;
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .content-container {
        flex-direction: column;
        padding: 30px 15px;
    }

    .content-sidebar {
        width: 100%;
    }
}

/* ==========================================================================
   17. Single Post / Page
   ========================================================================== */

.article-single,
.article-page {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.article-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.article-category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    background: var(--color-primary);
    border-radius: 3px;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 1.3rem;
    color: var(--color-text-muted);
}

.article-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.article-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 1.6rem;
    line-height: 1.9;
}

.article-content h2 {
    font-size: 2.4rem;
    margin: 2em 0 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--color-primary);
}

.article-content h3 {
    font-size: 2rem;
    margin: 1.5em 0 0.75em;
    padding-left: 1em;
    border-left: 4px solid var(--color-primary);
}

.article-content h4 {
    font-size: 1.8rem;
    margin: 1.25em 0 0.5em;
}

.article-content p {
    margin: 0 0 1.5em;
}

.article-content ul,
.article-content ol {
    margin: 0 0 1.5em;
    padding-left: 2em;
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: 0.5em;
}

.article-content blockquote {
    margin: 1.5em 0;
    padding: 1.5em 2em;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    font-style: italic;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.article-content a:hover {
    text-decoration: none;
}

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tags-label {
    font-weight: 500;
    margin-right: 8px;
}

.article-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 1.2rem;
    color: var(--color-text-light);
    background: var(--color-bg-alt);
    border-radius: 3px;
}

.article-tag:hover {
    background: var(--color-border);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.share-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    transition: transform var(--transition-fast);
}

.share-button a:hover {
    transform: scale(1.1);
}

.share-button img {
    width: 20px;
    height: 20px;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding: 25px;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.author-avatar img {
    border-radius: 50%;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.author-name a {
    color: var(--color-text);
}

.author-name a:hover {
    color: var(--color-primary);
}

.author-bio {
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    margin-top: 40px;
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-previous,
.nav-next {
    padding: 20px;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--color-text);
}

.nav-title:hover {
    color: var(--color-primary);
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
}

.related-posts__title {
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media screen and (max-width: 1024px) {
    .related-posts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .article-single,
    .article-page {
        padding: 25px 20px;
    }

    .article-title {
        font-size: 2.2rem;
    }

    .post-navigation .nav-links {
        grid-template-columns: 1fr;
    }

    .nav-next {
        text-align: left;
    }

    .related-posts__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   18. Archive / Blog Page
   ========================================================================== */

.archive-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-primary);
}

.archive-title {
    font-size: 2.4rem;
    font-weight: 700;
}

.archive-description {
    margin-top: 15px;
    font-size: 1.5rem;
    color: var(--color-text-light);
}

.search-keyword {
    color: var(--color-primary);
    font-weight: 700;
}

.search-count {
    margin-top: 10px;
    font-size: 1.4rem;
    color: var(--color-text-muted);
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.post-card-horizontal {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition-normal);
}

.post-card-horizontal:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.post-card-horizontal .post-card__thumbnail {
    width: 220px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.post-card-horizontal .post-card__thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-horizontal .post-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-horizontal .post-card__category {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    background: var(--color-primary);
    border-radius: 3px;
    align-self: flex-start;
}

.post-card-horizontal .post-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.post-card-horizontal .post-card__title a {
    color: var(--color-text);
}

.post-card-horizontal .post-card__title a:hover {
    color: var(--color-primary);
}

.post-card-horizontal .post-card__excerpt {
    flex: 1;
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.post-card-horizontal .post-card__meta {
    margin-top: auto;
    padding-top: 15px;
}

.post-card-horizontal .post-card__date {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.no-posts {
    padding: 60px 30px;
    text-align: center;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.no-posts p {
    font-size: 1.6rem;
    color: var(--color-text-light);
}

.search-form-container {
    margin-top: 30px;
}

@media screen and (max-width: 700px) {
    .post-card-horizontal {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .post-card-horizontal .post-card__thumbnail {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .post-card-horizontal .post-card__title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   19. Sidebar
   ========================================================================== */

.content-sidebar .widget {
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-sidebar .widget-title {
    font-size: 1.6rem;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.content-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-sidebar .widget li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-border);
}

.content-sidebar .widget li:last-child {
    border-bottom: none;
}

.content-sidebar .widget a {
    color: var(--color-text);
    font-size: 1.4rem;
}

.content-sidebar .widget a:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   20. 404 Error Page
   ========================================================================== */

.error-content {
    text-align: center;
    padding: 80px 30px;
}

.error-title {
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-primary);
    margin: 0 0 20px;
}

.error-subtitle {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 20px;
}

.error-message {
    font-size: 1.6rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.error-actions {
    margin-bottom: 40px;
}

@media screen and (max-width: 700px) {
    .error-title {
        font-size: 8rem;
    }

    .error-subtitle {
        font-size: 2rem;
    }
}

/* ==========================================================================
   21. Pagination
   ========================================================================== */

.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination__list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination__item a,
.pagination__item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
}

.pagination__item a:hover {
    background: var(--color-primary);
    color: #fff;
}

.pagination__item span.current {
    background: var(--color-primary);
    color: #fff;
}

/* ==========================================================================
   22. Search Form
   ========================================================================== */

.search-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.search-form .search-field {
    flex: 1;
    padding: 12px 16px;
    font-size: 1.5rem;
    border: 2px solid var(--color-border);
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-form .search-field:focus {
    border-color: var(--color-primary);
}

.search-form .search-submit {
    padding: 12px 20px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-form .search-submit:hover {
    background: var(--color-secondary);
}

/* ==========================================================================
   23. Comments
   ========================================================================== */

.comments-area {
    margin-top: 50px;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comments-title {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    padding: 25px 0;
    border-bottom: 1px solid var(--color-border);
}

.comment:last-child {
    border-bottom: none;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 700;
    font-size: 1.5rem;
}

.comment-meta {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.comment-content {
    font-size: 1.5rem;
    line-height: 1.7;
}

.comment-respond {
    margin-top: 40px;
}

.comment-reply-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1.5rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    margin-bottom: 20px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}

.comment-form .submit {
    padding: 12px 30px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.comment-form .submit:hover {
    background: var(--color-secondary);
}