@charset "utf-8";
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
base module & style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

:root {
	--color-primary: #00beff;
	--color-secondary: #ea1e79;
    --color-tertiary: #ffec00;
}


/* SP、PC表示切り替え */
.sp_on {
    display: block; /* SPのみ表示 */

    /* 2カラム用 */
    @media (width >= 768px) {
        & {
            display: none;
        }
    }
}

.pc_on {
    display: none;

    /* 2カラム用 */
    @media (width >= 768px) {
        & {
            display: block;
        }
    }
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 30px;
    position: fixed;
    background-image: linear-gradient(var(--color-primary), var(--color-primary));
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;

    &::before {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        border-top: 1px solid #333333;
        border-right: 1px solid #333333;
        transform: rotate(-45deg);
    }
}

.wrapper {
    width: 100%;
}

.wrapper_inner {
    position: relative;
    width: 100%;
    min-height: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url(../images/main_bg_small.jpg);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -2;
    }

    @media (width >= 375px) {
        min-height: 1346px;
    }

    @media (width >= 414px) {
        min-height: 1486px;
    }

    @media (width >= 430px) {
        min-height: 1544px;
    }

    @media (width >= 768px) {
        min-height: 1100px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        &::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            background-image: url(../images/main_bg_large.jpg);
            background-position: center top;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: -1;
            left: 50%;
            transform: translateX(-50%);
        }
    }

    @media (width >= 820px) {
        min-height: 1240px;
    }

    @media (width >= 1024px) {
        min-height: 1560px;
    }

    @media (width >= 1200px) {
        min-height: 1400px;

        &::before {
            background-image: url(../images/main_bg_large_pc.jpg);
        }
    }

    &.en {
        @media (width >= 768px) {
            min-height: 1024px;
    
            &::before {
                background-image: url(../images/main_bg_large_en.jpg);
            }
        }

        @media (width >= 820px) {
            min-height: 1180px;
        }
    
        @media (width >= 1024px) {
            min-height: 1366px;
        }

        @media (width >= 1200px) {
            min-height: 1300px;
    
            &::before {
                background-image: url(../images/main_bg_large_pc_en.jpg);
            }
        }
    }
}

@media (width >= 768px) {
    .wrapper_inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (width >= 1200px) {
    .wrapper_inner {
        justify-content: flex-start;
    }
}


/* @group ヘッダーエリア
------------------------------------------------------*/

.header {
    position: relative;
    width: 100%;
    
    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 5px;
        background-image: linear-gradient(var(--color-secondary), var(--color-secondary));
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 5px;
        z-index: 2;
    }
    
}

.header_container {
    position: relative;
    width: 100%;
    min-height: 782px;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url(../images/header_small.png);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
    }

    @media (width >= 390px) {
        min-height: 813px;
    }
    @media (width >= 414px) {
        min-height: 863px;
    }

    @media (width >= 430px) {
        min-height: 916px;
    }

    @media (width >= 768px) {
        & {
            min-height: 133px;
        }

        &::before {
            background-image: url(../images/header_large.png);
            background-position: center top;
        }
    }

    @media (width >= 820px) {
        & {
            min-height: 141px;
        }
    }

    @media (width >= 1024px) {
        & {
            min-height: 181px;
        }
    }

    @media (width >= 1200px) {
        & {
            width: 1100px;
            margin-left: auto;
            margin-right: auto;
            min-height: 210px;
        }

        &::before {
            background-image: url(../images/header_large_pc.png);
            background-position: center top;
        }
    }

    /* 英語用ヘッダー */
    &.en {
        min-height: 793px;

        &::before {
            background-image: url(../images/header_small_en.png);
            background-position: center top;
        }

        @media (width >= 414px) {
            min-height: 842px;
        }
    
        @media (width >= 430px) {
            min-height: 874px;
        }

        @media (width >= 768px) {
            min-height: 132px;

            &::before {
                background-image: url(../images/header_large_en.png);
                background-position: center top;
            }
        }

        @media (width >= 820px) {
            min-height: 141px;
        }

        @media (width >= 1024px) {
            & {
                min-height: 174px;
            }
        }

        @media (width >= 1200px) {
            & {
                min-height: 210px;

                &::before {
                    background-image: url(../images/header_large_pc_en.png);
                    background-position: center bottom;
                }
            }
        }
    }
}

