@charset "UTF-8";

:root {
    --main-color: #000000;
    --sub-color: #f3f3f3;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}

ul {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

html {
    font-size: 100%;
    overflow: auto;
}

body {
    font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium",
        "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif;
    font-feature-settings: "palt";
    font-size: 16px;
    letter-spacing: 2px;
    width: 100%;
    background: white;
    margin: 0 auto;
    padding: 0;
    color: #1d2129;
    overflow: hidden;
    line-height: 1.8;
}

main {
    position: relative;
}

/* -------------------------------
layout
------------------------------- */
body {
    /* background-color: #000000; */
    /* background: linear-gradient(180deg, rgb(30 30 29) 0%, rgb(0 70 155) 100%); */
}

.wrap {
    /* max-width: 1200px; */
    margin: 0 auto;
    background-color: #fff;
    position: relative;
}

#overlay {
    display: none;
}

.menu-trigger {
    display: none;
}

/* -------------------------------
common
------------------------------- */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}


.header_title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 125px;
}

.f_wrap {
    display: flex;
}

.mb_only {
    display: none;
}

.pc_only {
    display: block;
}

.fadein {
    opacity: 0.1;
    transform: translate(0, 50px);
    transition: all 1s;
}

.fadein_type2 {
    transform: translate(0, 50px);
    transition: all 1.5s;
}

.fadein_type3 {
    transform: translate(0, 60px);
    transition: all 2s;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}


.no-wrap {
    white-space: nowrap;
}

.fss {
    font-size: 80%;
}


/* -------------------------------
nav
------------------------------- */
nav {

    display: flex;

    flex-direction: column;

    /* gap: 13px; */
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

nav ul.visible_part li {
    padding: 0 20px;
    border-left: 1px solid #fff;
    line-height: 1.2;
    /* min-height: 30px; */
    display: flex;
    align-items: center;
    height: 20px;
}

nav ul li:last-child {
    /* border-right: 1px solid #fff; */
}

nav ul a {
    color: white;
}

.page nav ul a {
    color: #000;
}

.page nav ul.visible_part li {
    border-left: 1px solid #000;
}

nav ul a.unactive {
    color: #919191;
    pointer-events: none;
}

nav ul a:hover {
    color: #ffe70e;
}

nav ul a.unactive:hover {
    color: #919191;
}

nav ul a::before {}

nav ul li span {
    /* display: block;
    font-size: 10px;
    width: 100%;
    text-align: center;
    color: #b4b4b4; */

}

.cnv_btn {
    /* position: absolute;
    right: 0;
    top: 0;
    z-index: 30; */
}

.cnv_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 40px;
    color: white;
    letter-spacing: 2px;
    font-weight: bold;
    background-image: url(../img/arrow_right.svg);
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: 7px;
}

.cnv_btn a.regist {
    background-color: #bc0000;
    margin-bottom: 1px;
}

.cnv_btn a.regist:hover {
    background-color: white;
    color: #bc0000;
    transition: 0.3s;
    font-weight: bold;
    border: 1px solid #bc0000;
}

.cnv_btn a.contact {
    background-color: #037519;
}

.cnv_btn a.contact:hover {
    background-color: white;
    color: #037519;
    transition: 0.3s;
    font-weight: bold;
    border: 1px solid #037519;
}


.fixed_header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    /* display: flex; */
    justify-content: space-between;
    width: 100%;
    align-items: center;
    /* padding-left: 30px; */
    transition: 0.2s;
}

.fixed_header .header_right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fixed_header .header_right .hidden_part {
    /* display: none; */
}

.fixed_header .header_right .hidden_part li:first-child {
    display: flex;
    line-height: 1.3;
    align-items: center;
}

.fixed_header .header_right .hidden_part li:first-child div:last-child {
    text-align: right;
}




body.scrolled .fixed_header {
    /* background-color: rgba(255,255,255,1); */
    background-color: #001c07;
    transition: 0.5s;
}

body .hidden_part {
    display: flex !important;
    gap: 20px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
    color: white;
}

body.scrolled .hidden_part span {
    font-size: 18px;
}



body.scrolled .visible_part a {
    /* color: #000; */

}

body.scrolled nav ul.visible_part li {
    /* border-left: 1px solid #000; */
}

body.scrolled nav ul.visible_part li span {}

body.scrolled .cnv_btn a {
    height: 40px;
    font-size: 14px;
    font-weight: normal;
}

body.scrolled.page nav ul a {
    color: #fff;
}

body.scrolled.page nav ul.visible_part li {
    border-left: 1px solid #fff;
}



/* -------------------------------
.front_page
------------------------------- */
.wrap {
    position: relative;
    /* background-image: url(../img/bg_parallelogram.png); */
    background-size: 3018px;
    background-position-y: 100vh;
    background-position-x: center;
    padding-top: 100px;
}

.front_page .wrap {
    padding-top: 0;
}

.wrap .header_logo {
    /* position: absolute;
    top: 21px;
    left: 6%;
    z-index: 12; */
    display: flex;
    align-items: center;
    height: 100%;
}

.wrap .header_logo a {
    display: block;
    line-height: 1;
    padding-left: 25px;
}

.wrap .header_logo a img {
    max-width: 385px;
    height: 40px;
}



.front_page header {
    height: auto;
    min-height: 800px;
    /* padding-top: 161px; */
    background-image: url(../img/mv_bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    background-attachment: fixed;
    margin-top: 130px;
}

.front_page header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 80, 29, 0.1);
}

.front_page.onLoad header::before {
    background-color: rgba(45, 80, 29, 0.5);
    transition: 2s;
}

.front_page header>div::before {
    content: "";
    position: absolute;
    transform: skewX(-13deg);
    width: 1130px;
    height: 82vh;
    min-height: 800px;
    margin: 0 auto;
    background-color: rgba(45, 80, 29, 0.1);
    border-right: 8px solid rgba(255, 255, 0, 0);
    border-left: 8px solid rgba(255, 255, 0, 0);
    z-index: 8;
}

