@charset "UTF-8";
/* ページ設定 */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap');

.skiWrap .mainWrap {
    color: #555;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif", Helvetica, sans-serif;
}

.searchBox {
    background: #3db2de;
    padding: 10px;
   /*margin: 50px auto 0;*/
}

.searchBox .left {
    color: #fff;
    font-size: 18px;
    padding-right: 15px;
}

.searchBox .right select {
    padding: 5px;
    font-size: 18px;
    width: 208px;
}

.searchBoxWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.skiNav {
    border-bottom: 2px solid #3a77c7;
    background: linear-gradient(#3DB2DE,#1a628e);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}

[data-element-id] .skiNav {
  position: static;
  margin-top: 50px;
}

.skiNav ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.skiNav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.skiNav ul li a {
    position: relative;
    display: block;
    padding: 10px 25px;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
    border-right: 1px solid #ccc;
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 auto;
    flex: 1 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.skiNav ul li a::after {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    border-top: solid 2px #3a77c7;
    border-right: solid 2px #3a77c7;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    right: 50%;
    -webkit-animation: uest 0.7s infinite alternate;
    animation: uest 0.7s infinite alternate;
    margin: 7px 0 0 0;
}

.skiNav .spNav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 30;
    width: 70vw;
    height: 100%;
    background: linear-gradient(#3DB2DE,#1a628e);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform .3s ease;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

[data-element-id] .skiNav .spNav {
    position: static;
    transform: inherit;
}

.skiNav .spNav.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.spNav .item a {
    display: block;
    padding: 20px 10px;
    border-bottom: 1px solid#666;
    color: #fff;
    font-size: 14px;
}

.skiNav .overlayNav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .2);
}

.skiNavWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: linear-gradient(#3DB2DE,#1a628e);
}

.hamburger {
    position: fixed;
    top: 20px;
    right: 0px;
    z-index: 40;
    padding: 23px 30px 23px 20px;
    width: 74px;
    height: 60px;
    height: auto;
    background: #fff;
    border-radius: 30px 0px 0px 30px / 30px 0px 0px 30px;
    line-height: 40px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform .3s ease;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

[data-element-id] .hamburger {
    width: auto;
    top: 0;
}

.hamburger .part {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    -webkit-transition: ease .3s;
    transition: ease .3s;
}

.hamburger .part:nth-of-type(1) {
    top: 0;
}

.hamburger .part:nth-of-type(2) {
    margin: 4px 0;
}

.hamburger .part:nth-of-type(3) {
    top: 0;
}

/*is-OPEN時の動き*/
.hamburger.is-open {
    -webkit-transform: translateX(-70vw);
    transform: translateX(-70vw);
}

.hamburger.is-open .part:nth-of-type(1) {
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.is-open .part:nth-of-type(2) {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

.hamburger.is-open .part:nth-of-type(3) {
    top: -7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media (max-width: 599px) {
  .skiNav ul {
    display: block;
    text-align: left;
  }
  
    .skiNavWrap {background: linear-gradient(#3DB2DE,#1a628e);}

.skiNav ul li a {
    position: relative;
    display: block;
    padding: 10px 25px;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 auto;
    flex: 1 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
}

@-webkit-keyframes uest {
    0% {
        bottom: 10%;
        opacity: 0;
    }

    100% {
        bottom: -6%;
        opacity: 1;
    }
}

@keyframes uest {
    0% {
        bottom: 10%;
        opacity: 0;
    }

    100% {
        bottom: -6%;
        opacity: 1;
    }
}

/*メインビジュアル*/
.skiMv {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    /*position: relative;*/
    /*margin-right: calc(50% - 50vw);*/
    /*margin-left: calc(50% - 50vw);*/
}

.skiMv.fe {
    height: 600px;
    margin: 0 auto;
}

.skiMvImg {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    /*height: 42vw;*/
    max-height: 600px;
    z-index: 0;
}

[data-element-id] .skiMvImg {
    height: auto;
    max-height: 100%;
    position: static;
}

.skiMvImg img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
}

.skiMvWrap {
    position: relative;
}

@media (max-width: 599px) {
    .skiMv.fe {height: inherit;}
}

.hokkaidoMap {
    overflow: hidden;
}

.hokkaidoMap .nisekovillage {
    bottom: 131px;
    left: -84px;
}

.hokkaidoMap .rusutsu {
    bottom: 154px;
    left: 122px;
}

.hokkaidoMap .nisekohirafu {
    bottom: 164px;
    left: -129px;
}

.hokkaidoMap .nisekoannupuri {
    bottom: 197px;
    left: -99px;
}

.hokkaidoMap .nisekomoiwa {
    bottom: 98px;
    left: -25px;
}

.hokkaidoMap .kiroro {
    bottom: 275px;
    left: -25px;
}

.hokkaidoMap .sapporokokusai {
    bottom: 240px;
    left: -40px;
}

.hokkaidoMap .teine {
    bottom: 286px;
    left: 192px;
}

.hokkaidoMap .yubari {
    bottom: 225px;
    left: 200px;
}

.hokkaidoMap .kamui {
    top: 265px;
    left: 124px;
}

.hokkaidoMap .furano {
    top: 210px;
    left: 305px;
}

.hokkaidoMap .sahoro {
    top: 305px;
    left: 400px;
}

.hokkaidoMap .tomamu {
    bottom: 258px;
    left: 379px;
}

.hokkaidoMap .nanae {
    bottom: 80px;
    left: 160px;
}

.skiMap {
  /*background: #add8e6;*/
    background: repeating-linear-gradient(-30deg, #d6f2ff 0, #d6f2ff 10px, #dbf4ff 10px, #dbf4ff 20px);
    background-color: #c3eaff;
    background-image: radial-gradient(#d6f1ff 13%, transparent 0), radial-gradient(#d6f1ff 13%, transparent 0);
    background-position: 0 0, 15px 15px;
    background-size: 30px 30px;
}

.skiMap .ttl02 {
  font-size: 40px;
    padding-bottom: 22px;
    text-align: center;
    color: #555;
    margin: 0 auto;
    width: 100%;
    letter-spacing: 0.135em;
    position: relative;
    margin-bottom: 30px;
    padding-top: 30px;
}

.skiMap .ttl02::after {
  content: "";
    width: 73px;
    height: 4px;
    background: #fff07c;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.mapImg {
    width: 718px;
    max-width: 100%;
    margin-left: 25%;
    margin-bottom: 5%;
    position: relative;
}

.mapImg img {
    display: inline;
}

.skiMvImg.sp {
    /*position: static;*/
    height: 350px;
}

.skibnrImg {
  width: 1200px;
  height: auto;
  margin: 30px auto;
}

.skibnrImg.sp {
  width: 100%;
  height: auto;
  margin: 10px auto;
}

.skibnrSection {
  margin-top: 60px;
}

[data-element-id] .skibnrSection a {
  margin-top: 400px;
}

[data-element-id] .skiMvImg.sp {
    height: auto;
}

[data-element-id] .skiMvImg.show\@sp {
    width: 500px;
    margin-top:50px;
    max-height: 1300px;
}

[data-element-id] .info{margin-top:100px;}

/*mtraceySkiMv*/
.mtraceySkiMv {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
.mtraceySkiMv.fi{
  /* height:400px; */
}

.mtraceySkiMvCatch {
    width: 80%;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 0;
}
.mtraceySkiMvCatch .ttl {
    font-size: 80px;  
    font-family: 'Lalezar', cursive;
    text-shadow: 0 2px 0 rgb(0 0 0 / 50%);
    line-height: 100%;
}

.mtraceySkiMvCatch .ttl .deco01:before {
    content: "&";
}

.mtraceySkiMvCatch .ttl .sub {
    font-size: 50px;
}

.mtraceySkiMvCatch .subttl {
    font-size: 20px;
    background: #000;
    display: inline-block;
    padding: 3px 15px;
    margin-top: 20px;
}

@media (max-width: 1024px) {
  .mtraceySkiMvCatch .ttl {
      font-size: 50px;
  }
  
  .mtraceySkiMvCatch .ttl .sub {
      font-size: 35px;
  }
  
  .mtraceySkiMvCatch .subttl {
      font-size: 18px;
  }
}

@media (max-width: 599px) {
    .skiMvImg{height:inherit;}
    .skiMvImg.sp{height:inherit;}
    .mtraceySkiMv.fi{height:inherit;}
    .mtraceySkiMvImg {
        height: 500px;
    }
    
    .mtraceySkiMvCatch {
        width: 100%;
    }
    
    .mtraceySkiMvCatch .ttl {
        font-size: 70px;
    }
    
    .mtraceySkiMvCatch .ttl .sub {
        font-size: 40px;
    }
    
    .mtraceySkiMvCatch .subttl {
        font-size: 20px;
    }
}

.mtraceySkiPre .skiPreImg img {width: 100%;}

/*hkdSkiArea*/
.hkdSkiArea {
    position: absolute;
}

.hkdSkiArea a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    padding: 4px 20px 4px 10px;
    letter-spacing: 0;
    width: auto;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    background-color: #3db2de;
    -webkit-box-shadow: 0px 0px 6px 3px #c0d1de;
    box-shadow: 0px 0px 6px 3px #c0d1de;
}

.check {
    position: absolute;
    bottom: 0;
    right: 40px;
    font-size: 17px;
    font-weight: 700;
}

.check .en {
    font-family: "Oswald", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-size: 20px;
    font-weight: 700;
    color: #1a628e;
    margin-right: 8px;
}

.endtxt {
    border: 3px solid #1D7DBE;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    line-height: 1.5em;
    margin: 10px auto;
    width: 90%;
    font-weight: bold;
}

.search {
    background: url(/import/tenant_1/www.wbf.co.jp/hkd/ski/images/bg_search.jpg) left top repeat;
}


[data-element-id].search {
    margin-top: 400px;
}

.search .ttl01 {
    width: 500px;
    max-width: 100%;
    margin: 0 auto 35px;
    position: relative;
    background: #8ce3f6;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
}

.search .ttl01::before,
.search .ttl01::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-style: solid;
    width: 20px;
    height: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}

.search .ttl01::before {
    left: 0;
    border-width: 30px 0 30px 20px;
    border-color: transparent transparent transparent #fff;
}

.search .ttl01:after {
    right: 0;
    border-width: 30px 20px 30px 0;
    border-color: transparent #fff transparent transparent;
}

.search form button {
    max-width: 300px;
    line-height: 40px;
    background: #3db2de;
    border: none;
    text-align: center;
    font-weight: 700;
    color: #fff;
    margin: 0 auto;
    display: block;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    line-height: 50px;
    font-size: 20px;
}

@media (max-width: 599px) {
  .search form button.button02 {
      width: 70%;
      font-size: 14px;
      line-height: 40px;
  } 
}

.searchWrap {
    background: #fff;
    padding: 6%;
    width: 100%;
    border: 3px solid #f2f5f6;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


.formArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.formArea dl {
    width: 100%;
    max-width: 272px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 48px 30px 0;
}

.formArea dl.freeWord {
    max-width: 562px;
}

.formArea dl.freeWord dd {
    max-width: 443px;
}

.formArea dl.specialty {
    max-width: 990px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.formArea dl.specialty dd {
    max-width: 870px;
}

.formArea dl.specialty dd ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.formArea dl.specialty dd ul li {
    margin: 0 45px 18px 0;
}

.formArea dl.specialty dd ul li:last-child {
    margin-right: 0;
}

.formArea dl.specialty dd ul li input {
    display: none;
}

.formArea dl.specialty dd ul li input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 4px;
    width: 6px;
    height: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: 2px solid #3a77c7;
    border-right: 2px solid #3a77c7;
}

.formArea dl.specialty dd ul li label {
    padding-left: 24px;
    position: relative;
    cursor: pointer;
}

.formArea dl.specialty dd ul li label::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.formArea dl dt {
    font-weight: 700;
}

.formArea dl dd {
    width: 100%;
    max-width: 200px;
}

.formArea dl dd select {
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.formArea dl dd select,
.formArea dl dd input[type=text] {
    width: 100%;
    background: #f2f5f6;
    border: none;
    font-size: 16px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #000;
}

.formArea dl dd .dayBox {
    display: inline-block;
}

.formArea dl dd .dayBox select {
    width: 63px;
    margin-right: 10px;
}

.skiMeasure .ttl02 {
    font-size: 40px;
    padding-bottom: 22px;
    text-align: center;
    color: #555;
    margin: 0 auto;
    width: 100%;
    letter-spacing: 0.135em;
    position: relative;
    margin-bottom: 30px;
}

.skiMeasure .ttl02::after {
    content: "";
    width: 73px;
    height: 4px;
    background: #fff07c;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.skiMeasure .ttl02 .en {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 200;
    color: #a8b4b8;
    display: inline-block;
    margin-bottom: 12px;
    height: auto;
    line-height: 1.6;
    padding: 0;
    letter-spacing: 0;
    font-family: "Oswald", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

.news ul li {
    border-top: 1px dashed #999;
    padding-top: 25px;
    margin-bottom: 15px;
    border-bottom: 0;
}

.news ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #1D7DBE;
}

.news ul li .date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 95px;
    flex: 0 0 95px;
    font-size: 14px;
    margin-right: 5px;
}

.news ul li .categoly {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    height: 21px;
    margin-right: 15px;
    padding: 3px 0 0;
    text-align: center;
    color: #FFFFFF;
    font-size: 11px;
    background: #3a77c7;
    border-radius: 2px;
}

.news ul li .body {
    line-height: 1.2;
}

.news .readMore {
    font-size: 12px;
    text-align: right;
}

.news .readMore a {
    color: #1D7DBE;
}

.news .readMore a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: bold;
    margin-left: 3px;
}

.skiMeasure .ttl03 {
    text-align: center;
    margin-bottom: 30px;
}

.skiMeasure .ttl03 .title {
    display: inline-block;
    font-weight: 700;
    padding: 0 43px;
    font-size: 24px;
    position: relative;
    height: auto;
}

.skiMeasure .ttl03 .title::before,
.skiMeasure .ttl03 .title::after {
    content: "";
    width: 26px;
    height: 2px;
    background: #555;
    display: block;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
}

.skiMeasure .ttl03 .title::before {
    left: 0;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

.skiMeasure .ttl03 .title::after {
    right: 0;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.info {
    background: #f2f5f6;
}

.info2 {
  background: #fff;
}

.infoList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
}

.infoList li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #3db2de;
    color: #fff;
    font-size: 20px;
    padding: 20px 2.921%;
    border-radius: 10px;
    width: 100%;
    font-weight: 700;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.infoList li .text {
    margin-top: 10px;
    text-align: left;
    font-size: .8rem;
}

.infoList li a:hover .arrow {
    -webkit-transform: translateX(5px) translateY(-50%);
    transform: translateX(5px) translateY(-50%);
}

.infoList li a .arrow {
    font-size: 30px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5.172%;
    right: 5.172%;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.infoList li a .arrow:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0a9";
    font-weight: 900;
}

.tourList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.season {
    background-color: #3a77c7;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin: 5px 0;
}

.tourTtl {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 0;
    color: #3a77c7;
    line-height: 1.2;
}

.subTxt {
    font-weight: bold;
    font-size: 19px;
    text-align: center;
    padding: 15px 0 0;
    line-height: 1.2;
    height: 50px;
}

.txtBox {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    min-height: 0%;
    padding: 24px 15px;
    line-height: 1.2;
}

.tourListTxtBox {
    padding: 15px 0 0;
    height: 200px;
}

.iconBox {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    min-height: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
}

.iconBox li {
    height: 21px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: white;
    padding: 0 5px !important;
    margin: 2px 1px;
    display: inline-block;
}

.iconBox li.skiicon {
    border: 1px solid #3d7bae;
    background-color: #3d7bae;
}

.iconBox li.skiicon3 {
    border: 1px solid #9ba022;
    background-color: #9ba022;
}

.iconBox li.skiicon2 {
    border: 1px solid #9e3d93;
    background-color: #9e3d93;
}

.iconBox li.skiicon4 {
    border: 1px solid #7bc175;
    background-color: #7bc175;
}

.tourBtn {
    margin-top: 10px;
}

.tourBtn a {
    display: block;
    color: #fff;
    background: #afeeee;
    font-weight: 700;
    border-radius: 6px;
    padding: 30px 5px;
    position: relative;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
}

.tourBtn a:hover .arrow {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.tourBtn a .arrow {
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 1;    
    margin: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;    
}

/*.tourBtn a .arrow:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0a9";
    font-weight: 900;
}*/

.skiMeasure.recommendSlope {
    background: #f2f5f6;
    position: relative;
}

.skiMeasure.recommendSlope .inner1100 {
    overflow: hidden;
}

.slopeImg {
    text-align: center;
    position: relative;
    margin-bottom: 22px;
}

.slopeImg::before,
.slopeImg::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    background: center center no-repeat;
    background-size: 100% auto;
}

.slopeImg::before {
    background-image: url(/import/tenant_1/www.wbf.co.jp/hkd/ski/images/icon_recommend_left.png);
    width: 89px;
    height: 89px;
    left: -44px;
    top: -44px;
}

.slopeImg::after {
    background-image: url(/import/tenant_1/www.wbf.co.jp/hkd/ski/images/icon_recommend_right.png);
    width: 165px;
    height: 172px;
    right: -66px;
    bottom: -44px;
}

.slopeImg img {
    display: inline;
}

.slopeTtl {
    font-size: 32px;
    color: #3db2de;
    font-weight: 700;
    margin-bottom: 18px;
}

.slopeTxt {
    line-height: 1.68;
}

.slopeTxt strong {
    line-height: 1.2;
}

.slide-arrow.prev-arrow,
.slide-arrow.next-arrow {
    position: absolute;
    top: -160px;
    bottom: 0;
    margin: auto;
    z-index: 1;
    cursor: pointer;
}

.slick-slide {
    padding: 44px 15px 0;
}

.slide-arrow.prev-arrow {
    left: 0;
}

.slide-arrow.next-arrow {
    right: 0;
}

.infoBox {
    background: #ffffff;
    padding: 56px 6.012% 86px;
    margin-top: 34px;
    border-radius: 20px;
    position: relative;
    z-index: 0;    
}

.infoContent02 {
    max-width: 714px;
}

.infoTtl {
    font-size: 24px;
    padding-bottom: 10px;
    font-weight: 700;
    border-bottom: 5px solid #fff07c;
    display: inline-block;
    margin-bottom: 30px;
}

.infoImg {
    margin: 0 auto 25px;
    max-width: 400px;
    text-align: center;
}

.infoImg .caption {
    color: #1D7DBE;
}

@media (max-width: 599px) {
    .infoContent02 {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .infoBox_sp02 {
        padding: 30px 20px 30px;
    }
    
    .infoBox_sp02 .infoTtl {
        font-size: 16px;
        padding-bottom: 5px;
        border-bottom: 5px solid #fff07c;
        margin-bottom: 10px;
    }
}

.txtArea {
    max-width: none;
    margin: 0 auto;
    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;
}

.txtArea dl {
    width: calc(50% - 30px);
    margin: 15px;
    border-bottom: 1px dotted #666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.txtArea dl dt {
    width: 155px;
    font-weight: 700;
}

.txtArea dl dd {
    width: calc(100% - 200px);
    font-size: 24px;
    font-weight: 700;
}

.txtArea02 {
    width: 320px;
    display: block;
    margin: 0 10px;
}

.txtArea02 dl {
    width: 100%;
    border: none;
}

@media (max-width: 599px) {
    .txtArea02 {
        width: 100%;
        margin: 0;
    }
    
    .txtArea02 dl {
        margin-left: 0;
    }
}

.constitutionimg {
    max-width: 280px;
    width: 40%;
}

.constitutionimg .tit {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 599px) {
    .constitutionimg .tit {
        font-size: 16px;
        margin-bottom: 5px;
    }
}
 
.decoImg {
    position: absolute;
    right: 50px;
    bottom: -40px;
    z-index: 0;
}

@media (max-width: 1024px) {
    .decoImg {
        display: none;
    }
}

.linkArea {
    margin-top: 30px;
}

.linkArea a {
    max-width: 100%;
    width: 400px;
    padding: 36px 10px;
    border-radius: 30px;
    font-size: 16px;
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    background: #3db2de;
    margin: 0 auto;
}

.linkArea.linkArea-small a {
    width: 300px;
    padding: 18px 10px;
    border-radius: 30px;
}

.skiMeasure.recommendTour .ttl02 {
    width: auto;
    display: inline-block;
    text-align: center;
    margin: 0 0 45px;
    letter-spacing: 0;
}

.skiMeasure.recommendTour .ttl02::after {
    content: "";
    width: 73px;
    height: 4px;
    background: #fff07c;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;}

.tourList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tourList .tourBox {
    width: 31.72%;
    border-radius: 20px;
    display: block;
    max-width: 380px;
    margin: 0 auto 10px;
    background: #f2f5f6;
    overflow: hidden;
    text-align: center;
    letter-spacing: 0;
}

.tourList .tourBox:hover .tourImg img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.tourList .tourImg {
    overflow: hidden;
}

.tourList .tourImg img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.tourList .ttl {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: left;
    line-height: 1.4;
    color: #1D7DBE;
}

.tourList .detail {
  color: #1D7DBE;
  padding: 5px 10px;
  border: 1px solid #1D7DBE;
  border-radius: 20px;
  margin-top: 20px;
  text-align: center;
}

.tourList a:after {
content: "";
    /*border-right: 1px solid #1D7DBE;*/
    /*border-top: 1px solid #1D7DBE;*/
    height: 5px;
    width: 5px;
    position: absolute;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    top: 60%;
    right: 0;
    margin: 0 -225px 0 10px;}

.tourList .ttl .dep {
    color: #3db2de;
    font-size: 17px;
    display: block;
    margin-bottom: 10px;
    text-align: center;
    margin-bottom: 10px;
}

.tourList .price {
    color: #da2d41;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
}

@media (max-width: 599px){
  .tourList a:after {
    right: 60%;
  }
}

.skiMeasure.infoTourist {
    background: #f2f5f6;
}

.tourism .contentsList a:hover .tourismImg img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.tourismImg {
    margin-bottom: 10px;
    overflow: hidden;
}

.tourismImg img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.tourismTtl {
    font-weight: 700;
}

.linkMore {
    margin-top: 35px;
}

.linkMore a {
    line-height: 60px;
    color: #1D7DBE;
}

.qaTtl {
    text-align: center;
    font-size: 24px;
    margin: 20px 0 40px;
    color: #333;
}

.qaTtl::before {
    content: "＼";
    padding-right: 1em;
}

.qaTtl::after {
    content: "／";
    padding-left: 1em;
}

.faqBox dl {
    width: 98%;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-left: 1%;
    margin-right: 1%;
}

.faqBox dl + dl {
    margin-top: 20px;
}

.faqBox dl dt {
    width: 40%;
    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: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: normal;
}

.faqBox dl dt .head {
    font-size: 30px;
    font-weight: bold;
    color: #4397da;
    margin: 0 10px 0 0;
    line-height: normal;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
}

.faqBox dl dt .question {
    font-size: 18px;
}

.faqBox dl dd {
    position: relative;
    display: inline-block;
    padding: 17px 20px;
    width: 60%;
    background: #EEE;
    border-radius: 5px;
}

.faqBox dl dd::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #EEE;
}

.faqBox dl dd a {
    color: #1D7DBE;
    text-decoration: underline;
}

.faqBox dl dd .answer {
    margin: 10px 0;
    padding: 0;
    line-height: normal;
    font-size: 14px;
    text-align: left;
}

/*mtraceySlope*/
.mtraceySlope .ttl {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.mtraceySlope .ttl .sub {
    font-size: 75%;
    margin-left: 10px;
}

.mtraceySlope .ttl .sub:before,
.mtraceySlope .ttl .sub:after {
    content: "ー"
}

.mtraceySlope .ttl:before {
    content: "";
    width: 48px;
    height: 55px;
    background-image: url('/upload/tenant_1/21e23808457722fb1e24ba81b60430d0.png');
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: -15px;
    margin-right: 15px;
}

@media (max-width: 599px) {
    .mtraceySlope .ttl {
        font-size: 16px;
    }
    
    .mtraceySlope .ttl:before {
        width: 18px;
        height: 25px;
        margin-bottom: -10px;
        margin-right: 8px;
    }
}

/*mtraceySlopeInfo*/
.mtraceySlopeInfo .imgbox .left {
    width: 66.778%;
    max-width: 800px;
    position: relative;
    z-index: 0;
}

.mtraceySlopeInfo .imgbox .right {
    width: 30.05%;
    max-width: 360px;
}

.mtraceySlopeInfo .imgbox .right .img {
    width: 100%;
}

.mtraceySlopeInfo .imgbox a .txt {
    color: #0077dd;
    text-decoration: underline;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);    
}

.mtraceySlopeInfo .txtbox2 {
    margin-top: 60px;
}

@media (max-width: 599px) {
    .mtraceySlopeInfo .imgbox .left {
        width: 100%;
    }
    
    .mtraceySlopeInfo .imgbox .right {
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    
    .mtraceySlopeInfo .imgbox .right .img {
        width: 48%;
    }
    
    .mtraceySlopeInfo .txtbox {
        margin-top: 20px;
    }
}

/*mtraceySlopePickup*/
.mtraceySlopePickup {
    margin-top: 60px;
}

.mtraceySlopePickup .card {
    background-color: #524c4a;
    padding: 20px 20px 30px;
    border-radius: 6px;
}

.mtraceySlopePickup .linkArea a {
  background: #af254d;
  padding: 20px 10px;
}

.mtraceySlopePickup .ttl02 .en {
    font-family: 'Oswald',"游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-size: 70%;
    font-weight: 200;
    color: #a8b4b8;
    display: inline-block;
    margin-bottom: 12px;
    height: auto;
    line-height: 1.6;
    padding: 0;
    letter-spacing: 0;
}

.mtraceySlopePickup .ttl02 {
    margin-bottom: 30px;
    font-size: 40px;
    padding-bottom: 22px;
    text-align: center;
    color: #555;
    margin: 0 auto;
    width: 100%;
    letter-spacing: 0.135em;
    position: relative;
}

.mtraceySlopePickup .ttl02::after {
    content: "";
    width: 73px;
    height: 4px;
    background: #fff07c;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.mtraceySlopePickup .tit {
    font-size: 32px;
    color: #3db2de;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.mtraceySlopePickup .tit:before {
    content: "";
    width: 49px;
    height: 43px;
    background-image: url('/upload/tenant_1/ed3ea4db8d5399a3dc6388e792492885.png');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: -5px;
}

.mtraceySlopePickup .up-d-flex .up-fxw-wrap {
  display: flex;
  background: #afeeee;
}

.mtraceySlopePickup .up-d-flex {
    margin: 30px 0;
}

.mtraceySlopePickup .imgbox {
    width: 35%;
    max-width: 400px;
}

.mtraceySlopePickup .imgbox .img {
    position: relative;
    z-index: 0;
}

.mtraceySlopePickup .imgbox .img:before {
    content: "";
    border-style: solid;
    border-width: 81px 81px 0 0;
    border-color: #fff07c transparent transparent transparent;
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: 1;
}

.mtraceySlopePickup .txtbox {
    width: 65%;
    max-width: 1000px;
    color: #000;
}

.mtraceySlopePickup .txtbox_ttl {
  font-size: 1.6rem;
}

.mtraceySlopePickup .txtbox2 {
    width: 90%;
}

.mtraceySlopePickup .txtbox3 {
    width: 65%;
    max-width: 1000px;
    color: #fff;
}

.mtraceySlopePickup .txtbox dt {
    font-weight: bold;
    border-bottom: 3px solid #fff07c;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.mtraceySlopePickup .txtbox dd span:before {
    content: "●";
    margin-right: 2px;
}

@media (max-width: 768px) {
.mtraceySlopePickup .ttl02::after{
    width: 73px;
    height: 4px;
}
}

@media (max-width: 599px) {
    .mtraceySlopePickup .ttl02 {
        font-size: 20px;
    }
    
    .mtraceySlopePickup .tit {
        font-size: 20px;
    }
    
    .mtraceySlopePickup .tit:before {
        width: 29px;
        height: 23px;
    }
    
    .mtraceySlopePickup .imgbox {
        width: 100%;
    }
    
    .mtraceySlopePickup .txtbox {
        width: 100%;
        margin-top: 10px;
    }
    
    .mtraceySlopePickup .txtbox3 {
    width: 100%;
    }
}

/*mtraceyHotel*/
.mtraceyHotel {
    overflow: hidden;
}

.mtraceyHotelList .ttl {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin: 50px 0;
}

.mtraceyHotelList .ttl:before {
    content: "";
    background-image: url('/upload/tenant_1/hk_ski_hotel.webp');
    width: 50px;
    height: 46px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: -10px; 
}

.mtraceyHotelLink .subttl {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin: 50px 0;
}

.mtraceyHotelLink .subttl {
  position: relative;
  text-align: center;
  padding: 0.5em;
  color: #010101;
  background: #eaf3ff;
  border-bottom: solid 3px #1a628e;
}

/*.mtraceyHotelLink .subttl:before,
.mtraceyHotelLink .subttl:after {
  position: absolute;
  content: '';
}

.mtraceyHotelLink .subttl:before {
    right: 350px;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}

.mtraceyHotelLink .subttl:after {
    top: 0;
    left: 350px;
    width: 50px;
    height: 50px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
}*/

.mtraceyHotelList .tit {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    margin: 30px 0;
}

.mtraceyHotelList .tit:before {
    content: "";
    width: 49px;
    height: 43px;
    background-image: url('/upload/tenant_1/hk_ski_yubisashi.webp');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: -5px;
}

.mtraceyHotelList .img {
    margin-bottom: 40px;
    position: relative;
    z-index: 0;
}

.mtraceyHotelList .headline .img {
    width: 32%;
    display: inline-block;
}

.mtraceyHotelList .headline2 .img {
    width: 48%;
    display: inline-block;
}

.mtraceyHotelList .img:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url('/upload/tenant_1/hkd/ski/images/bg_hotel_list.png');
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.mtraceyHotelList .txt {
    line-height: 1.68;
    padding-top: 30px;
    border-radius: 10px;
    background: #ffffa0;
    padding: 10px;
}

.mtraceyHotelList li::before {
  content: "▶︎";
  padding: 0 5px;
}

@media (max-width: 599px) {
    .mtraceyHotelLink .subttl:before {
    right: 30px;
    width: 30px;
    height: 30px;
    }
    
    .mtraceyHotelLink .subttl:after {
    left: 30px;
    width: 30px;
    height: 30px;
    }

    .mtraceyHotelLink .subttl {
      font-size: 18px;
    }
    
    .mtraceyHotelList .ttl {
        font-size: 18px;
        color: #3db2de;
        margin-bottom: 20px;
    }
    
    .mtraceyHotelList .tit:before {
        width: 29px;
        height: 23px;
    }
    .mtraceyHotelList .ttl:before {
        width: 22px;
        height: 20px;
        margin-right: 10px;
        margin-bottom: -5px;
    }
    
    .mtraceyHotelList .img {
        width: 95%;
        margin: 0 auto 20px;
    }
    
    .mtraceyHotelList2 .img {
        width: 95%;
        margin: 0 auto 20px;
    }
    
    .mtraceyHotelList .img:before {
        top: 10px;
        left: 10px;
        background-size: 100% auto;
    }
    
    .mtraceyHotelList .tit {
        font-size: 20px;
        margin: 10px 0;
    }
    
    .mtraceyHotelList .txt {
        padding-top: 10px;
    }
}

/*mtraceyHotelLink*/
.mtraceyHotelLink .tit {
    font-weight: bold;
    border-left: 5px solid #8ce3f6;
    background: #f2f5f6;
    padding: 20px 32px;
    margin-bottom: 10px;
}

.mtraceyHotelLink ul li img {
    margin-top: 15px;
}

.mtraceyHotelLink ul li a {
    color: #fff;
    background: #3db2de;
    display: block;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    z-index: 0;
    margin: 5px 0;
    height: 70px;
}

.mtraceyHotelLink ul li a:before {
    height: 24px;
    font-family: "Font Awesome 5 Free";
    content: "\f0a9";
    font-weight: 900;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.mtraceyHotelLink ul li a:hover:before {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
}

@media (max-width: 599px) {
    .mtraceyHotelLink .tit {
        padding: 10px 12px;
        margin-bottom: 10px;
    }
    
    .mtraceyHotelLink ul li img {
    margin-top: 30px;
}

    .mtraceyHotelLink ul li a {
        font-size: 14px;
        height: 70px;
    }
}

/*fade*/
.fade-box {
    visibility: hidden;
}

[data-element-id] .fade-box {
    visibility: inherit;
}

.fade {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fade;
    animation-name: fade;
    visibility: visible !important;
}

/*@translateYで縦の動き・translateXで横の動きを指定できる*/
@-webkit-keyframes fade {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fade {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media (max-width: 599px){
.fade-box {
    visibility: visible;
}
.fade {
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-duration: none;
    animation-duration: none;
    -webkit-animation-name: none;
    animation-name: none;
}
}

@media (max-width: 1024px) {

    .skiWrap .mainWrap .inner,
    .skiWrap .mainWrap .inner1200 {
        max-width: 100%;
    }
    
    .skiMeasure .ttl02 {
        font-size: 30px;
    }
    
    .skiNav ul li a {
        font-size: 16px;
        text-align: center;
        padding: 10px 15px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .hokkaidoMap .nisekovillage {
        bottom: 111px;
        left: -72px;
    }

    .hokkaidoMap .rusutsu {
        bottom: 128px;
        left: 104px;
    }

    .hokkaidoMap .nisekohirafu {
        bottom: 138px;
        left: -109px;
    }

    .hokkaidoMap .nisekoannupuri {
        bottom: 166px;
        left: -84px;
    }

    .hokkaidoMap .nisekomoiwa {
        bottom: 58px;
        left: -104px;
    }

    .hokkaidoMap .teine {
        bottom: 241px;
        left: 162px;
    }
    
    .hokkaidoMap .yubari {
    bottom: 225px;
    left: 200px;
}

    .hokkaidoMap .kamui {
        top: 221px;
        left: 106px;
    }

    .hokkaidoMap .furano {
        top: 251px;
        left: 321px;
    }

    .hokkaidoMap .sahoro {
        top: 279px;
        left: 347px;
    }

    .hokkaidoMap .tomamu {
        bottom: 204px;
        left: 316px;
    }
    
    .hokkaidoMap .nanae {
    bottom: 70px;
    left: 130px;
    }


    .mapImg {
        margin-right: -100px;
        width: 600px;
        height: auto;
    }

    .hkdSkiArea a {
        font-size: 12px;
    }

    .infoList li a {
        padding-right: 20px;
    }
    
    .txtArea dl dd {
        font-size: 14px;
    }
}

@media (max-width: 599px) {
    .skiWrap .mainWrap {
        font-size: 14px;
        width: 100%;
        /*padding: 0 10px;*/
    }

    .searchBox {
        padding: 16px 0;
        margin: 0;
    }

    .searchBox .left {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 161px;
        flex: 0 0 161px;
        font-size: 13px;
        padding-right: 10px;
    }

    .searchBox .right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
        flex: 0 0 140px;
    }

    .searchBox .right select {
        font-size: 13px;
        width: 100%;
    }
    
  .skiMap .ttl02 {
    font-size: 20px;
  }
  .mapImg {
    width: 80%;
    height: auto;
  }
  .hkdSkiArea a {
    padding: 2px 5px;
  }
  
/*  .hokkaidoMap .nisekovillage {
    bottom: 35px;
        left: -70px;
  }
  .hokkaidoMap .nisekohirafu {
    bottom: 60px;
        left: -105px;
  }
  .hokkaidoMap .nisekoannupuri {
    bottom: 85px;
        left: -80px;
  }
  .hokkaidoMap .nanae {
    bottom: 20px;
        left: 70px;
  }
  .hokkaidoMap .kamui {
    top: 98px;
        left: -10px;
  }
  .hokkaidoMap .rusutsu {
            bottom: 45px;
        left: 70px;
  }
  .hokkaidoMap .sapporokokusai {
    bottom: 110px;
    left: -60px;
  }
  .hokkaidoMap .kiroro {
    bottom: 135px;
    left: -70px;
}
  .hokkaidoMap .yubari {
        bottom: 70px;
        left: 80px;
    }
        .hokkaidoMap .teine {
        bottom: 130px;
        left: 50px;
    }
        .hokkaidoMap .furano {
        top: 60px;
        left: 140px;
    }
        .hokkaidoMap .sahoro {
        top: 85px;
        left: 140px;
    }
        .hokkaidoMap .tomamu {
        bottom: 95px;
        left: 180px;
    }
    */

    .skiNav ul li a {
        padding: 15px 0;
        font-size: 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .skiNav ul li a::after {
        content: none;
    }

    .check {
        display: none;
    }

    .endtxt {
        margin-top: 60px;
        background-color: #fff;
    }

    .search {
        padding: 60px 0 64px;
    }

    .search .ttl01 {
        font-size: 16px;
        line-height: 40px;
    }

    .formArea dl {
        max-width: none;
        margin: 0 0 10px 0;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .formArea dl dt {
        min-width: 75px;
        font-size: 12px;
    }
    
    .formArea_sp02 dl {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    
    .formArea_sp02 dl dt {
        width: 100%;
    }
    
    .formArea_sp02 dl dd {
        max-width: 100%;
        width: 100%;
        margin-top: 5px;
    }
    
    .formArea_sp02 dl dd select {
        font-size: 12px;
    }
    
    .formArea_sp02 button {
        width: 70%;
        font-size: 14px;
    }

    .skiMeasure .ttl02 {
        font-size: 20px;
    }

    .skiMeasure .ttl02 .en {
        font-size: 14px;
    }

    .news ul li a {
        display: block;
    }

    .news ul li .categoly {
        width: 120px;
        display: inline-block;
    }

    .news ul li .body {
        display: block;
        margin-top: 5px;
    }

    .skiMeasure .ttl03 .title {
        font-size: 16px;
    }

    .skiMeasure .ttl03 .title::before,
    .skiMeasure .ttl03 .title::after {
        width: 18px;
    }
    
    .infoList li a {
        font-size: 18px;
        padding: 20px 2.921%;
    }
    
    .infoList02 li a {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .infoList li a .arrow {
        font-size: 20px;
    }

    .tourTtl {
        font-size: 19px;
    }

    .subTxt {
        font-size: 17px;
        height: inherit;
    }
    
    .tourListTxtBox {
      height: inherit;
    }
    
    #find-a-tour ul li .iconBox {
      height: inherit;
    }

    .txtBox {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: auto;
        min-height: auto;
    }

    .iconBox {
        -webkit-box-flex: 0;
        -ms-flex: 0;
        flex: 0;
        height: auto;
        min-height: auto;
    }

    .tourBtn {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .tourBtn a {
        margin-bottom: 20px;
    }

    .tourBtn a .arrow {
        width: 14px;
        height: 14px;
        right: 10px;
    }
    
    .slopeTtl {
        font-size: 22px;
    }

    .slopeSlider {
        padding: 0 20px;
    }

    .slide-arrow.prev-arrow,
    .slide-arrow.next-arrow {
        width: 30px;
    }

    .slide-arrow.prev-arrow {
        left: -2px;
    }

    .slide-arrow.next-arrow {
        right: -2px;
    }

    .tourList .tourBox {
        width: 95%;
    }

    .skiMeasure.qa {
        padding: 20px 0;
    }

    .qaTtl {
        font-size: 4vw;
        margin-bottom: 20px;
    }

    .faqBox dl {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 0 20px 0;
    }

    .faqBox dl dt {
        width: 100%;
    }

    .faqBox dl dt .head {
        font-size: 24px;
        margin: 0 5px 0 0;
    }

    .faqBox dl dt .question {
        font-size: 14px;
    }

    .faqBox dl dd {
        width: auto;
        margin: 10px auto 0;
    }

    .faqBox dl dd::before {
        top: -15px;
        left: 50%;
        margin-left: -15px;
        border: 15px solid transparent;
        border-bottom: 15px solid #EEE;
    }

    .faqBox dl dd .answer {
        margin: 0 0 7px;
        font-size: 13px;
        line-height: 1.6;
    }
}


/*時刻表部分*/
table {
	margin: 0px auto;
    width: 100%;
}

.table {
	width: 100%;
	padding: 20px 0 0;
	overflow: auto;
  white-space: nowrap;
}
.tableWrapper {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}


.tableWrapper .table tr {
	text-align: center;
}
.tableWrapper .table th{
  background: #10a0e0;
  color: #fff;
  text-align: center;
  padding: 5px;
}

.tableWrapper p {
    margin: 0 auto;
    font-size: 1.3rem;
    font-weight: bold;
	color: #3eb2de;
	padding-top: 30px;
}

.tableWrapper .table td{
  background: #f1fafe;
  text-align: center;
  border-bottom:1px solid #80bcff;
  padding: 5px;
  vertical-align: middle;
}

@media screen and (max-width: 599px){
.tableWrapper p {
    margin: 0 auto;
    font-size: 1.1rem;
}
}


/****** find-a-tour *****/

#find-a-tour {
	padding: 40px 0 76px 0;
}

#find-a-tour .title02 {
	margin-bottom: 30px;
	font-size: 40px;
  padding-bottom: 22px;
  text-align: center;
  color: #555;
  margin: 0 auto;
  width: 100%;
  letter-spacing: 0.135em;
  position: relative;
  font-weight: 700;
}

#find-a-tour .title02::after {
    content: "";
    width: 36px;
    height: 3px;
    background: #fff07c;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

#find-a-tour .title02 .en {
  font-family: 'Oswald',"游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 70%;
  font-weight: 200;
  color: #a8b4b8;
  display: inline-block;
  margin-bottom: 12px;
  height: auto;
  line-height: 1.6;
  padding: 0;
  letter-spacing: 0;
}
  
#find-a-tour ul  {
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

#find-a-tour ul li {
	  /*width: calc(50% - 20px);*/
    max-width: 373px;
	  margin: 10px;
	  float: none;
    position: relative;
}

#find-a-tour ul li.cmsn .cmsnWrap{position:relative;}
#find-a-tour ul li.cmsn .cmsnWrap::before {
  content: "";
  background: #696969c9;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#find-a-tour ul li .iconBox{height:100px;}
#find-a-tour ul li.cmsn .cmsnWrap::after {
    content: "Coming Soon!";
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: block;
    color: #fff;
    font-size: 180%;
    z-index: 4;
    font-weight: bold;
    transform: rotate(-8deg);
    text-align: center;
}
#find-a-tour ul li:nth-child(even) {
    margin: 0 0 2% 0;
}

#find-a-tour ul li + li {
	margin-top: 0;
}

#find-a-tour ul li .coming-tour-link{
overflow:hidden;
position: absolute;
width: 100%;
height: 49px;
top: -1px;
left: 0px;
background-color:#1D7DBE;
opacity: 0.75;
filter: alpha(opacity=75);
-ms-filter: "alpha( opacity=75 )";
z-index: 2;
border-radius: 8px;
}

#find-a-tour ul li .end-tour-link-text{
position: absolute;
top: 32%;
left: 0;
width: 100%;
padding: 0;
text-align: center;
color: #ffffff;
font-size: 18px;
font-weight: bold;
z-index: 3;
line-height: 11px;
}

#find-a-tour ul li a {
	display: block;
	color: #fff;
	background: #3db2de;
	font-weight: 700;
	border-radius: 6px;
	padding: 0 0 0 5px;
	position: relative;
	line-height: 48px;
	font-size: 13px;
}

/*#find-a-tour ul li a:after {
	content: "";
	display: block;
	position: absolute;
	width: 15px;
	height: 15px;
	background: url(/hkd/ski/images/icon_arrow_circle_right_solid.svg) center center no-repeat;
	background-size: 100% auto;
	top: 0;
	bottom: 0;
	right: 4px;
	margin: auto;
	transition: 0.3s ease-in-out;
}*/

#find-a-tour ul li:last-child {
    /*margin: 0 25% 0 25%;*/
}

/*2line*/
#find-a-tour ul li.line2 a {
    line-height: 31px;
}
#find-a-tour ul li.line2 a span {
    display: block;
    font-size: 10px;
    padding-bottom: 7px;
}

#find-a-tour ul li .coming-tour-link{
overflow:hidden;
position: absolute;
width: 100%;
height: 81px;
top: -1px;
left: 0px;
background-color:#1D7DBE;
opacity: 0.75;
filter: alpha(opacity=75);
-ms-filter: "alpha( opacity=75 )";
z-index: 2;
border-radius: 8px;
}

#find-a-tour ul li .end-tour-link-text{
position: absolute;
top: 40%;
left: 0;
width: 100%;
padding: 0;
text-align: center;
color: #ffffff;
font-size: 24px;
font-weight: bold;
z-index: 3;
line-height: 11px;
}

#find-a-tour ul li + li {
	margin-top: 10px;
}

#find-a-tour ul li:nth-child(even) {
    margin: 10px
}

#find-a-tour ul li + li + li + li {
	margin-top: 10px;
}

#find-a-tour ul li:nth-of-type(3n) {
	margin-right: 10px;
}

