/* =========================================================
   INERTIA Inspired Website Style
   Concept:
   緊張感 / 浮遊感 / 加速 / 静かな熱量 / 近未来的な暗さ
   Theme: Cocoon Child
========================================================= */

/* ------------------------------
   Design Tokens
------------------------------ */

:root {
  --bg-black: #05070c;
  --bg-night: #080d18;
  --bg-deep: #0c1324;
  --bg-panel: rgba(14, 21, 36, 0.88);
  --bg-panel-solid: #101827;

  --text-main: #edf4ff;
  --text-sub: #a5b4c8;
  --text-muted: #6f7d92;

  --line-dark: rgba(255, 255, 255, 0.08);
  --line-blue: rgba(80, 190, 255, 0.42);
  --line-red: rgba(255, 68, 102, 0.34);

  --accent-blue: #55c8ff;
  --accent-cyan: #7ff6ff;
  --accent-red: #ff4268;
  --accent-violet: #8878ff;

  --glow-blue: 0 0 24px rgba(85, 200, 255, 0.26);
  --glow-red: 0 0 22px rgba(255, 66, 104, 0.2);
  --shadow-heavy: 0 22px 60px rgba(0, 0, 0, 0.48);

  --radius: 18px;
}

/* ------------------------------
   Base
------------------------------ */

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background:
    radial-gradient(circle at 18% 14%, rgba(85, 200, 255, 0.18), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(255, 66, 104, 0.12), transparent 27%),
    radial-gradient(circle at 50% 100%, rgba(136, 120, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #03050a 0%, #080d18 46%, #0d1526 100%);
  color: var(--text-main);
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  letter-spacing: 0.055em;
  line-height: 1.9;
  overflow-x: hidden;
}

/* 薄い走査線 */
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.028) 0,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px,
      transparent 5px
    );
  content: "";
  opacity: 0.3;
}

/* 斜めに走る加速ライン */
body::after {
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 34%,
      rgba(85, 200, 255, 0.075) 35%,
      transparent 37%,
      transparent 58%,
      rgba(255, 66, 104, 0.055) 59%,
      transparent 61%,
      transparent 100%
    );
  content: "";
  transform: rotate(-5deg);
}

/* 選択範囲 */
::selection {
  background: rgba(85, 200, 255, 0.28);
  color: #ffffff;
}

/* リンク */
a {
  color: var(--text-main);
  text-decoration: none;
  transition:
    color 0.22s ease,
    opacity 0.22s ease,
    text-shadow 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

a:hover {
  color: var(--accent-cyan);
  text-shadow: var(--glow-blue);
}

/* 画像 */
img {
  border-radius: 12px;
}

/* ------------------------------
   Overall Layout
------------------------------ */

.container,
.container-in,
#container,
#container-in,
.main,
.content,
#main {
  background: transparent;
}

.content-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 20px;
}

/* ------------------------------
   Header
------------------------------ */

.header-container,
#header-container {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 12, 0.96),
      rgba(5, 7, 12, 0.76)
    );
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-container::after,
#header-container::after {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(760px, 88%);
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--accent-blue),
      var(--accent-red),
      transparent
    );
  content: "";
  transform: translateX(-50%);
  opacity: 0.8;
}

.header-container-in,
#header-container-in {
  padding: 46px 20px 36px;
}

/* サイトタイトル */
.logo,
.logo-header,
.site-name-text {
  text-align: center;
}

.logo a,
.logo-header a,
.site-name-text a {
  display: inline-block;
  color: var(--text-main);
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(85, 200, 255, 0.28),
    0 0 42px rgba(255, 66, 104, 0.14);
}

.logo a::after,
.logo-header a::after,
.site-name-text a::after {
  display: block;
  width: 104px;
  height: 2px;
  margin: 16px auto 0;
  background:
    linear-gradient(
      90deg,
      var(--accent-blue),
      var(--accent-red)
    );
  box-shadow:
    0 0 18px rgba(85, 200, 255, 0.4),
    0 0 22px rgba(255, 66, 104, 0.2);
  content: "";
}