.front_page.onLoad header>div::before {
    background-color: rgba(24, 43, 15, 0.9);
    border-right: 8px solid rgba(255, 255, 0, 0.9);
    border-left: 8px solid rgba(255, 255, 0, 0.9);
    transition: 2s;
}


.front_page header>div {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.front_page header div.main_logo {
    max-width: 720px;
    z-index: 10;
}

.front_page header div.main_logo .main_logo_wrap {
    text-align: center;
}

.front_page header div.main_logo img {
    width: 100%;
    /* max-height: 40vh;
    width: auto; */
}

.front_page header .header_support {
    color: white;
    line-height: 1.7;
    margin-top: 20px;
    /* max-width: 450px; */
    margin: 0 auto;
    padding-left: 0px;
}

.front_page header .header_support .f_wrap {
    display: flex;
    font-size: 13px;
    line-height: 1.5;
    flex-direction: column;
}

.front_page header .header_support .f_wrap>div:first-child {
    min-width: 137px;
    margin-bottom: 6px;
    font-size: 15px;
}


/* .front_page header > div > div {
    text-align: center;
}
.front_page header span {
    color: white;
    font-weight: bold;
    position: absolute;
    right: 0;
    font-size: 51px;
    bottom: 31%;
    transform: rotate(-19deg);
    -moz-transform: rotate(-19deg);
    -webkit-transform: rotate(-19deg);
    -o-transform: rotate(-19deg);
    -ms-transform: rotate(-19deg);
}
.front_page .sns {
    display: flex;
    align-items: center;
    position: absolute;
    top: 80px;
    right: 100px;
    background-color: rgba(255,255,255,0.7);
    padding: 7px 10px 4px;
    z-index: 999;
    border-radius: 40px;
}
.front_page .sns a {
    display: block;
    width: 40px;
    margin: 0 8px;
    line-height: 1;
}
.front_page .sns a:last-child {
    width: 70px;
}
.front_page .sns a img {
    width: 100%;
} */





section h2 {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 100px;
}

.front_page section h2 img {
    width: 31%;
    min-width: 350px;
}

.front_page .outer_regarding h2 {
    margin-top: 50px;
}



.front_page .outer_regarding {
    border: 3px solid #001c07;
    max-width: 1060px;
    margin: 80px auto 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding-bottom: 40px;
    margin-bottom: ０;
}

.front_page #sec1 {
    padding-top: 0px;
}

.front_page #sec1 h2 {
    font-size: 37px;
    font-weight: bold;
    display: block;
}

.front_page #sec1 h2 span {
    display: block;
    line-height: 1.4;
}

.front_page #sec1 h2 span.en {
    font-size: 19px;
    font-weight: bold;
}




section {
    max-width: 1000px;
    margin: 0 auto;
}


h2.bg_black {
    background-color: #001c07;
    color: white;
    font-size: 28px;
    text-align: center;
    /* border-left: 10px solid #004c13; */
}

/* .front_page h2.bg_black.wide {
    padding: 6px 0;
} */




.front_page #sec2 {
    margin-bottom: 60px;
    position: relative;
}

.front_page #sec2>div>div {
    width: 100%;
    /* max-width: 800px; */
    margin: 0 auto;
    border: 1px solid #e6e3e3;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.3);
}

.front_page #sec2 .info li {
    display: flex;
    border-bottom: 1px dotted #666;
    padding: 15px;
    gap: 20px;
}

.front_page #sec2 .info li .info_date {
    min-width: 100px;
    font-weight: bold;
    color: #001c08;
}

.front_page #sec2 .info li .info_title {
    /* display: flex; */
    display: block;
}

.front_page #sec2 .info li .info_title img {
    margin-right: 15px;
}

.front_page #sec2 .sec2_part {
    position: absolute;
    display: block;
    right: -200px;
    bottom: -200px;
    width: 400px;
}

.front_page #sec2 .sec2_part2 {
    position: absolute;
    display: block;
    left: -200px;
    top: 0px;
    width: 400px;
}

.front_page #sec2 .info_list_btn {
    width: 400px;
    height: 30px;
    text-align: center;
    background: #666666;
    border-radius: 10px;
    margin: 30px auto;
}

.front_page #sec2 .info_list_btn span img {
    width: 30px;
}

.front_page #sec9 {
    padding-top: 140px;
    margin-top: -120px;
}

.front_page #sec9 h2 {
    margin-top: 0;
}

.front_page #sec9 table {
    margin: 0 auto;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0px;
}

.front_page #sec9 table th {
    width: 130px;
    text-align: left;
    font-weight: normal;
    vertical-align: top;
    border-top: 1px dashed #cccccc;
    padding: 15px 0;
}
.front_page #sec9 table th span {
    font-size: 12px;
    display: block;
    margin-top: -5px;
}

.front_page #sec9 table td {
    padding-left: 20px;
    vertical-align: top;
    border-top: 1px dashed #cccccc;
    padding: 15px 0;
}

.front_page #sec9 table td a {
    color: blue;
}


.front_page #sec3 .f_wrap {
    justify-content: center;
    margin: 60px 0 80px;
}

.front_page #sec3 .f_wrap>div {
    border: 1px solid #ccc;
    margin: 0 20px;
}

