@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    color: #000;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

img {
    border: none;
}

textarea {
    background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
}

br {
    line-height: 0;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
}

.center {
    text-align: center;
}

.text_over {
    overflow: hidden;
    white-space: nowrap;
    -webkit-text-overflow: ellipsis;
    text-overflow: ellipsis;
}



/* **********************************************
header
*********************************************** */
header {
    position: relative;
    height: 150px;
}

header .border {
    height: 6px;
    background: linear-gradient(60deg, #6c4797, #5c5ea4);
}

header .logo {
    position: absolute;
    top: 40px;
    left: 50px;
    width: 220px;
}

header .logo img {
    width: 100%;
}

header h1 {
    position: absolute;
    top: 3vw;
    right: 5vw;

    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;

    font-weight: normal;
    font-size: 27px;
    white-space: nowrap;
    letter-spacing: 7px;
    line-height: 2.0;
    color: #6c4797;
    z-index: 3;

}

header ul {
    position: absolute;
    top: 103px;
    left: 28vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 50%;
}

header ul li {
    display: inline-block;
}

header ul li a {
    position: relative;
    font-size: 15px;
}

header ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    margin: 0 auto;
    width: 100%;
    height: 1px;
    background-color: #666;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

header ul li a:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

#sp_menu {
    display: none;
}



/* **********************************************
header 1200
*********************************************** */
@media screen and (max-width: 1200px) {
    header h1 {
        right: 4.5vw;
    }
}

/* **********************************************
header 1000
*********************************************** */
@media screen and (max-width: 1000px) {
    header {
        height: 150px;
    }

    header .logo {
        top: 30px;
        left: 30px;
        width: 180px;
    }

    header h1 {
        right: 4vw;
        font-size: 2.5vw;
    }

    header ul {
        top: 80px;
        right: 18vw;
    }

    header ul li:last-of-type::after {
        content: "";
        display: block;
        width: 15em;
        height: 1em;
    }

    header ul li a {
        font-size: 15px;
    }
}

/* **********************************************
header 780
*********************************************** */
@media screen and (max-width: 780px) {

    header h1 {
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        font-size: 15px;
        top: 95px;
        top: 85px;
        left: 30px;
        right: auto;
        background-color: #fff;
        letter-spacing: 3px;
        padding-top: 3px;
    }

    header h1 br {
        display: none;
    }

    header ul {
        display: none;
        position: absolute;
        top: 115px;
        right: 0;
        left: 0;
        width: auto;
        z-index: 15;
        background: linear-gradient(60deg, #6c4797, #5c5ea4);
    }

    header ul li {
        display: block;
    }

    header ul li a {
        display: block;
        text-align: center;
        height: 60px;
        line-height: 60px;
        color: #fff;
        border-top: 1px solid #c2afd9;
    }

    header ul li:first-child a {
        border-top: none;
    }

    header ul li:last-of-type::after {
        content: none;
    }

    header ul li a:hover::after {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    #sp_menu {
        display: block;
        position: absolute;
        top: 45px;
        right: 40px;
        height: 46px;
        width: 40px;
        cursor: pointer;
    }

    #sp_menu>div {
        width: 40px;
        height: 2px;
        background-color: #6c4797;
        position: absolute;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

    #sp_menu>div:nth-of-type(1) {
        top: 8px;
    }

    #sp_menu>div:nth-of-type(2) {
        top: 20px;
    }

    #sp_menu>div:nth-of-type(3) {
        top: 32px;
    }

    #sp_menu>span {
        display: block;
        width: 40px;
        font-size: 12px;
        position: absolute;
        bottom: -10px;
        text-align: center;
        letter-spacing: 1px;
        color: #6c4797;
    }
}

/* **********************************************
header 480
*********************************************** */
@media screen and (max-width: 480px) {
    header {
        height: 115px;
    }

    header .logo {
        top: 25px;
        left: 13px;
        width: 170px;
    }

    header h1 {
        font-size: 14px;
        top: 80px;
        left: 15px;
        letter-spacing: 1px;
        padding-top: 3px;
    }

    #sp_menu {
        top: 29px;
        right: 20px;
    }

    #sp_menu>div {
        left: 5px;
        width: 30px;
        height: 1px;
    }

    #sp_menu>div:nth-of-type(1) {
        top: 13px;
    }

    #sp_menu>div:nth-of-type(2) {
        top: 24px;
    }

    #sp_menu>div:nth-of-type(3) {
        top: 35px;
    }

    #sp_menu>span {
        font-size: 10px;
    }

}

/* **********************************************
header 375
*********************************************** */
@media screen and (max-width: 375px) {

    header h1 {
        font-size: 11px;
    }

}


/* **********************************************
main
*********************************************** */
main {
    display: block;
    background-color: #eff0f2;
    border-top: 1px solid rgba(255, 255, 255, 0);
    margin-top: -100px;
    padding-top: calc(10vw + 100px);
    padding-top: 280px;
    padding-bottom: calc(5vw + 100px);
}

/* **********************************************
main 1550
*********************************************** */
@media screen and (max-width: 1550px) {
    main {
        padding-top: calc(13vw + 100px);
    }
}

/* **********************************************
main 780
*********************************************** */
@media screen and (max-width: 780px) {
    main {
        margin-top: 0px;
        padding-top: 15vw;
        padding-bottom: 10vw;
    }
}



/* **********************************************
footer
*********************************************** */
footer {
    background-color: #2b2737;
    height: 200px;
    padding-top: 65px;
    position: relative;
}

footer * {
    color: #fff;
}

