* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

h3 {
    scroll-margin-top: 85px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
}

h1.header-logo {
    font-size: 1.2em;
    color: #000;
    font-family: 'Noto Sans JP';
}

@media (max-width: 1200px) {
    h1.header-logo {
        font-size: 1.2em;
    }
}


h2,
h3,
h4,
h5,
h6,
p.sub-copy {
    font-family: serif;
}

h3 {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 0;
    background-color: #5899c3;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    margin: 0;
    box-sizing: border-box;
}

h3 span {
    position: relative;
    display: inline-block;
    padding: 0 1em;
    /* テキスト左右の余白 */
}

h3 span::before,
h3 span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45px;
    height: 2px;
    background-color: #fff;
}

h3 span::before {
    left: -55px;
}

h3 span::after {
    right: -55px;
}

@media (max-width: 639px) {
    h3 {
        font-size: 1.1rem;
        letter-spacing: 0.1;
    }

    h3 span::before,
    h3 span::after {
        width: 30px;
    }

    h3 span::before {
        left: -35px;
    }

    h3 span::after {
        right: -35px;
    }

    h3#about {
        letter-spacing: 0;
    }

    h3#about span {
        padding: 0 0.2em;
    }

    h3#about span::before,
    h3#about span::after {
        width: 25px;
    }

}

/*ヘッダー*/
.header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 94px;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin: 0 auto;
}

.header-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
}

