@charset "UTF-8";
/* CSS Document */
/* === Modern Reset CSS with Accessibility and Maintainability in Mind === */
/* Box-sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ロゴ用フォント定義（サイト共通で使える） */
:root {
  --font-logo: "Noto Serif JP","Hiragino Mincho ProN","Yu Mincho",serif;
  --font-ui: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  /* ロゴの色（和紙背景想定） */
  --logo-main: #1a1a1a;
  --logo-sub: #4a4a4a;
  --logo-line: rgba(120,95,65,0.28);
}

/* Universal Reset */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font: inherit;
  vertical-align: baseline;
  background: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  color: inherit;
  text-decoration: none;
}

/* HTML5 display reset */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(16px, 16px + 0.6vw, 18px);
  line-height: 1.65;
  color: #1a1a1a;
  background-color: #fafafa;
  -webkit-text-size-adjust: 100%;
}

p {
  font-size: clamp(1.1rem, 1rem + 0.2vw, 1.1rem);
  line-height: 1.85;
  margin: 0 0 1em 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  color: #4180ff;
  text-decoration: none;
}

a:hover, a:active {
  color: #225ccc;
}

/* Form Elements */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.5em;
  border-radius: 4px;
  line-height: 1.4;
}

input:focus, textarea:focus, select:focus {
  background-color: #ffffe8;
  border-color: #888;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: middle;
  cursor: pointer;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

input[type=submit], input[type=button] {
  background-color: #eee;
  color: #333;
  border: 1px solid #999;
  padding: 0.5em 1em;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #ccc;
  transition: all 0.2s;
}

input[type=submit]:hover,
input[type=button]:hover {
  border-color: #666;
  background-color: #f0f0f0;
}

input[type=submit]:active,
input[type=button]:active {
  box-shadow: inset 1px 1px 1px #ccc;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 0.5em;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

::-moz-placeholder {
  color: #bbb;
}

::placeholder {
  color: #bbb;
}

/* =========================
	layout
========================= */
.layout-wrapper {
  margin: 0;
  width: 100%;
}

.layout-header {
  width: 100%;
  box-sizing: border-box;
}

/* =========================
	基本（PC想定）
	- 右: 300px 固定
	- 左: 160px 固定（PCでは左に表示）
	- 中: 残り
========================= */
.layout-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}

/* PC版だけ左右に余白を入れる（ウインドウにくっつかない） */
@media (min-width: 1025px) {
  .layout-container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* 中央（残り幅） */
.layout-middle {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  order: 2;
}

/* 右（固定300px） */
.layout-right {
  flex: 0 0 300px;
  width: 300px;
  box-sizing: border-box;
  order: 3;
}

/* 左（固定160px） */
.layout-left {
  flex: 0 0 160px;
  width: 160px;
  box-sizing: border-box;
  order: 1;
}

/* =========================
	タブレット（768px〜1024px）
	- 上段：middle（フル幅）
	- 下段：right（300px固定） + left（残り）
	- 右は広告枠なので固定維持
========================= */
@media (min-width: 768px) and (max-width: 1024px) {
  .layout-container {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 16px;
  }
  /* 上段：middle フル幅 */
  .layout-middle {
    flex: 0 0 100%;
    width: 100%;
    order: 1;
  }
  /* 下段：right 300px固定 */
  .layout-right {
    flex: 0 0 300px;
    width: 300px;
    order: 2;
  }
  /* 下段：left は残り（固定160にしないで詰まり回避） */
  .layout-left {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    order: 3;
  }
}
/* =========================
	スマホ（〜767px）
	- 縦並び
	- middle → right → left
	- right/left は 100%
========================= */
@media (max-width: 767px) {
  .layout-container {
    max-width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 14px;
  }
  .layout-middle {
    width: 100%;
    flex: 0 0 auto;
    order: 1;
  }
  .layout-right {
    width: 100%;
    flex: 0 0 auto;
    order: 2;
  }
  .layout-left {
    width: 100%;
    flex: 0 0 auto;
    order: 3;
  }
}
/* ====================================================================================================
	メインのレイアウト
==================================================================================================== */
.main-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: clamp(14px, 2.5vw, 24px);
  padding-right: clamp(14px, 2.5vw, 24px);
  box-sizing: border-box;
  /* =========================
  	PC版ではパディングを使わない
  ========================= */
}

/* ====================================================================================================
	右側コンテンツの下マージン（PC: 左右マージンなし）
==================================================================================================== */
.right-content-box {
  max-width: 1100px;
  box-sizing: border-box;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: clamp(0.75rem, 1.8vw, 1.5rem);
}

/* タブレット：左右に余白を付ける（画面端ベタ付き回避） */
@media (max-width: 1024px) {
  .right-content-box {
    margin-left: clamp(14px, 2.5vw, 24px);
    margin-right: clamp(14px, 2.5vw, 24px);
    margin-bottom: clamp(0.75rem, 2.5vw, 1.25rem);
    margin-inline: clamp(14px, 3vw, 24px);
  }
}
/* スマホ：余白と下マージンを安定させる */
@media (max-width: 600px) {
  .right-content-box {
    margin-left: 14px;
    margin-right: 14px;
    margin-bottom: 1.5rem;
  }
}
/* CSS Document */
/*-------------------------------------------
	サブページのmain枠
-----------------------------------------------*/
.subpage {
  max-width: 1000px;
  margin: auto 10px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: clamp(20px, 4vw, 40px);
}

/*-------------------------------------------
	ツールページのヘッダ h1
-----------------------------------------------*/
.tool-header {
  margin-bottom: 32px;
}
.tool-header__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.tool-header__desc {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

.reiwanen-cmn-title {
  margin: 0 0 10px 0;
  text-align: center;
  font-size: clamp(1.5rem, 3.2vw, 1.9rem);
  line-height: 1.2;
  font-weight: 900;
}
.reiwanen-cmn-title a {
  color: #222;
  text-decoration: none;
}
.reiwanen-cmn-title a:hover {
  text-decoration: underline;
}
.reiwanen-cmn-title a:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
}

/*-------------------------------------------
	toppage
-----------------------------------------------*/
.sitetitle {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin: 10px 0 30px 0;
}

.mainbox {
  margin-bottom: 30px;
}

.pageexp {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.tools {
  margin: 10px 10px;
  border-radius: 10px;
  background-color: khaki;
  padding: 10px 15px 15px 15px;
}

.selectarea {
  margin-bottom: 10px;
}

.toolsform {
  text-align: center;
}

.advbanner {
  text-align: center;
}

/*-------------------------------------------
	共通ボタン
-----------------------------------------------*/
.btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: #888888;
  color: #fff;
}
.btn--primary:hover {
  background: #aaaaaa;
  color: #fff;
}
.btn--block {
  display: block;
  width: 100%;
}

@media (max-width: 767px) {
  .btn--block-sp {
    display: block;
    width: 100%;
  }
}
/*-------------------------------------------
	SEO文言ブロック
-----------------------------------------------*/
.tool-seo {
  margin: 24px 0 8px;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.tool-seo p {
  font-size: 0.82rem;
  color: #888888;
  line-height: 1.8;
  margin: 0;
}

.back-to-top {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}
.back-to-top__link {
  display: inline-block;
  font-size: 0.9rem;
  color: #888888;
  padding: 10px 24px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: background 0.15s, border-color 0.15s;
}
.back-to-top__link:hover {
  background: #f5f5f5;
  border-color: #bbb;
  color: #1a1a1a;
}

/* =========================
	ヘッダー
	PC / SP 対応
========================= */
.siteheader {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 12px;
  box-sizing: border-box;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: clamp(12px, 2.2vw, 22px);
}

/* スマホ（SP） */
@media (max-width: 767px) {
  .siteheader {
    margin-bottom: clamp(10px, 3.2vw, 16px);
    padding: 16px 10px;
  }
}
/* PC */
@media (min-width: 1025px) {
  .siteheader {
    margin-bottom: clamp(16px, 1.6vw, 26px);
  }
}
/* =========================
	ロゴブロック
========================= */
.siteheader .site-logo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* h1（見た目担当） */
.siteheader .site-logo__main {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* a（挙動だけ担当・見た目は継承） */
.siteheader .site-logo__link {
  display: inline-block;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-shadow: inherit;
  text-decoration: none;
}

/* visitedで色を変えない */
.siteheader .site-logo__link:visited {
  color: inherit;
}

/* hover：ほんのり反応 */
.siteheader .site-logo__link:hover {
  opacity: 0.92;
}

/* フォーカス */
.siteheader .site-logo__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 6px;
  border-radius: 6px;
}

/* 「？」 */
.siteheader .site-logo__main .mark {
  font-weight: 700;
  opacity: 0.95;
}

/* 帯は不要なので非表示 */
.siteheader .site-logo__rule {
  display: none;
}

/* サブタイトル */
.siteheader .site-logo__sub {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

/* 空ブロック対策 */
.siteheader > :not(.site-logo):empty {
  display: none;
}

/* =========================================
	Footer
========================================= */
.footer {
  /* 上部マージン（コンテンツとの間隔調整） */
  margin-top: clamp(2rem, 5vw, 2rem);
  /* まとめダネ！風の黒背景 */
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  line-height: 1.6;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1rem;
}
.footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
  color: #fff;
}

/* =========================================
	Inner Layout
========================================= */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

/* =========================================
	Column
========================================= */
.footer-col {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col .footer-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}
.footer-col li {
  margin-bottom: 0.5em;
}
.footer-col li:not(.footer-title) a {
  display: inline-block;
  word-break: break-word;
}

/* =========================================
	QR Code Block
========================================= */
.footer-qrcode {
  margin-top: 0.75rem;
  padding: 0.9rem 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}
.footer-qrcode .footer-qrcode__title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  letter-spacing: 0.02em;
}
.footer-qrcode .footer-qrcode__img {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-qrcode img {
  width: min(180px, 100%);
  height: auto;
  display: block;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  box-sizing: border-box;
}

/* =========================================
	Copyright
========================================= */
.footer-copyright {
  display: block;
  margin-top: 2rem;
  text-align: center;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* =========================================
	Mobile (～600px)
========================================= */
@media (max-width: 600px) {
  .footer {
    margin-top: 2rem;
    padding: 1.25rem 0.75rem 2rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .footer-qrcode img {
    width: min(220px, 100%);
  }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0 0;
  padding: 8px 0;
  font-size: 0.8rem;
  color: #888888;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  margin: 0 6px;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1;
}
.breadcrumb__item a {
  color: #888888;
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb__item a:hover {
  color: #3b82f6;
  text-decoration: underline;
}
.breadcrumb__item:last-child {
  color: #1a1a1a;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
@media (min-width: 480px) {
  .breadcrumb__item:last-child {
    max-width: 400px;
  }
}

.toppage-header {
  padding: 1.5rem 1rem;
  background: linear-gradient(to right, #f2f6ff, #ffffff);
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.toppage-header .sitetitle {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
  color: #2a2a2a;
}
@media (min-width: 768px) {
  .toppage-header .sitetitle {
    font-size: 2.2rem;
  }
}
.toppage-header .sitecatch {
  font-size: 1rem;
  color: #555;
  margin: 0;
}
@media (min-width: 768px) {
  .toppage-header .sitecatch {
    font-size: 1.1rem;
  }
}

.toppage-whatyear .nensitumon {
  text-align: center;
  font-size: 1.5em;
  margin: 10px 0 10px 0;
  font-weight: bold;
}
.toppage-whatyear .nenhosoku {
  text-align: center;
  font-size: 1em;
  margin: 10px 0 10px 0;
  color: #666;
}
.toppage-whatyear .nenkotae {
  text-align: center;
  font-size: 1.2em;
  margin: 10px 0 10px 0;
}
.toppage-whatyear .nenkotae .suuzi {
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  color: red;
}

.toppage-section-margin {
  margin-bottom: 20px;
}

.toppage-kinenbilink {
  font-weight: bold;
}

#toc.toc-collapsible {
  background: #fdfdfd;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 960px;
  margin: 0 auto 2em auto;
}
#toc.toc-collapsible .toc-toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  color: #007acc;
  cursor: pointer;
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
}
#toc.toc-collapsible .toc-toggle:hover {
  color: #005c99;
}
#toc.toc-collapsible .toc-content {
  margin-top: 1em;
}
#toc.toc-collapsible .toc-content ul {
  list-style: none;
  padding-left: 0;
}
#toc.toc-collapsible .toc-content ul li {
  margin: 0.6em 0;
}
#toc.toc-collapsible .toc-content ul li a {
  color: #0066cc;
  text-decoration: none;
  border-left: 3px solid transparent;
  padding-left: 0.5em;
  transition: all 0.2s ease;
}
#toc.toc-collapsible .toc-content ul li a:hover {
  border-left-color: #007acc;
  background: #eef6fc;
}
@media (min-width: 768px) {
  #toc.toc-collapsible .toc-toggle {
    display: none;
  }
  #toc.toc-collapsible .toc-content {
    display: block !important;
  }
}

