@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");ï»¿:root {
    --color-dark-navy: #202124;
    --color-light-navy: #5f6368;
    --color-blue: #1a73e8;
    --color-light-gray-1: #f8f9fa;
    --color-light-gray-2: #f1f3f4;
    --color-light-gray-3: #dadce0;
    --color-text-light: #9aa0a6;
    --color-text-medium: #5f6368;
    --color-insurance: #ea4335;
    --color-asset: #34a853;
    --color-loan: #fbbc04;
    --color-tax: #9aa0a6;
    --color-lifeplan: #673ab7;
    --color-rank-1: gold;
    --color-rank-2: silver;
    --color-rank-3: #cd7f32
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px
}

body {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    line-height: 1.6;
    color: var(--color-dark-navy);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    webkit-text-size-adjust: 100%
}

body.mobile-nav-open {
    overflow: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

a {
    text-decoration: none;
    color: inherit
}

.site-header {
    background: #fff;
    height: 90px;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    border-bottom: 1px solid #f1f3f4;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #202124
}

.logo img {
    height: 22px;
    vertical-align: middle
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px
}

.header-top-links {
    display: flex;
    gap: 16px;
    margin-bottom: 5px
}

.header-top-links a {
    font-size: 12px;
    color: var(--color-text-medium);
    transition: color .3s
}

.header-top-links a:hover {
    color: #113869
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 20px
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 10px
}

.main-nav a {
    font-size: 15px;
    font-weight: 900;
    color: #5f6368;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all .3s ease
}

.main-nav a:hover {
    background: #f8f9fa;
    color: #113869
}

.search-box {
    width: 280px;
    height: 36px;
    border: 1px solid #dadce0;
    border-radius: 24px;
    background: #f8f9fa;
    padding: 12px 20px;
    font-size: 14px;
    transition: all .3s ease
}

.search-box::placeholder {
    color: var(--color-text-light)
}

.search-box:focus {
    outline: 2px solid var(--color-blue);
    outline-offset: 2px
}

.search-form {
    position: relative
}

.search-form .search-button {
    position: absolute;
    top: 25%;
    right: 10px;
    border: none;
    background: 0 0
}

.hamburger-menu {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: 0 0;
    cursor: pointer;
    z-index: 1100;
    position: relative
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    margin: 5px auto;
    transition: all .3s ease-in-out
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
    overflow-y: auto;
    padding: 80px 20px 40px;
    box-shadow: -2px 0 8px rgba(0,0,0,.1)
}

.mobile-nav.is-open {
    transform: translateX(0)
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease-in-out
}

.mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border: none;
    background: 0 0;
    cursor: pointer
}

.close-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 50%
}

.close-menu span:first-child {
    transform: translate(-50%,-50%) rotate(45deg)
}

.close-menu span:last-child {
    transform: translate(-50%,-50%) rotate(-45deg)
}

.mobile-nav-section {
    margin-bottom: 30px
}

.mobile-nav-title {
    font-size: 16px;
    font-weight: 700;
    color: #113869;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #113869;
    position: relative;
    padding-left: 24px
}

.mobile-nav-title:before,.mobile-nav-title:after {
    content: "";
    position: absolute;
    background-color: #113869;
    transform: rotate(45deg)
}

.mobile-nav-title:before {
    width: 10px;
    height: 10px;
    top: -4px;
    left: 8px
}

.mobile-nav-title:after {
    width: 6px;
    height: 6px;
    top: 10px;
    left: 1px
}

.mobile-nav-list {
    list-style: none
}

.mobile-nav-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    font-size: 16px;
    color: var(--color-dark-navy);
    transition: background-color .2s;
    border-radius: 4px
}

.mobile-nav-list li a:hover {
    background-color: var(--color-light-gray-1)
}

.mobile-nav-list li a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--color-text-light);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color .2s
}

.mobile-nav-list li a:hover:after {
    background-color: var(--color-dark-navy)
}

.mobile-nav-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.mobile-nav-tags a {
    font-size: 13px;
    padding: 4px 10px;
    border: 1px solid var(--color-light-gray-3);
    border-radius: 16px;
    color: var(--color-text-medium);
    transition: all .2s
}

.mobile-nav-tags a:hover {
    background: var(--color-blue);
    color: #fff;
    border-color: var(--color-blue)
}

