@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* ─────────────────────────────────────────────
    CSS Custom Properties（サイト全体共通変数）
───────────────────────────────────────────── */
:root {
    --color-txt-orange: #ea5514;
    --color-txt-navy: #1c1e2a;
    --color-txt-base: #333333;   /* 本文デフォルトテキスト */
    --color-bg-orange: #db612c;
    --color-bg-navy: #0a1525;
    --color-bg-beige: #f9f5f0;
    --color-bg-green: #174143;

    /* ── Font Sizes ──
     * 各行末尾の「〇px」コメントは、よくある「1rem = 16px」のときの目安（設計用トークン）です。
     * 本サイトは reset.css で html { font-size: 62.5% } なので、実際の 1rem は約 10px（ブラウザの既定 16px を基準にした場合）になり、上記 px とは一致しません。 */
    --font-size_8: 0.5rem;       /*  8px */
    --font-size_9: 0.5625rem;    /*  9px */
    --font-size_10: 0.625rem;     /* 10px */
    --font-size_11: 0.6875rem;    /* 11px */
    --font-size_12: 0.75rem;      /* 12px */
    --font-size_13: 0.8125rem;    /* 13px */
    --font-size_14: 0.875rem;     /* 14px */
    --font-size_15: 0.9375rem;    /* 15px */
    --font-size_16: 1rem;         /* 16px */
    --font-size_18: 1.125rem;     /* 18px */
    --font-size_19: 1.1875rem;    /* 19px */
    --font-size_20: 1.25rem;      /* 20px */
    --font-size_21: 1.3125rem;    /* 21px */
    --font-size_24: 1.5rem;       /* 24px */
    --font-size_25: 1.5625rem;    /* 25px */
    --font-size_28: 1.75rem;      /* 28px */
    --font-size_30: 1.875rem;     /* 30px */
    --font-size_32: 2rem;         /* 32px */
    --font-size_36: 2.25rem;      /* 36px */
    --font-size_40: 2.5rem;       /* 40px */
    --font-size_42: 2.625rem;     /* 42px */
    --font-size_48: 3rem;         /* 48px */


    /* .sec_tit（セクション英字）のフォントサイズ。値の rem は上記 html（62.5%）基準で解釈 */
    --font-size_sec_tit: 6.2rem;
    --font-size_sec_tit_resp: 4.2rem;

    /* 本文・補足テキスト用。--fs-* の「相当 px」はこのサイトの 1rem≈10px で計算した目安 */
    --fs-base: 1.7rem;
    --fs-sm: 1.6rem;
    --fs-xs: 1.2rem;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    vertical-align: baseline;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Noto Sans JP", source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    font-weight: 500;
    font-style: normal;
    max-width: 2000px;
    background: #fff;
    color: var(--color-txt-base);
    font-size: var(--fs-base);
    margin: auto;
    overflow: hidden;
}

img {
    border: 0px;
    max-width: 100%;
    vertical-align: bottom;
}


/* for modern brouser */

.cf:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}


/* IE7,MacIE5 */

.cf {
    display: inline-block;
}


/* WinIE6 below, Exclude MacIE5 \*/

* html .cf {
    height: 1%;
}

.cf {
    display: block;
}


/**/


/*margin*/

.mgt0 {
    margin-top: 0px !important;
}

.mgt5 {
    margin-top: 5px !important;
}

.mgt10 {
    margin-top: 10px !important;
}

.mgt20 {
    margin-top: 20px !important;
}

.mgt25 {
    margin-top: 25px !important;
}

.mgt30 {
    margin-top: 30px !important;
}

.mgt35 {
    margin-top: 35px !important;
}

.mgt40 {
    margin-top: 40px !important;
}

.mgt45 {
    margin-top: 45px !important;
}

.mgt50 {
    margin-top: 50px !important;
}

.mgt55 {
    margin-top: 55px !important;
}

.mgt60 {
    margin-top: 60px !important;
}

.mgt65 {
    margin-top: 65px !important;
}

.mgb0 {
    margin-bottom: 0px !important;
}

.mgb10 {
    margin-bottom: 10px !important;
}

.mgb20 {
    margin-bottom: 20px !important;
}

.mgb30 {
    margin-bottom: 30px !important;
}

.mgb40 {
    margin-bottom: 40px !important;
}

.mgb50 {
    margin-bottom: 50px !important;
}

.mgb60 {
    margin-bottom: 60px !important;
}

.mgb70 {
    margin-bottom: 70px !important;
}

.mgl0 {
    margin-left: 0px !important;
}

.mgl10 {
    margin-left: 10px !important;
}

.mgl15 {
    margin-left: 15px !important;
}

.mgl20 {
    margin-left: 20px !important;
}

.mgl30 {
    margin-left: 30px !important;
}

.mgl40 {
    margin-left: 40px !important;
}

.mgl50 {
    margin-left: 50px !important;
}

.mgr0 {
    margin-right: 0px !important;
}

.mgr10 {
    margin-right: 10px !important;
}

.mgr15 {
    margin-right: 15px !important;
}

.mgr20 {
    margin-right: 20px !important;
}

.mgr30 {
    margin-right: 30px !important;
}

.mgr40 {
    margin-right: 40px !important;
}

.mgr50 {
    margin-right: 50px !important;
}


/* For padding */

.pdt0 {
    padding-top: 0px !important;
}

.pdt5 {
    padding-top: 5px !important;
}

.pdt10 {
    padding-top: 10px !important;
}

.pdt15 {
    padding-top: 15px !important;
}

.pdt20 {
    padding-top: 20px !important;
}

.pdt25 {
    padding-top: 25px !important;
}

.pdt30 {
    padding-top: 30px !important;
}

.pdt35 {
    padding-top: 35px !important;
}

.pdb0 {
    padding-bottom: 0px !important;
}

.pdb5 {
    padding-bottom: 5px !important;
}

.pdb10 {
    padding-bottom: 10px !important;
}

.pdb15 {
    padding-bottom: 15px !important;
}

.pdb20 {
    padding-bottom: 20px !important;
}

.pdb25 {
    padding-bottom: 25px !important;
}

.pdb30 {
    padding-bottom: 30px !important;
}

.pdl5 {
    padding-left: 5px !important;
}

.pdl10 {
    padding-left: 10px !important;
}

.flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


/* ---------------------------------------------------------
    common
----------------------------------------------------------*/

.c_wrap {
    max-width: 1250px;
    margin: auto;
    padding: 80px 60px;
}

.c_wrap.wide {
    padding: 50px;
    max-width: 1280px;
}

a {
    color: #333;
    outline: none;
    text-decoration: none;
    word-break: break-all;
}

a:hover {
    filter: alpha(opacity=80);
    opacity: 0.8;
}

.shadow {
    box-shadow: 0px 0px 15px -5px #777777;
}

.block {
    display: block;
}

.read_txt {
    margin-bottom: 40px;
    line-height: 2.2;
    font-size: 1.4rem;
}

.txt_center {
    text-align: center;
}

.txt_right {
    text-align: right;
}

.txt_link {
    padding-bottom: 3px;
    border-bottom: solid 1px;
}

.arrow_link:after {
    content: '\f054';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-left: 10px;
}

.font_small {
    font-size: 1.4rem;
}

.sp480 {
    display: none;
}

.page_under main {
    background: #f5f9ff;
}

.btn_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.btn_list li {
    width: 32%;
}

.btn_list li a {
    background: #e9f2ff;
    display: block;
    text-align: center;
    padding: 10px;
    border: solid 2px #1155d0;
    font-size: 1.4rem;
    position: relative;
}

.btn_list li a:after {
    content: '';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f054';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.btn_list.btn2 li {
    width: 48%;
}

.btn_list.btn2 li a {
    background: #1155d0;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border: 0;
    padding: 20px;
}

.btn_list.btn2 li:last-child a {
    background: #bc0f5c;
}

.btn_list.unkbtn li a:after {
    content: '';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f078';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.btn_list.unkbtn.btn2_nomal li {
    width: 48%;
}

.btn_list.unkbtn.btn2_nomal li:nth-child(n+3) {
    margin-top: 10px;
}

.btn_list.unkbtn.btn4_nomal li {
    width: 24%;
}

.btn_list.unkbtn.btn4_nomal li a {
    font-size: 1.3rem;
}

.btn_list.btn_4 li {
    width: 24%;
}

.btn_list.unkbtn.btn5_nomal {
    justify-content: center;
}

.btn_list.unkbtn.btn5_nomal li {
    width: 32%;
    margin-bottom: 1%;
    margin-right: 1%;
}

.btn_list.unkbtn.btn5_nomal li a {
    font-size: 1.3rem;
}

.c_space {
    margin-bottom: 50px;
}

.c_space_mini {
    margin-bottom: 30px;
}

.sec_tit {
    font-family: "Host Grotesk", sans-serif;
    font-weight: 400;
    font-size: var(--font-size_sec_tit);
    margin-bottom: 50px;
    letter-spacing: 0.01em;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.1;
}

.sec_tit span.ja {
    font-family: "Noto Sans JP", source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    padding-bottom: 0.2em;
    margin-left: 0.5em;
}


.sec_tit:after {
    content: none;
}

.sec_tit:before {
    content: none;
}

.bg_red {
    background: #d53434;
    color: #FFF;
    /* padding: 3px */
}

.bg_gr {
    background: #989898;
    color: #f2f2f2;
}

.bg_green {
    background: #174143;
    color: #f2f2f2;
}

.bg_navy {
    background: var(--color-bg-navy);
    color: #fff;
}

.bg_orange {
    background: var(--color-bg-orange);
    color: #fff;
}

.bg_gray {
    background: #f8f8f8;
}

.bg_beige {
    background: var(--color-bg-beige);
    color: #333;
}



/*2列のタイトル*/

@media screen and (min-width: 851px) {
    #outline .sec_tit {
        align-items: flex-start;
    }

    #outline .sec_tit:before {
        margin-top: 19px;
    }

    #outline .sec_tit:after {
        top: 19.5%;
    }
}


/*end - 2列のタイトル*/

.sec_tit span:last-child {
    font-family: "Noto Sans JP", source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: block;
    font-size: var(--fs-sm);
    color: var(--color-txt-orange);
    letter-spacing: 0.1em;
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
}


/* ---------------------------------------------------------
sec_tit ja 日本語のタイトル
----------------------------------------------------------*/

.sec_tit.ja {
    font-family: "Noto Sans JP", source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    font-size: 3rem;
}

.sec_tit.ja::after {
    top: 40.5%;
}

@media screen and (max-width: 768px) {
    .sec_tit span {
        margin-left: 0;
    }

    .sec_tit.ja {
        font-size: 4vw;
    }
}

@media screen and (max-width: 480px) {
    .sec_tit.ja {
        font-size: 5vw;
    }

    .sec_tit.ja::after {
        top: 37.5%;
    }
}

@media screen and (max-width: 350px) {
    .sec_tit.ja::after {
        top: 33%;
    }
}

.boder_left_tit {
    border-left: 5px solid #1155d0;
    padding-left: 10px;
    margin-bottom: 20px;
}

.btn_wrap {
    text-align: center;
    margin: 50px auto;
}

.color_btn {
    box-shadow: 0px 1px 16px 0px rgba(48, 48, 48, 0.15);
    background: var(--color-txt-orange);
    color: #fff;
    padding: 10px 40px 10px 20px;
    border-radius: 15px;
    position: relative;
    display: inline-block;
}