.mainmenu {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}
.mainmenu__section-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mainmenu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.mainmenu__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.mainmenu__card--ready:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.mainmenu__card--coming {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.mainmenu__card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
}
.mainmenu__card-badge--ready {
  background: #e6f4ea;
  color: #2d6a4f;
}
.mainmenu__card-badge--coming {
  background: #f0f0f0;
  color: #888888;
}
.mainmenu__card-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.mainmenu__card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.mainmenu__card-desc {
  font-size: 0.78rem;
  color: #888888;
  margin: 0;
  line-height: 1.5;
}
.mainmenu__seo {
  margin-top: 40px;
  padding: 24px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.mainmenu__seo p {
  font-size: 0.85rem;
  color: #888888;
  line-height: 1.8;
  margin-bottom: 10px;
}
.mainmenu__seo p:last-child {
  margin-bottom: 0;
}
.mainmenu__seo p strong {
  color: #1a1a1a;
}

@media (max-width: 600px) {
  .mainmenu {
    padding: 24px 14px 60px;
  }
  .mainmenu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .mainmenu__card {
    padding: 14px 12px;
  }
  .mainmenu__card-icon {
    font-size: 1.5rem;
  }
  .mainmenu__card-name {
    font-size: 0.88rem;
  }
}
.nenrei__input-section {
  margin-bottom: 32px;
}
.nenrei__field {
  margin-bottom: 16px;
}
.nenrei__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.nenrei__date-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nenrei__input {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 1.1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.nenrei__input:focus {
  border-color: #aaa;
  outline: none;
}
.nenrei__input--year {
  width: 100px;
}
.nenrei__select {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 1.1rem;
  color: #1a1a1a;
  background: #ffffff;
  cursor: pointer;
}
.nenrei__select:focus {
  border-color: #aaa;
  outline: none;
}
.nenrei__unit {
  font-size: 0.9rem;
  color: #888888;
}
.nenrei__hint {
  font-size: 0.78rem;
  color: #888888;
  margin-top: 8px;
}
.nenrei__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
}
.nenrei__age-main {
  text-align: center;
  margin-bottom: 24px;
}
.nenrei__age-num {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
.nenrei__age-unit {
  font-size: 1.2rem;
  color: #888888;
  margin-left: 4px;
}
.nenrei__age-approx {
  font-size: 0.85rem;
  color: #888888;
  margin-top: 8px;
}
.nenrei__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.nenrei__metric {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px;
}
.nenrei__metric-label {
  font-size: 0.75rem;
  color: #888888;
  margin-bottom: 4px;
}
.nenrei__metric-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}
.nenrei__metric-sub {
  font-size: 0.72rem;
  color: #888888;
  margin-top: 2px;
}
.nenrei__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nenrei__badge {
  font-size: 0.82rem;
  padding: 4px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  color: #888888;
  background: #ffffff;
}

@media (max-width: 767px) {
  .nenrei {
    padding: 24px 14px 60px;
  }
  .nenrei__age-num {
    font-size: 2.8rem;
  }
  .nenrei__metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gakureki__input-section {
  margin-bottom: 32px;
}
.gakureki__field {
  margin-bottom: 20px;
}
.gakureki__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.gakureki__date-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gakureki__input {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 1.1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.gakureki__input:focus {
  border-color: #aaa;
  outline: none;
}
.gakureki__input--year {
  width: 90px;
}
.gakureki__select {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
  cursor: pointer;
}
.gakureki__select:focus {
  border-color: #aaa;
  outline: none;
}
.gakureki__unit {
  font-size: 0.9rem;
  color: #888888;
}
.gakureki__options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.gakureki__option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gakureki__option-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888888;
}
.gakureki__radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gakureki__radio {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: #1a1a1a;
  cursor: pointer;
}
.gakureki__radio input[type=radio] {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  width: auto;
  height: auto;
  cursor: pointer;
}
.gakureki__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
}
.gakureki__table {
  width: 100%;
  border-collapse: collapse;
}
.gakureki__th {
  font-size: 0.78rem;
  font-weight: 600;
  color: #888888;
  text-align: left;
  padding: 8px 10px;
  border-bottom: 2px solid #e0e0e0;
}
.gakureki__td {
  font-size: 0.9rem;
  color: #1a1a1a;
  padding: 10px 10px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}
.gakureki__td--label {
  font-weight: 600;
  white-space: nowrap;
  color: #1a1a1a;
  width: 120px;
}
.gakureki__table tbody tr:nth-child(even) td {
  background: #fafafa;
}
.gakureki__th--age {
  width: 52px;
  text-align: right;
}
.gakureki__th--gap {
  width: 32px;
}
.gakureki__td--age {
  font-size: 0.82rem;
  color: #888888;
  white-space: nowrap;
  text-align: right;
  padding-right: 8px;
}
.gakureki__td--gap {
  width: 32px;
}

@media (max-width: 767px) {
  .gakureki__options {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px;
  }
  .gakureki__td {
    font-size: 0.82rem;
    padding: 8px 6px;
  }
  .gakureki__td--label {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .gakureki__options {
    grid-template-columns: 1fr;
  }
}
.xqr__input-section {
  margin-bottom: 32px;
}
.xqr__field {
  margin-bottom: 16px;
}
.xqr__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.xqr__input-row {
  display: flex;
  gap: 8px;
}
.xqr__input {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.xqr__input:focus {
  border-color: #aaa;
  outline: none;
}
.xqr__btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.xqr__btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.xqr__hint {
  font-size: 0.78rem;
  color: #888888;
  margin-bottom: 10px;
}
.xqr__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.xqr__url {
  font-size: 0.9rem;
  color: #888888;
  word-break: break-all;
}
.xqr__qr {
  display: flex;
  align-items: center;
  justify-content: center;
}
.xqr__qr canvas, .xqr__qr img {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}
.xqr__dl-btn {
  padding: 10px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.xqr__dl-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

@media (max-width: 767px) {
  .xqr__input-row {
    flex-direction: column;
  }
  .xqr__btn {
    width: 100%;
  }
  .xqr__dl-btn {
    width: 100%;
  }
}
.qrcode__form {
  margin-bottom: 32px;
}
.qrcode__field {
  margin-bottom: 20px;
}
.qrcode__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.qrcode__input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.qrcode__input:focus {
  border-color: #aaa;
  outline: none;
}
.qrcode__radio-row {
  display: flex;
  gap: 16px;
}
.qrcode__radio {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  color: #1a1a1a;
  cursor: pointer;
}
.qrcode__radio input[type=radio] {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
.qrcode__options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.qrcode__option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.qrcode__option-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888888;
}
.qrcode__select {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #ffffff;
  cursor: pointer;
}
.qrcode__select:focus {
  border-color: #aaa;
  outline: none;
}
.qrcode__color {
  width: 48px;
  height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 2px;
  cursor: pointer;
  background: #ffffff;
}
.qrcode__file {
  font-size: 0.85rem;
  color: #1a1a1a;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 6px 8px;
  background: #ffffff;
  cursor: pointer;
  width: 100%;
}
.qrcode__clear-logo {
  font-size: 0.78rem;
  color: #888888;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.qrcode__clear-logo:hover {
  color: #1a1a1a;
}
.qrcode__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
  margin-bottom: 32px;
}
.qrcode__preview {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.qrcode__preview canvas, .qrcode__preview svg {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  max-width: 100%;
}
.qrcode__dl-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .qrcode__options {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
    gap: 12px;
  }
  .qrcode__dl-row {
    flex-direction: column;
  }
  .qrcode__dl-row .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .qrcode__options {
    grid-template-columns: 1fr;
  }
}
.warikan__form {
  margin-bottom: 32px;
}
.warikan__field {
  margin-bottom: 20px;
}
.warikan__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.warikan__input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.warikan__input {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 1.1rem;
  color: #1a1a1a;
  background: #ffffff;
  width: 160px;
}
.warikan__input:focus {
  border-color: #aaa;
  outline: none;
}
.warikan__input--sm {
  width: 80px;
}
.warikan__unit {
  font-size: 0.9rem;
  color: #888888;
}
.warikan__groups {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.warikan__group {
  flex: 1;
  min-width: 220px;
  padding: 16px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.warikan__group-header {
  margin-bottom: 10px;
}
.warikan__group-label {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
}
.warikan__group-label--plus {
  background: #e6f4ea;
  color: #2d6a4f;
}
.warikan__group-label--minus {
  background: #fce8e8;
  color: #a33030;
}
.warikan__group-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.warikan__group-prefix {
  font-size: 1.1rem;
  font-weight: 600;
  color: #888888;
  width: 14px;
}
.warikan__radio-row {
  display: flex;
  gap: 16px;
}
.warikan__radio {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  color: #1a1a1a;
  cursor: pointer;
}
.warikan__radio input[type=radio] {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
.warikan__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
}
.warikan__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.warikan__th {
  font-size: 0.78rem;
  font-weight: 600;
  color: #888888;
  text-align: left;
  padding: 8px 10px;
  border-bottom: 2px solid #e0e0e0;
}
.warikan__td {
  font-size: 0.95rem;
  color: #1a1a1a;
  padding: 10px 10px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}
.warikan__td--amount {
  text-align: right;
  font-weight: 600;
}
.warikan__badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 99px;
}
.warikan__badge--plus {
  background: #e6f4ea;
  color: #2d6a4f;
}
.warikan__badge--minus {
  background: #fce8e8;
  color: #a33030;
}
.warikan__summary {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.warikan__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #888888;
}
.warikan__summary-total {
  font-weight: 600;
  color: #1a1a1a;
}
.warikan__summary-diff-row {
  padding-top: 8px;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  text-align: right;
}
.warikan__summary-ok {
  color: #2d6a4f;
  font-weight: 600;
}
.warikan__summary-diff {
  color: #a33030;
  font-weight: 600;
}

@media (max-width: 767px) {
  .warikan__groups {
    flex-direction: column;
  }
  .warikan__group {
    min-width: unset;
  }
  .warikan__th:last-child, .warikan__td:last-child {
    display: none;
  }
}
.favicon__form {
  margin-bottom: 32px;
}
.favicon__field {
  margin-bottom: 20px;
}
.favicon__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.favicon__file {
  font-size: 0.9rem;
  color: #1a1a1a;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  background: #ffffff;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
}
.favicon__editor {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
}
.favicon__canvas-wrap {
  margin-bottom: 20px;
}
.favicon__canvas {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: grab;
  max-width: 100%;
  touch-action: none;
}
.favicon__canvas:active {
  cursor: grabbing;
}
.favicon__slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.favicon__slider {
  flex: 1;
  cursor: pointer;
}
.favicon__slider-label {
  font-size: 0.8rem;
  color: #888888;
  white-space: nowrap;
}
.favicon__preview-section {
  margin-bottom: 28px;
}
.favicon__previews {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.favicon__preview-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.favicon__prev-canvas {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  image-rendering: pixelated;
}
.favicon__prev-canvas--lg {
  width: 90px;
  height: 90px;
}
.favicon__prev-label {
  font-size: 0.72rem;
  color: #888888;
}
.favicon__dl-section {
  margin-bottom: 16px;
}
.favicon__dl-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .favicon__dl-row .btn {
    width: 100%;
  }
}
.xthumb__form {
  margin-bottom: 32px;
}
.xthumb__field {
  margin-bottom: 20px;
}
.xthumb__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 4px;
}
.xthumb__hint {
  font-size: 0.78rem;
  color: #888888;
  margin-bottom: 10px;
}
.xthumb__input-row {
  display: flex;
  gap: 8px;
}
.xthumb__input {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.xthumb__input:focus {
  border-color: #aaa;
  outline: none;
}
.xthumb__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
  margin-bottom: 24px;
}
.xthumb__preview {
  margin-bottom: 20px;
}
.xthumb__img {
  max-width: 320px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  display: block;
}
.xthumb__urls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.xthumb__url-row {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
}
.xthumb__url-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #888888;
  margin-bottom: 6px;
}
.xthumb__url-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.xthumb__url-text {
  flex: 1;
  font-size: 0.82rem;
  color: #1a1a1a;
  word-break: break-all;
  line-height: 1.5;
}
.xthumb__copy-btn {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: #888;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.xthumb__copy-btn:hover {
  background: #aaa;
}
.xthumb__error {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}
.xthumb__error-msg {
  font-size: 0.9rem;
  color: #a33030;
  margin: 0;
}

@media (max-width: 767px) {
  .xthumb__input-row {
    flex-direction: column;
  }
  .xthumb__url-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xthumb__copy-btn {
    width: 100%;
  }
}
.countdown__form {
  margin-bottom: 28px;
}
.countdown__field-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.countdown__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.countdown__field--name {
  flex: 2;
  min-width: 160px;
}
.countdown__field--date {
  flex: 1;
  min-width: 160px;
}
.countdown__label {
  font-size: 0.85rem;
  color: #888888;
}
.countdown__input {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.countdown__input:focus {
  border-color: #aaa;
  outline: none;
}
.countdown__list {
  margin-bottom: 16px;
}
.countdown__empty {
  font-size: 0.9rem;
  color: #888888;
  text-align: center;
  padding: 32px 0;
  margin: 0;
}
.countdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  margin-bottom: 10px;
}
.countdown__item-info {
  flex: 1;
  min-width: 0;
}
.countdown__item-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.countdown__item-date {
  font-size: 0.82rem;
  color: #888888;
  margin: 0;
}
.countdown__item-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.countdown__days {
  font-size: 0.9rem;
  white-space: nowrap;
}
.countdown__days strong {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.countdown__days--future {
  color: #1a1a1a;
}
.countdown__days--today {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d6a4f;
}
.countdown__days--past {
  color: #888888;
}
.countdown__del-btn {
  font-size: 0.78rem;
  color: #888888;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.countdown__del-btn:hover {
  color: #a33030;
  border-color: #a33030;
}
.countdown__actions {
  margin-bottom: 20px;
  text-align: right;
}
.countdown__clear-btn {
  font-size: 0.82rem;
  color: #888888;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.countdown__clear-btn:hover {
  color: #a33030;
}
.countdown__notice {
  padding: 14px 16px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 32px;
}
.countdown__notice p {
  font-size: 0.8rem;
  color: #888888;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .countdown__field-row {
    flex-direction: column;
  }
  .countdown__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .countdown__item-right {
    width: 100%;
    justify-content: space-between;
  }
}
.moon__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.moon__nav-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  white-space: nowrap;
}
.moon__nav-btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.moon__nav-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.moon__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
.moon__weekday {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888888;
  padding: 6px 0;
  border-bottom: 1px solid #e0e0e0;
}
.moon__weekday--sun {
  color: #c03c3c;
}
.moon__weekday--sat {
  color: #3c5ac0;
}
.moon__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 4px;
  border-radius: 8px;
  border: 1px solid transparent;
  min-height: 80px;
}
.moon__cell--empty {
  background: transparent;
  border-color: transparent;
}
.moon__cell--sun .moon__date-num {
  color: #c03c3c;
}
.moon__cell--sat .moon__date-num {
  color: #3c5ac0;
}
.moon__cell--today {
  border-color: #1a1a1a;
  border-width: 2px;
  background: rgba(0, 0, 0, 0.03);
}
.moon__cell--newmoon {
  background: #f0f0f0;
}
.moon__cell--fullmoon {
  background: #fffbe6;
}
.moon__date-num {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
}
.moon__phase-emoji {
  font-size: 1.4rem;
  line-height: 1;
}
.moon__age {
  font-size: 0.68rem;
  color: #888888;
  line-height: 1;
}
.moon__label {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 99px;
  line-height: 1.4;
}
.moon__label--new {
  background: #333;
  color: #fff;
}
.moon__label--full {
  background: #f5c842;
  color: #6b4c00;
}
.moon__next {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.moon__next-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}
.moon__next-item--full {
  background: #fffbe6;
  border-color: #f5c842;
}
.moon__next-item--new {
  background: #f5f5f5;
  border-color: #aaa;
}
.moon__next-emoji {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.moon__next-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.moon__next-label {
  font-size: 0.75rem;
  color: #888888;
  margin: 0;
}
.moon__next-date {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.moon__next-days {
  font-size: 0.82rem;
  color: #888888;
  margin: 0;
}
.moon__next-days strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.moon__legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 32px;
}
.moon__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #888888;
}
.moon__phase {
  font-size: 1.2rem;
}
.moon__legend-age {
  font-size: 0.68rem;
  color: #888888;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 2px 5px;
}