footer>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 35px;
}

footer>div>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 45px;
    padding: 0 30px;
    min-width: 230px;
}

footer>div>div:nth-of-type(1) {
    border-right: 1px solid #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

footer>div>div:nth-of-type(1) span {
    font-size: 32px;
    line-height: 1.1;
    margin-left: 5px;
}

footer>div>div:nth-of-type(2) {
    font-size: 16px;
    letter-spacing: 1px;
}

footer p {
    text-align: center;
}

footer small {
    font-size: 11px;
    letter-spacing: .5px;
}

/* **********************************************
footer 750
*********************************************** */
@media screen and (max-width: 780px) {
    footer>div>div {
        padding: 0 5px;
        min-height: 35px;
    }

    footer>div>div:nth-of-type(1) {
        font-size: 14px;
    }

    footer>div>div:nth-of-type(1) span {
        font-size: 28px;
    }

    footer>div>div:nth-of-type(2) {
        font-size: 14px;
    }

}

/* **********************************************
footer 480
*********************************************** */
@media screen and (max-width: 480px) {
    footer>div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer>div>div {
        width: 100%;
    }

    footer>div>div:nth-of-type(1) {
        border-right: none;
        font-size: 16px;
    }

    footer>div>div:nth-of-type(1) span {
        font-size: 32px;
    }

    footer>div>div:nth-of-type(2) {
        font-size: 16px;
    }

    footer small {
        font-size: 8px;
    }



    footer {
        height: auto;
        padding-bottom: 15px;
    }

    footer p {
        text-align: center;
    }


}



/* **********************************************
to_top
*********************************************** */
#to_top {
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 60px;
    position: absolute;
    top: -30px;
    right: 20px;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    background: linear-gradient(60deg, #6c4797, #5c5ea4);
    display: block;
    cursor: pointer;
}











/* **********************************************
slide
*********************************************** */
#slide {
    position: relative;
    height: 500px;
    height: calc(50vw);
    max-height: 550px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 2;
}

.slide_item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.slide_item1 {
    background-image: url('../img/slide_1.jpg');
}

.slide_item2 {
    background-image: url('../img/slide_2.jpg');
}

.slide_item3 {
    background-image: url('../img/slide_3.jpg');
}

.slide_item4 {
    background-image: url('../img/slide_4.jpg');
}

/* **********************************************
index
*********************************************** */
main.index {
    background-color: #fff;
    padding-top: 230px;
}

#index_main {
    margin: 0 auto;
    width: calc(80vw);
}

#index_main h2 {
    font-weight: normal;
    color: #6c4797;
    font-size: 34px;
    margin-bottom: 50px;
}

#to_contribution {
    margin: 80px auto;
    width: calc(80vw);
    background-image: url('../img/to_contribution.jpg');
    background-image: linear-gradient(60deg, rgba(108, 71, 151, .5), rgba(92, 94, 164, .4)), url('../img/to_contribution.jpg');
    height: 160px;
    background-size: cover;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
}

#to_contribution:after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border: 1px solid #fff;
}

#index_main p {
    text-align: justify;
    line-height: 2.2;
    margin-bottom: 10px;
}

#index_main .bla_first {
    margin-left: -0.5em;
}

#index_main .ip_kr {
    display: block;
    max-width: 270px;
    margin: 40px 0;
}

.about_wrap {
    position: relative;
}

#index_main .ip_01,
#index_main .ip_02 {
    display: block;
    position: absolute;
    max-width: 370px;
}

#index_main .ip_01 {
    top: 0;
    right: 0;
}

#index_main .ip_02 {
    top: -60px;
    right: 100px;
}

#index_main .ip_01 img,
#index_main .ip_02 img {
    display: block;
    width: 100%;
    position: relative;
    z-idnex: 2;
}

#index_main .ip_01:before {
    content: '';
    background: linear-gradient(60deg, #6c4797, #5c5ea4);
    position: absolute;
    left: 80px;
    top: 80px;
    bottom: -80px;
    right: -80px;
    z-idnex: -1;
}

#index_main .ip_02:before {
    content: '';
    background: linear-gradient(60deg, #6c4797, #5c5ea4);
    position: absolute;
    left: -55px;
    top: 60px;
    bottom: -60px;
    right: 55px;
    z-idnex: -1;
}




/* **********************************************
main 1280
*********************************************** */
@media screen and (max-width: 1280px) {

    #index_main .ip_01,
    #index_main .ip_02 {
        max-width: 300px;
    }

    #index_main .ip_01 {
        top: 30px;
    }

    #index_main .ip_02 {
        top: -60px;
        right: 40px;
    }
}


/* **********************************************
main 980
*********************************************** */
@media screen and (max-width: 980px) {

    #index_main .ip_01,
    #index_main .ip_02 {
        max-width: 240px;
    }

    #index_main .ip_01 {
        top: 40px;
        right: 20px;
    }

    #index_main .ip_02 {
        top: -60px;
        right: 0px;
    }
}


/* **********************************************
main 780
*********************************************** */
@media screen and (max-width: 780px) {
    main.index {
        padding-top: 15vw;
    }

    #index_main .about_wrap:nth-of-type(1)>p br {
        display: none;
    }

    #index_main .ip_01,
    #index_main .ip_02 {
        display: block;
        position: relative;
        max-width: 320px;
        margin: 40px auto;
        top: 0;
    }

    #index_main .ip_01 {
        margin-bottom: 80px;
        right: 20px;
    }

    #index_main .ip_02 {
        margin-bottom: 130px;
        left: 20px;
    }

    #index_main .about_wrap:nth-of-type(2)>p {
        text-align: center;
    }

    #index_main .ip_kr {
        margin: 40px auto;
    }

    #index_main .ip_01:before {
        left: 35px;
        top: 30px;
        bottom: -30px;
        right: -35px;
    }

    #index_main .ip_02:before {
        left: -35px;
        top: 30px;
        bottom: -30px;
        right: 35px;
    }


}

