/*****************************************************************
全てに適用
*****************************************************************/
* {
    box-sizing: border-box;
}
body {
    background-color: #fcdf99;
    overflow-x: hidden;
    min-height: 100vh;
    overflow-wrap: anywhere;
    font-size: 0.9rem;
    line-height: 1.75;
    word-break: break-all;
}
ul.type1,
ol.type1 {
    padding: 0;
    margin: .8em 0;
}
ul.type1 li,
ol.type1 li {
    margin: .6em 0 0 2em;
}
p {
    font-size: inherit;
    line-height: 1.75em
}
/* .proportional {
    font-feature-settings: "palt";
    letter-spacing: 0.15em;
} */
.btn-wrap {
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    gap: 3rem;
}
.btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    display: block;
}
.indent {
    padding-left: 1em;
    text-indent: -1em;
}
.list-indent {
    padding-left: 1.5em;
}
.note {
    padding-left: 2rem;
    text-indent: -1rem;
}
.underline {
    text-decoration: underline;
}
.btn.pointer-none {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
    color: #999 !important;
    background: #ccc !important;
    border: #ccc !important;
}
.pointer-none {
    pointer-events: none;
    color: rgba(51, 51, 51, 0.4) !important;
}
.red {
    color: red;
}
#nav_icon {
    width: 3em;
    height: 2.75em;
    background-color: #fff;
    top: 0.5rem;
}
#nav_icon .menu-ic,
#nav_icon .menu-ic:before,
#nav_icon .menu-ic:after {
    width: 2em;
    background-color: #ca440c;
}
#nav_icon .menu-ic {
    top: 1.2em;
}
#nav_icon .menu-ic:before {
    top: -0.6em;
}
#nav_icon .menu-ic:after {
    bottom: -0.6em;
}
body.drawer-opened header {
    height: 60px;
}
body.drawer-opened nav.type1 .nav-contents {
    top: 60px !important;
    height: auto;
    max-height: calc(100vh - 60px);
    background-color: #fcdf99;
    overflow-y: scroll;
}
body.drawer-opened nav.type1 .nav-contents > ul {
    padding: 20px 10px 100px 10px;
    font-size: 80%;
    overflow-y: scroll;
}
body.drawer-opened nav.type1 .nav-contents > ul li {
    width: 100%;
}
@media (width <= 991px ) {
    h3 {
        font-size: 1.1rem;    
    }
    .btn-wrap {
        gap: 2rem;
    }
    nav.type1 ul li > a:hover::after, nav.type1 ul li > a.current::after {
        opacity: 0 !important;
    }
}

/*****************************************************************
header
*****************************************************************/
header h1 a {
    display: block;
    width: max-content;
    margin-inline: auto;
}
header h1 a img {
    max-width: 860px;
    margin-inline: auto;
    padding: 30px 0;
}
@media (width <= 991px ) {
    header {
        height: 60px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    header h1 {
        width: 85% !important;
        margin-left: 0!important;
    }
    header h1 a {
        width: auto;
    }
    header h1 a img  {
        max-width: 350px !important;
        margin-left: 0!important;
        padding: 0;
    }
}

/*****************************************************************
.container
*****************************************************************/
.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-inline: auto;
    width: 100%;
    max-width: 960px;
}

/*****************************************************************
.menu
*****************************************************************/
.menu {
    width: 230px;
    margin-right: 30px;
}
@media (width <= 991px ) {
    .menu {
        width: 100%;
        order: 2;
        margin-inline: 10px;
    }
}

/*****************************************************************
nav
*****************************************************************/
nav ul {
    box-sizing: border-box;
    margin: 0;
    padding: 30px 0;
    width: 100%;
    display: block;
}
nav ul li {
    border-bottom: 1px solid #5a5a5f;
}
nav ul li:first-of-type {
    border-top: 1px solid #5a5a5f;
}
nav.type1 ul li > a{
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3rem;
    letter-spacing: -0.01px;
    color: #333;
    padding: 0 10px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-feature-settings: "palt";
    position: relative;
    transition: opacity 0.3s ease;
}
nav.type1 ul li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #333;
    opacity: 0;
}
nav.type1 ul li > a:hover::after,
nav.type1 ul li > a.current::after {
  opacity: 1;
}
nav.type1 ul li > a:hover,
nav ul li a.current {
    background-color: #333;
    color: #fff;
}