@media (max-width: 480px) {
  .moon__cell {
    min-height: 64px;
    padding: 4px 2px;
  }
  .moon__phase-emoji {
    font-size: 1.1rem;
  }
  .moon__date-num {
    font-size: 0.78rem;
  }
  .moon__age {
    font-size: 0.6rem;
  }
  .moon__label {
    display: none;
  }
}
.rokuyo__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.rokuyo__nav-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  white-space: nowrap;
}
.rokuyo__nav-btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.rokuyo__nav-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.rokuyo__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
.rokuyo__weekday {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888888;
  padding: 6px 0;
  border-bottom: 1px solid #e0e0e0;
}
.rokuyo__weekday--sun {
  color: #c03c3c;
}
.rokuyo__weekday--sat {
  color: #3c5ac0;
}
.rokuyo__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 8px;
  min-height: 64px;
  border: 1px solid transparent;
}
.rokuyo__cell--empty {
  background: transparent;
}
.rokuyo__cell--sun .rokuyo__date-num {
  color: #c03c3c;
}
.rokuyo__cell--sat .rokuyo__date-num {
  color: #3c5ac0;
}
.rokuyo__cell--today {
  border-color: #1a1a1a !important;
  border-width: 2px;
}
.rokuyo__cell--taian {
  background: #e8f5e9;
}
.rokuyo__cell--shakku {
  background: #fce8e8;
}
.rokuyo__cell--sensho {
  background: #e3f2fd;
}
.rokuyo__cell--tomobiki {
  background: #fff8e1;
}
.rokuyo__cell--senbu {
  background: #f3e5f5;
}
.rokuyo__cell--butsumetsu {
  background: #f5f5f5;
}
.rokuyo__date-num {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
}
.rokuyo__label {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
}
.rokuyo__cell--taian .rokuyo__label {
  color: #2d6a4f;
}
.rokuyo__cell--shakku .rokuyo__label {
  color: #a33030;
}
.rokuyo__cell--sensho .rokuyo__label {
  color: #1a5276;
}
.rokuyo__cell--tomobiki .rokuyo__label {
  color: #7d6608;
}
.rokuyo__cell--senbu .rokuyo__label {
  color: #6a1b9a;
}
.rokuyo__cell--butsumetsu .rokuyo__label {
  color: #555;
}
.rokuyo__legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.rokuyo__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: #888888;
}
.rokuyo__legend-item span {
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}
.rokuyo__legend-item--taian {
  background: #e8f5e9;
}
.rokuyo__legend-item--taian span {
  color: #2d6a4f;
}
.rokuyo__legend-item--shakku {
  background: #fce8e8;
}
.rokuyo__legend-item--shakku span {
  color: #a33030;
}
.rokuyo__legend-item--sensho {
  background: #e3f2fd;
}
.rokuyo__legend-item--sensho span {
  color: #1a5276;
}
.rokuyo__legend-item--tomobiki {
  background: #fff8e1;
}
.rokuyo__legend-item--tomobiki span {
  color: #7d6608;
}
.rokuyo__legend-item--senbu {
  background: #f3e5f5;
}
.rokuyo__legend-item--senbu span {
  color: #6a1b9a;
}
.rokuyo__legend-item--butsumetsu {
  background: #f5f5f5;
}
.rokuyo__legend-item--butsumetsu span {
  color: #555;
}