.mobile-nav-links a {
    display: block;
    padding: 12px 5px;
    font-size: 15px;
    border-top: 1px solid var(--color-light-gray-2)
}

.mobile-nav-links a:hover {
    color: #113869
}

.mobile-search {
    margin: 20px 0
}

.external-link {
    display: inline-flex;
    align-items: center
}

.external-link:after {
    content: "";
    display: inline-block;
    width: .9em;
    height: .9em;
    margin-left: 4px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    vertical-align: text-bottom;
    opacity: .8
}

.main-content {
    padding-top: 90px
}

.section-header {
    margin-bottom: 32px;
    text-align: left
}

.section-title {
    font-family: "Montserrat",sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-navy);
    margin-bottom: 4px;
    letter-spacing: 1px
}

.section-subtitle {
    font-size: 14px;
    color: var(--color-text-medium)
}

.pickup-section {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden
}

.pickup-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none
}

.bg-shape {
    position: absolute;
    opacity: .08;
    transition: all .3s ease
}

.shape-circle {
    border-radius: 50%
}

.shape-square {
    border-radius: 4px
}

.shape-triangle {
    width: 0;
    height: 0;
    background: 0 0 !important
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    top: 10%;
    left: 5%;
    animation: float1 8s ease-in-out infinite
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: #ec4899;
    top: 20%;
    right: 8%;
    animation: float2 6s ease-in-out infinite
}

.shape-3 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid #f59e0b;
    top: 15%;
    left: 15%;
    animation: float3 7s ease-in-out infinite
}

.shape-4 {
    width: 35px;
    height: 35px;
    background: #10b981;
    top: 45%;
    left: 3%;
    animation: float1 9s ease-in-out infinite
}

.shape-5 {
    width: 50px;
    height: 50px;
    background: #8b5cf6;
    top: 30%;
    right: 20%;
    animation: float2 5s ease-in-out infinite
}

.shape-6 {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #ef4444;
    top: 55%;
    left: 12%;
    animation: float3 8s ease-in-out infinite
}

.shape-7 {
    width: 45px;
    height: 45px;
    background: #06b6d4;
    top: 70%;
    right: 5%;
    animation: float1 6s ease-in-out infinite
}

.shape-8 {
    width: 30px;
    height: 30px;
    background: #f97316;
    top: 25%;
    left: 45%;
    animation: float2 7s ease-in-out infinite
}

.shape-9 {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #84cc16;
    top: 80%;
    left: 25%;
    animation: float3 9s ease-in-out infinite
}

.shape-10 {
    width: 55px;
    height: 55px;
    background: #d946ef;
    top: 35%;
    right: 35%;
    animation: float1 8s ease-in-out infinite
}

.shape-11 {
    width: 25px;
    height: 25px;
    background: #0ea5e9;
    top: 65%;
    left: 60%;
    animation: float2 6s ease-in-out infinite
}

.shape-12 {
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid #f43f5e;
    top: 50%;
    right: 15%;
    animation: float3 7s ease-in-out infinite
}

.shape-13 {
    width: 40px;
    height: 40px;
    background: #22c55e;
    top: 85%;
    right: 25%;
    animation: float1 5s ease-in-out infinite
}

.shape-14 {
    width: 35px;
    height: 35px;
    background: #a855f7;
    top: 75%;
    left: 40%;
    animation: float2 8s ease-in-out infinite
}

.shape-15 {
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 38px solid #0891b2;
    top: 40%;
    left: 70%;
    animation: float3 6s ease-in-out infinite
}

.shape-16 {
    width: 48px;
    height: 48px;
    background: #fb7185;
    top: 60%;
    right: 45%;
    animation: float1 7s ease-in-out infinite
}

.shape-17 {
    width: 32px;
    height: 32px;
    background: #facc15;
    top: 20%;
    left: 75%;
    animation: float2 9s ease-in-out infinite
}

.shape-18 {
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid #34d399;
    top: 85%;
    left: 80%;
    animation: float3 8s ease-in-out infinite
}

@keyframes float1 {
    0%,100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-15px) rotate(5deg)
    }
}

@keyframes float2 {
    0%,100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-20px) rotate(-5deg)
    }
}

@keyframes float3 {
    0%,100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-10px) rotate(3deg)
    }
}

.pickup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1
}

.pickup-title {
    font-size: 60px;
    font-weight: 700;
    color: #113869;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 24px
}

