@charset "utf-8";
/*
Theme Name: ONE CREATURE
Theme URI:
Description: SAMURAI BLUE Project for FIFA World Cup 2026™ 公式サイト用テーマ
Author: ©SCHNEID
Version: 2.0
------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@500;700&family=Noto+Sans+JP:wght@500;700&display=swap');

/* ==========================================================
   0. CSS Variables
   ========================================================== */
:root {
 /* Design System — ONE CREATURE */
 --primary-color: #004D9B;
 --accent-color: #00A651;
 --main-bg-color: #004D9B;
 --base-white: #fff;
 --sub-color: #707070;
 --border-color: rgba(255, 255, 255, 0.15);

 /* WP Content（白背景上で使用） */
 --text-color: #1A1A1A;
 --link-color: #ccc;
 --link-bg-color: #ebebeb;

 /* Typography */
 --font-heading: 'Roboto Condensed', 'Noto Sans JP', sans-serif;
 --font-body: 'Noto Sans JP', "Hiragino Sans", Meiryo, sans-serif;

 /* Motion */
 --transition-slow: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
 --transition-fast: all 0.3s ease;

 /* WP preset */
 --wp--preset--font-size--small: .9em;
}

/* ==========================================================
   1. Reset
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, nav, section,
time, mark, audio, video {
 font-size: 1em;
 margin: 0;
 padding: 0;
 border: 0;
 outline: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
 display: block;
}
html { font-size: 62.5%; height: -webkit-fill-available; }
body { -webkit-text-size-adjust: 100%; }
h1, h2, h3, h4, h5, h6 { font-weight: 500; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
:focus { outline: 0; }
ins { text-decoration: none; }
del { text-decoration: line-through; }
hr  { height: 0; margin: 0; padding: 0; border: 0; }

input, textarea, select {
 font-size: 16px;
 line-height: 1.1;
}
input, button, textarea, select { appearance: none; }
button {
 background-color: transparent;
 border: none;
 cursor: pointer;
 outline: none;
 padding: 0;
}

/* ==========================================================
   2. Base
   ========================================================== */
body, html { width: 100%; height: 100%; }
body {
 font-family: var(--font-body);
 font-size: 1.6rem;
 line-height: 2em;
 color: var(--base-white);
 background-color: var(--main-bg-color);
 font-weight: 500;
 overflow-x: hidden;
 -webkit-overflow-scrolling: touch;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 -webkit-tap-highlight-color: transparent;
 text-rendering: geometricPrecision;
 min-height: -webkit-fill-available;
 -webkit-touch-callout: none;
}
b, strong, .bold { font-weight: 700; }

/* 英字見出し */
html .en {
 font-family: var(--font-heading);
 font-optical-sizing: auto;
 font-style: normal;
 font-weight: 700;
 letter-spacing: normal;
 line-height: 1em;
}

/* Links */
a {
 color: inherit;
 text-decoration: none;
 transition: var(--transition-fast);
 cursor: pointer;
}
a:hover { opacity: .7; }

/* Images */
img {
 display: block;
 max-width: 100%;
 width: auto;
 height: unset;
 vertical-align: bottom;
 -webkit-backface-visibility: hidden;
 -webkit-user-drag: none;
 user-select: none;
 -webkit-user-select: none;
}
figure img { pointer-events: none; }

/* Scrollbar */
::-webkit-scrollbar       { width: 3px; height: 4px; }
::-webkit-scrollbar-thumb  { background: rgba(255, 255, 255, 0.7); border-radius: 2px; }
::-webkit-scrollbar-track  { background: rgba(0, 0, 0, 0.8); }

/* ==========================================================
   3. Utility
   ========================================================== */
.flex  { display: flex; }
.wrap  { flex-wrap: wrap; }
.t_flex { display: flex; flex-direction: row; flex-wrap: wrap; }
.flexbox {
 display: flex;
 align-items: center;
 justify-content: center;
}
.guard { pointer-events: none; cursor: default; }
.clear { clear: both; display: block; height: 0; overflow: hidden; visibility: hidden; width: 0; }
.clearfix::after { clear: both; content: " "; display: block; height: 0; visibility: hidden; }
.bg_white { background-color: rgba(255, 255, 255, 0.7); }
.ImgArea { position: relative; }
.ImgArea .clr {
 position: absolute;
 inset: 0;
 z-index: 10;
 background: rgba(255, 255, 255, 0);
}