.header_container.child {
    min-height: 135px;

    &::before {
        background-image: url(../images/header_child_small.png);
    }

    @media (width >= 414px) {
        & {
            min-height: 143px;
        }
    }

    @media (width >= 430px) {
        & {
            min-height: 149px;
        }
    }

    @media (width >= 768px) {
        & {
            min-height: 132px;
        }

        &::before {
            background-image: url(../images/header_large.png);
            background-position: center top;
        }
    }

    @media (width >= 820px) {
        & {
            min-height: 141px;
        }
    }

    @media (width >= 1024px) {
        & {
            min-height: 176px;
        }
    }

    @media (width >= 1200px) {
        & {
            width: 1100px;
            margin-left: auto;
            margin-right: auto;
            min-height: 210px;
        }

        &::before {
            background-image: url(../images/header_large_pc.png);
            background-position: center top;
        }
    }

    &.en {

        &::before {
            background-image: url(../images/header_child_small_en.png);
            background-position: center top;
        }

        @media (width >= 768px) {
            min-height: 145px;

            &::before {
                background-image: url(../images/header_large_en.png);
            }
        }

        @media (width >= 820px) {
            min-height: 155px;
        }

        @media (width >= 1024px) {
            & {
                min-height: 193px;
            }
        }

        @media (width >= 1200px) {
            & {
                min-height: 210px;

                &::before {
                    background-image: url(../images/header_large_pc_en.png);
                    background-position: center top;
                }
            }
        }

    }
}

/* ヘッダーのテキスト非表示 */
.header_container > * {
    position: absolute;
    left: -9999em;
}

/* @group メインエリア
------------------------------------------------------*/
.main {
    position: relative;
    width: 100%;
}

.main.child::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 7px;
    z-index: 1;
}