/* **********************************************
main 480
*********************************************** */
@media screen and (max-width: 480px) {
    #index_main {
        width: calc(90vw);
    }

    #index_main h2 {
        margin-bottom: 15px;
    }

    #index_main p {
        font-size: 14px;
    }

    #index_main .ip_01,
    #index_main .ip_02 {
        max-width: 300px;
    }

    #index_main .ip_01 {
        right: 7px;
        margin-bottom: 55px;
    }

    #index_main .ip_02 {
        left: 7px;
        margin-bottom: 82px;
    }

    #index_main .ip_01:before {
        left: 12px;
        top: 10px;
        bottom: -10px;
        right: -12px;
    }

    #index_main .ip_02:before {
        left: -12px;
        top: 10px;
        bottom: -10px;
        right: 12px;
    }

    #to_contribution {
        margin-bottom: 50px;
        background-position: center;
        font-size: 27px;
    }
}



/* **********************************************
index group
*********************************************** */
#group {
    background-color: #eff0f2;
    margin-bottom: calc((-5vw - 100px));
    padding-top: 3vw;
    padding-top: 40px;
    padding-bottom: 10vw;
}

#group h2 {
    font-weight: normal;
    color: #6c4797;
    font-size: 28px;
    margin-bottom: 3vw;
    margin-bottom: 40px;
    text-align: center;
}



/* **********************************************
index group 780
*********************************************** */
@media screen and (max-width: 780px) {
    #group {
        margin-bottom: 0;
        margin-bottom: -10vw;
        padding-bottom: 10vw;
    }
}

/* **********************************************
index group 480
*********************************************** */
@media screen and (max-width: 780px) {
    #group h2 {
        margin-bottom: 22px;
        font-size: 20px;
    }
}




/* **********************************************
g_list_wrap1
*********************************************** */
.g_list_wrap1 {
    width: calc(80vw);
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.g_list_wrap2 {
    width: calc(80vw - 27.3vw);
    margin: 0 auto;
    margin-top: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.g_list {
    width: 25vw;
    height: 26vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    -webkit-backface-visibility: hidden;
}

.g_list p {
    overflow: hidden;
}

.g_list p img {
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 16vw;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.g_list h3 {
    font-weight: normal;
    font-size: 22px;
    text-align: center;
    /*	margin-top:1vw;*/
}

.g_list span {
    font-size: 13px;
    display: block;
    background: linear-gradient(60deg, #6c4797, #5c5ea4);
    color: #fff;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-bottom: 1.8vw;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    letter-spacing: 1px;
}

.list_caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    font-size: 20px;
}

.g_list .list_main {
    margin-top: 0;
    font-size: 20px;
}

/* **********************************************
g_list_wrap1 1100
*********************************************** */
@media screen and (max-width: 1100px) {
    .g_list h3 {
        font-size: 2vw;
    }

    .g_list span {
        height: 30px;
    }

    .g_list .list_main,
    .list_caption {
        font-size: 1.6vw;
    }
}


/* **********************************************
g_list_wrap1 780
*********************************************** */
@media screen and (max-width: 780px) {
    .g_list_wrap1 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .g_list_wrap2 {
        width: 80vw;
    }

    .g_list h3 {
        font-size: 3vw;
    }

    .g_list {
        width: 38vw;
        height: 38vw;
    }

    .g_list_other {
        margin-top: 3vw;
    }

    .g_list span {
        margin-bottom: 3vw;
        height: 40px;
    }

    .g_list .list_main,
    .list_caption {
        font-size: 2.6vw;
    }
}

/* **********************************************
g_list_wrap1 480
*********************************************** */
@media screen and (max-width: 480px) {

    .g_list_wrap1,
    .g_list_wrap2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .g_list p img {
        height: 50vw;
    }

    .g_list h3 {
        font-size: 5.5vw;
    }

    .g_list .list_main,
    .list_caption {
        font-size: 5vw;
    }

    .g_list {
        width: 80vw;
        height: 82vw;
        margin-top: 3vw;
    }

    .g_list span {
        margin-bottom: 5vw;
        height: 40px;
    }
}








/* **********************************************
top
*********************************************** */
#top {
    position: relative;
}

#top p {
    background-color: #fff;
    overflow: hidden;
    width: calc(80vw);
    height: calc(32vw);
    max-height: 550px;
}

#top p img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%;
}

#top h2 {
    position: absolute;
    left: 0;
    top: 10vw;
    width: 30vw;
    height: 29vw;
    max-width: 450px;
    max-height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    letter-spacing: 2px;
    background-color: #aaa;
    font-weight: normal;
    font-size: 36px;
    color: #fff;
    background: linear-gradient(60deg, #6c4797, #5c5ea4);
}

#top h2.over {
    font-size: 32px;
}

#top h2 small {
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
}

/* **********************************************
top 780
*********************************************** */
@media screen and (max-width: 780px) {
    #top p {
        width: 100%;
    }

    #top p img {
        height: 110%;
    }

    #top h2 {
        font-size: 4.5vw;
    }

    #top h2 small {
        font-size: 2.5vw;
    }

    #top h2.over {
        font-size: 3.5vw;
    }
}