/* ==========================================================
   4. Animations / Keyframes
   ========================================================== */
@keyframes fadeIn {
 from { opacity: 0 }
 to   { opacity: 1 }
}
@keyframes fadeUpAnime {
 from { opacity: 0; transform: translateY(40px); }
 to   { opacity: 1; transform: translateY(0); }
}
@keyframes expansionAnime {
 from { opacity: 0; transform: scale3d(0.5, 0.5, 0.5); }
 to   { opacity: 1; transform: scaleZ(0.5); }
}

.fadein  { opacity: 0; transform: translateY(40px); transition: all 1s; }
.fadein.scrollin { opacity: 1; transform: translateY(0); }
.fadeUp  { animation: fadeUpAnime 1s forwards; opacity: 0; }
.expansion { animation: expansionAnime 1s forwards; opacity: 0; }
#splash_logo .expansion { display: block; animation-delay: 1s; }

/* Loading */
.loading {
 position: fixed;
 inset: 0;
 z-index: 9999;
 background: var(--main-bg-color);
 overflow-y: hidden;
}

/* ==========================================================
   5. Layout
   ========================================================== */
#container {
 width: 100%;
 max-width: 1240px;
 margin: 0 auto;
 position: relative;
 min-height: 100%;
}
.contents {
 margin: 0 auto;
 width: 90%;
 max-width: 1200px;
 font-weight: 500;
 padding: 100px 0 80px;
}

/* ロゴ */
.header-logo {
 max-width: 640px;
 width: 90%;
 padding-top: 2rem;
 margin: 0 auto 2rem;
 position: relative;
 z-index: 120;
}
.header-logo a { display: block; opacity: 1; }

/* ==========================================================
   6. Title
   ========================================================== */
.title {
 text-align: center;
 margin: 0 auto 1em;
 font-weight: 700;
}
.title .jp {
 display: block;
 font-size: 32px;
 line-height: 1.6em;
 margin-top: .5em;
}

/* ==========================================================
   7. WP Layout
   ========================================================== */
.contents.c_header {
 padding: 0 0 10px;
}
.contents.c_header .article {
 margin: 0.5em auto;
}
.contents.c_main {
 padding: 0 0 30px;
 min-height: 60vh;
}
.contents.c_main.related {
 padding-top: 30px;
 padding-bottom: 20px;
 min-height: inherit;
}
.contents .article {
 max-width: 860px;
 margin: auto;
}

/* ==========================================================
   8. Article List — 記事一覧
   ========================================================== */
/* セクションタイトル */
.section-title {
 text-align: center;
 margin: 0 auto;
 font-weight: 700;
 font-size: 1.6em;
 line-height: 1.6em;
 color: var(--link-color);
 font-family: var(--font-heading);
}
.section-title .en {
 font-size: 1.8em;
 line-height: 1em;
 text-align: center;
}
.related .section-title {
 font-size: 1.8em;
 margin-bottom: .8em;
 color: var(--link-color);
}
.related .section-title.en {
 font-size: 2.4em;
 margin-bottom: .1em;
}
.related .getPostDispArea {
 justify-content: center;
 margin: 10px auto 0;
}
.cat {
 font-size: 1.2em;
 font-weight: 700;
 color: var(--text-color);
 display: block;
}

/* ボタン */
.btn { margin-top: clamp(30px, 20vh, 40px); }
.btn a {
 display: flex;
 justify-content: center;
 align-items: center;
 margin: 0 auto 1rem;
 padding: 1rem 2rem;
 width: 70%;
 max-width: 240px;
 font-size: 2.4rem;
 transition: var(--transition-fast);
 color: var(--base-white);
 border: 1px solid var(--base-white);
}
.btn a:hover { opacity: .7; }