/* .front_page #sec2 h2,.front_page #sec3 h2,.front_page #sec4 h2 {
    background-color: #000000;
    color: white;
    text-align: center;
    width: 31%;
    min-width: 350px;
    margin: 60px auto 40px;
    padding: 10px 0;
    color: #ffe70e;
    transform: skewX(-30deg);
    border-left: 3px solid #ffe70e;
    border-right: 3px solid #ffe70e;
}
.front_page #sec2 h2 > div,.front_page #sec3 h2 > div,.front_page #sec4 h2 > div {
    transform: skewX(30deg);
    line-height: 1.3;
}
.front_page #sec2 h2 > div span,.front_page #sec3 h2 > div span,.front_page #sec4 h2 > div span {
    display: block;
    color: white;
    font-size: 60%;
    font-weight: normal;
}
.front_page #sec3 .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
} */
.front_page #sec3 .sns_icon {
    width: 30px;
}

.front_page #sec4>div>div {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.front_page #sec4 .conv_btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0071bc;
    color: white;
    width: 30%;
    height: 50px;
    margin: 40px auto 0;
    border: 1px solid #0071bc;
}

.front_page #sec4 .conv_btn a:hover {
    background-color: white;
    color: #0071bc;
    font-weight: bold;
    border: 1px solid #0071bc;
}

.front_page #sec4 .conv_btn a::after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -4px;
}

.front_page #sec4 .conv_btn a:hover {
    opacity: 0.7;
}


.front_page #sec5 .f_wrap {
    display: flex;
}

.front_page #sec5 .f_wrap>div:first-child {
    flex-basis: 65%;
}

.front_page #sec5 .f_wrap>div:last-child {
    flex-basis: 35%;
    text-align: center;
}

.front_page #sec5 .f_wrap>div:last-child img {
    width: 60%;
}

.front_page #sec5 .f_wrap>div:last-child .chairperson_name {
    font-size: 15px;
    line-height: 1.3;
    text-align: right;
}

.front_page #sec5 .f_wrap>div:last-child .chairperson_name>div:last-child {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}



.front_page #sec6 .f_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
}

.front_page #sec6 .f_wrap>div {
    width: 32.5%;
    padding: 30px 25px;
    background-color: rgb(0 0 0 / 2%);
}

.front_page #sec6 .f_wrap>div h3 {
    font-size: 20px;
    font-weight: bold;
    border-left: 5px solid #004d15;
    padding-left: 15px;
    /* margin-bottom: 20px; */
    line-height: 1.3;
    min-height: 53px;
    display: flex;
    align-items: center;
}

.front_page #sec6 .f_wrap>div h3+div {
    margin-top: 20px;
}



.front_page #sec7 .supporter_box {
    padding: 20px 30px 30px;
    border: 1px solid #878787;
    margin-bottom: 30px;
}

.front_page #sec7 h3::after {
    content: "";
    display: block;
    border-bottom: 5px solid #004c13;
    width: 20px;
    margin: 0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
}

.front_page #sec7 .f_wrap {
    gap: 20px;
}

.front_page #sec7 .supporter_box h3 {
    font-size: 24px;
}

.front_page #sec7 .supporter_box .f_wrap>div:first-child {
    flex-basis: 70%;
}

.front_page #sec7 .supporter_box .f_wrap>div:last-child {
    flex-basis: 30%;
    text-align: center;
}

.front_page #sec7 .supporter_box .f_wrap>div:last-child img {

    max-width: 100%;
}

.front_page #sec7 .supporter_box .f_wrap>div:last-child img.picture {
    max-width: 70%;
}

.front_page #sec7 .supporter_box .chairperson_name {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.front_page #sec7 .supporter_box .chairperson_name>div:first-child {
    font-size: 15px;
    font-weight: normal;
}





.front_page #sec8 .content_box {
    /* padding: 0 20px; */
}

.front_page #sec8 .content_box li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    background-color: rgba(0, 0, 0, 2%);
}

.front_page #sec8 .content_box li>div {
    font-weight: normal;
    padding-left: 30px;
    font-size: 16px;
}

.front_page #sec8 .content_box li h3 {
    font-size: 20px;
    font-weight: bold;
    border-left: 5px solid #004d15;
    padding-left: 15px;
    /* margin-bottom: 20px; */
    line-height: 1.3;
}

.front_page #sec8 .content_box li h3+div {
    margin-top: 20px;
}


.front_page #video>div {
    text-align: center;
    margin-bottom: 50px;
}



.front_page #sec4 {
    h3 {
        border: 2px solid #004d15;
        max-width: 80%;
        margin: 0 auto;
        margin: 50px auto 20px;
    }
    .access_img1 {
        text-align: center;
        font-size: 20px;
        font-weight: bold;

        img {
            max-width: 80%;
            margin: 15px auto 0;
        }
    }
}



.front_page #sec13 {
    padding-top: 100px;
    text-align: center;
    img {
        max-width: 90%;
        
        border: 2px solid #08004a;
        box-shadow: 0 0 10px #aaa ;
    }
}

.front_page #sec14 {
    padding-top: 30px;
    text-align: center;
    img {
        max-width: 90%;
        border: 2px solid #03783b;
        box-shadow: 0 0 10px #aaa ;
    }
}


/* -------------------------------
outline
------------------------------- */
.page nav {
    top: 83px;
    right: 100px;
}

.page header {
    background-image: url(../img/sub_page_mv.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 440px;
    position: relative;
}

.page header>div>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 100px 20px 0;
}

.page header>div:first-child>div>a {
    width: 37%;
    padding-top: 0px;
}

.page header>div:first-child>div>a>img {
    width: 65%;
}

.page header>div:first-child>div>div {
    color: white;
}

.page header>div:first-child>div>div span {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-bottom: 8px;
}

.page header>div:first-child>div>div span img {
    display: inline-block;
    width: 65px;
    margin-left: 5px;
}

.page header>div:first-child>div>div span:last-child {
    color: #9a9a9a;
}

.page header>div:first-child>div>div span:last-child a {
    color: #9a9a9a;
}

.page header .contact_data a {
    color: white;
}

.page header .top_conv {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 40px;
}

.page header .top_conv img {
    width: 25px;
    margin-right: 5px;
}

