/*
Theme Name: ICSCRM 2026 Theme
Author: Your Name
Description: Custom theme for ICSCRM 2026 based on design comp.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: icscrm2026-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks, theme-options

*/

body {
    font-family: 'Lato', sans-serif;
    /* Latoフォントを指定 */
    font-weight: 300;
    /* 基本のフォントウェイトをLight (300) に設定 */
    line-height: 1.7;
    /* Latoは行間を少し広めにとると読みやすい場合があります */
}

p {
    font-weight: 400;
}

ol,
ul {
    font-weight: 400;

}

dl {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
/* ロゴテキストにも適用する場合 */
.navbar-nav .nav-link,
.fullscreen-menu-nav .nav-link,
.news-item strong,
#important-days .list-group-item .fw-bold,
/* Important Daysの太字部分 */
.sponsor-tier-title {
    font-family: 'Lato', sans-serif;
    /* 見出しなどにもLatoを適用 */
    font-weight: 400;
    /* 見出しや強調部分はRegular (400) または Bold (700) に設定 */
}

/* 必要であれば特定の要素にさらに太いウェイトを指定 */
h1,
h2,
h3,
.sponsor-tier-title {
    font-weight: 700;
    /* 例: 主要な見出しはBold (700) */
}

h3 {
    color: #00A0E9;
    font-size: 1.3rem;
}

.navbar-nav {
    border-top: 1px solid #00A0E9;
    padding-top: 10px;
}

.navbar-nav .dropdown-menu {
    font-family: 'Lato', sans-serif;
    /* ドロップダウンメニューもLatoに */
    font-weight: 400;
    border-radius: unset;
    border: 1px solid #00A0E9;
}

.dropdown-item {
    font-size: 0.85em;
    padding
}

/* メールアドレススパム対策 */

.domain::before {
    content: '@';
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-top: 30px solid #00A0E9;
}

.navbar {
    height: 90px;
    background: #fff;
}

.navbar-brand img {
    width: 100%;
    max-width: 400px;
}

.navbar-nav .nav-link {
    font-weight: bold;
    font-size: 0.85em;
}

.navbar-nav .dropdown-menu {
    font-family: sans-serif;
    /* Dropdowns might look better with a standard font */
}

/* Custom Hamburger Menu */
.hamburger-menu-button {
    display: none;
    /* Hidden by default, shown in mobile view */
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1050;
    /* Above navbar */
}

.hamburger-menu-button-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger-menu-button-icon::before,
.hamburger-menu-button-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger-menu-button-icon::before {
    top: -7px;
}

.hamburger-menu-button-icon::after {
    top: 7px;
}

/* Hamburger active state (X icon) */
.hamburger-menu-button.active .hamburger-menu-button-icon {
    background-color: transparent;
    /* Middle bar disappears */
}

.hamburger-menu-button.active .hamburger-menu-button-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger-menu-button.active .hamburger-menu-button-icon::after {
    top: 0;
    transform: rotate(-45deg);
}


/* Fullscreen Mobile Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    /* Semi-transparent white */
    z-index: 1040;
    /* Below hamburger button, above content */
    transition: right 0.5s ease-in-out;
    overflow-y: auto;
    padding-top: 80px;
    /* Space for header/close button */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fullscreen-menu.active {
    right: 0;
    /* Slide in */
}

.fullscreen-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fullscreen-menu-nav .nav-item {
    margin-bottom: 1.5rem;
}

.fullscreen-menu-nav .nav-link {
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.fullscreen-menu-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    width: auto !important;
    margin-top: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    text-align: center;
}

.fullscreen-menu-nav .dropdown-item {
    font-size: 1.2rem;
}

/* style.css に追記 */

/* Header Responsive Adjustments */

/* 1. Desktop menu adjustments for screens just before hamburger menu kicks in */
/*    (Adjusts padding for desktop menu items if they are too wide on smaller desktop/larger tablet screens) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    /* Bootstrap lg screens */
    .site-header .navbar-nav .nav-link {
        padding-left: 0.7rem;
        /* Default might be 1rem */
        padding-right: 0.7rem;
        /* font-size: 0.95rem; */
        /* Optionally reduce font size slightly */
    }

    .site-header .navbar-brand img {
        max-height: 45px;
        /* Slightly reduce logo size if needed */
    }
}

