#retirement_samue a {
    text-decoration: none !Important;
}

.container {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    text-decoration: none !important;
}

@media screen and (max-width: 768px) {
    .container {
        text-align: left;
        width: 90%;
    }
}

/* バナー見出し */
.hero-banner {
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    background: transparent !important;
    font-size: 3rem;
    font-weight: bold;
    color: #192E59;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s ease;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    margin: 2rem 0;
    line-height: 160%;
    font-size: 1.6rem;
    color: #121212;
    letter-spacing: 0.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s ease;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s ease;
}

/* アニメーションクラス */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fade-out {
    opacity: 0 !important;
    transform: translateY(-20px) !important;
}

@media screen and (max-width: 768px) {

    .hero-banner {
        padding: 0;
    }

    .hero-img {
        aspect-ratio: 3 / 4;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* キャッチコピー */
.catchcopy {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.catchcopy-text {
    display: block !important;
    font-size: 2.4rem !important;
    color: #192E59;
    font-weight: bold !important;
    margin-bottom: 2rem !important;
    height: auto !important;
    line-height: 160%;
}

.catchcopy-sub {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 1rem;
    text-align: center;
    line-height: 200%;
    font-weight: normal;
}

@media screen and (max-width: 768px) {

    .catchcopy {
        padding: 2rem 1rem 1rem !important;
    }

    .catchcopy-sub {
        text-align: left;
        font-size: 1rem;
    }


    .catchcopy-text {
        font-size: 1.4rem !important;
        text-align: left;
    }
}

/* ブランドこだわり */
.brand-section {
    background: #fafafa;
    padding: 4rem 0;
}

.section-title {
    display: block !important;
    text-align: center;
    font-size: 2.2rem !important;
    color: #192E59;
    margin-bottom: 56px !important;
    position: relative;
    height: auto !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 3px;
    background: #192E59;
}

.brand-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.1rem;
    line-height: 2;
}

.brand-content p {
    margin-bottom: 2rem;
    color: #333;
    line-height: 200%;
    text-align: left;
}

.brand-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.brand-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #8d6e63, #a1887f);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.brand-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.brand-image-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width: 768px) {

    .brand-section {
        padding: 3rem 0 2rem !important;
    }

    .brand-content p {
        width: 90%;
        margin: 0 auto;
    }

    .brand-images {
        grid-template: none;
        gap: 1rem;
    }

    .brand-image-caption {
        font-weight: normal;
    }

    .section-title::after {
        bottom: -20px;
        width: 64px;
        height: 2px;
    }

}

/* おすすめ商品 */
.featured-product {
    background: #fff;
    padding: 80px 0;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.product-image {
    width: 100%;
    height: 400px;
    background: #121212;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
}

.product-info h3 {
    font-size: 2rem;
    color: #121212;
    margin: 2rem 0;
    line-height: 120%;
}

.product-description {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #333;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #B32E2F, #D23F40);
    color: white !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.3);
    text-decoration: none !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 64, 55, 0.4);
}

@media screen and (max-width: 768px) {

    .featured-product {
        padding: 2rem 0 !important;
    }

    .product-image {
        aspect-ratio: 3 / 4;
    }

    .product-image img {
        height: 100%;
        object-fit: cover;
        object-position: left top;
    }

    .product-description {
        text-align: left;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 0;
        margin: 1rem 0 2rem;
    }

    .product-info {
        padding: 0 1rem;
    }

    .product-info h3 {
        font-size: 1.6rem;
    }

    .product-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}

/* その他商品 */
.other-products {
    background:
        #f5f5f5;
    padding: 2rem;
}

.other-products h3 {
    background: #fff;
    text-align: center;
    color: #333;
    margin: 1rem 0 2rem;
    font-size: 1.6rem;
    line-height: 120%;
}

.product-category {
    background: #fff;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-category02 {
    background: #f5f5f5;
    margin-bottom: 0;
    padding: 2rem;
    border-radius: 0;
    box-shadow: unset;
}

.product-category02 h3 {
    background: #f5f5f5;
    text-align: center;
    color: #333;
    margin: 1rem 0 2rem;
    font-size: 1.6rem;
    line-height: 120%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #a1887f, #bcaaa4);
}

/* カテゴリセクション */
.category-section {
    background: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    font-weight: 600;
}

