@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&display=swap');


/*********************************
preset variables
*********************************/
:root {
    --fontSize: 16.5px;
    --linkColor: #aa8743;
    --textColor: #eeeeee;
    font-feature-settings: "palt";
    /* color preset */
    --mainColor: ;
    --mainDarkColor: ;
    --mainLightColor: ;
    --subColor: ;
    --subDarkColor: ;
    --subLightColor: ;
    background-color: #030000;
    /* width preset */
    --gutter: 1.3rem;
    --gap: 3rem;
    --spacing: 1rem;
    --contentWidth: 1100px;
    --backgroundWidth: 1200px;
}

html {
    line-height: 1.8;
}

body {
    font-family: "Figtree", "Noto Sans JP", Arial,"Hiragino Kaku Gothic Pro",Meiryo,"MS PGothic",sans-serif;
    background-image: url(../images/theme/body-bg01.webp);
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: top right;
}

@media print, screen and (min-width: 1400px) {
    body {
        background-image: url(../images/theme/background.webp);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: top right;
    }
}

@media only screen and (max-width: 780px) {
    body {
        background-image: url(../images/theme/body-bg-mb01.webp);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: top right;
    }
}

p {
    font-family: "Figtree", "Noto Sans JP", Arial,"Hiragino Kaku Gothic Pro",Meiryo,"MS PGothic",sans-serif;
    text-align: justify;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

.space {
    height: 50px;
    display: block;
}

@media (max-width: 600px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    p {
        text-align: left;
    }
}


/*************************************
* START header
*************************************/
header {
    padding: 2rem 1rem 0;
    font-family: "Figtree", "Noto Sans JP", Arial,"Hiragino Kaku Gothic Pro",Meiryo,"MS PGothic",sans-serif;
}

.header-wrapper-1 {
    display: flex;
    gap: 5rem;
    max-width: 1200px /*var(--backgroundWidth)*/;
    width: 100%;
    margin: 0 auto;
}

header .header-logo {
    width: 160px;
    object-fit: contain;
}

/* --------NIMS追記ここから-------- */

header .header-logo:hover{
    opacity: .8;
    transition: .3s;
}

/* --------NIMS追記ここまで-------- */

.header-wrapper-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

a.not-link {
    padding-bottom: 0;
    margin-bottom: 0;
    vertical-align: middle;
    padding-top: 10px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top h1 {
    padding-top: 0.8rem;
}

/* --------NIMS追記ここから-------- */

.header-top h1:hover{
    opacity: .8;
    transition: .3s;
}

/* --------NIMS追記ここまで-------- */

.header-top h1 img {
    height: 1.5rem;
    object-fit: contain;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.header-buttons a.button {
    padding: 0.5rem 1rem;
}

#hamburger {
    display: none;
}

nav#global-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav#global-nav > a {
    color: var(--textColor);
    padding: 0.8rem 0;
    transition: all 0.2s;
}

nav#global-nav > a:hover {
    opacity: 0.6;
    text-decoration: none;
}

nav#global-nav .header-buttons-sp {
    display: none;
}

.button-reg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin: 0 auto;
    padding: .5em 2em;
    border: 2px solid #a17f3a;
    border-radius: 999px;
    color: #a17f3a;
    font-size: 1.2em;
}

.button-reg:hover {
    background-color: #a17f3a;
    color: #fff;
    font-weight: 600;
    transition: .2s;
    text-decoration: none;
}

.button-reg::after {
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 30px;
    border-top: 2px solid #a17f3a;
    border-right: 2px solid #a17f3a;
    content: '';
}

.button-reg:hover::after {
    border-color: #fff;
}

/* --------NIMS追記ここから-------- */

.abstracts-button-wrap{
    margin: 2rem 0 0 0;
}

.abstracts-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    margin: 0 auto;
    padding: .5em 2em;
    border-radius: 999px;
    color: #fff;
    background-color: #a17f3a;
    font-size: 1.6rem;
}

.abstracts-button:hover {
    background-color: #fff;
    color: #a17f3a;
    font-weight: 600;
    transition: .2s;
    text-decoration: none;
}