.pickup-title:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: currentColor
}

.pickup-carousel-wrapper {
    position: relative;
    padding: 40px 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%)
}

.pickup-carousel {
    display: flex;
    gap: 24px;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.pickup-card {
    flex: 0 0 calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-light-gray-2);
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
    transition: transform .5s ease-in-out,opacity .5s ease-in-out,box-shadow .3s ease;
    z-index: 1;
    transform: translateY(40px) scale(.85);
    opacity: .6
}

.pickup-card.is-center {
    z-index: 10;
    transform: translateY(0) scale(1);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,.1)
}

.pickup-card:not(.is-center):hover {
    transform: translateY(40px) scale(.87);
    opacity: .8
}

.pickup-card.is-center:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,.15)
}

.pickup-card-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1.91;
    overflow: hidden;
    border-radius: 8px 8px 0 0
}

.pickup-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
    pointer-events: none
}

.pickup-card.is-center:hover .pickup-card-image img {
    transform: scale(1.05)
}

.pickup-card-image .pickup-card-tag {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    color: var(--color-dark-navy);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    text-transform: uppercase
}

.pickup-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1
}

.pickup-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #202124;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .3s ease
}

.pickup-card:hover .pickup-card-title {
    color: #113869
}

.pickup-card-date {
    font-size: 12px;
    color: #9aa0a6;
    margin-top: 0;
    align-self: flex-end
}

.pickup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.95);
    border: 1px solid #dadce0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    color: #5f6368;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 10
}

.pickup-prev {
    left: 20px
}

.pickup-next {
    right: 20px
}

.pickup-nav:hover {
    background: #fff;
    color: #1a73e8;
    border-color: #1a73e8;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,.15)
}

.pickup-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px
}

.pickup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dadce0;
    cursor: pointer;
    transition: all .3s ease
}

.pickup-dot.active,.pickup-dot:hover {
    background: #1a73e8;
    transform: scale(1.25)
}

.article-list-section {
    padding: 100px 0;
    background: #fff
}

.article-list-container {
    display: flex;
    gap: 62px
}

.main-column {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    align-content: start
}

.sidebar {
    width: 360px;
    flex-shrink: 0
}

.article-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    transition: box-shadow .3s ease,transform .3s ease
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transform: translateY(-2px)
}

.article-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.article-card-image .article-card-tag {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    color: var(--color-dark-navy);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    text-transform: uppercase;
    border-radius: 0
}

.article-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: static
}

.article-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #202124;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .3s ease
}

.article-card:hover .article-card-title {
    color: #113869
}

.article-card-summary {
    display: none
}

.article-card-date {
    font-size: 12px;
    color: #9aa0a6;
    margin-top: 0;
    align-self: flex-end
}

.sidebar {
    background: 0 0;
    border-radius: 0;
    padding: 0
}

.sidebar-widget {
    margin-bottom: 40px
}

.sidebar-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #113869;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #113869;
    position: relative;
    padding-left: 24px
}

.sidebar-section-title:before,.sidebar-section-title:after {
    content: "";
    position: absolute;
    background-color: #113869;
    transform: rotate(45deg)
}

.sidebar-section-title:before {
    width: 10px;
    height: 10px;
    top: -4px;
    left: 8px
}

.sidebar-section-title:after {
    width: 6px;
    height: 6px;
    top: 10px;
    left: 1px
}

.sidebar-article-list {
    display: flex;
    flex-direction: column;
    list-style: none
}

.sidebar-article {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-light-gray-2)
}

.sidebar-article-list li:last-child .sidebar-article {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.sidebar-article-rank {
    flex-shrink: 0;
    width: 28px;
    font-family: Arial,sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-medium);
    background-color: transparent
}

.sidebar-article-rank.rank-1 {
    color: var(--color-rank-1)
}

.sidebar-article-rank.rank-2 {
    color: var(--color-rank-2)
}

.sidebar-article-rank.rank-3 {
    color: var(--color-rank-3)
}

.sidebar-article-thumbnail {
    width: 100px;
    height: 75px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0
}

.sidebar-article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sidebar-article-content {
    flex: 1;
    display: flex;
    flex-direction: column
}

.sidebar-article-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-medium);
    margin-bottom: 8px;
    text-transform: uppercase
}

.sidebar-article-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-dark-navy);
    transition: color .3s ease;
    margin-bottom: auto
}