#find-a-tour .link-list ul li {
  margin: 0 auto;
}

/*#find-a-tour ul li:last-child {
    margin: 30px 1% 0 0;
}
*/
#find-a-tour ul li a {
	border-radius: 10px;
	/*padding: 0 0 0 9.383%;*/
	line-height: 40px;
	font-size: 13px;
	text-align: center;
}

#find-a-tour ul li a:after {
	width: 8.042%;
	height: 30px;
	right: 8.042%;
}

#find-a-tour ul li a:hover:after {
	transform: translateX(5px);
}

/*2line*/
#find-a-tour ul li.line2 a {
    line-height: 50px;
}
#find-a-tour ul li.line2 a span {
    display: block;
    font-size: 11px;
    padding-bottom: 17px;
}

@media screen and (min-width: 1240px) {

#find-a-tour ul li a {
	font-size: 20px;
}
/*2line*/
#find-a-tour ul li.line2 a {
    line-height: 50px;
}
#find-a-tour ul li.line2 a span {
    display: block;
    font-size: 13px;
    padding-bottom: 14.46px;
}
}

#find-a-tour ul li a {
    font-size: 14px!important;
}

#find-a-tour .icon-box{
  height: 50px;
  padding-bottom: 5px;
}

#find-a-tour .text-box{
  height: 165px;
}