.abstracts-button::after {
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 30px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.abstracts-button:hover::after {
    border-color: #a17f3a;
}

@media only screen and (max-width: 700px) {
    .abstracts-button {
        width: 400px;
        font-size: 1.5rem;
        padding: .8em .5em;
    }
}

@media only screen and (max-width: 500px) {
    .abstracts-button {
        width: 100%;
        font-size: 1.3rem;
        text-align: center;
        line-height: 1.3;
        padding: 1em .5em;
    }
}

/* --------NIMS追記ここまで-------- */

@media only screen and (max-width: 1100px) {
    header {
        padding: 0.5rem 1rem 0;
    }

    .header-wrapper-1 {
        position: fixed;
        width: 100vw;
        padding: 0.5rem 1rem;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        gap: 1rem;
    }

    header .header-logo {
        width: auto;
        height: 46px;
    }

    .header-wrapper-2 {
        justify-content: center;
    }

    .header-buttons {
        display: none;
    }

    #hamburger {
        display: block;
    }

    #hamburger > svg {
        font-size: 1.6rem;
    }

    nav#global-nav {
        visibility: hidden;
        opacity: 0;
        height: auto;
        position: fixed;
        top: 63px;
        left: 0;
        width: 100%;
        background-color: rgb(2 2 2 / 90%);
        border-radius: 5px;
        padding: 0 1rem;
        z-index: 1;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        transition: all 0.3s;
    }

    nav#global-nav.opened {
        visibility: visible;
        opacity: 1;
        padding: 1.0rem 2.0rem;
    }

    nav#global-nav.opened > a:hover {
        background-color: #212121;
    }

    nav#global-nav .header-buttons-sp {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        width: 100%;
    }

    nav#global-nav .header-buttons-sp a {
        width: 100%;
        text-align: center;
        padding: 0.7rem;
    }

    .header-top {
        gap: 1rem;
    }

    .header-top h1 {
        padding-top: 0;
    }

    .header-top h1 > img {
        height: 1rem;
    }
}

.nims-title {
    margin: 0 auto;
    width: clamp(320px, 100%, 1200px);
    text-align: center;
    align-items:center;
    /* padding-bottom: 80px; */
    padding-bottom: 50px;
}

.top-title-logo {
    width: 700px;
    width: clamp(300px, 55vw, 700px);
    margin: 0 auto;
    margin-bottom: 30px;
}

.p-hero__title {
    font-size: clamp(18px, 7vw, 60px);
    font-weight: 600;
    line-height: 1.4;
}

