@charset "UTF-8";

/* Repeatable Patterns
----------------------------------------------------*/

*{
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}


body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight:700;
    letter-spacing: 0.03rem;
    color: #fff;
    background: #000;
    line-height: 1;
     -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
}

/* print setting */
@media print {
    html {
        font-size: 38%;
    }

    body {
        -webkit-print-color-adjust: exact;
    }
}

html.is-scroll-prevent {
    height: 100%;
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease-out
}

a:hover{
    text-decoration: underline;
}

a img, a svg {
    transition: 0.3s ease-out;
}

::-moz-selection {
    background: #fff;
    color: #000;
    text-shadow: none;
}

::selection {
    background: #fff;
    color: #000;
    text-shadow: none;
}

img {
    width: 100%;
    height: auto;
    max-width: none !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    font-weight: inherit;
}

img {
    width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

svg{
    fill: currentcolor;
}

ul, ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

input,
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
    transition: 0.3s ease-out;
    cursor: pointer;
    color: #000;
    border: none;
}

.display_none{
    display: none;
}

.wrapper {
    width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*テキスト*/
.en{
    font-family: 'Montserrat',sans-serif;
    font-weight: 600;
    letter-spacing: 0.07rem;
}

.heading_01{
    font-size: 2.7em;
    line-height: 1.4;
    text-decoration: underline;
    margin-bottom: 6rem;
}

.heading_en_01{
    font-size: 3.5rem;
    line-height: 1.4;
    text-decoration: underline;
    margin-bottom: 3.4rem;
}

.heading_en_02{
    font-size: 3rem;
    line-height: 1.4;
    text-decoration: underline;
    margin-bottom: 2.2rem;
}

.text_01{
    font-size: 2.1rem;
    line-height: 1.8;
    text-align: justify;
}

.text_02{
    font-size: 2rem;
    line-height: 1.7;
    text-align: justify;
}

p a{
    word-break: break-all;
}

/*リンク*/
.link_button{
    position: relative;
    width: 100%;
    aspect-ratio: 780 / 110;
    margin: 12rem auto;
    display: block;
}

.link_button + .link_button:not(.display_sp){
    margin-top: -4rem;
}

.link_button img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    transition: 0.5s ease-in-out;
}

.link_button .normal{
    opacity: 1;
}

.link_button .hover{
    opacity: 0;
}

.link_button:hover .normal{
    opacity: 0;
}

.link_button:hover .hover{
    opacity: 1;
}


/*fadein*/
.fadein {
    opacity: 0;
    transition: 1000ms ease-in;
}

.fadein.scrollin {
    opacity: 1;
}

@media print {
    .fadein {
        opacity: 1;
    }
}

/* Header
----------------------------------------------------*/

/*ドロワーメニュー*/
.drawer_hamburger {
    position: fixed;
    top: 6%;
    right: 6%;
    width: 9.4vw;
    height: 9.4vw;
    max-width: 100px;
    max-height: 100px;
    z-index: 999;
    padding: 0;
    background-color: #000;
    border-radius: 50%;
    border: 2px solid #fff;
}

.is-white.drawer_hamburger {
    background-color: transparent;
    border-color: transparent;
}

.is-opened .drawer_hamburger{
    background-color: #fff;
    border-color: #000;
}

.is-opened .is-white.drawer_hamburger{
    border-color: #000;
}

.drawer_hamburger_icon,
.drawer_hamburger_icon:after,
.drawer_hamburger_icon:before {
    transition: all .3s cubic-bezier(.19, 1, .22, 1);
}

.drawer_hamburger_icon {
    position: relative;
    display: block;
    width: 64% !important;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
}

.drawer_hamburger_icon:before,
.drawer_hamburger_icon:after {
    position: absolute;
    content: " ";
    height: 2px;
    width: 100% !important;
    background-color: #fff;
    left: 0;
    right: 0;
    margin: auto;
}

.drawer_hamburger_icon:before {
    top: -1.6rem !important;
}

.drawer_hamburger_icon:after {
    top: 1.6rem !important;
}

.is-opened .drawer_hamburger_icon{
    background: transparent;
}

.is-opened .drawer_hamburger_icon:before {
    transform: rotate(30deg);
    top: 0 !important;
    background-color: #000;
}