.logo a:hover,
.logo-header a:hover,
.site-name-text a:hover {
  color: var(--accent-cyan);
}

/* キャッチフレーズ */
.tagline,
.site-description {
  margin-top: 14px;
  color: var(--text-sub);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

/* ------------------------------
   Global Navigation
------------------------------ */

.navi,
#navi,
.navi-in,
#navi-in {
  background: rgba(5, 7, 12, 0.82);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navi-in > ul {
  justify-content: center;
}

.navi-in > ul > li > a {
  position: relative;
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 17px 22px;
  text-transform: uppercase;
}

.navi-in > ul > li > a:hover {
  background: transparent;
  color: var(--accent-cyan);
}

.navi-in > ul > li > a::before {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      var(--accent-blue),
      var(--accent-red)
    );
  box-shadow: var(--glow-blue);
  content: "";
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.navi-in > ul > li > a:hover::before {
  width: 62%;
}

/* ------------------------------
   Entry Cards / Index
------------------------------ */

.entry-card-wrap,
.related-entry-card-wrap,
.widget-entry-card-link,
.a-wrap {
  position: relative;
  background:
    linear-gradient(
      145deg,
      rgba(16, 24, 39, 0.94),
      rgba(8, 13, 24, 0.94)
    );
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* 上部の光線 */
.entry-card-wrap::before,
.related-entry-card-wrap::before,
.widget-entry-card-link::before,
.a-wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(85, 200, 255, 0.72),
      rgba(255, 66, 104, 0.55),
      transparent
    );
  content: "";
  opacity: 0.82;
}

/* 左の加速ライン */
.entry-card-wrap::after,
.related-entry-card-wrap::after {
  position: absolute;
  top: 18px;
  left: 0;
  width: 3px;
  height: calc(100% - 36px);
  background:
    linear-gradient(
      180deg,
      var(--accent-blue),
      var(--accent-red)
    );
  content: "";
  opacity: 0.72;
}

.entry-card-wrap:hover,
.related-entry-card-wrap:hover,
.widget-entry-card-link:hover,
.a-wrap:hover {
  border-color: var(--line-blue);
  box-shadow:
    var(--shadow-heavy),
    0 0 34px rgba(85, 200, 255, 0.17);
  transform: translateY(-5px) skewX(-0.45deg);
}

.entry-card,
.related-entry-card {
  padding: 21px 23px;
}

/* サムネイル */
.entry-card-thumb,
.related-entry-card-thumb {
  overflow: hidden;
  border-radius: 12px;
  background: #000000;
}

.entry-card-thumb img,
.related-entry-card-thumb img {
  width: 100%;
  border-radius: 12px;
  filter:
    contrast(1.08)
    saturate(0.82)
    brightness(0.84);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.entry-card-wrap:hover img,
.related-entry-card-wrap:hover img {
  transform: scale(1.045);
  filter:
    contrast(1.16)
    saturate(1.06)
    brightness(0.96);
}

/* 記事カードタイトル */
.entry-card-title,
.related-entry-card-title {
  color: var(--text-main);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.62;
  letter-spacing: 0.065em;
}

/* 抜粋 */
.entry-card-snippet,
.related-entry-card-snippet {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.85;
}

/* メタ情報 */
.entry-card-meta,
.post-date,
.post-update,
.entry-category {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.09em;
}

/* カテゴリーラベル */
.cat-label {
  background: rgba(85, 200, 255, 0.08);
  border: 1px solid rgba(85, 200, 255, 0.44);
  border-radius: 999px;
  color: var(--accent-cyan);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 4px 10px;
  box-shadow: var(--glow-blue);
}

/* ------------------------------
   Article Page
------------------------------ */

.article,
.entry-content {
  position: relative;
  background:
    linear-gradient(
      145deg,
      rgba(16, 24, 39, 0.96),
      rgba(6, 10, 18, 0.96)
    );
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow:
    var(--shadow-heavy),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  padding: 46px 50px;
  overflow: hidden;
}

/* 記事上部の光 */
.article::before,
.entry-content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--accent-blue),
      var(--accent-red),
      transparent
    );
  content: "";
}