@media (max-width: 480px) {
  .rokuyo__cell {
    min-height: 52px;
    padding: 6px 2px;
  }
  .rokuyo__date-num {
    font-size: 0.82rem;
  }
  .rokuyo__label {
    font-size: 0.6rem;
  }
  .rokuyo__legend {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kichijitsu__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.kichijitsu__nav-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  white-space: nowrap;
}
.kichijitsu__nav-btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.kichijitsu__nav-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.kichijitsu__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 20px;
}
.kichijitsu__weekday {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888888;
  padding: 6px 0;
  border-bottom: 1px solid #e0e0e0;
}
.kichijitsu__weekday--sun {
  color: #c03c3c;
}
.kichijitsu__weekday--sat {
  color: #3c5ac0;
}
.kichijitsu__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 2px;
  border-radius: 6px;
  min-height: 76px;
  border: 1px solid transparent;
  background: #ffffff;
}
.kichijitsu__cell--empty {
  background: transparent;
  border-color: transparent;
}
.kichijitsu__cell--sun .kichijitsu__date-num {
  color: #c03c3c;
}
.kichijitsu__cell--sat .kichijitsu__date-num {
  color: #3c5ac0;
}
.kichijitsu__cell--today {
  border-color: #1a1a1a !important;
  border-width: 2px;
}
.kichijitsu__cell--tensha {
  background: #fff8e1;
  border-color: #f5c842;
}
.kichijitsu__cell--ichiryumanbai {
  background: #e8f5e9;
  border-color: #81c784;
}
.kichijitsu__cell--fujouju {
  background: #fce8e8;
}
.kichijitsu__date-num {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
}
.kichijitsu__rokuyo {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
}
.kichijitsu__rokuyo--taian {
  color: #2d6a4f;
}
.kichijitsu__rokuyo--shakku {
  color: #a33030;
}
.kichijitsu__rokuyo--sensho {
  color: #1a5276;
}
.kichijitsu__rokuyo--tomobiki {
  color: #7d6608;
}
.kichijitsu__rokuyo--senbu {
  color: #6a1b9a;
}
.kichijitsu__rokuyo--butsumetsu {
  color: #555;
}
.kichijitsu__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  margin-top: 2px;
}
.kichijitsu__badge {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  line-height: 1.4;
  white-space: nowrap;
}
.kichijitsu__badge--tensha {
  background: #f5c842;
  color: #5a3e00;
}
.kichijitsu__badge--ichi {
  background: #81c784;
  color: #1b5e20;
}
.kichijitsu__badge--tora {
  background: #ffb74d;
  color: #4e2600;
}
.kichijitsu__badge--mi {
  background: #ce93d8;
  color: #4a148c;
}
.kichijitsu__badge--fujouju {
  background: #ef9a9a;
  color: #7f0000;
}
.kichijitsu__legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.kichijitsu__legend-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  flex-direction: column;
}
.kichijitsu__legend-item small {
  font-size: 0.7rem;
  font-weight: 400;
  color: #888888;
}
.kichijitsu__legend-item--ichiryumanbai {
  background: #e8f5e9;
  border-color: #81c784;
}
.kichijitsu__legend-item--tensha {
  background: #fff8e1;
  border-color: #f5c842;
}
.kichijitsu__legend-item--tora {
  background: #fff3e0;
  border-color: #ffb74d;
}
.kichijitsu__legend-item--mi {
  background: #f3e5f5;
  border-color: #ce93d8;
}
.kichijitsu__legend-item--fujouju {
  background: #fce8e8;
  border-color: #ef9a9a;
}
.kichijitsu__legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.kichijitsu__legend-item--ichiryumanbai .kichijitsu__legend-dot {
  background: #81c784;
}
.kichijitsu__legend-item--tensha .kichijitsu__legend-dot {
  background: #f5c842;
}
.kichijitsu__legend-item--tora .kichijitsu__legend-dot {
  background: #ffb74d;
}
.kichijitsu__legend-item--mi .kichijitsu__legend-dot {
  background: #ce93d8;
}
.kichijitsu__legend-item--fujouju .kichijitsu__legend-dot {
  background: #ef9a9a;
}