/* 2カラム用 */
@media (width >= 1200px) {
    .main_container.home {
        display: flex;
        flex-direction: column-reverse;
    }

    .home_contents {
        background-color: rgba(0, 0, 0, 0.7);

        & .news {
            width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    .main_container.child {
        display: flex;
        flex-direction: row-reverse;
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
    
}

/* ナビゲーションエリア */
.nav_wrap {
    width: 100%;

    /* 2カラム用 */
    @media (width >= 1200px) {
        & {
            position: relative;
            width: 1100px;
            margin-left: auto;
            margin-right: auto;
            min-height: 860px;

            &::before {
                position: absolute;
                content: "";
                width: 250px;
                height: 810px;
                background-image: linear-gradient(to bottom, #90278c, #90278c), linear-gradient(to bottom, #90278c, transparent);
                background-position: left top, left 443px;
                background-repeat: no-repeat;
                background-size: 100% 443px, 100% 367px;
            }

            &::after {
                position: absolute;
                content: "";
                width: 850px;
                height: 810px;
                background-image: url(../images/theme_large_pc.png);
                background-position: center top;
                background-repeat: no-repeat;
                background-size: 100% auto;
                left: 250px;
                top: 0;
                z-index: 1;
            }

            & .poster_download {
                position: relative;
                width: 250px;
                margin-left: 0;
            }

            & .globalMenuSp {
                position: relative;
                width: 250px;
                margin-left: 0;
                margin-bottom: 10px;
            }
        }
    }

    &.en {
        @media (width >= 1200px) {
            &::after {
                background-image: url(../images/theme_large_pc_en.png);
            }
        }
    }
}

@media (width >= 1200px) {
    .nav_wrap.child {
        width: 250px;
    }

    .nav_wrap.child::after {
        width: 0px;
        height: 0px;
        background-image: none;
    }
}

.poster_download {
    width: 100%;
    height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 20px;

    & a {
        width: 230px;
        height: 80px;

        & img {
            width:100%;
            height: 100%;
        }
    }

    @media (width >= 768px) {
        & {
            height: 120px;
            align-items: flex-end;
        }
    }

    @media (width >= 1200px) {
        & {
            width: 100%;
            height: 90px;
            align-items: center;
            background-color: transparent;
        }
    }
}

/* @group フッターエリア
------------------------------------------------------*/,

.footer {
    width: 100%;
}

.secretariat_wrap {
    width: 100%;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.secretariat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
    text-align: center;
}


.secretariat h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 35px;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    text-align: center;
    line-height: 1;
}

.secretariat dl {
    color: #fff;
    line-height: 1.4;
}

.secretariat dt {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: bold;
}

.secretariat dd {
    font-size: 12px;
}

.secretariat dd a {
    color: #00FFFF;
}

.footer-copyright {
    width: 100%;
    min-height: 60px;
    border-image-source: linear-gradient(var(--color-secondary),var(--color-secondary));
    border-image-slice: fill 0;
    border-image-outset: 0 100vw 0 100vw;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (width >= 768px) {
        & {
            min-height: 40px;
        }
    }
    @media (width >= 1200px) {
        & {
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }
    }
}

.footer-copyright p {
    margin-left: 4.5em;
    margin-right: 4.5em;
    font-size: 12px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: center;
}
@media (width >= 1200px) {
    .footer-copyright p {
        margin-left: 0;
        margin-right: 0;
    }
}


/* @group ニュースセクション
------------------------------------------------------*/
.news {
    position: relative;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.7);

    @media (width >= 1200px) {
        & {
            background-color: transparent;
            padding-left: 140px;
            padding-right: 140px;
        }
    }

    /* ニュースタイトル */
    & > h2 {
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    
        & span {
            font-size: 18px;
            font-weight: bold;
            color: var(--color-primary);
            line-height: 1;
        }
    
        @media (width >= 1200px) {
            & span {
                margin-left: 20px;
            }
        }
    }

    /* ニュースリスト */
    & > .news-list {
        height: 150px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-left: 22px;
        padding-right: 22px;
        overflow-y: auto;
        line-height: 1.4;

        @media (width >= 1200px) {
            & {
                height: 130px;
            }
        }

        & > li {
            display: flex;
            align-items: baseline;

            & > .date {
                width: 95px;
                font-weight: bold;
                font-size: 13px;
                color: var(--color-primary);
            }

            & > .excerpt {
                flex: 1;
                font-size: 12px;
                color: #FFFFFF;
            }
        }
    }
}

/* @group ページ共通
------------------------------------------------------*/

.page-contents {
    min-height: 1000px;
    background-color: #FFFFFF;

    @media (width >= 768px) {
        & {
            min-height: 1080px;
        }
    }

    @media (width >= 1200px) {
        & {
            width: 850px;
        }
    }
}

.page-title {
    position: relative;
    min-height: 80px;
    padding: 20px 10px;
    border-top: 2px solid #90278c;
    background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.7) 50%, transparent 100%), url(../images/page_title_bg_small.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%, cover;
    display: flex;
    align-items: center;

    @media (width >= 768px) {
        & {
            min-height: 100px;
            background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.7) 50%, transparent 100%), url(../images/page_title_bg_large.jpg);
            box-sizing: border-box;
        }
    }

    @media (width >= 1200px) {
        & {
            min-height: 130px;
            border-right: 2px solid #90278c;
        }
    }

    & > span {
        position: relative;
        padding-left: 10px;
        font-size: clamp(1.375rem, 1.116rem + 1.103vi, 1.875rem);
        font-weight: bold;
        font-feature-settings: "palt";
        color: #FFFFFF;
        text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
    }

    @media (width >= 768px) {
        & {
            padding: 30px 15px;
        }

        & > span {
            padding-left: 20px;
        }
    }
    
}

.page-body {
    padding: 20px 20px 30px 20px;
}
@media (width >= 768px) {
    .page-body {
        padding: 40px 20px 40px 20px;
    }
}