/* カード一覧 */
.getPostDispArea {
 display: grid;
 clear: both;
 justify-content: left;
}
.getPostDispArea a:hover { text-decoration: none; }
.getPostDispArea .getPost {
 display: inline-block;
 background-color: var(--base-white);
 padding: 12px;
 color: var(--text-color);
}
.getPostDispArea .ImgArea {
 position: relative;
 width: 100%;
 padding-bottom: 60%;
 height: 0;
 display: block;
 overflow: hidden;
 background-color: var(--base-white);
 margin: 0 auto 10px;
}
.getPostDispArea .ImgArea .clr,
.wp-block-image .clr {
 inset: 0;
 width: 100%;
 height: 100%;
 position: absolute;
 margin: auto;
 z-index: 1;
}
.images, .wp-post-image {
 margin: auto;
 max-width: 100%;
 max-height: 100%;
 padding: 0;
 position: absolute;
 inset: 0;
 transition: var(--transition-slow);
}
a:hover .images,
a:hover .wp-post-image {
 transform: scale3d(1.1, 1.1, 1.1);
}
.getPostDispArea .cat {
 font-size: .8em;
 letter-spacing: normal;
 float: left;
 line-height: 18px;
 font-weight: 700;
 color: var(--sub-color);
}
.getPostDispArea .date {
 font-family: var(--font-heading);
 color: var(--sub-color);
 font-size: .8em;
 display: block;
 line-height: 18px;
 text-align: right;
 font-weight: 700;
}
.getPostDispArea .PostTitle {
 color: var(--primary-color);
 font-weight: 700;
 line-height: 1.6em;
 margin-bottom: 8px;
 margin-top: 3px;
 font-feature-settings: "palt" 1;
}

/* ==========================================================
   9. News Release — お知らせ一覧
   ========================================================== */
.newsRelease { margin-top: 8rem; }
.newsRelease-title { width: 20%; padding: 0 40px 0 0; }
.newsRelease-article { width: 80%; }
.newsRelease-article a:hover { color: var(--text-color); }
.article-list-item { border-top: 1px solid #ddd; }
.article-list-item:last-child { border-bottom: 1px solid #ddd; }
.article-list-item a {
 display: block;
 transition: 0.2s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.article-list-item dl { padding: 2rem 0; display: table; width: 100%; }
.article-list-item dl dt {
 display: table-cell;
 width: 120px;
 vertical-align: top;
 white-space: nowrap;
 padding-top: 1px;
 color: #bbb;
}
.article-list-item dl dd {
 display: table-cell;
 width: calc(100% - 120px);
 vertical-align: top;
}
.article-list-item dl dd strong { font-weight: 500; }
.read-media {
 color: var(--link-color);
 text-align: center;
 line-height: 1.6em;
}

/* ==========================================================
   10. Breadcrumb — パンくず
   ========================================================== */
#breadcrumb {
 padding: 2px 0;
 font-size: 1.2rem;
 width: 100%;
 background-color: rgba(0, 0, 0, 0.2);
 color: rgba(255, 255, 255, 0.8);
}
#breadcrumb ol {
 margin: 0 auto;
 width: 86%;
 max-width: 1200px;
 white-space: nowrap;
 overflow: hidden;
}
#breadcrumb ol li { display: inline-block; }
#breadcrumb ol li::after {
 content: " › ";
 color: rgba(255, 255, 255, 0.6);
 margin: 0 5px;
}
#breadcrumb ol li:last-child { overflow: hidden; text-overflow: ellipsis; }
#breadcrumb ol li:last-child::after { content: ""; padding-right: 10px; }
#breadcrumb ol li a { color: rgba(255, 255, 255, 0.7); cursor: pointer; }
#breadcrumb ol li a:hover { color: var(--base-white); }

/* ==========================================================
   11. Article Box — 記事コンテナ
   ========================================================== */
.article-box {
 width: 100%;
 color: var(--text-color);
}
.article-box .contents {
 padding: 20px 5%;
 margin: 0 auto;
 background: var(--base-white);
 margin-top: 2px;
 color: var(--text-color);
}
.article-box .entry-header .contents {
 padding-top: 30px;
 padding-bottom: 25px;
 margin: 0 auto;
}
.article-box .txt-center { text-align: center; }
.article-box .date {
 float: right;
 font-size: 0.9em;
 margin-top: 0.2em;
 color: var(--sub-color);
 font-weight: 700;
 font-family: var(--font-heading);
}
.article-box .category-list .post-categories { font-size: 0; }
.article-box .category-list .post-categories li { display: inline-block; }
.article-box .category-list a {
 font-size: 15px;
 font-weight: 700;
 display: block;
 margin-bottom: 0.8rem;
 margin-right: 0.5rem;
 transition: var(--transition-slow);
 padding: 0.05em 1em;
 background: var(--link-bg-color);
 color: var(--primary-color);
}

