@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

/* global */
:root {
  scroll-padding-top: 6.9vw;
}
*, *:before, *:after {
    box-sizing: border-box;
	 -webkit-box-sizing: border-box;
}
*:focus { 
    outline: none; 
}
table {
    width: 100%;
}
a {
    text-decoration: none;
}
a:hover {
/*    text-decoration: underline;*/
}
.link {
    color: #007dc5;
    display: inline-block;
}
.link:hover {
    text-decoration: underline;
}
p, .p {
    margin-bottom: 10px;
	line-height: 1.5;
}
.hidden {
    overflow: hidden;
}
.clear:after {
	content: '';
	display: table;
	clear: both;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.tl {
    text-align: left;
}
.tc {
    text-align: center;
}
.tr {
    text-align: right;
}
.inner {
	max-width: 70vw;
	margin: auto;
}
main {
	
}
section {
	
}
.video_wrap {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	max-height: 100%;
	max-width: 100%;
	min-height: 100%;
	min-width: 100%;
	width: 0;
}
.max100 {
    max-width: 100%;
}
.full {
/*    width: 100%;*/
}
.r {
    position: relative;
}
.flex {
    display: flex;
}
.flex_1 {
    flex: 1;
}

/* header */
header {
	
}
nav {
	
}

/* footer */
footer {
	
}
footer img {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
}

/* title & font-size */
h2 {
    color: #259bb1;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.5;
}
h3 {
    margin-bottom: 20px;
}
h4 {
    color: #259bb1;
}
h5 {
    color: #ffffff;
}
big {
	
}
small {
    font-size: 20px;
}

/* breed */
.bread {
    margin-bottom: 40px;
}
.bread a {
    position: relative;
    padding-right: 30px;
}
.bread a:hover {
    text-decoration: underline;
}
.bread a:not(:last-of-type):after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #EEA71B;
}

/* btn */
button {
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    border: none;
    cursor: pointer;
    font-size: 20px;
}
.btns > *[class^='btn'] {
    float: none;
    margin-right: 20px;
    width: 180px;
}
.btns > *[class^='btn']:last-child {
    margin-right: 0;
}
.align_center .btn1 {
    margin-top: 15px;
}
.btn {
	background-color: transparent;
	padding: 0;
}
.btn1 {
    display: inline-block;
    background: #259bb1;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 100px;
    padding: 15px 65px;
    padding-left: 45px;
    position: relative;
    line-height: 1;
}
.btn1:after {
    position: absolute;
    content: '';
    border: solid white;
	border-width: 2px 2px 0 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-top: -8px;
	top: 50%;
	right: 40px;
	width: 15px;
	height: 15px;
}
.btn1:hover {
    background: #1c7c8e;
}

/* form */
.form_wrap {
    margin-bottom: 20px;
}
.form_wrap > label {
    display: block;
    color: #259bb1;
}
textarea {
	width: 100%;
	resize: none;
	padding: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

/* input */
.input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0; /* must! */
    width: 100%;
    padding: 0 10px;
    border: 1px solid #235535;
    height: 40px;
    box-shadow: none;
    margin: 0;
    color: #333333;
}
.input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input:-ms-input-placeholder {
  color: #999;
}
.input::-webkit-input-placeholder {
  color: #999;
}
.input[disabled] {
    background: #D1D1D1;
    -webkit-text-fill-color: #acacac;
    color: #acacac;
    opacity: 1;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    width: 100%;
}
.input-group > * {
    display: table-cell;
    vertical-align: top;
}
.input-group input {
/*    color: #999999;*/
}

/* select */
select::-ms-expand {
    display: none;
}
.select1 {
    position: relative;
    text-align-last: center;
}
.select1 select {
    width: 100%;
    padding: 0 20px;
    border: 1px solid #cccccc;
    height: 40px;
    border-radius: 10px;
    box-shadow: none;
    margin: 0;
    font-size: 20px;
    color: #333333;
    appearance:none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari and Chrome */
    background: #ffffff;
}
.select1 .arrow {
    border-radius: 0 3px 3px 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    line-height: 30px;
    pointer-events: none;
}
.select1 .arrow:before {
    position: absolute;
    content: '';
    border: solid #000000;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -1px;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
}