/* **********************************************
message_main
*********************************************** */
#message_main {
    margin: 0 auto;
    width: calc(62vw);
}

#message_main p {
    text-align: justify;
    line-height: 2.2;
    margin-bottom: 10px;
}

#message_main p.sign {
    margin-top: 40px;
    position: relative;
}

#message_main p.sign img {
    max-width: 195px;
    position: absolute;
    top: 10px;
    left: 170px;

}

#message_profile {
    border-top: 1px solid #ccc;
    margin: 0 auto;
    margin-top: 80px;
    width: calc(62vw);
}

#message_profile h3 {
    margin: 30px auto 10px;
    font-weight: normal;
    color: #6c4797;
    font-size: 13px;
}

#message_profile p {
    margin: 10px auto;
    font-size: 13px;
    line-height: 2.2;
}

/* **********************************************
message_main 780
*********************************************** */
@media screen and (max-width: 780px) {
    #message_main {
        width: calc(80vw);
    }

    #message_profile {
        width: calc(80vw);
    }

    #message_main p.sign img {
        max-width: 150px;
        top: 15px;
        left: 150px;
    }
}

/* **********************************************
message_main 480
*********************************************** */
@media screen and (max-width: 480px) {
    #message_main {
        width: calc(90vw);
    }

    #message_main p {
        font-size: 14px;
    }
}





/* **********************************************
organization_main
*********************************************** */
#organization_main p img {
    width: 100%;
}






/* **********************************************
disclosure_main
*********************************************** */
#disclosure_main {
    margin: 0 auto;
    width: calc(62vw);
}

#disclosure_main h3 {
    font-size: 15px;
    margin-bottom: 30px;
}

.disclosure_list_wrap {
    background-color: #fff;
    margin-bottom: 20px;
}

.disclosure_list_wrap h4 {
    font-size: 17px;
    color: #6c4797;
    height: 50px;
    line-height: 53px;
    text-align: center;
    position: relative;
}

.disclosure_list_wrap ul {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.disclosure_list_wrap ul a {
    font-size: 14px;
    display: block;
    position: relative;
    padding: 5px;
    border-bottom: 1px solid #e2e3e5;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.disclosure_list_wrap ul a:hover {
    background-color: #efefef;
}

.disclosure_list_wrap ul a:before {
    content: '>';
    color: #6c4797;
    margin-right: 3px;
}

/* 211118追加 */
.disclosure_list_wrap.advancement {
    width: 100%;
    margin-top: 20px;
}

.disclosure_list_wrap.advancement h4 {
    height: 54px;
    font-weight: normal;
}

.disclosure_list_wrap.advancement .toggle {
    padding: 1em 10% 40px;
}

.disclosure_list_wrap.advancement .toggle h5 {
    font-size: 16px;
    text-align: center;
}

.disclosure_list_wrap.advancement .toggle p {
    margin-top: 1em;
    font-size: 15px;
}

.disclosure_list_wrap.advancement .toggle .cont_select {
    width: 100%;
    border: 1px solid #eff0f2;
}

.disclosure_list_wrap.advancement .toggle .cont_select a {
    flex-direction: column;
    font-size: 14px;
}

.disclosure_list_wrap.advancement .toggle .cont_select span {
    color: #6c4797;
}

.disclosure_list_wrap.advancement .toggle .cont_select .top_text span {
    display: inline-block;
    margin-left: 1em;
}





/* **********************************************
disclosure_main 780
*********************************************** */
@media screen and (max-width: 780px) {
    #disclosure_main {
        width: calc(90vw);
    }

    .disclosure_list_wrap ul {
        width: 85%;
    }

    .disclosure_list_wrap h4 {
        font-size: 15px;
    }


    /* 211118追加 */
    .disclosure_list_wrap.advancement {
        margin-top: 10px;
    }

    .disclosure_list_wrap.advancement .toggle {
        padding: 1em 5% 40px;
    }

    .disclosure_list_wrap.advancement .toggle .cont_select {
        height: 80px;
    }

    .disclosure_list_wrap.advancement .toggle .cont_select::before {
        top: 36px;
    }

    .disclosure_list_wrap.advancement .toggle .cont_select::after {
        top: 43px;
    }

    .disclosure_list_wrap.advancement .toggle .cont_select a {
        padding: 0 2em;
    }

    .disclosure_list_wrap.advancement .toggle .cont_select .top_text {
        display: flex;
        flex-direction: column;
    }

    .disclosure_list_wrap.advancement .toggle .cont_select .top_text span {
        margin-left: 0;
    }
}







/* **********************************************
toggle
*********************************************** */
.t_trigger,
.t_trigger_ {
    cursor: pointer;
    position: relative;
}

.toggle {
    display: none;
}

.t_trigger:before,
.t_trigger:after,
.t_trigger_:before,
.t_trigger_:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #6c4797;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.t_trigger:before {
    right: 22px;
    top: 27px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.t_trigger:after {
    right: 15px;
    top: 27px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.t_trigger_:before {
    right: 15px;
    top: 27px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.t_trigger_:after {
    right: 22px;
    top: 27px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* **********************************************
toggle 480
*********************************************** */

.t_trigger:before {
    right: 14px;
}

.t_trigger:after {
    right: 7px;
}

.t_trigger_:before {
    right: 7px;
}

.t_trigger_:after {
    right: 14px;
}






/* **********************************************
history_main
*********************************************** */
.history {
    padding-bottom: 0;
}

#history_main {
    margin: 0 auto;
    width: calc(62vw);
}

.history_tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.history_tab li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 13px;
    padding: 5px 0;
    text-align: center;
    margin: 0 2px;
    background-color: #fff;
    color: #6c4797;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

.history_tab li.current {
    background-color: #6c4797;
    color: #fff;
}

#history_view {
    margin-top: 50px;
    position: relative;
}

#history_view>div {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0);
}