/* ==========================================================
   12. Entry — 記事ヘッダー＆本文
   ========================================================== */
.entry-header { padding: 0; position: relative; }
.entry-header .pagettl {
 font-size: 2em;
 line-height: 1.6em;
 font-weight: 700;
 clear: both;
 font-feature-settings: "palt";
 overflow-wrap: break-word;
 letter-spacing: 1px;
}
.page-template-default .entry-header .pagettl { text-align: center; }

.entry-content {
 font-size: clamp(1.5rem, 2vw, 1.8rem);
 line-height: 2em;
 padding-bottom: 2rem;
 min-height: 20vh;
}
.entry-content p,
.entry-content ul,
.entry-content ol,
.decimal, .disc { margin-bottom: 2.2rem; }
.decimal, .disc,
.entry-content ul,
.entry-content ol { margin-left: 2em; }
.entry-content .blocks-gallery-grid { margin: 0; }
.decimal li, .disc, .entry-content ol li { list-style-type: decimal; margin-bottom: 10px; }
.disc li, .entry-content ul li { list-style-type: disc; margin-bottom: 10px; }
.disc li::marker, .entry-content ul li::marker { color: var(--text-color); }
.entry-content a { color: var(--primary-color); text-decoration: underline; word-break: break-all; }
.entry-content table a { color: var(--primary-color); }
.entry-content a:hover { text-decoration: none; }
.entry-content p.q { font-weight: 700; color: #888; }
.entry-content p.q span { margin-right: 10px; }
.entry-content .bgred { background-color: #fff100; color: var(--base-white); padding: 1em; font-size: 1.2em; }

/* 見出し */
.entry-content h1, .entry-content h2,
.entry-content h3, .entry-content h4 { font-weight: 700; line-height: 1.6em; }
.entry-content h1, .entry-content h2 {
 margin: 3rem 0 2rem;
 position: relative;
 font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.entry-content h3 {
 border-bottom: 1px solid #c0c0c0;
 margin: 3rem 0 1rem;
 padding-bottom: 5px;
 font-size: clamp(1.8rem, 3.8vw, 2.6rem);
}
.entry-content h4 { font-size: clamp(1.7rem, 3.6vw, 2.2rem); margin: 3rem 0 1rem; }
.has-small-font-size { line-height: 1.8em; }
.entry-content .ttl { border-bottom: none; }

/* ==========================================================
   13. Article Meta & Navigation — タグ＆前後リンク
   ========================================================== */
#main .article-box .meta {
 margin-top: 3rem;
 padding-top: 3rem;
 padding-bottom: 1.5rem;
}
#main .article-box .meta .group {
 float: left;
 font-size: 13px;
 font-weight: 700;
 margin-top: 0.13em;
 color: var(--text-color);
 letter-spacing: .1px;
 margin-right: 10px;
}
#main .article-box .meta ul { margin-bottom: 0.5rem; font-size: 0; }
#main .article-box .meta .category-list ul { margin-left: 75px; }
#main .article-box .meta .tags-list ul { margin-left: 36px; }
#main .article-box .meta ul li { display: inline-block; vertical-align: top; }
#main .article-box .meta ul li a {
 padding: 0.05em 1em;
 background: var(--link-bg-color);
 color: var(--primary-color);
 font-size: 13px;
 font-weight: 700;
 text-decoration: none;
 display: inline-block;
 margin-bottom: 0.8rem;
 margin-right: 0.5rem;
 transition: var(--transition-slow);
}
#main .article-box .meta ul li a:hover { opacity: .6; }