/* radio */
.radio_wrap {
    position: relative;
    padding: 0 25px;
    padding-bottom: 30px;
    font-size: 18px;
}
.radio_wrap input[type='radio'] {
    display: none;
}
.radio_wrap input[type='radio'] + label {
    height: 20px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    display: inline-block;
} 
.radio_wrap input[type='radio'] + label:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 2px solid #555555;
    top: 8px;
    left: 0;
}
.radio_wrap input[type='radio']:checked + label {
    color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:before {
    border-color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: #259bb1;
    top: 12px;
    left: 4px;
}

/* checkbox */
.checkbox_wrap {
    margin-bottom: 10px;
}
.checkbox_wrap input[type='checkbox'] {
    display: none;
}
.checkbox_wrap input[type='checkbox'] + label {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    display: inline-block;
/*	line-height: 1.5;*/
}
.checkbox_wrap input[type='checkbox'] + label:before {
    position: absolute;
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 5px;
    border: 2px solid #ffffff;
    top: 50%;
	margin-top: -.5em;
    left: 2px;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}
.checkbox_wrap input[type='checkbox']:disabled + label {
    color: #999999;
}
.checkbox_wrap input[type='checkbox']:disabled + label:before {
    border-color: #999999;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    border-radius: 100px;
    border-color: #259bb1;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}

/* elements */
.box1 {
    border-radius: 1vw;
    padding: 3%;
    margin-bottom: 3%;
    /* background: #ffffff; */
}
.bar1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#259bb1+0,01b6ad+83,01b6ad+100 */
    background: #259bb1;
    /* Old browsers */
    background: -moz-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#259bb1', endColorstr='#01b6ad', GradientType=1);
    /* IE6-9 */
    color: #ffffff;
    padding: 15px;
    position: relative;
}

/* tab */
.tab {
	padding-top: 9vw;
    overflow: hidden;
}
.tab_btn {
	display: flex;
	justify-content: center;
	gap: 1vw;
}
.tab_btn > * {
	position: relative;
	padding: 0.8vw;
	text-align: center;
	cursor: pointer;
	width: 14vw;
	border-radius: 2.6vw 2.6vw 0 0;
	background: #eaebea;
	color: #534741;
	font-size: 1.5vw;
	font-weight: 900;
}
.tab_btn > *.show {
    background-color: #57b4cd;
    color: #fff;
}
.tab_con {
	border-radius: 1vw;
	padding: 3% 8%;
	/* background: #fff; */
	max-width: 65vw;
	margin: auto;
	margin-bottom: 1vw;
}
.tab_con > div {
	opacity: 0;
	/* transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s; */
	/* display: none; */
	
    height: 0;
}
.tab_con > div.show {
	/* display: block; */
    opacity: 1;
    height: auto;
}
.tab_con > div.fade {
	/* opacity: 1; */
    /* height: auto; */
}
.tab_con .inner {
	padding: 0 94px;
}

/* acc */
.acc_btn {
    cursor: pointer;
}
.acc_con {
    display: none;
}


/* list */
.no_list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.list1 {
    background: #ffffff;
    border-radius: 10px;
}
.list1 tr {
    border-bottom: 1px solid #c33333;
    padding: 10px 20px;
}
.list1 tr:last-child {
    border-bottom: 0;
}
.list1 td {
    padding: 10px 20px;
    vertical-align: middle;
}
.list1 td:first-child {
    padding-right: 5px;
}
.list1 td:last-child {
    padding-left: 5px;
    width: 110px;
}

/* pagers */
.pagers {
    text-align: center;
    margin: 50px auto;
}
.pagers .num {
    color: #666666;
    padding: 6px;
    min-width: 30px;
    display: inline-block;
    box-sizing: border-box;
}
.pagers .num.cur,
.pagers .num:hover {
    background: #e5e5e5;
}
.pagers .btn {
    padding: 6px;
    min-width: 30px;
    display: inline-block;
    box-sizing: border-box;
}

/* owl-carousel */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    font-size: 0px;
    background: url(../img/arrow-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 28px;
    height: 47px;
    position: absolute;
    top: 50%;
    margin-top: -27px;
}
.owl-nav button.owl-prev {
    left: 15px;
}
.owl-nav button.owl-next {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    /*IE*/
    filter: FlipH;
    right: 15px;
}
.owl-dots {
    text-align: center;
    display: flex;
    justify-content: flex-end;
}
.owl-dots button.owl-dot {
    width: 7vw;
    height: 10px;
    background: #434343;
    display: inline-block;
}
.owl-dots button.owl-dot {
    transition: all .3s;
}
.owl-dots button.owl-dot.active, .owl-dots button.owl-dot:hover {
	background: #CD0001;
}

/* popup */
.p_layout {
    position: relative;
/*    padding: 3vw;*/
    background-image: url(../img/bg-popup.png);
    background-size: cover;
/*    font-size: 0.9vw;*/
/*    min-height: 50vh;*/
    margin: 1vw auto;
    width: 66.8vw;
    aspect-ratio: 1282/938;
}
.mfp-container {
    padding: 0;
/*    text-align: center;*/
}
.mfp-content {
/*    max-width: 100%;*/
}
.mfp-bg {
    background: rgba(0,0,0,.3);
}
.popup_close {
    background-image: url(../img/icon-close.png);
    background-size: cover;
    aspect-ratio: 1;
    width: 3.5vw;
    display: block;
    position: absolute;
    right: -3vw;
    top: 0.8vw;
}
.mfp-wrap {
/*    overflow: hidden !important;*/
}

/* scrollbar */
.scroll_con {
    height: 80vh;
    padding-right: 3vw;
}
.mCSB_scrollTools .mCSB_draggerRail {
/*	width: 18px;*/
	background: none;
/*	height: calc( 100% - 100px );*/
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	border-radius: 10px;
/*	width: 18px;*/
	background: #f098bc;
/*	border: 4px solid #fff;*/
}
/*
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:after {
	position: absolute;
	content: '';
	left: 0;
	top: calc( 70% - 4px );
	width: 100%;
	height: 4px;
	background: #fff;
}
*/
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background: #f098bc;
}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
	background: #f098bc;
}
.mCSB_outside + .mCSB_scrollTools {
	right: 20px;
}
.mCSB_scrollTools .mCSB_draggerContainer {
	top: 50px;
	bottom: 50px;
}
.mCSB_scrollTools .mCSB_dragger {
/*	height: calc( 100% - 100px ) !important;*/
}

