.contactbutton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 0 auto;
    padding: .9em 2em;
    border-radius: 5px;
    background-color: #d02525;
    color: #fff;
    font-size: 1em;
    }

body {
    color: #000000;
    font-weight: 400;
    background: #ffffff;
}

a {
    color: #000000;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #000000;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 15px 0;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px 0;
    padding: 0;
    color: #000000;
    font-weight: 600;
}

h4,
h5,
h6 {
    font-weight: 400;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #1881f9;
    color: #ffffff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    border-radius: 4px;
    z-index: 11;
}

.back-to-top:hover {
    background: #000000;
}

.back-to-top i {
    padding-top: 9px;
    color: #ffffff;
}


/*********** Top Bar CSS **********/
.top-bar {
    padding: 2px 0;
    background: #000000;
}

.top-bar .tb-contact p {
    display: inline-block;
    margin: 0;
    color: #1881f9;
    font-size: 14px;
}

.top-bar .tb-contact p i {
    margin-right: 6px;
}

.top-bar .tb-contact p:first-child {
    margin-right: 15px;
}

.top-bar .tb-menu {
    font-size: 0;
    text-align: right;
}

.top-bar .tb-menu a {
    color: #1881f9;
    font-size: 14px;
    margin: 0 8px;
}

.top-bar .tb-menu a:hover {
    color: #ffffff;
}

.top-bar .tb-menu a:last-child {
    margin-right: 0;
}

.top-bar .tb-menu a::after {
    position: absolute;
    content: "/";
    margin: 1px 0 0 6px;
    color: #1881f9;
    font-size: 14px;
}

.top-bar .tb-menu a:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .top-bar .tb-contact,
    .top-bar .tb-menu {
        text-align: center;
    }
}


/*********** Brand CSS ************/
.brand {
    margin: 15px 0;
    background: #ffffff;
}

.brand .b-logo {
    text-align: left;
    overflow: hidden;
}

.brand .b-logo .b-company {
    display: block;
    margin-bottom: 3px;
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
}

.brand .b-logo h1 {
    margin: 0;
    line-height: 1.2;
}

.brand .b-logo a img {
    max-width: 100%;
    max-height: 60px;
}

.brand .b-ads {
    overflow: hidden;
}

.brand .b-ads a img {
    max-width: 100%;
    max-height: 100%;
}

.brand .b-search {
    width: 100%;
}