.color_btn:after {
    content: '';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f054';
    position: absolute;
    right: 15px;
    top: 52%;
    transform: translateY(-50%);
}

.color_btn.big {
    display: block;
    max-width: 370px;
    width: 100%;
    text-align: center;
    margin: auto;
    padding: 18px 27px 18px 23px;
    margin-top: 30px;
    font-weight: 700;
    /* font-size: 13px; */
}

.color_btn.white {
    background: #ffffff;
    color: #000000;
}

.color_btn.close {
    background: #8d8d8d;
    /* color: #f2f2f2; */
    color: #bcbcbc;
    pointer-events: none;
    opacity: 1 !important;
}

.color_btn.close::after {
    display: none;
}

.color_btn.gray {
    background: #333333;
}

.color_btn.mini {
    font-size: 1.2rem;
}

.back_btn:after {
    content: '\f053';
    right: auto;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#close.color_btn {
    cursor: pointer;
    display: block;
    margin: 30px auto 0;
    padding: 10px 20px;
    width: 180px;
    text-align: center;
    border: 1.5px solid var(--color-txt-orange);
    background: transparent;
    color: var(--color-txt-orange);
    box-shadow: none;
}

#close.color_btn:after {
    content: '\f00d';
}

.big_btn {
    display: block;
    margin: auto;
    max-width: 600px;
    text-align: center;
    padding: 20px;
    font-size: 1.8rem;
    font-weight: 800;
}

.btn2_box {
    margin-top: 50px;
}

.btn2_box .color_btn.big {
    margin: 0 100px 0 0;
}

.btn2_box .color_btn.big:last-child {
    margin-right: 0;
}

/* .orange_btn {
    background: var(--color-bg-navy);
} */

.end_tag {
    padding: 5px 20px;
    border-radius: 3px;
    font-weight: bold;
    margin-top: 5px;
    display: inline-block;
    background: #989898;
    color: #f2f2f2;
}

@media screen and (max-width: 960px) {
    .btn2_box {
        display: block;
        margin: 50px auto 0 auto;
        text-align: center;
    }

    .btn2_box .color_btn.big {
        margin: auto;
    }

    .btn2_box .color_btn.big:last-child {
        margin: 20px auto 0 auto;
    }

}

/* @media screen and (max-width: 813px) {
    .btn2_box .color_btn.big {
        margin: auto;
    }

}

@media screen and (max-width: 769px) {
    .btn2_box {
        display: block;
        margin: 50px auto 0 auto;
        text-align: center;
    }

    .btn2_box .color_btn.big {
        margin: auto;
    }

    .btn2_box .color_btn.big:last-child {
        margin: 20px auto 0 auto;
    }
} */

.color_card_list {
    display: flex;
    flex-wrap: wrap;
}

.color_card_list li {
    width: 23%;
    margin-right: 2.6%;
    margin-bottom: 40px;
    box-shadow: 0px 0px 15px -5px #777777;
    background: #021b40;
    /*    display: flex;*/
}

.color_card_list li:nth-child(4n) {
    margin-right: 0;
}

.color_card_list li a {
    display: block;
    height: 100%;
}

.color_card_list li a:hover {
    filter: alpha(opacity=90);
    opacity: 0.9;
}

.color_card_list li a .txt {
    color: #fff;
    padding: 15px;
}

.color_card_list li a .txt h3 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.info_area {
    border-top: solid 1px #556379;
    padding-top: 10px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 1.1rem;
}

.info_area dt {
    background: #556379;
    padding: 2px;
    border-radius: 3px;
    font-size: 1rem;
    font-family: din-2014, sans-serif;
    width: 47px;
    margin-right: 8px;
    margin-bottom: 5px;
    text-align: center;
}

.info_area dd {
    width: calc(100% - 55px);
    margin-bottom: 5px;
}

.info_area dd span.label_common::after {
    content: ",";
}

.info_area dd span.label_common:last-child::after {
    content: "";
}

.info_area_detail {
    align-items: center;
    border-top: none;
    padding-top: 0;
}

.info_area_detail dt {
    color: #FFF;
}

.info_area_detail dd {
    color: #556379;
    font-weight: 800;
    font-family: din-2014, sans-serif;
    font-style: normal;
    font-size: 1.5rem;
}

.wh_bg_box {
    background: #FFF;
    padding: 30px;
    margin-top: 30px;
}

dl.wh_bg_box dt {
    font-weight: 600;
    margin-bottom: 10px;
    border-left: 4px solid #1155d0;
    padding-left: 10px;
    font-size: 1.4rem;
}

dl.wh_bg_box dd a {
    position: relative;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #000;
    display: block;
    width: 95%;
}

dl.wh_bg_box dd a::after {
    position: absolute;
    content: "";
    top: 50%;
    right: -5%;
    width: 8px;
    height: 8px;
    border-top: 3px solid #1155d0;
    border-right: 3px solid #1155d0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg) translateY(-50%);
}

dl.wh_bg_box dd a[target="_blank"]::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f35d";
    border-top: none;
    border-right: none;
    -webkit-transform: none;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #1155d0;
    margin-left: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    border-top: none;
    border-right: none;
}

.border_tit {
    font-size: 1.7rem;
    font-weight: 800;
    font-style: normal;
    padding-left: 10px;
    margin-bottom: 20px;
    border-left: solid 4px var(--color-txt-orange);
}

.colum_2_table {
    display: flex;
    flex-wrap: wrap;
}

.colum_2_table dt {
    width: 150px;
    padding: 25px;
    background: #ea8153;
    color: #fff;
    border-bottom: solid 1px #e4e4e4;
}

.colum_2_table dd {
    width: calc(100% - 150px);
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: solid 1px #cbcbcb;
    color: #333;
}

.colum_2_table dd:last-child {
    border-bottom: 0;
}

.colum_2_table dt:nth-last-child(2) {
    border-bottom: 0;
}

.border_bl_btn {
    background: #FFF;
    border-radius: 30px;
    font-size: 1.1rem;
    padding: 8px 35px 8px 25px;
    position: relative;
    vertical-align: middle;
    font-weight: 500;
}

.border_bl_btn::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f078';
    color: inherit;
    font-weight: 700;
    font-size: .9rem;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1100px) {
    .scroll_table_wrap {
        overflow-x: scroll;
    }
}

table.scroll_table {
    min-width: 1000px;
    border-collapse: collapse;
    border-spacing: 0px !important;
}

.scroll_table th,
.scroll_table td {
    text-align: left;
    padding: 30px 20px;
    font-weight: normal;
    border-bottom: solid 1px #dddd;
    /*height: 100px;*/
    vertical-align: middle;
}

.scroll_table td .sup {
    display: block;
    font-size: 1.1rem;
}

.scroll_table td .tax {
    display: inline-block;
    font-size: 1.1rem;
}

.scroll_table thead th {
    background: #333333;
    color: #fff;
    font-size: 1.2rem;
    padding: 5px 20px;
    white-space: nowrap;
    height: auto;
}

.bg_navy .scroll_table thead th {
    background: #f8f8f8;
    color: #333;
}

/* .bg_navy .txt_link {
    color: #fff;
} */

.bg_orange .txt_link {
    color: #fff;
}



#pass .scroll_table thead th:nth-child(2),
#sponsorship .scroll_table thead th:nth-child(2) {
    width: 150px;
}

#pass .scroll_table thead th:nth-child(2),
#sponsorship .scroll_table thead th:nth-child(2),
#sponsorship .scroll_table thead th:nth-child(3),
#sponsorship .scroll_table thead th:nth-child(4) {
    text-align: center;
}

#sponsorship .scroll_table thead th:nth-child(3) {
    width: 120px;
}

#pass .scroll_table thead th:first-child {
    width: 220px;
}

.scroll_table tbody th {
    /*display: flex;*/
    display: table-cell;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    white-space: nowrap;
}

.scroll_table td {
    display: table-cell;
    vertical-align: middle;
    font-weight: 500;
}

.scroll_table td:not(:last-child) {
    text-align: center;
}

.scroll_table td:last-child {
    font-size: 1.3rem;
}

.scroll_table tr {
    border-bottom: none !important;
}

.scroll_table tr.highlight {
    background: #fff5e5;
}

.scroll_table th .icon {
    font-size: 1.6rem;
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

#pass_under i.fas.fa-ticket-alt {
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

.scroll_table th .tag {
    color: #fff;
    font-size: 1rem;
    border-radius: 100px;
    padding: 1px 5px;
    margin-right: 10px;
    display: inline-block;
    width: 54px;
    text-align: center;
}

.scroll_table th .tag.gray {
    background: #a7a7a7;
}

.scroll_table th div {
    align-items: center;
    justify-content: flex-start;
}

.scroll_table th div p {
    font-weight: bold;
}

.scroll_table tbody th span.pass_end {
    font-size: 1.2rem;
    display: contents;
}


/* 終了後の表示用 */

#pass .scroll_table .flex {
    flex-wrap: nowrap;
}

@media screen and (max-width: 480px) {
    .sp_none {
        display: none;
    }
}


/* ---------------------------------------------------------
    top common
----------------------------------------------------------*/

main.page_home,
main.page_under {
    margin-top: 91px;
}

@media screen and (max-width: 1100px) {
    main.page_home,
    main.page_under {
        margin-top: 73px;
    }
}

@media screen and (max-width: 480px) {
    main.page_home,
    main.page_under {
        margin-top: 65px;
    }
}

.colum_2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.colum_2 .tit_wrap {
    width: 35%;
}

.colum_2 .cont {
    width: calc(100% - 35%);
}

.spk_list {
    display: flex;
    flex-wrap: wrap;
}

.spk_list li {
    width: 18%;
    margin-right: 2.5%;
    margin-top: 50px;
    text-align: center;
}

.spk_list li:nth-child(5n) {
    margin-right: 0;
}

.spk_list li a {
    display: block;
    pointer-events: painted;
}

.spk_list li a:hover {
    opacity: 0.8 !important;
    /*詳細公開したら削除*/
}

.spk_list li a img,
#x_salon_program .spk_list li img {
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0px 1px 16px 0px rgb(48 48 48 / 15%);
}

.spk_list li a dl dd {
    font-size: 1.25rem;
    margin-bottom: 3px;
}

.spk_list li a dl dt,
#x_salon_program .spk_list li dl dt {
    margin-bottom: 8px;
}


#speakers .sec_tit,
#advisoryboard .sec_tit {
    margin-bottom: 0;
}

/* 一覧の「最下行の下」にだけ余白を足す（人数可変なので ul の下 padding で対応） */
#speakers .spk_list,
#advisoryboard .spk_list {
    padding-bottom: 40px;
}

/* ── Speakers / Advisory board：プロフィール写真を角丸（旧・円形）── */
#speakers .spk_list li a figure.att_img,
#advisoryboard .spk_list li a figure.att_img {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
    box-shadow: 0px 1px 16px 0px rgb(48 48 48 / 15%);
    width: 100%;
}

#speakers .spk_list li a img,
#advisoryboard .spk_list li a img {
    border-radius: 0;
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* アドバイザリーボード（.bg_orange）：白抜き見出し・リンク色 */
#advisoryboard.bg_orange .sec_tit span:last-child {
    color: #fff;
}

#advisoryboard.bg_orange .sec_tit:before {
    background: #fff;
}

#advisoryboard.bg_orange .sec_tit:after {
    border-top-color: rgba(255, 255, 255, 0.35);
}

#advisoryboard.bg_orange .spk_list li a {
    color: #fff;
}