/* 内側の縦ライン */
.article::after,
.entry-content::after {
  position: absolute;
  top: 42px;
  left: 24px;
  width: 1px;
  height: calc(100% - 84px);
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(85, 200, 255, 0.42),
      rgba(255, 66, 104, 0.3),
      transparent
    );
  content: "";
}

/* 記事タイトル */
.entry-title,
.article h1 {
  color: var(--text-main);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 22px rgba(85, 200, 255, 0.18),
    0 0 36px rgba(255, 66, 104, 0.08);
}

.article-header {
  margin-bottom: 38px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

/* 本文 */
.article p,
.entry-content p {
  margin-bottom: 1.75em;
  color: var(--text-main);
  font-size: 16.5px;
  line-height: 2;
}

/* 記事内リンク */
.article a,
.entry-content a {
  color: var(--accent-cyan);
  border-bottom: 1px solid rgba(127, 246, 255, 0.36);
}

.article a:hover,
.entry-content a:hover {
  color: #ffffff;
  border-color: var(--accent-red);
  text-shadow: var(--glow-blue);
}

/* ------------------------------
   Headings
------------------------------ */

.article h2,
.entry-content h2 {
  position: relative;
  margin: 2.8em 0 1.25em;
  padding: 0.82em 1em 0.82em 1.2em;
  background:
    linear-gradient(
      90deg,
      rgba(85, 200, 255, 0.13),
      rgba(255, 66, 104, 0.065),
      transparent
    );
  border: none;
  border-left: 4px solid var(--accent-blue);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(85, 200, 255, 0.18);
}

.article h2::after,
.entry-content h2::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 42%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      var(--accent-blue),
      var(--accent-red),
      transparent
    );
  content: "";
}

.article h3,
.entry-content h3 {
  position: relative;
  margin: 2.3em 0 1em;
  padding: 0 0 0.52em 1.05em;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-main);
  font-size: 20.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.article h3::before,
.entry-content h3::before {
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 7px;
  height: 7px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: var(--glow-red);
  content: "";
}

