@charset "utf-8";

:root {
    /* メインカラー */
    --color-main: #AD2925;
    --color-sub: #0F357A;
    --color-accent1: #C45C4A;
    --color-accent2: #5A8A3D;
    --color-accent3: #3D6B8A;
    --color-text: #333333;

    /* グレー系カラー（薄い→濃い） */
    --color-gray-pale: #f8f8f8;
    --color-gray-light: #f2f2f2;
    --color-gray-soft: #e0e0e0;
    --color-gray-medium: #d3d3d3;
    --color-gray-dark: #989898;
    --color-gray-darker: #777777;

    /* たまに使用するカラー */
    --color-blue-accent: #1155d0;
    --color-slate: #556379;
    --color-navy: #1c1e2a;
    --color-scrollbar-bg: #0b0d16;
    --color-scrollbar-thumb: #3c3e51;
    --color-gold: #e0b123;
    --color-alert: #fa0000;

    --white: #ffffff;
    --black: #000000;
}

* {
    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: source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    font-weight: 400;
    font-style: normal;
    max-width: 2000px;
    background: var(--white);
    color: var(--color-text);
    font-size: 1.6rem;
    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: 1100px;
    margin: auto;
    padding: 120px 50px;
}

.c_wrap.wide {
    padding: 50px;
    max-width: 1280px;
}

a {
    color: var(--color-text);
    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 var(--color-gray-darker);
}

.block {
    display: block;
}

.read_txt {
    margin-bottom: 40px;
    line-height: 2;
}

.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 var(--color-blue-accent);
    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: var(--color-blue-accent);
    color: var(--white);
    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: myriad-pro, sans-serif;
    font-weight: 400;
    font-size: 3.6rem;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sec_tit span.ja {
    font-family: source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    padding-bottom: 0.2em;
    margin-left: 0.5em;
}


.sec_tit:after {
    border-top: 1.6px solid var(--color-main);
    content: "";
    flex-grow: 1;
    position: absolute;
    top: 30.5%;
    left: -1000%;
    display: block;
    overflow: hidden;
    width: 1000%;
}

.sec_tit:before {
    content: "";
    width: 13px;
    height: 13px;
    margin-right: 20px;
    display: inline-block;
    border-radius: 10px;
    background: var(--color-main);
}

.bg_red {
    background: #d53434;
    color: var(--white);
    /* padding: 3px */
}

.bg_gr {
    background: var(--color-gray-dark);
    color: var(--color-gray-light);
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
}

.indentbefore {
    padding-left: 1em;
    position: relative;
}

.indentbefore:before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}


/*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: source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: block;
    font-size: 1.4rem;
    color: var(--color-main);
    letter-spacing: 0.1em;
    margin-top: 10px;
    margin-left: 30px;
    width: 100%;
}


/* ---------------------------------------------------------
sec_tit ja 日本語のタイトル
----------------------------------------------------------*/

.sec_tit.ja {
    font-family: 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 var(--color-blue-accent);
    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-main);
    color: var(--white);
    padding: 10px 40px 10px 20px;
    border-radius: 100px;
    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: 340px;
    width: 100%;
    text-align: center;
    margin: auto;
    padding: 15px 20px;
    margin-top: 50px;
    font-weight: 700;
}

.color_btn.white {
    background: var(--white);
    color: var(--black);
}

.color_btn.close {
    background: #8d8d8d;
    /* color: var(--color-gray-light); */
    color: #bcbcbc;
    pointer-events: none;
    opacity: 1 !important;
}

.color_btn.close::after {
    display: none;
}

.color_btn.gray {
    background: var(--color-text);
}

.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-main);
    background: transparent;
    color: var(--color-main);
    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 30px 0 0;
}

.btn2_box .color_btn.big:last-child {
    margin-right: 0;
}

.orange_btn {
    background: #d55834;
}

.blue_btn {
    background: var(--color-sub);
}

.end_tag {
    padding: 5px 20px;
    border-radius: 3px;
    font-weight: bold;
    margin-top: 5px;
    display: inline-block;
    background: var(--color-gray-dark);
    color: var(--color-gray-light);
}