.sidebar-article:hover .sidebar-article-title {
    color: #113869
}

.sidebar-article-date {
    font-size: 12px;
    color: #9aa0a6;
    margin-top: 8px
}

.sidebar-banners {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.sidebar-banner {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: transform .3s ease,box-shadow .3s ease
}

.sidebar-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,.12)
}

.sidebar-banner img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle
}

.keywords-section {
    background: #f8f9fa;
    padding: 100px 0;
    text-align: center
}

.keywords-title {
    font-size: 24px;
    font-weight: 600;
    color: #113869;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
    padding: 0 20px
}

.keywords-title:before {
    content: "[";
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    font-size: 1.8em;
    font-weight: 100;
    color: #113869
}

.keywords-title:after {
    content: "]";
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    font-size: 1.8em;
    font-weight: 100;
    color: #113869
}

.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 1000px;
    margin: 0 auto
}

.keyword-tag {
    background: #fff;
    border: 1px solid #dadce0;
    color: #5f6368;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 400;
    transition: all .2s ease
}

.keyword-tag:hover {
    background: #113869;
    color: #fff;
    border-color: #113869;
    transform: none;
    box-shadow: none
}

.site-footer {
    background: #202124;
    color: #fff;
    padding: 40px 0 32px;
    text-align: center
}

.footer-logo {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px
}

.footer-logo img {
    height: 30px;
    filter: brightness(0) invert(1)
}

.footer-description {
    font-size: 14px;
    color: #9aa0a6;
    margin-bottom: 24px
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px
}

.footer-links a {
    font-size: 13px;
    color: var(--color-light-gray-3);
    transition: color .3s
}

.footer-links a:hover {
    color: #fff
}

.footer-copyright {
    font-size: 12px;
    color: #5f6368;
    padding-top: 24px;
    border-top: 1px solid #3c4043;
    display: inline-block
}

@media (max-width: 1024px) {
    .site-header {
        height:70px
    }

    .main-content {
        padding-top: 70px
    }

    .header-top-links {
        display: none
    }

    .header-right-group {
        display: none
    }

    .hamburger-menu {
        display: block
    }

    .article-list-container {
        flex-direction: column;
        gap: 48px
    }

    .sidebar {
        width: 100%;
        margin-top: 0
    }
}

@media (max-width: 768px) {
    .container {
        padding:0 15px
    }

    .logo {
        font-size: 22px
    }

    .main-column {
        grid-template-columns: 1fr
    }

    .section-title {
        font-size: 24px
    }

    .pickup-section {
        padding: 40px 0
    }

    .pickup-container {
        padding: 0
    }

    .pickup-card {
        flex: 0 0 calc(100% - 30px);
        margin-left: 15px;
        transform: none;
        opacity: 1;
        box-shadow: 0 2px 8px rgba(0,0,0,.08);
        z-index: 1
    }

    .pickup-card.is-center {
        transform: none;
        opacity: 1;
        box-shadow: 0 4px 12px rgba(0,0,0,.1)
    }

    .pickup-card:hover,.pickup-card.is-center:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0,0,0,.1);
        z-index: 2
    }

    .pickup-title {
        font-size: 42px;
        padding: 0 15px
    }

    .pickup-carousel-wrapper {
        padding: 40px 0;
        width: 100%;
        left: 0;
        transform: none
    }

    .pickup-carousel {
        padding: 0
    }

    .pickup-nav {
        top: 40%
    }

    .pickup-prev {
        left: 10px
    }

    .pickup-next {
        right: 10px
    }

    .bg-shape {
        opacity: .05
    }

    .shape-1,.shape-4,.shape-7,.shape-10,.shape-13,.shape-16 {
        width: 35px;
        height: 35px
    }

    .shape-2,.shape-5,.shape-8,.shape-11,.shape-14,.shape-17 {
        width: 25px;
        height: 25px
    }

    .shape-3 {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 25px solid #f59e0b
    }

    .shape-6 {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 20px solid #ef4444
    }

    .shape-9 {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 18px solid #84cc16
    }

    .shape-12 {
        border-left: 13px solid transparent;
        border-right: 13px solid transparent;
        border-bottom: 22px solid #f43f5e
    }

    .shape-15 {
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-bottom: 24px solid #0891b2
    }

    .shape-18 {
        border-left: 11px solid transparent;
        border-right: 11px solid transparent;
        border-bottom: 19px solid #34d399
    }
}