#history_view .label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 26px;
    color: #6c4797;
}

#history_view .cont {
    border-left: 1px solid #b3b4b4;
    margin: 45px 0 0 40px;
    padding: 20px;
    padding-left: 45px;
    min-height: 150px;
}

#history_view .cont_last {
    padding-bottom: calc(5vw + 230px)
}

#history_view .cont p {
    margin-top: 15px;
}

#history_view .cont p:nth-of-type(1) {
    margin-top: 0px;
}

p.bla_first {
    margin-left: -0.5em;
}

p.bla_first .normal {
    margin-left: 0.5em;
}

#history_view .cont p .offset {
    margin-left: 4em;
}

#history_view .cont_column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top;
}

.br_clear {
    display: block;
}


/* **********************************************
history_main 1200
*********************************************** */
@media screen and (max-width: 1200px) {
    #history_view .cont_column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #history_view .cont_column div:nth-child(2) {
        margin-left: 20px;
    }
}


/* **********************************************
history_main 1000
*********************************************** */
@media screen and (max-width: 1000px) {
    .history_tab li {
        font-size: 12px;
    }

    #history_main {
        width: calc(80vw);
    }
}


/* **********************************************
history_main 780
*********************************************** */
@media screen and (max-width: 780px) {
    #history_main {
        width: calc(80vw);
    }

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

    .history_tab li {
        border-radius: 0;
        margin: 1px;
        width: 49%;
        min-width: 30vw;
        font-size: 14px;
    }

    #history_view .label {
        font-size: 20px;
    }

    #history_view .cont {
        /*		border-left:none;*/
        /*		margin:0;*/
        padding: 0 0 20px 19px;
        min-height: 60px;

        margin-top: 35px;
        /*		margin-bottom:30px;
		padding-left:28px;*/
    }

    #history_view .cont p {
        margin-top: 5px;
    }

    #history_view .cont_last {
        padding-bottom: 0;
        margin-bottom: 20px;
    }

    .br_clear {
        display: none;
    }
}

/* **********************************************
history_main 480
*********************************************** */
@media screen and (max-width: 480px) {
    #history_main {
        width: calc(90vw);
    }

    #history_view .cont {
        margin-left: 28px;
        font-size: 14px;
    }

    #history_view .cont_last {
        padding-bottom: 20px;
    }
}


/* **********************************************
history_main photo
*********************************************** */
#history_view figure {
    position: absolute;
}

#history_view figcaption {
    font-size: 13px;
}

.hp_01 img,
.hp_02 img,
.hp_03 img,
.hp_04 img {
    max-height: 210px;
}

.hp_01 {
    top: 50px;
    right: -80px;
}

.hp_02 {
    top: 400px;
    right: 100px;
}

.hp_03 {
    top: 700px;
    right: -130px;
}

.hp_04 {
    top: 1050px;
    right: 130px;
}


.hp_05 img,
.hp_06 img,
.hp_07 img {
    max-height: 210px;
}

.hp_05 {
    top: 50px;
    right: 0px;
}

.hp_06 {
    top: 400px;
    right: -60px;
}

.hp_07 {
    top: 800px;
    right: -30px;
}


.hp_08 img,
.hp_09 img,
.hp_10 img {
    max-height: 190px;
}

.hp_08 {
    top: 50px;
    right: -20px;
}

.hp_09 {
    top: 400px;
    right: -170px;
}

.hp_10 {
    top: 800px;
    right: -100px;
}


.hp_11 img,
.hp_12 img {
    max-height: 200px;
}

.hp_11 {
    top: 50px;
    right: -90px;
}

.hp_12 {
    top: 400px;
    right: 0px;
}


.hp_13 img,
.hp_14 img,
.hp_15 img {
    max-height: 190px;
}

.hp_13 {
    top: 50px;
    right: -30px;
}

.hp_14 {
    top: 400px;
    right: -150px;
}

.hp_15 {
    top: 800px;
    right: -30px;
}

.hp_16 img,
.hp_17 img {
    max-height: 190px;
}

.hp_16 {
    top: 370px;
    right: -90px;
}

