@charset "UTF-8";

html {
    font-size: 16px;
    -webkit-text-size-adjust:none;
    color:#000;
}

body {
    background: #fff;
	font-size:12px;
    font-family:'Noto Sans TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
    background: url(../images/main_bg.jpg) repeat-y center center;
    background-size: 100% auto;
}

img {
    position: relative;
    display: block;
    border: 0;
    width: 100%;
    height: auto;
}
.wrap {
    position: absolute;
    display: block;
    width: 100%;
    overflow: hidden;
}
.wrap .preload {
    display: none;
}
.symbol-m {
    display: none !important;
}
@media screen and (max-width: 800px) {
    .symbol-m {
        display: block !important;
    }
    .symbol-pc {
        display: none !important;
    }
}
.wrap a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
}

.nav {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav.nav-fixed {
    background: #fff;
    border-bottom: 1px solid #eee;
    height: 4vw;
}
.nav .nav-logo {
    display: none;
}
.nav.nav-fixed .nav-logo {
    position: absolute;
    display: block;
    width: 5vw;
    top:1vw;
    left: 8vw;
}
.nav .nav-menu {
    position: absolute;
    display: block;
    right: 2vw;
    top:2vw;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav.nav-fixed .nav-menu {
    top:1vw;
}
.nav.expand .nav-menu {
    left: 0;
}
.nav .nav-menu ul {
    position: relative;
    display: flex;
}
.nav .nav-menu ul li {
    position: relative;
    display: block;
    font-family:'Noto Sans TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
    font-weight: 700;
    font-size: 1.1vw;
    line-height: 180%;
    text-align: center;
    cursor: pointer;
    color:#fff;
    height: 2vw;
    padding: 0 1vw;
    margin: 0 0.5vw;
}
.nav.nav-fixed .nav-menu ul li {
    color: #7935b5;
}
.nav .nav-menu ul li:hover {
    background: #662D91;
    background: linear-gradient(90deg,rgba(102, 45, 145, 1) 0%, rgba(58, 121, 175, 1) 100%);
    border-radius: 1vw;
}
.nav.nav-fixed .nav-menu ul li:hover {
    color: #fff;
}
.nav .nav-menu ul li span {
    position: relative;
    display: inline-block;
}
.nav .nav-menu ul li:last-child {
    border-right: 0;
}

@media screen and (max-width: 800px) {
    .nav.nav-fixed {
        height: 60px;
    }
    .nav.nav-fixed .nav-logo {
        width: 80px;
        top:3vw;
        left: 8vw;
    }
    .nav .nav-menu {
        position: absolute;
        display: block;
        right: auto;
        left: 100%;
        top:0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 1;
    }
    .nav.nav-fixed .nav-menu {
        top:0;
    }
    .nav.expand .nav-menu {
        left: 0;
    }
    .nav .nav-menu ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
    .nav .nav-menu ul li {
        font-size: 4vw;
        line-height: 100%;
        padding: 5vw 0;
        text-align: center;
        cursor: pointer;
        color:#7935b5;
        border-right:0px;
        border-bottom:1px solid rgba(255,255,255,1);
        width: 70%;
        background: none;
        line-height: 100%;
    }
    .nav .nav-menu ul li:hover {
        color: #666;
    }
    .nav .nav-menu ul li span {
        position: relative;
        display: inline-block;
    }
    .nav .nav-menu ul li:last-child {
        border-right: 0;
    }
    .nav .burger-btn {
        position: absolute;
        display: block;
        width: 40px;
        height: 30px;
        right: 15px;
        top:20px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index:2;
    }
    .nav.nav-fixed .burger-btn {
        top:20px;
        right: 15px;
    }
    .nav .burger-btn span {
        position: absolute;
        display: block;
        width: 100%;
        height: 4px;
        background: #7935b5;
        border-radius: 2px;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
    }
    .nav.nav-fixed .burger-btn span{
        background: #7935b5;
    }
    .nav .burger-btn span:nth-child(1) {
        -webkit-transform: scale(1,1) translate(0,0) rotate(0deg);
        transform: scale(1,1) translate(0,0) rotate(0deg);
    }
    .nav .burger-btn span:nth-child(2) {
        -webkit-transform: scale(1,1) translate(0,10px) rotate(0deg);
        transform: scale(1,1) translate(0,10px) rotate(0deg);
    }
    .nav .burger-btn span:nth-child(3) {
        -webkit-transform: scale(1,1) translate(0,20px) rotate(0deg);
        transform: scale(1,1) translate(0,20px) rotate(0deg);
    }
    .nav.expand .burger-btn span:nth-child(1) {
        -webkit-transform: scale(1,1) translate(0,10px) rotate(45deg);
        transform: scale(1,1) translate(0,10px) rotate(45deg);
    }
    .nav.expand .burger-btn span:nth-child(2) {
        -webkit-transform: scale(0,1) translate(0,10px) rotate(0deg);
        transform: scale(0,1) translate(0,10px) rotate(0deg);
    }
    .nav.expand .burger-btn span:nth-child(3) {
        -webkit-transform: scale(1,1) translate(0,10px) rotate(-45deg);
        transform: scale(1,1) translate(0,10px) rotate(-45deg);
    }
    
}

.footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #6d3580;
    padding: 2vw 0;
    color: #fff;
}
.footer span {
    text-align: center;
    line-height: 180%;
    font-size: 0.95vw;
}
@media screen and (max-width: 800px) {
    .footer span {
        font-size: 1.7vw;
    }
}

.popup {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index:9999;
    left: 100%;
    top:0;
    -wekbit-transition: left 0.5s ease;
    transition: left 0.5s ease;
}
.popup.expand {
    left: 0;
}
.popup-content {
    position: relative;
    display: block;
    width:55vw;
    background: rgb(175,216,181);
    background: linear-gradient(30deg, rgba(255,210,210,1) 0%, rgba(255,255,255,1) 70%);
    padding: 1vw 2vw;
    border-radius: 2vw;
}
.popup-content .t1 {
    position: relative;
    display: block;
    font-size: 1.2vw;
    line-height: 150%;
    color: #7935b5;
    padding: 1vw 0;
    border-bottom: 1px solid #555555;
}
.popup-content .t1 span {
    position: relative;
    display: block;
    font-size: 2.5vw;
    line-height: 200%;
}
.popup-content .t2 {
    position: relative;
    display: block;
    font-size: 1vw;
    line-height: 180%;
    padding: 1vw 0;
}
.popup-content .close-btn {
    position: absolute;
    display: block;
    right: 1vw;
    top:1vw;
    z-index: 999;
    width: 2vw;
}
@media screen and (max-width: 800px) {
    .popup-content {
        width: 80vw;
        padding: 6vw 3vw;
    }
    .popup-content .t1 {
        font-size: 3vw;
        padding: 2vw 0;
    }
    .popup-content .t1 span {
        font-size: 5vw;

    }
    .popup-content .t2 {
        font-size: 3vw;
        padding: 2vw 0;
        max-height: 70vh;
        overflow-y: auto;
    }
    .popup-content .close-btn {
        top:2vw;
        right: 2vw;
        width: 6vw;
    }
}

.hover-scale {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.hover-scale:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.kv-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100vw;
    height: 50vw;
    overflow: hidden;
    background: url(../images/kv_bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 10vw 0 0 0;
    margin: 0 auto;
    font-size: 0.8vw;
}
.kv-box .kv-logo {
    position: absolute;
    display: block;
    width: 8em;
    top:1.5em;
    left: 7em;
}
.kv-box .kv-title {
    position: relative;
    display: block;
    width: 55em;
    margin: 0 0 0 7em;
}
.kv-box .kv-p1 {
    position: absolute;
    display: block;
    width: 70em;
    right: -5em;
    top:10em;
}
.kv-box .kv-p2 {
    position: absolute;
    display: block;
    width: 20em;
    left: 35em;
    top:40em;
}
.kv-box .kv-textbox {
    position: relative;
    display: block;
    color: #fff;
    width: 100%;
    text-align: left;
    z-index: 1;
}
.kv-box .kv-textbox .t1 {
    position: relative;
    display: block;
    color: #d42424;
    font-size: 1.8em;
    line-height: 150%;
    margin: 0;
}
.kv-box .kv-textbox .t2 {
    position: relative;
    display: block;
    width: 42em;
    margin: 1em 0 3em 0;
    color: #231815;
    font-size: 1.5em;
    line-height: 150%;
}
.kv-box .kv-textbox .t3 {
    position: relative;
    display: block;
    width: 42em;
    margin: 1em 0 3em 0;
    color: #231815;
    font-size: 0.95em;
    line-height: 150%;
}
.kv-box .kv-textbox .t3 .small-t {
    font-size: 0.8em;
}
.kv-box .go-form-btn {
    position: absolute;
    display: block;
    width: 15.6em;
    left: 65em;
    bottom:9em;
}
@media screen and (max-width: 800px) {
    .kv-box {
        width: 100%;
        height: 180vw;
        /*height: 125vw;*/
        justify-content: flex-start;
        padding: 25vw 0 0 0;
    }
    .kv-box .kv-logo {
        width: 40vw;
        top:5vw;
        left: 5vw;
    }
    .kv-box .kv-title {
        width: 90vw;
        margin: 15vw 0 0 5vw;
    }
    .kv-box .kv-p1 {
        right: -20vw;
        top:100vw;
        width: 100vw;
    }
    .kv-box .kv-p2 {
        left: -10vw;
        top:90vw;
        width: 35vw;
    }
    .kv-box .kv-textbox {
        margin: 4vw 0 0 0;
        padding: 0;
    }

}
.side-btn {
    position: fixed;
    right: 1vw;
    bottom: 10vw;
    z-index: 9;
    width: 3vw;
}
@media screen and (max-width: 800px) {
    .side-btn {
        width: 7vw;
    }
}
.stage-container {
    position: relative;
    display: block;
    width: 100%;
    z-index: 2;
}
.stage-container1 {
    top:-1px;
}

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

}
.stagebox {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stage-title {
    position: relative;
    display: block;
    width: 21vw;
    margin: 5vw auto 5vw auto;
}

.stage1 {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 8em;
}
.stage1 .stage-title {
    margin: 7em 0 2em 0;
}
.stage1 .stage-textbox {
    position: relative;
    display: block;
    width: 40em;
    margin: 0 auto 5em auto;
}

@media screen and (max-width: 800px) {
    .stage-title {
        width: 35vw;
        margin: 5vw auto 5vw auto;
    }
    .stagebox {
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        margin: 0 auto;
    }
    .stage1 {
        padding:0;
    }
    .stage1 .stage-title {
        width: 35vw;
        margin: 20vw 0 0 0;
    }
    .stage1 .stage-textbox {
        width: 85vw;
    }
}
.stage2::after {
    content: "";
    position: absolute;
    display: block;
    width: 100vw;
    height: 30vw;
    background: url(../images/stage3_bg.png) no-repeat center center;
    background-size: 100% auto;
    top:35vw;
}
.stage2 .stage-textbox {
    position: relative;
    display: block;
    width: 75vw;
    margin: 0 auto;
    font-size: 1vw;
}
.stage2-t1 {
    position: relative;
    display: block;
    width: 45vw;
}
.stage2-t2 {
    position: relative;
    display: block;
    font-size: 1.5em;
    line-height: 180%;
    padding: 1em 0;
}
.stage2-t3 {
    position: relative;
    display: block;
    font-size: 2em;
    line-height: 180%;
    padding: 1em 0;
    text-align: center;
    font-weight: bolder;
}
.stage2-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items:flex-start;
}
.stage2-list li {
    position: relative;
    display: block;
    width: calc(25% - 2px);
    border-left: 1px solid #6d3580;
}
.stage2-list li:first-child {
    border-left: 0px;
}
.stage2-list li .imgbox {
    position: relative;
    display: block;
    width: 40%;
    margin: 0 auto;
}
.stage2-list li .textbox {
    position: relative;
    display: block;
    padding: 1em 2em;
    font-size: 1em;
    line-height: 150%;
}
@media screen and (max-width: 800px) {
    .stage2::after {
        content: "";
        position: absolute;
        display: block;
        width: 100vw;
        height: 30vw;
        background: url(../images/stage3_bg.png) no-repeat center center;
        background-size: 100% auto;
        top:55vw;
    }
    .stage2 .stage-textbox {
        width: 90vw;
        font-size: 2vw;
    }
    .stage2-t1 {
        width: 80vw;
    }
    .stage2-list {
        flex-wrap: wrap;
    }
    .stage2-list li {
        width: calc(50% - 2px);
        border-left: 0px solid #6d3580;
    }
    .stage2-list li .textbox {
        font-size: 1.2em;
    }
}

.stage3{
    margin: 5vw 0 0 0;
}
.stage3 .stage-textbox {
    position: relative;
    display: block;
    width: 50vw;
    margin: 0 auto 5vw auto;
}
@media screen and (max-width: 800px) {
    .stage3 .stage-textbox {
        width: 90vw;
    }
}
.stage4{
    margin: 5vw 0 0 0;
}
.stage4-t1 {
    position: relative;
    display: block;
    width: 60vw;
    margin: 0 auto;
}
.stage4-t2 {
    position: relative;
    display: block;
    width: 60vw;
    margin: 3vw auto 0 auto;
}
@media screen and (max-width: 800px) {
    .stage4-t1 {
        width: 100%;
    }
    .stage4-t2 {
        width: 100%;
    }
}
.stage5 {
    padding: 3vw 0 0 0;
    background: #fff;
}
.stage5 .stage-title {
    width: 30vw;
}
.stage5 .sub-title {
    position: relative;
    display: block;
    margin: 1vw auto 3vw auto;
    color:#555;
    font-size: 2vw;
    line-height: 150%;
    font-weight: bolder;
    width: 65vw;
    font-style: italic;
}
.stage5-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 0 4vw 0;
}
.stage5-list li {
    position: relative;
    display: block;
    width: calc(20vw - 4vw);
    margin: 0 2vw;
    cursor: pointer;
}
.stage5-list li .imgbox {
    position: relative;
    display: block;
    width: 100%;
}
.stage5-list li .textbox {
    position: relative;
    display: block;
    font-size: 1vw;
    line-height: 120%;
    color: #555;
    padding: 0.5em 0 0 0;
}
.stage5-list li .textbox .t2 {
    margin: 0.5em 0 0 0;
}
.stage5-list li .textbox .t2 span:first-child {
    font-size: 1.3em;
    line-height: 120%;
    margin: 0 0.3em 0 0;
    color: #000;
}
@media screen and (max-width: 800px) {
    .stage5 {
        padding: 5vw 0 0 0;
    }
    .stage5 .stage-title {
        width: 50vw;
    }
    .stage5 .sub-title {
        margin: 1vw auto 3vw auto;
        font-size: 5vw;
        line-height: 150%;
        width: 90vw;
    }
    .stage5-list {
        flex-wrap: wrap;
        margin: 0 auto 4vw auto;
        width: 90%;
        border-bottom: 1px solid #e49fc4;
    }
    .stage5-list li {
        width: calc(40vw - 4vw);
        margin: 0 2vw 4vw 2vw;
    }
    .stage5-list li .imgbox {
        position: relative;
        display: block;
        width: 100%;
    }
    .stage5-list li .textbox {
        font-size: 3vw;
        padding: 0.5em 0 0 0;
    }
    .stage5-list li .textbox .t2 {
        margin: 0.5em 0 0 0;
    }
    .stage5-list li .textbox .t2 span:first-child {
        font-size: 1.3em;
        line-height: 120%;
        margin: 0 0.3em 0 0;
        color: #000;
    }
}
.stage6 {
    background: #4d4d4d;
}
.stage6 .contentbox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70vw;
    margin: 0 0 5vw 0;
}
.stage6 .contentbox .stage6-mapbox {
    position: relative;
    display: block;
    width: 35vw;
    height: 35vw;
}
.stage6 .contentbox .stage6-mapbox iframe {
    width: 100%;
    height: 100%;
}
.stage6 .contentbox .stage6-textbox {
    position: relative;
    display: block;
    width: 35vw;
    font-size: 1.2vw;
    line-height: 150%;
    color: #fff;
    padding: 0 0 0 3vw;
}
.red-text {
    color: #ff0000;
    font-weight: 700;
}
.blue-text {
    color: #0070c0;
    font-weight: 700;
}
.orange-text {
    color: #ff9933;
    font-weight: 700;
}
.black-text {
    color:darkorange;
    font-weight: 700;
    font-size: 1.2em;
}
@media screen and (max-width: 800px) {
    .stage6 .contentbox {
        flex-direction: column;
        width: 100vw;
    }
    .stage6 .contentbox .stage6-mapbox {
        width: 85vw;
        height: 85vw;
    }
    .stage6 .contentbox .stage6-textbox {
        font-size: 3vw;
        padding: 8vw 0 8vw 0;
        width: 85vw;
    }
}