@media (max-width: 480px) {
    .pickup-title {
        font-size:32px
    }

    .pickup-carousel {
        gap: 16px
    }

    .pickup-card-content {
        padding: 16px
    }

    .pickup-card-title {
        font-size: 15px
    }

    .bg-shape {
        opacity: .03
    }

    .footer-links {
        flex-direction: column;
        gap: 16px
    }
}

.hero-title-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #7db8d4;
    background-image: radial-gradient(circle,#5fb8c7 3.5px,transparent 3.5px);
    background-position: 0 0;
    background-size: 32px 32px
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2
}

.hero-title-en {
    font-family: "Montserrat",-apple-system,BlinkMacSystemFont,sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2
}

.hero-subtitle-jp {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Hiragino Kaku Gothic Pro",sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,.95);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto
}

@media (max-width: 768px) {
    .hero-title-section {
        padding:40px 0
    }

    .hero-title-en {
        font-size: 28px;
        letter-spacing: .5px;
        margin-bottom: 16px
    }

    .hero-subtitle-jp {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 15px
    }
}

@media (max-width: 480px) {
    .hero-title-section {
        padding:32px 0
    }

    .hero-title-en {
        font-size: 22px;
        letter-spacing: .3px
    }

    .hero-subtitle-jp {
        font-size: 13px;
        line-height: 1.4
    }
}

.article-body-container {
    display: flex;
    margin-top: 60px;
    gap: 62px
}

@media (max-width: 896px) {
    .article-body-container {
        display:block;
        margin-top: 40px
    }
}

.article-body-container .main-column {
    display: block;
    flex: 1;
    min-width: 0
}

.sidebar {
    width: 360px;
    flex-shrink: 0
}

.article-header {
    margin-bottom: 32px
}

.article-category-link {
    font-size: 14px;
    font-weight: 700;
    color: #113869;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block
}

.article-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--color-dark-navy);
    line-height: 1.4;
    margin-bottom: 16px
}

@media (max-width: 896px) {
    .article-title {
        font-size:24px
    }
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-text-medium)
}

.article-featured-image {
    margin: 0 0 32px;
    width: 100%;
    aspect-ratio: 1.7777777778;
    border-radius: 8px;
    overflow: hidden
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cta-button-small {
    display: block;
    width: fit-content;
    margin: 32px auto;
    padding: 10px 24px;
    background: #72c515;
    color: #fff;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    transition: all .3s ease
}

@media (max-width: 896px) {
    .cta-button-small {
        width:auto;
        padding: 13px 0
    }
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,.15);
    opacity: .9
}

.table-of-contents {
    margin: 40px auto;
    padding: 32px 40px;
    border-top: 1px solid #113869;
    border-bottom: 1px solid #113869;
    background-color: #eff0f0;
    background-image: linear-gradient(135deg,#f1f3f4 25%,transparent 25%,transparent 50%,#f1f3f4 50%,#f1f3f4 75%,transparent 75%,transparent);
    background-size: 20px 20px;
    position: relative
}

@media (max-width: 896px) {
    .table-of-contents {
        padding:32px 10px
    }
}

.table-of-contents:before,.table-of-contents:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #113869
}

.table-of-contents:before {
    top: 3px
}

.table-of-contents:after {
    bottom: 3px
}

.table-of-contents .toc-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.table-of-contents .toc-title .toc-title-icon {
    display: inline-block;
    width: 24px;
    height: 16px;
    position: relative
}

.table-of-contents .toc-title .toc-title-icon span {
    display: block;
    height: 3px;
    background-color: #113869;
    position: absolute;
    left: 0;
    border-radius: 2px;
    transition: all .2s ease
}

.table-of-contents .toc-title .toc-title-icon span.line1 {
    top: 0;
    width: 20px
}

.table-of-contents .toc-title .toc-title-icon span.line2 {
    top: 6px;
    width: 24px
}

.table-of-contents .toc-title .toc-title-icon span.line3 {
    top: 12px;
    width: 20px
}

.table-of-contents .toc-list {
    list-style: none;
    padding-left: 0;
    counter-reset: toc-counter
}

.table-of-contents .toc-list li {
    counter-increment: toc-counter;
    margin-bottom: 12px;
    list-style: none !important
}