@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 var(--color-gray-darker);
    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: var(--white);
    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 var(--color-slate);
    padding-top: 10px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 1.1rem;
}

.info_area dt {
    background: var(--color-slate);
    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: var(--white);
}

.info_area_detail dd {
    color: var(--color-slate);
    font-weight: 800;
    font-family: din-2014, sans-serif;
    font-style: normal;
    font-size: 1.5rem;
}

.wh_bg_box {
    background: var(--white);
    padding: 30px;
    margin-top: 30px;
}

dl.wh_bg_box dt {
    font-weight: 600;
    margin-bottom: 10px;
    border-left: 4px solid var(--color-blue-accent);
    padding-left: 10px;
    font-size: 1.4rem;
}

dl.wh_bg_box dd a {
    position: relative;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--black);
    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 var(--color-blue-accent);
    border-right: 3px solid var(--color-blue-accent);
    -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: var(--color-blue-accent);
    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-main);
}

.colum_2_table {
    display: flex;
    flex-wrap: wrap;
}

.colum_2_table dt {
    width: 150px;
    padding: 25px;
    background: var(--color-navy);
    color: var(--white);
    border-bottom: solid 1px #3b3b3c;
}

.colum_2_table dd {
    width: calc(100% - 150px);
    padding: 25px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: solid 1px #cbcbcb;
}

.colum_2_table dd:last-child {
    border-bottom: 0;
}

.colum_2_table dt:nth-last-child(2) {
    border-bottom: 0;
}

.bg_navy {
    background: var(--color-navy);
    color: var(--white);
}

.bg_gray {
    background: var(--color-gray-pale);
}

.border_bl_btn {
    background: var(--white);
    border: 1.5px solid;
    border-radius: 30px;
    font-size: 1.3rem;
    padding: 5px 30px 5px 20px;
    position: relative;
    vertical-align: middle;
}

.border_bl_btn::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f078';
    color: inherit;
    font-weight: 700;
    font-size: 1rem;
    right: 10px;
    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: var(--color-text);
    color: var(--white);
    font-size: 1.2rem;
    padding: 5px 20px;
    white-space: nowrap;
    height: auto;
}

.bg_navy .scroll_table thead th {
    background: var(--color-gray-pale);
    color: var(--color-text);
}

.bg_navy .txt_link {
    color: var(--white);
}



#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;
}

.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: var(--white);
    font-size: 1rem;
    border-radius: 100px;
    padding: 1px 5px;
    margin-right: 10px;
    display: inline-block;
    width: 54px;
    text-align: center;
    background: var(--color-main);
}

.scroll_table th .tag.blue {
    background: var(--color-sub);
}

.brand_pass .scroll_table th .tag.blue {
    background: var(--color-sub);
}

.brand_pass .scroll_table th .tag.blue {
    background: var(--color-sub);
}

.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: 100px;
}

.colum_2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.colum_2 .tit_wrap {
    width: 260px;
}

.colum_2 .cont {
    width: calc(100% - 260px);
}

.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: 1000px;
    margin-bottom: 14px;
    box-shadow: 0px 1px 16px 0px rgb(48 48 48 / 15%);
}

.spk_list li a dl dd {
    font-size: 1.2rem;
    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;
}

#advisoryboard.bg_navy dl {
    color: var(--white);
    /*スピーカー枠追加したら背景がネイビーになるため有効に*/
}

.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_blue:after {
    background-image: url(../images/circle_blue.webp);
}

.circle_red:after {
    background-image: url(../images/circle_red.webp);
}

.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: 3rem;
    }

    .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/var(--black)+0,000000+79,000000+100&0.9+0,0.4+79,0+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    /* background: var(--white); */
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /* IE6-9 */
    background: var(--white);
    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: 10px 50px;
}

#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 {
    padding: 50px 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo_wrap {
    max-width: 180px;
    width: 20%;
}

header .logo_wrap img.logo {
    margin-bottom: 15px;
}

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: 10px;
}