/* 各セクションが隣接するブロブ疑似要素に隠されないようスタッキングコンテキストを生成 */
section,
.page_home > article > section {
    position: relative;
    z-index: 1;
}

.circle {
    position: relative;
}

.circle:after {
    content: '';
    display: inline-block;
    width: 200px;
    height: 200px;
    vertical-align: middle;
    position: absolute;
    z-index: 1;
    bottom: -100px;
    background-repeat: no-repeat;
    background-size: contain;
}

.circle_right:after {
    right: -100px;
}

.circle_left:after {
    left: -100px;
}

.circle_orange:after {
    background-image: url(../images/circle_orange.png);
}

.circle_navy:after {
    background-image: url(../images/circle_navy.png);
}

.circle_img:after {
    background-image: url(../images/bullet.svg);
    width: 300px;
    height: 300px;
    bottom: -150px;
    animation: rotate-anime 100s linear infinite;
}

@media screen and (max-width: 1200px) {
    .btn_list.unkbtn.btn4_nomal li {
        width: 48%;
        margin-bottom: 10px;
    }

    .btn_list.unkbtn.btn4_nomal li a {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 1000px) {
    .page_head {
        background-position: left 50%;
    }
}

@media screen and (max-width: 850px) {
    body {
        font-size: 1.4rem;
    }

    .c_wrap {
        padding: 60px 50px;
    }

    .colum_2 .tit_wrap {
        width: 100%;
    }

    .colum_2 .cont {
        width: 100%;
    }

    .sec_tit {
        margin-bottom: 40px;
        font-size: var(--font-size_sec_tit_resp);
    }

    .sec_tit:after {
        top: 28%;
    }

    .circle:after {
        width: 100px;
        height: 100px;
        bottom: -50px;
    }

    .circle_right:after {
        right: -50px;
    }

    .circle_left:after {
        left: -50px;
    }

    .circle_img:after {
        width: 200px;
        height: 200px;
        bottom: -100px;
        right: -100px;
    }

    .spk_list li {
        width: 31.6%;
    }

    .spk_list li:nth-child(5n) {
        margin-right: 2.5%;
    }

    .spk_list li:nth-child(3n) {
        margin-right: 0;
    }

    .scroll_table th,
    .scroll_table td {
        padding: 20px 10px;
    }

    .scroll_table thead th {
        padding: 5px 10px;
    }

    .page_head {
        padding: 60px 20px;
        background-position: right 50%;
    }

    .page_head h1 {
        font-size: 1.4rem;
    }

    .page_head h1 span {
        font-size: 3rem;
        margin-bottom: 5px;
    }

    .btn_list li {
        width: 100%;
        margin-bottom: 10px;
    }

    .btn_list.btn2 li {
        width: 100%;
        margin-bottom: 20px;
    }

    .btn_list.btn2 li:last-child {
        margin-bottom: 0;
    }

    .btn_list.btn_4 li {
        width: 100%;
    }

    .btn_list.unkbtn.btn5_nomal li {
        width: 49%;
    }

    .color_card_list li {
        width: 31%;
        margin-right: 3.5%;
        margin-bottom: 30px;
    }

    .color_card_list li:nth-child(4n) {
        margin-right: 3.5%;
    }

    .color_card_list li:nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 600px) {
    .page_head {
        background-position: left 50%;
    }

    .color_card_list li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 20px;
    }

    .color_card_list li:nth-child(3n) {
        margin-right: 4%;
    }

    .color_card_list li:nth-child(2n) {
        margin-right: 0;
    }

    dl.wh_bg_box {
        padding: 20px;
    }

    dl.wh_bg_box dt {
        margin-bottom: 10px;
    }

    .btn_list.unkbtn.btn2_nomal {
        display: block;
    }

    .btn_list.unkbtn.btn2_nomal li,
    .btn_list.unkbtn.btn4_nomal li,
    .btn_list.unkbtn.btn5_nomal li {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .c_wrap {
        padding: 60px 20px;
    }

    .sp480 {
        display: block;
    }

    .page_head {
        padding: 40px 20px;
    }

    .page_head h1 {
        font-size: 1.4rem;
    }

    .page_head h1 span {
        font-size: 2.5rem;
    }

    /*  .color_btn{
    width: 90%;
    }*/
    .big_btn {
        font-size: 1.6rem;
    }

    .btn_list.btn2 li a {
        font-size: 1.6rem;
    }

    .read_txt {
        font-size: 1.4rem;
        text-align: left;
        margin-bottom: 30px;
    }

    .spk_list li {
        width: 48.7%;
        margin-top: 30px;
    }

    .spk_list li:nth-child(3n) {
        margin-right: 2.5%;
    }

    .spk_list li:nth-child(2n) {
        margin-right: 0;
    }

    .circle:after {
        width: 80px;
        height: 80px;
        bottom: -40px;
    }

    .circle_right:after {
        right: -40px;
    }

    .circle_left:after {
        left: -40px;
    }

    .circle_img:after {
        width: 100px;
        height: 100px;
        bottom: -50px;
        right: -50px;
    }

    .colum_2_table dd {
        width: calc(100% - 100px);
        padding: 15px;
    }

    .colum_2_table dt {
        width: 100px;
        padding: 15px;
    }

    /* .colum_2_table dd {
        background: rgba(255, 255, 255, 0.7);
    } */

    #pass .scroll_table thead th:nth-child(2) {
        width: 100px;
    }
}


/* ---------------------------------------------------------
    header
----------------------------------------------------------*/

header {
    z-index: 100;
    position: fixed;
    /*fixedを設定して固定*/
    /* height: 70px; */
    /*高さ指定*/
    width: 100%;
    /*横幅指定*/
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+79,000000+100&0.9+0,0.4+79,0+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    /* background: #fff; */
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /* IE6-9 */
    background: #fff;
    left: 0;
}

header .logo_wrap img {
    display: block;
}


/*スクロール途中からヘッダーの高さが小さくなる*/


/*https://coco-factory.jp/ugokuweb/move01/5-1-8/*/

#header.HeightMin {
    box-shadow: 0px 1px 16px 0px rgb(48 48 48 / 15%);
    animation: DownAnime 0.5s forwards;
}

#header.HeightMin .c_wrap.wide {
    padding: 15px clamp(16px, 2.8vw, 32px);
}

#header.HeightMin .c_wrap.wide .logo_wrap {
    max-width: 150px;
}

#header.HeightMin .c_wrap.wide .logo_wrap img.logo {
    margin-bottom: 10px;
}

#header.HeightMin .openbtn {
    top: 3px;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-170px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*end スクロール途中からヘッダーの高さが小さくなる*/


/*追従メニューの現在地ハイライト*/


/* end 追従メニューの現在地ハイライト*/

header .c_wrap.wide {
    /* 共通 .c_wrap.wide の max-width により左右に空き過ぎるため、ヘッダーだけ全幅 */
    max-width: none;
    width: 100%;
    padding: 23px clamp(16px, 2.8vw, 32px) 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo_wrap {
    max-width: 180px;
    width: 20%;
}

header .logo_wrap img.logo {
    margin-bottom: 10px;
}

header .c_wrap nav {
    width: 100%;
}

header .c_wrap nav ul {
    display: flex;
    justify-content: flex-end;
    /*    align-items: center;*/
    flex-wrap: wrap;
}

header .c_wrap nav ul li {
    margin-left: 5px;
    margin-top: 5px;
}

header .c_wrap nav ul li:not(:last-child):after {
    content: "・";
    color: var(--color-txt-orange);
    padding-left: 10px;
}

header .c_wrap nav ul li:nth-last-child(2):after {
    content: "";
}

header .c_wrap nav ul li a {
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s;
}

header .c_wrap nav ul li.current a,
header .c_wrap nav ul li:not(:last-child) a:hover {
    padding-bottom: 5px;
    border-bottom: solid 1.6px var(--color-txt-orange);
}

header .c_wrap nav ul li a.color_btn {
    /* padding-right: 60px; */
    font-size: 1.3rem;
    /* display: block!important; */
    border-radius: 10px;
}

header .c_wrap nav ul li a.color_btn.mypage {
    padding: 5px 40px 5px 20px;
    background: #fff;
    border: solid 2pxvar(--color-txt-orange);
    margin-top: 5px;
    color: var(--color-txt-orange);
    font-size: 1rem;
}

header .c_wrap nav ul li:last-child {
    margin-left: 20px;
    display: flex;
    flex-flow: column;
    margin-top: 0;
}

@media screen and (max-width: 1100px) {

    /*========= ナビゲーションのためのCSS ===============*/
    /*https://coco-factory.jp/ugokuweb/move01/5-1-20/*/
    #g-nav {
        display: none;
    }

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        display: block;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--color-bg-beige);
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 100%;
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
        margin-top: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
        position: relative;
        margin-left: 0;
    }

    #g-nav li a {
        text-decoration: none;
        padding: 15px 10px;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    header .c_wrap nav ul li a.color_btn.mypage {
        margin-top: 10px;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 15px;
        right: 20px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    /*調整*/
    #header.HeightMin .c_wrap.wide {
        height: 55px;
    }

    #header .logo_wrap {
        width: 130px;
    }

    #header.HeightMin .c_wrap.wide .logo_wrap {
        max-width: 120px;
    }

    header .c_wrap nav ul li:not(:last-child):after {
        content: "";
    }

    header .c_wrap nav ul li:not(:last-child):before {
        content: "・";
        color: var(--color-txt-orange);
    }

    header .c_wrap {
        display: block;
    }

    header .c_wrap nav ul li a.color_btn {
        margin: 20px auto 0;
        padding: 10px 40px !important;
    }
}

@media screen and (max-width: 480px) {
    header .c_wrap.wide {
        padding: 16px clamp(14px, 4vw, 20px);
    }

    .openbtn {
        right: 5px;
        top: 7px;
    }

    #header .logo_wrap {
        width: 100px;
    }

    #header.HeightMin .c_wrap.wide {
        padding: 10px clamp(14px, 4vw, 20px);
    }
}


/* ---------------------------------------------------------
    mainv
----------------------------------------------------------*/

#mainv .c_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    position: relative;
}

#mainv .c_wrap ul {
    width: 42%;
}

#mainv .c_wrap ul li:nth-child(1) img {
    position: relative;
}

#mainv .c_wrap ul li:nth-child(1) a {
    display: block;
    width: 100%;
    height: 8.5%;
    /* background-color: #ff000029; */
    position: absolute;
    z-index: 100;
    bottom: 0;
}

#mainv .c_wrap figure {
    width: 63%;
    margin-right: -13%;
    overflow: hidden;
}

#mainv {
    overflow: hidden;
}

#mainv > img {
    display: block;
    width: 100%;
    height: auto;
}

#mainv > img.sp_img {
    display: none;
}

@media screen and (max-width: 600px) {
    #mainv > img.pc_img {
        display: none;
    }

    #mainv > img.sp_img {
        display: block;
    }
}

.mv_slider li:not(:first-child) {
    display: none;
}

.mv_slider.slick-initialized li {
    display: block;
}

.mv_slider .slick-track {
    display: flex;
    align-items: center;
}

#mainv .rotate_bullet img {
    animation: rotate-anime 100s linear infinite;
    padding: 10px;
}