.table-of-contents .toc-list li:last-child {
    margin-bottom: 0
}

.table-of-contents .toc-list li a {
    display: flex;
    align-items: baseline;
    font-size: 16px;
    color: var(--color-dark-navy);
    transition: color .2s;
    line-height: 1.5;
    text-decoration: none !important
}

.table-of-contents .toc-list li a:hover {
    color: #113869
}

.table-of-contents .toc-list li a:before {
    content: counter(toc-counter,decimal-leading-zero);
    font-weight: 700;
    font-size: 18px;
    font-family: "Montserrat",sans-serif;
    color: #113869;
    margin-right: 15px;
    flex-shrink: 0
}

.pagination {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin: 40px 0
}

.pagination .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all .2s ease
}

.pagination .page-numbers:hover {
    border-color: #333;
    background-color: #f5f5f5;
    color: #000
}

.pagination .page-numbers.current {
    background-color: #333;
    color: #fff;
    font-weight: 700;
    border-color: #333
}

.pagination .page-numbers.prev,.pagination .page-numbers.next {
    font-size: 18px;
    line-height: 1;
    padding-bottom: 2px
}

.article-body {
    font-size: 16px;
    color: #333
}

.article-body h2,.article-body h3,.article-body h4 {
    font-weight: 700;
    color: var(--color-dark-navy);
    margin: 48px 0 20px
}

.article-body h2 {
    background: #113869;
    font-size: 24px;
    color: #fff;
    padding: 20px 30px
}

@media (max-width: 896px) {
    .article-body h2 {
        font-size:20px;
        padding: 15px 25px
    }
}

.article-body h3 {
    font-size: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid #113869;
    position: relative
}

@media (max-width: 896px) {
    .article-body h3 {
        font-size:20px
    }
}

.article-body h3:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: var(--color-blue)
}

.article-body h4 {
    font-size: 22px;
    padding-left: 16px;
    border-left: 4px solid #113869
}

@media (max-width: 896px) {
    .article-body h4 {
        font-size:20px
    }
}

.article-body h5 {
    position: relative;
    margin-bottom: 30px;
    padding: .5em .7em .4em;
    font-size: 18px;
    border-bottom: 3px solid #113869;
    color: #333
}

.article-body h5:before,.article-body h5:after {
    position: absolute;
    left: 30px;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0,100% 0,50% 100%);
    content: ""
}

.article-body h5:before {
    background-color: #113869
}

.article-body h5:after {
    bottom: -11px;
    background-color: #fff
}

.article-body p {
    margin-bottom: 24px
}

.article-body p a {
    color: #524fb0;
    text-decoration: underline
}

.article-body p a:hover {
    text-decoration: none
}

.article-body ul,.article-body ol {
    margin: -15px 0 30px 10px;
    padding-left: 20px
}

.article-body ul li,.article-body ol li {
    margin-bottom: 10px;
    line-height: 1.5
}

.article-body ul li {
    list-style: disc
}

.article-body ol li {
    list-style: decimal
}

.article-body blockquote {
    margin: 24px 0;
    padding: 20px;
    background: var(--color-light-gray-1);
    border-left: 4px solid var(--color-light-gray-3);
    color: var(--color-text-medium)
}

.article-body img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 24px auto
}

.article-body table {
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.8
}

.article-body table th,.article-body table td {
    border: 1px solid silver;
    padding: 14px;
    line-height: 1.4;
    vertical-align: middle
}

@media (max-width: 896px) {
    .article-body table th,.article-body table td {
        white-space:nowrap;
        -webkit-text-size-adjust: 100%
    }
}

.article-body table th {
    background: #f6f6f6;
    width: 32%;
    font-weight: 900
}

.article-body table td:first-child {
    background: #f6f6f6;
    width: 25%;
    font-weight: 900
}

@media (max-width: 896px) {
    .article-body .wp-block-table {
        display:block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 0 30px !important
    }

    .article-body .wp-block-table table {
        min-width: 500px
    }
}

.article-body .pr_text {
    width: 100%;
    margin-bottom: 50px;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ccc
}

.article-body .pr_text p {
    margin-bottom: 0;
    font-size: 14px
}

.article-body .box {
    margin-bottom: 24px;
    padding: 25px;
    border-radius: 10px
}

.article-body .box strong {
    display: inline-block;
    margin-bottom: 10px
}