#find-a-tour ul li a:after {
    width: 5.172%;
    height: 30px;
    right: 5.172%;
}

#find-a-tour ul li a:after {
    content: "";
    width: 20px;
    height: 45px;
    /*background: url(/hkd/ski/images/icon_arrow_circle_right_solid.svg) center center no-repeat;*/
    background-size: 100% auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    transition: 0.3s ease-in-out;
    font-family: "Font Awesome 5 Free";
    content: "\f0a9";
}

@media screen and (min-width: 768px){
.pc-none {display: none; }
  #find-a-tour .title02::after {
    width: 73px;
    height: 4px;
  }
}

@media screen and (max-width: 599px){
  
  #find-a-tour .title02 {
    font-size: 15px;
  }
  
  #find-a-tour ul li a {
    line-height: 24px;
    font-size: 13px;
    height: 55px
  }

  #find-a-tour ul li a:after {
    width: 15px;
    height: 25px;
}


#find-a-tour .icon-box {
    height: 95px;
}
#find-a-tour .text-box {
    height: 185px;
}
}

/****** find-a-theme *****/

#find-a-theme {
	padding: 40px 0 0 0;
}

#find-a-theme .title02 {
	margin-bottom: 30px;
	font-size: 40px;
  padding-bottom: 22px;
  text-align: center;
  color: #555;
  margin: 0 auto;
  width: 100%;
  letter-spacing: 0.135em;
  position: relative;
  font-weight: 700;
}

