/* -------------------------------------------------------------------

	ヘッダー

------------------------------------------------------------------- */

#header {
    position: relative;
}

.header_inner {
    position: relative;
    padding: 15px;
    max-width: 1200px;
    padding: 15px 30px;
    margin-left: auto;
    margin-right: auto;
}

/* === ロゴ、ユーティリティ === */
#logo-utility {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 13px 0;
    background-color: #fff;
}

.nav_list {
    text-align: right;
}

.nav_list li {
    display: inline-block;
    text-align: right;
    padding-left: 20px;
}

.nav_list li a {
    color: #fff;
    font-weight: 600;
}



/* ロゴ */
#header-logo {
    padding-left: 10px;
}

/* ロゴ */
#header-title {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid #ccc;
}

#header-title a {
    padding: 6px 0;
    color: #d92f15;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
}

#header-global-nav {
    max-width: 1200px;
    margin: 0 auto 10px;
}


#header-global-nav ul {
    display: flex;
    justify-content: space-evenly;
    height: auto;
}

#header-global-nav ul li {
    margin: 0px;
    padding: 0;
    list-style: none;
    width: 100%;
    margin: auto;
}

#header-global-nav ul li a {
    display: inline-block;
    width: 100%;
    height: 64px;
    line-height: 1;
    box-sizing: border-box;
    position: relative;
}

#header-global-nav ul li a span {
    line-height: 3.4;
}

#header-global-nav ul li a span.sub-menu-top {
    line-height: 1.7;
}

#header-global-nav ul li a:link {
    color: #333333;
    text-decoration: none;
}

#header-global-nav ul li a:active {
    color: #333333;
    text-decoration: none;
}

#header-global-nav ul li a:visited {
    color: #333333;
    text-decoration: none;
}

#header-global-nav ul li a:hover {
    color: #333333;
}

#header-global-nav ul li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 60%;
    height: 2px;
    left: 20%;
    background: #C61C1F;
    bottom: -1px;
    /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s;
    /*変形の時間*/
}

#header-global-nav ul li a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
}

#header-global-nav ul li #now_page::after {
    transform: scale(1, 1);
}

/* ドロップダウンメニュー */

#header-global-nav>ul>li .dropdown {
    display: none;
    position: absolute;
    z-index: 100;
}


#header-global-nav>ul>li .dropdown .dropdown-inner {
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    min-width: 470px;
}

#header-global-nav>ul>li .dropdown .dropdown-inner ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    list-style: none;
}

#header-global-nav>ul>li .dropdown .dropdown-inner li {
    font-size: 1.6rem;
}

#header-global-nav>ul>li .dropdown .dropdown-inner li a {
    display: block;
    position: relative;
    padding: 20px 18px;
    background-color: #d9d9d9;
    color: #000;
    line-height: 1.2rem;
    height: 60px;
    text-decoration: none;
}

#header-global-nav>ul>li .dropdown .dropdown-inner li a::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 1.2rem;
    margin: auto 0;
    background-color: #fff;
    content: "";
}

#header-global-nav>ul>li .dropdown .dropdown-inner li:last-child a::before {
    content: none;
}

#header-global-nav>ul>li .dropdown .dropdown-inner li a:hover {
    color: #ff8400;
}

#header-global-nav>ul>li .dropdown .dropdown-inner li a::after {
    display: none;
}

/* ベーススタイル（共通） */
.hamburger-menu_input,
.hamburger-menu_bg,
.hamburger-menu_button {
    display: none;
}

input[type="radio"] {
    margin: 8px 10px 0 0;
}