.page header .top_conv .tel img {
    width: 20px;
}

.page header .top_conv a {
    display: block;
    background-color: #ffe70e;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.page header .top_conv a.tel {
    height: 30px;
    background-color: #0069b4;
    color: white;
}




.page h2.box {
    background-color: #000000;
    color: white;
    text-align: center;
    width: 31%;
    min-width: 350px;
    margin: 60px auto 0;
    padding: 10px 0;
    color: #ffe70e;
    transform: skewX(-30deg);
    border-left: 3px solid #ffe70e;
    border-right: 3px solid #ffe70e;
}

.page h2.box>div {
    transform: skewX(30deg);
}

.page h2.box span {
    display: block;
    color: white;
    font-size: 60%;
    font-weight: normal;
}



.page #header_wide {
    width: 100%;
    max-width: 100%;
    height: 100px;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.page .last_section {
    margin-bottom: 60px;
}











.outline #sec1>div {
    max-width: 1000px;
    margin: 0 auto;
}

.outline #sec1>div>div {
    background-color: #f5f5f5;
    padding: 70px 50px 50px;
    margin-top: -40px;
}

.outline #sec1>div>div p {
    margin-bottom: 10px;
}

.outline #sec1 table {
    width: 100%;
    margin: 0 auto;
    background-color: white;
}

.outline #sec1 table th {
    width: 25%;
    border-bottom: 1px solid #f5f5f5;
    background-color: black;
    color: white;
    border-left: 3px solid #ffe70e;
}

.outline #sec1 table td {
    border-bottom: 1px solid #f5f5f5;
    padding: 15px;
}

.outline h3 {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 20px;
}

.outline h3::after {
    content: "";
    display: block;
    border-bottom: 1px solid #000;
    width: 20px;
    margin: 0 auto;
    padding-bottom: 0.5rem;
}

.outline .note {
    line-height: 2.5;
}

/* -------------------------------
show
------------------------------- */
.show #sec1 {
    background-image: url(../img/show_img1.png);
    background-size: cover;
    color: white;
    padding: 20px 0 60px;
    background-attachment: fixed;
}

.show #sec1>div {
    max-width: 800px;
    margin: 60px auto 20px;
}

.show #sec1>div>div>div:last-child {
    padding: 0 20px;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
}

.show #sec1>div>div:first-child {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 3px black;
}

.show #sec1>div:first-child span {
    background: linear-gradient(transparent 55%, #003884 0%);
    display: inline;
    font-size: 34px;
    text-shadow: 0 0 3px black;
}

.show #sec1>div:first-child span.large {
    font-size: 34px;
    display: block;

}

.show #sec2 img {
    width: 280px;
}

.show #sec2>div {
    position: relative;
}

.show #sec2>div {
    max-width: 1000px;
    margin: 0 auto;
}

.show #sec2>div>div {
    background-color: #f5f5f5;
    padding: 70px 50px 50px;
    margin-top: -40px;
}

.show #sec2 .f_wrap {
    border-bottom: 1px solid #fff;
    padding: 40px 0;
}

.show #sec2 .f_wrap>div:last-child {
    padding-left: 30px;
}

.show #sec2 .merit {
    font-size: 30px;
    font-weight: bold;
    /* line-height: 1.2;
    background: linear-gradient(transparent 66%, #fff 0%);
    margin-bottom: 19px; */
}

.show #sec2 .merit span {
    color: #ffe70e;
    font-size: 36px;
}



.show #sec3 .f_wrap {
    width: 1000px;
    margin: 0 auto;
    padding: 80px 0 0;
}

.show #sec3 .f_wrap>div {
    flex: 1;
}

.show #sec3 .f_wrap>div:first-child h2 {
    color: #00A0E9;
    border-left: 3px solid #00A0E9;
    border-right: 3px solid #00A0E9;
}

.show #sec3 .f_wrap>div:last-child>div {
    text-align: center;
    margin-top: 20px;
}

.show #sec3 .f_wrap>div:last-child>div img {
    width: 100%;
}

.show #sec3 .f_wrap>div:nth-child(2) {
    width: 100%;
    text-align: center;
}

.show #sec3 .f_wrap>div:nth-child(2) img {
    width: 90%;
}

.show #sec3 .pc_c {
    width: 100%;
}

.show #sec3 .mb_c {
    display: none;
}

.show #sec3 .f_wrap h2 {
    min-width: 65%;
    margin-top: 0;
    margin-bottom: 20px;
}

.show #sec3 ul {
    padding-left: 50px;
    list-style: disc;
}


.contact p {
    margin-bottom: 30px;
}




.conv>div>div {
    width: 100%;

}

.conv>div>div a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffe70e;
    color: black;
    width: 50%;
    height: 80px;
    margin: 80px auto 40px;
    font-size: 20px;
    position: relative;
}

.conv>div>div a:hover {
    background-color: #fff596;
    padding: 3px 0 0 0;
}


.conv>div>div a img {
    width: 35px;
    margin-right: 16px;
}

.conv>div>div a::after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0px;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -4px;
}

.conv.show_top>div>div {
    background-color: #231815;
    padding: 45px 0;
}

.conv.show_top>div>div a {
    margin: 0 auto;
    width: 35%;
    height: 60px;
}

/* -------------------------------
footer
------------------------------- */

footer {
    position: relative;
    background-color: #000;
    color: white;
    text-align: center;
    padding: 30px 0 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

footer .footer_part1 {
    position: absolute;
    top: 3%;
    right: -60px;
    width: 400px;
}

footer .footer_part2 {
    position: absolute;
    top: 75%;
    left: -60px;
    width: 400px;
}

footer>div {}

#footer_organization {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

#footer_organization span {
    font-size: 14px;
    display: block;
    font-weight: normal;
    line-height: 1.5;
}