.article h4,
.entry-content h4 {
  margin: 1.9em 0 0.85em;
  color: var(--accent-cyan);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.article h4::before,
.entry-content h4::before {
  color: var(--accent-red);
  content: "INERTIA / ";
  font-size: 0.78em;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ------------------------------
   Lists
------------------------------ */

.article ul,
.article ol,
.entry-content ul,
.entry-content ol {
  margin-bottom: 1.8em;
  padding-left: 1.45em;
}

.article li,
.entry-content li {
  margin-bottom: 0.6em;
}

.article ul li::marker,
.entry-content ul li::marker {
  color: var(--accent-blue);
}

/* ------------------------------
   Quote / Box
------------------------------ */

blockquote {
  position: relative;
  background:
    linear-gradient(
      145deg,
      rgba(85, 200, 255, 0.08),
      rgba(255, 66, 104, 0.05)
    );
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--accent-red);
  border-radius: 12px;
  color: var(--text-sub);
  padding: 1.35em 1.5em;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

blockquote::before {
  display: block;
  margin-bottom: 0.55em;
  color: var(--accent-cyan);
  content: "INERTIA";
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Cocoonのボックス系 */
.information-box,
.question-box,
.alert-box,
.memo-box,
.comment-box,
.common-icon-box {
  background:
    linear-gradient(
      145deg,
      rgba(16, 24, 39, 0.94),
      rgba(6, 10, 18, 0.94)
    );
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--accent-blue);
  border-radius: 12px;
  color: var(--text-main);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

/* ------------------------------
   Code / Pre
------------------------------ */

pre,
code {
  border-radius: 10px;
  font-family:
    Menlo,
    Consolas,
    "Courier New",
    monospace;
}

code {
  background: rgba(85, 200, 255, 0.1);
  color: var(--accent-cyan);
  padding: 0.15em 0.38em;
}

pre {
  background: #03050a;
  border: 1px solid var(--line-dark);
  color: #dff8ff;
  padding: 1.25em;
  line-height: 1.75;
  box-shadow: inset 0 0 24px rgba(85, 200, 255, 0.08);
}

/* ------------------------------
   Buttons
------------------------------ */

.btn,
.button,
.wp-block-button__link,
.search-submit,
input[type="submit"] {
  background:
    linear-gradient(
      135deg,
      var(--accent-blue),
      var(--accent-violet)
    );
  border: none;
  border-radius: 999px;
  color: #05070c;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.78em 1.55em;
  text-transform: uppercase;
  box-shadow:
    0 10px 28px rgba(85, 200, 255, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.btn:hover,
.button:hover,
.wp-block-button__link:hover,
.search-submit:hover,
input[type="submit"]:hover {
  color: #ffffff;
  filter: brightness(1.12);
  box-shadow:
    0 14px 36px rgba(85, 200, 255, 0.34),
    0 0 26px rgba(255, 66, 104, 0.2);
  transform: translateY(-2px);
}

/* ------------------------------
   Sidebar
------------------------------ */

.sidebar,
#sidebar {
  color: var(--text-main);
}

.sidebar .widget,
#sidebar .widget {
  position: relative;
  background:
    linear-gradient(
      145deg,
      rgba(16, 24, 39, 0.92),
      rgba(6, 10, 18, 0.92)
    );
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-heavy);
  margin-bottom: 24px;
  padding: 24px 22px;
  overflow: hidden;
}

.sidebar .widget::before,
#sidebar .widget::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(85, 200, 255, 0.58),
      transparent
    );
  content: "";
}

/* サイドバー見出し */
.sidebar h2,
.sidebar h3,
.widget-title {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-main);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sidebar h2::before,
.sidebar h3::before,
.widget-title::before {
  color: var(--accent-cyan);
  content: "SYS / ";
  font-size: 0.8em;
  letter-spacing: 0.12em;
}

/* サイドバーリスト */
.sidebar ul {
  padding-left: 0;
  list-style: none;
}

.sidebar li {
  border-bottom: 1px solid var(--line-dark);
  padding: 0.7em 0;
}

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

.sidebar a {
  color: var(--text-sub);
}

.sidebar a:hover {
  color: var(--accent-cyan);
}

/* ------------------------------
   Search Form / Forms
------------------------------ */

.search-box,
.search-form {
  display: flex;
  gap: 8px;
}

.search-edit,
.search-field,
input[type="search"],
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background: rgba(5, 7, 12, 0.82);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--text-main);
  padding: 0.78em 1em;
}

textarea {
  border-radius: 14px;
}

.search-edit:focus,
.search-field:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(85, 200, 255, 0.14);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

/* ------------------------------
   Pagination
------------------------------ */

.pagination,
.page-numbers {
  text-align: center;
}

.pagination a,
.pagination span,
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  margin: 4px;
  background: rgba(16, 24, 39, 0.92);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--text-sub);
  font-weight: 800;
}

.pagination .current,
.page-numbers.current,
.pagination a:hover,
.page-numbers:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #05070c;
  box-shadow: var(--glow-blue);
}

/* ------------------------------
   Breadcrumb
------------------------------ */

.breadcrumb,
.breadcrumbs {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.09em;
}

.breadcrumb a,
.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
  color: var(--accent-cyan);
}

/* ------------------------------
   Tables
------------------------------ */

table {
  background: rgba(16, 24, 39, 0.92);
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  color: var(--text-main);
}

th {
  background: rgba(85, 200, 255, 0.12);
  color: var(--accent-cyan);
  font-weight: 800;
}

th,
td {
  border: 1px solid var(--line-dark);
  padding: 0.9em 1em;
}