.post-navigation {
 width: 90%;
 max-width: 1200px;
 margin: auto;
 justify-content: center;
}
.post-navigation li { display: inline-block; width: 50%; }
.post-navigation li.nav-previous { padding-right: 3vw; }
.post-navigation li.nav-next { padding-left: 3vw; position: relative; }
.post-navigation li.nav-next::before {
 content: "";
 border-left: 1px solid rgba(255, 255, 255, 1);
 position: absolute;
 left: -1px;
 top: 0;
 height: 100%;
}
.post-navigation a { display: block; padding: 40px 0 30px; text-decoration: none; }
.post-navigation .meta-nav {
 color: var(--link-color);
 display: block;
 margin-bottom: 0.8rem;
 font-size: 1.6em;
 text-align: center;
}
.post-navigation li .ImgArea {
 position: relative;
 width: 110px;
 height: 110px;
 overflow: hidden;
 margin: 0 auto 10px;
 background: var(--base-white) url("common/images/news/logo-navi.png") no-repeat center center;
 background-size: 50% auto;
}
.post-navigation li .ImgArea .clr { z-index: 1; width: 100%; height: 100%; }
.post-navigation li .ImgArea img {
 position: absolute;
 margin: auto;
 inset: 0;
 max-height: 100%;
 background-color: var(--base-white);
}

/* Not Found */
.notfound {
 text-align: center;
 padding: 30vh 0;
 color: var(--base-white);
 font-size: 5rem;
}
.notfound-txt {
 text-align: center;
 padding: 80px 0;
 color: var(--link-color);
 font-size: 5rem;
}

/* ==========================================================
   14. WordPress Blocks
   ========================================================== */
figure, .wp-block-embed { margin: 3rem auto; }
.youtube-container { text-align: center; }

