@charset "UTF-8";

/* ================================================================

制作コンテンツ用
	
info:
- #contents 外の共通パーツなどに影響を与えないよう注意

================================================================ */


* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

html,
body {
    margin: 0px;
    height: 100%;
}

/* a blue color as a generic focus style */
button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
}

a {
    text-decoration: none;
}


.hokkaido_lp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.hokkaido_lp .mainvisual {
    display: flex;
    flex-direction: column;
    height: 645px;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    padding: 60px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-image: url(https://c.animaapp.com/ygNsSAf8/img/mainvisual.png);
    background-size: cover;
    background-position: 50% 50%;
}

.hokkaido_lp .mainvisual .button-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 26px 40px 26px 50px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 9px 10px 10px 10px;
    background: linear-gradient(180deg,
            rgba(24, 141, 224, 1) 0%,
            rgba(24, 71, 224, 1) 100%);
}

.hokkaido_lp .mainvisual .button-cta:hover {
    background: rgba(24, 141, 224, 1);
}

.hokkaido_lp .mainvisual .button-cta .inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
}

/* 共通の最大幅を960pxに統一 */
.hokkaido_lp .banner-large-list,
.hokkaido_lp .banner-small-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 960px;
    column-gap: 30px;
    row-gap: 30px;
    margin-bottom: 30px;
}

.hokkaido_lp .banner-small-list {
    justify-content: center;
}

/* 上段バナー：3列・gap込みで960pxにフィット */
.hokkaido_lp .banner-large-list li {
    width: calc((100% - 60px) / 3);
    /* 3列、gap30px×2 */
    max-width: 300px;
}

/* 下段バナー：2列・gap込みで960pxにフィット */
.hokkaido_lp .banner-small-list li {
    width: calc((100% - 30px) / 2);
    /* 2列、gap30px×1 */
    max-width: 465px;
}

/* 画像は共通でフィット */
.hokkaido_lp .banner-large-list li img,
.hokkaido_lp .banner-small-list li img {
    width: 100%;
    display: block;
}

/* hover時に少し暗くする（共通） */
.hokkaido_lp .banner-large-list li a:hover img,
.hokkaido_lp .banner-small-list li a:hover img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}


/* section02 */
.section.sec02 .container {
    max-width: 960px;
    margin: 0 auto;
}

.section.sec02 .sec-header,
.section.sec03 .sec-header,
.section.sec04 .sec-header {
    text-align: center;
    /* margin-bottom: 40px; */
}

.section.sec02 .sec-header h2 img,
.section.sec03 .sec-header h2 img,
.section.sec04 .sec-header h2 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.section.sec02 .sec-header p,
.section.sec03 .sec-header p,
.section.sec04 .sec-header p {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.6;
}

.section.sec02 .sec-subheadline {
    text-align: center;
    margin: 0 0 20px;
}

.section.sec02 .sec-subheadline img {
    max-width: 100%;
    height: auto;
}

.section.sec02 .img-hokkaido {
    text-align: center;
    margin-bottom: 40px;
}

.section.sec02 .img-hokkaido img {
    max-width: 100%;
    height: auto;
}

/* エリアブロック */
.section.sec02 .area-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.section.sec02 .area-item {
    border-radius: 12px;
    padding: 18px;
    color: #333;
}

.section.sec02 .area-item.douou {
    background: #fff0cc;
}

.section.sec02 .area-item.douhoku {
    background: #ffe7f1;
}

.section.sec02 .area-item.dounan {
    background: #e6f0ff;
}

.section.sec02 .area-item.doutou {
    background: #eefadc;
}

.section.sec02 .area-item-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.section.sec02 .area-item-header .icon-areaname {
    max-width: 100px;
    height: auto;
    flex-shrink: 0;
}

.section.sec02 .area-item-header p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.section.sec02 .area-item-desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section.sec02 .area-item-desc .box {
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
}

.section.sec02 .area-item-desc .box img {
    width: 100%;
    height: auto;
    display: block;
}

.section.sec02 .area-item-desc .box p {
    font-size: 12px;
    line-height: 1.4;
    margin: 10px 0 0;
    flex-grow: 1;
}