.is-opened .drawer_hamburger_icon:after {
    transform: rotate(-30deg);
    top: 0 !important;
    background-color: #000;
}

.drawer_container {
    align-items: center;
    background: #fff;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 100;
    overflow-y: scroll;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100%;
    transition: top .3s ease-in-out;
    -webkit-overflow-scrolling: touch;
}

.is-opened .drawer_container {
    top: 0;
}

.drawer_inner {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 12rem;
    padding-bottom: 12rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.drawer_logo{
    width: 64%;
    margin: 0 auto 11rem;
}

.drawer_nav_item{
    text-align: center;
}

.drawer_nav_item + .drawer_nav_item{
    padding-top: 6rem;
}

.drawer_nav_link{
    font-size: 3.6rem;
    color: #000;
}


/* Footer
----------------------------------------------------*/

.main_footer{
    margin-top: 15rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
    background: #fff;
    color: #000;
}

.footer_logo{
    width: 60%;
    display: block;
    margin: auto;
}

.footer_copyright{
    padding-top: 10rem;
    font-size: 1.8rem;
    text-align: center;
}

/* トップページ
----------------------------------------------------*/

/*ファーストビジュアル*/
.top_fv_container{
    background-image: url(img/main_visual_pc.jpg);
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: 100vh;
    height: 100svh;
    position: relative;
}

.top_fv_logo{
    position: absolute;
    width: 14%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 19rem;
}

.top_fv_text{
    position: absolute;
    width: 9rem;
    top: 0;
    bottom: 0;
    left: 4%;
}

.top_fv_tag{
    position: absolute;
    width: 1.9rem;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top_fv_self{
    position: absolute;
    bottom: 5%;
    left: 0;
}

.animation_scroll {
    position: absolute;
    right: 8.4%;
    bottom: 5rem;
    z-index: 9;
}

.animation_scroll span {
    width: 2px;
    height: 8rem;
    background: #fff;
    display: block;
    animation: scroll 1.8s cubic-bezier(1, 0, 0, 1) infinite;
    border-radius: 100vmax;
}

.animation_scroll span::after{
    content: '';
    position: absolute;
    bottom: -0.1rem;
    right: -0.4rem;
    width: 2px;
    height: 1.4rem;
    display: block;
    background: #fff;
    transform: rotate(38deg);
    border-radius: 100vmax;
}

@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.animation_scroll img{
    width: 1.6rem;
    margin-right: 1rem;
}

/*イントロダクション*/

.top_intro_container{
    padding-top: 20rem;
}

.top_intro_inner{
    flex-direction: row-reverse;
    justify-content: space-between;
}

.top_intro_heading{
    width: 15%;
}

.top_intro_body{
    width: 61%;
}

.top_intro_text-1{
    margin-bottom: 11rem;
}

.top_intro_heading-1{
    width: 83%;
    margin-bottom: 5rem;
}

.top_intro_text-2{
    margin-bottom: 11rem;
}

.top_intro_heading-2{
    margin-bottom: 6rem;
}

.top_intro_text-3{
    margin-bottom: 9rem;
}

.top_intro_schedule{
    padding-top: 20rem;
}


.top_intro_program{
    padding-top: 8rem;
}

.program_list{
    margin: 0;
}

.program_list dt{
    width: 22%;
    font-size: 3.5rem;
    line-height: 1.4;
    padding-bottom: 6rem;
}

.program_list dd{
    width: 78%;
    margin: 0;
    padding-bottom: 6rem;
}

.program_title{
    font-size: 3.3rem;
    line-height: 1.4;
    padding-bottom: 1.2rem;
}

.program_full_title{
    font-size: 3.1rem;
    line-height: 1.4;
    padding-bottom: 2rem;
}

/*セッション*/
.top_session_container{
    margin-top: 12rem;
    border-top: 1px solid;
}

.top_session_inner{
    padding-top: 12rem;
    padding-bottom: 12rem;
    border-bottom: 1px solid #fff;
}

.top_session_header{
    padding-bottom: 7rem;
}

.top_session_detail{
    padding-top: 5rem;
}

.top_session_day{
    font-size: 5rem;
    padding-right: 4.8rem;
}

.top_session_place{
    font-size: 3.1rem;
}

.session_item + .session_item{
    margin-top: 6rem;
}

.session_item_title{
    font-size: 2.5rem;
    line-height: 1.4;
    text-decoration: underline;
}

.session_item_title + *{
    padding-top: 2rem;
}

.session_item_time{
    padding-right: 3.6rem;
}

.session_item_inner + .session_item_inner{
    margin-top: 5rem;
}

.session_item_theme{
    font-size: 3rem;
    line-height: 1.5;
/*    padding-bottom: .8rem;*/
}

.pp_box{
    line-height: 1.6;
    align-items: baseline;
}

.pp_box + .pp_box{
    padding-top: 1.6rem;
}

.pp_role_box{
    width: 10%;
}

.pp_name_box{
    width: 90%;
}

.pp_name{
    font-size: 3.1rem;
}

.pp_position{
    font-size: 1.5rem;
    padding-left: .4rem;
    padding-right: .4rem;
}

.pp_role{
    font-size: 2rem;
}

.pp_underline{
    font-size: 2.6rem;
}

.top_session-1 .pp_name{
    font-size: 3.4rem;
}

.top_session-1 .pp_position{
    font-size: 1.7rem;
    padding-left: .6rem;
    padding-right: .6rem;
}

.top_session-1 .pp_role{
    font-size: 2.4rem;
}

.session_memo{
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.02rem;
    text-align: justify;
}

.session_day2_list{
    margin-top: 14rem;
}

.session_day2_item{
    margin-bottom: 9rem;
}

.session_day2_item a:hover{
    text-decoration: none;
}

.session_day2_header{
    position: relative;
}

.session_day2_heading{
    align-items: center;
    margin-bottom: 3.6rem;
}

.session_day2_abc{
    font-size: 4.2rem;
    width: 5rem;
}

.session_day2_title{
    font-size: 2.1rem;
    line-height: 1.5;
    text-decoration: underline;
}

.session_day2_link{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 12.8rem;
}

.top_session-3 .session_item:last-child{
    padding-bottom: 0;
}

.top_session-3_intro{
    margin-bottom: 10rem;
}

.top_session-3_intro_heading{
    text-decoration: underline;
    font-size: 2.6rem;
    line-height: 1.5;
    margin-bottom: 6rem;
}

.top_session-3_intro_text p + p{
    margin-top: 2rem;
}

.top_session-3_guest_heading{
    font-size: 2.6rem;
    line-height: 1.5;
    margin-bottom: 4rem;
}

/*参加費*/

.top_fee_container{
    padding-top: 12rem;
}

.top_fee_list{
    margin-left: 3.4rem;
    list-style: disc;
    margin-bottom: 5rem;
}

.top_fee_item{
    font-size: 3.7rem;
    line-height: 1.2;
}

.top_fee_item + .top_fee_item{
    margin-top: 3.2rem;
}

.top_fee_day{
    width: 18%;
}

.top_fee_price{
    width: 82%;
}

.top_fee_item .small{
    font-size: 2.9rem;
    padding-left: .3rem;
}

.top_fee_discount{
    font-size: 3rem;
    margin-bottom: 8rem;
    line-height: 1.5;
}

.top_fee_discount span{
    font-size: 2.4rem;
}

.top_fee_note_list{
    margin-bottom: 12rem;
}

.top_fee_note_item{
    font-size: 1.7rem;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 0.02rem;
}

.top_fee_note_item + .top_fee_note_item{
    margin-top: 1.6rem;
}

/*設立趣意*/
.top_aim_container{
    padding-top: 12rem;
    padding-bottom: 12rem;
    border-top: 1px solid;
    position: relative;
}

.top_aim_text{
    margin-bottom: 12rem;
}

.top_aim_text p + p{
    margin-top: 3.2rem;
}

.top_aim_list{
    font-size: 2.4rem;
    line-height: 2;
    margin: 0;
}

.top_aim_list dt{
    margin-bottom: 0;
    text-decoration: underline;
}

.top_aim_list dd{
    margin: 0 0 4rem 0;
}

.top_aim_self{
    width: 8.4rem;
    position: absolute;
    bottom: 0;
    right: 0;
}


/* DAY2一覧
----------------------------------------------------*/

.day2_wrapper{
    padding-top: 18rem;
}

.day2_area_container .top_session_header{
    padding-bottom: 0;
}

.day2_area_container .session_day2_list{
    margin-top: 6rem;
    margin-bottom: 12rem;
}

.day2_area_container .session_day2_item{
    margin-bottom: 4rem
}


/* DAY2個別
----------------------------------------------------*/

.detail_header{
    margin-bottom: 9rem;
}

.detail_title{
    padding-bottom: 2rem;
}

.detail_day{
    font-size: 5rem;
    padding-bottom: 3.6rem;
}

.detail_place{
    font-size: 3.3rem;
    line-height: 1.5;
}

.detail_tag{
    font-size: 2.3rem;
    line-height: 1.5;
    padding-bottom: 7rem;
}

.detail_main_container{
    padding-bottom: 6rem;
}

.detail_main_header{
    padding-bottom: 8rem;
}

.detail_main_header .session_day2_heading{
    margin-bottom: 4rem;
}

.detail_map{
    width: 88%;
}

.session_day2_theme{
    font-size: 3rem;
    line-height: 1.3;
    padding-bottom: 4.4rem;
}

.session_day2_theme .sub{
    font-size: 2.8rem;
    padding-top: .4rem;
    letter-spacing: 0;
}

.detail_main_container .pp_box + .pp_box{
    padding-top: 3.6rem;
}

.detail_main p{
    margin: 6rem 0;
}

.detail_target{
    padding-top: 6rem;
    border-top: 1px solid;
    font-size: 2.3rem;
    line-height: 1.5;
}

.detail_target_heading{
    text-decoration: underline;
    margin-bottom: 3rem;
}

.detail_target_list{
    list-style-type: disc;
    margin-left: 2rem;
}

.detail_target_list li + li{
    margin-top: 1.6rem;
}

.detail_footer{
    border-top: 1px solid #fff;
}

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

PCのみ

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

@media screen and (min-width: 768px) {
    .display_sp {
        display: none !important;
    }
}

@media screen and (max-width: 849px) and (min-width: 768px) {
    html {
        font-size: 54%;
    }
    
    .wrapper{
        width: 90%;
    }
}
/*----------------------------------------------------

スマートフォンのみ

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


@media screen and (max-width: 767px) {

    body {
        position: relative;
        background-image: none;
    }

    .wrapper {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 6%;
        padding-right: 6%;
    }

    .display_pc {
        display: none !important;
    }


    /*テキスト*/
    .heading_01{
        font-size: 2.1em;
        margin-bottom: 3.6rem;
    }

    .heading_en_01,
    .heading_en_02{
        font-size: 2rem;
        margin-bottom: 1.4rem;
    }

    .text_01{
        font-size: 1.5rem;
        line-height: 1.5;
    }

    .text_02{
        font-size: 1.4rem;
        line-height: 1.6;
    }

    /*リンク*/
    .link_button{
        aspect-ratio: 400 / 70;
        margin: 7.6rem auto;
    }
    
    .link_button.display_pc:not(:first-of-type) + .link_button.display_sp{
        margin-top: -4rem;
    }

    /* Header
    ----------------------------------------------------*/

    /*ドロワーメニュー*/
    .drawer_hamburger {
        position: fixed;
        top: 2%;
        right: 3%;
        width: 18vw;
        height: 18vw;
        max-width: 90px;
        max-height: 90px;
    }

    .drawer_hamburger_icon:before {
        top: -1rem !important;
    }

    .drawer_hamburger_icon:after {
        top: 1rem !important;
    }

    .drawer_inner {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .drawer_logo{
        width: 72%;
        margin: 0 auto 7rem;
    }

    .drawer_nav_item + .drawer_nav_item{
        padding-top: 3.6rem;
    }

    .drawer_nav_link{
        font-size: 2.8rem
    }


    /* Footer
    ----------------------------------------------------*/

    .main_footer{
        margin-top: 8rem;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .footer_logo{
        width: 70%;
    }

    .footer_copyright{
        padding-top: 6rem;
        font-size: .9rem;
        letter-spacing: 0;
    }

    /* トップページ
    ----------------------------------------------------*/

    /*ファーストビジュアル*/
    .top_fv_container{
        background-image: url(img/main_visual_sp.jpg);
        background-position: 50% 62%;
    }
    
    .top_fv_logo{
        width: 34%;
        top: 48%;
        max-width: 17rem;
    }

    .top_fv_text{
        width: 14%;
        left: 6%;
    }

    .top_fv_tag{
        width: 24%;
        top: 44%;
        left: 0;
        transform: translate(0, -50%);
    }

    .top_fv_self{
        bottom: 5%;
    }

    .animation_scroll {
        right: 8%;
        bottom: 4%;
    }

    .animation_scroll span {
        height: 6.4rem;
    }

    .animation_scroll img{
        width: 1.2rem;
        margin-right: .8rem;
    }

    /*イントロダクション*/

    .top_intro_container{
        padding-top: 14rem;
    }

    .top_intro_inner{
        flex-direction: column;
        align-items: center;
    }

    .top_intro_inner-1 .top_intro_heading{
        width: 25%;
    }
    
    .top_intro_inner-2 .top_intro_heading{
        width: 33%;
    }

    .top_intro_body{
        margin-top: 14rem;
        width: 100%;
    }
    
    .top_intro_text-1{
        margin-bottom: 12rem;
    }
    
    .top_intro_text-2{
        margin-bottom: 8rem;
    }

    .top_intro_heading-2{
        margin-bottom: 5rem;
    }
    
    .top_intro_text-3 {
        margin-bottom: 7rem;
    }

    .top_intro_schedule{
        padding-top: 11rem;
    }
    
    .top_intro_date_memo {
        width: 60%;
        margin-top: 2.4rem;
    }

    .top_intro_schedule{
        padding-top: 9rem;
    }

    .top_intro_program{
        padding-top: 7rem;
    }

    .program_list dt{
        width: 100%;
        font-size: 3rem;
        padding-bottom: .8rem;
    }

    .program_list dd{
        width: 100%;
        padding-bottom: 3rem;
    }

    .program_title{
        font-size: 2.2rem;
        padding-bottom: .8rem;
    }

    .program_text{
        font-size: 1.3rem;
    }
    
    .program_full{
        padding-top: 1rem;
    }
    
    .program_full_title{
        font-size: 2.2rem;
        padding-bottom: 1.2rem;
    }

    /*セッション*/
    .top_session_container{
        margin-top: 8rem;
    }
    
    .top_session_inner{
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .top_session_header{
        margin-top: -.8rem;
        padding-bottom: 4rem;
    }

    .top_session_detail{
        padding-top: 2.8rem;
    }

    .top_session_day{
        font-size: 2.8rem;
        padding-right: 0;
        padding-bottom: 1rem;
        display: block;
    }

    .top_session_place{
        font-size: 2.2rem;
    }

    .session_item + .session_item{
        margin-top: 3.6rem;
    }

    .session_item_title{
        font-size: 1.7rem;
    }

    .session_item_title + *{
        padding-top: 1rem;
    }

    .session_item_time{
        padding-right: 1.6rem;
    }

    .session_item_inner + .session_item_inner{
        margin-top: 4rem;
    }

    .session_item_theme{
        font-size: 1.9rem;
    }

    .pp_box{
        letter-spacing: 0rem;
        line-height: 1.4;
    }

    .pp_box + .pp_box{
        padding-top: .8rem;
    }

    .pp_role_box{
        width: 14%;
    }

    .pp_name_box{
        width: 86%;
    }

    .pp_name,
    .top_session-1 .pp_name{
        font-size: 2.2rem;
        padding-right: 0.3rem;
    }

    .pp_position,
    .top_session-1 .pp_position{
        font-size: 1.2rem;
        padding-left: 0;
        padding-right: 0;
    }

    .pp_role,
    .top_session-1 .pp_role{
        font-size: 1.4rem;
        letter-spacing: -0.05rem;
    }
    
    .pp_underline {
        font-size: 1.8rem;
    }

    .session_memo{
        font-size: 1.2rem;
    }

    .session_day2_list{
        margin-top: 5rem;
    }

    .session_day2_item{
        margin-bottom: 4rem;
    }

    .session_day2_heading{
        align-items: flex-start;
        margin-bottom: 1.6rem;
    }

    .session_day2_abc{
        font-size: 2.7rem;
        width: 3.4rem;
    }

    .session_day2_title{
        width: calc(100% - 3.4rem);
        font-size: 1.7rem;
    }

    .session_day2_link{
        top: .6rem;
        transform: translate(0,0);
        width: 2.7rem;
    }
    
    .top_session-3_intro {
        margin-bottom: 6rem;
    }
    
    .top_session-3_intro_heading{
        font-size: 2.4rem;
        margin-bottom: 4rem;
    }

    .top_session-3_intro_left{
        text-align: left;
    }

    .top_session-3_guest_heading{
        font-size: 2.1rem;
        margin-bottom: 3rem;
    }
    
    .top_session-3_guest .pp_position,
    .detail_main_container .pp_position{
        display: block;
    }

    /*参加費*/

    .top_fee_container{
        padding-top: 7rem;
    }

    .top_fee_list{
        margin-left: 2.2rem;
        margin-bottom: 4rem;
    }

    .top_fee_item{
        font-size: 2.2rem;
    }

    .top_fee_item + .top_fee_item{
        margin-top: 2rem;
    }

    .top_fee_day{
        width: 22.5%;
    }

    .top_fee_price{
        width: 77.5%;
    }

    .top_fee_item .small{
        font-size: 1.7rem;
        padding-left: .3rem;
    }

    .top_fee_item .additional{
        padding-left: 1.4rem
    }

    .top_fee_discount{
        font-size: 2rem;
        margin-bottom: 5rem;
    }

    .top_fee_discount span{
        font-size: 2rem;
    }

    .top_fee_note_list{
        margin-bottom: 4rem;
    }

    .top_fee_note_item{
        font-size: 1.3rem;
        line-height: 1.5;
    }

    .top_fee_note_item + .top_fee_note_item{
        margin-top: 1.8rem;
    }

    /*設立趣意*/
    .top_aim_container{
        padding-top: 6rem;
        padding-bottom: 10rem;
    }

    .top_aim_text{
        margin-bottom: 5rem;
    }

    .top_aim_text p + p{
        margin-top: 2rem;
    }

    .top_aim_list{
        font-size: 1.3rem;
    }

    .top_aim_list dd{
        margin: 0 0 2.4rem 0;
    }

    .top_aim_self{
        width: 6.6rem;
        bottom: 0;
        right: 0;
    }
    


    /* DAY2一覧
    ----------------------------------------------------*/

    .day2_wrapper{
        padding-top: 7rem;
    }
    .day2_area_container .session_day2_list{
        margin-top: 5rem;
        margin-bottom: 6rem;
    }


    /* DAY2個別
    ----------------------------------------------------*/

    .detail_header{
        margin-bottom: 6rem;
    }

    .detail_title{
        padding-bottom: 1.4rem;
    }

    .detail_day{
        font-size: 3.2rem;
        padding-bottom: 2.4rem;
    }

    .detail_place{
        font-size: 2.4rem;
    }

    .detail_tag{
        font-size: 1.5rem;
        padding-bottom: 4rem;
    }

    .detail_main_container{
        padding-bottom: 4rem;
    }

    .detail_main_header{
        padding-bottom: 5rem;
    }

    .detail_main_header .session_day2_heading{
        margin-bottom: 3rem;
    }
    
    .detail_map{
        width: 100%;
    }


    .session_day2_theme{
        font-size: 2.4rem;
        padding-bottom: 3.6rem;
    }

    .session_day2_theme .sub{
        font-size: 1.8rem;
        padding-top: .3rem;
    }

    .detail_main_container .pp_box + .pp_box{
        padding-top: 2.8rem;
    }

    .detail_main p{
        margin: 3.2rem 0;
    }

    .detail_target{
        padding-top: 4rem;
        font-size: 1.7rem;
    }

    .detail_target_heading{
        margin-bottom: 2rem;
    }

    .detail_target_list li + li{
        margin-top: 1.2rem;
    }
}
@media print,
    screen and (max-width: 379px) {
        html {
            font-size: 56%;
        }
}