/* Image */
.wp-block-image { max-width: 800px; text-align: center; margin: 3rem auto; position: relative; }
.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image.is-resized { max-width: 800px; display: table; margin: 3rem auto; }
.wp-block-image.size-full,
.wp-block-image.size-large { max-width: 100%; }
.wp-block-image img { max-width: 100%; max-height: 700px; width: auto; margin: auto; height: inherit !important; }
.wp-block-image figcaption { line-height: 1.6em; color: #999; }

/* Gallery */
.wp-block-gallery { margin: 3rem auto; justify-content: center; }
.blocks-gallery-grid { justify-content: center; }
.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption { box-sizing: border-box; }
.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption { line-height: 1.6em; color: #999; }

/* Separator */
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) { max-width: 200px; }
.wp-block-separator { border-bottom: 1px solid #ddd; margin-top: 4rem; margin-bottom: 4rem; }

/* Buttons */
.wp-block-buttons { text-align: center; }
.wp-block-buttons .wp-block-button { min-width: 48%; margin: 3rem auto; }
.wp-block-button .wp-block-button__link {
 width: 100%;
 font-weight: 700;
 transition: opacity 0.3s ease-out;
}
.wp-block-button .wp-block-button__link:hover { text-decoration: none; opacity: 0.7; }

/* Embed */
.is-type-video .wp-block-embed__wrapper { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; overflow: hidden; }
.is-type-video .wp-block-embed__wrapper iframe { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.is-type-wp-embed .wp-block-embed__wrapper iframe.wp-embedded-content { width: 100%; }

/* Quote */
.wp-block-quote { border-left: 4px solid #ccc; }

/* ==========================================================
   15. Tables — 表
   ========================================================== */
.wp-block-table table,
.entry-content .is-style-regular table,
.entry-content .tbList {
 width: 100%;
 border-collapse: collapse;
 border-spacing: 0;
 border: 0;
 vertical-align: middle;
 margin-bottom: 1.5em;
 font-feature-settings: "palt" 1;
}
.entry-content td, .entry-content th,
.wp-block-table td, .wp-block-table th,
.entry-content .is-style-regular td, .entry-content .is-style-regular th,
.entry-content .tbList td, .entry-content .tbList th {
 padding: 1em .5em;
 border: 1px solid var(--link-bg-color);
 word-break: normal;
 text-align: left;
 vertical-align: middle;
 font-size: 0.9em;
 line-height: 1.6em;
}
.entry-content tr:first-of-type,
.wp-block-table tr:first-of-type,
.entry-content .is-style-regular tr:first-of-type,
.entry-content .tbList tr:first-of-type,
.entry-content .wp-block-table.is-style-stripes tbody tr:first-of-type {
 text-align: center;
 color: var(--primary-color);
 white-space: nowrap;
 background: var(--link-bg-color);
 background-size: cover;
}
.wp-block-table tr:first-of-type td { text-align: center; padding: .6em .5em; }

.wp-block-table td em {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 font-weight: 700;
 background-color: var(--accent-color);
 color: var(--base-white);
 padding: 1px 3px 2px;
 font-size: .95em;
 font-style: normal;
 line-height: 1em;
 margin-right: 3px;
}
.entry-content .wp-block-table { margin-top: 0; }
.entry-content .wp-block-table.is-style-stripes { border-bottom: none; margin-bottom: 3em; font-size: 0.9em; line-height: 1.6em; }
.entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) { background-color: #f5f7fb; }
.entry-content .drama-table td:first-child { width: 30%; }
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th { font-size: 0.9em; }
.wp-block-table.is-style-stripes td { word-break: break-all; }
.wp-block-table.is-style-stripes td a { text-decoration: underline; }
.wp-block-table.is-style-stripes td a:hover { text-decoration: none; }
.wp-block-table.is-style-regular figcaption { line-height: 1.6em; margin-top: 30px; text-align: left; }

/* ==========================================================
   16. SNS Sharing
   ========================================================== */
.arti-sharing-inner {
 display: flex;
 justify-content: center;
 align-items: center;
 margin-top: 2rem;
}
.arti-sharing-inner::before {
 content: "Share";
 margin-right: 20px;
 font-family: var(--font-heading);
 font-size: 1.2em;
 font-weight: 700;
 color: var(--primary-color);
}
.arti-sharing-inner .item { display: inline-flex; align-items: center; margin: 0 10px; }
.arti-sharing-inner .item .link {
 color: var(--primary-color);
 border: 1px solid var(--primary-color);
 background: none;
 width: 38px;
 height: 38px;
 display: inline-block;
 text-align: center;
 position: relative;
}
.arti-sharing-inner .item .link .label { font-size: 0; }
.arti-sharing-inner .item svg {
 height: 38px;
 fill: var(--primary-color);
 transition: fill 0.1s ease-in 0s;
 position: absolute;
 inset: 0;
 margin: auto;
}
.arti-sharing-inner .item svg.svg-line { height: 24px; }
.arti-sharing-inner .item svg.svg-x { height: 20px; }

/* Footer 内シェアボタン */
.share .item { margin: 0 5px; position: relative; }
.share .item .link {
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 z-index: 20;
 width: 40px;
 height: 40px;
 position: relative;
}
.share .item .link:hover { opacity: .5; }
.share .item svg { display: block; margin: auto; position: absolute; inset: 0; width: 28px; height: 28px; }
.share .item .link .label { font-size: 0; }
.share .item svg.svg-x { padding-top: .5px; width: 30px; height: 30px; }
.share .item svg.svg-line { padding-top: 1.5px; width: 36px; height: 36px; }

/* ==========================================================
   17. Pagination — ページネーション
   ========================================================== */
#pagination, .pagenation_page {
 text-align: center;
 margin-top: 20px;
 margin-bottom: 30px;
 font-size: 0;
}
#pagination li { display: inline-block; vertical-align: top; }
#pagination a, #pagination span,
.pagenation_page a, .pagenation_page span {
 font-size: 15px;
 font-family: Arial, Helvetica, sans-serif;
 font-weight: bold;
 position: relative;
 display: block;
 width: 50px;
 height: 50px;
 border-radius: 50%;
 line-height: 50px;
 margin: 5px;
 text-decoration: none;
 background-color: rgba(255, 255, 255, 0.15);
 color: var(--base-white);
 transition: var(--transition-fast);
}
#pagination span, #pagination a:hover,
.pagenation_page a:hover, .pagenation_page span {
 background: rgba(255, 255, 255, 0.3);
 opacity: 1;
}
#pagination .page-numbers.current,
.pagenation_page .page-numbers.current {
 background: var(--base-white);
 color: var(--primary-color);
}
#pagination a.next.page-numbers, #pagination a.prev.page-numbers,
.pagenation_page a.next, .pagenation_page a.prev {
 font-family: "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
#pagination .dots, .pagenation_page .dots {
 background: none;
 color: var(--base-white);
 width: 20px;
 font-size: 20px;
 line-height: 2em;
}
.pagenation_page a, .pagenation_page span { display: inline-block; vertical-align: top; }
.pagenation_page a.next, .pagenation_page a.prev { font-size: 0; }
.pagenation_page a.next::before { content: "→"; font-size: 13px; }
.pagenation_page a.prev::before { content: "←"; font-size: 13px; }

/* ==========================================================
   18. Sub Menu — サブナビ（メディアページ等）
   ========================================================== */
.gnav .menu {
 margin: 0 auto 1rem;
 width: 100%;
 max-width: 1150px;
 display: block;
 text-align: center;
 letter-spacing: -0.04em;
}
.gnav .menu li {
 display: inline-block;
 width: 20%;
 max-width: 220px;
 padding: 0 0.5%;
 letter-spacing: normal;
 margin-bottom: 20px;
 vertical-align: bottom;
}
.gnav .menu li a {
 font-size: clamp(1.4rem, 2vw, 1.8rem);
 font-weight: 700;
 white-space: nowrap;
 width: 100%;
 display: flex;
 text-align: center;
 align-items: center;
 justify-content: center;
 padding: 2%;
 height: 34px;
 text-decoration: none;
 background-color: var(--primary-color);
 color: var(--base-white);
 transition: var(--transition-fast);
}
.gnav .menu li a:hover { opacity: .7; }

.ttl-media {
 margin: 0 0 1.6rem;
 font-weight: 700;
 position: relative;
 font-size: 1.6em;
 line-height: 1.6em;
 text-align: center;
}
.cap { line-height: 1.2em; font-size: .8em; margin: -1rem 0 1rem; }

/* ==========================================================
   19. Footer
   ========================================================== */
.fotter {
 padding: 1em 0;
 color: var(--base-white);
}
.copyright {
 display: block;
 text-align: center;
 font-size: 1.2rem;
 max-width: 390px;
 width: 82%;
 margin: auto;
}

/* ==========================================================
   20. Responsive Helpers
   ========================================================== */
.sp { display: none; }

/* ==========================================================
   21. Media Queries
   ========================================================== */

/* --- max-width: 1080px --- */
@media screen and (max-width: 1080px) {
 .p_title-jp { font-size: 3vw; }
}

/* --- max-width: 812px (Mobile) --- */
@media screen and (max-width: 812px) {
 body { font-size: 1.4rem; }

 /* Layout */
 .contents { padding: 80px 0 60px; }
 .contents.c_header { padding: 10px 0 0; }
 .contents.c_main { padding: 10px 0; }
 .header-logo { padding-top: 1rem; margin-bottom: 1rem; }

 /* Title */
 .title { font-size: 1.4em; }
 .title .en { font-size: 8vw; }
 .title .jp, .p_title-jp { font-size: 5.2vw; }
 .title .lead-sub { font-size: 13px; }
 .title.ux { line-height: 1.4em; }
 .title.ux .lead-sub { font-size: 14px; margin-top: 16px; }
 .title.section-title { font-size: 1.6em; }
 .p_title-en { font-size: 4vw; }
 .subttl { font-size: 1.2em; }

 /* Contents */
 .contents .read { text-align: left; }
 .contents .read br { display: none; }
 .contents .ttl-border:before { margin: 0 auto 30px; }
 .header .gnavi ul .menu-item .en { font-size: 1.2rem; }
 .read.catch, .read { font-size: 1.1em; }

 /* News Release */
 .newsRelease-title { width: 100%; padding: 0; margin-bottom: 30px; text-align: center; }
 .newsRelease-article { width: 100%; }
 .article-list-item dl { padding: 20px 0; display: block; font-size: 1.4rem; }
 .article-list-item dl dt,
 .article-list-item dl dd { display: block; width: 100%; }

 /* Article List */
 .section-title, .related .section-title { font-size: 1.5em; }
 .section-title .en { font-size: 1.6em; }
 .getPostDispArea { grid-template-columns: repeat(2, 1fr); grid-gap: 12px; }
 .related .getPostDispArea { grid-template-columns: 1fr; grid-gap: 30px; max-width: 480px; }
 .getPostDispArea .getPost { padding: 10px; }
 .getPostDispArea .PostTitle { font-size: 1em; line-height: 1.4em; }

 /* Article Page */
 .article-box .contents { width: 100%; }
 .article-box .entry-header .contents { padding-bottom: 18px; }
 .entry-header .pagettl { font-size: 1.5em; }
 .wp-block-buttons .wp-block-button { min-width: 100%; display: block; }
 .wp-block-button .wp-block-button__link { font-size: 1.1em; padding: 12px; }
 .blocks-gallery-grid .blocks-gallery-image figcaption,
 .blocks-gallery-grid .blocks-gallery-item figcaption,
 .wp-block-gallery .blocks-gallery-image figcaption,
 .wp-block-gallery .blocks-gallery-item figcaption { padding: 10px 5% 5px; font-size: 0.7em; }
 .wp-block-separator { margin-top: 5rem; margin-bottom: 5rem; }
 iframe { max-width: 100%; }

 /* Navigation */
 .post-navigation { width: 100%; }
 .post-navigation li.nav-previous,
 .post-navigation li.nav-next { padding-left: 3vw; padding-right: 3vw; }

 /* Sub Menu */
 .gnav .menu { display: flex; justify-content: center; margin: 0 -4% 10px; width: 108%; }
 .gnav .menu li { width: 24%; margin: 0 0 10px; }

 /* Misc */
 .p_btn-in { margin-right: -5%; }
 .notfound { font-size: 2em; }
 #breadcrumb { font-size: 0.75em; }

 /* Responsive switch */
 .sp { display: block; }
 .pc { visibility: hidden; display: none !important; }
 .pagetop { right: 10px; bottom: 10px; }
}

/* --- max-width: 660px --- */
@media screen and (max-width: 660px) {
 .mv-title { background: rgba(255, 255, 255, 0.6); }
 video { width: auto; }
}

/* --- max-width: 430px (Small Mobile) --- */
@media screen and (max-width: 430px) {
 .getPostDispArea { grid-template-columns: 1fr; grid-gap: 12px; }
 html .wp-block-table, html .ttl-media { margin-left: -5%; margin-right: -5%; }
 html .ttl-media { font-size: 1.2em; }
 .wp-block-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
 .entry-content td, .entry-content th,
 .wp-block-table td, .wp-block-table th,
 .entry-content .is-style-regular td, .entry-content .is-style-regular th,
 .entry-content .tbList td, .entry-content .tbList th { white-space: nowrap; }
}

/* --- min-width: 813px (Desktop) --- */
@media screen and (min-width: 813px) {
 .center { text-align: center; }
 .contents .read, .read-media { font-size: 1.1em; }
 .article-list-item dl { font-size: 1.5rem; }

 /* Article List */
 .contents.c_main { width: 90%; max-width: 1200px; }
 .getPostDispArea { display: flex; gap: 40px 3.5%; justify-content: center;}
 .getPostDispArea .getPost { width: 31%; }

 /* Article Page */
 .article-box .contents { padding: 50px 5vw; }
 .post-navigation li .ImgArea { display: inline-block; }
 .post-navigation li.nav-previous .ImgArea { float: left; margin-right: 2rem; }
 .post-navigation li.nav-next .ImgArea { float: right; margin-left: 2rem; }

 /* Form */
 .contact .item { width: 25%; display: inline-block; }
 .contact input { width: 70%; }
 .contact .error { margin-left: 26%; }
}

/* --- min-width: 1200px (Wide) --- */
@media screen and (min-width: 1200px) {
 .article-box .contents { padding-left: 100px; padding-right: 100px; }
}

/* ==========================================================
   22. Print
   ========================================================== */
@media print {
 img, .header, .post-navigation, .related, footer { display: none !important; }
}

/* ==========================================================
   23. ナビゲーション カスタマイズ
   ========================================================== */
@media screen and (min-width: 813px) {
 .menu-toggle {
  background-color: var(--base-white);
  transform: scale(1);
  opacity: 1;
 }
 .menu-toggle-text {
  color: var(--primary-color);
 }
}