#footer_organization span:first-child {
    font-weight: bold;
    font-size: 18px;
    margin-top: 2px;
}

#footer_tel {
    margin-top: 8px;
    line-height: 1.5;
}

#footer_tel div.box {
    display: none;
    /* display: inline-block; */
    border: 1px solid #fff;
    font-size: 12px;
    font-weight: normal;
    padding: 4px 17px;
    line-height: 12px;
    margin-right: 20px;
    vertical-align: middle;
}

#footer_tel span.tel_text {
    font-size: 20px;
    font-weight: bold;
    vertical-align: baseline;
}

#footer_tel span:last-child {
    font-size: 14px;
    display: block;
}

#footer_tel a {
    color: white;
    text-decoration: none;
    font-size: 27px;
    font-weight: bold;
}

#footer_adress {
    font-size: 14px;
    margin-top: 6px;
}

#footer_adress a {
    color: white;
}

#footer_adress span {
    font-size: 12px;
    display: block;
}

#footer_support {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    margin: 25px 0;
}

#footer_support span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 17px;
}

#footer_copyright {
    margin-top: 50px;
}

.fixed_btn_wrap_for_ie {
    width: 100%;
    left: 0;
    display: block;
    position: fixed;
    /* background-color: #000;  */
    height: 50px;
    bottom: 0;
    z-index: 30;
}

.fixed_btn_wrap {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    height: 50px;
}

.fixed_btn {
    right: 0;
    display: block;
    background-color: #ffe70e;
    width: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* border: 1px solid #fff; */
}

.fixed_btn.btn1 {
    background-color: #bc0000;
}

.fixed_btn.btn2 {
    background-color: #00761e;
}

.fixed_btn:hover {
    background-color: white;
    /* color: #ffe70e; */
    font-weight: bold;
    transition: 0.3s;
    /* border: 1px solid #ffe70e; */
}

.fixed_btn.btn1:hover {
    color: #bc0000;
    transition: 0.3s;
    border: 1px solid #bc0000;
}

.fixed_btn.btn2:hover {
    color: #00761e;
    transition: 0.3s;
    border: 1px solid #00761e;
}



.fixed_btn img {
    width: 25px;
    margin-right: 10px;
}

.fixed_btn_wrap>div.scrolltotop {
    width: 50px;
    background-color: #5C5C5C;
    cursor: pointer;
    position: relative;
}

.fixed_btn_wrap>div.scrolltotop::after {
    content: "";
    width: 12px;
    height: 12px;
    border: 0px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
    top: 50%;
    right: 18px;
    margin-top: -4px;
}


#page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    z-index: 200;
    height: 50px;
    background-color: #001c08;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page-top img {
    width: 35%;
    cursor: pointer;
}


.stop .fixed_btn_wrap_for_ie {
    display: none;
}

#sec10>div>div {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    a {
        display: flex;
        align-items: center;
        flex: 0 0 50%;
        justify-content: center;
    }
}

#sec10>div>div img {
    max-width: 320px;
}



#sec11>div {}

.mediapartner {
    display: flex;
    gap: 50px;
    align-items: center;
    row-gap: 10px;
    flex-wrap: wrap;
    justify-content: center;

    >a {
        display: flex;
        height: auto;
        img {
            max-height: 100px;
        }
    }

    >a:nth-child(3) img {
        max-height: 100px;
    }

    >a:nth-child(4) img {
        max-height: 70px;
    }

    >a:nth-child(5) img {
        max-height: 45px;
    }
    >a:nth-child(6) img {
        max-height: 70px;
    }
    >a:nth-child(7) img {
        max-height: 45px;
        margin-top: 10px;
    }
}





#sec11 .btn {
    margin-top: 50px;
}

#sec11 .btn a {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    height: 60px;
    align-items: center;
    background-color: #0071bc;
    border: 1px solid #0071bc;
    color: white;
    box-shadow: 0 4px 10px #bbb;
    transition: 0.3s;
}

#sec11 .btn a:hover {
    color: #0071bc;
    background-color: white;
    box-shadow: none;
}



/* -------------------------------
プレスページ
------------------------------- */
main.page {
    margin-top: 50px;
}





.sub_page #contact_press {
    border: 3px solid #001c07;
    max-width: 1060px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding-bottom: 40px;
    margin-bottom: 80px;
    padding: 30px;
}

.sub_page .mainbox_wrap {
    display: flex;
    justify-content: space-between;
}

.sub_page .mainbox_wrap>div:first-child {
    flex: 3;
    /* margin-right: 30px; */
}

.sub_page .h1_pagettl {
    background-color: #202020;
    padding: 22px 40px 26px;
}

.sub_page .content_area:last-child {
    padding: 50px 40px 35px;
}

.sub_page .h1_ttltxt p {
    line-height: 1;
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 0.2em;
    padding-top: 10px;
    margin-top: 0px;
}

.sub_page h2.style_h201 {
    padding: 16px 25px 18px 30px;
    margin-bottom: 20px;
    margin-top: 40px;
    border-left: 8px solid #fbb03b;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    background-color: #202020;
    background-size: 8px;
}

.sub_page .h1_pagettl h1 {
    line-height: 1.4;
    color: #ffffff;
    font-size: 26px;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin: 0 0 0 0;
}

#press .content_area #contact_press h3.style_h303 {
    padding: 10px 10px 10px 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    background: #ffffff url(../img/bg_h302.svg) left center no-repeat;
    background-size: 8px;
    border: 1px solid #00275d;
    color: #00275d;
}

#press h4.style_h401 {
    padding: 10px 10px 10px 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    background: #ffffff url(../img/bg_h401.svg) left center no-repeat;
    background-size: 8px;
    border-bottom: 1px dashed #e6e6e6;
    color: #00275d;
}

#press .content_block_upper {
    display: flex;
    justify-content: space-between;
}