@keyframes rotate-anime {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.homeHero_scroll {
    width: 14px;
}

.homeHero_scroll {
    position: absolute;
    bottom: 0;
    left: 15px;
    height: 120px;
}

.homeHero_scroll p {
    font-size: 1.4rem;
    display: inline-block;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: "Host Grotesk", sans-serif;
    letter-spacing: 0.1em;
}

.homeHero_scroll i {
    width: 1px;
    height: 100%;
    background-color: #333;
    display: block;
    position: absolute;
    left: 50%;
    /* top: 63px; */
    -webkit-animation: scrolldown 4.2s cubic-bezier(.77, 0, .175, 1) infinite;
    animation: scrolldown 4.2s cubic-bezier(.77, 0, .175, 1) infinite;
}

@-webkit-keyframes scrolldown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    50.1% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%
    }

    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%
    }
}

@keyframes scrolldown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    50.1% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%
    }

    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%
    }
}


/* ---------------------------------------------------------
    news
----------------------------------------------------------*/

#news {
    background: var(--color-bg-orange);
    color: #FFF;
}

#news .c_wrap {
    max-width: 1280px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

#news h2 {
    width: 10%;
    font-family: "Host Grotesk", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
}

#news dl {
    width: calc(100% - 24%);
    justify-content: flex-start;
    align-items: center;
}

#news dl dd {
    margin-right: 20px;
    letter-spacing: 0.1em;
    width: 10%;
    min-width: 80px;
}

#news dl dt {
    width: 64%;
}

#news dl dt a {
    position: relative;
    display: inline-block;
    color: #FFF
}

#news dl dt a::after {
    content: '';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f054';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

#news dl dd.new_label {
    background: #976316;
    color: #FFF;
    width: 80px;
    font-size: 1.1rem;
    text-align: center;
    padding: 0;
    display: inline-block;
}

.border_btn_bl {
    border: 1.5px solid;
    border-radius: 50px;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
    padding: 6px 10px;
    min-width: 100px;
    width: 10.5%;
    background: #FFF;
    font-family: "Host Grotesk", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.border_btn_bl:hover {
    color: #FFF;
    background: #333;
    border: none;
}

.border_btn_bl::after {
    content: '';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f054';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}


/* 詳細 */

.news_list_under li span {
    margin-right: 20px;
    letter-spacing: 0.1em;
}

.news_list_under li a {
    position: relative;
    display: inline-block;
}

.news_list_under li a::after {
    content: '';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f054';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

@media screen and (max-width: 1030px) {

    /*  #news .c_wrap{
    padding: 20px 50px;
    }*/
    #news h2 {
        margin-right: 3%;
    }

    #news dl {
        width: calc(100% - 13%);
    }

    #news dl dt {
        width: 100%;
    }

    #news dl dt a {
        margin-top: 5px;
    }

    .border_btn_bl {
        margin: 10px auto 0;
    }
}

@media screen and (max-width: 480px) {
    #news .c_wrap.flex {
        /*display: block;*/
        padding: 20px;
    }

    #news h2 {
        margin-bottom: 10px;
        width: 100%;
    }

    #news dl {
        width: 100%;
    }

    .news_list_under li span {
        margin-right: 10px;
    }

    #news dl dd {
        min-width: 70px;
    }
}


/* ---------------------------------------------------------
    about
----------------------------------------------------------*/

#about h3 {
    font-family: "Host Grotesk", sans-serif;
    font-weight: 500;
    font-size: 3.3rem;
    display: inline-block;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ea5514, #e8d1c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

#about h3 span {
    font-size: 2rem;
}

#about .from {
    margin-top: 30px;
    text-align: right;
    display: block;
    font-size: 1.5rem;
}

/* 開閉ボタン */
#about .read_txt_check {
    display: none;
}

#about .read_txt_toggle {
    display: none;
}

@media screen and (max-width: 850px) {
    #about h3 {
        line-height: 1;
    }

    #about h3 span {
        font-size: 1.7rem;
    }

    #about .sec_tit {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 768px) {
    #about .read_txt_box .read_txt_inner {
        position: relative;
    }

    #about .read_txt_check:not(:checked) + .read_txt_inner {
        max-height: 25em;
        overflow: hidden;
    }

    #about .read_txt_check:not(:checked) + .read_txt_inner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4em;
        background: linear-gradient(to bottom, rgba(10, 21, 37, 0) 0%, var(--color-bg-navy) 100%);
        pointer-events: none;
    }

    #about .read_txt_toggle {
        display: block;
        width: 100%;
        margin: 5px 0 35px 0;
        padding: 10px 28px 10px 20px;
        border: 1px solid #5a616b;
        border-radius: 8px;
        color: #a6a6a6;
        font-size: 1.4rem;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        position: relative;
        transition: opacity 0.3s ease;
    }

    #about .read_txt_toggle:hover {
        opacity: 0.85;
    }

    #about .read_txt_toggle::after {
        content: '';
        width: 6px;
        height: 6px;
        border-bottom: solid 1px #5a616b;
        border-right: solid 1px #5a616b;
        transform: rotate(45deg);
        position: absolute;
        top: 55%;
        right: 12px;
        margin-top: -5px;
    }

    #about .read_txt_toggle .close_txt {
        display: none;
    }

    #about .read_txt_check:checked ~ .read_txt_toggle .more_txt {
        display: none;
    }

    #about .read_txt_check:checked ~ .read_txt_toggle .close_txt {
        display: inline;
    }

    #about .read_txt_check:checked ~ .read_txt_toggle::after {
        border-top: solid 1px #5a616b;
        border-right: solid 1px #5a616b;
        border-bottom: 0;
        transform: rotate(-45deg);
        top: 64%;
    }
}





/* ---------------------------------------------------------
    program
----------------------------------------------------------*/

.bar_tit.flex {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.bar_tit h3 {
    display: flex;
    align-items: baseline;
    font-size: 2.2rem;
    line-height: 1.2;
    gap: 0.12em;
    flex-wrap: wrap;
}

.area,
.area_2 {
    display: none;
}

.tab_view,
.tab_view_2 {
    display: block;
}

#program .colum_2. #x_salon_program .colum_2 {
    align-items: flex-start;
}

.border_btn li {
    margin-right: 10px;
    border: 1.5px solid #cc7f7a;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 12px;
    font-family: "Host Grotesk", sans-serif;
    text-align: left;
    width: 16rem;
    letter-spacing: 1.5px;
    background: #FFF;
    font-weight: bold;
    color: #cc7f7a;
}

.border_btn li.st_b {
    color: #94a764;
    border: 1.5px solid #b4cc7a;
}

.border_btn li.st_c {
    color: #769ab3;
    border: 1.5px solid #7aaacc;
}

.border_btn li.pre {
    color: #cc7aa7;
    border: 1.5px solid #cc7aa7;
}

.border_btn li.st_w {
    color: #927acc;
    border: 1.5px solid #927acc;
}

.border_btn li:hover {
    filter: alpha(opacity=80);
    opacity: 0.8;
    cursor: pointer;
}

.border_btn li.small {
    font-size: 11px;
}

#program .arrow_link,
#x_salon_program .arrow_link {
    position: relative;
}

#program .arrow_link::after,
#x_salon_program .arrow_link::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#program .support_link,
#x_salon_program .support_link {
    background-color: #FFF;
    display: block;
    padding: 10px;
    border: 1px solid #000;
    max-width: 480px;
    margin: 20px auto;
    text-align: center;
    min-width: 100px;
}

#program .support_link:hover {
    background-color: #f5f5f5;
    opacity: .7;
}

/* #program .sec_tit, */
#x_salon_program .sec_tit {
    margin-bottom: 30px;
}

.border_btn li:last-child a {
    margin-right: 0;
}

.tab.arrow_link.tab_active {
    background: #cc7f7a;
    color: #FFF;
}

.tab.arrow_link.st_b.tab_active,
.tab_2.arrow_link.st_b.tab_active_2 {
    background-color: #b4cc7a;
}

.tab.arrow_link.st_w.tab_active,
.tab_2.arrow_link.st_w.tab_active_2 {
    background-color: #927acc;
}

.tab.arrow_link.st_c.tab_active,
.tab_2.arrow_link.st_c.tab_active_2 {
    background-color: #7aaacc;
}

.tab.arrow_link.pre.tab_active {
    background-color: #cc7aa7;
}

.tab.arrow_link.tab_active.normal {
    background: #333333;
}

.tab_2.arrow_link.tab_active_2 {
    background: #cc7f7a;
    color: #FFF;
}

.tab.arrow_link.tab_active::after,
.tab_2.arrow_link.tab_active_2::after {
    content: '\f078';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-left: 10px;
}

.bar_tit {
    background: #e0e0e0;
    display: block;
    padding: 8px 40px;
    border-radius: 10px;
    font-size: 2.5rem;
    font-family: "Host Grotesk", sans-serif;
    letter-spacing: 1.5px;
    color: #fff;
}

.bar_tit.bar_tit_popup {
    color: #333;
}

.bar_tit.bar_tit_a,
.area_2 .bar_tit.bar_tit_a {
    background: #c93930;
}

.bar_tit.bar_tit_b,
.area_2 .bar_tit.bar_tit_b {
    background: #b4cc7a;
}

.bar_tit.bar_tit_c,
.area_2 .bar_tit.bar_tit_c {
    background: #7aaacc;
}

.bar_tit.bar_tit_w,
.area_2 .bar_tit.bar_tit_w {
    background: #927acc;
}

.bar_tit.bar_tit_pre {
    background: #cc7aa7;
}

.bar_tit.normal {
    background-color: #e0e0e0;
    color: #000;
}

.area_2 .bar_tit {
    background: #0e262e;
}

.bar_tit span {
    font-size: 2.2rem;
    font-family: "Noto Sans JP", source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    line-height: inherit;
    /* font-weight: 500; */
}

.bar_tit br {
    display: none;
}

dl.pgm_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

dl.pgm_list dt.ssn_box {
    width: calc(100% - 120px);
    background: #FFF;
    box-shadow: 0px 0px 16px -6px rgb(168 168 168 / 60%);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 25px 30px;
    position: relative;
    border-radius: 8px;
}

dl.pgm_list dt.ssn_box.ssn_box_finish {
    background: none;
    box-shadow: none;
    margin-top: 0;
    padding: 30px 0 0;
    letter-spacing: 1.5px;
}

.tab_view_2 dl.pgm_list dt.ssn_box.ssn_box_finish {
    margin-bottom: 40px;
}

dl.pgm_list dd.ssn_time {
    width: 60px;
    margin-right: 60px;
    padding-top: 32px;
    border-right: 4px solid #f1ebe4;
    position: relative;
}

dl.pgm_list dd.ssn_time::after {
    position: absolute;
    content: '●';
    width: 12px;
    height: 12px;
    top: 35px;
    right: -8px;
    font-size: 12px;
}

.ssn_box h4 {
    font-size: 1.8rem;
    font-weight: 700;
}