header .c_wrap nav ul li:not(:last-child):after {
    content: "・";
    color: var(--color-main);
    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-sub);
}

header .c_wrap nav ul li a.color_btn {
    padding-right: 60px;
    font-size: 1.3rem;
    /* display: block!important; */
}

header .c_wrap nav ul li a.color_btn.mypage {
    padding: 5px 40px 5px 20px;
    background: var(--white);
    border: solid 2pxvar(--color-main);
    margin-top: 5px;
    color: var(--color-main);
    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: #e1e1e1;
        /*丸のスタート位置と形状*/
        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: 35px;
        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: 150px;
    }

    #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-main);
    }

    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: 20px;
    }

    .openbtn {
        right: 5px;
        top: 10px;
    }

    #header .logo_wrap {
        width: 120px;
    }

    #header.HeightMin .c_wrap.wide {
        padding: 10px 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;
}

.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: myriad-pro, sans-serif;
    letter-spacing: 0.1em;
}

.homeHero_scroll i {
    width: 1px;
    height: 100%;
    background-color: var(--color-text);
    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-sub);
    color: var(--white);
}

#news .c_wrap {
    max-width: 1280px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

#news h2 {
    width: 10%;
    font-family: myriad-pro, 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: var(--white)
}

#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: var(--color-main);
    color: var(--white);
    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: var(--white);
    font-family: myriad-pro, sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.border_btn_bl:hover {
    color: var(--white);
    background: var(--color-main);
    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-size: 2rem;
}

#about h3 span {
    /*    font-size: 3rem;*/
    font-size: 2.6rem;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-main);
    letter-spacing: 0.1em;
}

#about .from {
    margin-top: 30px;
    text-align: right;
    display: block;
    font-size: 1.4rem;
}




/* ---------------------------------------------------------
 program
----------------------------------------------------------*/

.bar_tit.flex {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.bar_tit h3 {
    display: flex;
    align-items: center;
}

.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 var(--color-accent1);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 12px;
    font-family: myriad-pro, sans-serif;
    text-align: left;
    width: 16rem;
    letter-spacing: 1.5px;
    background: var(--white);
    font-weight: bold;
    color: var(--color-accent1);
}

.border_btn li.st_b {
    color: #94a764;
    border: 1.5px solid var(--color-accent2);
}

.border_btn li.st_c {
    color: #769ab3;
    border: 1.5px solid var(--color-accent3);
}

.border_btn li.pre {
    color: var(--color-accent1);
    border: 1.5px solid var(--color-accent1);
}

.border_btn li.st_w {
    color: var(--color-sub);
    border: 1.5px solid var(--color-sub);
}

.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: var(--white);
    display: block;
    padding: 10px;
    border: 1px solid var(--black);
    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: var(--color-accent1);
    color: var(--white);
}

.tab.arrow_link.st_b.tab_active,
.tab_2.arrow_link.st_b.tab_active_2 {
    background-color: var(--color-accent2);
}

.tab.arrow_link.st_w.tab_active,
.tab_2.arrow_link.st_w.tab_active_2 {
    background-color: var(--color-sub);
}

.tab.arrow_link.st_c.tab_active,
.tab_2.arrow_link.st_c.tab_active_2 {
    background-color: var(--color-accent3);
}

.tab.arrow_link.pre.tab_active {
    background-color: var(--color-accent1);
}

.tab.arrow_link.tab_active.normal {
    background: var(--color-text);
}

.tab_2.arrow_link.tab_active_2 {
    background: var(--color-accent1);
    color: var(--white);
}

.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: var(--color-gray-soft);
    display: block;
    padding: 5px 40px;
    border-radius: 30px;
    font-size: 2.5rem;
    font-family: myriad-pro, sans-serif;
    letter-spacing: 1.5px;
    color: var(--white);
}

.bar_tit.bar_tit_popup {
    color: var(--color-text);
}

.bar_tit.bar_tit_a,
.area_2 .bar_tit.bar_tit_a {
    background: var(--color-main);
}