.close-button {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 1.5rem;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-item .menu-link {
    color: #000;
    font-size: 15px;
    font-weight: bold;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.menu-link:hover {
    color: #0073aa;
}

.menu-link.menu-contact {
    color: #fff;
    background: #5899c3;
    padding: 13px 15px;
    border-radius: 7px;
    border: 1px solid #5899c3;
}

.menu-link.menu-contact:hover {
    color: #5899c3;
    background: #fff;
    border: 1px solid #5899c3;
}


.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-lines .line {
    width: 25px;
    height: 3px;
    background-color: #333;
}

@media (max-width: 1200px) {
    .close-button {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        padding: 3rem 2rem 2rem;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-menu.open {
        transform: translateX(0);
        opacity: 1;
    }

    .menu-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hamburger-button {
        display: block;
    }
}

/*メイン*/
section {
    padding: 50px 15px;
}

/*メインビジュアル*/
section.main-visual {
    width: 100%;
    margin: auto;
    padding-top: 94px;
    padding-bottom: 15px;
    position: relative;
}

picture img {
    width: 100%;
}

.main-visual-overlay {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 15px 10px;
    background: #ffffffad;
}

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

h2.main-copy {
    font-size: 30px;
    margin-bottom: 10px;
    word-break: auto-phrase;
}

p.sub-copy {
    font-size: 20px;
}

@media (max-width: 639px) {
    h2.main-copy {
        font-size: 20px;
        word-break: auto-phrase;
    }

    p.sub-copy {
        font-size: 16px;
    }
}

/*青年経営者全国交流会（青全交）とは*/
.bg.about {
    position: relative;
    z-index: 0;
}

.bg.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url('/seizenkou/img/bg_blue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 1000px) {
    .bg.about::before {
        background-position: left center;
    }
}

.bg.about::after {
    content: "ABOUT";
    position: absolute;
    top: -46px;
    left: 0;
    font-size: 7rem;
    font-weight: bold;
    color: rgb(202 202 202 / 15%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: -1;
}

@media (max-width: 768px) {
    .bg.about::after {
        top: -33px;
        font-size: 5rem;
    }
}

.bg.about>* {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    z-index: 1;
}


.about_txt {
    max-width: 800px;
    margin: auto;
    padding: 30px 0;
    text-align: left;
    border: 1px solid #5899c3;
}

.about_txt p {
    padding: 0 20px;
}

.youtube-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 50px auto;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 アスペクト比 */
    height: 0;
    overflow: hidden;
}

.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*開催概要*/
.overview {
    position: relative;
    z-index: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 1rem;
    box-sizing: border-box;
    overflow: hidden;
}

.overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url('/seizenkou/img/bg_cloud.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.overview>* {
    max-width: 1200px;
    margin: 0 auto;
}

.bg_w {
    background: #ffffff7a;
    padding: 30px 20px;
    max-width: 900px;
    border-radius: 10px;
}

@media (max-width: 640px) {
    .overview {
        padding: 1rem 1rem;
    }
    .bg_w {
    padding: 20px 20px;
}
}


section.overview .picture-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

section.overview .picture-wrapper img {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.table {
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: auto;
    border-collapse: separate;
    border-spacing: 0 0.4rem;
}

.table th,
.table td {
    padding: 1em;
    line-height: 1.6;
}

.table th {
    background-color: #5899c3;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 20%;
    max-width: 140px;
    min-width: 4em;
}

/*タイムテーブル*/
.table_txt {
    width: 100%;
    text-align: center;
    color: #0066a8;
    font-weight: bold;
}
h4 {
    width: 100%;
    text-align: center;
    color: #fff;
    background: #5899c3;
    line-height: 3rem;
}

.table td span {
    font-size: 13px;
}

.container_time_table {
    max-width: 800px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.time_table_left,
.time_table_right {
    width: 48%;
}

.time_table {
    width: 100%;
    margin-top: 10px;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.time_table tbody {
    width: 100%;
}

.time_table th {
    width: 25%;
    max-width: 140px;
    min-width: 4em;
    vertical-align: text-top;
    border-right: 2px solid #5899c3;
}

.time_table td {
    padding: 0 8px;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .container_time_table {
        flex-direction: column;
    }

    .time_table_left,
    .time_table_right {
        width: 100%;
    }
}

.overview_txt {
    max-width: 800px;
    margin: 50px auto;
    font-size: 15px;
    line-height: 1.8;
    padding: 20px;
    border: 1px solid #5899c3;
    border-radius: 7px;
    background: #fff;
}

.btn-contact {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 30px auto;
    padding: 10px 20px;
    color: #5899c3;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #5899c3;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-contact:hover {
    background-color: #5899c3;
    color: #fff;
}

/*開催意義*/
.vision {
    width: 100vw;
    background-color: #f4fbff;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    padding: 3rem 1rem;
}

.vision-list {
    width: 100%;
    max-width: 800px;
    margin: auto;
    font-size: 1rem;
    padding: 15px;
}

.vision-list li {
    margin: 20px 0;
}

/*ご挨拶*/
.massage {
    position: relative;
    z-index: 0;
}

.massage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url('/seizenkou/img/bg_blue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.5;
}

.massage_wrapper {
    width: 95%;
    max-width: 850px;
    display: flex;
    gap: 10px;
    margin: 50px auto;
}

.massage_wrapper .picture-wrapper {
    width: 50%;
}

.massage_wrapper .picture-wrapper img {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.massage_right {
    width: 50%;
}

.massage_right .tag {
    position: relative;
    background-color: #5897c3;
    color: #fff;
    margin-bottom: 10px;
    padding: 0.8rem 3rem 0.8rem 1rem;
    font-size: 1.2em;
    font-weight: bold;
    white-space: nowrap;
    width: fit-content;
}

.massage_right .tag::after {
    position: absolute;
    content: '';
    right: -3px;
    top: -5px;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 40px transparent;
    border-bottom: solid 60px white;
    z-index: 0;
}

.massage_right .massage_txt {
    padding: 10px 1rem;
    font-size: 15px;
}

@media (max-width: 999px) {
    section.massage {
        padding: 0 15px;
    }

    .massage_wrapper {
        flex-direction: column;
    }

    .massage_wrapper .picture-wrapper {
        width: 100%;
    }

    .massage_right {
        width: 100%;
        margin-top: -20px;
    }

    .massage_right .tag {
        margin-bottom: 7px;
    }

    .massage_right .tag::after {
        display: none;
    }

    .massage_right .tag {
        color: #fff;
        margin-bottom: 7px;
        padding: 10px;
        font-size: 15px;
    }

    .massage_right .tag span {
        font-size: 13px;
    }

    .massage_right .massage_txt {
        padding: 15px 0;
        font-size: 15px;
    }
}

/*開催地スローガン*/
.slogan {
    position: relative;
    z-index: 0;
    padding: 3rem 1rem;
    overflow: hidden;
}

.slogan::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url('/seizenkou/img/slogan_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    /* 背景を薄くする */
    z-index: -1;
}

.slogan .picture-wrapper {
    width: 90%;
    margin: auto;
}

.slogan_txt {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    line-height: 2rem;
}

.slogan_txt .strong {
    font-size: 1.2em;
    font-weight: bold;
    font-family: 'Noto Serif JP';
    color: #0f388a;
    line-height: 2.5;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff9e;
    word-break: auto-phrase;
}

/*記念講演*/
.lecture {
    position: relative;
    z-index: 0;
}

.lecture::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url('/seizenkou/img/bg_blue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 1000px) {
    .lecturet::before {
        background-position: left center;
    }
}


.lecture .picture-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

.lecture .picture-wrapper img {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}


h5.lecture_contents_title, h5.special_contents_title {
    font-family: 'Noto Serif JP';
    font-size: 1.4em;
    text-align: center;
    line-height: 1.6;
    word-break: auto-phrase;
}

h5.lecture_contents_title span, h5.special_contents_title span {
    display: block;
    text-align: center;
    font-size: 1rem;
    word-break: auto-phrase;
}

.lecture p.lecture_txt, .special p.special_txt {
    width: calc(96% + 15px);
    max-width: 800px;
    margin: 30px auto;
    line-height: 1.6;
    background: #f4faff;
    border: 1px solid #5897c3;
    padding: 15px 15px;
}

.lecture .table td a {
    color: #5897c3;
}


/*特別報告*/
.special .reporter {
    display: flex;
    gap: 10px;
    width: calc(96% + 15px);
    max-width: 800px;
    margin: auto;
    justify-content: center;
}
.special .reporter .reporter_content {
    text-align: center;
}
.special .reporter .reporter_content h6 {
color: #fff;
background: #5897c3;
margin-bottom: 7px;
padding: 5px 10px;
font-family: 'Noto Sans JP', sans-serif;
font-size: 15px;
font-weight: bold;
}
.special .reporter .reporter_content span {
    font-size: 13px;
    font-weight: bold;
    padding: 0 5px;
}
.special .reporter .reporter_content p {
    font-size: 17px;
    font-weight: bold;
}
.special .reporter .reporter_content .reporter_content_txt {
    font-size: 12px;
    font-weight: 100;
    text-align: left;
    margin-top: 7px;
}

/*分科会*/
.breakout_session {
    position: relative;
    z-index: 0;
}

.breakout_session::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url('/seizenkou/img/bg_blue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.5;
}


.breakout_session_tab {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    max-width: 1200px;
    margin: auto;
}

.breakout_session_tab>label {
    flex: 1 1;
    order: -1;
    opacity: 0.5;
    padding: 0.6em 2px;
    background-color: #5897c3;
    color: #fff;
    font-size: 0.9em;
    text-align: center;
    cursor: pointer;
    border: 2px solid #5897c3;
}

.breakout_session_tab>label:hover {
    background-color: #5897c3;
    color: #fff;
}

.breakout_session_tab span.tab_txt_top {
    display: block;
    font-size: 11px;
}

.breakout_session_tab span.tab_txt_under {
    display: block;
    font-size: 13px;
    border-top: 1px solid #fff;
    margin-top: 4px;
}

.breakout_session_tab input {
    display: none;
}

.breakout_session_tab>.breakout_session_contents {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
    border: 2px solid #5899c3;
}

.breakout_session_tab label:has(:checked) {
    opacity: 1;
    background-color: #5897c3;
    color: #fff;
    border: 2px solid #5897c3;
}

.breakout_session_tab label:has(:checked)+.breakout_session_contents {
    display: block;
}

.breakout_session_contents h4 {
    position: relative;
    width: fit-content;
    margin: 0 auto 20px;
    padding: 10px 80px;
    background: #5897c3;
    font-family: 'Noto Sans JP';
    font-size: 18px;
    color: #fff;
    line-height: 1.3;
    z-index: 1;
}

.breakout_session_contents h4::before {
    position: absolute;
    content: '';
    left: -2px;
    top: -2px;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 40px white;
    border-bottom: solid 55px transparent;
    z-index: 0;
}

.breakout_session_contents h4::after {
    position: absolute;
    content: '';
    right: -3px;
    top: -7px;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 40px transparent;
    border-bottom: solid 55px white;
    z-index: 0;
}

.breakout_session_contents p.number {
    width: fit-content;
    margin: 20px auto;
    color: #5898c3;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 2px solid;
}

h5.breakout_session_contents_title {
    font-family: 'Noto Serif JP';
    font-size: 1.4em;
    text-align: center;
    line-height: 1.6;
    word-break: auto-phrase;
}

h5.breakout_session_contents_title span {
    display: block;
    text-align: center;
    font-size: 1rem;
    word-break: auto-phrase;
}

.breakout_session_contents p.session_txt {
    width: calc(96% + 15px);
    margin: 30px auto;
    line-height: 1.6;
    background: #f4faff;
    border: 1px solid #5897c3;
    padding: 15px 15px;
}

.breakout_session_contents_member {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px auto;
}

.breakout_session_contents_member_card {
    width: 48%;
}

.breakout_session_contents_member .img_wrapper {
    position: relative;
    overflow: hidden;
}

.breakout_session_contents_member .img_wrapper h6 {
    font-family: 'Noto Sans JP';
    font-weight: bold;
    font-size: 15px;
    color: #5899c3;
    padding: 5px;
    background: #dde9f2;
    width: 100%;
    text-align: center;
    word-break: auto-phrase;
}

.breakout_session_contents_member .img_wrapper h6 span {
    font-size: 12px;
    border: none;
}


.breakout_session_contents_member .img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.breakout_session_contents_member .img_caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgb(88 153 195 / 60%);
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-weight: bold;
    font-size: 1rem;
}

.breakout_session_contents_member .img_caption span {
    font-size: 12px;
    border: none;
}

.clickable_img {
    cursor: pointer;
    transition: 0.3s;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal_content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 10%;
    border-radius: 8px;
}

.modal_close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 700px) {

    .breakout_session_contents h4::before,
    .breakout_session_contents h4::after {
        display: none;
    }

    .breakout_session_contents h4 {
        width: 100%;
        padding: 10px 10px;
    }

    .breakout_session_contents_member_card {
        width: 100%;
    }

    .modal_content {
        margin-top: 50%;
    }
}

.session_table {
    width: 100%;
    margin-top: 10px;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.session_table tbody {
    width: 100%;
}

.session_table th {
    width: 25%;
    max-width: 140px;
    min-width: 4em;
    color: #074575;
    vertical-align: text-top;
    border-right: 2px solid #5899c3;
}

.session_table td {
    padding: 0 8px;
    line-height: 1.8;
}

.session_table td span {
    font-size: 12px;
}

.session_table td a {
    color: #5898c3;
}

@media (max-width: 1199px) {
    .breakout_session_tab span {
        border-top: none;
    }
}

@media (min-width: 561px) and (max-width: 1199px) {
    .breakout_session_tab {
        gap: 3px 3px;
    }

    .breakout_session_tab>label {
        flex: auto;
        width: calc(10% - 3px);
    }
}

@media (max-width: 560px) {
    .breakout_session_tab {
        gap: 2px 2px;
    }

    .breakout_session_tab>label {
        flex: auto;
        width: calc(17% - 2px);
    }
}

/* 第19分科会 */
.info_19 {
    display: flex;
    gap: 10px;
    width: 100%;
}

.info_19 img {
    display: block;
    max-width: 240px;
}

.info_19 .info_txt {
    display: grid;
    justify-content: center;
    width: 100%;
    background-color: #5899c3;
    color: #fff;
    margin: 20px 0;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-family: sans-serif;
}
.info_19 .info_txt p.deadline {
    width: 100%;
    font-size: 13px;
    background: #fff;
    color: #bc0000;
    font-weight: bold;
    margin-top: 5px;
    padding: 5px 10px;
    border-radius: 5px;
}

.info_row {
    display: flex;
    line-height: 2;
}

.label {
    width: 80px;
    font-family: monospace;
    letter-spacing: 0.3em;
    display: inline-block;
    text-align:justify;
    text-align-last:justify;
}

.slash {
    width: 20px;
    text-align: center;
}

.value {
    white-space: nowrap;
}
@media (max-width: 999px) {
    .info_19 {
        flex-direction: column;
    }
    .info_19 img {
        margin: auto;
    }
    .info_19 .info_txt {
        margin: 0;
    }

}


/*アクセス*/
p.access {
    position: relative;
    display: block;
    width: fit-content;
    margin: 30px auto;
    padding: 0.2em 1em;
    text-align: center;
    color: black;
    background: transparent;
    word-break: auto-phrase;
    z-index: 0;
}

p.access::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: #fff1767d;
    z-index: -1;
    pointer-events: none;
    border-radius: 2px;
    box-sizing: border-box;
}

@media (max-width: 550px) {
    p.access {
        background: #fff1764a;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
        padding: 0.2em 1em;
    }

    p.access::before {
        display: none;
    }
}

p.access a {
    color: #5897c3;
}

p.access a:hover {
    color: #ccc;
}

.access {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0;
}

.access_group {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .access_group {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .access_group {
        flex: 1 1 100%;
    }
}

.access_group h5 {
    font-size: 16px;
    font-family: 'Noto Sans JP';
    background: #5899c3;
    color: #fff;
    padding: 10px;
}

.access_group p {
    font-size: 14px;
    margin-top: -5px;
    padding: 6px 10px;
    color: #00619f;
    background: #b6d9f0;
}

/*フッター*/
footer {
    font-size: 15px;
    width: 100%;
    padding: 40px 10px;
    background: #5898C3;
    color: #fff;
    text-align: center;
}

footer .logo_footer {
    width: 300px;
    margin-bottom: 15px;
}

footer .address {
    line-height: 1.8;
}

footer .footer_button {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 15px 0;
}

footer .footer_button button {
    font-size: 17px;
    width: 45%;
    max-width: 200px;
    padding: 10px 15px;
    background: #fff;
    color: #5898C3;
    border: 1px solid #5898C3;
    border-radius: 7px;
    cursor: pointer;
}

footer .footer_button button:hover {
    background: #5898C3;
    color: #fff;
    border: 1px solid #fff;
    transition: .3s;
}

footer p {
    font-weight: bold;
    word-break: auto-phrase;
}

#footer_sns {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

#footer_sns #logo_sns {
    width: 35px;
}