.freepass_text {
    text-align: right;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.freepass {
    background: #3c6dc8;
    color: #FFF !important;
    padding: 4px 8px;
    font-size: 1rem !important;
    font-weight: bold;
}

.ssn_box h4 a {
    font-weight: 700;
    position: relative;
}

.ssn_box h4 a i::before {
    color: var(--color-txt-orange);
    margin-left: 2rem;
}

.ssn_box h4 span {
    font-family: "Host Grotesk", sans-serif;
    color: var(--color-txt-orange);
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
}

.ssn_box h4 span.freepass {
    position: absolute;
    right: 0;
    top: 0;
}

.ssn_box h4 span span,
.session_detail h3 span span {
    display: inline-block;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.ssn_box h4 span span.program_name,
.session_detail h3 span span.program_name {
    color: var(--color-txt-orange);
    padding: 2px 5px;
    margin-right: 10px;
    border: 1.5px solid var(--color-txt-orange);
}

.ssn_box h4 span span.program_name.special_session,
.session_detail h3 span span.program_name.special_session{
    color: #e0b123;
    border: 1.5px solid #e0b123;
}

.ssn_box h4 span span.g_number,
.session_detail h3 span span.g_number {
    color: #fff;
    background: #cc7f7a;
    padding: 2px 5px;
}

.ssn_box h4 span span.g_number.special_session,
.session_detail h3 span span.g_number.special_session{
        background: #dfb123;
}

.ssn_box h4 span span.g_number.b_stage_number,
.session_detail h3 span span.g_number.b_stage_number {
    background: #b4cc7a;
}

.ssn_box h4 span span.g_number.c_stage_number,
.session_detail h3 span span.g_number.c_stage_number {
    background: #7aaacc;
}

.ssn_box h4 span span.stage_name,
.session_detail h3 span span.stage_name {
    color: #cc7f7a;
    font-size: 1.3rem;
    border-bottom: 2px solid #cc7f7a;
}

.ssn_box h4 span span.stage_name::before,
.session_detail h3 span span.stage_name::before {
    content: '\f3c5';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    padding-right: 5px;
}

.ssn_box h4 span span.stage_name.b_stage,
.session_detail h3 span span.stage_name.b_stage {
    color: #b4cc7a;
    border-bottom: 2px solid #b4cc7a;
}

.ssn_box h4 span span.stage_name.c_stage,
.session_detail h3 span span.stage_name.c_stage {
    color: #7aaacc;
    border-bottom: 2px solid #7aaacc;
}

#program .spk_list .spk_box,
#x_salon_program .spk_list .spk_box {
    width: 23%;
    margin-top: 25px;
    margin-right: 2%;
}

#program .spk_list .spk_box.spk_box2,
#x_salon_program .spk_list .spk_box.spk_box2 {
    width: 48%;
}

#x_salon_program .spk_list .spk_box.spk_box2 {
    display: flex;
}

#program .spk_list .spk_box a,
#x_salon_program .spk_list .spk_box {
    display: flex;
    /* align-items: center; */
}

#program .spk_list .spk_box a img,
#x_salon_program .spk_list .spk_box img {
    max-width: 80px;
    margin-right: 10px;
    margin-bottom: 0;
}

#x_salon_program .spk_list .spk_box img {
    max-width: 70px;
    margin-right: 10px;
    margin-bottom: 0;
}

#program .spk_list .spk_box a dl,
#x_salon_program .spk_list .spk_box dl {
    text-align: left;
}

#program .spk_list li a dl dt,
#x_salon_program .spk_list li dl dt {
    font-size: 1.4rem;
}

#program .spk_list li a dl dt span,
#x_salon_program .spk_list li dl dt span {
    border: 1.5px solid var(--color-txt-orange);
    padding: 1px 4px;
    font-size: 0.8rem;
    margin-left: 10px;
    color: var(--color-txt-orange);
    letter-spacing: 0.05rem;
    font-family: "Host Grotesk", sans-serif;
    vertical-align: middle;
}

#program .spk_list li a dl dd,
#x_salon_program .spk_list li dl dd {
    font-size: 1.1rem;
}

.schedule_day ul.border_btn,
.schedule_day2 ul.border_btn {
    justify-content: flex-end;
    margin: 60px auto 40px;
}

.schedule_day.day1 ul.border_btn {
    /* margin: -11.5% auto 80px; ボタンなしの場合*/
    margin: -10% auto 50px;
    /*ボタンあり*/
    /* margin: 2.5% auto 20px; */
}

#program .spk_list .spk_box a.color_btn.big,
#x_salon_program .spk_list .spk_box a.color_btn.big {
    text-align: center !important;
}

#program h5,
#x_salon_program h5 {
    color: var(--color-txt-orange);
    margin: 30px 0 10px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
}

.program_spo img {
    box-shadow: 0px 0px 7px 1px rgb(213 213 213 / 60%);
    max-width: 185px;
    border-radius: 5px;
}

.schedule_day2 .bar_tit a::after {
    transform: translateY(-50%)rotate(180deg);
}

.schedule_day {
    margin-bottom: 80px;
    position: relative;
    z-index: 1; /* blob_day2::before(z-index:-1 within day2 stacking ctx z-index:0) より前面に保つ */
}

#schedule_day2 {
    padding-top: 100px;
    /*上に余白を付ける*/
    margin-top: -100px;
    /*上の余白を打ち消す*/
}

.program_sup {
    display: flex;
    justify-content: center;
}

.prg_print_link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-left: 10px;
    color: var(--color-txt-orange);
}

.prg_print_link:before {
    content: '';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f1c1';
    margin-right: 7px;
    font-size: 18px;
}

.prg_print_link::after {
    content: '';
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f054';
    margin-left: 10px;
    align-items: center;
}

#program .pgm_imfo_text {
    background: #eaeaea;
    padding: 20px 10px;
    margin-top: 20px;
}

#program .pgm_imfo_text span {
    /* margin-bottom: 10px; */
    display: inline-block;
}

#program .pgm_imfo_text p,
#program .pgm_imfo_text p span {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
}

#program .pgm_imfo_text .program_name {
    color: #d59535;
    padding: 2px 5px;
    margin-right: 10px;
    background: #fff;
    border: 1.5px solid #d59535;
}

#program .pgm_imfo_text .stage_name {
    padding: 2px 5px;
    margin: 0 5px 0 10px;
    background: #cc7f7a;
    color: #fff;
}

#program .pgm_imfo_text .stage_name.b_stage {
    background: #b4cc7a;
}

#program .pgm_imfo_text .stage_name.c_stage {
    background: #7aaacc;
}

#program .pgm_imfo_text br.sp {
    display: none;
}

#program .pgm_imfo_passtext {
    padding: 10px;
    font-size: 1.3rem;
    border: 1.5px solid #d3d3d3;
}

#program .pgm_imfo_passtext p.sub_title {
    margin-bottom: 10px;
    font-weight: 600;
}

#program .pgm_imfo_passtext p.sub_title i {
    margin-right: 5px;
    transform: rotate(146deg);
}

#program .pgm_imfo_passtext li {
    margin-bottom: 10px;
}

#program .pgm_imfo_passtext li:last-child {
    margin-bottom: 0;
}


#program .pgm_imfo_passtext li dt,
#program .pgm_imfo_passtext li dd {
    display: inline;
}

#program .pgm_imfo_passtext li dt {
    font-weight: bold;
}

.com_list {
    display: flex;
    flex-wrap: wrap;
}

.com_list li {
    margin-right: 20px;
}

.com_list li:last-child {
    margin-right: 0;
}

@media screen and (max-width: 1030px) {

    /*  #program .sec_tit{
    margin-bottom: 20px;
    }*/
    .schedule_day.day1 ul.border_btn {
        /* margin-top: -5%; */
        margin-top: 5%;
    }

    #program .border_btn,
    #x_salon_program .border_btn {
        margin-bottom: 20px;
    }

    #program .spk_list .spk_box,
    #x_salonprogram .spk_list .spk_box {
        width: 47%;
    }
}

@media screen and (max-width: 850px) {
    .border_btn {
        width: 100%;
    }

    .border_btn li {
        width: 48%;
        margin-right: 1%;
        margin-bottom: 5px;
    }

    #program .spk_list .spk_box a img,
    #x_salon_program .spk_list .spk_box img {
        max-width: 50px;
    }

    .schedule_day.day1 ul.border_btn {
        margin-top: 0;
    }

    #program .border_btn,
    #x_salon_program .border_btn {
        justify-content: space-between;
        margin-top: 25px;
    }

    .freepass_text {
        text-align: left;
        text-indent: -4.2rem;
        padding-left: 4.5rem;
    }

    #program .support_link {
        width: 60%;
    }

    .program_sup {
        display: block;
    }

    .prg_print_link {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .com_list li {
        margin-bottom: 20px;
    }

    .com_list li:nth-child(2) {
        margin-right: 0;
    }

    .com_list li:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 600px) {

    #program .spk_list .spk_box,
    #program .spk_list .spk_box.spk_box2,
    #x_salon_program .spk_list .spk_box,
    #x_salon_program .spk_list .spk_box.spk_box2 {
        width: 100%;
    }

    .ssn_box h4 {
        font-size: 1.5rem;
    }

    #program .spk_list li a dl dt,
    #x_salon_program .spk_list li dl dt {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    #program .spk_list li a dl dd,
    #x_salon_program .spk_list li dl dd {
        font-size: 0.8rem;
    }

    dl.pgm_list {
        margin-top: 20px;
    }

    dl.pgm_list dd.ssn_time {
        width: 50px;
        margin-right: 25px;
        font-size: 12px;
        padding-top: 28px;
    }

    dl.pgm_list dd.ssn_time::after {
        top: 28px;
    }

    dl.pgm_list dt.ssn_box {
        padding: 15px 20px;
        width: calc(100% - 80px);
    }

    dl.pgm_list dt.ssn_box.ssn_box_finish {
        padding-top: 25px;
    }

    .ssn_box h4 span {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .ssn_box h4 a span {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .bar_tit {
        padding: 10px 20px;
        font-size: 1.8rem;
        line-height: 0.9;
    }

    .bar_tit h3 {
        line-height: 1.2;
    }

    .bar_tit span {
        font-size: 1.5rem;
        /*vertical-align: top;*/
    }

    .bar_tit br {
        display: block;
    }

    .freepass {
        padding: 1px 3px;
    }

    #program .pgm_imfo_text span,
    #x_salon_program .pgm_imfo_text span {
        margin-bottom: 10px;
    }

    #program .pgm_imfo_text .stage_name,
    #x_salon_program .pgm_imfo_text .stage_name {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {

    #program .pgm_imfo_text br.sp,
    #x_salon_program .pgm_imfo_text br.sp {
        display: block;
    }

    #program .pgm_imfo_passtext li dt,
    #program .pgm_imfo_passtext li dd,
    #x_salon_program .pgm_imfo_passtext li dt,
    #x_salon_program .pgm_imfo_passtext li dd {
        display: block;
    }

    #program .pgm_imfo_passtext li dd,
    #x_salon_program .pgm_imfo_passtext li dd {
        margin-left: 15px;
    }

    /* DAY1/DAY2 タイトルバーを1行に収める */
    .bar_tit {
        padding: 8px 14px;
    }

    .bar_tit h3 {
        font-size: 1.4rem;
        white-space: nowrap;
    }

    .bar_tit span {
        font-size: 1.2rem;
    }
}


/* 詳細 */

.c_wrap.session_detail {
    padding: 50px;
    margin-bottom: 40px;
}

.session_detail .day_time {
    justify-content: flex-start;
}

.session_detail .day_time li {
    margin: 0 10px 20px 0;
}

