@charset 'utf-8';
.navigation-wrap {
    position: relative;
    z-index: 2;
}
.navigation-item {
    position: relative;
    margin-right: 12px;
    padding: 0 12px;
}
.navigation-parent {
    color: #fff;
    display: inline-block;
    margin-right: 24px;
    font-size: 16px;
    padding: 16px 0;
}
.navigation-body {
    justify-content: center;
}
@media(max-width:1200px){
    .navigation-body {
        width: 600px;
    }
}
.childnav-list {
    position: absolute;
    max-height: 0px;
    overflow: hidden;
    top: 100%;
    left: 0;
    width: 120px;
    pointer-events: none;
    background-color: #000;
    transition: all ease-out .2s;
    color: #fff;
    z-index: 999;
}
.navigation-item:hover .childnav-list {
    max-height: 500px;
    pointer-events: all;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.childnav-item {
    background: #cdad4d;
    transition: all ease-out .2s;
}
.childnav-item:hover {
    background: #333;
}
.childnav-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.childnav-item>a {
    display: block;
    color: #fff;
    font-size: 16px;
    padding: 12px;
}
.js-sortOpen {
    display: none;
}
.sort-wrap {
    padding: 10px 0 4px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    font-size: 0;
    background: #dfedfc;
}
.prefname {
    display: block;
    margin-right: 14px;
    font-size: 14px;
}
.prefname>._large {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}
.sortButton-wrap {
    margin-right: 18px;
    line-height: 24px;
    font-size: 0;
}
.sortButton-headding {
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
}
.sortButton {
    background: rgba(0,0,0,0.1);
    padding: 3px 8px;
    margin: 0 2px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: all ease-out .2s;
}
.sortButton:hover,
.sortButton._current {
    background: #666;
    color: #fff;
}
.js-closeNavigation {
    display: none;
}
.buttonbox{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    margin: 15px auto 0;
}
.detail-button {
    width: 58%;
    display: inline-block;
}
.detail-button .button {
    background: linear-gradient(135deg, #3c7ecf, #D5C542);
    color: #fff;
}
.detail-button .button span {
    color: #cdad4d;
    font-size: 20px;
}
.shopdetail-button {
    width: 37%;
    display: inline-block;
}
.shopdetail-button .button {
    background: #fff;
    color: #cdad4d;
    border: 1px solid #cdad4d;
}
@media(max-width:768px){
    #global-navbox{
    background: rgba(0,0,0,0.5);
    padding: 5px 0;
    }
    .navigation-wrap {
        text-align: center;
        box-sizing: border-box;
        width: 96%;
        margin: 0 auto;
        border-radius: 2px;
	border-bottom: 5px solid #a7882b;
    }
    .navigation-wrap:before {
        content: "都道府県を選択する";
        font-size: 18px;
        color: #fff;
        padding: 12px 8px;
        display: inline-block;
    }
    .js-closeNavigation {
        display: block;
        position: fixed;
        right: 8px;
        top: 8px;
        color: #fff;
        font-size: 28px;
        padding: 6px;
        cursor: pointer;
    }
    .navigation-item {
        position: relative;
        border-bottom: 1px solid rgba(255,255,255,0.5);
        text-align: left;
        margin: 0;
        padding: 0;
        pointer-events: all;
        cursor: pointer;
    }
    .navigation-parent {
        color: #fff;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
        margin-right: 0;
        font-size: 16px;
        padding: 16px 12px;
        pointer-events: none;
    }
    .navigation-item:first-child>.navigation-parent {
        pointer-events: all;
    }
    .navigation-body {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        text-align: left;
        background: #000;
        width: 100%;
        height: 0%;
        transition: all ease-out .4s;
    }

    .navigation-body._active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        padding-top: 64px;
        text-align: left;
        background: #000;
        width: 100%;
        height: 100%;
    }

    .navigation-parent {
        color: #fff;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
        margin-right: 0;
        font-size: 14px;
        padding: 12px;
        pointer-events: none;
    }
    .navigation-item:nth-child(2)>a {
        pointer-events: all;
    }
    .childnav-list {
        display: flex;
        flex-wrap: wrap;
        max-height: 0px;
        overflow: hidden;
        top: 100%;
        left: 0;
        width: 100%;
        pointer-events: none;
        background-color: #000;
        transition: all ease-out .2s;
        color: #fff;
        position: relative;
    }
    .childnav-list._active {
        max-height: 500px;
        pointer-events: all;
        box-shadow: 0 2px 16px rgba(0,0,0,0.5);
    }
    .childnav-item {
        background: #000;
        transition: all ease-out .2s;
        width: 50%;
    }
    .childnav-item:first-child {
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    .childnav-item:nth-child(2) {
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    .childnav-item:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .childnav-item>a {
        display: block;
        color: #fff;
        font-size: 14px;
        padding: 10px 20px;
    }
    .sort-body {
        box-sizing: border-box;
        padding-bottom: 4px;
    }
    .sort-wrap {
        padding: 10px 0 0;
        border-bottom: none;
    }
    .js-sortOpen {
        display: inline-block;
        position: absolute;
        top: -2px;
        right: 8px;
        font-size: 14px;
        padding: 6px 12px;
        background: #333;
        font-weight: bold;
        color: #fff;
    }
    .sortButton-wrap {
        margin-right: 0;
        padding:0;
        max-height: 0;
        overflow: hidden;
        border-bottom: none;
        pointer-events: none;
    }
    .sortButton-wrap._active {
        margin-right: 0;
        padding: 8px 8px 2px;
        max-height: 100px;
        overflow: hidden;
        border-bottom: 1px solid rgba(0,0,0,0.2);
        pointer-events: all;
    }
    .sortButton-wrap:first-of-type {
        border-bottom: none;
    }
    .sortButton-wrap:last-of-type {
        padding-top: 0;
    }
    .sortButton-headding {
        display: block;
    }
    .sortButton {
        margin-bottom: 8px;
    }
    .prefname {
        display: block;
        padding: 0 8px 5px 8px;
        margin-right: 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }
    .prefname>._large {
        font-size: 22px;
        line-height: 24px;
        font-weight: bold;
    }
}


.catch-box {
    padding: 16px 16px 4px 16px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.2);
}
.catch-text {
    width: 1280px;
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
}
.catch-text b { font-weight: bold; font-size: 1.2em;}

.postList-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
    background: #dfedfc;
}
.postList-item {
    max-width: 49%;
    width: 630px;
    padding: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.post-header {
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
}
.title {
    width: 100%;
    padding: 3px 0;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}
.info-text {
    display: block;
    font-size: 11px;
}
.info-text:first-child {
    margin-bottom 3px 0;
}
.post-body {
    display: flex;
}

.image-wrap {
    width: 100px;
    height: 100px;
    margin-right: 12px;
    box-sizing: border-box;
}
.image-wrap>img {
    display: block;
    width: 100%;
    height: auto;
}

.detail-wrap {
    width: calc(100% - 111px);
}
.detail-wrap {
    width: calc(100% - 111px);
}
.course_name {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: bold;
}
.coupon {
    margin-bottom: 6px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    white-space: nowrap;
}
.coupon ._small {
    font-size: 0.75em;
}
.attention {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.25;
}
.button {
    display: block;
    border-radius: 5px;
    width: 100%;
    margin: 0 auto;
    font-weight: bold;
    line-height: 46px;
    text-align: center;
    font-size: min(calc(100vw / 64),16px);
}
.l-header-pic{
    width: 120px;
}
.l-header-nenreicheck {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media(max-width:768px){
    .catch-box {
        padding: 10px 8px 0px;
        box-sizing: border-box;
        background: rgba(255,255,255,0.2);
    }
    .catch-text {
        width: 100%;
        margin: 0 auto;
        font-size: 12px;
        line-height: 1.2;
        text-align: left;
    }

    .postList-body {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        padding-top: 0;
    }
    .postList-item {
        max-width: 94%;
        width: 94%;
        padding: 9px 8px;
        margin: 5px auto;
        box-sizing: border-box;
    }
    .post-header {
        display: flex;
        justify-content: ;
        flex-direction: column;
        margin: 4px 0 8px 0;
        padding-bottom: 8px;
    }
    .title {
        width: 100%;
        padding-top: 0;
        font-size: 16px;
        font-weight: bold;
        line-height: 1;
    }
    .info-text {
        display: inline-block;
        text-align: right;
        font-size: 11px;
    }
    .info-text:first-child {
        margin-bottom: 0;
    }
    .post-body {
        display: block;
        min-height: 72px;
    }
    .image-wrap {
        position: absolute;
        width: 64px;
        height: 64px;
        margin-right: 0;
        box-sizing: border-box;
    }
    .image-wrap>img {
        display: block;
        width: 100%;
        height: auto;
    }
    .detail-wrap {
        width: 100%;
    }
    .course_name {
        display: inline-block;
        margin-top: 4px;
        margin-bottom: 4px;
        font-size: 18px;
        font-weight: bold;
        padding-left: 74px;
    }
    .coupon {
        margin-bottom: 24px;
        text-align: left;
        font-size: 23px;
        font-weight: bold;
        white-space: nowrap;
        padding-left: 74px;
    }
    .coupon ._small {
        font-size: 0.75em;
    }
    .attention {
        padding: 0 5px;
        margin-bottom: 10px;
        margin-left: 67px;
        font-size: 12px;
        line-height: 1.25;
    }
    .buttonbox {
        max-width: 100%;
        margin-top: 0;
    }
    .detail-button {
        width: 100%;
        display: block;
    }
    .shopdetail-button {
        width: 100%;
        display: block;
    }
    .button {
        display: block;
        border-radius: 5px;
        width: 94%;
        margin-left: 0;
        margin: 4px auto;
        font-weight: bold;
        line-height: 40px;
        text-align: center;
        font-size: 15px;
    }
    .l-header-pic {
        width: 120px;
    }
    .l-header-nenreicheck {
        display: none;
    }
}
@media(max-width:359px){
    .image-wrap {
        position: absolute;
        width: 48px;
        height: 48px;
        margin-right: 0;
        box-sizing: border-box;
    }
    .course_name {
        display: inline-block;
        margin-top: 4px;
        margin-bottom: 4px;
        font-size: 16px;
        font-weight: bold;
        padding-left: 54px;
    }
    .coupon {
        margin-bottom: 12px;
        text-align: left;
        font-size: 20px;
        font-weight: bold;
        white-space: nowrap;
        padding-left: 54px;
    }

}


.pager {
    width: 100%;
    text-align: center;
}
.page-numbers {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0 4px;
    line-height: 32px;
    border-radius: 100%;
    box-sizing: border-box;
}

.copy {
    padding-top: 30px;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.pagetop-btn {
    position: fixed;
    right: 20px;
    bottom: -100px;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    line-height: 40px;
    text-align: center;
    z-index: 1;
    background: rgba(201, 162, 103,0.8);
    color: #fff;
}
div#infscr-loading {
    display: block;
    width: 100%;
    text-align: center;
}
.l-header-assets {
    background: #fff;
    font-size: 12px;
    text-align: center;
}

.head-link {
    color: #000;
    margin-left:4px;
}
.l-heder-text {
    margin-left: 8px;
    color: #000000;
}
.attention-notice {
    margin-top: 8px;
    font-size: 14px;
    background: rgba(0, 0, 0, 10%);
    padding: 8px;
    line-height: 1.25em;
}