/* 既存の垂直マージンを削除 */
.page-body>* {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.7;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-body>*+* {
    margin-block-start: 20px;
}

/* 見出し */
.heading_h3 {
	position: relative;
	padding: 1em .75em .75em 1em;
    margin-bottom: 10px;
    text-indent: -.75em;
}
.heading_h3::after {
	position: absolute;
	top: .5em;
	left: 0;
	content: '';
	width: 6px;
	height: -webkit-calc(100% - 1em);
	height: calc(100% - 1em);
	background-color: var(--color-primary);
	border-radius: 4px;
}

.heading_h3 > span {
    margin-left: 0.5em;
    font-size: clamp(1.063rem, 0.988rem + 0.32vi, 1.188rem);
    font-weight: bold;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
}

.heading_h3 > span span {
    display: block;
    font-size: 0.8em;
    margin-left: 0.75em;
}

.heading_h4 {
    padding: .5em .7em .5em 0;
}

.heading_h4 > span {
    font-size: clamp(1rem, 0.875rem + 0.4vi, 1.125rem);
    font-weight: bold;
    font-feature-settings: "palt";
}

.heading_h4 > span::before {
    font-family: "Font Awesome 5 Free";
    content: "\f45c";
    font-weight: 900;
    font-size: 0.8em;
    padding-right: .7rem;
    color: var(--color-primary);
    position: relative;
    bottom: 1px;
}

.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}

/* アイコン
--------------------------*/

.exlink::after {
    content: "\f360";
    font-family: "Font Awesome 5 Free";
    font-size: 0.85em;
    font-weight: 900;
    margin-left: .5em;
}

.download:before {
    content: '\f019';
    /* ダウンロードのアイコン */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: .5em;
    margin-right: .5em;
}

.pdf:after {
    content: '\f1c1';
    /* PDFファイルの後（fa-file-pdf） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.word:after {
    content: '\f1c2';
    /* WORDファイルの後（fa-file-word） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.ppt:after {
    content: '\f1c4';
    /* PPTファイルの後（fa-file-powerpoint） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.excel:after {
    content: '\f1c3';
    /* Excelファイルの後（fa-file-excel） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.mail:after {
    content: '\f0e0';
    /* メールアイコン（fa-envelope） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.cipher a:before {
    content: '\f023';
    /* 暗号通信の前（fa-lock） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .5em;
}

.check::before {
    content: '\f00c';
    /* チェックマーク（fa-check） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .3em;
}

/*罫線*/

hr {
    border: none;
    border-top: 1px solid #ccc;
}

hr.hr-full {
    margin: 0 .75em 1.5em;
    box-shadow: 1px 1px 1px rgba(0, 71, 157, 0.2);
}

/* ハイライト */
.text-highlight {
    background: linear-gradient(transparent 40%, #f6ff5f 40%);;
}

.inline {
    display: inline;
}

/*文字詰め*/

.feature {
    font-feature-settings: "palt";
}

/*囲み*/

.enclosure01 {
    border: 1px;
    border-style: solid;
    padding: 0.75em 1em;
}

.enclosure02 {
    display: inline-block;
    border: 1px;
    border-style: solid;
    padding: .5em 1em;
}

.enclosure-style01 {
    border-color: #DDDDDD;
    background: #FFFFFF;
}

.enclosure-style02 {
    border: 3px solid rgba(245, 200, 200, 0.4);
    background: rgba(245, 200, 200, 0.1);
}
.enclosure-style03 {
	border: 3px solid #ff0000;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

}

/*リストスタイル*/
.list-style01 {
    margin-left: 2em;
    margin-right: 2em;
    font-size: clamp(0.875rem, 0.818rem + 0.242vw, 1rem);
}

.list-style01 li {
    margin-bottom: .3em;
}

.list-style {
    list-style-position: outside;
    padding-left: 1.8em;
}

.list-style > * + * {
    margin-top: 0.25em;
}

.list-disc {
    list-style-type: disc;
}

.list-num {
    list-style-type: decimal;
}

.list-num2 {
    list-style-type: decimal-leading-zero;
}

/* 方法1: text-indent と padding-left の組み合わせ */
.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

/* 方法2: table レイアウトを使用 */
.kome_ja > * {
    display: table;
    width: 100%;
}

.kome_ja > *:before {
    display: table-cell;
    content: "※";
    width: 1em;
}
/* 英語　* */
.kome_en > * {
	display:table;
	width: 100%;
	
	&:before {
		display: table-cell;
		content: "*";
		width: 1em;
	}
}

/*表組み*/
.tbl-sp {
    overflow-x: auto;
}

.tbl-sp table {
    min-width: 690px;
}
.tbl-width100 {
    width: 100%;
}

.tbl-width50 {
    width: 50%;
}

.tbl-style01 thead th {
    background-color: #DDD;
    border: 1px #CCCCCC;
    border-style: solid;
    padding: .5em;
}

.tbl-style01 tbody th,
.tbl-style01 tbody td {
    border: 1px #CCCCCC;
    border-style: solid;
}

.tbl-style01 tbody th {
    background-color: #EEEEEE;
    padding: .5em;
}
.tbl-style01 tbody td {
    background-color: #FFFFFF;
    padding: 1.5em;
}

.tbl-style02 tbody th,
.tbl-style02 tbody td {
    border: 1px #FFFFFF;
    border-style: solid;
}

.tbl-style02 tbody th {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.th-c-m th {
    text-align: center;
    vertical-align: middle;
}

.th-l-m th {
    text-align: left;
    vertical-align: middle;
}

.th-l-t th {
    text-align: left;
    vertical-align: top;
}

.td-c-m td {
    text-align: center;
    vertical-align: middle;
}

.td-l-m td {
    text-align: left;
    vertical-align: middle;
}

.td-l-t td {
    text-align: left;
    vertical-align: top;
}

/* ボタン */
.button_container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.button_acmcf2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    min-height: 50px;
    padding: 12px 20px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.2;
}

.button_acmcf2026:hover {
    text-decoration: none;
}
  
  .button_acmcf2026.primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: 2px solid var(--color-primary);
  }
  
  .button_acmcf2026.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
  }
  
  .button_acmcf2026.secondary {
    background-color: var(--color-secondary);
    color: #FFFFFF;
    border: 2px solid var(--color-secondary);
  }
  
  .button_acmcf2026.secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
  }

  .button_acmcf2026.tertiary {
    background-color: var(--color-tertiary);   
    color: #FFFFFF;
    border: 2px solid var(--color-tertiary);
  }
  
  .button_acmcf2026.tertiary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
  }


