@charset "UTF-8";

/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.8
Requires PHP: 5.6
Version: 2.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

:root {
    --main-font: "Darumadrop One", sans-serif;
    --font-color: #352B2E;
    --main-color: #A6CFE3;
}

* {
    letter-spacing: 2px;
    font-family: var(--main-font);
    color: var(--font-color);
    box-sizing: border-box;
    font-size: 16px;
}

p {
    letter-spacing: 0;
    line-height: 1.6rem;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}
body {
    background-color: var(--main-color)!important;
}
img {
    width: 100%;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
a img {
    pointer-events: auto;
}
.flex {
    display: flex;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.pc_only {
    display: block!important;
}
.pc_only_flex {
    display: flex!important;
}
.pc_only_inline {
    display: inline!important;
}
.sp_only {
    display: none!important;
}
.sp_only_flex {
    display: none!important;
}
.sp_only_inline {
    display: none!important;
}
@media screen and (max-width: 768px) {
    .pc_only {
        display: none!important;
    }
    .pc_only_flex {
        display: none!important;
    }
    .pc_only_inline {
        display: none!important;
    }
    .sp_only {
        display: block!important;
    }
    .sp_only_flex {
        display: flex!important;
    }
    .sp_only_inline {
        display: inline!important;
    }
}

.bold {
    font-weight: bold;
}
/* 
header
================================================ */

header {
    position: sticky;
    top: 0;
    z-index: 9999;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin: auto;
    padding: 0 20px;
    display: flex;
}
header .logo_block {
    /* max-width: 1300px;
    width: 100%; */
    text-align: center;
}
/* header .logo {
    margin: auto;
} */
header .logo img {
    height: 70px;
    width: auto;
}

header.scrolled {
    background: rgba(166, 207, 227, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: background 0.3s, box-shadow 0.3s;
}

header nav {
    text-align: center;
    /* margin: 20px 0; */
}
header nav a {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 16px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
header nav a img {
    height: 32px;
    width: auto;
    pointer-events: none;
    transform-origin: center bottom;
}
header nav a:hover img {
    animation: nav-icon-sway 0.5s ease;
}
@keyframes nav-icon-sway {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(-18deg); }
    45%  { transform: rotate(14deg); }
    65%  { transform: rotate(-8deg); }
    82%  { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}
header nav a:last-of-type {
    border-right: none;
}
/* header nav a:hover {
    opacity: 0.7;
    transition: 0.3s;
} */

@media screen and (max-width: 768px) {
    header {
        height: 60px;
        margin: 0;
        /* background: linear-gradient(90deg, rgba(255, 143, 11, 1) 0%, rgba(255, 166, 7, 1) 100%); */
    }
    header .logo img {
        height: 50px;
        width: auto;
    }
}

/* spナビ ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
}
@media screen and (max-width: 768px) {
    .hamburger { display: flex; }
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* フルスクリーンナビ */
.sp_nav {
    display: none;
}
@media screen and (max-width: 768px) {
    .sp_nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--main-color);
        z-index: 10000;
        padding: 100px 36px 60px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        overflow-y: auto;
    }
    .sp_nav.open {
        opacity: 1;
        pointer-events: auto;
    }
}
.sp_nav_close {
    position: absolute;
    top: 13px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    padding: 4px 8px;
    font-family: sans-serif;
    line-height: 1;
}
.sp_nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.45);
}
.sp_nav a img {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}
.sp_nav a::after {
    content: '›';
    font-size: 30px;
    font-family: sans-serif;
    opacity: 0.7;
    margin-left: auto;
}
.sp_nav a:first-of-type {
    border-top: 2px dotted rgba(255, 255, 255, 0.45);
}


/* 
MAIN MV、MV下コンテンツ
================================================ */
.mv {
    text-align: center;
    margin: 30px auto;
    height: calc(100vh - 80px);
}
.mv .mv_main {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 80%;
    margin: auto;
    position: relative;
}
.mv .mv_subImg {
    position: absolute;
    width: 35px;
    top: 0;
    left: 0;
}
.mv .mv_main img:nth-child(1) {
    width: 90%;
    margin: 0 auto 16px;
}
.main-content {
    max-width: 980px;
    width: 95%;
    margin: auto;
}
.mv-bottomBlock {
    margin-top: 50px;
}