.article-body .box p {
    margin-bottom: 0
}

.article-body .box01 {
    background: #e1f0fa
}

.article-body .box02 {
    background: #ffeded
}

.article-body .linkbox {
    border: 2px double #ccc;
    margin-bottom: 20px;
    padding: 15px
}

.article-body .linkbox p {
    margin-bottom: 0
}

.article-body .btn01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    margin: 0 auto;
    padding: .9em 2em;
    border: none;
    border-bottom: solid 5px #cf6f09;
    border-radius: 5px;
    background-color: #fa870c;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    transition: .5s ease
}

@media (max-width: 896px) {
    .article-body .btn01 a {
        width:auto
    }
}

.article-body .btn01 a:after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: ""
}

.article-body .btn01 a:hover {
    transform: translateY(3px);
    border-bottom-width: 2px
}

.article-body .btn02 a {
    display: inline-block;
    background: #fa870c;
    margin-top: 12px;
    padding: 5px 20px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    border-radius: 40px
}

.article-body .btn02 a:hover {
    background: #000;
    transition: .5s
}

.article-body .voicebox {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 1.5em 0;
    padding: 25px 35px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #eff6f9;
    border: solid 3px #e1f0f7;
    border-radius: 10px
}

.article-body .voicebox:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #eff6f9;
    z-index: 2
}

.article-body .voicebox:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #e1f0f7;
    z-index: 1
}

.article-body .voicebox p {
    margin: 0;
    padding: 0
}

.article-body .voicebox img {
    width: 40px;
    margin: 0
}

.article-body .has-small-font-size {
    font-size: 13px
}

.supervisor-info-section {
    margin: 48px 0;
    padding: 24px;
    background: var(--color-light-gray-1);
    border-radius: 8px;
    border: 1px solid var(--color-light-gray-2)
}

.supervisor-info-section .supervisor-profile {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 20px
}

.supervisor-info-section .supervisor-profile .supervisor-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px
}

.supervisor-info-section .supervisor-profile .supervisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.1)
}

.supervisor-info-section .supervisor-profile .supervisor-details {
    flex: 1
}

.supervisor-info-section .supervisor-profile .supervisor-details .supervisor-title {
    font-size: 14px;
    color: var(--color-text-medium);
    margin-bottom: 4px
}

.supervisor-info-section .supervisor-profile .supervisor-details .supervisor-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark-navy);
    margin-bottom: 12px
}

.supervisor-info-section .supervisor-profile .supervisor-details .supervisor-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-medium);
    margin-bottom: 0
}

.article-share {
    margin: 48px 0;
    text-align: center
}

.cta-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin: 48px 0;
    border-top: 1px solid var(--color-light-gray-2);
    border-bottom: 1px solid var(--color-light-gray-2)
}

.cta-section .cta-logo {
    height: 35px;
    margin-bottom: 16px
}

.cta-section .cta-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark-navy);
    margin-bottom: 16px
}

.cta-section .cta-description {
    font-size: 16px;
    color: var(--color-text-medium);
    max-width: 600px;
    margin: 0 auto 24px
}

.cta-section .cta-description strong {
    font-weight: 700;
    font-size: 1.1em;
    color: var(--color-dark-navy)
}

.cta-section .cta-list,.cta-section .cta-list-alt {
    padding: 0;
    margin: 0 auto 24px;
    max-width: 400px;
    text-align: left
}

.cta-section .cta-list li,.cta-section .cta-list-alt li {
    margin-bottom: 10px;
    position: relative
}

.cta-section .cta-list li.cta-list li,.cta-section .cta-list-alt li.cta-list li {
    padding-left: 1.5em
}

.cta-section .cta-list li.cta-list li:before,.cta-section .cta-list-alt li.cta-list li:before {
    content: "âœ“";
    color: #113869;
    font-weight: 700;
    position: absolute;
    left: 0
}

.cta-section .cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: #72c515;
    color: #fff;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 18px;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.1)
}

.cta-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
    opacity: .9
}

.related-articles-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid var(--color-light-gray-2)
}

.related-articles-section .related-articles-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--color-dark-navy)
}

.related-articles-section .related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.related-articles-section .related-articles-grid .related-article-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-light-gray-2);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .3s ease,transform .3s ease;
    background: #fff;
    box-shadow: none
}