/* 2. Mobile (hamburger) menu header adjustments */
/*    (Applies when the hamburger menu is visible) */
@media (max-width: 991.98px) {
    .site-header .navbar>.container {

        display: flex;
        flex-wrap: nowrap;

        justify-content: space-between;

        align-items: center;
        width: 100%;
    }

    .site-header .navbar-brand {
        margin-right: 0.5rem;
        flex-shrink: 1;
        min-width: 0;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .site-header .navbar-brand img {
        max-height: 40px;
        width: auto;
        display: block;
    }

    .hamburger-menu-button {
        margin-left: auto;
        flex-shrink: 0;
    }
}

/* Further adjustments for very small screens (e.g., Bootstrap's xs breakpoint) */
@media (max-width: 575.98px) {
    .site-header .navbar-brand img {
        max-height: 35px;
        /* Further reduce logo size */
    }

    .site-header .navbar>.container {
        /* padding-left: 5px; */
        /* Further reduce container padding if absolutely necessary */
        /* padding-right: 5px; */
    }

    .site-header .navbar-brand {
        margin-right: 0.25rem;
        /* Smaller gap on very small screens */
    }
}


.firstview-slider-container {
    position: relative;
}

.first-view-slider {
    width: 100%;
    overflow-x: hidden;
    position: relative;

}



.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

/* First View Slider */
.first-view-slider img {
    object-fit: cover;
    height: 400px;
}


.firstview-logo-container {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    max-width: 300px;
    height: auto;
}

.firstview-logo-container h2 {
    color: #fff;
    font-size: 1.26rem;
    text-align: right;
    margin-top: 5px;
    opacity: 0.8;
}

/* Slider Overlay Logo */
.slider-overlay-logo {
    width: 100%;
}

/* レスポンシブ対応: 画面が小さい場合はロゴのサイズや位置を調整 */
@media (max-width: 767.98px) {

    /* Bootstrap md breakpoint未満 */
    .firstview-logo-container {
        top: 10px;
        right: 10px;
        max-width: 120px;
    }
}

@media (max-width: 575.98px) {

    /* Bootstrap sm breakpoint未満 */
    .firstview-logo-container {
        max-width: 150px;
    }

    .firstview-logo-container h2 {
        font-size: 0.8rem;
    }
}


/* Slick Slider Responsive Adjustments for Overflow */

.first-view-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.first-view-slider .slick-slide {
    margin-left: 0;
    margin-right: 0;
}

.first-view-slider .slick-slide img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width:450px) {
    .first-view-slider .slick-slide img {
        height: 300px;
    }
}

.top-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
}

#welcome,
#news,
#important-days,
#sponsor {
    max-width: 1000px;
    margin: 0 auto;
}

.main-container {
    background-image: url(./images/background02.png);
    background-size: 100%;
    padding-top: 30px;
}

/* Section Title Icon */
.main-container .section-title {
    position: relative;
    /* Allows absolute positioning for pseudo-element if needed, but not strictly necessary here */
    display: flex;
    /* Use flexbox for easy alignment */
    align-items: center;
    /* Vertically align icon and text */
}

.main-container .section-title::before {
    content: '';
    display: inline-block;

    width: 0.8em;

    height: 0.8em;

    border-radius: 50%;

    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #00A0E9 100%);

    margin-right: 0.4em;

    flex-shrink: 0;
}


#important-days .list-group-item {}

/* Adjust Sponsor Graphic column width if needed */
@media (min-width: 992px) {

    /* lg breakpoint */
    #sponsor .col-lg-4 {
        /* Adjust width if the default 1/3 is not desired */
    }

    #sponsor .col-lg-8 {
        /* Adjust width if the default 2/3 is not desired */
    }
}