.mv .mv_main img:nth-child(2) {
    width: 100%;
    margin: 0 auto 16px;
}
.mv .mv_main img:nth-child(3) {
    top: 180px;
    right: -80px;
    left: auto;
    width: 50px;
}
.mv .mv_main img:nth-child(4) {
    top: 310px;
    left: -140px;
    width: 50px;
}
.mv .mv_main img:nth-child(5) {
    top: 140px;
    right: -110px;
    left: auto;
    width: 30px;
}
.mv .mv_main img:nth-child(6) {
    top: 360px;
    right: -80px;
    left: auto;
    width: 32px;
}
.mv .mv_main img:nth-child(7) {
    top: 100px;
    left: -20px;
    width: 26px;
}
.mv .mv_main img:nth-child(8) {
    top: 200px;
    left: -90px;
    width: 30px;
}
.mv .mv_main img:nth-child(9) {
    top: 300px;
    left: -55px;
    width: 26px;
}
.mv .mv_main img:nth-child(10) {
    top: 30px;
    left: -120px;
    width: 68px;
}
.mv .mv_main img:nth-child(11) {
    top: 420px;
    left: -120px;
    width: 82px;
}
.mv .mv_main img:nth-child(12) {
    top: 30px;
    right: -120px;
    left: auto;
    width: 68px;
}
.mv .mv_main img:nth-child(13) {
    top: 420px;
    right: -120px;
    left: auto;
    width: 82px;
}
/* mv_block5.png 追加分 */
.mv .mv_main img:nth-child(14) {
    top: 150px;
    left: -165px;
    width: 30px;
    rotate: -20deg;
}
.mv .mv_main img:nth-child(15) {
    top: 265px;
    right: -155px;
    left: auto;
    width: 26px;
    rotate: -20deg;
}
@media screen and (max-width: 768px) {
    .mv .mv_subImg {
        display: none;
    }
}

/* mv アニメーション */
.ui-pop{
  transform:scale(.2) translateZ(-400px);
  opacity:0;
  z-index: 999;
}
.ui-pop.show{
  animation: gamePop .65s cubic-bezier(.2,1.6,.3,1) forwards;
}
@keyframes gamePop{

  0%{
    opacity:0;
    transform:scale(.1) translateZ(-600px);
  }

  60%{
    opacity:1;
    transform:scale(1.17);
  }

  100%{
    opacity:1;
    transform:scale(1);
  }

}


.sway{
  display:inline-block;
  animation: sway 2s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes sway{
  0%   { transform: rotate(-20deg); }
  50%  { transform: rotate(20deg); }
  100% { transform: rotate(-20deg); }
}
.sway2{
  display:inline-block;
  animation: sway 3s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes sway2{
  0%   { transform: rotate(-10deg); }
  50%  { transform: rotate(10deg); }
  100% { transform: rotate(-10deg); }
}



/*
MAIN CONTENT
================================================ */
/* title_block (MV下テキストゾーン) */
.title_block {
    text-align: center;
    /* background: #F9F8EF; */
    padding: 0 30px 20px;
    
}
.title_contents {
    max-width: 980px;
    margin: auto;
}
.title_block .title_h2 {
    margin-top: 0;
    /* color: #434241; */
    margin-bottom: 30px;
}
/* .title_block .title_h2::before,
.title_block .title_h2::after {
    content: '✦';
    font-size: 20px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 14px;
    vertical-align: middle;
} */
.title_block p {
    font-family: "M PLUS 2", sans-serif;
    color: #434241;
    font-size: 18px;
    line-height: 2.4;
    letter-spacing: 1px;
    background: #F9F8EF;
    border-radius: 20px;
    padding: 28px 36px;
    position: relative;
}
/* 吹き出しのしっぽ（右下向き） */
.title_block p::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: 120px;
    border: 16px solid transparent;
    border-top-color: #F9F8EF;
    border-bottom: none;
}
/* キャラクター画像（右寄せ） */
.title_charas {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
    padding-right: 20px;
}
.title_charas img {
    width: 200px;
}

/* story */
.story_block {
    position: relative;
}

.story_contents {
    background: #fdf6e9;
    border-radius: 20px;
    padding: 50px 60px 60px;
    margin: 40px 0 80px;
    position: relative;
    box-shadow:
        0 10px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.15);
}
/* ページの右下をカールしたように */
.story_contents::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(225deg, #d6c9a8 45%, transparent 45%);
    border-radius: 0 0 20px 0;
}

.story_contents .title_h2 {
    color: #434241;
    margin-bottom: 10px;
}

.story_contents .story_img {
    margin: 60px auto 30px;
    max-width: 500px;
}
.story_contents p {
    font-family: "M PLUS 2", sans-serif;
    color: #352B2E;
    font-size: 18px;
    letter-spacing: 6px;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
}


/* map */
.map_block .map_img {
    max-width: 600px;
    margin: 30px auto;
    position: relative;
}
.map_block .map_img img.map_image {
    filter: drop-shadow(2px 4px 6px black);
    display: block;
}
.map_sabText {
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin: 12px 0;
    letter-spacing: 3px;
}