/* メニュー本体（PCデフォルト表示） */
.hamburger-menu_list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hamburger-menu_list li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 8px 12px;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    #header {
        display: flex;
        flex-direction: row;
        position: relative;
        align-items: flex-start;
        justify-content: flex-end;
        margin: 0 auto 10px;
        width: 100%;
    }




    .header_inner {
        padding: 0px 5px;
        margin-left: auto;
        margin-right: auto;
    }

    #header-global-nav>ul>li .dropdown .dropdown-inner {
        box-shadow: 0 0 0 0;
    }



    #header-title a {
        padding: 5px 0;
        color: #d92f15;
        font-size: 16px;
    }

    .nav {
        position: fixed;
        right: -320px;
        /* 右から出てくる */
        top: 0;
        width: 300px;
        /* スマホに収まるサイズ */
        height: 100vh;
        padding-top: 70px;
        background-color: #fff;
        transition: all .6s;
        z-index: 200;
        overflow-y: auto;
        /* メニューが多くなったらスクロールできるように */
    }

    .hamburger {
        position: relative;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 199;
        /* ← こっちだけ残す */
        align-self: flex-end;
        margin-right: 16px;
        margin-top: 8px;
        margin-bottom: 12px;
    }

    #js-hamburger_close {
        z-index: 300;
        position: absolute;
        right: 0;
        top: 0;
    }

    #header-global-nav ul {
        display: flex;
        flex-direction: column;
        /* 各メニューの間に余白 */
        padding: 0;
        margin: 0;
        list-style: none;
    }

    #header-global-nav ul li {
        text-align: center;
        width: 100%;
    }


    #header-global-nav ul li a:link {
        display: block;
        padding: 8px 0;
        font-size: 14px;
        white-space: nowrap;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: #333;
    }

    #header-global-nav ul li a::after {
        content: none !important;
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        position: static !important;
        background: none !important;
        transform: none !important;
        transition: none !important;
    }


    .hamburger_border_bottom {
        position: relative;
        ;
    }

    .hamburger_border {
        position: absolute;
        left: 11px;
        width: 18px;
        height: 2px;
        background-color: #333;
        transition: all .6s;
    }

    .hamburger_border_top {
        top: 14px;
    }

    .hamburger_border_center {
        top: 20px;
    }

    .hamburger_border_bottom {
        top: 26px;
    }

    .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background-color: #333;
        opacity: 0;
        visibility: hidden;
        transition: all .6s;
        cursor: pointer;
    }

    /* 表示された時用のCSS */
    .nav-open .nav {
        right: 0;
    }

    .nav-open .black_bg {
        opacity: .8;
        visibility: visible;
    }

    .nav-open .hamburger_border_top {
        transform: rotate(45deg);
        top: 20px;
    }

    .nav-open .hamburger_border_center {
        width: 0;
        left: 50%;
    }

    .nav-open .hamburger_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
    }

    #header-global-nav>ul>li .dropdown {
        display: block !important;
        position: relative;
    }

    #header-global-nav>ul>li .dropdown .dropdown-inner li a {
        width: 300px;
        background-color: #fff;
    }

    #header-global-nav>ul>li .dropdown .dropdown-inner {
        margin-top: 0;
    }
}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {

    #header {
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: flex-start;
        margin: 0 auto 10px;
        width: 100%;
    }


    .header_inner {
        padding: 0px 5px;
        margin-left: auto;
        margin-right: auto;
    }

    #header-global-nav>ul>li .dropdown .dropdown-inner {
        box-shadow: 0 0 0 0;
    }

    /* ロゴ */
    #header-logo {
        padding-left: 0;
    }

    /* ロゴ */
    #header-title {
        margin-left: 0px;
        padding-left: 10px;
        border-left: 0px solid #ccc;
        text-align: left;
    }

    #header-title a {
        padding: 5px 0;
        color: #d92f15;
        font-size: 16px;
    }

    #logo-utility {
        display: block;
        align-items: center;
        position: relative;
        padding: 0;
        margin: 20px auto 0px;
    }

    #header-logo {
        margin-bottom: 20px;
    }

    .nav {
        position: fixed;
        right: -320px;
        /* 右から出てくる */
        top: 0;
        width: 300px;
        /* スマホに収まるサイズ */
        height: 100vh;
        padding-top: 70px;
        background-color: #fff;
        transition: all .6s;
        z-index: 200;
        overflow-y: auto;
        /* メニューが多くなったらスクロールできるように */
    }

    .hamburger {
        position: relative;
        top: -50px;
        width: 40px;
        height: 0px;
        cursor: pointer;
        z-index: 199;
        /* ← こっちだけ残す */
        align-self: flex-end;
        margin-right: 16px;
        margin-top: 8px;
    }

    #header-global-nav ul {
        display: flex;
        flex-direction: column;
        /* 各メニューの間に余白 */
        padding: 0;
        margin: 0;
        list-style: none;
    }

    #header-global-nav ul li {
        text-align: center;
        padding: 0px;
        width: 100%;
    }

    #header-global-nav ul li a:link {
        display: block;
        padding: 8px 0;
        font-size: 14px;
        white-space: nowrap;
        border-bottom: 1px solid #000;
        text-decoration: none;
        color: #333;
    }

    #header-global-nav ul li a::after {
        content: none !important;
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        position: static !important;
        background: none !important;
        transform: none !important;
        transition: none !important;
    }

    #header-global-nav ul li a:visited {
        text-decoration: none;
    }


    .hamburger_border_bottom {
        position: relative;
        ;
    }

    .hamburger_border {
        position: absolute;
        left: 11px;
        width: 18px;
        height: 2px;
        background-color: #333;
        transition: all .6s;
    }

    .hamburger_border_top {
        top: 14px;
    }

    .hamburger_border_center {
        top: 20px;
    }

    .hamburger_border_bottom {
        top: 26px;
    }

    #js-hamburger_close {
        z-index: 300;
        position: absolute;
        right: 0;
        top: 0;
    }

    .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background-color: #333;
        opacity: 0;
        visibility: hidden;
        transition: all .6s;
        cursor: pointer;
    }

    /* 表示された時用のCSS */
    .nav-open .nav {
        right: 0;
    }

    .nav-open .black_bg {
        opacity: .8;
        visibility: visible;
    }

    .nav-open .hamburger_border_top {
        transform: rotate(45deg);
        top: 20px;
    }

    .nav-open .hamburger_border_center {
        width: 0;
        left: 50%;
    }

    .nav-open .hamburger_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
    }

    #header-global-nav>ul>li .dropdown {
        display: block;
        position: relative;
    }

    #header-global-nav>ul>li .dropdown .dropdown-inner li a {
        width: 300px;
        background-color: #fff;
    }

    #header-global-nav>ul>li .dropdown .dropdown-inner {
        margin-top: 0;
    }

}

/* -------------------------------------------------------------------

	パンくずリスト

------------------------------------------------------------------- */
.breadcrumbs-list {
    padding: 15px 0;
    color: #333;
    background-color: #f8f9c1;
    border: 1px solid #f8f9c1;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
}


.breadcrumbs-list a {
    color: #333;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    .breadcrumbs-list {
        padding: 15px;
    }
}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {
    .breadcrumbs-list {
        padding: 10px;
        font-size: 12px;
    }
}

/* -------------------------------------------------------------------

	共通用メインコンテンツ

------------------------------------------------------------------- */
.main-content {
    position: relative;
    background-color: #f7f7f7;
}

/* -------------------------------------------------------------------

	トップページ

------------------------------------------------------------------- */

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    gap: 8px;
    /* ドットとボタンの間隔 */
    position: relative;
}

#toggleBtn {
    padding: 6px;
    background-color: #d28826;
    border-radius: 60px;
    display: inline-flex;
    /* アイコンやテキストをflexで配置 */
    align-items: center;
    /* 縦中央揃え */
    justify-content: center;
    /* 横中央揃え */
    line-height: 1;
    /* フォントの余計な縦余白を削除 */
    color: #fff;
}

.slick-dots {
    position: static !important;
    /* 下固定を解除 */
    display: flex !important;
    /* 横並びに */
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* ドット同士の間隔 */
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    bottom: auto !important;
}

/* li に余白がある場合は消す */
.slick-dots li {
    margin: 0 !important;
    width: auto;
    height: auto;
}

/* ドットボタンのリセット */
.slick-dots li button {
    padding: 0;
    border-radius: 50%;
    border: none;
    /* テキストを隠す */
}

.slick-dots {
    margin: 0;
}

#top-image {
    width: 100%;
}

#top_h1 {
    font-size: 48px;
    padding: 10px 20px;
}

#top_h1::before {
    content: url("../media/images/title_lineA.png");
    display: block;
    position: absolute;
    left: -20px;
    top: -30px;
}

#top_h1::after {
    content: url("../media/images/title_lineB.png");
    display: block;
    position: absolute;
    right: -20px;
    top: -30px;
}

.raizyo_moushikomi {
    background-color: #fff;
    display: flex;
    margin: 50px auto;
    margin-bottom: 60px;
    border-radius: 20px;
    justify-content: space-evenly;
}

.raizyo_moushikomi p {
    font-size: 20px;
    line-height: 1.6;
}

.raizyo_moushikomi img {
    width: 400px;
}

.raizyo_moushikomi p {
    font-size: 20px;
    line-height: 1.6;
}

.raizyo_moushikomi_link {
    margin-bottom: 30px;
    transition: all 0.5s 0s ease;
}

.raizyo_moushikomi-link {
    bottom: 50px;
    right: 100px;
    width: 300px;
}

.raizyo_moushikomi-link:hover {
    bottom: 25px;
    right: 75px;
    /* width: 450px; */
    opacity: 0.7;
}

.raizyo_moushikomi_button {
    padding: 20px 50px;
    font-size: 20px;
    font-weight: bold;
}