/* Welcome Message */
#welcome p {
    line-height: 1.8;
    font-size: 1.1rem;
    word-break: break-word;
}

/* News Section */
.news-scroll-container {
    max-height: 300px;
    /* Adjust as needed */
    overflow-y: auto;
    border: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
    overflow-y: scroll;
}

/* ニュース項目のレイアウト CSS */

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.news-date {
    flex-shrink: 0;
    min-width: 150px;
    font-weight: bold;
}

.news-content {
    flex: 1;
    line-height: 1.6;
}


.news-item strong {
    margin-right: 10px;
}

/* Important Days */
#important-days .list-group-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #000;
}

#important-days .list-group-item ul li {
    list-style: outside;
}

#important-days .list-group-item span:first-child {
    margin-right: 10px;
}

/* Sponsor Section */

.sponsor-title {
    font-weight: 700;
    color: #00A0E9;
    padding-bottom: 10px;
    border-bottom: 1px solid #00A0E9;
    margin-bottom: 30px;
}

.sponsor-tier-title {
    font-size: 1.2rem;
    /* Example color */
}

.sponsor-tier-title.diamond {
    color: #cfd1c1;
}

.sponsor-tier-title.gold {
    color: #B59245;
}

.sponsor-tier-title.silver {
    color: #828282;
}

.sponsor-tier-title.bronze {
    color: #783B3B;
}

.sponsor-logo {
    display: block;
    margin: 10px 5px;
    /* border: 1px solid #ddd; */
    /* padding: 10px; */
    box-sizing: border-box;
}


.sponsor-category .col-12,
.sponsor-category .col-6,
.sponsor-category .col-4 {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: Arial, sans-serif;
    gap: 10px;
    border: 3px solid #FFF;

    /* ここから追加 */
    padding-left: 10px;
    /* 左の余白を追加 */
    padding-right: 10px;
    /* 右の余白を追加 */
    box-sizing: border-box;
    /* パディングを含めて幅を計算 */
    /* これにより左右に余白ができ、はみ出しを防ぎます */
}

.sponsor-category p {
    margin-bottom: 0;
}

/* Hide the original images */
.sponsor-category img {
    padding: 10px;
}

a.cfp-button {
    display: block;
    background-color: #F08300;
    padding: 10px 5px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    font-weight: 600;
    text-decoration: none;
    transition: 0.5s;
}

a.cfp-button:hover {
    background-color: #00A0E9;
}

.cfp-container p {
    font-weight: 700;
    border-bottom: 1px solid;
}

/* Footer */
.site-footer {
    border-top: 1px solid #D9D9D9;
    background-image: url(./images/background02.png);
    background-size: 100%;
    padding-top: 30px;
}

.site-footer p {
    font-size: 0.8rem;
    line-height: 1;
    font-weight: 600;
}

.site-footer .container {
    max-width: 1000px;
    margin: 30px auto;
}

.secretariat-container dl {
    display: flex;
    margin-bottom: 0;
}

.secretariat-container dl dt {
    color: #00A0E9;
    margin-right: 5px;
}

.secretariat-container dl dd {
    font-weight: 600;
    margin-bottom: 0;
}

.corp {
    color: #fff;
    background-color: #00A0E9;
    padding: 5px;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 10px 15px;
    background-color: #00A0E9;
    border: solid 1px #fff;
}

#back-to-top i {
    /* If using Bootstrap Icons */
    font-size: 1.2rem;
}

/* 下層ページ */

.underpage-container {
    background: #fff;
    min-height: 800px;
}


/* トップページ */

#venue h3 {
    color: #00A0E9;
    font-weight: 600;
}

/*  下層ページ共通 */



.underpage-container section {
    margin: 50px 0;
}

.underpage-container h1 {
    color: #00A0E9;
    border-bottom: 2px solid #00A0E9;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.icscrm-container {
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.icscrm-table-wrap {
    overflow-y: scroll;
}

.icscrm-table {
    table-layout: fixed;
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 15px 0;
}

.icscrm-table th,
.icscrm-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    font-weight: 400;
}