.hp_17 {
    top: 800px;
    right: -80px;
}


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

    .hp_01 img,
    .hp_02 img,
    .hp_03 img,
    .hp_04 img {
        max-height: 150px;
    }

    .hp_08 img,
    .hp_09 img,
    .hp_10 img {
        max-height: 150px;
    }

    .hp_17 {
        top: 680px;
    }

}

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

    .hp_01 img,
    .hp_02 img,
    .hp_03 img,
    .hp_04 img {
        max-height: 110px;
    }

    .hp_05 img,
    .hp_06 img,
    .hp_07 img {
        max-height: 150px;
    }

    .hp_08 img,
    .hp_09 img,
    .hp_10 img {
        max-height: 110px;
    }

    .hp_11 img,
    .hp_12 img {
        max-height: 150px;
    }

    .hp_13 img,
    .hp_14 img,
    .hp_15 img {
        max-height: 140px;
    }

    .hp_16 img,
    .hp_17 img {
        max-height: 150px;
    }


    .hp_17 {
        top: 720px;
    }

}

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

    .hp_01 img,
    .hp_02 img,
    .hp_03 img,
    .hp_04 img {
        max-height: 100px;
    }

    .hp_11 img,
    .hp_12 img {
        max-height: 130px;
    }

    .hp_01 {
        top: 50px;
        right: -50px;
    }

    .hp_02 {
        top: 430px;
        right: -50px;
    }

    .hp_03 {
        top: 730px;
        right: -50px;
    }

    .hp_04 {
        top: 1080px;
        right: -50px;
    }

    .hp_08 {
        top: 50px;
        right: -50px;
    }

    .hp_09 {
        top: 500px;
        right: -50px;
    }

    .hp_10 {
        top: 800px;
        right: -50px;
    }

    .hp_11 {
        top: 50px;
        right: -50px;
    }

    .hp_12 {
        top: 400px;
        right: -50px;
    }

    .hp_13 {
        top: 50px;
        right: -50px;
    }

    .hp_14 {
        top: 330px;
        right: -50px;
    }

    .hp_15 {
        top: 800px;
        right: -50px;
    }

    .hp_16 {
        top: 370px;
        right: -50px;
    }

    .hp_17 {
        top: 720px;
        right: -50px;
    }

}

@media screen and (max-width: 780px) {
    #history_view figure {
        position: relative;
        margin-bottom: 20px;
        top: 0px;
        right: 0px;
    }

    #history_view figure img {
        max-height: none;
        width: 100%;
    }
}





/* **********************************************
contribution_main
*********************************************** */
#contribution_main {
    margin: 0 auto;
    width: calc(62vw);
}

#contribution_main h3 {
    font-weight: normal;
    color: #6c4797;
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
}

#contribution_main p {
    text-align: justify;
    line-height: 2.2;
    margin-bottom: 1em;
    text-indent: 1em;
}

#contribution_main p.paragraph {
    margin-bottom: 0;
}

#contribution_main p.date {
    margin-top: 40px;
    margin-bottom: 30px;
    text-indent: 1em;
}

#contribution_main .sign_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

#contribution_main .sign_wrap .box {
    margin-right: 1em;
}

#contribution_main .sign_top {
    font-size: 15px;
    min-height: 50px;
    /* margin-right: 80px; */
}

#contribution_main .sign {
    font-size: 24px;
}

#contribution_main .sign .post {
    display: inline-block;
    margin-right: 1em;
    font-size: 0.7em;
}


/* **********************************************
contribution cont_select_wrap
*********************************************** */
.cont_select_wrap {
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cont_select {
    font-size: 17px;
    background-color: #fff;
    color: #6c4797;
    height: 54px;
    margin-top: 20px;
    text-align: center;
    position: relative;
    width: calc(50% - 20px);
    cursor: pointer;
}

.cont_select.top_cont {
    width: 100%;
}

.cont_select a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #6c4797;
    line-height: 1.2;
}

.cont_select:before,
.cont_select:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #6c4797;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.cont_select:before {
    right: 15px;
    top: 22px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cont_select:after {
    right: 15px;
    top: 29px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}



/* **********************************************
contribution_main 1200
*********************************************** */
@media screen and (max-width: 1200px) {
    .cont_select:nth-of-type(4),
    .cont_select:nth-of-type(4) a,
    .cont_select:nth-of-type(5),
    .cont_select:nth-of-type(5) a {
        font-size: 1.2vw;
    }
}
/* **********************************************
contribution_main 1000
*********************************************** */
@media screen and (max-width: 1000px) {

    .cont_select,
    .cont_select a {
        font-size: 13px;
    }

    // #contribution_main .sign_wrap {
    //     -webkit-box-orient: vertical;
    //     -webkit-box-direction: normal;
    //     -ms-flex-direction: column;
    //     flex-direction: column;
    // }

    #contribution_main .sign_top {
        min-height: 20px;
        margin-right: 0;
    }

    #contribution_main .sign_wrap>div:nth-of-type(2) {
        margin-top: 40px;
    }

}

/* **********************************************
contribution_main 780
*********************************************** */
@media screen and (max-width: 780px) {
    #contribution_main {
        width: calc(80vw);
    }

    .cont_select_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 70px;
        margin-bottom: 20px;
    }

    .cont_select {
        width: 100%;
        margin: 10px 0;
    }

    .cont_select,
    .cont_select a {
        font-size: 17px;
    }

    .cont_select:nth-of-type(4),
    .cont_select:nth-of-type(4) a,
    .cont_select:nth-of-type(5),
    .cont_select:nth-of-type(5) a {
        font-size: 17px;
    }

    .cont_select:before,
    .cont_select:after {
        right: 11px;
    }
}

/* **********************************************
contribution_main 480
*********************************************** */
@media screen and (max-width: 480px) {

    .cont_select,
    .cont_select a {
        font-size: 15px;
    }

    .cont_select:nth-of-type(4),
    .cont_select:nth-of-type(4) a,
    .cont_select:nth-of-type(5),
    .cont_select:nth-of-type(5) a {
        font-size: 15px;
    }


    #contribution_main {
        width: calc(90vw);
    }

    #contribution_main h3 {
        margin-bottom: 15px;
    }

    #contribution_main p {
        font-size: 14px;
    }
}


/* **********************************************
application_main
*********************************************** */
#application_main {
    margin: 0 auto;
    width: calc(62vw);
}

#application_main section {
    margin-bottom: 70px;
}

#application_main h3 {
    font-weight: normal;
    color: #6c4797;
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
}

#application_main h4 {
    font-weight: normal;
    background-color: #6c4797;
    color: #FFF;
    font-size: 18px;
    padding: 0 10px;
}