#press .content_block_upper>div:first-child {
    flex: 2;
    margin-right: 30px;
}

#press .content_block_upper>div:last-child {
    flex: 1.4;
}

#press .content_block_upper>div:last-child img {
    max-width: 100%;
}

#press .tel_no {
    font-size: 30px;
    font-weight: 700;
}

#press .release_list dd {
    margin-bottom: 15px;
}




.sub_page .content_area section h3 {
    font-size: 24px;
    line-height: 24px;
    background-color: #202020;
    color: white;
    padding: 16px 30px;
    margin-bottom: 20px;
    margin-top: 50px;
}

.sub_page #sidebox {
    width: 300px;
    float: right;
    margin: 40px 0 0;
    padding: 0 0 0 20px;
}

.sub_page #sidebox h2 {
    background: #fbb03b;
    text-align: center;
    color: #000000;
    line-height: 1;
    padding: 40px 0;
    border-radius: 8px;
    font-size: 18px;
    margin-top: 0;
}

.sub_page #sidebox h2::after {
    content: url(../img/bg_tri_black.svg);
    display: block;
    width: 16px;
    height: 18px;
    vertical-align: middle;
    margin: 0 auto;
}

.sub_page #sidebox .side_menu ul li a {
    display: block;
    text-decoration: none;
}

.sub_page #sidebox .side_menu ul li a {
    background: url(../img/side_li01.png) left center no-repeat;
    padding: 10px 10px 10px 15px;
    border-bottom: 1px dashed #acacac;
    color: #202020;
}

.release_list {
    margin-bottom: 8px;
}


#press #mediapartner {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: center;

    >a {
        display: flex;
    }

    >a:nth-child(3) img {
        max-height: 100px;
    }

    >a:nth-child(4) img {
        max-height: 70px;
    }
}



.exhibitorslist .listsection>div {
    margin-bottom: 50px;
}

.exhibitorslist .list_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* border-bottom: 1px dashed #aaa; */
    padding: 10px 10px;
    min-height: 100px;
}

.exhibitorslist .list_wrap>div:first-child {
    flex: 3;
    padding-right: 20px;
}

.exhibitorslist .list_wrap>div:nth-child(2) {
    width: 230px;
    height: auto;
}

.exhibitorslist .list_wrap img {
    /* max-height: 60px; */
    max-width: 100%;
}

.exhibitorslist .list_wrap img.google {
    max-height: 120px;
}


.exhibitorslist .exhibitor_wrap .exhibitor_name {
    font-weight: bold;
}

.exhibitorslist .list_service_wrap ul {
    line-height: 1.5;
    list-style: disc;
}

.exhibitorslist .list_service_wrap ul li {
    display: block;
    margin-right: 10px;
    /* white-space: nowrap; */
    list-style: disc;
}

.exhibitorslist .list_service_wrap ul li .exh_service_title {
    font-size: 16px;
    margin-bottom: 5px;
}

.exhibitorslist .list_service_wrap ul li .exh_service_title::before {
    content: "・";
    margin-right: 3px;
}

.exhibitorslist .list_service_wrap ul li .exh_service_desc {
    font-size: 15px;
    background-color: #ffffff;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    margin-top: 9px;
}

.exhibitorslist .list_service_wrap ul li:last-child .exh_service_desc {
    margin-bottom: 5px;
}

.exhibitorslist .exhibitor_label {
    display: none;
    font-size: 11px;
    color: white;
    padding: 2px 4px;
    border-radius: 5px;
    margin-left: 6px;
    background-color: #cacaca;
    white-space: nowrap
}

.exhibitorslist .exhibitor_label.label_r {
    background-color: red;
    white-space: nowrap
}

.exhibitorslist .exhibitor_label.label_o {
    background-color: #1c2660;
    white-space: nowrap;
}