/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    #top_h1 {
        width: 85%;
        font-size: 48px;
        padding: 0;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .raizyo_moushikomi {
        display: block;
        width: 90%;
    }

}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {
    #top_h1 {
        width: 80%;
        font-size: 26px;
        padding-top: 0;
        line-height: 1.5;
    }

    .top-page #moushikomi {
        width: 90%;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin-bottom: 40px;
    }



    #moushikomi {
        margin-top: 10px;
        width: 80%;
    }

    .moushikomi_button {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .raizyo_moushikomi {
        display: block;
        width: 90%;
        padding: 40px 0;
    }

    .raizyo_moushikomi_button {
        margin: 0 0 10px 0;
    }


}


.top-link {
    bottom: 10px;
    right: 50px;
    width: 300px;
    transition: all 0.5s 0s ease;
}

.top-link:hover {
    bottom: 25px;
    right: 75px;
    width: 350px;
    /* opacity: 0.9; */
}

#picture_01 {
    left: 50px;
    bottom: -200px;
    width: 40%;
}

#picture_02 {
    right: 0px;
    bottom: -300px;
    width: 40%;
}

#picture_03 {
    left: 0px;
    bottom: -350px;
    width: 40%;
}

#picture_04 {
    right: 0px;
    bottom: -290px;
    width: 40%;
}


#osusume-seminar {
    height: 800px;
}


#osusume-seminar li a {
    color: #000;
    text-decoration: none;
}

#osusume-seminar li a :hover {
    text-decoration: none;
}

#osusume-seminar .seminar-title:hover {
    text-decoration: underline;
}



#tenzi-syokai {
    height: 650px;
}

.after-login-top {
    height: 1000px !important;
}

.after-login-top::before {
    height: 1100px;
    clip-path: polygon(0 100px, 100% 0, 100% 1000px, 0 100%);
}

#raizyo-goannai {
    height: 1000px;
}

#inquiry-content {
    margin-bottom: 200px;
}

.otsuka_area {
    width: 35%;
    float: left;
}

.otsuka_area:nth-child(1) {
    width: 60%;
    margin-right: 5%;
}


.raizyo_button {
    border-radius: 40px;
    background-color: #d63540;
    box-shadow: 2px 2px 4px gray;
    transition: all 0.5s 0s ease;
}

.raizyo_button:hover {
    opacity: 0.4;
}

.raizyo_button a:link {
    color: #fff
}

.raizyo_button a:active {
    color: #fff;
    text-decoration: none;
}

.raizyo_button a:visited {
    color: #fff;
}

.raizyo_button a:hover {
    color: #fff;
    text-decoration: none;
}

.inquiry-content-main {
    background-color: #e7e7e7;
    width: 80%;
    box-sizing: border-box;
    border-radius: 40px;
    border: 1px #ebebeb solid;
    transition: all 0.5s 0s ease;
    box-shadow: 2px 2px 4px gray;
    margin-bottom: 10px;
}

.inquiry-content-main:hover {
    opacity: 0.4;
}

#inquiry-content a:link {
    color: #333
}

#inquiry-content a:active {
    color: #333;
    text-decoration: none;
}

#inquiry-content a:visited {
    color: #333;
}

#inquiry-content a:hover {
    color: #333;
    text-decoration: none;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    .top-link {
        display: none;
    }

    .top-link-sp {
        width: 80%;
        display: inline-block;
        margin: auto;
        position: relative;
        margin-top: 20px;
    }

    #osusume-seminar {
        height: 900px;
    }

    #tenzi-syokai {
        height: 600px;
    }

    #picture_02 {
        bottom: -300px;
    }

    #picture_03 {
        left: 0;
        bottom: -180px;
    }
}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {
    .inquiry-content-img {
        width: 100px;
    }

    #main-explanation p {
        width: 100%;
        max-width: 100%;
    }

    #main-explanation img {
        width: 100%;
        max-width: 100%;
    }

    #main-exhibition div {
        width: 100%;
        max-width: 100%;
    }

    #main-exhibition #solution_img {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
        float: none;
    }

    #main-inquiry>div {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    #picture_01 {
        left: 20%;
        bottom: -200px;
        width: 60%;
    }

    #picture_02 {
        left: 20%;
        bottom: -220px;
        width: 60%;
    }

    #picture_03 {
        left: 25%;
        bottom: -100px;
        width: 50%;
    }

    #picture_04 {
        right: 0px;
        bottom: -100px;
        width: 50%;
    }

    .mobile-h2 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 10px;
    }

    #osusume-seminar {
        height: 840px;
    }

    #tenzi-syokai {
        height: 700px;
    }

    #raizyo-goannai {
        height: 1000px;
    }

    .otsuka_area {
        width: 90%;
        margin: 0 auto 30px;
        float: none;
    }

    .otsuka_area:nth-child(1) {
        width: 90%;
    }

    #inquiry-content {
        margin-bottom: 50px;
    }

    .top-link {
        display: none;
    }

    .top-link-sp {
        width: 80%;
        display: inline-block;
    }
}

#solution_tenzi,
#solution_tenzi:link,
#solution_tenzi:active,
#solution_tenzi:visited,
#solution_tenzi:hover,
#solution_tenzi:visited {
    color: #000
}

#tenzi-syokai #solution_tenzi {
    text-decoration: underline;
}

.diagonal-back-ground-gray::before {
    content: "";
    position: absolute;
    background-color: #f7f7f7;
    display: block;
    width: 100%;
    height: 750px;
    background: #f7f7f7;
    clip-path: polygon(0 100px, 100% 0, 100% 650px, 0 100%);
    z-index: -1;
}

.diagonal-background-yellow::before {
    content: "";
    position: absolute;
    background-color: #f8f9c1;
    display: block;
    width: 100%;
    height: 1000px;
    background: #f8f9c1;
    clip-path: polygon(0 100px, 100% 0, 100% 900px, 0 100%);
    z-index: -1;
}

.diagonal-back-ground-pink::before {
    content: "";
    position: absolute;
    background-color: #fadee3;
    display: block;
    width: 100%;
    height: 900px;
    background: #fadee3;
    clip-path: polygon(0 100px, 100% 0, 100% 800px, 0 100%);
    z-index: -1;
}

.top-page .footer-sitemap {
    padding-top: 50px;
}

/* スライダー */
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../media/files/slick.eot');
    src: url('../media/files/slick.eot?#iefix') format('embedded-opentype'), url('../media/files/slick.woff') format('woff'), url('../media/files/slick.ttf') format('truetype'), url('../media/files/slick.svg#slick') format('svg');
}

.slide-items li {
    margin-right: 10px;
    margin-left: 10px;
    height: 100%;
}

.slide-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: auto !important;
    display: flex;
}

.slick-list {
    width: 98%;
    margin: 0 auto;
}

.slick-prev:before,
.slick-next:before {
    color: #b3b3b3;
}


.slick-dots li button:before {
    font-size: 20px !important;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px;
}