@media (max-width: 480px) {
  .kichijitsu__cell {
    min-height: 62px;
    padding: 4px 1px;
  }
  .kichijitsu__date-num {
    font-size: 0.78rem;
  }
  .kichijitsu__rokuyo {
    font-size: 0.55rem;
  }
  .kichijitsu__badge {
    font-size: 0.5rem;
    padding: 1px 3px;
  }
  .kichijitsu__legend {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bmi__form {
  margin-bottom: 32px;
}
.bmi__field-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.bmi__field {
  flex: 1;
  min-width: 140px;
}
.bmi__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.bmi__input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bmi__input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1.2rem;
  color: #1a1a1a;
  background: #ffffff;
}
.bmi__input:focus {
  border-color: #aaa;
  outline: none;
}
.bmi__unit {
  font-size: 0.9rem;
  color: #888888;
  white-space: nowrap;
}
.bmi__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
}
.bmi__main {
  text-align: center;
  margin-bottom: 24px;
}
.bmi__bmi-value {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 40px;
  border-radius: 12px;
  border: 2px solid transparent;
}
.bmi__bmi-value--underweight {
  background: #e1f5fe;
  border-color: #4fc3f7;
}
.bmi__bmi-value--normal {
  background: #e8f5e9;
  border-color: #66bb6a;
}
.bmi__bmi-value--obese1 {
  background: #fff3e0;
  border-color: #ffa726;
}
.bmi__bmi-value--obese2 {
  background: #fbe9e7;
  border-color: #ef6c00;
}
.bmi__bmi-value--obese3 {
  background: #ffebee;
  border-color: #e53935;
}
.bmi__bmi-value--obese4 {
  background: #ffcdd2;
  border-color: #b71c1c;
}
.bmi__bmi-num {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
.bmi__bmi-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}
.bmi__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.bmi__metric {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px;
}
.bmi__metric-label {
  font-size: 0.75rem;
  color: #888888;
  margin-bottom: 4px;
}
.bmi__metric-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}
.bmi__metric-sub {
  font-size: 0.72rem;
  color: #888888;
  margin-top: 2px;
}
.bmi__bar-wrap {
  margin-bottom: 16px;
}
.bmi__bar-wrap-inner {
  position: relative;
  width: 100%;
}
.bmi__bar {
  position: relative;
  display: flex;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
}
.bmi__bar-labels {
  position: relative;
  height: 18px;
  margin-bottom: 6px;
}
.bmi__bar-tick {
  position: absolute;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: #888888;
  white-space: nowrap;
}
.bmi__bar-seg {
  height: 100%;
}
.bmi__bar-seg:first-child {
  border-radius: 10px 0 0 10px;
}
.bmi__bar-seg:last-child {
  border-radius: 0 10px 10px 0;
}
.bmi__bar-seg--underweight {
  background: #4fc3f7;
}
.bmi__bar-seg--normal {
  background: #66bb6a;
}
.bmi__bar-seg--obese1 {
  background: #ffa726;
}
.bmi__bar-seg--obese2 {
  background: #ef6c00;
}
.bmi__bar-seg--obese3 {
  background: #e53935;
}
.bmi__bar-seg--obese4 {
  background: #b71c1c;
}
.bmi__bar-marker {
  position: absolute;
  top: 0;
  width: 4px;
  height: 20px;
  background: #1a1a1a;
  border-radius: 2px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px #fff;
  z-index: 1;
  pointer-events: none;
}
.bmi__bar-legend {
  display: flex;
  font-size: 0.62rem;
  width: 100%;
}
.bmi__bar-legend-item {
  display: inline-block;
  text-align: center;
  padding: 2px 0;
  font-weight: 600;
  overflow: hidden;
}
.bmi__bar-legend-item:first-child {
  border-radius: 4px 0 0 4px;
}
.bmi__bar-legend-item:last-child {
  border-radius: 0 4px 4px 0;
}
.bmi__bar-legend-item--underweight {
  background: #4fc3f7;
  color: #01579b;
}
.bmi__bar-legend-item--normal {
  background: #66bb6a;
  color: #1b5e20;
}
.bmi__bar-legend-item--obese1 {
  background: #ffa726;
  color: #4e2600;
}
.bmi__bar-legend-item--obese2 {
  background: #ef6c00;
  color: #fff;
}
.bmi__bar-legend-item--obese3 {
  background: #e53935;
  color: #fff;
}
.bmi__bar-legend-item--obese4 {
  background: #b71c1c;
  color: #fff;
}