#find-a-theme .title02::after {
    content: "";
    width: 36px;
    height: 3px;
    background: #fff07c;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

#find-a-theme .title02 .en {
  font-family: 'Oswald',"游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 70%;
  font-weight: 200;
  color: #a8b4b8;
  display: inline-block;
  margin-bottom: 12px;
  height: auto;
  line-height: 1.6;
  padding: 0;
  letter-spacing: 0;
}

#find-a-theme .tourList a {
  /*background-color: #EEE;*/
  border-radius: 6px;
  margin: 0 20px;
    position: relative;
  
}

#find-a-theme .tourImg img {
  border: 5px solid #fff;
}

@media screen and (min-width: 768px){
.pc-none {display: none; }
  #find-a-theme .title02::after {
    width: 73px;
    height: 4px;
  }
}

@media screen and (max-width: 599px){
  
  #find-a-theme .title02 {
    font-size: 15px;
  }
}

.ski-area-wrap .title02 span {
	font-size: 70%;
	font-weight: 200;
	color: #a8b4b8;
	display: inline-block;
	margin-bottom: 12px;
	height: auto;
	line-height: 1.6;
	padding: 0;
	letter-spacing: 0;
}

@media screen and (min-width: 768px) {

.ski-area-wrap .title02 span {
	font-size: 60%;
	margin-bottom: 16px;
}
}

