/*
Theme Name: LP Senkyo
Theme URI: https://example.com
Author: Codex
Author URI: https://example.com
Description: LP(選挙) WordPress theme.
Version: 1.0.0
Text Domain: lp-senkyo
*/

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 変数 */
:root {
    --primary-color: #0b5f7a;
    --secondary-color: #d45b36;
    --dark-color: #1f2933;
    --light-color: #ffffff;
    --gray-color: #f4f0ea;
    --text-color: #1f2933;
    --border-color: #e6e0d8;
    --surface: #ffffff;
    --surface-alt: #f7f3ee;
    --shadow-soft: 0 18px 40px rgba(17, 24, 39, 0.08);
    --shadow-strong: 0 20px 60px rgba(17, 24, 39, 0.14);
}

/* 基本スタイル */
body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: radial-gradient(1200px 800px at 10% -10%, #e8f1f4 0%, rgba(232, 241, 244, 0) 60%),
        radial-gradient(900px 600px at 90% 10%, #fde9e1 0%, rgba(253, 233, 225, 0) 55%),
        var(--surface-alt);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* グリッドシステム */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    flex: 1 0 0%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;
}

.g-0 {
    margin: 0;
}

/* ユーティリティクラス */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-lg-block {
    display: block !important;
}

.d-lg-none {
    display: none !important;
}

.text-center {
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.order-lg-first {
    order: -1;
}

/* ヘッダー */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.site-header .container {
    padding-right: 22px;
    padding-left: 22px;
}

.site-branding {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.header__jobtitle {
    font-size: 13px;
    margin-top: 5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5b6770;
}

.header__jobtitle strong {
    font-size: 18px;
}

.header__jobtitle strong {
    font-weight: 700;
}

/* ナビゲーション */
.pc-nav {
    display: block;
}

.sp-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(238, 241, 244, 0.88);
    z-index: 999;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.sp-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 0 24px;
}

.sp-nav li {
    margin: 8px 0;
}

.sp-nav a {
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sp-nav a:hover,
.sp-nav a:focus {
    background-color: #dfe5ea;
}

.nav-ham {
    display: none;
    width: 24px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 18px;
    cursor: pointer;
}

.nav-ham span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: all 0.3s;
}

.nav-ham span:nth-child(1) {
    top: 0;
}

.nav-ham span:nth-child(2) {
    top: 9px;
}

.nav-ham span:nth-child(3) {
    bottom: 0;
}

body.open .nav-ham span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

body.open .nav-ham span:nth-child(2) {
    opacity: 0;
}

body.open .nav-ham span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.open .sp-nav {
    display: block;
}

#gNavi ul {
    display: flex;
    justify-content: flex-end;
}

#gNavi li {
    margin-left: 20px;
}

#gNavi a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: #39434c;
    transition: color 0.3s ease;
}

#gNavi a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

#gNavi a:hover::after {
    width: 100%;
}

#gNavi a.active {
    color: var(--primary-color);
}

#gNavi a.active::after {
    width: 100%;
}

.header__gnavi-supporters a {
    color: var(--secondary-color);
}

/* ヒーローセクション */
.front__hero {
    margin-top: 0;
    position: relative;
}

.front__hero img {
    border-radius: 18px;
    box-shadow: var(--shadow-strong);
}

/* ビデオセクション */
.front__video {
    background-color: #f5f5f5;
}

.front__video video {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* メッセージセクション */
.front__message {
    padding: 80px 0;
    background-color: var(--surface);
}

.front__message-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 0.06em;
}

.front__message-title::after {
    content: attr(data-en);
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
}

.front__message-body {
    line-height: 1.8;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.front__message-body p {
    margin-bottom: 1em;
}

.front__message-sign {
    text-align: right;
    margin-top: 20px;
}

/* プロフィールセクション */
.front__profile {
    padding: 80px 0;
    background-color: var(--surface-alt);
}

.front__profile-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 0.06em;
}

.front__profile-title::after {
    content: attr(data-en);
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
}

.profile__text {
    background-color: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 24, 39, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile__text:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.profile__jobtitle {
    font-size: 14px;
    margin-bottom: 5px;
    color: #6b7280;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile__name {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(11, 95, 122, 0.4);
    padding-bottom: 10px;
}

.profile__kana {
    font-size: 14px;
    font-weight: 400;
}

.profile__overview-list {
    margin-bottom: 20px;
}

.profile__overview-item {
    margin-bottom: 10px;
    display: flex;
}

.profile__label {
    width: 80px;
    font-weight: 700;
}

.profile__content {
    flex: 1;
}

.o-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0b5f7a, #1282a2);
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 10px 24px rgba(11, 95, 122, 0.25);
}

.o-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(11, 95, 122, 0.3);
}

.o-btn i {
    margin-left: 5px;
}

/* マニフェストセクション */
.front__manifest {
    padding: 80px 0;
    background-color: var(--surface);
}

.front__manifest-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    letter-spacing: 0.06em;
}

.front__manifest-title::after {
    content: attr(data-en);
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
}