.slick-prev,
.slick-next {
    width: 30px;
    height: 30px;
}

.slick-dots li button:before {
    color: #f9a938;
}

.slick-dots li.slick-active button:before {
    color: #333;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    .slide-items {
        width: 85%;
        display: inline-block;
    }

    .slide-items img {
        object-fit: cover;
        margin: 0 auto;
        padding-bottom: 0;
    }

    .copy-box {
        float: none;
        max-width: 100%;
    }

    .img-box {
        float: none;
        max-width: 100%;
    }

    .diagonal-back-ground-gray::before {
        height: 730px;
        clip-path: polygon(0 100px, 100% 0, 100% 630px, 0 100%);
    }

    .diagonal-back-ground-pink::before {
        height: 1100px;
        clip-path: polygon(0 100px, 100% 0, 100% 1000px, 0 100%);
    }
}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {
    .slide-items {
        width: 80%;
        display: inline-block;
    }

    .slide-items img {
        object-fit: cover;
        margin: 0 auto;
        padding-bottom: 0;
    }

    .slick-prev {
        left: -30px;
    }

    .slick-next {
        right: -20px;
    }

    .slick-prev,
    .slick-next {
        width: 20px;
        height: 20px;
    }

    .copy-box {
        float: none;
        max-width: 100%;
    }

    .img-box {
        float: none;
        max-width: 100%;
    }

    .diagonal-background-yellow::before {
        height: 940px;
        clip-path: polygon(0 100px, 100% 0, 100% 840px, 0 100%);
    }

    .diagonal-back-ground-gray::before {
        height: 830px;
        clip-path: polygon(0 100px, 100% 0, 100% 730px, 0 100%);
    }

    .diagonal-back-ground-pink::before {
        height: 1050px;
        clip-path: polygon(0 100px, 100% 0, 100% 950px, 0 100%);
    }
}

/* -------------------------------------------------------------------

	来場申し込み

------------------------------------------------------------------- */
.turn-entry {
    width: 100%;
}

.turn-entry p {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
    width: calc(100% / 3);
    text-align: center;
    font-size: 20px;
    vertical-align: middle;
}

.turn-entry .current-perspective {
    background-color: rgb(255, 217, 113);
    color: #000;
    ;
}

.otsuka-info-table {
    width: 100%;
}

.otsuka-info-table tr th,
.otsuka-info-table tr td {
    padding: 10px;
    border: #bebebe 1px solid;
    background-color: #fff;
    line-height: 20px;
    font-size: 16px;
    vertical-align: middle;
}

.otsuka-info-table tr th {
    text-align: left;
    background-color: #eaeaea;
    width: 30%;
}

.seminar-info-table {
    width: 100%;
    border: #bebebe 1px solid;
}

.seminar-info-table tr td {
    padding: 8px 20px;
    border: #bebebe 1px solid;
    background-color: #fff;
    font-size: 16px;
    vertical-align: middle;
}

.seminar-info-table tr th {
    width: 15%;
    border: #bebebe 1px solid;
    text-align: center;
    vertical-align: middle;
}

.questionnaire-table {
    width: 100%;
}

.questionnaire-table tr th,
.questionnaire-table tr td {
    padding: 10px;
    border: #bebebe 1px solid;
    background-color: #fff;
    line-height: 20px;
    font-size: 16px;
    vertical-align: middle;
}

.questionnaire-table tr th {
    text-align: left;
    background-color: #eaeaea;
    width: 30%;
}

.required {
    color: #d92f15;
}

.hissu {
    padding: 2px 10px 3px;
    margin-bottom: 10px;
    color: #fff;
    background: #ff4a39;
    vertical-align: middle;
    width: 35px;
}

.status1 {
    padding: 7px 20px 8px;
    color: #fff;
    background: #2c2c2c;
    border: #2c2c2c 3px solid;
    vertical-align: middle;
}

.status2 {
    padding: 7px 20px 8px;
    color: #fff;
    background: #d63540;
    border: #d63540 3px solid;
    vertical-align: middle;
}

.status3 {
    padding: 7px 20px 8px;
    color: #d63540;
    background: #fff;
    border: #d63540 2px solid;
    vertical-align: middle;
}

.question {
    background-color: transparent;
    display: block;
    line-height: 1.2;
    color: #333;
    text-align: left;
    padding: 0;
    margin-bottom: 5px;
    font-weight: normal;
}

.noIDAdmission-table {
    width: 100%;
}

.noIDAdmission-table tr th,
.noIDAdmission-table tr td {
    padding: 10px;
    border: #bebebe 1px solid;
    background-color: #fff;
    line-height: 20px;
    font-size: 16px;
    vertical-align: middle;
}

.noIDAdmission-table tr th {
    text-align: left;
    background-color: #eaeaea;
    width: 30%;
}


/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    .turn-entry p {
        font-size: 16px;
    }

    .seminar-info-table {
        width: 100%
    }


}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {

    .turn-entry p {
        font-size: 16px;
        width: 100%
    }

    .otsuka-info-table thead {
        display: none;
    }

    .otsuka-info-table tr {
        display: block;

    }

    .otsuka-info-table th {
        display: none;
        margin-bottom: 5px;
    }

    .otsuka-info-table td {
        display: block;
        justify-content: space-between;
        width: 100%
    }

    .otsuka-info-table tr th,
    .otsuka-info-table tr td {
        border: #bebebe 1px solid;
        padding: 10px;
    }

    .otsuka-info-table td::before {
        display: block;
        content: attr(data-label);
        font-weight: bold;
        margin-bottom: 5px;
        line-height: 1.2;
        border-bottom: 0.5px solid #bebebe;
        color: #555;
    }

    .questionnaire-table thead {
        display: none;
    }

    .questionnaire-table tr th,
    .questionnaire-table tr td {
        padding: 10px;
        border: #bebebe 1px solid;
        width: auto;
    }

    .questionnaire-table tr td {
        font-size: 14px;

    }

    .questionnaire-table th {
        display: none;
        margin-bottom: 5px;
        padding: 0;
    }

    .questionnaire-table td {
        display: block;
        justify-content: space-between;
        width: 100%;
        padding: 0;
    }

    .questionnaire-table td::before {
        display: block;
        content: attr(data-label);
        font-weight: bold;
        margin-bottom: 5px;
        line-height: 1.2;
        border-bottom: 0.5px solid #bebebe;
        color: #555;

    }


    .seminar-info-table {
        width: 100%;
    }

    .seminar-info-table tr th {
        display: flexbox
    }

    .noIDAdmission-table thead {
        display: none;
    }

    .noIDAdmission-table tr {
        display: block;

    }

    .noIDAdmission-table th {
        display: none;
        margin-bottom: 5px;
    }

    .noIDAdmission-table td {
        display: block;
        justify-content: space-between;
        width: 100%
    }

    .noIDAdmission-table tr th,
    .noIDAdmission-table tr td {
        border: #bebebe 1px solid;
        padding: 10px;
    }

    .noIDAdmission-table td::before {
        display: block;
        content: attr(data-label);
        font-weight: bold;
        margin-bottom: 5px;
        line-height: 1.2;
        border-bottom: 0.5px solid #bebebe;
        color: #555;
    }


}