/**********/
body {
    font-family: "Noto Sans TC", sans-serif;
    color: #000;
    overflow-x: hidden;
    font-weight: 500;
     background: #c5f5ff; 
}
.margin_auto {
    margin-left: auto;
    margin-right: auto;
}
.bg {
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
#kv {
    background-image: url(../img/kv.png);
    background-size: 100% 100%;
    height: 43.5vw;
}
.nav_wrap {
    z-index: 2;
    position: absolute;
    width: 100%;
    background-image: url(../img/bg-manu.jpg);
    background-size: 100% 100%;
}
.nav_wrap.is-sticky {
    border-bottom: 0.3vw solid #544741;
}
.nav_wrap.is-sticky nav {
    margin-top: 0;
}
nav {
    width: 65.5vw;
    padding: 1vw;
    margin: 0 auto 0;
    gap: 4vw;
    justify-content: center;
}
nav a {
    position: relative;
    display: block;
    width: 17vw;
}
.bg {
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.btn_more_pay {
    width: 26vw;
    display: inline-block;
    position: relative;
}
#part1 {
    background-image: url(../img/part-01.jpg);
    height: 49.6vw;
     padding-top: 41.9vw; 
    margin-top: 6.9vw;
}
.full_wrap {
    width: 12.9vw;
    margin: auto;
    position: absolute;
    right: 22.5vw;
    
    display: flex;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
}
.full_wrap1 {
    top: 20.5vw;
}
.full_wrap2 {
    top: 51.5vw;
}
.full_wrap3 {
    top: 21.5vw;
}
.full,
.full_no {
    width: 100%;
    display: none;
}
.full.active, .full_no.active {
    display: block;
}
.full p {
    font-size: 0.65vw;
    position: absolute;
    top: 44.5%;
    margin: 0;
    line-height: 1;
    color: #fff;
}
.full_wrap .full p {
    left: 43%;
}
.btn_lottery {
    width: 26vw;
    display: inline-block;
}
#part2 {
    background-image: url(../img/part-02.jpg);
    height: 68.2vw;
}
.btn_more_point {
    width: 26vw;
    display: inline-block;
}
.btn_go {
    width: 19.8vw;
    display: inline-block;
}
.box1.small {
    max-width: 62vw;
    margin: auto;
}
#part3 {
    background-image: url(../img/part-03.jpg);
    height: 37.9vw;
}
#part3 .scroll {
    position: absolute;
    width: 23%;
    height: 6%;
    /* background: red; */
    /* opacity: .5; */
    left: 57%;
    top: 85%;
}