.related-articles-section .related-articles-grid .related-article-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transform: translateY(-2px)
}

.related-articles-section .related-articles-grid .related-article-card .related-article-image {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 8px 8px 0 0;
    overflow: hidden
}

.related-articles-section .related-articles-grid .related-article-card .related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.related-articles-section .related-articles-grid .related-article-card .related-article-image .related-article-tag {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    color: var(--color-dark-navy);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    text-transform: uppercase
}

.related-articles-section .related-articles-grid .related-article-card .related-article-content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.related-articles-section .related-articles-grid .related-article-card .related-article-content .related-article-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-dark-navy);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .3s ease
}

.related-article-card:hover .related-articles-section .related-articles-grid .related-article-card .related-article-content .related-article-title {
    color: #113869
}

.related-articles-section .related-articles-grid .related-article-card .related-article-content .related-article-date {
    font-size: 12px;
    color: #9aa0a6;
    align-self: flex-end
}

.share-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1)
}

@media (max-width: 768px) {
    .share-container {
        margin:1rem;
        padding: 1rem
    }
}

.share-title {
    margin: 0 0 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: center
}

@media (max-width: 768px) {
    .share-title {
        font-size:1.1rem;
        margin-bottom: 1rem
    }
}

.sns-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    list-style: none;
    margin: 0;
    padding: 0
}

@media (max-width: 768px) {
    .sns-share-buttons {
        gap:.5rem
    }
}

.sns-share-item {
    flex: 1;
    min-width: 100px
}

@media (max-width: 480px) {
    .sns-share-item {
        flex-basis:calc(50% - 0.25rem);
        min-width: auto
    }
}

.sns-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: .875rem;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.sns-share-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.1);
    transition: left .3s ease
}

.sns-share-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.15)
}

.sns-share-link:hover:before {
    left: 100%
}

.sns-share-link:active {
    transform: translateY(0)
}

@media (max-width: 768px) {
    .sns-share-link {
        padding:.6rem .8rem;
        font-size: .8rem
    }
}

@media (max-width: 480px) {
    .sns-share-link {
        padding:.5rem;
        font-size: .75rem
    }
}

.sns-share-icon {
    width: 20px;
    height: 20px;
    margin-right: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.sns-share-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor
}

@media (max-width: 768px) {
    .sns-share-icon {
        width:18px;
        height: 18px;
        margin-right: .4rem
    }
}

@media (max-width: 480px) {
    .sns-share-icon {
        width:16px;
        height: 16px;
        margin-right: .3rem
    }
}

.sns-share-text {
    white-space: nowrap;
    font-size: inherit
}

@media (max-width: 480px) {
    .sns-share-text {
        font-size:.7rem
    }
}

.sns-share-link--x {
    background: #000
}

.sns-share-link--x:hover {
    background: linear-gradient(135deg,#0d0d0d 0%,#262626 100%)
}

.sns-share-link--facebook {
    background: #1877f2
}

.sns-share-link--facebook:hover {
    background: linear-gradient(135deg,#3085f3 0%,#60a2f6 100%)
}

.sns-share-link--hatena {
    background: #00a4de
}

.sns-share-link--hatena:hover {
    background: linear-gradient(135deg,#00b7f8 0%,#2cc8ff 100%)
}

.sns-share-link--line {
    background: #06c755
}

.sns-share-link--line:hover {
    background: linear-gradient(135deg,#07e060 0%,#21f879 100%)
}

.sns-share-link--pocket {
    background: linear-gradient(135deg,#ef4056 0%,#f36f80 100%)
}

.sns-share-link--pocket:hover {
    background: linear-gradient(135deg,#f1586b 0%,#f58794 100%)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.sns-share-item {
    animation: fadeInUp .6s ease forwards
}

.sns-share-item:nth-child(1) {
    animation-delay: .1s
}

.sns-share-item:nth-child(2) {
    animation-delay: .2s
}

.sns-share-item:nth-child(3) {
    animation-delay: .3s
}

.sns-share-item:nth-child(4) {
    animation-delay: .4s
}

.sns-share-item:nth-child(5) {
    animation-delay: .5s
}

@media (prefers-color-scheme: dark) {
    .share-container {
        background:#1a1a1a;
        color: #fff
    }

    .share-title {
        color: #fff
    }
}

@media print {
    .share-container {
        display: none
    }
}