/* -------------------------------------------------------------------

セミナー一覧

------------------------------------------------------------------- */
.seminar-content {
    width: 100%;
    margin: 0 auto 50px;
    background-color: #fff;
}

.seminar-date {
    background-color: #f6c220;
    padding: 10px;
    color: #000;
    font-size: 20px;
    text-decoration: none !important;
}

.seminar-sub-title {
    padding-left: 20px;
}

.seminar-content img {
    max-width: 30%;
}

.seminar-content p {
    width: 70%;
}


.precautions-text {
    margin: 0 auto;
}


/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    .seminar-content {
        width: 90%;
    }

    .seminar-date {
        margin: 0;
        font-size: 18px;
        text-align: center;
    }

    .seminar-content .seminar-date p {
        margin: 0;
    }

    .seminar-content img {
        max-width: 100%;
        width: 100%;
        margin-bottom: 10px;
        /* float: left; */
    }

    .seminar-content p {
        font-size: 16px;
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }

    .seminar-sub-title {
        font-size: 18px;
    }

    .m-seminar-button {
        display: block;
        right: auto;
        bottom: auto;
        position: relative;
        margin: 0px auto;
    }

}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {

    .seminar-content {
        width: 90%;
    }

    .seminar-date {
        margin: 0;
    }

    .seminar-content .seminar-date p {
        margin: 0;
    }

    .seminar-content img {
        max-width: 100%;
        width: 100%;
        margin-bottom: 10px;
        /* float: left; */
    }

    .seminar-content p {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }

        .m-seminar-button {
        display: block;
        right: auto;
        bottom: auto;
        position: relative;
        margin: 0px auto;
    }

}

/* -------------------------------------------------------------------

セミナー申し込み

------------------------------------------------------------------- */
.seminar-turn-entry {
    width: 100%;
}

.seminar-turn-entry p {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
    width: 25%;
    text-align: center;
    font-size: 20px;
    vertical-align: middle;
}

.seminar-turn-entry .current-perspective {
    background-color: rgb(255, 217, 113);
    color: #000;
}

.seminar-select-table {
    width: 1200px;
}

.seminar-select-table td {
    padding: 8px 20px;
    border: #ececec 2px solid;
    background-color: #fff;
    text-align: center;
    min-width: 90px;
    vertical-align: middle;

}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    .seminar-turn-entry p {
        font-size: 16px;
        width: 100%;
    }
}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {
    .seminar-turn-entry p {
        font-size: 16px;
        width: 100%;
    }
}


/* -------------------------------------------------------------------

申込内容確認・変更（キャンセル用）

------------------------------------------------------------------- */
.seminar-confirm-table {
    width: 1200px;
    display: table;
    text-align: center;
    overflow-x: scroll;
}

.seminar-confirm-table tr.closed td {
    background-color: #eaeaea;
}

.seminar-confirm-table tr th,
.seminar-confirm-table tr td {
    padding: 10px;
    border: #ececec 2px solid;
    background-color: #fff;
    line-height: 20px;
    font-size: 16px;
    vertical-align: middle;
}

.seminar-confirm-table tr th {
    text-align: left;
    background-color: #eaeaea;
    width: 30%;
}

.seminar-confirm-table .check {
    width: 8%;
}

.seminar-confirm-table .corse {
    width: 10%;
}

.seminar-confirm-table .title {
    width: 47%;

}

.seminar-confirm-table .time {
    width: 15%;
}

.seminar-confirm-table .deadline {
    width: 10%;
}

.seminar-confirm-table .detail {
    width: 10%;
}

.table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    display: block;
}

#agree_label {
    margin-right: 30px;
}


/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {}

/* -------------------------------------------------------------------

申し込み手順の申し込み

------------------------------------------------------------------- */

.process-table {
    width: 100%;
}

.process-table tr th {
    padding: 8px 20px;
    border: #ececec 2px solid;
    background-color: #fff;
    width: 30%;
    font-size: 16px;
    vertical-align: middle;

}

.process-table tr td {
    padding: 8px 20px;
    border: #ececec 2px solid;
    background-color: #fff;
    width: 70%;
    font-size: 16px;
    vertical-align: middle;

}

.img-process {
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px 10px;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    .process-table {
        width: 100%;
    }

    .process-table tr th {
        display: flexbox
    }


}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {


    .process-table tr {
        display: block;
    }

    .process-table tr th,
    .process-table tr td {
        padding: 10px;
        border: #bebebe 1px solid;
        width: auto;
        font-size: 14px;
    }


    .process-table th {
        margin-bottom: 5px;
        width: 100%;
    }

    .process-table td {
        display: block;
        justify-content: space-between;
        padding: 10px;
        /* width: 100%; */
    }


    .process-table td::before {
        display: block;
        content: attr(data-label);
        font-weight: bold;
        margin-bottom: 5px;
        line-height: 1.2;
        /* border-bottom: 0.5px solid #bebebe; */
        color: #555;
    }

}


/* -------------------------------------------------------------------

お問い合わせ

------------------------------------------------------------------- */
.menu {
    max-width: 1200px;
    margin: 0 auto;
}

.menu_list {
    margin-bottom: 20px;
}

.menu_list_last {
    margin-bottom: 0;
}

.menu a {
    text-decoration: underline;
    color: #000;
}

.menu h2 {
    font-size: 20px;
}

.acd-label {
    display: block;
    font-weight: bold;
    margin: 0;
    padding: 20px;
    line-height: 1;
    color: #333;
    background: rgb(255, 217, 113);
    cursor: pointer;
    text-align: left;
}


.menu ul {
    margin: 0;
    padding: 0;
    border: #f1f1f1 solid 1px;
    list-style: none;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.menu li {
    font-size: 18px;
    text-align: left;
    padding: 1rem;
    line-height: 1.6;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    word-wrap: break-word;
    white-space: normal;
}

.acd-label {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    display: block;
}

.acd-check {
    display: none;
}

.acd-label:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #000 2px solid;
    border-right: #000 2px solid;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    right: 2%;
    top: 0;
    bottom: 15%;
    margin: auto;
}



.acd-check:checked+.acd-label:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #000 2px solid;
    border-right: #000 2px solid;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: 2%;
    top: 7%;
    bottom: 0;
    margin: auto;
}

.acd-content {
    display: none;
    border: 1px solid #ccc;
    margin-top: 5px;

}

.acd-check:checked+.acd-label+.acd-content {
    display: block;
    height: auto;
    background-color: #fff;
}