/* 季節ごとの服装 */
.check-season-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.section.sec02 .check-season-item {
    background: #fff;
    border-radius: 8px;
    border: 2px solid #D0D0D0;
    width: calc(50% - 10px);
    /* 2列になるように固定幅に */
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    box-sizing: border-box;
}

.section.sec02 .check-season-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    justify-content: center;
}

.section.sec02 .icon-season {
    max-width: 160px;
    height: auto;
}

.section.sec02 .icon-temperature {
    max-width: 260px;
    height: auto;
}

.section.sec02 .check-season-detail dt {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 22px;
    color: #F08300;
    text-align: left;
}

.section.sec02 .check-season-detail dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}














.hokkaido_lp .text-wrapper {
    width: fit-content;
    font-weight: 900;
    color: #ffffff;
    font-size: 23px;
    line-height: 28px;
    white-space: nowrap;
    position: relative;
    text-align: center;
    letter-spacing: 0;
}

.hokkaido_lp .arrow-circle-right {
    position: relative;
    width: 36px;
    height: 36px;
}

.hokkaido_lp .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 100px;
    align-self: stretch;
    width: 100%;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
}

.hokkaido_lp .container {
    gap: 60px;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hokkaido_lp .sec-headline {
    position: relative;
    object-fit: cover;
}

.hokkaido_lp .section.sec01 .sec-headline {
    width: 420px;
    height: auto;
}

.hokkaido_lp .section.sec02 .sec-headline {
    width: 580px;
    height: auto;
}

.hokkaido_lp .section.sec03 .sec-headline {
    width: 640px;
    height: auto;
}

.hokkaido_lp .section.sec04 .sec-headline {
    width: 600px;
    height: auto;
}


.hokkaido_lp .ranking-card {
    position: relative;
    border-bottom: 1px solid #333;
}

.hokkaido_lp .ranking-card:last-child {
    border-bottom: none;
}

.hokkaido_lp .ranking-card.top {
    height: 70px;
    background: linear-gradient(90deg,
            rgba(247, 216, 151, 1) 0%,
            rgba(214, 172, 69, 1) 100%);
}

.hokkaido_lp .ranking-card .desc {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
}

.hokkaido_lp .ranking-card.top .desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 9px;
    left: 10px;
    /* width: 182px; */
    padding: 0;
}

.hokkaido_lp .ranking-card .spot-name {
    position: relative;
    /* align-self: stretch; */
    font-weight: bold;
    color: #333;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
}

.hokkaido_lp .ranking-card.top .spot-name {
    position: relative;
    align-self: stretch;
    font-weight: bold;
    color: #e83430;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 30px;
}