.brand .b-search input[type=text] {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.brand .b-search input[type=text]:focus {
    border-color: #1881f9;
}

.brand .b-search button {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: 15px;
    border: none;
    background: none;
    color: #1881f9;
    border-radius: 0 4px 4px 0;
}

.brand .b-search button:hover {
    background: #1881f9;
    color: #ffffff;
}

@media (min-width: 768px) {
    .brand {
        max-height: 90px;
    }
}

@media (max-width: 767.98px) {
    .brand .b-logo,
    .brand .b-ads,
    .brand .b-search {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .brand .b-search {
        margin-bottom: 0;
    }
}


/*********** Nav Bar CSS **********/
.nav-bar {
    position: relative;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    border-bottom: 2px solid #000000;
    transition: none;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 768px) {
    .nav-bar,
    .nav-bar .navbar {
        background: #1881f9 !important;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
    }
}

@media (max-width: 768px) {   
    .nav-bar,
    .nav-bar .navbar {
        padding: 3px 0;
        background: #1881f9 !important;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .social {
        display: none;
    }
}

.nav-bar .social {
    font-size: 0;
    overflow: hidden;
}

.nav-bar .social a {
    display: inline-block;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    padding: 3px 0;
    text-align: center;
    font-size: 14px;
    background: #1881f9;
    border: 1px solid #ffffff;
    border-radius: 4px;
}

.nav-bar .social a:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
}

.nav-bar .social a i {
    color: #ffffff;
}

.nav-bar .social a:hover i {
    color: #1881f9;
}


/********** Top News CSS **********/
.top-news {
    position: relative;
    width: 100%;
    padding: 30px 0 0 0;
}

.top-news .tn-img {
    position: relative;
    overflow: hidden;
}

.top-news .tn-img img {
    width: 100%;
}

.top-news .tn-img:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.top-news .tn-title {
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0; 
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.top-news .tn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.top-news .tn-left .tn-title a {
    font-size: 30px;
    font-weight: 600;
}

.top-news .tn-title a:hover {
    color: #1881f9;
}

.top-news .tn-left {
    margin-bottom: 30px;
}

.top-news .tn-right {
    margin-bottom: 60px;
    padding: 0 30px;
}

.top-news .tn-right .col-md-6 {
    padding: 0;
}

.top-news .slick-prev,
.top-news .slick-next {
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: .5s;
    color: #ffffff;
    background: #000000;
    border-radius: 4px;
}

.top-news .slick-prev {
    left: 30px;
}

.top-news .slick-next {
    right: 30px;
}

.top-news .slick-prev:hover,
.top-news .slick-prev:focus,
.top-news .slick-next:hover,
.top-news .slick-next:focus {
    color: #ffffff;
    background: #1881f9;
}

.top-news .slick-prev::before,
.top-news .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.top-news .slick-prev::before {
    content: "\f104";
}

.top-news .slick-next::before {
    content: "\f105";
}


/******* Category News CSS ********/
.cat-news {
    position: relative;
    width: 100%;
    padding: 0;
}

.cat-news .col-md-6 {
    margin-bottom: 30px;
}

.cat-news h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.cat-news .cn-img {
    position: relative;
    overflow: hidden;
}

.cat-news .cn-img img {
    width: 100%;
}

.cat-news .cn-img:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.cat-news .cn-title {
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0; 
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}
/* 画像のリンクを画像サイズいっぱいに */
.cat-news .cn-img > a {
    display: block;
}

/* オーバーレイはクリックを透過させる */
.cat-news .cn-title {
    pointer-events: none;
}

/* ただしタイトル文字だけはリンクとして残す */
.cat-news .cn-title a {
    pointer-events: auto;
}
.cat-news .cn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.cat-news .cn-title a:hover {
    color: #1881f9;
}

.cat-news .slick-prev,
.cat-news .slick-next {
    top: -62px;
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: .5s;
    color: #ffffff;
    background: #000000;
    border-radius: 4px;
}

.cat-news .slick-prev {
    left: calc(100% - 85px);
}

.cat-news .slick-next {
    right: 14px;
}

.cat-news .slick-prev:hover,
.cat-news .slick-prev:focus,
.cat-news .slick-next:hover,
.cat-news .slick-next:focus {
    color: #ffffff;
    background: #1881f9;
}

.cat-news .slick-prev::before,
.cat-news .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.cat-news .slick-prev::before {
    content: "\f104";
}

.cat-news .slick-next::before {
    content: "\f105";
}


/********** Main News CSS *********/
.main-news {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.main-news h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.main-news .col-md-4 {
    margin-bottom: 30px;
}

.main-news .mn-img {
    position: relative;
    overflow: hidden;
}

.main-news .mn-img img {
    width: 100%;
}

.main-news .mn-img:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.main-news .mn-title {
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0; 
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.main-news .mn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.main-news .mn-title a:hover {
    color: #1881f9;
}

.main-news .mn-list {
    margin-bottom: 30px;
}

.main-news .mn-list h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.main-news .mn-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-news .mn-list ul li {
    margin: 0 0 12px 22px; 
}

.main-news .mn-list ul li:last-child {
    margin-bottom: 0; 
}

.main-news .mn-list ul li a {
    color: #000000;
    display: block;
    line-height: 23px;
}

.main-news .mn-list ul li::before {
    position: absolute;
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000000;
    left: 1px;
}

.main-news .mn-list ul li a:hover {
    color: #1881f9;
}


/**********************************/
/********* Breadcrumb CSS *********/
/**********************************/
.breadcrumb-wrap {
    position: relative;
    width: 100%;
    background: #ffffff;
}

.breadcrumb-wrap .breadcrumb {
    margin: 25px 0 0 0;
    padding: 0;
    background: none;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #353535;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
    color: #353535;
}


/**********************************/
/********* Single News CSS ********/
/**********************************/
.single-news {
    position: relative;
    width: 100%;
    padding: 25px 0 0 0;
    margin-bottom: 15px;
}

.single-news .sn-img {
    position: relative;
    overflow: hidden;
}

.single-news .sn-img img {
    width: 100%;
}

.single-news .sn-content {
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.single-news .sn-content h1.sn-title {
    display: block;
    width: 100%;
    color: #000000;
}

.single-news .sn-related {
    margin-bottom: 45px;
}

.single-news .sn-related h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.single-news .sn-slider .sn-img {
    position: relative;
    overflow: hidden;
}

.single-news .sn-slider .sn-img img {
    width: 100%;
}

.single-news .sn-slider .sn-img:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.single-news .sn-slider .sn-title {
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0; 
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.single-news .sn-slider .sn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.single-news .sn-slider .sn-title a:hover {
    color: #1881f9;
}

.single-news .sn-slider .slick-prev,
.single-news .sn-slider .slick-next {
    top: -62px;
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: .5s;
    color: #ffffff;
    background: #000000;
    border-radius: 4px;
}

.single-news .sn-slider .slick-prev {
    left: calc(100% - 85px);
}

.single-news .sn-slider .slick-next {
    right: 14px;
}

.single-news .sn-slider .slick-prev:hover,
.single-news .sn-slider .slick-prev:focus,
.single-news .sn-slider .slick-next:hover,
.single-news .sn-slider .slick-next:focus {
    color: #ffffff;
    background: #1881f9;
}

.single-news .sn-slider .slick-prev::before,
.single-news .sn-slider .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.single-news .sn-slider .slick-prev::before {
    content: "\f104";
}

.single-news .sn-slider .slick-next::before {
    content: "\f105";
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

.sidebar .sidebar-widget {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget h2.sw-title {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.sidebar .sidebar-widget .news-list {
    position: relative;
    margin-bottom: 30px;
}

.sidebar .news-list .nl-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar .news-list .nl-item .nl-img {
    width: 100px;
}

.sidebar .news-list .nl-item .nl-img img {
    width: 100px;
}

.sidebar .news-list .nl-item .nl-title {
    padding-left: 15px;
}

.sidebar .news-list .nl-item .nl-title a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s;
}

.sidebar .news-list .nl-item .nl-title a:hover {
    color: #1881f9;
}

.sidebar .sidebar-widget .tab-news {
    position: relative;
    margin-bottom: 30px;
}

.sidebar .tab-news .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #000000;
    border-radius: 0;
}

.sidebar .tab-news .nav.nav-pills .nav-link:hover,
.sidebar .tab-news .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #1881f9;
}

.sidebar .tab-news .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-news .tab-content .container {
    padding: 0;
}

.sidebar .tab-news .tn-news {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar .tab-news .tn-img {
    width: 100px;
}

.sidebar .tab-news .tn-img img {
    width: 100px;
}

.sidebar .tab-news .tn-title {
    padding: 0 0 0 15px;
}

.sidebar .tab-news .tn-title a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s;
}

.sidebar .tab-news .tn-title a:hover {
    color: #1881f9;
}

.sidebar .sidebar-widget .category {
    position: relative;
}

.sidebar .category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category ul li a {
    display: inline-block;
    color: #000000;
    line-height: 23px;
}

.sidebar .category ul li a:hover {
    color: #1881f9;
}

.sidebar .category ul li::before {
    position: absolute;
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000000;
    left: 1px;
}

.sidebar .category ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tags {
    position: relative;
}

.sidebar .sidebar-widget .tags a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    color: #000000;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
}

.sidebar .sidebar-widget .tags a:hover {
    color: #ffffff;
    background: #1881f9;
    border: 1px solid #1881f9;
}

.sidebar .sidebar-widget .image a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .sidebar-widget .image img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .sidebar-widget .image img:hover {
    transform: scale(1.1);
    filter: blur(3px);
    -webkit-filter: blur(3px);
}





/******** Footer Bottom CSS *******/
.footer-bottom {
    position: relative;
    padding: 25px 0;
    background: #000000;
}

.footer-bottom .copyright {
    text-align: left;
}

.footer-bottom .template-by {
    text-align: right;
}

.footer-bottom .copyright p,
.footer-bottom .template-by p {
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.footer-bottom .copyright p a,
.footer-bottom .template-by p a {
    font-weight: 600;
}

.footer-bottom .copyright p a:hover,
.footer-bottom .template-by p a:hover {
    color: #ffffff;
}

@media (max-width: 768.98px) {
    .footer-bottom .copyright,
    .footer-bottom .template-by {
        text-align: center; 
    } 
}

/**********************************/
/****** Content Section CSS *******/
/**********************************/
.content-section {
    position: relative;
    display: flex;
    align-items: stretch;
    margin: 0 0 60px 0;
}

.content-section .cs-img {
    position: relative;
    width: 55%;
    flex-shrink: 0;
}

.content-section .cs-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.content-section .cs-caption {
    display: block;
    margin-top: 10px;
    color: #6a6a6a;
    font-size: 13px;
}

.content-section .cs-card {
    position: relative;
    width: 55%;
    z-index: 2;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: -12%;
    padding: 45px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.content-section .cs-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.content-section .cs-meta-left {
    display: flex;
    align-items: center;
}

.content-section .cs-meta-left i {
    font-size: 28px;
    color: #1881f9;
    margin-right: 14px;
}

.content-section .cs-meta-label {
    display: block;
    color: #1881f9;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.content-section .cs-number {
    color: #cfe1fb;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.content-section .cs-title {
    color: #16407e;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 22px;
}

.content-section .cs-divider {
    width: 36px;
    height: 2px;
    background: #cccccc;
    margin-bottom: 25px;
}

.content-section .cs-text {
    color: #333333;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

.content-section.cs-reverse {
    flex-direction: row-reverse;
}

.content-section.cs-reverse .cs-card {
    margin-left: 0;
    margin-right: -12%;
}

@media (max-width: 991px) {
    .content-section,
    .content-section.cs-reverse {
        flex-direction: column;
    }

    .content-section .cs-img,
    .content-section .cs-card {
        width: 100%;
        margin: 0;
    }

    .content-section .cs-card {
        margin-top: -30px;
        padding: 30px 25px;
    }

    .content-section .cs-number {
        font-size: 32px;
    }

    .content-section .cs-title {
        font-size: 20px;
    }
}

/**********************************/
/****** Shoot Support CSS *********/
/**********************************/
.shoot-support {
    --bar-green:   #3a9b89;
    --accent-teal: #1ab5a8;
    --rule-gray:   #d9d9d9;
    --text-red:    #cc0000;
    --text-teal:   #2b8a8a;
    --link-blue:   #1a5fb4;

    margin-top: 20px;
    padding-top: 50px;
    border-top: 1px solid #eeeeee;
}

.shoot-support .ss-block {
    margin-bottom: 35px;
}

.shoot-support .ss-block-head {
    border-top: 4px solid var(--accent-teal);
    padding-top: 12px;
    margin-bottom: 0;
}

.shoot-support .ss-block-head h2 {
    margin: 0;
    padding: 0 4px 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 1px solid var(--rule-gray);
}

.shoot-support .ss-lead {
    padding: 14px 4px 0;
    margin: 0 0 6px;
    font-weight: 700;
}

.shoot-support .ss-note {
    margin: 0 0 4px;
    padding: 0 4px;
    font-size: 15px;
    color: #333333;
}

.shoot-support .ss-red { color: var(--text-red); }
.shoot-support .ss-teal { color: var(--text-teal); }
.shoot-support .ss-teal-line { color: var(--text-teal); }

.shoot-support .ss-sub {
    margin: 14px 0 8px;
    padding: 0 4px;
    font-weight: 700;
}

.shoot-support .ss-link {
    color: var(--link-blue);
    text-decoration: underline;
    font-weight: 700;
}

.shoot-support .ss-group {
    padding: 6px 4px 0;
}

.shoot-support .ss-group-name {
    margin: 10px 0 2px;
    font-weight: 700;
}

.shoot-support ul.ss-price {
    list-style: disc;
    margin: 2px 0 10px;
    padding-left: 30px;
}

.shoot-support ul.ss-price > li {
    margin: 4px 0;
    font-size: 15px;
}

.shoot-support ul.ss-price ul {
    list-style: none;
    margin: 2px 0;
    padding-left: 0;
    font-size: 13px;
    color: #777777;
}

.shoot-support .ss-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.shoot-support .ss-bar {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.shoot-support .ss-bar-grid .ss-bar {
    display: flex;
    gap: 15px;
}

.shoot-support .ss-bar-img {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    background: #f5f5f5;
}

.shoot-support .ss-bar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shoot-support .ss-bar-body {
    flex: 1;
    min-width: 0;
}

.shoot-support .ss-bar-head {
    background: var(--bar-green);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 10px;
    margin: 0 0 10px;
}

.shoot-support .ss-bar .ss-sub {
    margin: 0 0 6px;
    padding: 0;
}

.shoot-support .ss-bar .ss-note {
    padding: 0;
    font-size: 14px;
}

.shoot-support .ss-bar-full {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .shoot-support .ss-bar-grid {
        grid-template-columns: 1fr;
    }
}

/**********************************/
/****** Related Photos CSS ********/
/**********************************/
.related-photos {
    margin-top: 10px;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
}

.related-photos .rp-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1881f9;
}

.related-photos .rp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-photos .rp-item a {
    display: block;
    text-decoration: none;
}

.related-photos .rp-img {
    position: relative;
    width: 100%;
    padding-top: 70%;
    overflow: hidden;
    background: #f2f2f2;
}

.related-photos .rp-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.related-photos .rp-item:hover .rp-img img {
    transform: scale(1.08);
}

.related-photos .rp-caption {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

.related-photos .rp-item:hover .rp-caption {
    color: #1881f9;
}

@media (max-width: 767px) {
    .related-photos .rp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-photos .rp-grid {
        grid-template-columns: 1fr;
    }
}

/* もっと見るボタン */
.cat-news .cn-more {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 30px;
}

.cat-news .cn-more a {
    display: inline-block;
    padding: 8px 25px;
    color: #ffffff;
    background: #1881f9;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.cat-news .cn-more a:hover {
    color: #ffffff;
    background: #0a63cc;
}