.icscrm-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.icscrm-notice {
    background-color: #f9f9f9;
    border-left: 4px solid #00A0E9;
    padding: 15px;
    margin: 20px 0;
}

.icscrm-info {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 20px 0
}

.icscrm-info h3 {
    font-weight: 700;
    font-size: 1.3rem;
}

.icscrm-article {
    margin: 20px 0;
}

.icscrm-article figcaption {
    font-weight: 700;
    font-size: 1.2rem;
}


/* Registration */

.icscrm-registration-container {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.icscrm-registration-title {
    color: #00A0E9;
    border-bottom: 2px solid #00A0E9;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.icscrm-registration-section-title {
    color: #00A0E9;
    margin-top: 30px;
    margin-bottom: 15px;
}

.icscrm-registration-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.icscrm-registration-table th,
.icscrm-registration-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    font-weight: 400;
}

.icscrm-registration-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.icscrm-registration-notice {
    background-color: #f9f9f9;
    border-left: 4px solid #00A0E9;
    padding: 15px;
    margin: 20px 0;
}

.icscrm-registration-list {
    margin: 10px 0;
    padding-left: 20px;
}

.icscrm-registration-contact-cols {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.icscrm-registration-link {
    color: #00A0E9;
    text-decoration: none;
}

.icscrm-registration-link:hover {
    text-decoration: underline;
}

.icscrm-registration-ordered-list {
    margin: 10px 0;
    padding-left: 40px;
}

.icscrm-registration-contact {
    flex: 1 1 320px;
    min-width: 0;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    margin: 0;
    box-sizing: border-box;
}

.icscrm-visa-button {
    display: block;
    max-width: 400px;
    background-color: #00A0E9;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 160, 233, 0.3);
    margin: 40px auto;
    text-align: center;
}

.icscrm-visa-button span {
    font-size: 1.4em;
}

.icscrm-visa-button:hover {
    background-color: #0088CC;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 160, 233, 0.4);
}

.icscrm-visa-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 160, 233, 0.3);
}


/* sponsor */


.sponsor-button {
    display: block;
    max-width: 400px;
    background-color: #00A0E9;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 160, 233, 0.3);
    margin: 40px auto;
    text-align: center;
}

.sponsor-button span {
    font-size: 1.4em;
}

.sponsor-button:hover {
    background-color: #0088CC;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 160, 233, 0.4);
}

.sponsor-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 160, 233, 0.3);
}

.exhibition-button {
    display: block;
    max-width: 400px;
    background-color: #00A0E9;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 160, 233, 0.3);
    margin: 40px auto;
    text-align: center;
}

.exhibition-button span {
    font-size: 1.4em;
}

.exhibition-button:hover {
    background-color: #0088CC;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 160, 233, 0.4);
}

.exhibition-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 160, 233, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {

    /* Bootstrap lg breakpoint */
    .navbar-collapse.d-none.d-lg-block {
        display: none !important;
        /* Hide desktop menu */
    }

    .hamburger-menu-button {
        display: block;
        /* Show hamburger button */
    }

    body.fullscreen-menu-open {
        overflow: hidden;
        /* Prevent scrolling of body when menu is open */
    }

    .icscrm-registration-contact-cols {
        flex-direction: column;
        gap: 18px;
    }

}

@media (min-width: 992px) {
    .fullscreen-menu {
        display: none;
        /* Ensure fullscreen menu is hidden on desktop */
    }

}