@media (max-width: 767px) {
  .bmi__field-row {
    flex-direction: column;
  }
  .bmi__bmi-num {
    font-size: 2.4rem;
  }
  .bmi__metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .bmi__bar-legend-item {
    font-size: 0.55rem;
  }
}
.timezone__form {
  margin-bottom: 28px;
}
.timezone__field-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.timezone__field {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.timezone__label {
  font-size: 0.85rem;
  color: #888888;
}
.timezone__input {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.timezone__input:focus {
  border-color: #aaa;
  outline: none;
}
.timezone__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
}
.timezone__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.timezone__base-city {
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.timezone__base-hint {
  font-size: 0.72rem;
  font-weight: 400;
  color: #888888;
}
.timezone__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
}
.timezone__item:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.timezone__item--base {
  background: #e8f5e9;
  border-color: #81c784;
  cursor: default;
}
.timezone__item--base:hover {
  background: #e8f5e9;
  border-color: #81c784;
}
.timezone__base-tag {
  font-size: 0.65rem;
  font-weight: 700;
  background: #2d6a4f;
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.timezone__item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.timezone__flag {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.timezone__city-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.timezone__city-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.timezone__country {
  font-size: 0.75rem;
  color: #888888;
  margin: 0;
}
.timezone__offset {
  font-size: 0.7rem;
  color: #888888;
  background: #f0f0f0;
  padding: 1px 5px;
  border-radius: 4px;
}
.timezone__item-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.timezone__time {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  font-variant-numeric: tabular-nums;
}
.timezone__day-plus {
  font-size: 0.72rem;
  font-weight: 600;
  color: #2d6a4f;
  background: #e8f5e9;
  padding: 2px 6px;
  border-radius: 4px;
}
.timezone__day-minus {
  font-size: 0.72rem;
  font-weight: 600;
  color: #a33030;
  background: #fce8e8;
  padding: 2px 6px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .timezone__field-row {
    flex-direction: column;
  }
  .timezone__time {
    font-size: 1.1rem;
  }
  .timezone__item {
    padding: 10px 12px;
  }
}
.mojicount__input-section {
  margin-bottom: 24px;
}
.mojicount__textarea {
  width: 100%;
  min-height: 180px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
  resize: vertical;
  line-height: 1.7;
  margin-bottom: 12px;
}
.mojicount__textarea:focus {
  border-color: #aaa;
  outline: none;
}
.mojicount__options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.mojicount__option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #1a1a1a;
  cursor: pointer;
}
.mojicount__option input[type=checkbox] {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
  width: auto;
  height: auto;
}
.mojicount__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}
.mojicount__metric {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px;
}
.mojicount__metric-label {
  font-size: 0.72rem;
  color: #888888;
  margin-bottom: 4px;
  line-height: 1.4;
}
.mojicount__metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
.mojicount__metric-sub {
  font-size: 0.68rem;
  color: #888888;
  margin-top: 4px;
}
.mojicount__sns {
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
  margin-bottom: 32px;
}
.mojicount__sns-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888888;
  margin-bottom: 14px;
}
.mojicount__sns-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mojicount__sns-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
}
.mojicount__sns-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.mojicount__sns-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
}
.mojicount__sns-note {
  font-size: 0.72rem;
  color: #888888;
  flex: 1;
}
.mojicount__sns-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: #888888;
  white-space: nowrap;
}
.mojicount__sns-count--over {
  color: #a33030;
}
.mojicount__sns-bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}
.mojicount__sns-bar-fill {
  height: 100%;
  background: #66bb6a;
  border-radius: 3px;
  transition: width 0.2s;
}
.mojicount__sns-bar-fill--over {
  background: #e53935;
}

@media (max-width: 767px) {
  .mojicount__metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
.passgen__form {
  margin-bottom: 32px;
}
.passgen__field {
  margin-bottom: 20px;
}
.passgen__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 10px;
}
.passgen__length-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.passgen__slider {
  flex: 1;
  cursor: pointer;
}
.passgen__length-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  min-width: 28px;
  text-align: right;
}
.passgen__unit {
  font-size: 0.9rem;
  color: #888888;
}
.passgen__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.passgen__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #1a1a1a;
  cursor: pointer;
}
.passgen__check input[type=checkbox] {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
  width: auto;
  height: auto;
  flex-shrink: 0;
}
.passgen__count-row {
  display: flex;
}
.passgen__select {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #ffffff;
  cursor: pointer;
}
.passgen__select:focus {
  border-color: #aaa;
  outline: none;
}
.passgen__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
}
.passgen__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.passgen__item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 16px;
}
.passgen__item-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.passgen__pw {
  flex: 1;
  font-family: "Courier New", Consolas, monospace;
  font-size: 1rem;
  color: #1a1a1a;
  word-break: break-all;
  letter-spacing: 0.05em;
}
.passgen__copy-btn {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: #888;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.passgen__copy-btn:hover {
  background: #aaa;
}
.passgen__strength {
  display: flex;
  align-items: center;
  gap: 10px;
}
.passgen__strength-bar {
  flex: 1;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}