/* ご挨拶
--------------------------*/
.presidentBox {
	position:relative;
	border-bottom:1px solid #ccc;
	padding:10px 15px;
	margin:0 auto;
}
.presidentBox img{
	width:150px;
	float:right;
}
.presidentBox .name {
	position:absolute;
	top:130px;
	right:185px;
	line-height: 1.4;
	text-align:right;
}
.mainTxt02 {
	line-height:180%;
	text-indent:1em;
}
@media (max-width: 768px) {
	.presidentBox img {
		display: block;
		float: none;
		margin: 20px auto;
	}
	.presidentBox .name {
		position: static;
		text-align: center;
	}
}

/* 開催概要 */

.overview-list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.5;
  }
  
  .overview-list dt {
    width: 100%;
    min-height: 30px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    background-color: var(--color-secondary);
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #FFFFFF;
  }
  
  .overview-list dd {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 15px;
    margin-left: 0;
  }
  
  .overview-list dd ul {
    list-style: none;
    padding-left: 0;
  }

  @media (width >= 768px) {
    .overview-list {
      flex-direction: row;
      flex-wrap: wrap;
      row-gap: 30px;
      column-gap: 20px;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .overview-list dt {
      width: 110px;
      height: 30px;
      vertical-align: top;
      justify-content: center;
    }

    .overview-list.en dt {
      width: 130px;
    }
    
    .overview-list dd {
      flex: 0 0 calc(100% - 130px);
      margin-bottom: 0;
    }

    .overview-list.en dd {
      flex: 0 0 calc(100% - 150px);
    }
  }
  
  /* Sponsorship & Exhibition */
  .display_wrap {
    display: grid;
    gap: 20px;

    @media (width >= 1200px) {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
        align-items: center;
    }


    & > img {
        width: 100px;
        height: auto;
        object-fit: cover;
        margin-left: auto;
        margin-right: auto;
    }
  }