@media (min-width: 768px) {

    .exhibitors-title-box {
        align-items: center;
    }

    .exhibitors-title-box img {
        width: 30%;
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .exhibitors-title-box img {
        margin: 20px 0;
    }

    .exhibitors-title-box h2 {
        text-align: center;
    }
}

/* style.css に追加するCSSスタイル */

/* テーブル全体の基本スタイル */
.committee-tables table {
    width: 100%;
    border-collapse: collapse;
    /* セルの境界線を重ねて1本に */
    margin-bottom: 2em;
    background-color: #fff;
}

/* テーブルのヘッダー */
.committee-tables thead th {
    background-color: #00A0E9;
    /* 濃い青 */
    color: #fff;
    padding: 10px;
    text-align: center;
    border: 1px solid #00A0E9;
}

/* テーブルのボディのセル */
.committee-tables thead th:first-child {
    width: 20%;
}

.committee-tables thead th:nth-child(2) {
    width: 20%;
}

/* テーブルのボディのセル */
.committee-tables tbody td {
    border: 1px solid #333;
    padding: 8px 10px;
    vertical-align: top;
    color: #333;
    font-weight: 500;
    vertical-align: middle;
}



/* 奇数行の背景色 */
.committee-tables tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

/* 偶数行の背景色 */
.committee-tables tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* セクションタイトル */
.committee-tables h3 {
    color: #00A0E9;
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-weight: 700;
    font-size: 1.4em;
}

.committee-table-header {
    width: 200px;
}

/* レスポンシブ対応：画面幅が狭い場合はスクロール可能に */
@media screen and (max-width: 600px) {
    .committee-tables table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* social event */

/* スライダー枠（16:9） */
.social-event-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.social-event-slider-container,
.social-event-slider-container .slick-list,
.social-event-slider-container .slick-track,
.social-event-slider-container .slick-slide {
    height: 100%;
}

.social-event-slider-container .slick-slide>div {
    height: 100%;
    position: relative;
}

.social-event-slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* ズーム系は無効化 */
    transform: none;
    transition: none;
    filter: none;
}

/* 矢印を丸ボタンで */
.social-event-slider-wrap .slick-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 3;
}

.social-event-slider-wrap .slick-prev {
    left: 12px;
}

.social-event-slider-wrap .slick-next {
    right: 12px;
}

.social-event-slider-wrap .slick-arrow::before {
    font-size: 22px;
    line-height: 44px;
    opacity: 1;
}

.social-event-slider-wrap .slick-prev::before {
    content: '◀';
}

.social-event-slider-wrap .slick-next::before {
    content: '▶';
}

/* ドットをピル型にし、デフォの丸い「•」を消す */
.social-event-slider-wrap .slick-dots {
    bottom: 10px;
    z-index: 3;
}

.social-event-slider-wrap .slick-dots li {
    width: auto;
    margin: 0 6px;
}

.social-event-slider-wrap .slick-dots li button {
    width: 26px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.25s ease, background 0.25s ease;
    border: none;
    padding: 0;
}

/* ここで slick-theme の ● を完全に無効化 */
.social-event-slider-wrap .slick-dots li button::before {
    content: '';
    display: none;
}

.social-event-slider-wrap .slick-dots li.slick-active button {
    width: 40px;
    background: #fff;
}

.schedule-container {
    margin-bottom: 20px;
    line-height: 1.2;
}

.schedule-container dl {
    display: flex;
}

.schedule-container dt {
    margin-right: 5px;
}


@media (max-width: 480px) {
    .social-event-slider-wrap {
        border-radius: 8px;
    }
}

/* Venue */

.under-container-img-box {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.under-container-img-box img {
    max-width: 50%;
    object-fit: cover;
}

@media (max-width: 480px) {

    .under-container-img-box {
        flex-wrap: wrap;
    }

    .under-container-img-box img {
        max-width: 100%;
        object-fit: cover;
    }

}

/* transportation */

.icscrm-transportation-article p {
    padding-left: 1.5rem;
}

.transportation-img {
    width: 100%;
    height: 300px;
    background-color: #c9c9c9;
}


/* scpope */
div.scope-topics h3 {
    margin-bottom: 0%;
    /* h3 の下余白 */
}

div.scope-topics p {
    margin-bottom: 0.5rem;
    /* p の下余白 */
}


/* Sponsorship */
.content-wrapper {
    padding-left: 40px;
    /* 全体を右に移動 */
}