.menu_ttl {
    text-align: left;
    padding: 1rem 0;
}

.menu_ttl p,
h2 {
    padding: 1rem 0;
}

.menu_ttl button {
    width: 100%;
}

#toggle-menu {
    display: block;
    margin-left: auto;
    margin-right: 0;
}



/* -------------------------------------------------------------------

	アクセス

------------------------------------------------------------------- */

.access-title {
    margin: 0 auto;
    background-color: transparent;
    overflow: hidden;
}

.access {
    margin: 0 auto;
    background-color: transparent;
}

.access th,
.access td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
    line-height: 3rem;
}

.access td {
    background-color: #ffffff;
}

.access th {
    background-color: #f2f2f2;
}

.access ul {
    padding-left: 0;
}

.access li {
    list-style: none;
}

.access img {
    text-align: center;
    width: 100%;
    margin-top: 15px;
    background: #f8f9c1;
}

.acd-content a {
    margin: 5px;
}

.acd-content li {
    line-height: 1.2;
    font-size: 16px;
    padding: 20px;
}

.icon-button img {
    width: 15px;
    height: auto;
    margin-right: 8px;
    margin-bottom: 5px;
    margin-top: 5px;
    vertical-align: middle;
    background-color: transparent;
}

.icon-button ::before {
    border-right: none !important;
    border-top: none !important;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    .access {
        width: 95%;
        text-align: center;
    }

    .access table {
        text-align: center;
        border-collapse: collapse;
    }

    .access th,
    .access td {
        border: 1px solid #ccc;
        padding: 12px;
        text-align: left;
        line-height: 20px;
        vertical-align: middle;
    }

    .access th {
        background-color: #f2f2f2;
    }

    .access img {
        text-align: center;
        width: 100%;
        margin-top: 0;
        background: transparent;
    }
}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {


    .access {
        width: 95%;
        text-align: center;
    }

    .access table {
        text-align: center;
        border-collapse: collapse;
    }

    .access th,
    .access td {
        border: 1px solid #ccc;
        padding: 12px;
        text-align: left;
        line-height: 20px;
        vertical-align: middle;
    }


    .access th {
        width: 30%;
    }

    th {
        background-color: #f2f2f2;
    }


    .access img {
        text-align: center;
        width: 100%;
        margin-top: 0;
        background: transparent;
    }


}



/* -------------------------------------------------------------------

	展示のご案内

------------------------------------------------------------------- */
.exhibition {
    max-width: 1200px;
    margin: 0 auto;
}

.exhibition h2 {
    margin-bottom: 1rem;
    font-size: 28px;
}

.ex-box {
    border: 1px solid #eee;
    padding: 30px;
    background: #fff;
    margin: 10px auto 30px;
    box-sizing: border-box;
    width: 100%;
}

.ex-box p {
    font-size: 18px;
    text-align: left;
}

.ex-box h3 {
    margin-bottom: 3rem;
    font-size: 24px;
    background: #f6c220;
    color: #000;
    padding: 10px;
}

.ex-box-download {
    margin: 0 auto;
    padding: 5px 0;
    width: 100%;
}

.exhibition-download {
    display: flex;
    margin: 0 auto;
}

.exhibition-download p {
    margin-top: 0px;
    text-align: left;
    margin: 5px 20px 20px;
}

.exhibition-download-item {
    width: 40%;
    margin: auto;
}

.exhibition-download-item img {
    height: 80%;
    width: 80%;
    margin: 10px;
    vertical-align: middle;
}

/* .exhibition-download-item p{
    font-size: 18px;
    text-align: left;
  } */

.ex-box-item {
    padding: 16px 0;
    border-bottom: 1px dotted #ccc;
    width: 48%;
}

.ex-box-item:nth-child(2n-1) {
    margin-right: 4%;
}

.linklist-course-add-service .ex-box-item:nth-last-child(1),
.ex-box-content .ex-box-item:nth-last-child(1),
.linklist-course-add-service .ex-box-item:nth-last-child(2),
.ex-box-content .ex-box-item:nth-last-child(2) {
    border-bottom: 0px;
}


.ex-box-item p {
    text-align: left;
    font-size: 18px;
    margin-bottom: 10px;
    width: 100%;
}

.exhibition-download a,
.ex-box-item a {
    color: #3366cc;
    text-decoration: none;
}

.exhibition-download a:hover,
.ex-box-item a:hover {
    text-decoration: underline;
}