.exhibitorslist .exhibitor_logo {
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibitorslist .list_service_wrap {
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #f9f9f9;
}

.exhibitorslist .exhibitor_wrap {
    background-color: #e3e6e9;
    border-radius: 5px;
    padding: 5px 80px 5px 20px;
    position: relative;
    cursor: pointer;
    border-left: 5px solid #222;
}

.exhibitorslist.english .exhibitor_wrap {
    cursor: auto;
}

.exhibitorslist:not(.english) .exhibitor_wrap:hover {
    background-color: #dcdcdc;
}

.exhibitorslist .exhibitor_wrap::after {
    content: "詳細▼";
    position: absolute;
    right: 5%;
    font-size: 12px;
    color: #303e92;
    top: 8px;
}

.exhibitorslist.english .exhibitor_wrap::after {
    content: "More Details▼";
    letter-spacing: 0;
    display: none;
}

.exhibitorslist .exhibitor_wrap:hover::after {
    color: #000;
}

.exhibitorslist .toggle_area {
    padding: 10px 20px;
    line-height: 1.5;
}

.exhibitorslist .toggle_area .toggle_area_description {
    /* font-size: 14px; */
    margin-top: 10px;
    /* color: #666; */
    border: 1px solid #e4e4e4;
    padding: 10px;
}

.exhibitorslist .list_service_wrap h5 {
    margin: 0;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 1px 10px;
    font-size: 13px;
}

.exhibitorslist .note_tar {
    text-align: right;
    font-size: 12px;
    margin-bottom: 30px;
}


.exhibitorslist ul.kana {
    display: flex;
    gap: 6px;
    padding: 0 15px;
    margin-bottom: 35px;
}

.exhibitorslist ul.kana li a {
    background-color: white;
    color: #000;
    border-radius: 1px;
    padding: 3px 5px 2px;
    display: block;
    border: 2px solid #000000;
}

.exhibitorslist ul.kana li a:hover {
    background-color: #576b87;
    border: 2px solid #576b87;
    color: white;
}

.exhibitorslist .listsection .point {

    /* background-color: white; */

    color: #000;

    padding: 2px 20px;

    margin-bottom: 15px;

    margin-top: 20px;

    border-bottom: 2px solid #000000;

    font-size: 18px;

    display: inline-block;

}

.exhibitorslist h2.bg_black {

    margin-bottom: 22px;
    margin-top: 20px;
}

.exhibitorslist {}

.exhibitorslist .listsection {
    padding-top: 50px;
}

.exhibitorslist .listsection .header_copy {
    text-align: center;
}

.exhibitorslist .listsection .header_copy span {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    display: inline-block;
    background: linear-gradient(transparent 70%, #fff46a 70%);
}


/* .exhibitorslist .joint_exhibitors {
    
margin-top: 10px;
    
margin-left: 10px;
    
display: flex;
    
align-items: flex-start;
}
.exhibitorslist .joint_exhibitors .label {
    display: inline-block;
    padding: 5px 10px 4px;
border: 1px solid #000;
    line-height: 1;
    font-size: 15px;
    margin-right: 10px;
    margin-top: 2px;
    background-color: #ffffff;
    border-left: 3px solid #000;
    border-radius: 3px;
    }
    
    
.exhibitorslist .joint_exhibitors .label {}
.exhibitorslist .joint_exhibitors .je_name {
    font-weight: 600;
}
.exhibitorslist .joint_exhibitors .je_data {
    font-size: 14px;
    display: none;
    padding-left: 0;
    padding-top: 0;
} */

.exhibitorslist .co-exhibitors {
    display: flex;
    font-weight: 600;
    margin-top: 6px;
}

.exhibitorslist .co-exhibitors::before {
    content: "共同出展社：";
}

.exhibitorslist.english .co-exhibitors::before {
    content: "Co-Exhibitors：";
}

/* .exhibitorslist .co-exhibitors {
    
margin-left: -20px;
    
width: calc(100% + 40px);
    
margin-top: 10px;
}
.exhibitorslist .co-exhibitors > div {
    background-color: #e3e6e9;
    border-radius: 5px;
    padding: 5px 80px 5px 20px;
    position: relative;
    border-left: 5px solid #222;
    font-weight: 600;
} */





.exhibitorslist.english .toggle_area {
    /* 共同出展社ネストなし、toggleなし*/
    display: block !important;
    padding: 0 0 10px 0;


    /* 共同出展社をネスト */
    padding: 0 0 10px 10px;
}

.exhibitorslist .co-exhibitors {
    display: flex !important;
    margin-top: 10px;
    gap: 10px;
    flex-wrap: wrap;
    row-gap: 0;
}

.exhibitorslist .co-exhibitors>div {
    flex-grow: 1;
    flex-basis: 50%;
}

.exhibitorslist .co-exhibitors>div:nth-child(n+2) {
    padding-left: 143px;
}

/* .exhibitorslist .co-exhibitors::before {
    content: none !important;
}
.exhibitorslist .co-exhibitors > div {
    background-color: #e3e6e9;
    border-radius: 5px;
    padding: 5px 80px 5px 20px;
    position: relative;
    border-left: 5px solid #222;

    margin-top: 10px;
} */





.student {}

.student .listsection {
    margin-bottom: 50px;
}

.student .pre_text {
    padding: 0;
    /* background-color: rgba(255,255,255,0.5); */
    /* border: 1px solid #9b9b9b; */
    /* background-color: white; */
    padding-bottom: 20px;
    margin: 0 15px 45px;
}

.student .pre_text .title {
    font-size: 20px;
    font-weight: 600;
    /* border-left: 7px solid #000; */
    display: block;
    margin-bottom: 6px;
    padding: 5px 15px 2px;
    /* background-color: #6d6d6d; */
    color: black;
    /* text-shadow: 0 0 1px #000; */
}

.student .pre_text .text {
    padding: 0 12px;
}

.student .list_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* border-bottom: 1px dashed #aaa; */
    padding: 10px 10px;
    min-height: 100px;
}

.student .list_wrap>div:first-child {
    flex: 3;
    padding-right: 20px;
}

.student .list_wrap>div:nth-child(2) {
    width: 230px;
    height: auto;
}

.student .list_wrap img {
    /* max-height: 60px; */
    max-width: 100%;
}

.student .data_wrap {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.student .seminar_id {
    background-color: #02420e;
    color: white;
    padding: 6px 20px 6px 20px;
    line-height: 1;
    display: inline-block;
    margin-right: 15px;
    /* margin-left: -20px; */
}

.student .seminar_date {}

.student .list_wrap {
    padding: 20px;
    border: 2px solid #eeeeee;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
}

.student .com_name {
    background-color: white;
    padding: 5px 13px;
    border-left: 6px solid;
    border-radius: 6px;
    box-shadow: 0 0 2px #ddd;
    font-weight: 600;
}

.student .com_text {
    padding: 15px 20px;
    font-size: 15px;
}



.fixed_header {}

.fixed_header .header_menu_head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: black;
}

.fixed_header .header_menu_body {
    width: 100%;
    background-color: #02420e;
}

.fixed_header .header_menu_body nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* border-top: 1px solid white; */
    /* border-bottom: 1px solid white; */
    height: 49px;
    align-items: center;
}

.fixed_header .header_menu_body nav a, .fixed_header .header_menu_body nav span {
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid #065015;
    justify-content: center;
    width: 100%;
    max-width: 180px;
    transition: 0.3s;
}

.fixed_header .header_menu_body nav a:hover {
    background-color: #0a551d;
    transition: 0.5s;
}

.fixed_header .header_menu_body nav a:first-child {
    max-width: 67px;
}

.fixed_header .header_menu_body nav a img {
    height: 20px;
}

.fixed_header .header_menu_body nav span {
    background-color: #314234;
    color: #797979;
}