.stage7 .formbox{
    position: relative;
    display: block;
    width:60vw;
    margin: 0 auto 5vw auto;
    padding: 3vw;
    background: #fff;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.2);
}

.stage7 .form-list {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}
.stage7 .formbox ul li {
    position: relative;
    display: block;
    margin: 0 1vw 1.5vw 1vw;
    width: calc(50% - 2vw);
}
.stage7 .form-list select {
    width: 100%;
    height: 2.5vw;
    font-size: 1.5vw;
    line-height: 2.5vw;
    padding: 0 1vw;
    color: #888;
}
.stage7 .formbox label {
    position: relative;
    display: inline-block;
    width: 20vw;
    font-size: 1.5vw;
    line-height: 150%;
}
.stage7 .formbox ul li label {
    display: block;
}
.stage7 .formbox ul li label::after {
    content: "*";
    color: crimson;
}
.stage7 .formbox input {
    width: 100%;
    height: 2.5vw;
    font-size: 1.5vw;
    line-height: 2.5vw;
    padding: 0 1vw;
}
.stage7 .formbox input[type="radio"] {
    width: 2vw;
    margin: 0 1vw 0 0;
}
.stage7 .formbox ul li.your-plan-check {
    display: flex;
    align-items: center;
}
.stage7 .formbox ul li.your-plan-check label {
    margin: 0 1vw 0 0;
    width: auto;
}
.stage7 .formbox ul li.your-plan-check input {
    margin: 0;
}
.stage7 .formbox ul li.your-plan-check label::after {
    display: none;
}
.stage7 .formbox ul li.your-plan-check label:last-child {
    margin: 0;
}
.stage7 .formbox ul li.your-plan-check label:last-child::after {
    display: inline-block;
}