.campaignCampaignItemCoupon .box .list li .sub {
  color: #f00;
}

#recommended-slope .txtbox {
  width: 65%;
}

#recommended-slope .txtbox2 {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  background-image: url('/upload/tenant_1/hk_ski_hayawari_bg.webp');
  background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
}

#recommended-slope .txtbox2:after {
  opacity: 0.5;
}

#recommended-slope2 .txtbox2 {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  background-color: #f2f5f6;
}

#recommended-slope2 .tourBtn ul li .btnName {
    line-height: 1;
    display: block;
    border-radius: 4px;
    margin-bottom: 3px;
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

#recommended-slope2 .tourBtn ul li .btnName span {
  font-size: 26px;
}

#recommended-slope2 .tourBtn ul li .bottom {
  text-align: right;
  margin: 0;
}

#recommended-slope2 .tourBtn a {
    display: block;
    background: #fff;
    font-weight: 700;
    border-radius: 6px;
    padding: 30px 5px;
    position: relative;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    width: 50%;
    margin: 0 auto;
}

#recommended-slope2 .list .tourBtn a {
    display: block;
    background: #87cefa;
    font-weight: 700;
    border-radius: 6px;
    padding: 30px 5px;
    position: relative;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    width: 100%;
}

#recommended-slope2 .list .tourBtn ul li .btnName {
  line-height: 1;
    display: block;
    border-radius: 4px;
    margin-bottom: 3px;
    text-align: center;
    font-size: 26px;
    color: #fff;
    font-weight: 700;
}