.passgen__strength-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.2s;
}
.passgen__strength-fill--weak {
  background: #e53935;
}
.passgen__strength-fill--fair {
  background: #ffa726;
}
.passgen__strength-fill--good {
  background: #66bb6a;
}
.passgen__strength-fill--strong {
  background: #2e7d32;
}
.passgen__strength-label {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.passgen__strength-label--weak {
  color: #e53935;
}
.passgen__strength-label--fair {
  color: #ffa726;
}
.passgen__strength-label--good {
  color: #2d6a4f;
}
.passgen__strength-label--strong {
  color: #1b5e20;
}

@media (max-width: 767px) {
  .passgen__pw {
    font-size: 0.88rem;
  }
}
.zeikeisan__form {
  margin-bottom: 32px;
}
.zeikeisan__options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 24px;
}
.zeikeisan__option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zeikeisan__option-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888888;
}
.zeikeisan__radio-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.zeikeisan__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #1a1a1a;
  cursor: pointer;
}
.zeikeisan__radio input[type=radio] {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
.zeikeisan__single {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}
.zeikeisan__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.zeikeisan__input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.zeikeisan__input {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1.2rem;
  color: #1a1a1a;
  background: #ffffff;
  width: 200px;
}
.zeikeisan__input:focus {
  border-color: #aaa;
  outline: none;
}
.zeikeisan__unit {
  font-size: 0.9rem;
  color: #888888;
}
.zeikeisan__result-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 8px;
}
.zeikeisan__result-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #888888;
  margin-bottom: 8px;
}
.zeikeisan__result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 0.9rem;
}
.zeikeisan__result-row--total {
  border-top: 1px solid #e0e0e0;
  margin-top: 4px;
  padding-top: 8px;
}
.zeikeisan__result-label {
  color: #888888;
}
.zeikeisan__result-val {
  font-weight: 600;
  color: #1a1a1a;
}
.zeikeisan__result-val--tax {
  color: #e57c00;
}
.zeikeisan__result-val--total {
  font-size: 1.1rem;
  color: #1a1a1a;
}
.zeikeisan__multi {
  margin-bottom: 16px;
}
.zeikeisan__multi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.zeikeisan__add-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: #888888;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.zeikeisan__add-btn:hover {
  background: #f5f5f5;
}
.zeikeisan__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.zeikeisan__item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.zeikeisan__item-name {
  flex: 1;
  min-width: 100px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #ffffff;
}
.zeikeisan__item-name:focus {
  border-color: #aaa;
  outline: none;
}
.zeikeisan__item-amount {
  width: 120px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #ffffff;
}
.zeikeisan__item-amount:focus {
  border-color: #aaa;
  outline: none;
}
.zeikeisan__del-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: none;
  color: #888888;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.15s, border-color 0.15s;
}
.zeikeisan__del-btn:hover {
  color: #a33030;
  border-color: #a33030;
}
.zeikeisan__multi-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.zeikeisan__total-card {
  background: #f7f7f7;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px 18px;
}
.zeikeisan__total-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .zeikeisan__options {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }
  .zeikeisan__multi-cards {
    grid-template-columns: 1fr;
  }
  .zeikeisan__input {
    width: 100%;
  }
}
.unitconv__form {
  margin-bottom: 24px;
}
.unitconv__category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.unitconv__cat-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
}
.unitconv__cat-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.unitconv__cat-btn--active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.unitconv__cat-btn--active:hover {
  background: #333;
  border-color: #333;
}
.unitconv__cat-icon {
  font-size: 0.9rem;
}
.unitconv__cat-name {
  font-weight: 500;
}
.unitconv__input-area {
  margin-bottom: 8px;
}
.unitconv__input-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.unitconv__input {
  width: 180px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1.2rem;
  color: #1a1a1a;
  background: #ffffff;
}
.unitconv__input:focus {
  border-color: #aaa;
  outline: none;
}
.unitconv__select {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  flex: 1;
  min-width: 200px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #ffffff;
  cursor: pointer;
}
.unitconv__select:focus {
  border-color: #aaa;
  outline: none;
}
.unitconv__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}
.unitconv__result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.unitconv__result-item {
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
}
.unitconv__result-item--from {
  background: #e8f5e9;
  border-color: #81c784;
}
.unitconv__result-unit {
  font-size: 0.72rem;
  color: #888888;
  margin-bottom: 4px;
  line-height: 1.3;
}
.unitconv__result-val {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  word-break: break-all;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 767px) {
  .unitconv__cat-btn {
    padding: 6px 10px;
    font-size: 0.78rem;
  }
  .unitconv__input {
    width: 120px;
    font-size: 1rem;
  }
  .unitconv__select {
    min-width: 160px;
  }
  .unitconv__result-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.loan__form {
  margin-bottom: 32px;
}
.loan__field-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.loan__field {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.loan__label {
  font-size: 0.85rem;
  color: #888888;
}
.loan__input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.loan__input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1.1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.loan__input:focus {
  border-color: #aaa;
  outline: none;
}
.loan__unit {
  font-size: 0.9rem;
  color: #888888;
  white-space: nowrap;
}
.loan__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
}
.loan__summary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.loan__card {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px;
}
.loan__card-label {
  font-size: 0.75rem;
  color: #888888;
  margin-bottom: 4px;
}
.loan__card-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
}
.loan__card-sub {
  font-size: 0.72rem;
  color: #888888;
  margin-top: 4px;
}
.loan__chart-wrap {
  margin-bottom: 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  overflow: hidden;
}
.loan__chart {
  display: block;
  width: 100%;
  height: 200px;
}
.loan__table-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888888;
  margin-bottom: 10px;
}
.loan__table-scroll {
  overflow-x: auto;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.loan__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.loan__table th, .loan__table td {
  padding: 8px 12px;
  text-align: right;
  white-space: nowrap;
  border-bottom: 1px solid #e0e0e0;
}
.loan__table th {
  background: #f7f7f7;
  font-weight: 600;
  color: #888888;
  text-align: right;
}
.loan__table th:first-child {
  text-align: left;
}
.loan__table td:first-child {
  text-align: left;
  font-weight: 600;
}
.loan__table tbody tr:last-child td {
  border-bottom: none;
}
.loan__table tbody tr:nth-child(even) td {
  background: #fafafa;
}

@media (max-width: 767px) {
  .loan__field-row {
    flex-direction: column;
  }
  .loan__summary {
    grid-template-columns: repeat(2, 1fr);
  }
}
.eto__form {
  margin-bottom: 32px;
}
.eto__field-row {
  margin-bottom: 20px;
}
.eto__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 280px;
}
.eto__label {
  font-size: 0.85rem;
  color: #888888;
}
.eto__input {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.eto__input:focus {
  border-color: #aaa;
  outline: none;
}
.eto__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
}
.eto__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.eto__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}
.eto__card-icon {
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.eto__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eto__card-label {
  font-size: 0.75rem;
  color: #888888;
  margin: 0;
}
.eto__card-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.eto__card-sub {
  font-size: 0.78rem;
  color: #888888;
  margin: 0;
}

.chusen__form {
  margin-bottom: 32px;
}
.chusen__field {
  margin-bottom: 16px;
}
.chusen__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.chusen__textarea {
  width: 100%;
  min-height: 160px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
  resize: vertical;
  line-height: 1.8;
}
.chusen__textarea:focus {
  border-color: #aaa;
  outline: none;
}
.chusen__option-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.chusen__field--inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.chusen__field--inline .chusen__label {
  margin-bottom: 0;
}
.chusen__input-num {
  width: 70px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
  text-align: center;
}
.chusen__input-num:focus {
  border-color: #aaa;
  outline: none;
}
.chusen__unit {
  font-size: 0.9rem;
  color: #888888;
}
.chusen__check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #1a1a1a;
  cursor: pointer;
}
.chusen__check input {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
.chusen__result {
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
  position: relative;
  overflow: hidden;
}
.chusen__drawing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
}
.chusen__drawing-text {
  font-size: 1rem;
  color: #888888;
  margin: 0;
}
.chusen__drawing-dots {
  display: flex;
  gap: 8px;
}
.chusen__drawing-dots span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #888888;
  animation: chusen-bounce 1s infinite ease-in-out;
}
.chusen__drawing-dots span:nth-child(1) {
  animation-delay: 0s;
}
.chusen__drawing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.chusen__drawing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes chusen-bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.chusen__winners {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chusen__winner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.chusen__winner:first-child {
  background: #fffbe6;
  border-color: #f5c842;
}
.chusen__winner--hidden {
  opacity: 0;
  transform: translateY(16px);
}
.chusen__winner--show {
  opacity: 1;
  transform: translateY(0);
}
.chusen__winner-rank {
  font-size: 0.8rem;
  font-weight: 700;
  color: #888888;
  min-width: 32px;
  flex-shrink: 0;
}
.chusen__winner:first-child .chusen__winner-rank {
  color: #b8860b;
}
.chusen__winner-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
}
.chusen__confetti {
  position: absolute;
  top: -10px;
  pointer-events: none;
  animation: chusen-confetti-fall linear forwards;
}
@keyframes chusen-confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(300px) rotate(720deg);
    opacity: 0;
  }
}