.session_detail .session_tit {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.session_detail h3 {
    margin: 40px 20px 20px 0;
    font-weight: bold;
}

.session_detail h3 span {
    font-family: "Host Grotesk", sans-serif;
    color: var(--color-txt-orange);
    font-size: 1.5rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 7px;
}

.session_detail p {
    line-height: 2 !important;
    margin-bottom: 20px;
}

.session_detail_spk {
    margin: 60px auto 20px;
    justify-content: flex-start;
}

.session_detail_spk li {
    width: 45%;
    margin-right: 4%;
    margin-bottom: 3%;
}

.session_detail_spk li:nth-child(2n) {
    margin-right: 0;
}

.session_detail_spk li .speaker_img {
    width: 23%;
}

.session_detail_spk li dl {
    width: calc(100% - 28%);
    margin-left: 3%;
}

.session_detail_spk li dl dt {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.6rem;
}

.session_detail_spk li dl dt span {
    border: 1.5px solid var(--color-txt-orange);
    padding: 1px 4px;
    font-size: 0.8rem;
    margin-left: 10px;
    color: var(--color-txt-orange);
    letter-spacing: 0.05rem;
    font-family: "Host Grotesk", sans-serif;
    vertical-align: middle;
}

.session_detail_spk li dl dd {
    font-size: 1.3rem;
}

.session_detail_spk li dl dd:last-child {
    text-align: right;
    margin-top: 10px;
}

.session_detail_spk li dl dd img {
    max-width: 100px;
    border: 1px solid #f2f2f2;
}

.session_detail h5 {
    color: var(--color-txt-orange);
    margin-bottom: 10px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
}

.session_detail .program_spo.flex {
    justify-content: flex-start;
}

.session_detail .program_spo.flex p {
    margin-left: 20px;
    font-weight: bold;
}

.session_detail_com {
    justify-content: flex-start;
}

.session_detail_com li {
    margin-right: 20px;
    margin-bottom: 20px;
}

.session_detail_com li:last-child {
    margin-right: 0;
    margin-bottom: 0;
}


@media screen and (max-width: 850px) {
    .session_detail_spk li {
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .c_wrap.session_detail {
        padding: 20px;
    }

    .session_detail_spk li dl dd img {
        max-width: 70px;
    }

    .session_detail .program_spo.flex p {
        margin-left: 0;
        margin-top: 1rem;
    }

    .program_spo img {
        max-width: 100px;
    }

    #program h5 {
        font-size: 1rem;
    }

    .session_detail .session_tit {
        flex-direction: column;
        align-items: normal;
    }

    .session_detail h3 {
        margin: 20px 0;
        order: 2;
    }

    .session_detail .share_btn.flex {
        order: 1;
        margin-top: 10px;
        margin-bottom: 0;
    }

    #program .support_link {
        padding: 2%;
        width: 80%;
        font-size: 3vw;
    }

    .session_detail_com li {
        margin-right: 10px;
        margin-bottom: 10px;
        /*width: 100%;*/
    }
}


/* ---------------------------------------------------------
    211206 program
----------------------------------------------------------*/


/*.schedule_day.day1 ul.border_btn {
    display: none;
}
.schedule_day.day1 .pgm_list dt {
    width: 100%!important;
}
.schedule_day.day1 dl.pgm_list dd.ssn_time {
    display: none;
}
.schedule_day2.day2 .flex.border_btn,
.schedule_day2.day2 dl.pgm_list dd.ssn_time {
    display: none;
}
.schedule_day2.day2{
    margin-top: 60px;
}
.schedule_day2.day2 .pgm_list dt {
    width: 100%!important;
}*/


/*.ssn_box h4 a{
    pointer-events: none;
}*/


/* ---------------------------------------------------------
    ADVISORY BOARD
----------------------------------------------------------*/


/* #advisoryboard dl{
    color: #FFF;
} */




/* ---------------------------------------------------------
    pass
----------------------------------------------------------*/

#pass {
    background: var(--color-bg-beige);
}

#pass h3 {
    font-family: "Host Grotesk", sans-serif;
    text-align: left;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--color-txt-orange);
}

#pass .scroll_table_wrap {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#pass .supplement_txt {
    font-size: 1.3rem;
    text-align: right;
}

/* partner_pass */
#pass .partner_pass h3 {
    color: #c93930;
}

#pass .partner_pass .scroll_table th .tag.red {
    background: #c93930;
}

#pass .partner_pass .color_btn {
    background: #c93930;
}

/* brand_pass */
#pass .brand_pass h3 {
    color: #10313d;
}

#pass .brand_pass .color_btn {
    background: #10313d;
}

#pass .brand_pass .scroll_table th .tag.green {
    background: #10313d;
}



/* ---------------------------------------------------------
    news
----------------------------------------------------------*/

#news .news_list {
    display: flex;
}


/*TOPのみスライダー*/

.page_home #news .news_list {
    min-width: 200%;
    margin-bottom: 20px;
}


/*scroll-bar*/

.page_home #news .news_list_wrap {
    width: calc((100vw - 73.75vw)/2 + 100%);
    width: 200%;
    overflow-x: auto;
}

.page_home #news .news_list_wrap::-webkit-scrollbar {
    width: 10px;
    background: #0b0d16;
}

.page_home #news .news_list_wrap::-webkit-scrollbar:horizontal {
    height: 10px;
    background: #0b0d16;
}

.page_home #news .news_list_wrap::-webkit-scrollbar-thumb {
    background: #3c3e51;
    border-radius: 5px;
}

.page_home #news .news_list_wrap::-webkit-scrollbar-thumb:horizontal {
    background: #3c3e51;
    border-radius: 5px;
}


/*scroll-bar*/

#news .news_list li {
    width: 23em;
    margin-right: 1.1em;
    background: #fff;
}

#news .news_list li a {
    display: block;
}

#news .news_list li a .txt h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

#news .news_list li a .txt {
    padding: 10%;
    font-size: 1.2rem;
}

#news .news_list li a .txt p {
    line-height: 2.5;
    margin-top: 20px;
}


/* ---------------------------------------------------------
    outline
----------------------------------------------------------*/

/* #outline {
    background: url(../images/top/outline_bg.jpg)no-repeat left top;
    background-size: cover;
} */

#outline .colum_2_table {
    border-radius: 10px;
    overflow: hidden; /* 子の dt/dd 背景を角丸でクリップ（これが無いと角丸が見えない） */
}


/* ---------------------------------------------------------
    contact
----------------------------------------------------------*/

#contact .color_btn {
    margin-top: 30px;
    border-radius: 10px;
}

#contact .widget_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

#contact .widget_list li {
    width: 48%;
    max-height: 500px;
    background: #fff;
    border: solid 1px #d3d3d3;
    overflow: hidden;
}

#contact .widget_list li:last-child {
    overflow-y: scroll;
}


/* ---------------------------------------------------------
    footer
----------------------------------------------------------*/

footer {
    background: #333333;
    color: #fff;
    position: relative;
    z-index: 1;
}

footer a {
    color: #fff;
}

footer .logo_wrap {
    width: 200px;
    font-size: 1.2rem;
}

footer .logo_wrap dl {
    display: flex;
    margin: 30px 0 20px;
}

footer .logo_wrap dl dt:after {
    content: "・";
    color: var(--color-txt-orange);
}

footer .c_wrap.wide {
    padding: 120px 50px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    letter-spacing: 0.1em;
}

footer .copy {
    width: 100%;
    text-align: right;
    font-size: 1.2rem;
    color: #797979;
    /* margin-top: 50px; */
    margin-top: 20px;
}

footer .right_box {
    width: calc(100% - 330px);
    position: relative;
    z-index: 1;
}


/* footer nav {
    width: calc(100% - 300px);
    position: relative;
    z-index: 1;
} */

footer nav>ul {
    display: flex;
    flex-wrap: wrap;
}

footer nav>ul>li:before {
    content: "・";
    color: var(--color-txt-orange);
    padding-right: 10px;
}

footer nav>ul>li {
    margin-right: 40px;
    font-size: 1.4rem;
    margin-bottom: 50px;
}

footer nav>ul>li>ul {
    margin: 20px 0 0 30px;
    font-size: 1.1rem;
}

footer nav>ul>li>ul>li {
    margin-bottom: 8px;
}

footer .archive_area {
    margin-top: 30px;
    margin-left: 10px;
    font-size: 1.4rem;
}

footer .archive_area ul {
    display: flex;
    flex-wrap: wrap;
}

footer .archive_area ul li {
    margin-right: 5%;
    margin-bottom: .5em;
}

#page_top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333333;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 10px;
    box-shadow: 0px 1px 16px 0px rgb(255 255 255 / 15%);
}

#page_top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    opacity: 0.7;
}

@media screen and (max-width: 850px) {
    #outline .sec_tit br {
        display: none;
    }

    .page_home #news .tit_wrap {
        margin-bottom: 40px;
    }

    #news .news_list li a .txt {
        padding: 8%;
    }

    .page_under #news .news_list li {
        width: 47%;
        margin-right: 3%;
    }

    .page_under #news .news_list li:nth-child(3n) {
        margin-right: 3%;
    }

    .page_under #news .news_list li:nth-child(2n) {
        margin-right: 0;
    }

    footer .c_wrap.wide {
        padding: 60px 40px;
    }

    footer .right_box {
        width: 100%;
        margin-top: 50px;
    }

    /* footer nav {
    width: 100%;
    margin-top: 50px;
  } */
    footer .copy {
        margin-top: 0;
    }
}

@media screen and (max-width: 480px) {
    #mainv .c_wrap {
        display: block;
        padding: 20px;
        padding-top: 0;
    }

    #mainv .c_wrap ul {
        width: 90%;
        margin: auto;
    }

    #mainv .c_wrap figure {
        width: 100%;
        margin: 50px 0 -150px;
        margin-top: 30px;
    }

    .homeHero_scroll {
        display: none;
    }

    .c_wrap.wide {
        padding: 60px 20px;
    }

    #news .news_list li a .txt h3 {
        margin-bottom: 10px;
    }

    #news .news_list li a .txt p {
        margin-top: 10px;
        line-height: 2;
    }

    .page_under #news .news_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    #outline {
        background-position: -110px;
    }

    footer .c_wrap.wide {
        padding: 60px 20px;
    }

    footer a.logo img {
        width: 150px;
        height: auto;
    }

    footer nav>ul>li {
        width: 100%;
        margin-bottom: 20px;
    }

    #contact .widget_list li {
        width: 100%;
        min-height: 400px;
    }

    #contact .widget_list li:last-child {
        margin-top: 30px;
    }
}


/* ---------------------------------------------------------
    下層
----------------------------------------------------------*/

.page_under p {
    line-height: 2;
}

.summary_cont {
    line-height: 1.5 !important;
    margin-top: 10px;
    font-size: 14px;
}

@media screen and (max-width: 480px) {
    main.page_under {
        margin-top: 50px;
    }
}


/* ---------------------------------------------------------
    news
----------------------------------------------------------*/

.page_under #news .news_list {
    flex-wrap: wrap;
}

.page_under #news .news_list li {
    flex-wrap: wrap;
}

.page_under #news .news_list li {
    width: 31.3%;
    margin-right: 3%;
    margin-bottom: 30px;
}

.page_under #news .news_list li:nth-child(3n) {
    margin-right: 0;
}


/*詳細*/

.news_cont h2 {
    margin: 50px 0 30px;
}

.news_cont .date {
    font-family: "Host Grotesk", sans-serif;
    font-weight: 400;
    margin-bottom: 50px;
    display: block;
    font-size: 1.8rem;
    position: relative;
}

.news_cont .date:before {
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f303';
    margin-right: 10px;
}

@media screen and (max-width: 480px) {
    .news_cont h2 {
        margin: 30px 0 20px;
        font-size: 1.8rem;
    }

    .news_cont .date {
        margin-bottom: 30px;
    }
}


/* ---------------------------------------------------------
    speaker
----------------------------------------------------------*/


/*詳細*/

.c_wrap.speaker_detail {
    text-align: left;
    padding: 50px;
}

.speaker_img {
    width: 30%;
    text-align: center;
}