.stage7 .formbox .sub-label {
    width: auto;
    margin: 0 3vw 0 0;
}
.stage7 .formbox input[type="checkbox"] {
    width: 2.5vw;
    margin: 0 1vw 0 0;
}
.stage7 .formbox .agreebox {
    padding: 2vw;
    background: #e6e6e6;
    margin: 1vw;
}
.stage7 .formbox .agreebox dt {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw;
    color: #000;
}
.stage7 .formbox .agreebox dd {
    position: relative;
    display: block;
    font-size: 1.4vw;
    line-height: 180%;
    padding: 1vw 0;
}
.stage7 .formbox .privacy-btn {
    position: relative;
    display: block;
    width: 10vw;
    cursor: pointer;
    margin: 0 0 1vw 0;
}
.stage7 .formbox .agreebox label{
    width: auto;
}
.stage7 .formbox input[type="button"]{
    position: relative;
    display: block;
    width: 18vw;
    height: 5vw;
    font-size:0px;
    border:0px;
    background: url(../images/send-btn.png) no-repeat center center;
    background-size: contain;
    margin: 2vw auto;
    border-radius: 3vw;
}
.stage7 .formbox .notebox {
    position: relative;
    display: block;
    padding: 1vw;
}
.stage7 .formbox .notebox .note-title {
    position: relative;
    display: block;
    font-size: 1.5vw;
    line-height: 150%;
    color: #c1272d;
}
.stage7 .formbox .notebox ol{
    padding: 1vw 0;
}
.stage7 .formbox .notebox ol li{
    list-style-type: decimal;
    font-size: 1.2vw;
    line-height: 150%;
    margin: 0 0 1vw 3vw;
}
@media screen and (max-width: 800px) {
    .stage7 {
        padding: 5vw 0 0 0;
    }
    .stage7 .formbox{
        width:90vw;
        margin: 0 auto 5vw auto;
        padding: 3vw;
        border-radius: 2vw;
        box-shadow: 0 1vw 2vw rgba(0,0,0,0.2);
    }
    .stage7 .formbox ul li {
        margin: 0 0 4vw 0;
        width: 100%;
    }
    .stage7 .form-list select {
        width: 100%;
        height: 7vw;
        font-size: 4vw;
        line-height: 7vw;
    }
    .stage7 .formbox label {
        width: 50vw;
        font-size: 3vw;
    }
    .stage7 .formbox input {
        width: 100%;
        height: 7vw;
        font-size: 4vw;
        line-height: 7vw;
    }
    .stage7 .formbox input[type="radio"] {
        width: 5vw;
        margin: 0 1vw 0 0;
    }
    .stage7 .formbox ul li.your-plan-check label {
        margin: 0 2vw 0 0;
        width: auto;
    }
    .stage7 .formbox .agreebox {
        margin: 0;
    }
    .stage7 .formbox .agreebox dt {
        padding: 5vw;
    }
    .stage7 .formbox .agreebox dd {
        font-size: 3vw;
        padding: 2vw 0;
    }
    .stage7 .formbox .privacy-btn {
        width:25vw;
        margin: 0 0 3vw 0;
    }
    .stage7 .formbox .agreebox label{
        width: auto;
    }
    .stage7 .formbox input[type="button"]{
        width: 40vw;
        height: 12vw;
    }
    .stage7 .formbox .notebox {
        position: relative;
        display: block;
        padding: 1vw;
    }
    .stage7 .formbox .notebox .note-title {
        font-size: 4vw;
    }
    .stage7 .formbox .notebox ol{
        padding: 2vw 0;
    }
    .stage7 .formbox .notebox ol li{
        font-size: 3vw;
        line-height: 150%;
        margin: 0 0 3vw 5vw;
    }
}

.logo-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80vw;
    flex-wrap: wrap;
}
.logo-list li {
    margin: 2vw;
}
.logo-list li dl {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-list li dl dt {
    position: relative;
    display: block;
    font-size: 1vw;
    line-height: 100%;
}
.logo-list li dl dd {
    position: relative;
    display: block;
    margin: 0 2vw 0 0;
}
.logo-list li dl dd:last-child{
    margin: 0;
}
.logo-list li dl dd img {
    position: relative;
    display: block;
    width: auto;
    height: 3vw;
}
.logo-list li dl dd.tp-logo img {
    height: 4vw;
}
@media screen and (max-width: 800px) {
    .logo-list {
        flex-direction: column;
        width: 70vw;
        margin: 0 auto;
    }
    .logo-list li {
        margin: 3vw 0;
    }
    .logo-list li dl {
        flex-wrap: wrap;
        margin: 0 0 2vw 0;
    }
    .logo-list li dl dt {
        font-size: 3vw;
        width: 100%;
        text-align: center;
        margin: 0 0 2vw 0;
    }
    .logo-list li dl dd {
        margin:2vw;
    }
    .logo-list li dl dd img {
        height: 7vw;
    }
    .logo-list li dl dd.tp-logo img {
        height: 10vw;
    }
}