.bar_tit.bar_tit_b,
.area_2 .bar_tit.bar_tit_b {
    background: var(--color-accent2);
}

.bar_tit.bar_tit_c,
.area_2 .bar_tit.bar_tit_c {
    background: var(--color-accent3);
}

.bar_tit.bar_tit_w,
.area_2 .bar_tit.bar_tit_w {
    background: var(--color-sub);
}

.bar_tit.bar_tit_pre {
    background: var(--color-accent1);
}

.bar_tit.normal {
    background-color: var(--color-gray-soft);
    color: var(--black);
}

.area_2 .bar_tit {
    background: var(--color-sub);
}

.bar_tit span {
    font-size: 2.2rem;
}

.bar_tit br {
    display: none;
}

dl.pgm_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

dl.pgm_list dt.ssn_box {
    width: calc(100% - 110px);
    background: var(--white);
    box-shadow: 0px 0px 16px -6px rgb(168 168 168 / 60%);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px 30px;
    position: relative;
}

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;
}

dl.pgm_list dd.ssn_time {
    width: 55px;
    margin-right: 50px;
    padding-top: 32px;
    border-right: 4px solid #cecece36;
    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: var(--white) !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-main);
    margin-left: 2rem;
}

.ssn_box h4 span {
    font-family: myriad-pro, sans-serif;
    color: var(--color-main);
    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: source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
}

.ssn_box h4 span span.program_name,
.session_detail h3 span span.program_name {
    color: var(--color-sub);
    padding: 2px 5px;
    margin-right: 10px;
    border: 1.5px solid var(--color-sub);
}

.ssn_box h4 span span.program_name.special_session,
.session_detail h3 span span.program_name.special_session {
    color: var(--color-gold);
    border: 1.5px solid var(--color-gold);
}

.ssn_box h4 span span.g_number,
.session_detail h3 span span.g_number {
    color: var(--white);
    background: var(--color-accent1);
    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: var(--color-accent2);
}

.ssn_box h4 span span.g_number.c_stage_number,
.session_detail h3 span span.g_number.c_stage_number {
    background: var(--color-accent3);
}

.ssn_box h4 span span.stage_name,
.session_detail h3 span span.stage_name {
    color: var(--color-accent1);
    font-size: 1.3rem;
    border-bottom: 2px solid var(--color-accent1);
}

.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: var(--color-accent2);
    border-bottom: 2px solid var(--color-accent2);
}

.ssn_box h4 span span.stage_name.c_stage,
.session_detail h3 span span.stage_name.c_stage {
    color: var(--color-accent3);
    border-bottom: 2px solid var(--color-accent3);
}

#program .spk_list .spk_box,
#x_salon_program .spk_list .spk_box {
    width: 23%;
    margin-top: 20px;
    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: 70px;
    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-main);
    padding: 1px 4px;
    font-size: 0.8rem;
    margin-left: 10px;
    color: var(--color-main);
    letter-spacing: 0.05rem;
    font-family: myriad-pro, sans-serif;
    vertical-align: middle;
}

#program .spk_list li a dl dd,
#x_salon_program .spk_list li dl dd {
    font-size: 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-main);
    margin: 20px 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: 150px;
}

.schedule_day2 .bar_tit a::after {
    transform: translateY(-50%)rotate(180deg);
}

.schedule_day {
    margin-bottom: 80px;
}

#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-main);
}

.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: var(--color-main);
    padding: 2px 5px;
    margin-right: 10px;
    background: var(--white);
    border: 1.5px solid var(--color-main);
}

#program .pgm_imfo_text .stage_name {
    padding: 2px 5px;
    margin: 0 5px 0 10px;
    background: var(--color-accent1);
    color: var(--white);
}

#program .pgm_imfo_text .stage_name.b_stage {
    background: var(--color-accent2);
}

#program .pgm_imfo_text .stage_name.c_stage {
    background: var(--color-accent3);
}

#program .pgm_imfo_text br.sp {
    display: none;
}