/* ------------------------------
   Footer
------------------------------ */

.footer,
#footer,
.footer-container {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 12, 0.96),
      #03050a
    );
  border-top: 1px solid var(--line-dark);
  color: var(--text-sub);
  margin-top: 64px;
}

.footer::before,
#footer::before,
.footer-container::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, 88%);
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--accent-blue),
      var(--accent-red),
      transparent
    );
  content: "";
  transform: translateX(-50%);
}

.footer a,
#footer a {
  color: var(--text-main);
}

.footer a:hover,
#footer a:hover {
  color: var(--accent-cyan);
}

.footer-in,
.footer-container-in {
  padding: 42px 20px;
}

.copyright {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.13em;
}

/* ------------------------------
   Mobile Bottom Menu
------------------------------ */

.mobile-menu-buttons,
.mobile-footer-menu-buttons {
  background: rgba(5, 7, 12, 0.96);
  border-top: 1px solid var(--line-dark);
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-menu-buttons a,
.mobile-footer-menu-buttons a {
  color: var(--text-sub);
  font-size: 12px;
}

.mobile-menu-buttons a:hover,
.mobile-footer-menu-buttons a:hover {
  color: var(--accent-cyan);
}

/* ------------------------------
   Go To Top
------------------------------ */

.go-to-top-button,
.go-to-top {
  background:
    linear-gradient(
      135deg,
      var(--accent-blue),
      var(--accent-violet)
    );
  border-radius: 50%;
  color: #05070c;
  box-shadow: var(--glow-blue);
}

.go-to-top-button:hover,
.go-to-top:hover {
  background:
    linear-gradient(
      135deg,
      var(--accent-red),
      var(--accent-violet)
    );
  color: #ffffff;
}

/* ------------------------------
   Responsive
------------------------------ */

@media screen and (max-width: 1023px) {
  .content-in {
    padding: 32px 16px;
  }

  .article,
  .entry-content {
    padding: 40px 34px;
  }

  .article::after,
  .entry-content::after {
    left: 18px;
  }
}

@media screen and (max-width: 768px) {
  body {
    line-height: 1.84;
  }

  .header-container-in,
  #header-container-in {
    padding: 34px 14px 28px;
  }

  .logo a,
  .logo-header a,
  .site-name-text a {
    font-size: 26px;
    letter-spacing: 0.14em;
  }

  .tagline,
  .site-description {
    font-size: 11.5px;
    letter-spacing: 0.13em;
  }

  .navi-in > ul > li > a {
    padding: 13px 12px;
    font-size: 12px;
  }

  .content-in {
    padding: 22px 12px;
  }

  .entry-card,
  .related-entry-card {
    padding: 17px;
  }

  .entry-card-title,
  .related-entry-card-title {
    font-size: 17px;
  }

  .article,
  .entry-content {
    border-radius: 14px;
    padding: 32px 22px;
  }

  .article::after,
  .entry-content::after {
    display: none;
  }

  .entry-title,
  .article h1 {
    font-size: 25px;
    line-height: 1.55;
  }

  .article p,
  .entry-content p {
    font-size: 16px;
    line-height: 1.9;
  }

  .article h2,
  .entry-content h2 {
    font-size: 21px;
  }

  .article h3,
  .entry-content h3 {
    font-size: 18.5px;
  }

  .sidebar .widget,
  #sidebar .widget {
    padding: 20px 18px;
  }

  .footer-in,
  .footer-container-in {
    padding: 34px 16px 76px;
  }
}

@media screen and (max-width: 480px) {
  .logo a,
  .logo-header a,
  .site-name-text a {
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  .entry-title,
  .article h1 {
    font-size: 22px;
  }

  .article,
  .entry-content {
    padding: 28px 18px;
  }

  .article p,
  .entry-content p {
    font-size: 15.8px;
  }

  .article h2,
  .entry-content h2 {
    font-size: 19.5px;
  }

  .article h3,
  .entry-content h3 {
    font-size: 18px;
  }
}