/* 家マーカー（光る点） */
.house-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.house-marker::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 3px rgba(166, 207, 227, 0.9);
    z-index: 2;
}
.house-marker::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: markerPulse 2s ease-in-out infinite;
}
@keyframes markerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50%       { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* ホバーで出るキャラクターカード */
.house-card {
    display: none;
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #fdf6e9;
    border-radius: 16px;
    padding: 16px 18px 14px;
    width: 180px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
    text-align: center;
    z-index: 20;
    pointer-events: none;
}
/* 吹き出し三角 */
.house-card::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #fdf6e9;
}
.house-marker:hover .house-card {
    display: block;
}
@media screen and (max-width: 768px) {
    .house-marker:hover .house-card {
        display: none;
    }
}
.house-card-img {
    width: 130px;
    margin: 0 auto 8px;
}
.house-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.house-card-name {
    font-family: "Darumadrop One", sans-serif;
    font-size: 18px;
    color: #352B2E;
    font-weight: bold;
    margin-bottom: 4px;
    letter-spacing: 2px;
}
.house-card-info {
    font-family: "M PLUS 2", sans-serif;
    font-size: 13px;
    color: #6b5c50;
    line-height: 1.6;
    letter-spacing: 0;
}

/* キャラクター */
.title_h2 {
    text-align: center;
    color: #fff;
    font-size: 50px;
    letter-spacing: 8px;
    margin-top: 80px;
}

/* マップ モーダル */
.map-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.map-modal.open {
    display: flex;
}
.map-modal-inner {
    background: #fdf6e9;
    border-radius: 24px;
    padding: 40px 32px 36px;
    max-width: 700px;
    width: 88%;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.45);
    animation: modalPop .3s cubic-bezier(.2, 1.4, .4, 1) forwards;
}
@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.map-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #352B2E;
    line-height: 1;
}
.map-modal-img {
    max-width: 330px;
    margin: 0 auto 16px;
    border-radius: 10%;
    overflow: hidden;
}
.map-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-modal-name {
    font-family: "Darumadrop One", sans-serif;
    font-size: 22px;
    color: #352B2E;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 4px;
}
.map-modal-info {
    font-family: "M PLUS 2", sans-serif;
    font-size: 14px;
    color: #6b5c50;
    line-height: 1.9;
    letter-spacing: 0;
}

/* キャラクターセクション */
.character_block {
    text-align: center;
    padding: 60px 20px 80px;
}
.chara_row {
    display: flex;
    justify-content: center;
}
.chara_main {
    gap: 60px;
    margin-top: 50px;
}
.chara_main .chara_card img {
    width: 200px;
}
.chara_slider {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 900px;
    margin: 50px auto 0;
}
.chara_slider_wrap {
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}
.chara_slider_wrap::-webkit-scrollbar {
    display: none;
}
.chara_slider_track {
    display: flex;
    gap: 16px;
    padding: 10px 4px;
}
.chara_slider_track .chara_card {
    flex: 0 0 143px;
}
.chara_slider_track .chara_card img {
    width: 110px;
}
.slider_btn {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    line-height: 1;
    font-family: sans-serif;
}
.slider_btn:hover {
    background: rgba(255, 255, 255, 0.45);
}
.chara_card {
    text-align: center;
}
.chara_name {
    color: #fff;
    font-size: 20px;
    letter-spacing: 3px;
}
.chara_desc {
    font-family: "M PLUS 2", sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 6px;
    letter-spacing: 0;
}

/* observer */
body {
  transition: background-color 0.8s ease;
}
body.story-active {
  background-color: #1a203f!important;
}

/* 看板バナー */
.signboard_wrap {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px;
}
.signboard_img {
    display: block;
    width: 100%;
}
.signboard_banner {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68%;
}
.signboard_banner a {
    display: block;
}
.signboard_banner img {
    transition: opacity 0.2s;
}
.signboard_banner img:hover {
    opacity: 0.85;
}
.signboard_chara {
    position: absolute;
    bottom: -10%;
    right: 2%;
    width: 220px;
}
.banner_block a {
    transition: .3s;
}
.banner_block a:hover {
    opacity: .7;
}

/* ==============================================
   アーカイブページ
================================================ */
.archive_page p,
.archive_page h2,
.archive_page h3,
.single_page p,
.single_page h1,
.single_page h2,
.single_page h3,
.single_nav_back {
    font-family: "M PLUS 2", sans-serif;
}
.archive_page h1 {
    font-family: var(--main-font);
}
.archive_page h1,
.single_page h1 {
    margin-top: 0;
}
.archive_page {
    max-width: 980px;
    width: 95%;
    margin: 0 auto;
    padding: 60px 0 0;
}
.archive_header {
    text-align: center;
    margin-bottom: 48px;
}
.archive_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media screen and (max-width: 768px) {
    .archive_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.archive_card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.archive_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}