#program .pgm_imfo_passtext {
    padding: 10px;
    font-size: 1.3rem;
    border: 1.5px solid var(--color-gray-medium);
}

#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 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;
    }
}


/* 詳細 */

.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: myriad-pro, sans-serif;
    color: var(--color-main);
    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-main);
    padding: 1px 4px;
    font-size: 0.8rem;
    margin-left: 10px;
    color: var(--color-main);
    letter-spacing: 0.05rem;
    font-family: myriad-pro, 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 var(--color-gray-light);
}

.session_detail h5 {
    color: var(--color-main);
    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: var(--white);
} */




/* ---------------------------------------------------------
 pass
----------------------------------------------------------*/

#pass h3 {
    font-family: myriad-pro, sans-serif;
    text-align: left;
    display: block;
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--color-main);
}

#pass .supplement_txt {
    font-size: 1.3rem;
    text-align: right;
}

#pass .brand_pass h3 {
    color: var(--color-sub);
}




/* ---------------------------------------------------------
 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: var(--color-scrollbar-bg);
}

.page_home #news .news_list_wrap::-webkit-scrollbar:horizontal {
    height: 10px;
    background: var(--color-scrollbar-bg);
}

.page_home #news .news_list_wrap::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar-thumb);
    border-radius: 5px;
}

.page_home #news .news_list_wrap::-webkit-scrollbar-thumb:horizontal {
    background: var(--color-scrollbar-thumb);
    border-radius: 5px;
}


/*scroll-bar*/

#news .news_list li {
    width: 23em;
    margin-right: 1.1em;
    background: var(--white);
}

#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;
}


/* ---------------------------------------------------------
 contact
----------------------------------------------------------*/

#contact .color_btn {
    margin-top: 30px;
}

#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: var(--white);
    border: solid 1px var(--color-gray-medium);
    overflow: hidden;
}

#contact .widget_list li:last-child {
    overflow-y: scroll;
}


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

footer {
    background: var(--color-text);
    color: var(--white);
}

footer a {
    color: var(--white);
}

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-main);
}

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;
}

footer .right_box {
    width: calc(100% - 300px);
    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-main);
    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: var(--color-text);
    width: 40px;
    height: 40px;
    color: var(--white);
    font-size: 1.6rem;
    border-radius: 100px;
    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) {
    #about h3 span {
        font-size: 2rem;
    }

    #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 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: myriad-pro, 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 var(--color-gray-light);
    /*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-main);
    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-main);
}

.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: var(--white);
    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: var(--white);
    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-main);
    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: var(--color-text);
    border: 1px solid var(--black);
    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: var(--white);
    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: var(--white);
    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: var(--white);
    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-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: myriad-pro, sans-serif;
    text-align: center;
    display: block;
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--color-main);
}

#sponsors h3.tit_ja {
    font-family: source-han-sans-japanese, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", sans-serif;
    font-size: 2rem;
}

#sponsors .color_btn.big {
    margin-top: 30px;
}

.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 {
    box-shadow: 0px 0px 7px 1px rgb(213 213 213 / 60%);
}

.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 li figure img {
    /*border:1px solid var(--color-gray-soft);*/
    box-shadow: 0px 0px 7px 1px rgb(213 213 213 / 60%);
}

.spo_diamond p,
.spo li p {
    margin-top: 12px;
    font-size: 1.3rem;
    text-align: center;
}


/*.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 var(--color-gray-light);
}

.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-main);
    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-main) !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-main) !important;
}

.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before {
    color: var(--color-main) !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-navy);
  color: var(--white); */
}

#thanks_txt .read_txt {
    margin-bottom: 0;
    background: var(--color-gray-pale);
    padding: calc(3% - 10px) 3%;
    border: 2px solid var(--black);
    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: var(--color-gray-pale);
    padding: calc(3% - 10px) 3%;
    border: 2px solid var(--black);
    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: var(--color-alert);
    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 var(--color-alert);
    border-bottom: solid 1px var(--color-alert);
    position: absolute;
    left: 0;
    top: 50%;
}