.grade-title {
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #e8e8e8;
    padding: 4px 20px;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0px center;
    background-size: 100px auto;
}

.grade-title-komono {
    background: #192E59;
    color: #fff;
}

.grade-title img {
    height: 32px;
}

.grade01 {
    background-image: url('https://wasuian.com/pic-labo/syou02.png');
    filter: grayscale(100%);
}

.grade02 {
    background-image: url('https://wasuian.com/pic-labo/tiku02.png');
    filter: grayscale(100%);
}

.grade03 {
    background-image: url('https://wasuian.com/pic-labo/bai02.png');
    filter: grayscale(100%);
}

/* ホバー時に背景画像に色を付ける */
.product-item:hover .grade01 {
    filter: none;
    /* グレースケールを解除 */
}

.product-item:hover .grade02 {
    filter: none;
    /* グレースケールを解除 */
}

.product-item:hover .grade03 {
    filter: none;
    /* グレースケールを解除 */
}

/* 商品グリッド */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    position: relative;
}

.other-products-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.other-products-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.product-item-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #ccc, #999);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item-info {
    padding: 20px;
    text-align: center;
}

.product-item h4 {
    color: #2c2c2c;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* レスポンシブ対応 */
@media screen and (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .category-section {
        padding: 2rem 0;
        margin-bottom: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .category-title {
        font-size: 1.4rem;
    }
}

/* 価格別リンク */
.price-links {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.price-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
}

.price-buttons a {
    line-height: 160%;
    text-decoration: none !important;
}

.price-01 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.price-02 {
    font-size: 0.9rem;
    text-decoration: underline;
}

.price-button {
    background: white;
    border: 2px solid #8d6e63;
    color: #5d4037;
    padding: 20px 20px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.price-button:hover {
    background: #8d6e63;
    color: white;
    transform: translateY(-5px) !important;
}

@media screen and (max-width: 768px) {
    .price-links {
        padding: 2rem 0 !important;
    }
}

/* サービス案内 */
.services {
    background: #f5f5f5;
    padding: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a4d95, #192e59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.service-text {
    margin: 0 auto;
    flex-grow: 1;
}

.service-text p {
    text-align: left;
    margin-bottom: 1rem;
    color: #333;
}

.service-card h4 {
    color: #192E59;
    margin: 1rem auto;
    font-size: 1.3rem;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.button-wrap {
    margin-top: auto;
    padding-top: 20px;
}

.service-detail-button {
    display: block;
    background: white;
    border: 2px solid #8d6e63;
    color: #5d4037;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
}

.service-detail-button:hover {
    background: #8d6e63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 110, 99, 0.3);
}

/* 刺繍サービス専用スタイル */
.embroidery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.embroidery-image {
    width: 100%;
    display: grid;
    gap: 24px;
}

.service-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #8d6e63, #a1887f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.service-image img {
    width: 100%;
}

.embroidery-info h4 {
    color: #192E59;
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: left;
}

.embroidery-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

@media (max-width: 768px) {

    .services {
        padding: 2rem 1rem !important;
    }

    .service-image {
        border-radius: unset;
        box-shadow: unset;
    }

    .embroidery-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
        padding: 2rem;
    }

    .embroidery-info h4 {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* お客様の声 */
.testimonials {
    background: #fff;
    padding: 80px 0;
}

/* 写真スライダー */
.testimonials-slider {
    margin-bottom: 50px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.slider-img {
    display: flex;
    animation: slide 40s linear infinite;
    width: calc(240px * 24);
    /* 写真数 × 幅 */
}

.slider-item {
    flex: 0 0 240px;
    height: 320px;
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slider-item:hover img {
    transform: scale(1.05);
}

.slider-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-item:hover::after {
    opacity: 1;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-240px * 12));
        /* 半分の位置まで移動 */
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.testimonial::before {
    content: '★★★★★';
    font-size: 1.6rem;
    color: #D23F40;
    position: absolute;
    top: -14px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    text-align: right;
    color: #666;
    font-weight: bold;
}

.testimonials-link {
    text-align: center;
    margin-top: 40px;
}

.testimonials-link a {
    text-decoration: none !important;
}

.testimonials-link-button {
    width: 40%;
    display: inline-block;
    background: white;
    border: 2px solid #8d6e63;
    color: #5d4037;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.testimonials-link-button:hover {
    background: #8d6e63;
    color: white;
}

@media screen and (max-width: 768px) {
    .testimonials {
        padding: 2rem 0 !important;
    }

    .testimonial {
        padding: 1.6rem 2rem;
    }

    .testimonial::before {
        top: -20px;
    }

    .testimonials-link {
        margin: 2rem 0 3rem;
    }

    .testimonials-link-button {
        width: 100%;
        padding: 1rem 0;
        text-align: center;
    }

    .slider-item {
        flex: 0 0 210px;
        height: 280px;
        margin: 0 12px;
        box-shadow: none;
    }
}


/* レスポンシブ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .price-buttons {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* メディア掲載情報 */
.media-section {
    background: #f5f5f5;
    padding: 2rem;
}

.media-grid {
    margin-top: 2rem;
}

.media-item {
    background: white;
    padding: 1.6rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 20px;
    align-items: center;
}

.media-image {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #8d6e63, #a1887f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    overflow: hidden;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-content {
    width: 100%;
}

.media-content h4 {
    color: #121212;
    font-size: 1rem;
    margin: 0.6rem 0 1rem;
    text-align: left;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.6rem;
}

.media-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.media-link {
    text-align: center;
    margin-top: 40px;
}

.media-link a {
    text-decoration: none !important;
}

.media-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%;
    /* 16:9のアスペクト比 */
    overflow: hidden;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.media-item .media-image {
    height: auto;
}


@media screen and (max-width: 768px) {

    .media-section {
        padding: 2rem 1rem !important;
    }

    .media-item {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .media-content {
        width: 100%;
    }

    .media-content h4 {
        margin: 0 0 1rem 0;
        border-bottom: 1px solid #ccc;
        padding-bottom: 0.6rem;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .media-icon {
        display: none;
    }

    .media-link {
        margin: 2rem 0 0;
    }

    .media-item .media-image {
        height: auto;
    }
}

/* 退職祝いコラム */
.column-section {
    background: #fff;
    padding: 80px 0;
}

.column-intro {
    text-align: center;
    max-width: 600px;
    margin: 20px auto 50px;
}

.column-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.column-item {
    background: #f5f5f5;
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    border: 2px solid #192E59;
    transition: all 0.3s ease;
}

.column-item:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.column-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #192E59;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.column-item h3 {
    color: #192E59;
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.column-item p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.column-item p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {

    .column-section {
        padding: 2rem 0 !important;
    }

    .column-grid {
        grid-template-columns: auto;
    }
}


/* 問い合わせ */

.column-footer {
    text-align: center;
    margin-top: 60px;
    border-radius: 10px;
}

.column-footer h4 {
    font-size: 1.2rem;
    color: #192E59 !important;
    margin: 1rem 0 1.4rem;
}

.column-footer p {
    color: #121212;
    font-size: 1.2rem;
    line-height: 200%;
    margin: 0;
}

.column-footer02 {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.column-footer02>div {
    border-right: 1px solid #ccc;
    padding-right: 40px;
}

.column-footer02>div:last-child {
    border-right: 0;
    padding-right: 0;
}

.column-footer02 p {
    font-size: 1.6rem;
    line-height: 120%;
    color: #333;
}

.column-footer02 span {
    font-size: 1rem;
    letter-spacing: normal;
}

.column-footer02 a {
    color: #192E59;
    text-decoration: none;
}

.column-footer02 a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .column-footer {
        margin-top: 40px;
    }

    .column-footer h4 {
        font-size: 1.2rem;
    }

    .column-footer p {
        font-size: 1rem;
        line-height: 180%;
        padding: 0 1rem;
        text-align: left;
    }

    .column-footer02 {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 1.5rem;
        text-align: center;
    }

    .column-footer02>div {
        border-right: none;
        border-bottom: 1px solid #ccc;
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .column-footer02>div:last-child {
        border-bottom: 0;
        padding-bottom: 0.6rem;
    }

    .column-footer02 h4 {
        font-size: 1.1rem;
        margin: 0 0 15px;
    }

    .column-footer02 p {
        font-size: 1.4rem !important;
        line-height: 140%;
        margin: 0;
        text-align: center;
        letter-spacing: 0.2rem !important;
    }

    .column-footer02 p a {
        letter-spacing: normal !important;
    }

    .column-footer02 span {
        font-size: 1rem;
        display: block;
        margin-top: 5px;
    }


}