.imgmosaic__form {
  margin-bottom: 20px;
}
.imgmosaic__field {
  margin-bottom: 16px;
}
.imgmosaic__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.imgmosaic__file {
  font-size: 0.9rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  background: #ffffff;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
}
.imgmosaic__editor {
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
}
.imgmosaic__slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.imgmosaic__slider {
  flex: 1;
  cursor: pointer;
  max-width: 300px;
}
.imgmosaic__slider-label {
  font-size: 0.8rem;
  color: #888888;
}
.imgmosaic__hint {
  font-size: 0.82rem;
  color: #888888;
  margin-bottom: 12px;
}
.imgmosaic__canvas-wrap {
  margin-bottom: 16px;
  overflow: auto;
}
.imgmosaic__canvas {
  display: block;
  max-width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: crosshair;
  touch-action: none;
}
.imgmosaic__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.imgtrim__form {
  margin-bottom: 20px;
}
.imgtrim__field {
  margin-bottom: 16px;
}
.imgtrim__label {
  display: block;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 8px;
}
.imgtrim__file {
  font-size: 0.9rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  background: #ffffff;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
}
.imgtrim__editor {
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
}
.imgtrim__controls {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.imgtrim__control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.imgtrim__control-label {
  font-size: 0.82rem;
  color: #888888;
  font-weight: 600;
}
.imgtrim__rotate-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.imgtrim__rotate-btn {
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.12s;
}
.imgtrim__rotate-btn:hover {
  background: #f5f5f5;
}
.imgtrim__check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: #1a1a1a;
  cursor: pointer;
}
.imgtrim__check input {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
.imgtrim__crop-info {
  font-size: 0.82rem;
  color: #888888;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 6px 10px;
  display: inline-block;
}
.imgtrim__canvas-wrap {
  position: relative;
  margin-bottom: 16px;
  overflow: auto;
}
.imgtrim__canvas {
  display: block;
  max-width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: crosshair;
  touch-action: none;
}
.imgtrim__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/*
@import "_import_kinenbi.scss";
@import "_import_kinenbi_toppage.scss";
@import "_import_kinenbi_calendar.scss";
@import "_import_kinenbi_monthselect.scss";
@import "_import_kinenbi_month.scss";
@import "_import_kinenbi_month_list.scss";
*/
.kinenbi-detail-section {
  margin: 0;
  padding: clamp(15px, 2.2vw, 18px);
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
  padding: 32px 40px;
}
.kinenbi-detail-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  position: relative;
}
.kinenbi-detail-section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #000;
  margin-top: 8px;
  border-radius: 2px;
}
.kinenbi-detail-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  text-align: justify;
}
@media (max-width: 600px) {
  .kinenbi-detail-section {
    padding: 24px 20px;
  }
  .kinenbi-detail-section h2 {
    font-size: 1.5rem;
  }
  .kinenbi-detail-section p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.fixed_anniversaries_list_view h3 {
  font-weight: bold;
  margin-bottom: 10px;
}
.fixed_anniversaries_list_view span {
  display: inline-block;
  margin: 0 10px 5px 10px;
}

.variable_anniversary_list_view h3 {
  font-weight: bold;
  margin-bottom: 10px;
}
.variable_anniversary_list_view span {
  display: block;
  margin-bottom: 5px;
}

.section-privacy {
  --privacy-text: #222;
  --privacy-dot: rgba(80,60,40,0.55);
  --privacy-accent: rgba(120,95,65,0.16);
  color: var(--privacy-text);
  line-height: 1.85;
}
.section-privacy p {
  margin: 0 0 14px 0;
  font-size: 1rem;
  line-height: 1.85;
  word-break: break-word;
  white-space: normal;
}
.section-privacy h3 {
  margin: 22px 0 10px 0;
  padding: 0 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-left: 4px solid var(--privacy-accent);
}
@supports (font-size: clamp(1rem, 2vw, 2rem)) {
  .section-privacy h3 {
    font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  }
}
.section-privacy ul {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
}
.section-privacy ul li {
  position: relative;
  margin: 0 0 10px 0;
  padding: 0 0 0 1.1em;
  line-height: 1.75;
  word-break: break-word;
}
.section-privacy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--privacy-dot);
}
.section-privacy ul li:last-child {
  margin-bottom: 0;
}
.section-privacy h3 + p {
  margin-top: 0;
}
.section-privacy p + ul {
  margin-top: -4px;
}
.section-privacy ul + p {
  margin-top: 2px;
}
@media (max-width: 767px) {
  .section-privacy h3 {
    margin-top: 20px;
    padding-left: 10px;
    border-left-width: 3px;
  }
  .section-privacy p {
    line-height: 1.9;
  }
  .section-privacy ul li {
    margin-bottom: 11px;
  }
  .section-privacy ul li::before {
    top: 0.72em;
  }
}
@media (min-width: 1025px) {
  .section-privacy p {
    line-height: 1.85;
  }
  .section-privacy ul li {
    line-height: 1.8;
  }
}

.section-terms {
  --terms-border: rgba(120,95,65,0.18);
  --terms-text: #222;
  --terms-muted: #555;
  --terms-accent: rgba(120,95,65,0.16);
  --terms-dot: rgba(80,60,40,0.55);
  color: var(--terms-text);
  line-height: 1.85;
}
.section-terms h2 {
  margin: clamp(18px, 3.2vw, 26px) 0 clamp(10px, 2vw, 14px) 0;
  padding: 0 0 0 12px;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  line-height: 1.4;
  font-weight: 800;
  border-left: 4px solid var(--terms-accent);
}
.section-terms p {
  margin: 0 0 1em 0;
  color: var(--terms-text);
  font-size: clamp(1rem, 1.1vw, 1.05rem);
}
.section-terms ol,
.section-terms ul {
  margin: 0 0 1.1em 0;
  padding-left: 1.35em;
}
.section-terms ul {
  list-style: disc;
}
.section-terms ul li {
  margin: 0.35em 0;
  color: var(--terms-text);
}
.section-terms ul li::marker {
  color: var(--terms-dot);
}
.section-terms ol {
  list-style: decimal;
}
.section-terms ol li {
  margin: 0.35em 0;
  color: var(--terms-text);
}
.section-terms ol li::marker {
  color: var(--terms-dot);
}
.section-terms a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.section-terms a:hover {
  text-decoration-thickness: 2px;
}
@media (max-width: 767px) {
  .section-terms h2 {
    padding-left: 10px;
    border-left-width: 3px;
  }
  .section-terms ol,
  .section-terms ul {
    padding-left: 1.25em;
  }
}

/* 影響範囲を限定：このバナー専用に class を付けて使う前提
   例）<aside class="haiku-banner"> ... </aside>
*/
.haiku-banner {
  width: 160px;
  min-height: 600px;
  box-sizing: border-box;
  background-image: url("/img/siori.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: row-reverse; /* 右→左に並べる */
  justify-content: center;
  align-items: center;
  /* 真ん中寄りに微調整（必要なら数値だけ変える） */
  transform: translateX(10px);
  gap: 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* 背景の上で読めるよう薄いベール（不要なら削除可） */
.haiku-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}

/* 文字：枠なし */
.haiku-banner > span {
  position: relative;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.85);
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* 俳句っぽく軽い段差 */
.haiku-banner > span:nth-child(1) {
  transform: translateY(-10px);
}

.haiku-banner > span:nth-child(2) {
  transform: translateY(0px);
}

.haiku-banner > span:nth-child(3) {
  transform: translateY(10px);
}

/* SPで不要なら */
@media (max-width: 1024px) {
  .haiku-banner {
    display: none;
  }
}
.sns-share {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}
.sns-share__btn {
  display: inline-flex;
  transition: opacity 0.15s;
}
.sns-share__btn:hover {
  opacity: 0.75;
}
.sns-share__icon {
  width: 36px;
  height: 36px;
  display: block;
}
.sns-share__hatena {
  display: inline-flex;
  align-items: center;
}

/* PC版（デスクトップ） */
@media (min-width: 1025px) {
  /* PCでだけ適用したい指定 */
}
/* タブレット版（768px〜1024px） */
@media (min-width: 768px) and (max-width: 1024px) {
  /* タブレットでだけ適用したい指定 */
}
/* スマホ版（〜767px） */
@media (max-width: 767px) {
  /* スマホでだけ適用したい指定 */
}/*# sourceMappingURL=common.css.map */