.speaker_img .speaker_detail_img {
    max-width: 250px;
    width: 100%;
    border-radius: 1000px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 16px 0px rgb(48 48 48 / 15%);
}

.speaker_img .speaker_detail_logo {
    max-width: 250px;
    width: 80%;
    border: 1px solid #f2f2f2;
    /*box-shadow: 0px 0px 7px 1px rgb(213 213 213 / 60%);*/
}

.speaker_detail dl dt {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.speaker_detail dl dd {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.speaker_detail dl dd.person_profile {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-txt-orange);
    line-height: 1.8;
}

.speaker_detail dl dd.person_profile a {
    text-decoration: underline;
}

.speaker_detail dl dd.person_comment {
    margin-top: 30px;
    box-sizing: border-box;
    padding: 20px;
    background: #fff0d9;
    position: relative;
    z-index: 5;
}

.speaker_detail dl dd.person_comment h2 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-txt-orange);
}

.speaker_detail dl dd.person_comment p {
    line-height: 2;
    font-weight: 600;
    color: #4e4e4e;
    margin-top: 0;
}

.speaker_detail dl dd.person_comment p:before {
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 10px;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    z-index: -1;
}

.speaker_detail dl dd.person_comment p:after {
    display: inline-block;
    position: absolute;
    bottom: 5px;
    right: 15px;
    text-align: center;
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    z-index: -1;
}

.speaker_txt {
    width: calc(100% - 35%);
    margin-left: 5%
}

.speaker_txt .bg_gray {
    padding: 20px;
    margin-top: 20px;
}

.speaker_txt .bg_gray dt {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.speaker_txt .bg_gray dd i {
    color: var(--color-txt-orange);
    margin-left: 2rem;
}

@media screen and (max-width: 480px) {

    /*  .speaker_detail .flex{
    display: block;
    }*/
    .speaker_img {
        width: 100%;
        margin-bottom: 40px;
    }

    .speaker_txt {
        width: 100%;
        margin-left: 0;
    }

    .speaker_img .speaker_detail_img,
    .speaker_img .speaker_detail_logo {
        max-width: 250px;
    }

    .c_wrap.speaker_detail {
        padding: 30px;
    }

    .speaker_detail dl {
        width: 100%;
        /*margin-top: 20px;*/
        margin-left: 0;
    }

    .speaker_detail dl dt {
        margin-bottom: 10px;
    }

    .speaker_detail dl dd.person_profile {
        margin-top: 10px;
    }

    /*  .c_wrap.speaker_detail .tit_wrap{
    padding-top: 60px;
    }*/
}


/* ---------------------------------------------------------
    privacypolicy
----------------------------------------------------------*/

#privacypolicy .child li {
    margin-top: 10px;
    text-indent: -1.5em;
    padding-left: 1.5em;
}

.browser {
    font-size: 1.5rem;
    padding: 15px;
    color: #333;
    border: 1px solid #000000;
    margin-top: 40px;
    margin-bottom: 60px;
}

@media screen and (max-width: 850px) {
    .browser {
        font-size: 1.3rem;
    }
}


/* ---------------------------------------------------------
    ポップアップ
----------------------------------------------------------*/


/*.modal {
    box-sizing: border-box;
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}*/


/*.modal_bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}*/


/*.modal_content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    max-height: 80%;
}*/


/*.modal_sub_content {
    background-color: #fff;
    padding: 30px;
}*/


/*.modal_sub_content figure {
    width: 80%;
    margin: 0 auto 20px;
}*/


/*.modal_sub_content figure::after{
    content: none;
}
#close{
    position: absolute;
    right: 0;
    top: -2em;
    z-index: 999;
    color: #fff;
    background: #01276B;
    width: 2em;
    height: 2em;
    text-align: center;
}
*/


/*.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 40px;
    position: absolute;
    width: 70%;
    overflow-y: scroll;
}
.js-modal-close.color_btn.big:after{
    content: '\f00d';
}*/


/*@media screen and (max-width: 480px){
    .modal__content{
    width: 90%;
    height: 90%;
    padding: 20px 10px;
    }

}
*/

.share_btn.flex {
    justify-content: flex-end;
    margin-bottom: 10px;
    min-width: 100px;
}

.share_btn.flex li {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.share_btn.flex li:first-child {
    margin-right: 20px;
}

.share_btn.flex li img {
    max-width: 40px;
}

@media screen and (max-width: 480px) {
    .share_btn.flex {
        display: flex;
    }

    .share_btn.flex li:first-child {
        margin-right: 10px;
    }

    .share_btn.flex li img {
        max-width: 30px;
    }
}


/* ---------------------------------------------------------
    MV下　バナー
----------------------------------------------------------*/

section#info_banner {
    /* background-color: var(--color-txt-navy); */
}

section#info_banner .c_wrap {
    padding: 50px 20px 0;
}


/*section#about .c_wrap {
    padding-top: 60px;
}*/

section#info_banner a {
    display: block;
}

section#info_banner a:hover {
    opacity: .7;
    transition: .2s;
}

section#info_banner figure {
    margin-left: auto;
    margin-right: auto;
    /* min-width: 150px; */
    max-width: 770px;
}

@media screen and (max-width: 850px) {
    section#info_banner .c_wrap {
        /* padding: 40px 20px 0px; */
    }

    section#about .c_wrap {
        padding-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    section#info_banner .c_wrap {
        /* padding: 50px 20px 0px; */
    }

    section#info_banner figure {
        margin-left: auto;
        margin-right: auto;
        min-width: 150px;
        max-width: 380px;
    }
}


/* ---------------------------------------------------------
    スポンサー・パートナー
----------------------------------------------------------*/

#sponsors .scroll_table tbody th .pass_end,
#sponsorship .scroll_table tbody th .pass_end,
#sponsorship .scroll_table tbody td .pass_end {
    /* margin-left: 2.3rem; */
    margin-top: 5px;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 3px;
    font-weight: bold;
}

#sponsorship .scroll_table tbody td .pass_end {
    padding: 5px 10px;
    font-size: 1.2rem;
}

#sponsors h3 {
    font-family: "Host Grotesk", sans-serif;
    text-align: center;
    display: block;
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--color-txt-orange);
}

#sponsors h3.tit_ja {
    font-family: "Noto Sans JP", source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    font-size: 2rem;
    font-weight: bold;
}

.spo_diamond {
    text-align: center;
    margin: 0 auto 60px;
}

.spo_diamond a {
    display: inline-block;
    /* pointer-events: none; */
}

.spo_diamond figure {
    max-width: 470px;
}

.spo_diamond figure img,
.spo li figure img {
    box-shadow: 0px 0px 7px 1px rgb(213 213 213 / 60%);
    border-radius: 8px;
}

.spo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.spo li {
    margin-right: 3%;
}

.spo li:last-child {
    margin-right: 0 !important;
}

.spo li.att_list_item:nth-child(4n) {
    margin-right: 0;
}


.spo_diamond p,
.spo li p {
    margin-top: 12px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
}


/*.spo li a{
    pointer-events: none;
}*/

.spo.spo_premium li {
    width: 31%;
    max-width: 380px;
    margin-bottom: 3%;
}

/* .spo.spo_premium li:nth-child(2n) {
    margin-right: 0;
} */
.spo.spo_premium li:last-child {
    margin-right: 0;
}

.spo.spo_gold li {
    /* width: 31%; */
    width: 28%;
    max-width: 350px;
}

.spo.spo_gold li:first-child {
    margin-left: 3%;
}


.spo.spo_gold li {
    margin-bottom: 3%;
}

.spo.spo_gold li:only-child {
    margin-left: 0;
}

.spo.spo_gold li:first-child:not(:only-child) {
    margin-left: 3%;
}


.spo_normal li {
    width: 22.5%;
    max-width: 300px;
    margin-bottom: 3%;
}



@media screen and (max-width: 480px) {
    .spo.spo_premium li {
        width: 48%;
        margin-bottom: 5%;
    }

    .spo.spo_premium li:nth-child(2n) {
        margin-right: 0 !important;
    }

    .spo.spo_gold li:nth-child(2n) {
        margin-right: 0 !important;
    }

    .spo.spo_gold li:first-child {
        margin-left: 0 !important;
    }


    .spo.spo_gold li {
        width: 48%;
        margin-bottom: 5%;
    }

    .spo_normal li {
        width: 35%;
        margin-bottom: 5%;
    }

    .spo_normal li:nth-child(2n) {
        margin-right: 0 !important;
    }

    .spo_normal li:nth-child(odd) {
        margin-right: 5%;
    }

    .spo.spo_normal li p {
        margin-top: 5px;
    }
}


/*詳細*/

.sponsor_img img {
    max-width: 300px;
    width: 100%;
    border: 1px solid #f2f2f2;
}

.sponsor_txt {
    width: calc(100% - 350px);
    margin-left: 5%
}

.sponsor_txt .bg_gray {
    padding: 20px;
    margin-top: 20px;
}

.sponsor_txt .bg_gray dt {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sponsor_txt .bg_gray dd i {
    color: var(--color-txt-orange);
    margin-left: 2rem;
}

@media screen and (max-width: 768px) {
    .sponsor_img {
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .sponsor_txt {
        width: 100%;
        margin-left: 0;
    }

    .sponsor_img .sponsor_detail_logo {
        max-width: 250px;
    }

    .c_wrap.sponsor_detail {
        padding: 30px;
    }

    .sponsor_detail dl {
        width: 100%;
        /*margin-top: 20px;*/
        margin-left: 0;
    }

    .sponsor_detail dl dt {
        margin-bottom: 10px;
    }

    .sponsor_detail dl dd.person_profile {
        margin-top: 10px;
    }
}

dt.newstxt_two_lines {
    font-size: 1.3rem;
}

.session_detail .pass_btn {
    max-width: 400px;
}

.session_detail .pass_btn i {
    margin-right: 8px;
}


/* ---------------------------------------------------------
    セッション スライダー
----------------------------------------------------------*/

.session_slider .c_wrap {
    padding: 50px 40px;
    max-width: 1100px;
}

.session_slider .c_wrap h2 {
    margin-bottom: 20px;
    margin-left: 10px;
}

.session_slider .c_wrap ul li {
    margin: 4px 10px;
}

.session_slider .c_wrap ul li:hover {
    opacity: 0.8;
}

.session_slider .c_wrap ul li a figure img {
    box-shadow: 0px 0px 3px 2px rgb(216 216 216 / 60%)
}

.slick-prev:before,
.slick-next:before {
    color: inherit;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 700;
    color: var(--color-txt-orange) !important;
    font-size: 30px;
}

.slick-next {
    right: -35px;
}

.slick-prev {
    left: -35px;
}

.slick-prev:before {
    content: '\f053' !important;
}

.slick-next:before {
    content: '\f054' !important;
}

.slick-dots {
    bottom: -40px !important;
}

.slick-dots li.slick-active button:before {
    color: var(--color-txt-orange) !important;
}

.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before {
    color: var(--color-txt-orange) !important;
}

.slick-slide li:not(:first-child) {
    display: none;
}

.slick-slide.slick-initialized li {
    display: block;
}

@media screen and (max-width: 480px) {
    .session_slider .c_wrap {
        padding: 20px 40px;
    }

    .session_slider .c_wrap h2 {
        margin-bottom: 10px;
    }

    .slick-dots {
        bottom: -30px !important;
    }

    .slick-dots li {
        width: 10px !important;
    }
}

#outline .two_links {
    line-height: 3rem;
}

#outline .two_links .sub_link {
    font-size: 1.2rem;
    text-decoration: none;
    border: none;
    background: #f0f0f0;
    padding: 0px 10px;
    display: inline-block;
    margin-top: 15px;
    border-radius: 100px;
}