.hayawaritokuten .txtbox2 .get {
  font-size: 24px;
}

.hayawaritokuten .txtbox2 .get span {
  font-size: 36px;
  color: #ff0000;
}
.hayawaritokuten .point .tour ul {
  display: flex;
  text-align: center;
}
.hayawaritokuten .point .tour ul li {
  background: #f2f5f6;
  border-radius: 10px;
  font-weight: bold;
  font-size: 24px;
  padding: 25px 0 20px;
  margin: 0 auto;
  width: 48%;
}
.hayawaritokuten .point .tour li p {
  font-size: 30px;
  color: #daa520;
  margin: 0 auto;
  padding: 0;
}
.hayawaritokuten .point .tour li span {
  font-size: 60px;
  color: #013895;
}

#recommended-slope .campaignCampaignItemCoupon .box .get {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  color: #013895;
  margin-bottom: 50px;
  text-shadow: 3px 3px 0px #fff, -3px -3px 0px #fff, -3px 3px 0px #fff, 3px -3px 0px #fff, 3px 0px 0px #fff, -3px 0px 0px #fff, 0px 3px 0px #fff, 0px -3px 0px #fff;
}

#recommended-slope2 .usualtour .list .tour {
  margin-bottom: 30px;
}

#recommended-slope .txtbox2 .usualtour .tourBtn .btnName {
  font-size: 20px;
  color: #000;
}