.p-hero__title small {
    font-size: clamp(26px, 8vw, 72px);
    font-weight: 600;
    background: linear-gradient(90deg, #00abeb 0%, #00a567 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nims-title h2 {
    font-size: clamp(28px, 4vw, 58px);
    font-weight: 600;
    margin-top: 50px;
}

.nims-date {
    width: clamp(320px, 55vw, 800px);
    display: flex;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 3.0em;
}

.cont-L {
    width: 75%;
    text-align: left;
}

.cont-R {
    width: 25%;
    text-align: right;
}

.cont-L span {
    font-size: 30px;
    line-height: 1.2;
}

.btn-circle {
    width: 170px;
    color: #fff;
    background: #a17f3a;
    padding: 6px;
    text-align: center;
    border-radius: 999px;
    font-weight:700;
    margin-left: auto;
}

.scope {
    margin: 0 auto;
    width: clamp(320px, 85vw, 1200px);
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.scope-disc {
    width: 75%;
    padding-right: 1.35em;
}

.scope-disc div {
    font-size: 20px;
    /* text-align: justify; */
}

.scope-disc span {
    font-size: 20px;
    text-align: justify;
}

.scope-img {
    width: 25%;
    text-align: center;
}

/* --------NIMS追記ここから-------- */

.scope-img a {
    text-decoration: underline;
}

.scope-img a:hover {
    text-decoration: none;
    filter: brightness(1.15);
    transition: .3s;
}

/* --------NIMS追記ここまで-------- */

.eyecatch {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8.0rem 0 7rem;
    border-bottom: 1px solid var(--textColor);
    position: relative;
}

.youtube-wrapper {
    position: absolute;
    width: 100%;
    top: 3rem;
}

.youtube {
    display: flex;
    justify-content: flex-end;
    margin-right: 5%;
}

.youtube a {
    width: 16%;
}

.eyecatch-text {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.eyecatch-text-small {
    width: 85%;
    max-width: 800px;
    margin: 0;
	padding-top: 5.0em;
}

.eyecatch .eyecatch-info {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 6rem auto 0;
    line-height: 1.4;
}

.eyecatch .eyecatch-info .eyecatch-info-location {
    margin-top: 0.5rem;
}

.eyecatch .eyecatch-info .small {
    font-size: 0.7em;
}

.eyecatch .eyecatch-info > div .eyecatch-info-time .nowrap {
    white-space: nowrap;
}

.slide-container {
    width: 100%;
    margin: 50px 0 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-wrapper {
    display: flex;
}

.slide{
    width: 33.333%;
    object-fit:cover;
    border: 0px solid #ddd;
	padding: 0 1%;
}

.slide div {
    text-align:center;
    padding: 1.0em 0;
}

.slide div h4 {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 2.0rem 1.0rem 1.0rem;
    line-height: 1.3;
    min-height: 110px;
}

.slide div h5 {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    padding: 0 1.0rem;
}

.slide div h5 .profile02 {
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.3;
}

.subtitle {
	display: block;
	width: 777px;
    max-width: 777px;
    margin: 0 auto;
    object-fit: contain;
    margin-top: 90px;
}

.btn_Section {
    text-align: center;
    margin: 0 auto;
}

.btn_Section a {
    font-size: 20px;
    color: #b89958;
}

a.slide div {
    text-align: center;
    color: #fff;
    font-size: 20px;
    text-align: none;
}

a.slide div .profile {
    text-align: center;
    color: #fff;
    font-size: 17px;
    text-align: none;
}

.link-white {
    color: #fff;
}

@media only screen and (max-width: 700px) {
    .eyecatch {
        padding: 6rem 0 2.5rem;
    }

    .eyecatch .eyecatch-text,
    .eyecatch .eyecatch-info,
	.subtitle	{
        max-width: calc(100% - 2rem);
    }

    .subtitle {
        margin-top: 30px;
    }

    .eyecatch-text-small {
        max-width: calc(100% - 4rem);
        padding-top: 1.5em;
    }

    .eyecatch .eyecatch-info {
        font-size: 1rem;
        margin: 2rem auto 0;
    }

    .slide-container {
        width: 100%;
        margin: 0 auto;
        display: block;
        align-items: center;
        overflow: hidden;
    }

    .slide-wrapper {
        display: block;
    }

    .slide{
        width: 100%;
        object-fit:cover;
        border: 0px solid #ddd;
        padding: 0 1% 6%;
        margin: 0 auto;
    }

    .slide img {
        display: block;
        max-width: 80%;
        margin: 0 auto;
    }

    .nims-title h2 {
        margin-top: 30px;
    }

    .nims-date {
        display: block;
    }

    .cont-L {
        width: 94%;
        padding-bottom: 20px;
        margin: 0 auto;
        text-align: center;
    }

    .cont-R {
        width: 94%;
        margin: 0 auto;
        text-align: center;
    }

    .cont-L span {
        font-size: 20px;
        line-height: 1.2;
    }

    .btn-circle {
        width: 170px;
        color: #fff;
        background: #a17f3a;
        padding: 6px;
        text-align: center;
        border-radius: 999px;
        font-weight:700;
        margin: 0 auto;
    }

    .scope {
        display: block;
    }

    .scope-disc {
        width: 94%;
        padding-right: 0;
        padding-bottom: 20px;
        margin: 0 auto;
    }

    .scope-disc div {
        font-size: 16px;
        text-align: left;
        line-height: 1.4;
    }

    .scope-img {
        width: 94%;
        text-align: center;
    }
}

@media only screen and (max-width: 1100px) {
    .youtube-wrapper {
        top: 6rem;
    }
}


/*************************************
* END header START main
*************************************/
article.sub {
    margin-top: 2rem;
    padding-bottom: 5.0rem;
}

article.sub::before {
    content: "";
    display: block;
    width: calc(100% - 1rem);
    max-width: var(--backgroundWidth);
    margin: 0 auto;
    height: 1px;
    background-color: #2e2b27;
}

@media only screen and (max-width: 1100px) {
    article.sub {
        margin-top: calc(62px - 0.5rem);
        padding-bottom: 5.0rem;
        text-align: justify;
    }

    article.sub::before {
        opacity: 0.7;
    }
}

main h2 {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin: 2.0rem 0 2.0rem;
}

main h2.SubTitle {
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    color: var(--linkColor);
    font-weight: 500;
    margin: 3.0rem 0 0;
}

main h3 {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin: 2.0rem 0 2.0rem;
    padding: 0 1.0rem;
}

main h4 {
    text-align: center;
    margin: -15px 0 15px 0;
    font-size: 1.3rem;
}

main h3.SeTitle {
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    color: var(--linkColor);
    font-weight: 500;
    margin: 3.0rem 0 1.0rem;
}

.text-center {
    text-align: center;
}

@media only screen and (max-width: 700px) {
    main h2 {
        font-size: 1.4rem;
        margin: 0 0 1.0rem;
    }

    main h2.SubTitle {
        font-size: 1.9rem;
        letter-spacing: -0.02em;
    }

    main h3 {
        font-size: 1.2rem;
        margin: 0 0 1.0rem;
    }

    main h4 {
        font-size: 1.2rem;
    }

    .text-center {
        padding: 0 20px 0 20px;
    }
}

.button {
    display: inline-block;
    width: fit-content;
    color: var(--textColor);
    padding: 0.5rem 2.4rem;
    border: 1px solid var(--textColor);
    transition: all 0.2s;
}

.button:hover {
    text-decoration: none;
    background-color: var(--textColor);
    color: #000;
}

section.scope {
    /*background-image: linear-gradient(to top, #000 0%, #000 20%, transparent 100%);*/
    padding-bottom: 7rem;
    margin-top: 2rem;
}

@media only screen and (max-width: 700px) {
    section.scope {
        margin-top: 0;
    }
}

section.award {
    padding: 1rem 0 3rem;
}

section.topics {
    background-color: #a17f3a;
    background-image: linear-gradient(168deg, #b89958, #a17f3a);
    padding: 1rem 0 5rem;
    margin-top: 0;
}

/* --------NIMS追記ここから-------- */

section.topics02 {
    background-image: linear-gradient(168deg, rgb(0, 171, 232, 0.5), rgb(0, 165, 103, 0.5));
    padding: 1rem 1rem 4rem;
    margin-top: 0;
}

section.topics02 h2{
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin: 2rem 0 0 0;
}

section.topics02 h2.title{
    color: #a17f3a;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 2.8rem 0 1rem;
}

section.topics02 .top-cont{
    margin: 20px auto 0;
}

section.topics02 .top-cont p{
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
}

section.topics02 .top-cont p a .here_bold{
    font-weight: bold;
}

section.topics02 img{
    width: 850px;
    margin: 2rem auto 0;
}

@media only screen and (max-width: 700px) {
    section.topics02 h2{
        font-size: 1.4rem;
        line-height: 1.5;
    }

    section.topics02 h2.title{
        font-size: 1.8rem;
        margin: 2rem 0 1rem;
    }

    section.topics02 .top-cont{
        width: auto;
    }

    section.topics02 img{
        width: 100%;
    }
}

/* --------NIMS追記ここまで-------- */

section.sub-topics {
    background-color: #014785;
	background-image: linear-gradient(168deg, rgba(1, 102, 163, 1), rgba(1, 42, 67, 1));
    padding: 1rem 0 5rem;
    margin-top: 0;
}

.top-cont {
    margin: 0 auto;
}

.top-message {
    width: 700px;
    margin: 0 auto;
}

.top-info .top-message p {
    text-align: center;
}

.for-contact p {
    text-align: center;
    font-size: 1.3rem;
}

/* --------NIMS追記ここから-------- */

.for-contact a:hover {
    text-decoration: underline;
}

/* --------NIMS追記ここまで-------- */

img.flyers {
	width: 200px;
	max-width: 80%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.sponser {
    background: #fff;
    padding: 1rem 0 1rem;
    margin-top: 0;
}

h2.ft-title {
    color: #aa8743;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin: 2.0rem 0 1.0rem;
    padding: 0 1.0rem;
}

h3.ft-title {
    color: #aa8743;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin: 2.0rem 0 1.0rem;
    padding: 0 1.0rem;
}

footer .banners ul.spList {
    gap: 0 1.0rem;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    text-align: center;
}

footer .banners ul.spList li {
    padding: 8px;
    border: none;
}

.to-archive {
    margin: 5rem auto 0;
}

@media only screen and (max-width: 700px) {
    section.award {
        padding: 1rem;
    }

    section.topics {
        padding: 3rem 1rem;
    }

    section.topics02 {
        padding: 1rem 1rem 3rem;
    }

    .to-archive {
        margin: 2rem auto 0;
    }

	section.scope .scope-disc {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        font-size: 17px;
        text-align: left;
        padding: 50px 15px 15px;
	}

    .top-cont {
        width: 90%;
        margin: 0 auto;
    }

    .top-message {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }

    .for-contact p {
        font-size: 1.0rem;
    }
}

section.top-info {
    background-color: #014785;
	background-image: linear-gradient(168deg, rgba(1, 102, 163, 1), rgba(1, 42, 67, 1));
    padding: 1rem 0 5rem;
    margin-top: 0;
}

section.top-info h2 {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin: 2.0rem 0 2.0rem;
}


@media only screen and (max-width: 700px) {
    section.top-info {
        padding: 1rem 1rem 5rem;
    }

    section.top-info .top-message {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
}

hr.gray {
	background-color: rgba(0, 0, 0, .1);
    border: none;
    box-shadow: 0 1px 0 rgb(110 99 74);
    height: 1px;
    width: 100%;
    margin: 50px 0 30px;
}


/*************************************
* END main START footer
*************************************/
/* banners */
footer .banners {
    background-color: #fff;
    padding: 0 0 3.0rem;
}

footer .banners ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem;
}

footer .banners ul li {
    border: 1px solid #d4ccbf;
    display: inline-flex;
}

footer .banners ul li img {
    height: 80px;
    object-fit: contain;
    width: auto;
}

/* --------NIMS追記ここから-------- */

footer .banners .sponser .top-cont ul li a:hover{
    text-decoration: underline;
}

footer .banners ul li img:hover{
    opacity: .6;
    transition: .2s;
}

footer .pagetop img:hover{
    opacity: .6;
    transition: .2s;
}

footer nav a:hover{
    opacity: .6;
    transition: .2s;
    text-decoration: none;
}

/* --------NIMS追記ここまで-------- */

@media only screen and (max-width: 700px) {
    footer .banners ul li img {
        height: 60px;
    }

    footer .banners ul {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 500px) {
    footer .banners ul{
        gap: 1.0rem;
        justify-content: center;
    }

    footer .banners ul li img {
        height: 53px;
    }

    footer .banners ul.spList li {
        padding: 5px;
    }
}

footer .pagetop {
    display: flex;
    justify-content: center;
    background-color: #012943;
    padding: 0.5rem 0 0.3rem;
}

footer .pagetop img {
    height: 2.8rem;
    filter: invert(0.95);
}

@media only screen and (max-width: 700px) {
    footer .pagetop img {
        height: 2rem;
    }
}

footer nav#footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2.5em;
    padding: 2.5rem var(--spacing);
}

footer nav#footer-nav a {
    color: var(--textColor);
}

footer .copyright {
    padding: 1.5rem var(--spacing) 3rem;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.8;
}

footer .top-message a {
    color: #fff;
    font-size: 1.2rem;
}

/* --------NIMS追記ここから-------- */

footer .top-message a:hover {
    text-decoration: underline;
}

/* --------NIMS追記ここまで-------- */

@media only screen and (max-width: 700px) {
    footer .copyright {
        padding: 2rem var(--spacing);
    }
}


/*************************************
* END footer START only for sp
*************************************/
@media only screen and (max-width: 700px) {
    .sp-hide {
        visibility: hidden;
        opacity: 0;
    }

    .sp-visible {
        visibility: visible;
        opacity: 1;
    }

    .sp-none {
        display: none !important;
    }

    .rdx-btn {
        display: block;
    }
}


/*************************************
* END only for sp START only for pc
*************************************/
@media print, screen and (min-width: 700px) {
    .pc-hide {
        visibility: hidden;
        opacity: 0;
    }

    .pc-visible {
        visibility: visible;
        opacity: 1;
    }

    .pc-none {
        display: none !important;
    }
}


/*************************************
* Table Program
*************************************/
table.program {
    width: 100%;
    border-top: 1px solid #a58a5b;
    border-bottom: 1px solid #a58a5b;
    border-right: 1px solid #a58a5b;
    margin-bottom: 20px;
}

table.program th {
    width: 8%;
    white-space: nowrap;
    background: #a58a5b;
    text-align: center;
    vertical-align: middle;
    font-size: 1.3rem;
    padding: 0.75em 1em;
    border-bottom: 1px solid #aaaabb;
}

table.program td {
    border: 0;
    border-bottom: 1px solid #AA8;
    padding: 0.75em 1em;
}

table.program tr:last-child td,
table.program tr:last-child th {
    border-bottom: 0;
}

table.program td.time {
    width: 13%;
    font-size: 16px;
    text-align: right;
}


@media print, screen and (max-width: 700px) {
    table.program td.time {
        width: 23%;
    }
}

@media print, screen and (max-width: 580px) {
    table.program {
        border-left: 1px solid #a58a5b;
    }

    table.program th,
    table.program td,
    table.program td.time {
        display: block;
        width: 100%;
    }

    table.program td {
        border-bottom: 0px;
        text-align: left;
    }

    table.program td.time {
        text-align: center;
    }

    table.program td.time {
        border-top: 1px solid #a58a5b;
        border-bottom: 1px solid #666;
    }
}

/*************************************
* Table poster-session
*************************************/
table.poster-session {
    width:100%;
    /*border-right:#a58a5b solid 1px;
    border-left:#a58a5b solid 1px;*/
    border-collapse: collapse;
}

table.poster-session thead th {
    background:#a58a5b;
    color:#FFF;
    padding:10px 15px;
    border-right:#a58a5b solid 1px;
    /*border-bottom:#a58a5b solid 1px;*/
}

/* table.poster-session thead th:last-child {
    border-right:#a58a5b solid 1px;
} */

table.poster-session tbody th {
    color:#FFF;
    padding:10px 15px;
    border-bottom:#a58a5b solid 1px;
    /*border-right: #a58a5b solid 1px;*/
    vertical-align:middle;
    white-space: nowrap;
}

table.poster-session tbody tr:last-child th {
    border-bottom:#a58a5b solid 1px;
}

table.poster-session tbody td {
    padding:20px 15px;
    /*border-left:#a58a5b solid 1px;*/
    border-bottom:#a58a5b solid 1px;
    vertical-align:middle;
    line-height: 1.4;
    text-align: left;
}

table.poster-session tbody td.names {
    white-space: nowrap;
}

/* table posters new */

table.posters {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
}

table.posters th {
    text-align: center;
    vertical-align: top;
    padding: 0;
    width: 15%;
    border-right: 1px solid #cfcfcf;
}

table.posters th.th_gold {
    border-right: 3px solid #b9a273;
}

table.posters th.th_gold02 {
    border-right: 1px solid #b9a273;
}

table.posters th.th_green {
    border-right: 1px solid #00a467;
}

table.posters th.th_blue {
    border-right: 1px solid #00aaea;
}

table.posters td{
    text-align: left;
    padding:0 0 0 30px;
    width: 85%;
}

table.posters .title,
table.posters .name {
    font-weight: 700;
    font-size: 1.2rem;
    vertical-align: middle;
}

table.posters .num {
    font-size: 0.8em;
    font-weight: 700;
    margin-left: 0.8em;
    padding: 3px 20px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    color: #cfcfcf;
}

table.posters td.td_gold .title {
    color: #b9a273;
}

table.posters td.td_gold .num {
    border: 1px solid #b9a273;
    color: #b9a273;
}

table.posters td.td_green .title {
    color: #00a467;
}

table.posters td.td_green .num {
    border: 1px solid #00a467;
    color: #00a467;
}

table.posters td.td_blue .title {
    color: #00aaea;
}

table.posters td.td_blue .num {
    border: 1px solid #00aaea;
    color: #00aaea;
}

hr.time_table {
    width: 95%;
    border: 0.8px solid #cfcfcf;
    margin: 10px 0 -10px 0;
}

.annotation {
    width: 95%;
    margin: 0 auto;
    text-align: left;
    padding-top: 1.5em;
    padding-bottom: 1.0em;
    font-size: 1.1em;
}

img.det_pic {
    width: 120px;
    height: 120px;
    float: left;
    margin-right: 10px;
}

hr.hr{
    width: 100%;;
}

span.speaker{
    font-size: 150%;
}

@media screen and (max-width: 640px) {
    table.poster-session thead {
        display:none;
    }

    table.poster-session tbody th {
        display:block;
        border-bottom:#a58a5b solid 1px;
        border-right: #a58a5b solid 1px;
        border-left:#a58a5b solid 1px;
        background:#a58a5b;
        color: #fff;
        padding: 5px 10px;
    }

    table.poster-session tbody td {
        display:block;
        text-align: left;
        border-right:#a58a5b solid 1px;
        border-left:#a58a5b solid 1px;
        padding: 12px 10px
    }

    table.poster-session tbody td::before {
        content: attr(label);
        font-weight:bold;
        display: block;
        color: #a58a5b;
    }

    table.poster-session tbody td p {
        padding-left:6em;
    }

    table.posters th{
        width: 10%;
        padding-right: 0.5em;
    }

    table.posters td {
        width: 90%;
        vertical-align: middle;
    }

    img.det_pic {
        float: none;
    }
}


/*************************************
* nims award text
*************************************/
/* .introduce {
    font-size: 1.4rem;
    width: 780px;
    margin: 0 auto;
}

.career {
    font-size: 1.1rem;
    padding-left: 0.8rem;
    margin-left: 0.8em;
    border-left: 1px solid #a58a5b;
} */

.introduce {
    font-size: 1.4rem;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.career {
    display: block;
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
    padding-bottom: 1.0em;
    margin-bottom: 1.0em;
    border-bottom: 1px solid #a58a5b;
    /* -----NIMS追記ここから----- */
    font-size: 1.2rem;
    /* -----NIMS追記ここまで----- */
}

.spaces {
    height: 25px;
}

.text02 {
    padding: 0 20px 0 20px;
}

.text02 h3 {
    font-size: 1.8rem;
    text-align: center;
    padding-top: 40px;
    color: #aa8743;
}

.text02 h3.opening-sentence {
    font-size: 1.8rem;
    text-align: center;
    padding-top: 0;
    color: #aa8743;
}

.text02 h3.en-registration {
    font-size: 1.4rem;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
}

.text02 h3.SubTitle {
    font-size: 2.0rem;
}

.text03 h3 {
    text-align: center;
    font-size: 1.6rem;
    padding-top: 40px;
}

.text03 p {
    text-align: left;
    font-size: 22px;
}

.note-text {
    max-width: 1050px;
    margin: 0 auto;
    border: 2px solid #aa8743;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 50px;
}

.note-text span {
    padding: .4em .8em;
    background-color: #aa8743;
    color: #fff;
}

.note-text p {
    margin: 0;
    padding: 1em 1.5em;
    color: #fff;
}

.notes {
    padding: 0 8px 0 4px;
    font-size: 0.9em;
    font-weight: 600;
    color: #aa8743;
}

/* --------NIMS追記ここから-------- */

.introduce a {
    font-size: 1.8rem;
}

/* --------NIMS追記ここまで-------- */

@media only screen and (max-width: 700px) {
    /* .introduce {
        font-size: 1.4rem;
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }

    .career {
        display: block;
        padding-left: 0;
        margin-left: 0;
        border-left: 0;
        padding-bottom: 1.0em;
        margin-bottom: 1.0em;
        border-bottom: 1px solid #a58a5b;
    } */

    .introduce {
        width: 90%;
    }

    .text02 h3 {
        text-align: center;
        font-size: 1.4rem;
        padding-top: 10px;
        line-height: 1.5;
        color: #aa8743;
        margin-bottom: 30px;
    }

    /* --------NIMS追記ここから-------- */

    .introduce a {
        font-size: 1.6rem;
    }

    /* --------NIMS追記ここまで-------- */
}


/*************************************
* Google Map
*************************************/
.google-map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box01 {
    width: 50%;
    margin: 0 auto;
    margin-top: 30px;
    padding: 1.5rem;
    border: 2px solid #b7d3f5;
    border-radius: 5px;
    background: linear-gradient(0deg, #00325b, #37abd8);
    color: #ffffff;
}

.box01 h4,
.box01 p {
    text-align: center;
}

.box01 h4 {
    font-size: 1.3rem;
    font-weight: 500;
}

/* --------NIMS追記ここから-------- */

.box01 a:hover,
.box02 a:hover {
    text-decoration: underline;
}

/* --------NIMS追記ここまで-------- */

.box02 {
    width: 50%;
    margin: 0 auto;
    margin-top: 30px;
    /*padding: 1.5rem;
    border: 2px solid #b7d3f5;
    border-radius: 5px;
    background: #fff;
    color: #030000;*/
}

.box02 p {
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .box01,
    .box02 {
        width: 85%;
    }
}

@media only screen and (max-width: 530px) {
    .box01,
    .box02 {
        width: 100%;
    }
}


/***************************
Speakers
***************************/
.spk-single {
    width: 90%;
    margin: 0 auto;
    padding: 30px 15px;
    border-bottom: 1px solid #a58a5b;
}

div.prof-img {
    display: inline-block;
    width: 25%;
    padding: 0;
    vertical-align: top;
}

div.prof-info {
    display: inline-block;
    width: 74%;
    padding: 0 20px;
    vertical-align: top;
}

h2.name, h2.winner {
    text-align: left;
    line-height: 1.5;
    padding-bottom: 0.7em;
    margin: 0;
}

.winner {
    font-size: 1.8rem;
}

.winner .small {
    font-size: 1.2rem;
    /* margin-bottom: 1.0em; */
    display: block;
}

.personal {
    font-size: 1.6rem;
    /* margin-bottom: 20px; */
    line-height: 1.4;
    text-align: left;
}

@media only screen and (max-width: 700px) {
    .spk-single {
        padding: 25px 0px;
    }

    div.prof-img {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    div.prof-img img {
        width: 75%;
        max-width: 250px;
        margin: 0 auto;
    }

    div.prof-info {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 5px;
    }

    h2.winner {
        font-size: 1.6rem;
        text-align: center;
        line-height: 1.3;
        padding: 1.0em 0 0.2em;
        margin-bottom: 0.8em;
    }

    .winner .small {
        font-size: 1rem;
        margin-top: 10px;
    }

    .personal {
        font-size: 1.2rem;
        line-height: 1.3;
        /* padding-bottom: 1.0em; */
        /* margin-bottom: 1.0em; */
        text-align: center;
    }
}

/* Speakers New */

table.posters {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
}

table.posters th {
    text-align: center;
    vertical-align: top;
    padding: 0;
    width: 15%;
    border-right: 1px solid #cfcfcf;
}

table.posters th.th_gold {
    border-right: 3px solid #b9a273;
}

table.posters th.th_gold02 {
    border-right: 1px solid #b9a273;
}

table.posters th.th_green {
    border-right: 1px solid #00a467;
}

table.posters th.th_blue {
    border-right: 1px solid #00aaea;
}

table.posters td {
    text-align: left;
    padding:0 0 0 30px;
    width: 85%;
}

.prof-info .title {
    font-weight: 700;
    font-size: 1.3rem;
    vertical-align: middle;
}

.prof-info .num {
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 0.6em;
    padding: 3px 20px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    color: #cfcfcf;
    vertical-align: middle;
}

.prof-info.td_gold .title {
    color: #b9a273;
}

.prof-info.td_gold .num {
    border: 1px solid #b9a273;
    color: #b9a273;
    display: inline-block;
}

.prof-info.td_green .title {
    color: #00a467;
}

.prof-info.td_green .num {
    border: 1px solid #00a467;
    color: #00a467;
}

.prof-info.td_blue .title {
    color: #00aaea;
}

.prof-info.td_blue .num {
    border: 1px solid #00aaea;
    color: #00aaea;
}

.session {
    padding: 20px 0;
    width: 98%;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
}

/* --------NIMS追記ここから-------- */

.session .session-ttl-note {
    font-size: 17px;
    font-weight: 400;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #444;
}

/* --------NIMS追記ここまで-------- */

hr.time_table {
    width: 96%;
    border: 0.8px solid #cfcfcf;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: -10px;
}

img.det_pic {
    width: 120px;
    height: 120px;
    float: left;
    margin-right: 10px;
}

hr.hr{
    width: 100%;;
}

span.speaker{
    font-size: 150%;
}

@media screen and (max-width: 700px) {
    table.poster-session thead {
        display:none;
    }

    table.poster-session tbody th {
        display:block;
        border-bottom:#a58a5b solid 1px;
        border-right: #a58a5b solid 1px;
        border-left:#a58a5b solid 1px;
        background:#a58a5b;
        color: #fff;
    }

    table.poster-session tbody td {
        display:block;
        text-align: left;
        border-right:#a58a5b solid 1px;
        border-left:#a58a5b solid 1px;
    }

    table.poster-session tbody td::before {
        content: attr(label);
        font-weight:bold;
        display: block;
        color: #a58a5b;
        font-size: 0.8rem;
    }

    table.poster-session tbody td p {
        padding-left:6em;
    }

    table.posters th{
        width: 10%;
        padding-right: 0.5em;
    }

    table.posters td {
        width: 90%;
        vertical-align: middle;
    }

    img.det_pic {
        float: none;
    }

    /* .prof-info .num {
        margin-left: 0;
    } */

    /* .prof-info.td_gold .title {
        display: block;
    } */

    .prof-info.td_gold .num {
        display: inline-block;
        /* margin-left: 0; */
        margin-left: 0.6em;
    }

    span.mob {
        display: block;
    }

    /* --------NIMS追記ここから-------- */

    .session .session-ttl-note {
        font-size: 17px;
        font-weight: 400;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        display: block;
    }

    /* --------NIMS追記ここまで-------- */
}


/***************************
LIST Style
***************************/
dl.topics-list {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 1.5rem 0;
    margin: 0 1rem;
    margin-bottom: 75px;
}

dl.topics-list dt,
dl.topics-list dd {
    padding-bottom: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

dl.topics-list dt {
    grid-column: 1;
    padding-left: 1.5rem;
    padding-right: 5rem;
}

dl.topics-list dd {
    grid-column: 2;
    padding-right: 1.5rem;
}

dl.topics-list dd a:link,
dl.topics-list dd a:visited 	{
    font-weight: bold;
    color: #aa8743;
}

dl.topics-list dd a:hover,
dl.topics-list dd a:active 	{
    font-weight: bold;
    /* color: #05aadd; */
    /* -----NIMS追記ここから----- */
    text-decoration: underline;
    /* -----NIMS追記ここまで----- */
}

dl.info-list {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 1.5rem 0;
    margin: 0 auto;
    margin-bottom: 50px;
    width: 80%;
    font-size: 1.2rem;
}

dl.info-list dt,
dl.info-list dd {
    padding-bottom: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

dl.info-list dt {
    grid-column: 1;
    padding-left: 1.5rem;
    padding-right: 5rem;
    font-weight: 600;
    color: #aa8743;
}

dl.info-list dd {
    grid-column: 2;
    padding-right: 1.5rem;
}

dl.info-list dd a:link,
dl.info-list dd a:visited {
    font-weight: bold;
    color: #b89958;
}

dl.info-list dd a:hover,
dl.info-list dd a:active {
    font-weight: bold;
    color: #05aadd;
}

ul.tbc {
    text-align: center;
    padding-left: 0;
}

ul.tbc li {
    display: inline-block;
    padding: 10px;
}

ul.tbc li a,
ul.tbc li a:visited {
    color: #fff;
    padding: 10px 30px;
    border: 1px solid #fff;
}

ul.tbc li a:hover,
ul.tbc li a:active {
    color: #a58a5b;
    border: 1px solid #a58a5b;
    transition: .2s;
}

/* --------NIMS追記ここから-------- */

dl.topics-list dd .line-through{
    text-decoration: line-through;
}

dl.topics-list dd .gold-bold{
    color: #aa8743;
    font-weight: bold;
}

/* --------NIMS追記ここまで-------- */

@media only screen and (max-width: 700px) {
    dl.topics-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 0 auto;
        margin-bottom: 75px;
    }

    dl.topics-list dt {
        grid-column: 1;
        border-bottom: none;
        padding: 0;
    }

    dl.topics-list dd {
        grid-column: 1;
        padding-right: 0;
    }

    dl.info-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 0 auto;
        margin-bottom: 50px;
        width: 100%;
    }

    dl.info-list dt {
        grid-column: 1;
        border-bottom: none;
        padding: 0.5em 0;
        text-align: center;
        background: #aa8743;
        color: #fff;
    }

    dl.info-list dd {
        grid-column: 1;
        padding-right: 0;
        border: none;
        text-align: left;
        padding: 5px 18px;
    }

    ul.tbc li {
        display: block;
    }

    ul.tbc li a,
    ul.tbc li a:visited {
        padding: 10px 60px;
    }
}


/***************************
Accordion
***************************/
.accordion-004 {
    max-width: 100%;
    margin-bottom: 7px;
    border-bottom: 2px solid #cea32c;
}

.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #a58a5b;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
}

.accordion-004 summary::-webkit-details-marker {
    display: none;
}

.accordion-004 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #cea32cb3;
    border-right: 3px solid #cea32cb3;
    content: '';
    transition: transform .3s;
}

.accordion-004[open] summary::after {
    transform: rotate(225deg);
}

.accordion-004 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #eeeeee;
    transition: transform .5s, opacity .5s;
}

.accordion-004[open] p {
    transform: none;
    opacity: 1;
}