.session_speaker_comingsoon {
    pointer-events: none !important;
}


/* ---------------------------------------------------------
終了告知/ thanks_txt
----------------------------------------------------------*/

#thanks_txt {
    /* background: var(--color-bg-navy);
  color: #FFF; */
}

/* 次回開催バナー */
.next_event_banner {
    background: linear-gradient(135deg, #0F357A 0%, #2a5ba8 50%, #0F357A 100%);
    color: #fff;
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.next_event_banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(213, 149, 52, 0.12) 100%);
    pointer-events: none;
}

.next_event_label {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--color-txt-orange);
    border: 1px solid var(--color-txt-orange);
    padding: 4px 16px;
    margin-bottom: 16px;
}

.next_event_title {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    line-height: 1.6;
}

.color_btn.next_event_btn {
    background: #AD2925;
    font-size: 1.6rem;
    font-weight: bold;
}

.next_event_btn:hover {
    opacity: 0.85;
}

@media screen and (max-width: 768px) {
    .next_event_banner {
        padding: 30px 20px;
    }

    .next_event_title {
        font-size: 2rem;
    }

    .next_event_btn {
        font-size: 1.4rem;
        padding: 12px 30px;
    }
}

@media screen and (max-width: 480px) {
    .next_event_banner {
        padding: 24px 16px;
    }

    .next_event_title {
        font-size: 1.7rem;
    }

    .next_event_btn {
        font-size: 1.3rem;
        padding: 10px 24px;
        display: block;
    }
}

#thanks_txt .read_txt {
    margin-bottom: 0;
    background: #f8f8f8;
    padding: calc(3% - 10px) 3%;
    border: 2px solid #000;
    line-height: 1.8;
}

#thanks_txt .read_txt span,
#archive_list .read_txt span {
    /* margin-top: 0.8em; */
    line-height: 2;
    display: inline-block;
}

#thanks_txt .read_txt .ttl,
#archive_list .read_txt .ttl {
    font-weight: bold;
    margin-bottom: 10px;
}

#thanks_txt .c_wrap {
    padding: 30px;
    max-width: 1280px;
    margin-bottom: 20px;
    /* margin-top: -30px; */
}

#thanks_txt .read_txt .right,
#archive_list .read_txt .right {
    display: block;
    text-align: right;
}

@media screen and (max-width: 768px) {
    #thanks_txt .c_wrap {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    #thanks_txt .c_wrap {
        padding: 30px 20px;
        margin-bottom: 0;
        margin-top: 0;
    }

    #thanks_txt .read_txt {
        padding: 5%;
        line-height: 2;
    }
}




/* セッションアーカイブ */
#session_arichive .ssn_arc_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#session_arichive .ssn_arc_list_item {
    width: calc((100% - 30px)/2);
    box-shadow: 3px 3px 10px 1px rgb(48 48 48 / 15%);
    margin-bottom: 30px;
    margin-top: 10px;
}

#session_arichive p {
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    #session_arichive .ssn_arc_list_item {
        width: 100%;
        margin-bottom: 10px;
    }

    #session_arichive p {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {}




/* xサロン */
.page_under p.lh15 {
    line-height: 1.5;
}

#x_salon .color_btn.big {
    margin: 10px;
}

.main_tit {
    font-weight: 800;
    font-style: normal;
    margin-bottom: 20px;
    font-size: 2.8rem;
    border-left: 0;
    padding-left: 0;
}

.sub_tit {
    font-size: 1.9rem;
    line-height: 1.6;
    font-weight: bold;
}

a.under_page_link {
    max-width: 850px;
    width: 90%;
    margin: 0 auto 80px;
    /* pointer-events: none; */
}

/* #about .c_wrap {
    padding: 70px 50px;
} */

.page_under dd figure {
    max-width: 100px;
}

#x_salon .colum_2_table dt {
    padding: 25px 18px;
}

.page_under dd.flex {
    align-items: center;
    justify-content: left;
}

.page_under dd.flex a {
    margin-left: 15px;
    border: #dcdcdc solid 1px;
}

#x_salon #archive_list.read_txt {
    background: #f8f8f8;
    padding: calc(3% - 10px) 3%;
    border: 2px solid #000;
    line-height: 1.8;
    max-width: 1000px;
    margin: 45px auto;
}

#x_salon #archive_list .flex {
    justify-content: left;
    flex-wrap: wrap;
}

#x_salon #archive_list dt {
    font-size: 1.2em;
    font-weight: 800;
}

#x_salon #archive_list dd {
    margin-right: 1vw;
    font-size: 1.1em;
}

#x_salon #archive_list dd:last-child {
    margin-right: 0;
}

#x_salon #archive_list dd span {
    font-size: 1.2rem;
    margin-left: 10px;
    color: #5e5e5e;
}


@media screen and (max-width:768px) {
    a.under_page_link {
        max-width: 850px;
        width: 90%;
        margin: 0 auto 50px;
    }
}

@media screen and (max-width:695px) {
    .page_under dd.flex a {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width:480px) {
    a.under_page_link {
        max-width: 850px;
        width: 90%;
        margin: 0 auto 40px;
    }

    .page_under dd.flex {
        padding: 15px;
    }

}

/* 京都サイト バナー */
.fixed_kyoto {
    position: fixed;
    bottom: 60px;
    right: 10px;
    width: 300px;
}

@media screen and (max-width:480px) {
    .fixed_kyoto {
        width: 150px;
    }
}



/* Xsalon延期について */
.attention_txt {
    display: block;
    font-size: 1.5rem;
    color: #fa0000;
    font-weight: bold;
    text-indent: -1.5rem;
    padding-left: 1.5rem;
}

h2 span.attention_txt {
    font-size: 1.8rem;
    text-indent: -1.8rem;
    padding-left: 1.8rem;
}

.del {
    position: relative;
}

.del:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: -2px;
    border-top: solid 1px #fa0000;
    border-bottom: solid 1px #fa0000;
    position: absolute;
    left: 0;
    top: 50%;
}

/* ==============================
    オレンジぼかし円デコレーション
    上:#ea5514 → 下:#e8d1c7 グラデーション
    ::before → 右上 / 左下 / 右下
    ::after  → 左下（::before と共存が必要な pass セクション用）
============================== */
.blob_tr,
.blob_bl,
.blob_br {
    position: relative;
    isolation: isolate; /* スタッキングコンテキストを作り、::before z-index:-1 の基準にする */
}

.blob_tr::before,
.blob_bl::before,
.blob_br::before {
    content: '';
    display: block;
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #ea5514, #e8d1c7);
    filter: blur(30px);
    pointer-events: none;
    z-index: -1; /* コンテンツより背面・セクション背景より前面 */
}

/* 右上 */
.blob_tr::before {
    top: -120px;
    right: -120px;
}

/* 左下（::before 使用） */
.blob_bl::before {
    bottom: -200px;
    left: -200px;
    top: auto;
    right: auto;
}

/* 右下（::before 使用） */
.blob_br::before {
    bottom: -200px;
    right: -200px;
    top: auto;
    left: auto;
}

/* 左下（::after 使用 ― blob_tr と同じ要素で左下も必要な場合） */
.blob_bl_after {
    position: relative;
    isolation: isolate;
}

.blob_bl_after::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    width: 350px !important;
    height: 350px !important;
    border-radius: 50% !important;
    background-image: linear-gradient(to bottom, #ea5514, #e8d1c7) !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    filter: blur(30px) !important;
    pointer-events: none !important;
    z-index: -1 !important; /* コンテンツより背面 */
    bottom: -210px !important;
    left: -160px !important;
    top: auto !important;
    right: auto !important;
}

/* DAY2 エリア左側のオレンジアクセント（bar_tit の背景に敷く） */
.schedule_day2.blob_day2 {
    position: relative;
    z-index: 0; /* スタッキングコンテキストを生成し、::before z-index:-1 の基準にする */
}

.schedule_day2.blob_day2::before {
    content: '';
    display: block;
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #ea5514, #e8d1c7);
    filter: blur(30px);
    pointer-events: none;
    z-index: -1; /* schedule_day2 内で最背面（コンテンツの後ろ） */
    left: -330px;
    top: -100px;
}

/* ==============================
    隣接セクションへの blob 侵入防止
    program の右上 blob が about に侵入しないように
    pass の右上 blob が advisoryboard に侵入しないように
    pass の左下 blob が sponsors に侵入しないように
============================== */
#about,
#advisoryboard,
#sponsors,
#outline {
    z-index: 2;
}

/* #sponsors は background 未設定（透明）のため pass の blob が透けて見える。
   body の白を明示して blob を覆う */
#sponsors {
    background: #fff;
}

/* ==============================
    blob レスポンシブ対応
============================== */

/* ── blob_tr / blob_bl / blob_br の共通サイズ縮小 ── */
@media screen and (max-width: 1200px) {
    .blob_tr::before,
    .blob_bl::before,
    .blob_br::before {
        width: 260px;
        height: 260px;
    }
    .blob_tr::before {
        top: -90px;
        right: -90px;
    }
    .blob_bl::before {
        bottom: -150px;
        left: -150px;
    }
    .blob_br::before {
        bottom: -150px;
        right: -150px;
    }
}

@media screen and (max-width: 850px) {
    .blob_tr::before,
    .blob_bl::before,
    .blob_br::before {
        width: 180px;
        height: 180px;
    }
    .blob_tr::before {
        top: -60px;
        right: -60px;
    }
    .blob_bl::before {
        bottom: -100px;
        left: -100px;
    }
    .blob_br::before {
        bottom: -100px;
        right: -100px;
    }
}

@media screen and (max-width: 480px) {
    .blob_tr::before,
    .blob_bl::before,
    .blob_br::before {
        width: 120px;
        height: 120px;
    }
    .blob_tr::before {
        top: -40px;
        right: -40px;
    }
    .blob_bl::before {
        bottom: -60px;
        left: -60px;
    }
    .blob_br::before {
        bottom: -60px;
        right: -60px;
    }
}

/* ── blob_day2::before ── */
@media screen and (max-width: 1200px) {
    .schedule_day2.blob_day2::before {
        width: 260px;
        height: 260px;
        left: -220px;
        top: -80px;
    }
}

@media screen and (max-width: 850px) {
    .schedule_day2.blob_day2::before {
        width: 180px;
        height: 180px;
        left: -130px;
        top: -60px;
    }
}

@media screen and (max-width: 480px) {
    .schedule_day2.blob_day2::before {
        width: 120px;
        height: 120px;
        left: -80px;
        top: -40px;
    }
}

/* ── blob_bl_after::after（pass セクション 左下） ──
   小さい画面ではボタンに被るため段階的に縮小・非表示 */
@media screen and (max-width: 1200px) {
    .blob_bl_after::after {
        width: 260px !important;
        height: 260px !important;
        bottom: -240px !important;
        left: -180px !important;
    }
}

@media screen and (max-width: 850px) {
    .blob_bl_after::after {
        width: 220px !important;
        height: 220px !important;
        bottom: -260px !important;
        left: -180px !important;
    }
}

@media screen and (max-width: 480px) {
    .blob_bl_after::after {
        width: 120px !important;
        height: 120px !important;
        bottom: -140px !important;
        left: -100px !important;
    }
}