#application_main h5 {
    font-weight: normal;
    color: #6c4797;
    font-size: 18px;
    margin: 30px 0 10px 25px;
    position: relative;
}

/* IE対策 */
@media all and(-ms-high-contrast: none) {
    #application_main h5 {
        padding: .4em 0 .1em;
    }
}

#application_main h5:before {
    content: '';
    position: absolute;
    left: -25px;
    top: 6px;
    background-color: #6c4797;
    width: .9em;
    height: .9em;
}

#application_main h6 {
    font-size: 18px;
    font-weight: normal;
    margin: 20px 0 10px 0;
}

#application_main .ps {
    list-style-type: square;
    padding-left: 30px;
}

#application_main .to_app_pdf {
    text-decoration: underline;
}

#application_main .cont_select {
    max-width: 630px;
    width: 100%;
    margin: 1em 0;
}

.br_appear {
    display: none;
}

/* **********************************************
application_main table
*********************************************** */
#application_main table {
    margin: 30px 0;
    border-collapse: collapse;
    width: 100%;
}

#application_main table td {
    padding: 10px;
    border: 1px solid #e2e3e5;
    font-size: 14px;
}

#application_main table td.b1 {
    background-color: #c9c4d7;
}

#application_main table td.b2 {
    background-color: #d3cfde;
}

#application_main table td.b3 {
    background-color: #fff;
}

#application_main .table {
    display: none;
}



/* **********************************************
application_main 780
*********************************************** */
@media screen and (max-width: 780px) {
    #application_main {
        width: calc(80vw);
    }

    #application_main table {
        display: none;
    }


    #application_main .table {
        display: block;
        margin: 30px 0;
    }

    #application_main .tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid #e2e3e5;
    }

    #application_main .b1 {
        background-color: #c9c4d7;
        margin-top: 20px;
        padding: 3px;
        border-bottom: 1px solid #e2e3e5;
    }

    #application_main .b2 {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        background-color: #d3cfde;
        font-size: 13px;
        width: 100px;
        min-width: 100px;
        max-width: 100px;
        padding: 3px;
    }

    #application_main .b3 {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        font-size: 13px;
        padding: 3px;
    }

    #application_main .cont_select:nth-of-type(2) a {
        font-size: 13px;
    }
}

/* **********************************************
application_main 600
*********************************************** */
@media screen and (max-width: 600px) {
    .br_appear {
        display: block;
    }
}

/* **********************************************
application_main 480
*********************************************** */
@media screen and (max-width: 480px) {
    #application_main {
        width: calc(90vw);
    }

    #application_main h3 {
        margin-bottom: 15px;
    }

    #application_main h6 {
        font-size: 16px;
    }

    #application_main p {
        font-size: 14px;
    }

    .ps li {
        font-size: 14px;
    }
}


/* **********************************************
form_main
*********************************************** */
#form_main {
    margin: 0 auto;
    width: calc(62vw);
}

#form_main h3 {
    font-weight: normal;
    color: #6c4797;
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
}

.form_info_add {
    margin-top: 20px;
    font-size: 12px;
}

.top_required {
    text-align: right;
    font-size: 12px;
}

.required {
    color: #e10012;
}

#form_wrap {
    width: 85%;
    margin: 50px auto;
}

.form_sep {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #b3b4b4;
    padding: 15px 0;
}

.form_sep .label {
    min-width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form_sep .input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.input_text {
    padding: 10px;
    -webkit-appearance: none;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    width: 100%;
}

.input_select {
    padding: 6px 25px 6px 6px;

    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    background: #FFF url(../img/select_arrow.png) no-repeat;
    background-position: right center;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    font-size: 16px;
    border-radius: 5px;
    border: none;
}




/* **********************************************
form_main add_input
*********************************************** */
.add_input {
    margin-top: 15px;
    padding: 15px 0 0 0;
    border-top: 1px solid #b3b4b4;
    display: none;
    width: 100%;
}

.add_input p {
    color: #6c4797;
    margin-bottom: 10px;
}

.add_input p.ex {
    color: #000;
    margin-top: 20px;
}

.add_input .form_sep {
    border-bottom: none;
    padding: 5px 0;
}

.add_input .label {
    min-width: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.add_input .input_select {
    margin-right: 10px;
}



#form_submit_check {
    margin-top: 30px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #e10012;
}

#mail_submit_check {
    margin-top: 30px;
    text-align: center;
    min-height: 40px;
    color: #e10012;
}


#to_form,
#form_submit_pre,
#form_submit,
#form_finish_to_top,
#to_transfer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(60deg, #6c4797, #5c5ea4);
    margin: 0 auto;
    margin-top: 50px;
    max-width: 500px;
    height: 70px;
    font-size: 22px;
    text-align: center;
    cursor: pointer;
}

#form_submit_pre,
#form_submit {
    margin-top: 0;
}

#to_form,
#to_transfer {
    margin-bottom: 70px;
}


/* **********************************************
form_confirm
*********************************************** */
#form_confirm_wrap,
#form_finish_wrap {
    width: 85%;
    margin: 50px auto;
    display: none;
    /* min-height:300px; */
}

#submit_return {
    font-size: 17px;
    background-color: #fff;
    color: #6c4797;
    height: 50px;
    line-height: 53px;
    text-align: center;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 40%;
    cursor: pointer;
}

#submit_return:before,
#submit_return:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #6c4797;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#submit_return:before {
    left: 15px;
    top: 22px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