#part4 {
    background-image: url(../img/part-04.jpg);
    height: 48.9vw;
    padding-top: 9vw;
}
#part4 .scroll {
    position: absolute;
    width: 15%;
    height: 6%;
/*    background: red;*/
/*    opacity: .5;*/
    left: 25%;
    top: 78%;
}
#part5 {
    background-image: url(../img/part-05.jpg);
    height: 45vw;
    padding-top: 11.5vw;
}
.links_wrap {
    justify-content: center;
}
.links_wrap a {
    width: 59.5vw;
    display: inline-block;
}
.links_wrap a:before {
    position: absolute;
    content: '';
    background-image: url(../img/icon-hand.png);
    background-size: 100% 100%;
    width: 8%;
    height: 22%;
    left: 90%;
    bottom: -8%;
/*    animation: handAnmi 0.6s linear infinite alternate;*/
}
@keyframes handAnmi {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}
#part6 {
    background-image: url(../img/part-06.jpg);
    height: 51.8vw;
    padding-top: 44vw;
}
#part7 {
    background-image: url(../img/part-07.jpg);
    height: 52.2vw;
    padding-top: 40vw;
}
#part8 {
    background-image: url(../img/part-08.jpg);
    height: 39.3vw;
    padding-top: 9.6vw;
}
#notice {
    padding: 3% 0;
    background: #f8d686;
    font-size: 18px;
}
#notice a {
    color: currentColor;
    text-decoration: underline;
}
#notice_img {
    padding: 20px 0 0;
}
.notice_wrap {
    line-height: 2.5;
}
.notice_wrap .box1 {
    background: #ffffff;
    margin-top: 3%;
    border-radius: 5vw;
    padding: 5% 7%;
}
.notice_wrap .acc_btn {
/*
    display: inline-block;
    width: 10.6vw;
    margin-bottom: 10px;
*/
    justify-content: center;
    align-items: center;
    width: 13vw;
    margin: auto;
    position: relative;
/*    padding-right: 3vw;*/
    line-height: 1;
}
/*
.notice_wrap .acc_btn:after {
    content: '';
    background-image: url(../img/+.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 2vw;
    height: 2vw;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.acc_wrap.open .acc_btn:after {
    background-image: url(../img/-.png);
}
*/
.notice_wrap li {
    margin: 1% auto;
}
.notice_wrap ul > li {
    position: relative;
    padding-left: 30px;
}
.notice_wrap ul > li::before {
    position: absolute;
    content: '';
    background-size: 100% 100%;
    width: 18px;
    height: 18px;
    left: 0;
    top: 14px;
    border-radius: 1000px;
    background: #f7bc34;
}

.disc {
/*    list-style: disc;*/
}
.btn_fixed {
    position: fixed;
    right: 3%;
    bottom: 5%;
    width: 7.4%;
    z-index: 2;
}
#notice .light {
    color: #d61518;
}
#notice .light2 {
    color: #00adea;
    font-weight: 700;
}
.custom1 {
    list-style: none;
    counter-reset: my-counter;
    padding-left: 1.3rem;
}
.custom1 > li {
    /*  使用自訂標號  */
    counter-increment: my-counter;
    /* 段落首行縮排 */
    text-indent: -1.3rem;
}
.custom1 > li:before {
    content: "("counter(my-counter) ")";
}