header .btn {
    z-index: 10;
    width: 100%;
    padding: 30px 0;
}

header .btn a {
    display: flex;
    background-color: #bc0000;
    color: white;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
    height: 50px;
    align-items: center;
    background-image: url(../img/arrow_right.svg);
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: 7px;
    /* font-weight: bold; */
    transition: 0.3s;
}

header .btn a:hover {
    background-color: white;
    border: 1px solid #bc0000;
    color: #bc0000;
    font-weight: bold;
}

header .logo_data {
    font-size: 29px;
    font-weight: bold;
    color: white;
    line-height: 1;
    margin: 30px 0 30px;
}

header .logo_data a {
    color: white;
    text-decoration: underline;
}

header .logo_data>div {
    margin-bottom: 10px;
    /* max-width: 800px; */
    margin: 11px auto;
}

header .logo_data div:first-child {
    display: flex;
    align-items: baseline;
    /* justify-content: center; */
    /* margin-bottom: 9px; */
}

header .logo_data div:first-child span {
    font-size: 42px;
}

header .logo_data div:first-child>div:last-child {
    display: flex;
    align-items: baseline;
    justify-content: center;
    /* flex-grow: 1; */
    gap: 10px;
}



/* header .logo_data .info {
    font-size: 20px;
    span {
        font-size: 14px;
    display: inline-block;
    width: 85px;
    margin-right: 10px;
    border: 1px solid #fff;
    padding: 3px 0px 3px;
    color: #fff;
    text-align: center;
    }
;
    line-height: 1;
    max-width: 500px;
}

header .logo_data .time {
    font-size: 24px;
    margin-top: 0px;
}

header .logo_data div span {
    font-size: 40px;
} */


.press #content1, .press #content2, .press #register {
    padding-top: 110px;
    margin-top: -110px;
}



.bnr100 {
    max-width: 760px;
    margin: 0 auto 50px;


    img {
        max-width: 90%;
        margin: 0 5%;
    }
    .note {
        text-align: center;
        font-size: 20px;
        font-weight: 500;
    }
    .btn {
        display: flex;
        justify-content: center;

        a {
            display: flex;
            background-color: red;
            color: white;
            width: 90%;
            max-width: 400px;
            height: 60px;
            font-size: 20px;
            margin-top: -5px;
            margin-bottom: 70px;
            justify-content: center;
            align-items: center;
            border: 2px solid red;
            transition: .3s;
            font-weight: bold;

            &: hover {
                background-color: white;
                color: red;
            }
        }
    }

}


.bnr100.bnr2 {

    margin-top: 50px;

    img {
        border: 1px solid #eee;
        max-width: 100%;
        margin: 0;
        box-shadow: 0 2px 7px #ddd;
    }

    ;
    transition: 0.5s;
    max-width: 1000px;

    &:hover {
        opacity: 0.8;
    }
}




#sec12 {
    .body {
        >div:last-child {
            display: flex;
            max-width: 100%;
            gap: 10px;
            margin-top: 30px;
            margin-bottom: 50px;

            img {
                max-width: 100%;
                display: flex;

            }
        }
    }
}

#sec12 .btn a {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    height: 60px;
    align-items: center;
    background-color: #0071bc;
    border: 1px solid #0071bc;
    color: white;
    box-shadow: 0 4px 10px #bbb;
    transition: 0.3s;
}



.next_Announcement {
    .content {
        text-align: center;

        .catch {
            font-size: 31px;
            color: #bc0000;
            font-weight: bold;
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .catch2 {
            font-size: 40px;
            /* color: #bc0000; */
            font-weight: bold;
            line-height: 1.3;
        }

        .img {
            margin: 20px 0 30px;

            img {
                max-width: 100%;
            }
        }

        .info {
            margin: 30px auto 0;
            font-size: 18px;
            display: flex;
            justify-content: center;

            table {
                th {
                    /* background-color: #02420e; */
                    color: #000;
                    padding: 8px 25px 5px;
                    font-weight: bold;
                    margin-bottom: 5px;
                    border-bottom: 1px solid #02420e;
                    font-size: 16px;
                }

                td {
                    padding: 6px 25px 3px;
                    font-weight: bold;
                    border-bottom: 1px solid #c3c5c4;
                }
            }
        }

        .info2 {
            font-size: 18px;
        }

        .contact {
            text-align: center;
            margin: 50px auto;

            a {
                width: 80%;
                max-width: 500px;
                margin: 0 auto;
                display: flex;
                justify-content: center;
                height: 60px;
                align-items: center;
                background-color: #0071bc;
                border: 1px solid #0071bc;
                color: white;
                box-shadow: 0 4px 10px #bbb;
                transition: 0.3s;

                margin-top: 11px;
            }
            a:hover {
                background-color: white;
                color: #0071bc;
            }
        }
    }





}



.header_menu_body {
    nav {
        a {
            div {
                display: block;
            }
        }
    }
}

.fixed_header .header_menu_body nav a.fd, .fixed_header .header_menu_body nav span.fd {
    flex-direction: column;
    line-height: 1.6;
    > div {
        line-height: 1;
        font-size: 11px;
    }
}


#sec15 {
    margin-bottom: 100px;
    .pr_box {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        max-width: 1000px;
        flex-wrap: wrap;
        
        
        
        
        
        
        
        
        
        
        a {
            display: block;
            img {
                max-height: 60px;
                min-height: 70px;
            }
            img.w {
                width: 230px;
                height: auto;
                min-height: auto;
            }
        }
    }
}



.front_page #sec7 .f_wrap p.note {
    text-align: right;
    font-size: 13px;
    margin-top: 10px;
}

.front_page .bnr100 {
    .bnr_map {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        img {
            border-radius: 10px;
            
            border: 1px solid #aaa;
        }
    }
}