.linklist-course-add-service,
.ex-box-content {
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.ex-box-pic {
    display: flex;
}

.ex-box-pic img {
    margin-left: auto;
}

.ex-box-pic a {
    margin-top: 30px;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {


    .linklist-course-add-service,
    .ex-box-content {
        display: block;
    }


    .exhibition {
        max-width: 100%;
    }

    .ex-box {
        padding: 5px;
        margin-bottom: 10px;
    }

    .exhibition-download p {
        margin-top: 10px;
        width: 100%;
    }


    .ex-box p {
        width: 100%;
    }

    .ex-box-item {
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
    }

    .ex-box-item p {
        max-width: 100%;
    }

}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {


    .linklist-course-add-service,
    .ex-box-content {
        display: block;
    }


    .exhibition {
        max-width: 100%;
    }

    .ex-box h3 {
        font-size: 20px;
    }

    .ex-box {
        padding: 10px;
        margin-bottom: 10px;
    }

    .ex-box p {
        width: 90%;
        font-size: 16px;
    }

    .exhibition-download {
        flex-direction: column;
    }

    .exhibition-download p {
        margin-top: 0;
        font-size: 18px;
    }

    .exhibition-download-item img {
        padding: 10px;
    }


    .ex-box-item {
        width: 100%;
    }

    .ex-box-item p {
        max-width: 90%;
    }

    .exhibition-download-item {
        width: 100%;
        margin: auto;
    }


}

/* -------------------------------------------------------------------
来場者マイページ
------------------------------------------------------------------- */

.mypage_section {
    background-color: #fff;
    display: inline-block;
    padding: 35px;
    vertical-align: middle;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.mypage_section-button {
    padding: 20px 35px;
}

.mypage-box {
    overflow: hidden;
    position: relative;
    background-color: #fff;
    width: 80%;
    margin: 0 auto;
}

.mypage_area {
    float: left;
    padding: 15px;
    box-sizing: border-box;
    width: 25%;

}


.mypage-box img {
    width: 80px;
    margin-bottom: 10px;
}

.mypage-button {
    border-radius: 40px;
    background: linear-gradient(#D24403, #C71C1E);
    box-shadow: 2px 2px 4px gray;
    transition: all 0.5s 0s ease;
    padding: 10px;
    box-sizing: border-box;
}

.mypage-button a {
    margin-bottom: 10px;
    line-height: 1.2;
}

.mypage-button:hover {
    opacity: 0.4;
}

.mypage-button a:link {
    color: #fff
}

.mypage-button a:active {
    color: #fff;
    text-decoration: none;
}

.mypage-button a:visited {
    color: #fff;
}

.mypage-button a:hover {
    color: #fff;
    text-decoration: none;
}

.mypage-button-disabled {
    border-radius: 40px;
    background: #a8a8a8;
    box-shadow: 2px 2px 4px gray;
    transition: all 0.5s 0s ease;
    padding: 10px;
    box-sizing: border-box;
}

.mypage-button-disabled a {
    margin-bottom: 10px;
    line-height: 1.2;
}

.mypage-button-disabled:hover {
    opacity: 1;
}

.mypage-button-disabled a:link {
    color: #3e3e3e
}

.mypage-button-disabled a:active {
    color: #3e3e3e;
    text-decoration: none;
}

.mypage-button-disabled a:visited {
    color: #3e3e3e;
}

.mypage-button-disabled a:hover {
    color: #3e3e3e;
    text-decoration: none;
}

.mypage-button-disabled a[disabled] {
    background-color: transparent;
}


/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    .mypage-box {
        width: 100%;
    }

    .mypage_area {
        width: 100%;
    }

    .mypage-button {
        border-radius: 40px;
        box-shadow: 2px 2px 4px gray;
        transition: all 0.5s 0s ease;
        width: 100%;
        height: auto;
        padding: 20px;
        box-sizing: border-box;
    }


}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {
    .mypage-box {
        width: 100%;
    }

    .mypage_area {
        width: 100%;
    }

    .mypage-button {
        border-radius: 40px;
        box-shadow: 2px 2px 4px gray;
        transition: all 0.5s 0s ease;
        width: 100%;
        height: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .mypage_section {
        padding: 25px;
    }
}


/* -------------------------------------------------------------------

	フッター

------------------------------------------------------------------- */

#footer {
    margin: 0 auto;
    padding-bottom: 20px;
    background-color: #eee;
}

/* === フッターコンテンツ === */
.footer-content {
    width: 80%;
    margin: 0 100px;
    display: flex;
}

/* === ユーティリティ === */
.footer-sitemap {

    background-color: #ffe9cc;
    padding: 50px 0 20px 0;
}

.footer-sitemap .information {
    width: 40%;
}

.footer-sitemap .sitemap_content {
    width: 30%;
}

.footer-sitemap .sitemap_content a:link {
    color: #333;
    text-decoration: none;
}

.footer-sitemap .sitemap_content a:active {
    color: #333;
    text-decoration: underline;
}

.footer-sitemap .sitemap_content a:visited {
    color: #333;
    text-decoration: none;
}

.footer-sitemap .sitemap_content a:hover {
    color: #333;
    text-decoration: underline;
}


.footer-sitemap a {
    margin-bottom: 10px;
}

.footer-sitemap p {
    margin-bottom: 10px;
}

.footer-sitemap a:link {
    color: #333;
}

.footer-sitemap div {
    z-index: 9;
}

/* #footer-utility {} */

#footer-utility ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px 0 0 -22px;
    padding: 20px 0 18px;
    font-size: 0;
}

#footer-utility ul li {
    margin: 10px 11px 0;
    padding: 0;
    list-style: none;
}

#footer-utility ul li a {
    display: inline-block;
    padding-left: 0;
    color: #000;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.7em;
}


#footer-utility ul li a::before {
    display: inline-block;
    width: 6px;
    height: 7px;
    margin: 0 5px 0 0;
    background: url('../media/images/icon-sprite-link.svg') no-repeat 0 -91px;
    content: "";
}

#footer-utility ul li a[target="_blank"]::before {
    width: 9px;
    height: 8px;
    background-position: 0 -73px;
}


/* === コピーライト === */
#footer-copyright {
    padding: 15px 0 0 15px;
    margin: 0 100px;
    width: 80%;
    border-top: 2px solid #ccc;
    text-align: center;
}

#footer-copyright p {
    font-size: 1.2rem;
    line-height: 1.3em;
    padding: 10px;
}


/* === フッターバナー === */
.footer-banner {
    width: 270px;
    margin: 20px 50px 0 50px;
}

.footer-banner .pic {
    padding: 5px 10px;
    background: #fff;
}

/* .footer-banner .text {} */

.footer-banner .text>* {
    margin-top: 0;
}

.footer-banner .text p {
    margin-top: 0.4em;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5em;
}

.footer-banner-60th {
    display: none;
    width: 140px;
    margin: 20px 100px 0 0;
}

.footer-banner-60th .pic {
    padding: 10px;
    background: #fff;
}

.no-button #footer .common_apply {
    display: none;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    .footer-sitemap .information {
        width: 90%;
        margin: 0 auto 20px;
    }

    .footer-sitemap .sitemap_content {
        width: 90%;
        margin: 0 auto;
    }

    .footer-utility {
        order: 1;
    }

    .footer-content {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    #footer-utility ul {
        margin: 0;

    }

    .footer-banner {
        order: 2;
        margin: 0 auto;
    }

    .footer-copyright {
        order: 3;
    }

    #footer-copyright {
        padding: 0;
        margin: 0;
        width: 100%;
    }

}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {
    .footer-sitemap .information {
        width: 90%;
        margin: 0 auto 20px;
    }

    .footer-sitemap .sitemap_content {
        width: 90%;
        margin: 0 auto;
    }

    .footer-utility {
        order: 1;
    }

    .footer-content {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    #footer-utility ul {
        margin: 0;

    }

    .footer-banner {
        order: 2;
        margin: 0 auto;
    }

    .footer-copyright {
        order: 3;
    }

    #footer-copyright {
        padding: 0;
        margin: 0;
        width: 100%;
    }
}


/* -------------------------------------------------------------------

	上に戻るボタン

------------------------------------------------------------------- */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    line-height: 1;
    z-index: 9;
}

#page-top img {
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 28px 5px;
    text-align: center;
    display: block;
    opacity: 0.9;
    transition: all .3s ease;
}

#page-top img:hover {
    text-decoration: none;
    opacity: .5;
}


.printer-button {
    margin-left: auto;

}


/* -------------------------------------------------------------------

	当日・代理来場申し込み

------------------------------------------------------------------- */

.noIDAdmission-table {
    width: 100%;
}

.noIDAdmission-table tr td {
    padding: 8px 20px;
    border: #bebebe 1px solid;
    background-color: #fff;
    vertical-align: middle;

}

.noIDAdmission-table tr th:first-child {
    text-align: left;
    background-color: #ececec;
    width: 40%;
    vertical-align: middle;

}


.noIDAdmission-table input {
    width: 80%;
    font-size: 16px;
    text-align: left;
}