/*****************************************************************
ポスター .poster
*****************************************************************/
aside.poster a {
    margin-bottom: 30px;
}
aside.poster a,
aside.poster a img {
    display: block;
}
@media (width <= 991px ) {
    aside.poster a {
        width: max-content;
        margin-inline: auto;;
    }
}

/*****************************************************************
address
*****************************************************************/
address {
    padding: 10px;
    margin-inline: 0;
}
address p.role {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ca440c;
    border-bottom: 1px solid #ca440c;
    padding-bottom: 5px;
    margin-bottom: 0.5rem;
}
address dl {
    font-size: 0.75rem;
    font-feature-settings: "palt";
}
address dl dt {
    font-size: 0.8rem;
    font-weight: 500;
}


/*****************************************************************
main
*****************************************************************/
main {
    width: 700px;
    margin-top: 30px;
}

/* ニュース */
main .news h2 {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin-top: 2rem;
}
main .news .log-outer {
    height: 240px;
    overflow-y: scroll;
    padding: 1rem;
}
main .news dl dt {
    width: 120px;
}
main .news dl dd {
    width: calc(100% - 120px);
    margin: 0 0 1rem 0;     
}

/* バナー */
main .banners {
    margin: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
main .banners li {
    display: block;
    width: 180px;
}
@media (width <= 991px ) {
    main {
        width: 100%;
        min-height: unset;
        order: 1;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    main .news {
        margin-inline: 10px;
    }
    main .banners {
        gap: 10px;

    }
    main .banners li {
        max-width: 48%;
    }
}

/*****************************************************************
footer
*****************************************************************/
footer {
    width: 960px;
    margin-top: 50px;
}
footer .copybg {
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
footer .copybg p {
    font-size: 0.75rem;
}
@media (width <= 991px ) {
    footer {
        width: 100%;
    }
    footer .copybg p {
        font-size: 0.7rem;
    }
}

/*****************************************************************
ホーム #home
*****************************************************************/


/*****************************************************************
サブページ .subpage
*****************************************************************/
.subpage main .contents {
    padding: 20px;
}
.subpage main .contents h2 {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}
.subpage main .contents section {
    padding: 1rem;
}
@media (width <= 991px) {
    .subpage main .contents {
        padding: 10px;
    }
    .subpage main .contents h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .subpage main .contents section {
        padding: 0.5rem;
    }
}

/*****************************************************************
会長挨拶 #greeting
*****************************************************************/
.subpage#greeting main .contents .profile {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 20px;
    margin-bottom: 2rem;
}
.subpage#greeting main .contents .profile img {
    width: 150px;
}
.subpage#greeting main .contents .profile p {
    line-height: 1.75rem;
}
.subpage#greeting main .contents .profile p span {
    font-size: 1.25rem;
    font-weight: bold;
}
@media (width <= 991px) {
    .subpage#greeting main .contents .profile {
        justify-content: center;
    }
    .subpage#greeting main .contents .profile p {
        text-align: center;
    }
}

/*****************************************************************
開催概要 #outline
*****************************************************************/
.subpage#outline main .contents dl {
    display: flex;
    flex-wrap: wrap;
}
.subpage#outline main .contents dl dt, 
.subpage#outline main .contents dl dd {
    padding: 1rem;
}
.subpage#outline main .contents dl dt {
    width: 8em;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}
.subpage#outline main .contents dl dd {
    width: calc(100% - 8em);
    border-bottom: 1px solid #ccc;
}
@media (width <= 991px) {
    .subpage#outline main .contents dl dt, 
    .subpage#outline main .contents dl dd {
        width: 100%;
        text-align: left;
        padding: 0.5rem;
    }
    .subpage#outline main .contents dl dt {
        border-bottom: 1px dashed #ccc;
    }
}

/*****************************************************************
アクセス・会場案内 #venue
*****************************************************************/
.subpage#venue main .contents iframe {
    width: 100%;
}

/*****************************************************************
関連リンク #link
*****************************************************************/
.subpage#link main .contents dl dt {
    font-weight: 500;
}
.subpage#link main .contents dl dd {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
}