.manifest__section {
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 24, 39, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manifest__section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.manifest__image img {
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.manifest__text {
    padding: 0 20px;
}

.manifest__headding {
    font-size: 24px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 5px solid var(--secondary-color);
}

.manifest__list {
    list-style: disc;
    padding-left: 20px;
    margin-left: 10px;
}

.manifest__list li {
    margin-bottom: 10px;
}

/* 7本柱オービット図 */

/* インタールードセクション */
.front__interlude {
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.front__interlude img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 活動セクション */
.front__activity {
    padding: 80px 0;
    background-color: var(--surface-alt);
}

.front__activity-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 0.06em;
}

.front__activity-title::after {
    content: attr(data-en);
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
}

.front__activity-lead {
    text-align: center;
    margin-bottom: 40px;
}

.front__activity-card {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    border: 1px solid rgba(17, 24, 39, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.front__activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.front__activity-card-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.front__activity-subtitle {
    padding: 15px;
    font-size: 18px;
    text-align: center;
    background: linear-gradient(135deg, #0b5f7a, #1282a2);
    color: #fff;
    margin: 0;
}

.front__activity-body {
    padding: 20px;
}

.o-btn-inverted {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 12px 24px;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.o-btn-inverted:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.o-btn-inverted i {
    margin-left: 5px;
}

/* SNSセクション */
.front__sns {
    padding: 80px 0;
    background-color: #fff;
}

.front__sns img {
    max-width: 100px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.front__sns img:hover {
    transform: scale(1.05);
}

/* サポーターセクション */
.front__supporters {
    padding: 80px 0;
    background-color: var(--surface-alt);
}

.front__supporters-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 0.06em;
}

.front__supporters-title::after {
    content: attr(data-en);
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
}

.front__supporters-body {
    padding: 0 15px;
}

.front__supporters-contact, .front__supporters-donation {
    padding: 30px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border: 1px solid rgba(17, 24, 39, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.front__supporters-contact:hover, .front__supporters-donation:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.front__supporters-contact h3, .front__supporters-donation h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.front__supporters-contact-box, .front__supporters-donation-box {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(17, 24, 39, 0.06);
}

.front__supporters-contact-box:hover, .front__supporters-donation-box:hover {
    background-color: #e9e9e9;
    transform: translateY(-5px);
}

.front__supporters-contact-box img, .front__supporters-donation-box img {
    max-width: 60px;
    margin-bottom: 10px;
}

/* 経歴セクション */
.front__career {
    padding: 80px 0;
    background-color: var(--surface);
}

.front__career-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 0.06em;
}

.front__contact {
    padding: 80px 0;
    background-color: var(--surface-alt);
}

.front__contact-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 0.06em;
}

.front__contact-title::after {
    content: attr(data-en);
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
}

.front__career-title::after {
    content: attr(data-en);
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
}

.career__content {
    background-color: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 24, 39, 0.05);
}

.career__content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.career__content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.career__content ul li {
    margin-bottom: 8px;
}

.career__content p {
    margin-bottom: 15px;
}

.contact__content {
    background-color: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 24, 39, 0.05);
    text-align: center;
}

.contact__mail-text {
    font-size: 16px;
    margin-bottom: 16px;
}

.contact__mail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-note {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 95, 122, 0.15);
}

.contact-message {
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: 600;
    display: none;
}

.contact-message.is-visible {
    display: block;
}

/* フッター */
.site-footer {
    background: radial-gradient(800px 500px at 20% -10%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%),
        linear-gradient(180deg, #1f2933 0%, #111827 100%);
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer__branding {
    margin-bottom: 30px;
}

.footer__branding-catch {
    margin-bottom: 10px;
}

.footer__branding-name {
    margin-bottom: 10px;
}

.footer__branding-jobtitle {
    font-size: 13px;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact {
    margin-bottom: 30px;
}

.footer__contact-heading {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.05em;
}

.footer__contact-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer__contact-office {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer__contact-info {
    margin-bottom: 20px;
}

.footer__contact-info > div {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer__contact-info i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-info a {
    color: #fff;
    transition: opacity 0.3s;
}

.footer__contact-info a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.footer__contact-sns ul {
    display: flex;
}

.footer__contact-sns li {
    margin-right: 10px;
}

.footer__contact-sns img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.footer__contact-sns img:hover {
    transform: scale(1.1);
}

.footer__contents, .footer__supporters {
    margin-bottom: 30px;
}

.footer__contents ul, .footer__supporters ul {
    margin-bottom: 20px;
}

.footer__contents li, .footer__supporters li {
    margin-bottom: 10px;
}

.footer__contents a, .footer__supporters a {
    opacity: 0.75;
    transition: all 0.3s;
}

.footer__contents a:hover, .footer__supporters a:hover {
    opacity: 1;
    color: #ffffff;
}

.footer__copyright {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 16px;
    justify-content: center;
    gap: 16px;
}

.footer__bottom {
    margin-top: 10px;
}

.footer__copyright li {
    margin-right: 20px;
    margin-bottom: 5px;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .pc-nav {
        display: none;
    }

    .nav-ham {
        display: block;
    }

    .d-lg-block {
        display: none !important;
    }

    .d-lg-none {
        display: block !important;
    }

    .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .manifest__text {
        padding: 30px 0 0;
    }

    .order-lg-first {
        order: 0;
    }

}

@media (max-width: 768px) {
    .front__message-title, .front__profile-title, .front__manifest-title, .front__activity-title, .front__supporters-title, .front__career-title {
        font-size: 28px;
    }

    .manifest__headding {
        font-size: 20px;
    }

    .profile__name {
        font-size: 20px;
    }

    .footer__branding, .footer__contact, .footer__contents, .footer__supporters {
        text-align: center;
    }

    .footer__contact-heading::after {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .footer__contact-sns ul {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .front__activity-card {
        margin-bottom: 30px;
    }

}

@media (max-width: 480px) {
    .site-header {
        min-height: 48px;
        padding: 2px 0;
    }

    .site-header .container {
        padding-right: 16px;
        padding-left: 16px;
        position: relative;
    }

    .nav-ham {
        right: 16px;
        top: 12px;
    }
}

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

.animate-slideInUp {
    animation: slideInUp 0.8s ease-out;
}

/* フォントの微調整 */
body {
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* SVGアイコン */
.svg-icon {
    fill: currentColor;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
}