/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    .noIDAdmission-table {
        width: 100%;
    }

    .noIDAdmission-table tr td:first-child {
        text-align: left;
        background-color: #eaeaea;
        /* width: 100%; */
    }



}



/* スマホ（600px未満） */
@media screen and (max-width: 599px) {
    .noIDAdmission-table {
        width: 100%;
    }

    .noIDAdmission-table tr td:first-child {
        text-align: left;
        background-color: #eaeaea;
        width: 100%;
    }


}

/* -------------------------------------------------------------------

　　エラーページ

------------------------------------------------------------------- */

.error {
    /* margin: 10px 50px; */
    background-color: #fff;
    font-size: 16px;
    padding: 20px;
}

.inputerror {

    border: 1px solid #d92f15;
    background-color: #fdf2f0;
    font-size: 18px;
}

.othererror {

    border: 1px solid #d92f15;
    background-color: #fdf2f0;
    font-size: 18px;
    width: 100%;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    .error {
        width: auto;
        background-color: #fff;
    }

}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {

    .error {
        width: auto;
        background-color: #fff;
    }

}



/* -------------------------------------------------------------------

[フッター上共通]来場申込ボタン

------------------------------------------------------------------- */
.common_apply {
    position: relative;
    text-align: center;
    background-color: #fff;
    display: inline-block;
    margin: 60px auto;
    width: 50%;
    border-radius: 20px;
    border: 3px #ff8000 solid;
}

.common_apply p {
    font-size: 20px;
    line-height: 1.6;
    padding: 40px 20px;
}

.common_apply img {
    width: 400px;
}

.apply-back {
    /* background-color: white; */
    background-color: white;
    border-radius: 20px;
    padding: 30px 60px;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.apply_link {
    margin-bottom: 30px;
    transition: all 0.5s 0s ease;
}

.apply-link {
    bottom: 50px;
    right: 100px;
    width: 300px;
}

.apply_link:hover {
    bottom: 25px;
    right: 75px;
    /* width: 450px; */
    opacity: 0.7;
}

/* タブレット（600px以上〜1023px以下） */
@media screen and (min-width: 600px) and (max-width: 1023px) {


    .common_apply {
        padding-top: 0;
        width: 90%;
    }

    .apply-back {
        border-radius: 0;
    }

}

/* スマホ（600px未満） */
@media screen and (max-width: 599px) {



    .common_apply {
        padding-top: 20px;
        width: 90%;
    }

    .common_apply p {
        font-size: 18px;
        padding: 0px;
    }

    .apply-back {
        border-radius: 0;
        padding: 30px 30px;
    }

    .apply-back p {
        font-size: 14px;
    }
}

/* -------------------------------------------------------------------

入場証

------------------------------------------------------------------- */

.height-45 {
    height: 45px;
}

.print-box>div:nth-child(1) {
    border-top: #fff 2px solid;
    border-left: #fff 2px solid;
    border-bottom: #333 2px dashed;
    border-right: #333 2px dashed;
}

.print-box>div:nth-child(2) {
    border-top: #fff 2px solid;
    border-bottom: #333 2px dashed;
    border-right: #fff 2px solid;
}

.print-box>div:nth-child(3) {
    border-left: #fff 2px solid;
    border-bottom: #fff 2px solid;
    border-right: #333 2px dashed;
}

.print-box>div:nth-child(4) {
    border-bottom: #fff 2px solid;
    border-right: #fff 2px solid;
}


.header-print {
    background-color: transparent;
    overflow: hidden;
}

.header-print-white {
    background-color: transparent;
    overflow: hidden;
}

.orange {
    background-color: #925000;
}

.ticket-orange {
    border: solid #925000;
    border-width: 25px 20px 30px 20px;
}

.red {
    background-color: #ff0000;
}

.ticket-red {
    border: solid #ff0000;
    border-width: 25px 20px 25px 20px;
}

.green {
    background-color: #009f3d;
}

.ticket-green {
    border: solid #009f3d;
    border-width: 25px 20px 25px 20px;
}

.black {
    background-color: #031681;
}

.ticket-black {
    border: solid #031681;
    border-width: 25px 20px 25px 20px;
}

.purple {
    background-color: #510874;
}

.ticket-purple {
    border: solid #510874;
    border-width: 25px 20px 25px 20px;
}

.yellow {
    background-color: #fac916;
}

.ticket-yellow {
    border: solid #fac916;
    border-width: 25px 20px 25px 20px;
}

.white {
    background-color: #fff;
}

.ticket-white {
    border: solid #ffffff;
    border-width: 25px 20px 25px 20px;
}

.lightBlue {
    background-color: #02a5eb;
}

.ticket-lightBlue {
    border: solid #02a5eb;
    border-width: 25px 20px 25px 20px;
}

#margin-top-white {
    margin-top: 10px;
    margin: 15px;
}

.admission-ticket {
    float: left;
}

.admission-ticket p {
    border: 5px solid #ffffff;
    color: #ffffff;
    padding: 10px 15px;
}

.admission-ticket-white {
    float: left;
    margin: 0 10px;
}

.admission-ticket-white p {
    border: 5px solid #000;
    color: #000;
    padding: 10px 20px;
}

.header-print h1 {
    float: left;
    padding: 0 20px;
    text-decoration-color: transparent;
    color: #ffffff;
}

.header-print-white h1 {
    float: left;
    padding: 0 20px;
    text-decoration-color: transparent;
    color: #000;
    /* border: #000 3px solid; */
}


#department_name {
    line-height: 50px;
}

#margin-top {
    margin-top: 5px;
    margin-left: 12px;
}

#qr_solacity_link {
    width: 60px;
}

.seminar-set-list {
    min-height: 55px;
}

.seminar-set-list ul {
    display: flex;
    flex-wrap: wrap;
}

.seminar-set-list li {
    /* column-count:2 と同等 */
    flex: 0 0 49%;
    box-sizing: border-box;
}

#ticket-map {
    width: 84mm;
}

.ticket-use {
    width: 84mm;
}

.aru-code {
    width: 66mm;
}


.print-box {
    width: 210mm;
    height: 297mm;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 12mm;
}

.print-box>div {
    width: 93mm;
    /* 186 / 2 */
    height: 136.5mm;
    /* 273 / 2 */
    box-sizing: border-box;
    break-inside: avoid;
}


#ticket-qr-code {
    padding: 0 15%;
    width: 90%;
}

.header-print h1 {
    padding: 0 5px;
}


@media print {
    @page {
        size: A4 portrait;
        margin: 0;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .icon-button,
    #print-alert {
        display: none !important;
    }

    .print-box {
        margin: 0;
    }

    body.safari .print-box {
        padding: 6mm;
        padding-bottom: 0;
        width: 210mm;
        height: 294mm;
    }

    body.safari .print-box>div {
        width: 99mm;
        height: 145mm;
    }


}