.disc {
    list-style: none;
/*    counter-reset: my-counter;*/
    padding-left: 1.3rem;
}
.disc > li {
    /*  使用自訂標號  */
/*    counter-increment: my-counter;*/
    /* 段落首行縮排 */
    text-indent: -1.3rem;
}
.disc > li:before {
    content: "● ";
    font-size: 70%;
}

.custom2 {
    list-style: none;
    counter-reset: my-counter;
    padding-left: 1.3rem;
}
.custom2 > li {
    /*  使用自訂標號  */
    counter-increment: my-counter;
    /* 段落首行縮排 */
    text-indent: -1.3rem;
}
.custom2 > li:before {
    content: "◆ ";
}
.scroll_in {
    width: 58vw;
    margin: auto;
}

/* pc & mobile */
.pc {
	display: initial;
}
.mo {
	display: none;
}

@media only screen and (max-width: 1100px) {
    footer img {
        width: auto;
        height: 8vw;
      }
}

@media only screen and (max-width: 769px) {
    :root {
        scroll-padding-top: 17.3vw;
    }
    body {
        /* background: #fff; */
    }
    .nav_wrap {
        background: #c5f5ff;
    }
    .nav_wrap.is-sticky {
        border-width: 1vw;
    }
	#kv {
        background-image: url(../img/kv-m.png);
        height: 108vw;
    }
    #kv .tit {
        max-width: 93vw;
        padding-top: 7vw;
    }
    #kv .coins {
        width: 11.6vw;
        margin-left: 60.8vw;
    }
    nav {
        padding: 4vw 3.4vw;
        width: auto;
        gap: 0.6vw;
        margin-top: 0;
    }
    nav a {
        width: 31.4vw;
    }
    #part1 {
        background-image: url(../img/part-01-m.jpg);
        height: 149.6vw;
        padding-top: 129vw; 
        margin-top: 17.4vw;
    }
    .full_wrap {
        width: 33vw;
        right: 6vw;
    }
    .full_wrap1 {
        top: 78vw;
    }
    .full_wrap2 {
        top: 269vw;
    }
    .full_wrap3 {
        top: 83vw;
    }
    .full p {
        font-size: 1.5vw;
        top: 50%;
    }
    .full_wrap .full p {
        left: 44%;
        top: 45%;
    }
    #part1 .scroll {
        top: 88.5%;
        left: 52%;
        width: 16%;
    }
    .btn_lottery {
        width: 66.9vw;
    }
    #part2 {
        background-image: url(../img/part-02-m.jpg);
        height: 319.2vw;
    }
    .box1.small {
        max-width: initial;
        padding: 3vw 0 0;
    }
    .slick-dots li {
        margin: 0 2px;
    }
    #part3 {
        background-image: url(../img/part-03-m.jpg);
        height: 128.9vw;
    }
    #part4 {
        background-image: url(../img/part-04-m.jpg);
        height: 168.9vw;
        padding-top: 56vw;
    }
    #part5 {
        background-image: url(../img/part-05-m.jpg);
        height: 114.4vw;
        padding-top: 27vw;
    }
    .inner {
        max-width: 92.9%;
    }
    .btn_fixed {
        width: 18.6%;
    }
    .btn_more_pay {
        width: 72.5vw;
    }
    .btn_more_point {
        width: 72.5vw;
    }
    .btn_go {
        width: 50.8vw;
    }
    .tab_btn {
        gap: 1.4vw;
    }
    .tab_btn > * {
        width: 36.4vw;
        border-radius: 4vw 4vw 0 0;
        font-size: 4vw;
        padding: 2.2vw;
    }
    .tab_con {
        padding: 0;
        border-radius: 4vw;
        max-width: initial;
        margin-bottom: 4vw;
        /* box-shadow: 0 1.5vw 0 #d9dbd8; */
    }
    .tab_con .slick-dots {
        display: none !important;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    .slider {
        padding: 4vw 8vw;
    }
    .box1 .slider {
        padding-bottom: 10vw;
/*        padding: 4vw 6vw 10vw;*/
    }
    .slick-next, .slick-prev {
        width: 6.6vw;
        aspect-ratio: 1;
        z-index: 1;
    }
    .slick-prev {
        left: 3vw;
    }
    .slick-next {
        right: 3vw;
    }
    .slick-next:before, .slick-prev:before {
        background-image: url(../img/icon-arrow.png);
        font-size: 0;
        width: 6.6vw;
/*        height: 4.4vw;*/
        display: block;
        background-size: 100% 100%;
        opacity: 1;
        aspect-ratio: 1;
    }
    .slick-next:before {
        transform: scaleX(-1);
    }
    .slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
        opacity: 0;
    }
    .box1 {
        padding: 6vw;
        border-radius: 2.6vw;
    }
    #notice {
        font-size: 3vw;
        padding: 5% 0;
    }
    .notice_wrap .acc_btn {
        width: 34.4%;
        margin-bottom: 2vw;
/*        padding-right: 6vw;*/
    }
    .notice_wrap .acc_btn:after {
        width: 4vw;
        height: 4vw;
    }
    .notice_wrap ul > li {
        padding-left: 3vw;
    }
    .notice_wrap ul > li::before {
        width: 2.2vw;
        height: 2.2vw;
        top: 3vw;
    }
    .slick-slide img {
        width: 100%;
        max-width: 100%;
    }
    .slick-dots {
        left: 0;
        bottom: 4vw;
    }
    .slick-dots li button:before {
        font-size: 12px;
    }
    .slick-dots li button:before {
        opacity: 1;
        color: #909090;
    }
    .slick-dots li.slick-active button:before {
        opacity: 1;
        color: #c1c0c0;
    }
    footer img {
        width: 100%;
        height: auto;
    }
    #notice ol {
        padding-left: 4vw;
    }
    #notice .disc {
        padding-left: 4vw;
    }
    .disc > li {
        text-indent: -3.5vw;
    }
    #notice .custom1 {
        padding-left: 4vw;
    }
    .custom1 > li {
        text-indent: -3.8vw;
    }
    #notice .custom2 {
        padding-left: 4vw;
    }
    .custom2 > li {
        text-indent: -3.8vw;
    }
    .links_wrap {
        flex-direction: column;
        gap: 3vw;
        /* display: block; */
        margin-bottom: 3vw;
    }
    .links_wrap a {
        max-width: 84vw;
        margin: auto;
        display: block;
        width: auto;
    }
    #part3 .scroll {
        width: 57%;
        height: 4%;
        left: 21%;
        top: 90%;
    }
/*
    .full_wrap3 {
        width: 74vw;
        margin: auto;
    }
*/
    #part4 .scroll {
        display: none;
    }
    #part6 {
        background-image: url(../img/part-06-m.jpg);
        height: 117.7vw;
        padding: 98.5vw 5vw 0;
    }
    #part7 {
        background-image: url(../img/part-07-m.jpg);
        height: 137.3vw;
        padding-top: 103vw;
    }
    #part8 {
        background-image: url(../img/part-08-m.jpg);
        height: 72.4vw;
        padding-top: 21.6vw;
    }
    .links_wrap a:before {
        left: 47%;
        width: 12%;
        height: 33%;
        bottom: -16%;
    }
    .scroll_wrap {
        overflow-x: scroll;
    }
    .scroll_in {
        width: 153vw;
        padding-bottom: 2vw;
    }
    .tab {
        padding-top: 22vw;
    }
    .p_layout {
        background-image: url(../img/bg-popup-m.png);
        width: 96vw;
        aspect-ratio: 720 / 903;
    }
    .popup_close {
        width: 9vw;
        right: -1vw;
        top: -2.4vw;
    }
    .pc {
    	display: none;
    }
    .mo {
    	display: initial;
    }
}