.hokkaido_lp .ranking-card .label-spot {
    justify-content: center;
    gap: 10px;
    padding: 0 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .ranking-card .label-spot.dounan {
    background-color: #0068b7;
}

.hokkaido_lp .ranking-card .label-spot.doutou {
    background-color: #009944;
}

.hokkaido_lp .ranking-card .label-spot.douou {
    background-color: #f08300;
}

.hokkaido_lp .ranking-card .label-spot.douhoku {
    background-color: #e4007f;
}

.hokkaido_lp .ranking-card .label-spot span {
    position: relative;
    width: fit-content;
    font-weight: bold;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.hokkaido_lp .ranking-card .rank-no {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid;
    border-color: #333333;
}

.hokkaido_lp .ranking-card .rank-no span {
    /* position: absolute;
    top: 3px;
    left: 5px; */
    font-weight: bold;
    color: #333333;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    white-space: nowrap;
}

.hokkaido_lp .ranking-card.top .rank-no {
    position: relative;
    width: 52px;
    height: 52px;
    background-color: #ffffff;
    border-radius: 26px;
    overflow: hidden;
}

.hokkaido_lp .ranking-card.top .rank-no span {
    position: absolute;
    top: 7px;
    left: 6px;
    font-weight: bold;
    color: #000000;
    font-size: 24px;
    text-align: center;
    letter-spacing: -1.92px;
    line-height: normal;
}

.hokkaido_lp .ranking-card.top .spot-info {
    display: flex;
    flex-direction: column;
    width: 120px;
    height: 53px;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    position: relative;
}

.hokkaido_lp .ranking-body.michinoeki .ranking-card .spot-name {
    width: 140px;
    line-height: 20px;
}







.hokkaido_lp .frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 39px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .div {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 30px 30px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .banner-l-wrapper {
    width: 300px;
    align-items: flex-start;
    gap: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hokkaido_lp .banner-l {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hokkaido_lp .banner-s {
    position: relative;
    width: 465px;
    height: 130px;
    object-fit: cover;
}

.hokkaido_lp .container-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 219px;
    align-self: stretch;
    width: 100%;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
}

.hokkaido_lp .container-2 {
    width: 961px;
    gap: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hokkaido_lp .section.sec01 .sec-header {
    display: inline-flex;
    gap: 30px;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hokkaido_lp .img {
    position: relative;
    width: 580px;
    height: 102px;
    object-fit: cover;
}

.hokkaido_lp .element {
    width: fit-content;
    color: #000000;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    position: relative;
    font-weight: bold;
    letter-spacing: 0;
}

.hokkaido_lp .sec-headline-s {
    position: relative;
    width: 790px;
    height: 115px;
    object-fit: cover;
}

.hokkaido_lp .img-hokkaido {
    position: relative;
    width: 800px;
    height: 698px;
    object-fit: cover;
}

.hokkaido_lp .frame-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .frame-3 {
    display: flex;
    flex-direction: column;
    height: 411px;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ffefbe;
    border-radius: 10px;
}

.hokkaido_lp .frame-4 {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .img-2 {
    position: relative;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.hokkaido_lp .text-wrapper-2 {
    position: relative;
    width: 794px;
    font-weight: bold;
    color: #000000;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
}

.hokkaido_lp .frame-5 {
    display: inline-flex;
    align-items: flex-start;
    gap: 19px;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .frame-6 {
    width: 215px;
    align-items: flex-start;
    gap: 5px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hokkaido_lp .img-3 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.hokkaido_lp .text-wrapper-3 {
    position: relative;
    align-self: stretch;
    font-weight: bold;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.hokkaido_lp .frame-7 {
    display: flex;
    flex-direction: column;
    width: 217px;
    align-items: flex-start;
    gap: 5px;
    position: relative;
}

.hokkaido_lp .photo-douou {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 161.49px;
    object-fit: cover;
}

.hokkaido_lp .frame-8 {
    display: flex;
    flex-direction: column;
    height: 411px;
    align-items: center;
    gap: 10px;
    padding: 17px 18px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #f9d8e7;
    border-radius: 10px;
}

.hokkaido_lp .frame-9 {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .frame-10 {
    display: flex;
    flex-direction: column;
    width: 215px;
    align-items: flex-start;
    gap: 7px;
    position: relative;
}

.hokkaido_lp .frame-11 {
    width: 216px;
    gap: 7px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.hokkaido_lp .frame-12 {
    display: flex;
    flex-direction: column;
    height: 411px;
    align-items: center;
    gap: 8px;
    padding: 17px 12px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #cbebfb;
    border-radius: 10px;
}

.hokkaido_lp .frame-13 {
    display: inline-flex;
    align-items: flex-start;
    gap: 21px;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .frame-14 {
    display: flex;
    flex-direction: column;
    width: 215px;
    align-items: flex-start;
    gap: 9px;
    position: relative;
}

.hokkaido_lp .frame-15 {
    display: flex;
    flex-direction: column;
    width: 215px;
    align-items: flex-start;
    gap: 8px;
    position: relative;
}

.hokkaido_lp .frame-16 {
    display: flex;
    flex-direction: column;
    width: 220px;
    align-items: flex-start;
    gap: 8px;
    position: relative;
}

.hokkaido_lp .photo-dounan {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 163.72px;
    object-fit: cover;
}

.hokkaido_lp .img-dounan-illust {
    position: relative;
    width: 215px;
    height: 222px;
    object-fit: cover;
}

.hokkaido_lp .frame-17 {
    display: flex;
    flex-direction: column;
    height: 411px;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 20px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #e4efc3;
    border-radius: 10px;
}

.hokkaido_lp .frame-18 {
    display: inline-flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .frame-19 {
    display: flex;
    flex-direction: column;
    width: 215px;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.hokkaido_lp .sec-headline-2 {
    position: relative;
    width: 790px;
    height: 91px;
    object-fit: cover;
}

.hokkaido_lp .frame-20 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 36px 26px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .check-spring {
    display: flex;
    flex-direction: column;
    width: 467px;
    height: 315px;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 17px;
    position: relative;
    border-radius: 10px;
    border: 2px solid;
    border-color: #d0d0d0;
}

.hokkaido_lp .div-2 {
    width: 428px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .frame-21 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .img-4 {
    width: 160px;
    height: 160px;
    position: relative;
    object-fit: cover;
}

.hokkaido_lp .img-5 {
    width: 260px;
    height: 164px;
    position: relative;
    object-fit: cover;
}

.hokkaido_lp .text-wrapper-4 {
    position: relative;
    align-self: stretch;

    font-weight: bold;
    color: #f08300;
    font-size: 22px;
    letter-spacing: 1.10px;
    line-height: normal;
}

.hokkaido_lp .text-wrapper-5 {
    align-self: stretch;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    font-weight: bold;
    letter-spacing: 0;
}

.hokkaido_lp .check-summer {
    display: flex;
    flex-direction: column;
    width: 467px;
    height: 315px;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 17px;
    position: relative;
    border-radius: 10px;
    border: 2px solid;
    border-color: #d0d0d0;
}

.hokkaido_lp .check-container {
    width: 429px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .frame-22 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .check-autumn {
    display: flex;
    flex-direction: column;
    width: 467px;
    height: 315px;
    align-items: flex-start;
    gap: 10px;
    padding: 17px;
    position: relative;
    border-radius: 10px;
    border: 2px solid;
    border-color: #d0d0d0;
}

.hokkaido_lp .check-wnter {
    display: flex;
    flex-direction: column;
    width: 467px;
    height: 315px;
    align-items: flex-start;
    gap: 10px;
    padding: 17px 12px;
    position: relative;
    border-radius: 10px;
    border: 2px solid;
    border-color: #d0d0d0;
}

.hokkaido_lp .frame-23 {
    display: flex;
    flex-direction: column;
    width: 438px;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .frame-24 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .div-wrapper {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 218px;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
}

.hokkaido_lp .container-3 {
    width: 964px;
    gap: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hokkaido_lp .sec-header-2 {
    display: flex;
    width: 640px;
    gap: 40px;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hokkaido_lp .sec-headline-3 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 104px;
    object-fit: cover;
}

.hokkaido_lp .text-wrapper-6 {
    position: relative;
    width: fit-content;
    font-weight: bold;
    color: #000000;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.80px;
    line-height: 28px;
}

.hokkaido_lp .ranking-container {
    position: relative;
    /* align-self: stretch; */
    width: 100%;
    /* height: 1293.71px; */
    display: flex;
    justify-content: space-between;
}

.hokkaido_lp .ranking-content {
    width: 310px;
    /* left: 652px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    /* position: absolute; */
    /* top: 0; */
}

.hokkaido_lp .ranking-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .ranking-content h3 {
    position: relative;
    width: fit-content;
    font-weight: bold;
    color: #e83430;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
}

.hokkaido_lp .ranking-body {
    position: relative;
    align-self: stretch;
    width: 100%;
    min-height: 610px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid;
    border-color: #333333;
}

.hokkaido_lp .overlap-group {
    position: absolute;
    width: 310px;
    height: 119px;
    top: 492px;
    left: 0;
}

.hokkaido_lp .frame-wrapper {
    position: absolute;
    width: 310px;
    height: 60px;
    top: 59px;
    left: 0;
}

.hokkaido_lp .frame-26 {
    display: flex;
    width: 230px;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 10px;
    left: 8px;
}

.hokkaido_lp .frame-27 {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid;
    border-color: #333333;
}

.hokkaido_lp .p {
    position: absolute;
    top: 3px;
    left: 1px;
    font-weight: bold;
    color: #000000;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    white-space: nowrap;
}

.hokkaido_lp .span {
    letter-spacing: -0.20px;
}

.hokkaido_lp .text-wrapper-7 {
    letter-spacing: 0;
}

.hokkaido_lp .frame-28 {
    justify-content: center;
    gap: 10px;
    padding: 5px 8px;
    background-color: #009944;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .text-wrapper-8 {
    position: relative;
    width: fit-content;
    font-weight: bold;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}


.hokkaido_lp .text-wrapper-9 {
    position: relative;
    width: 142px;
    margin-right: -60.00px;
    font-weight: bold;
    color: #333333;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 20px;
}

.hokkaido_lp .frame-29 {
    position: absolute;
    width: 310px;
    height: 60px;
    top: 0;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #333333;
}

.hokkaido_lp .text-wrapper-10 {
    position: absolute;
    top: 3px;
    left: 5px;
    font-weight: bold;
    color: #000000;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.hokkaido_lp .frame-30 {
    justify-content: center;
    gap: 10px;
    padding: 5px 8px;
    background-color: #0068b7;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}


.hokkaido_lp .text-wrapper-11 {
    position: relative;
    width: fit-content;
    margin-right: -62.00px;
    font-weight: bold;
    color: #333333;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.hokkaido_lp .frame-31 {
    position: absolute;
    width: 310px;
    height: 60px;
    top: 431px;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #333333;
}

.hokkaido_lp .text-wrapper-12 {
    position: relative;
    width: fit-content;
    margin-right: -34.00px;
    font-weight: bold;
    color: #333333;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.hokkaido_lp .frame-32 {
    position: absolute;
    width: 310px;
    height: 60px;
    top: 371px;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #333333;
}

.hokkaido_lp .frame-33 {
    position: absolute;
    width: 310px;
    height: 60px;
    top: 311px;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #333333;
}

.hokkaido_lp .text-wrapper-13 {
    position: absolute;
    top: 3px;
    left: 5px;
    font-weight: bold;
    color: #333333;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.hokkaido_lp .text-wrapper-14 {
    position: relative;
    width: fit-content;
    margin-right: -61.00px;

    font-weight: bold;
    color: #333333;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.hokkaido_lp .frame-34 {
    position: absolute;
    width: 310px;
    height: 60px;
    top: 251px;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #333333;
}

.hokkaido_lp .frame-35 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 8px;
    position: relative;
    flex: 0 0 auto;
    background-color: #f08300;
    border-radius: 4px;
}

.hokkaido_lp .frame-36 {
    position: absolute;
    width: 310px;
    height: 60px;
    top: 190px;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #333333;
}

.hokkaido_lp .text-wrapper-15 {
    position: relative;
    width: fit-content;
    margin-right: -86.00px;

    font-weight: bold;
    color: #333333;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.hokkaido_lp .frame-37 {
    position: absolute;
    width: 310px;
    height: 60px;
    top: 130px;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #333333;
}

.hokkaido_lp .frame-38 {
    position: absolute;
    width: 310px;
    height: 60px;
    top: 70px;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #333333;
}

.hokkaido_lp .frame-39 {
    position: absolute;
    width: 310px;
    height: 70px;
    top: 0;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #333333;
    background: linear-gradient(90deg,
            rgba(247, 216, 151, 1) 0%,
            rgba(214, 172, 69, 1) 100%);
}



.hokkaido_lp .icon-trophy {
    position: absolute;
    width: 46px;
    height: 46px;
    top: 12px;
    left: 254px;
}

.hokkaido_lp .frame-40 {
    display: flex;
    width: 182px;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 9px;
    left: 10px;
}


.hokkaido_lp .rank {
    position: relative;
    width: 52px;
    height: 52px;
    background-color: #ffffff;
    border-radius: 26px;
    overflow: hidden;
}


.hokkaido_lp .text-wrapper-16 {
    position: absolute;
    top: 7px;
    left: 6px;

    font-weight: bold;
    color: #000000;
    font-size: 24px;
    text-align: center;
    letter-spacing: -1.92px;
    line-height: normal;
}


.hokkaido_lp .text-spot {
    display: flex;
    flex-direction: column;
    width: 120px;
    height: 53px;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    position: relative;
}

.hokkaido_lp .text-wrapper-17 {
    position: relative;
    align-self: stretch;
    font-weight: bold;
    color: #e83430;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 30px;
}


.hokkaido_lp .ranking-spot {
    display: flex;
    flex-direction: column;
    width: 282px;
    align-items: center;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .ranking-spot-header {
    width: 214px;
    align-items: center;
    gap: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .text-wrapper-18 {
    position: relative;
    align-self: stretch;
    font-weight: bold;
    color: #e83430;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0;
    line-height: 20px;
}

.hokkaido_lp .ranking-content .ranking-spot .ranking-spot-header h4 {
    position: relative;
    font-weight: bold;
    color: #e83430;
    font-size: 22px;
    text-align: center;
    line-height: 20px;
}

.hokkaido_lp .element-3 {
    position: relative;
    align-self: stretch;
    font-weight: bold;
    color: #000000;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: 22px;
}

.hokkaido_lp .ranking-content .ranking-spot .ranking-spot-header p {
    position: relative;
    font-weight: bold;
    color: #000000;
    font-size: 16px;
    text-align: center;
    line-height: 22px;
}

.hokkaido_lp .div-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .ranking-content .ranking-spot .ranking-spot-desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .img-6 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 191.36px;
    object-fit: cover;
}

.hokkaido_lp .text-wrapper-19 {
    position: relative;
    align-self: stretch;
    height: 38px;
    font-weight: bold;
    color: #000000;
    font-size: 12px;
    letter-spacing: -0.36px;
    line-height: 18px;
}

.hokkaido_lp .ranking-spot .ranking-spot-desc .box {
    margin-bottom: 15px;
}

.hokkaido_lp .ranking-spot .ranking-spot-desc .box p {
    margin-top: 10px;
    position: relative;
    font-size: 12px;
    line-height: 18px;
}

.hokkaido_lp .text-wrapper-20 {
    position: relative;
    align-self: stretch;
    font-weight: bold;
    color: #000000;
    font-size: 12px;
    letter-spacing: -0.36px;
    line-height: 18px;
}

.hokkaido_lp .ranking-content-2 {
    width: 310px;
    left: 328px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 47px;
    position: absolute;
    top: 0;
}

.hokkaido_lp .text-wrapper-21 {
    position: relative;
    width: fit-content;

    font-weight: bold;
    color: #333333;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.hokkaido_lp .frame-41 {
    background-color: #e4007f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 8px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 4px;
}

.hokkaido_lp .frame-42 {
    background-color: #005bac;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 8px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 4px;
}

.hokkaido_lp .ranking-content-3 {
    width: 312px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 47px;
    position: absolute;
    top: 0;
}

.hokkaido_lp .frame-43 {
    background-color: #e7208f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 8px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 4px;
}

.hokkaido_lp .section-2 {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 220px;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
}

.hokkaido_lp .container-4 {
    width: 960px;
    gap: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hokkaido_lp .sec-header-3 {
    display: flex;
    width: 600px;
    height: 234px;
    gap: 40px;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hokkaido_lp .sec-headline-4 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 103px;
    object-fit: cover;
}

.hokkaido_lp .PIXTA {
    flex: 1;
    width: 587px;
    font-family: "Hiragino Sans-Regular", Helvetica;
    color: #000000;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.80px;
    line-height: 16px;
    position: relative;
    font-weight: bold;
}

.hokkaido_lp .text-wrapper-22 {
    letter-spacing: 0.13px;
    line-height: 28px;
}

.hokkaido_lp .text-wrapper-23 {
    font-size: 14px;
    letter-spacing: 0.10px;
    line-height: 30px;
}

.hokkaido_lp .spot-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .section.sec04 .spot-content {
    gap: 41px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.hokkaido_lp .section.sec04 .spot-season {
    position: relative;
    width: 95.38px;
    height: 95.38px;
}

.hokkaido_lp .section.sec04 .spot-list {
    gap: 20px 20px;
    display: flex;
    flex-wrap: wrap;
    max-width: 960px;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.hokkaido_lp .section.sec04 .spot-item {
    padding: 22px 16px;
    display: flex;
    width: 305px;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    border: 2px solid;
    border-color: #e5e4e4;
}

.hokkaido_lp .section.sec04 .spot-item-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.hokkaido_lp .section.sec04 .spot-item-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .section.sec04 .spot-item-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.hokkaido_lp .section.sec04 .spot-item-area {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 70px;
}

.hokkaido_lp .section.sec04 .spot-content.spring .spot-item-area {
    background-color: #ec7aac;
}

.hokkaido_lp .section.sec04 .spot-content.summer .spot-item-area {
    background-color: #f39939;
}

.hokkaido_lp .section.sec04 .spot-content.autumn .spot-item-area {
    background-color: #ec6d56;
}

.hokkaido_lp .section.sec04 .spot-content.winter .spot-item-area {
    background-color: #20aee5;
}

.hokkaido_lp .section.sec04 .label-area {
    gap: 2px;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.hokkaido_lp .section.sec04 .label-area span {
    position: relative;
    width: fit-content;
    font-weight: bold;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.hokkaido_lp .section.sec04 .spot-item-name {
    position: relative;
    align-self: stretch;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: 28px;
}

.hokkaido_lp .section.sec04 .spot-item-name span {
    font-size: 20px;
    font-weight: bold;
}

.hokkaido_lp .section.sec04 .spot-content.spring .spot-item-name {
    color: #ec7aac;
}

.hokkaido_lp .section.sec04 .spot-content.summer .spot-item-name {
    color: #f39939;
}

.hokkaido_lp .section.sec04 .spot-content.autumn .spot-item-name {
    color: #ec6d56;
}

.hokkaido_lp .section.sec04 .spot-content.winter .spot-item-name {
    color: #20aee5;
}


.hokkaido_lp .section.sec04 .spot-item-detail .inner img {
    align-self: stretch;
    width: 100%;
    position: relative;
    height: 180px;
    object-fit: cover;
}

.hokkaido_lp .section.sec04 .spot-item-detail .intro {
    margin-top: 20px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hokkaido_lp .section.sec04 .spot-item-detail .intro .intro-headline {
    position: relative;
    width: fit-content;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 26px;
}

.hokkaido_lp .section.sec04 .spot-item-detail .intro p {
    align-self: stretch;
    color: #333333;
    font-size: 14px;
}

.hokkaido_lp .section.sec04 .spot-content.spring .spot-item-detail .intro .intro-headline {
    color: #ec7aac;
}

.hokkaido_lp .section.sec04 .spot-content.summer .spot-item-detail .intro .intro-headline {
    color: #f39939;
}

.hokkaido_lp .section.sec04 .spot-content.autumn .spot-item-detail .intro .intro-headline {
    color: #ec6d56;
}

.hokkaido_lp .section.sec04 .spot-content.winter .spot-item-detail .intro .intro-headline {
    color: #20aee5;
}

.hokkaido_lp .section.sec04 .spot-item-address {
    border-top: 1px dotted #ddd;
    padding-top: 20px;
    position: relative;
    align-self: stretch;
    color: #333333;
    font-size: 12px;
    line-height: 20px;
}

.hokkaido_lp .section.sec04 .spot-item-migoro {
    display: inline-flex;
    gap: 10px;
    padding: 10px;
    position: relative;
    border-radius: 5px;
    width: 100%;
}

.hokkaido_lp .section.sec04 .spot-item-migoro p {
    text-align: left;
}

.hokkaido_lp .section.sec04 .spot-content.spring .spot-item-migoro {
    background-color: #FFE4F0;
}

.hokkaido_lp .section.sec04 .spot-content.summer .spot-item-migoro {
    background-color: #FFE4DF;
}

.hokkaido_lp .section.sec04 .spot-content.autumn .spot-item-migoro {
    background-color: #FFE4DF;
}

.hokkaido_lp .section.sec04 .spot-content.winter .spot-item-migoro {
    background-color: #D6F4FF;
}



.hokkaido_lp .pagetop {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 15646px;
    left: 1241px;
}

.hokkaido_lp .section.sec04 {
    padding-bottom: 50px;
}

.hokkaido_lp .banner_block {
    margin-bottom: 50px;
}

.hokkaido_lp .banner_block li+li {
    margin-top: 20px;
}

.hokkaido_lp .banner_block a img:hover {
    opacity: .7;
}