#recommended-slope2 .txtbox2 .usualtour .tourBtn a {
    display: block;
    background: #fff;
    font-weight: 700;
    border-radius: 6px;
    padding: 10px 5px;
    position: relative;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    width: 50%;
    margin: 0 auto;
}

#recommended-slope .txtbox2 .usualtour .tourBtn .start {
  font-weight: bolder;
}

#recommended-slope .txtbox2 .usualtour .tourBtn .top {
  text-align: center;
  margin-top: 30px;
}

#recommended-slope .txtbox2 .usualtour .tourBtn .bottom {
  text-align: right;
}


#recommended-slope2 .txtbox2 .hayawaritour .tour p {
  font-weight: bold;
  font-size: 24px;
}

#recommended-slope2 .txtbox2 .hayawaritour .tour .title {
  margin-top: 30px;
}

#recommended-slope .txtbox2 .hayawaritour .tourBtn .btnName {
  font-size: 30px;
}

#recommended-slope .txtbox2 .hayawaritour .tourBtn .btnName span {
  color: #000;
}

#recommended-slope2 .txtbox2 .hayawaritour .catch {
  position: absolute;
}

.txtbox2 .hayawaritour .catch img {
    position: relative;
    top: 15px;
    left: 20px;
    z-index: 1;
    width: 20%;
    transform: rotate(-15deg);
}



#recommended-slope .hayawari .txt {
    background-color: #f0f8ff;
    margin: 0 auto;
    padding: 20px 80px;
    border-radius: 15px;
    font-size: 24px;
    margin-top: -100px;
    text-align: left;
}

#recommended-slope .txtbox2 .txt {
  background-color: #f0f8ff;
  margin: 0 auto;
  padding: 20px 100px;
  border-radius: 15px;
  font-size: 24px;
  margin-top: -260px;
}

#recommended-slope .txtbox2 .txt span {
  font-size: 180%;
  font-weight: 900;
  color: #ff0000;
  font-family: "Dela Gothic One";
}

.campaignCampaignItemCoupon .box .txtbox2 {
    margin-top: 25px;
    line-height: 1.6;
}

@media (max-width: 599px){
  #recommended-slope .txtbox {
  width: 100%;
}

  #recommended-slope2 .tourBtn a {
    width: 100%;
  }
  
.campaignCampaignItemCoupon .box .txtbox2 {
    margin-top: 15px;
}

.hayawaritokuten .point .tour ul {
  display: block;
}
.hayawaritokuten .point .tour ul li {
  width: 95%;
  margin-bottom: 20px;
  font-size: 20px;
}
.hayawaritokuten .point .tour li p {
    font-size: 20px;
    color: #daa520;
    margin: 0;
    padding: 0;
    width: 100%;
}
.hayawaritokuten .point .tour li span {
    font-size: 40px;
}
#recommended-slope .txtbox2 .hayawaritour .icon {
  position: relative;
  top: -830px;
  left: 80px;
}

#recommended-slope .txtbox2 .hayawaritour .icon img {
  transform: rotate(0);
}

#recommended-slope .txtbox2 .usualtour .tourBtn .btnName {
  font-size: 20px;
}

#recommended-slope .txtbox2 .hayawaritour .tourBtn .btnName {
  font-size: 20px;
}

#recommended-slope .hayawari .txt {
  padding: 20px;
  font-size: 110%;
}

#recommended-slope .txtbox2 .txt {
  font-size: 20px;
  margin-top: -270px;
}

.txtbox2 .hayawaritour .catch img {
  position: relative;
  top: 58px;
  left: -20px;
  z-index: 1;
  width: 35%;
}
#recommended-slope2 .list .tourBtn a {
  margin-top: 30px;
}

#recommended-slope2 .txtbox2 .usualtour .tourBtn a {
  width: 100%;
}
#recommended-slope .campaignCampaignItemCoupon .box .get {
  font-size: 20px;
}
.hayawaritokuten .txtbox2 .get span {
  font-size: 28px;
}
#recommended-slope2 .tourBtn ul li .btnName span {
  font-size: 20px;
}
#recommended-slope2 .list .tourBtn ul li .btnName {
  font-size: 20px;
}
#recommended-slope2 .txtbox2 .hayawaritour .tour p {
  font-size: 18px;
}
}

.title {
    font-weight: bold;
    font-size: larger;
}

.bnrList img {
  margin: 0 auto;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.6));
}

[data-element-id] .bnrList {
  margin-top: 120px;
}

.bnrList .txtbox .txt span {
    font-size: 1.3rem;
    font-weight: bold;
    color: #3eb2de;
    padding-top: 30px;
    text-align: center;
}

.bnrList .txtbox .txt {
  padding: 10px;
  border: solid 3px #3eb2de;
  border-radius: 15px;
  margin: 10px auto;
  width: 80%;
}



@media only screen and (max-width: 768px){
  .formArea .icon-wrap {
    position: absolute;
    left: calc(50% + 5em);
    top: 50%;
    transform: translatey(-50%);
    width: 23px;
    height: 23px;
    background: none;
}
.formArea .icon {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.formArea .icon:before, .formArea .icon:after {
    position: absolute;
    content: "";
    display: block;
    transition: all 0.4s;
    background: #000;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 2px;
    transform: translate(-50%, -50%);
}
.formArea .icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
#recommended-slope .campaignCampaignItemCoupon .box .get {
  margin-bottom: 30px;
}
}

/* DPガジェット */
.tourBtn ul li .btnName {
    line-height: 1;
    display: block;
    border-radius: 4px;
    margin-bottom: 3px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

.tourBtn ul li .btnName small{
    color: #fff;
}
.getdpprice {
  margin: 0 auto;
}

.getdpprice .pri {
    color: #ff2b06;
    font-weight: bold;
    font-size: 50px;
}

.getdpprice .pri2 {
    color: #000;
    font-weight: bold;
    font-size: 36px;
}

.getdpprice .yen {
    color: #ff2b06;
    font-weight: bold;
    font-size: 20px;
}

.getdpprice .yen2 {
    color: #000;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
  .getdpprice .pri {
    font-size: 40px;
  }
  .getdpprice .yen {
    font-size: 15px;
  }
  .getdpprice .pri2 {
    font-size: 30px;
  }
  .getdpprice .yen2 {
    font-size: 13px;
  }
}

.tourBtn p {
  border: none;
}

.tourBtn p:after {
  display: none;
}

.carrierLogo {
  width: 20%;
}

.formArea .pcOnly dl.specialty dd ul li input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 4px;
    width: 6px;
    height: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: 2px solid #3a77c7;
    border-right: 2px solid #3a77c7;
}

/* テキストリンク追加 */