.archive_card_thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
}
.archive_card_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.archive_card_nothumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(166,207,227,0.3);
}
.archive_card_nothumb img {
    width: 60%;
    height: auto;
    object-fit: contain;
    opacity: 0.5;
}
.archive_card_body {
    padding: 18px 20px 22px;
}
.archive_card_date {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 6px;
    font-family: "M PLUS 2", sans-serif;
}
.archive_card_title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.5;
}
.archive_card_excerpt {
    font-size: 13px;
    color: #777;
    font-family: "M PLUS 2", sans-serif;
    line-height: 1.6;
    letter-spacing: 0;
}
.archive_nav {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.archive_nav .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(53, 43, 46, 0.15);
    text-decoration: none;
    font-size: 15px;
    color: var(--font-color);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 3px 0 rgba(53, 43, 46, 0.12);
}
.archive_nav .page-numbers:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 rgba(53, 43, 46, 0.12);
}
.archive_nav .page-numbers.current {
    background: var(--font-color);
    color: #fff;
    border-color: var(--font-color);
    box-shadow: 0 3px 0 rgba(53, 43, 46, 0.35);
    transform: translateY(-1px);
}
.archive_nav .page-numbers.next,
.archive_nav .page-numbers.prev {
    font-size: 20px;
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    box-shadow: 0 3px 0 rgba(100, 160, 200, 0.4);
}
.archive_empty {
    text-align: center;
    padding: 80px 0;
    color: #999;
    font-size: 18px;
}

/* ==============================================
   シングルページ
================================================ */
.single_page {
    max-width: 760px;
    width: 95%;
    margin: 0 auto;
    padding: 60px 0 0;
}
.single_article {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.single_header {
    padding: 40px 48px 32px;
    text-align: center;
    border-bottom: 2px dotted rgba(0,0,0,0.08);
}
@media screen and (max-width: 768px) {
    .single_header { padding: 30px 24px 24px; }
}
.single_date {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 12px;
    font-family: "M PLUS 2", sans-serif;
}
.single_title {
    font-size: 22px;
    line-height: 1.5;
}
.single_thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.single_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single_content {
    padding: 40px 48px 56px;
    font-family: "M PLUS 2", sans-serif;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0;
}
@media screen and (max-width: 768px) {
    .single_content { padding: 28px 24px 40px; }
}
.single_content p { margin-bottom: 1.4em; }
.single_content h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 2em 0 0.8em;
    padding-left: 12px;
    border-left: 4px solid var(--main-color);
}
.single_content img {
    border-radius: 10px;
    margin: 1em 0;
}
.single_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.single_nav_link {
    font-size: 14px;
    color: var(--font-color);
    text-decoration: none;
    max-width: 36%;
    line-height: 1.4;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.single_nav_link:hover { opacity: 1; }
.single_nav_link:empty { visibility: hidden; }
.single_nav_back {
    display: inline-block;
    background: var(--font-color);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.single_nav_back:hover { opacity: 0.75; }
.single_nav_next { text-align: right; }

/* footer */
footer {
    /* background: #352B2E; */
    padding: 56px 20px 36px;
    text-align: center;
    /* margin-top: 60px; */
}
.footer_content {
    max-width: 560px;
    margin: 0 auto;
}
.footer_logo {
    width: 140px;
    margin: 0 auto 36px;
    opacity: 0.9;
}
.footer_nav {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
    margin-bottom: 28px;
}
.footer_nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer_nav a:hover {
    opacity: 0.5;
}
.footer_copy {
    font-family: "M PLUS 2", sans-serif;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    letter-spacing: 1px;
    line-height: 1;
}




@media screen and (max-width: 768px) {
    .mv {
        height: auto;
    }
    .title_h2 {
        font-size: 24px;
        letter-spacing: 4px;
    }
    .title_block {
        padding: 0 30px 20px;
    }
    .title_contents {
        width: 100%;
    }
    .title_block p {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
        padding: 16px 26px;
    }

    .story_contents {
        padding: 16px 26px;
    }
    .story_contents p {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    .chara_main {
        gap: 30px;
        margin-top: 0;
    }
    .chara_main .chara_card img {
        width: 120px;
    }

    .slider_btn {
        width: 32px;
        height: 32px;
    }
    .chara_slider_track .chara_card {
        flex: 0 0 90px;
    }
    .chara_slider_track .chara_card img {
        width: 90px;
    }

    .signboard_chara {
        width: 160px;
    }

    .story_contents::after {
        width: 28px;
        height: 28px;
    }
}


.news_img {
    width: 200px;
    margin-left: auto;
}