#submit_return:after {
    left: 15px;
    top: 29px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#form_finish_wrap {
    min-height: 150px;
}




/* **********************************************
form_main 1100
*********************************************** */
@media screen and (max-width: 1200px) {

    #form_wrap,
    #form_confirm_wrap,
    #form_finish_wrap {
        width: 100%;
    }
}


/* **********************************************
form_main 1000
*********************************************** */
@media screen and (max-width: 1000px) {
    #form_main {
        width: calc(80vw);
    }

    .input_select {
        width: 100%;
        max-width: 100%;
    }
}


/* **********************************************
form_main 780
*********************************************** */
@media screen and (max-width: 780px) {
    #form_main {
        width: calc(90vw);
    }

    .form_sep {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .add_input .form_sep {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .add_input .input_select {
        width: 100%;
        max-width: 100%;
    }
}


/* **********************************************
form_main 480
*********************************************** */
@media screen and (max-width: 480px) {
    #form_main h3 {
        margin-bottom: 15px;
    }

    #to_form,
    #form_submit_pre,
    #form_submit,
    #form_finish_to_top {
        height: 50px;
        font-size: 15px;
    }
}

/* **********************************************
20190830追加
*********************************************** */
#disclosure_main .cont_select_wrap {
    margin-top: -20px;
    margin-bottom: 7VW;
}

@media screen and (max-width: 780px) {
    #disclosure_main .cont_select_wrap {
        margin-top: 20px;
        margin-bottom: 70px;
    }
}

/* **********************************************
20201007追加	各種届出notification
*********************************************** */
#top .notification_top {
    background-image: url(../img/top_notifications.jpg);
    background-position: 30% 98%;
    background-repeat: no-repeat;
    background-size: 145% auto;
}

#notification_main {
    margin: 0 auto;
    width: calc(62vw);
}

#notification_main .sp {
    display: none;
}

#notification_main .flex_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
}

#notification_main h3 {
    font-weight: normal;
    color: #6c4797;
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
}

#notification_main h3 small {
    display: block;
    margin: 0 -30px;
    color: #6c4797;
    font-size: .7em;
}

#notification_main p {
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.8;
}

.form_btn_area {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 80px;
}

.form_btn_area .form_btn_container {
    width: 50%;
    padding-right: 5%;
}

.form_btn_area .form_btn_container:nth-of-type(2) {
    border-left: #6c4797 1px solid;
    padding-left: 5%;
    padding-right: 0;
}

.form_btn_area .form_btn_topic {
    color: #6c4797;
    font-size: 20px;
    font-weight: normal;
}

.form_btn_area .form_btn_topic::before {
    content: "";
    display: inline-block;
    background-color: #6c4797;
    width: .8em;
    height: .8em;
    margin: 0 10px -1px 0;
}

#notification_main .form_btn_area .form_btn_text {
    height: 100px;
    margin-top: 20px;
    text-align: left;
}

.form_btn_area .form_btn {
    display: block;
    width: 100%;
    padding: 22px 0 21px;
    background: linear-gradient(60deg, #6c4797, #5c5ea4);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    text-align: center;
}

.fax_area {
    position: relative;
    margin: 120px auto 0;
    padding: 50px 0;
    max-width: 715px;
    width: 100%;
    border: #6c4797 1px solid;
}

.fax_area .fax_topic {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 11em;
    background-color: #eff0f2;
    color: #6c4797;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

#notification_main .fax_area .fax_text {
    padding: 0 10px;
}

.fax_area .fax_btn_container {
    margin-top: 30px;
    padding: 0 70px;
}

.fax_area .fax_btn {
    position: relative;
    min-width: 200px;
    margin: auto;
    padding: 10px;
    background-color: #fff;
    text-align: center;
}

.fax_area .fax_btn::after {
    content: url(../img/icon_download.svg);
    display: block;
    position: absolute;
    top: 30%;
    right: 20px;
    width: .8em;
    height: auto;
    font-size: 20px;
}

.fax_area .sender_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 50px auto 0;
}

.fax_area .sender_topic {
    margin-right: 5%;
    padding: 10px 50px;
    background-color: #6c4797;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
}

.fax_area .sender_number {
    font-size: 40px;
}

.fax_area .fax {
    display: inline-block;
    padding-right: 7px;
    font-size: 0.7em;
    text-transform: uppercase;
}

@media screen and (max-width: 900px) {
    .fax_area .fax_btn_container {
        padding: 0;
    }
}
@media screen and (max-width: 780px) {
    #notification_main {
        width: 80vw;
    }

    #notification_main .pc {
        display: none;
    }

    #notification_main .sp {
        display: block;
    }

    #notification_main .flex_box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #notification_main p {
        text-align: left;
    }

    .form_btn_area .form_btn_container {
        width: 100%;
        padding-right: 0;
    }

    .form_btn_area .form_btn_container:nth-of-type(2) {
        border-left: none;
        margin-top: 60px;
        padding: 0;
    }

    #notification_main .form_btn_area .form_btn_text {
        height: auto;
    }

    .form_btn_area .form_btn {
        margin-top: 20px;
    }

    .fax_area {
        width: 100%;
        text-align: center;
    }

    #notification_main .fax_area .fax_text {
        padding: 0 20px;
        text-align: center;
    }

    .fax_area .fax_btn {
        min-width: 200px;
        margin: 20px auto 0;
    }

    .fax_area .sender_container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .fax_area .sender_topic {
        margin: 0 auto;
    }

    .fax_area .sender_number {
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .fax_area .sender_number {
        font-size: 36px;
    }
}