.oshinokashi{
  text-align: center;
  padding-bottom: 40px;
}
.oshinokashi a{
  display: block;
  background-color: #ce3840;
  border-radius: 6px;
  color: #FFF;
  font-weight: bold;
  padding: 15px;
  width: 90%;
  margin: 0 auto;
  font-size: 105%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oshinokashi a i{
  padding-right: 10px;
}
.oshinokashi a:hover{
  opacity: 0.7;
}
@media (max-width: 768px) {
  .oshinokashi{
    padding-bottom: 20px;
  }
  .oshinokashi a{
    width: 100%;
    text-align: left;
    font-size: 13px;
  }
}

.topBnr {
  position: absolute;
    top: 65%;
    left: 5%;
    width: 380px;
}


.campaign ul {
  display: flex;
    justify-content: space-around;
}

.campaign ul li {
  width: 30%;
}

/* クーポン */
  .pc__box {
      padding: 30px 15px;
          margin-top: -5px;
background-image: linear-gradient(158deg, rgba(84, 84, 84, 0.03) 0%, rgba(84, 84, 84, 0.03) 20%,rgba(219, 219, 219, 0.03) 20%, rgba(219, 219, 219, 0.03) 40%,rgba(54, 54, 54, 0.03) 40%, rgba(54, 54, 54, 0.03) 60%,rgba(99, 99, 99, 0.03) 60%, rgba(99, 99, 99, 0.03) 80%,rgba(92, 92, 92, 0.03) 80%, rgba(92, 92, 92, 0.03) 100%),linear-gradient(45deg, rgba(221, 221, 221, 0.02) 0%, rgba(221, 221, 221, 0.02) 14.286%,rgba(8, 8, 8, 0.02) 14.286%, rgba(8, 8, 8, 0.02) 28.572%,rgba(52, 52, 52, 0.02) 28.572%, rgba(52, 52, 52, 0.02) 42.858%,rgba(234, 234, 234, 0.02) 42.858%, rgba(234, 234, 234, 0.02) 57.144%,rgba(81, 81, 81, 0.02) 57.144%, rgba(81, 81, 81, 0.02) 71.42999999999999%,rgba(239, 239, 239, 0.02) 71.43%, rgba(239, 239, 239, 0.02) 85.71600000000001%,rgba(187, 187, 187, 0.02) 85.716%, rgba(187, 187, 187, 0.02) 100.002%),linear-gradient(109deg, rgba(33, 33, 33, 0.03) 0%, rgba(33, 33, 33, 0.03) 12.5%,rgba(147, 147, 147, 0.03) 12.5%, rgba(147, 147, 147, 0.03) 25%,rgba(131, 131, 131, 0.03) 25%, rgba(131, 131, 131, 0.03) 37.5%,rgba(151, 151, 151, 0.03) 37.5%, rgba(151, 151, 151, 0.03) 50%,rgba(211, 211, 211, 0.03) 50%, rgba(211, 211, 211, 0.03) 62.5%,rgba(39, 39, 39, 0.03) 62.5%, rgba(39, 39, 39, 0.03) 75%,rgba(55, 55, 55, 0.03) 75%, rgba(55, 55, 55, 0.03) 87.5%,rgba(82, 82, 82, 0.03) 87.5%, rgba(82, 82, 82, 0.03) 100%),linear-gradient(348deg, rgba(42, 42, 42, 0.02) 0%, rgba(42, 42, 42, 0.02) 20%,rgba(8, 8, 8, 0.02) 20%, rgba(8, 8, 8, 0.02) 40%,rgba(242, 242, 242, 0.02) 40%, rgba(242, 242, 242, 0.02) 60%,rgba(42, 42, 42, 0.02) 60%, rgba(42, 42, 42, 0.02) 80%,rgba(80, 80, 80, 0.02) 80%, rgba(80, 80, 80, 0.02) 100%),linear-gradient(120deg, rgba(106, 106, 106, 0.03) 0%, rgba(106, 106, 106, 0.03) 14.286%,rgba(67, 67, 67, 0.03) 14.286%, rgba(67, 67, 67, 0.03) 28.572%,rgba(134, 134, 134, 0.03) 28.572%, rgba(134, 134, 134, 0.03) 42.858%,rgba(19, 19, 19, 0.03) 42.858%, rgba(19, 19, 19, 0.03) 57.144%,rgba(101, 101, 101, 0.03) 57.144%, rgba(101, 101, 101, 0.03) 71.42999999999999%,rgba(205, 205, 205, 0.03) 71.43%, rgba(205, 205, 205, 0.03) 85.71600000000001%,rgba(53, 53, 53, 0.03) 85.716%, rgba(53, 53, 53, 0.03) 100.002%),linear-gradient(45deg, rgba(214, 214, 214, 0.03) 0%, rgba(214, 214, 214, 0.03) 16.667%,rgba(255, 255, 255, 0.03) 16.667%, rgba(255, 255, 255, 0.03) 33.334%,rgba(250, 250, 250, 0.03) 33.334%, rgba(250, 250, 250, 0.03) 50.001000000000005%,rgba(231, 231, 231, 0.03) 50.001%, rgba(231, 231, 231, 0.03) 66.668%,rgba(241, 241, 241, 0.03) 66.668%, rgba(241, 241, 241, 0.03) 83.33500000000001%,rgba(31, 31, 31, 0.03) 83.335%, rgba(31, 31, 31, 0.03) 100.002%),linear-gradient(59deg, rgba(224, 224, 224, 0.03) 0%, rgba(224, 224, 224, 0.03) 12.5%,rgba(97, 97, 97, 0.03) 12.5%, rgba(97, 97, 97, 0.03) 25%,rgba(143, 143, 143, 0.03) 25%, rgba(143, 143, 143, 0.03) 37.5%,rgba(110, 110, 110, 0.03) 37.5%, rgba(110, 110, 110, 0.03) 50%,rgba(34, 34, 34, 0.03) 50%, rgba(34, 34, 34, 0.03) 62.5%,rgba(155, 155, 155, 0.03) 62.5%, rgba(155, 155, 155, 0.03) 75%,rgba(249, 249, 249, 0.03) 75%, rgba(249, 249, 249, 0.03) 87.5%,rgba(179, 179, 179, 0.03) 87.5%, rgba(179, 179, 179, 0.03) 100%),linear-gradient(241deg, rgba(58, 58, 58, 0.02) 0%, rgba(58, 58, 58, 0.02) 25%,rgba(124, 124, 124, 0.02) 25%, rgba(124, 124, 124, 0.02) 50%,rgba(254, 254, 254, 0.02) 50%, rgba(254, 254, 254, 0.02) 75%,rgba(52, 52, 52, 0.02) 75%, rgba(52, 52, 52, 0.02) 100%),linear-gradient(90deg, #ffffff,#ffffff);
  }
.pc__box--bg {
    background: #fff;
    width: 800px;
    display: none;
    margin: 15px auto 30px auto;
    padding: 40px 80px;
    border-radius: 20px;
}
.pc__table {
    width: 100%;
    margin: 0 0 15px 0;
    border: 2px solid #333;
}
.pc__list {
    position: relative;
    background: #e4e4e4;
    padding: 15px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}
.pc__box--bg--ttl {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
img.camp__img {
    width: 480px;
    margin: 20px auto;
    border: 4px solid #FFF;
    box-shadow: 0 0px 4px 2px #cbcbcb;
}
.pc__abtn {
    display: block;
      width: 480px;
    margin: 20px auto 30px;
    border: 2px solid #333;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    border-radius: 57px;
    background: #333;
    color: #fff;
    box-shadow: 3px 9px 0px 0px #d14e96;
    cursor: pointer;
}
.pc__table {
    width: 100%;
    margin: 0 0 15px 0;
    border: 2px solid #333;
}
.pc__table th {
    background: #dbe6f0;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #333;
}
.pc__table td {
    padding: 10px;
    border-bottom: 1px solid #333;
}
.cpn__flx2 {
    display: grid;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px grid-row-gap: 20px justify-items: stretch align-items: stretch;
    grid-gap: 15px 15px;
    margin: 30px auto;
}
.pc__list {
    position: relative;
    background: #e4e4e4;
    padding: 15px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}
.pc__list::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 55px 86px 0 0;
    border-color: #d14e9678 transparent transparent transparent;
    top: 0;
    position: absolute;
    left: 0;
}
.pc__list dt {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}
.pc__list dd input {
    background: none;
    border: none;
    font-weight: bold;
    -webkit-appearance: none;
    font-size: 20px;
    text-align: center;
    display: block;
    color: #d14e96;
    margin: 0 auto 5px;
    width: 100%;
}
.pc__list dd span {
    display: block;
    background: #333;
    text-align: center;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.cpn__flx select {
    width: 100%;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px;
}
.cpn__flx p {
    text-align: center;
    font-weight: bold;
    width: 100%;
}

@media (max-width: 768px) {
  .topBnr {
    position: unset;
    margin: 20px auto;
    width: 80%;
  }
  .campaign ul {
    display: block;
  }
  .campaign ul li {
    width: 100%;
  }
  .pc__abtn,.pc__box--bg{width: 100%;}
  .pc__box--bg{
    display: block;
    padding: 25px;
  }
  .pc__table th,.pc__table td {
      font-size: 14px;
  }
  
}

.mtraceySlopePickup .snowFesintro .txt {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.h1Area h1 {
    text-align: center;
    padding: 10px;
    font-weight: bold;
    color: #174285;
    font-size: 120%;
}



@media (max-width: 599px) {
  .mapImg{
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
  .hokkaidoMap .hkdSkiArea{
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }
  .hokkaidoMap .hkdSkiArea a {
    width: 100%;
  }
}
