@charset "UTF-8";

/********************
 プレゼント詳細
 *********************/

 /* KV
--------------------*/
.present .kv {
    position: relative;
    background-color: #FAFAFA;
    z-index: 0;
}
.present .kv .kv__bg--top {
    position: absolute;
    width: 100%;
    height: 172px;
    background-image: url(../img/present/kv-bg-arch.png);
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: -1;
}
.present .kv .kv__head {
    padding-top: 80px;
}
.present .kv .kv__head .label {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.present .kv .kv__head .label .label__new,
.present .kv .kv__head .label .label__end {
    background: #C7000D;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: 'CezanneProN', sans-serif;
    letter-spacing: 0.05em;
    padding: 1px 13px;
    border-radius: 5px;
}
.present .kv .kv__head .label .label__end {
    background: #A0A4A9;
}
.present .kv .kv__head .label .winners {
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    height: 33px;
    background-color: #415372;
    font-size: 13px;
    font-weight: 500;
    font-family: 'CezanneProN', sans-serif;
    color: #FFF;
    border-radius: 5px;
    letter-spacing: 0.05em;
}
.present .kv .kv__head .label .winners img {
    margin-right: 5px;
    width: 14px;
    height: 16px;
}
.present .kv .kv__head .label .winners span {
    font-size: 18px;
    font-weight: bold;
    padding-right: 2px;
    padding-bottom: 1px;
}
.present .kv .kv__head .title {
    margin-bottom: 10px;
    font-size: 34px;
    font-weight: bold;
    font-family: 'CezanneProN', sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
.present .kv .kv__head .meta {
    display: flex;
    justify-content: space-between;
}
.present .kv .kv__head .provider {
    font-size: 15px;
    font-weight: 500;
}
.present .kv .kv__head .share {
    display: flex;
    gap: 10px;
}
.present .kv .kv__head .share .share--fb img,
.present .kv .kv__head .share .share--x img {
    height: 20px;
}
@media screen and (max-width:639px) {
    .present .kv .kv__bg--top {
        height: 55px;
        background-image: url(../img/present/kv-bg-arch_sp.png);
    }
    .present .kv .kv__head {
        padding-top: 10.66vw;
    }
    .present .kv .kv__head .title {
        margin-bottom: 2.66vw;
        font-size: 7.2vw;
    }
    .present .kv .kv__head .meta {
        flex-direction: column;
        gap: 5.33vw;
    }
    .present .kv .kv__head .provider {
        font-size: 4vw;
    }
    .present .kv .kv__head .share .share--fb img,
    .present .kv .kv__head .share .share--x img {
        height: 5.33vw;
    }
}


/* section01
--------------------*/
.present .section01 {
    background: #FAFAFA;
    margin-bottom: 8px;
    padding-bottom: 80px;
}
.present .section01 .post__content {
    padding-top: 60px;
}
@media screen and (max-width:639px) {
    .present .section01 {
        padding-bottom: 10.66vw;
    }
    .present .section01 .post__content {
        padding-top: 10.66vw;
    }
}

/* present__image */
.present .section01 .present__image {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 30px;
    width: 100%;
}
.present .section01 .present__image .slider {
    position: relative;
    width: 720px;
}
.present .section01 .present__image .slider .slick-img {
    height: 480px;
}
.present .section01 .present__image .slider .slick-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.present .section01 .present__image .thumbnail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 230px;
}
.present .section01 .present__image .thumbnail li {
    height: 153px;
}
.present .section01 .present__image .thumbnail li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.present .section01 .present__image .thumbnail li.active img {
    filter: brightness(0.8);
}
.present .section01 .present__image .slick-arrow {
    background: none;
    border: none;
    font-size: 0;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
}
.present .section01 .present__image .slick-prev {
    left: 12px;
    background: url(../img/present/slide-arrow-left.png) no-repeat;
    background-size: contain;
}
.present .section01 .present__image .slick-next {
    right: 12px;
    background: url(../img/present/slide-arrow-right.png) no-repeat;
    background-size: contain;
}
@media only screen and (min-width:640px) and (max-width:1080px) {
    .present .section01 .present__image {
        flex-direction: column;
    }
    .present .section01 .present__image .slider {
        width: 100%;
        margin-bottom: 10px;
    }
    .present .section01 .present__image .thumbnail {
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }
    .present .section01 .present__image .thumbnail li {
        width: calc((100% - 20px) / 3);
    }
}
@media screen and (max-width:639px) {
    .present .section01 .present__image {
        flex-direction: column;
        margin: 0 auto 8vw;
    }
    .present .section01 .present__image .slider {
        width: 100%;
        margin-bottom: 2.66vw;
    }
    .present .section01 .present__image .slider .slick-img {
        height: 61.3vw;
    }
    .present .section01 .present__image .thumbnail {
        flex-direction: row;
        width: 100%;
    }
    .present .section01 .present__image .thumbnail li {
        width: 29.6vw;
        height: 19.7333vw;
    }
}

/* present__wrap */
.present .section01 .present__lead {
    margin-bottom: 60px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}
.present .section01 .present__wrap {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}
.present .section01 .present__info {
    width: 620px;
    padding: 30px;
    border: 1px solid #35719B;
    border-radius: 10px;
    box-sizing: border-box;
}
.present .section01 .present__info h3,
.present .section01 .present__site h3,
.present .section01 .present__textbox h3 {
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'CezanneProN', sans-serif;
    color:#35719B;
    line-height: 1.5;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #35719B;
}
.present .section01 .present__info dl {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
}
.present .section01 .present__info dt {
    position: relative;
    width: 23.5%;
    padding: 5px 0 5px 18px;
    font-size: 15px;
    font-weight: bold;
    border-bottom: solid 1px #CACACA;
    box-sizing: border-box;
}
.present .section01 .present__info dt:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #6EBCA9;
    border-radius: 3px;
    transform: translateY(-50%);
}
.present .section01 .present__info dd {
    width: 76.5%;
    padding: 5px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: solid 1px #CACACA;
}
.present .section01 .present__site {
    width: 310px;
    padding: 30px;
    border: 1px solid #35719B;
    border-radius: 10px;
    box-sizing: border-box;
}
.present .section01 .present__site a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    height: 40px;
    border: 3px solid #35719B;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
}
.present .section01 .present__site a:last-of-type {
    margin-bottom: 0;
}
.present .section01 .present__site a p {
    font-size: 15px;
    font-weight: bold;
    color: #35719B;
}
.present .section01 .present__site a img {
    width: 18.5px;
    height: 12px;
}
@media only screen and (min-width:640px) and (max-width:1080px) {
    .present .section01 .present__info {
        width: 65%;
        padding: 20px;
    }

    .present .section01 .present__site {
        width: 35%;
        padding: 20px;
    }
    .present .section01 .present__info dt {
        width: 30%;
    }
    .present .section01 .present__info dt:before {
        top: 0.7857em;
        transform: unset;
    }
    .present .section01 .present__info dd {
        width: 70%;
    }
}
@media screen and (max-width:639px) {
    .present .section01 .present__lead {
        margin-bottom: 10.66vw;
        font-size: 4.266vw;
    }
    .present .section01 .present__wrap {
        flex-direction: column;
        gap: 5.33vw;
        margin-bottom: 10.66vw;
    }
    .present .section01 .present__info {
        width: 100%;
        padding: 6.66vw;
    }
    .present .section01 .present__info h3,
    .present .section01 .present__site h3,
    .present .section01 .present__textbox h3 {
        padding-bottom: 2.66vw;
        margin-bottom: 5.33vw;
        font-size: 4.266vw;
    }
    .present .section01 .present__info dt {
        width: 45%;
        font-size: 3.733vw;
    }
    .present .section01 .present__info dt:before {
        top: 0.7857em;
        transform: unset;
    }
    .present .section01 .present__info dd {
        width: 55%;
        font-size: 3.733vw;
    }
    .present .section01 .present__site {
        width: 100%;
        padding: 6.66vw;
    }
    .present .section01 .present__site a {
        margin-bottom: 5.33vw;
        width: 100%;
        height: 10.66vw;
    }
    .present .section01 .present__site a p {
        font-size: 4vw;
    }
    .present .section01 .present__site a img {
        width: 4.933vw;
        height: 3.2vw;
    }
}

/* present__textbox */
.present .section01 .present__textbox {
    margin-bottom: 60px;
}
.present .section01 .present__textbox h3 {
    margin-bottom: 20px;
}
.present .section01 .present__textbox .present__description p {
    padding-bottom: 1em;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}
.present .section01 .present__textbox .present__description p:last-of-type {
    padding-bottom: 0;
}
.present .section01 .present__textbox .present__description a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media screen and (max-width:639px) {
    .present .section01 .present__textbox {
        margin-bottom: 10.66vw;
    }
    .present .section01 .present__textbox h3 {
        margin-bottom: 5.33vw
    }
    .present .section01 .present__textbox .present__description {
        margin-bottom: 5.33vw;
        max-height: 33.33vw;
        overflow: hidden;
    }
    .present .section01 .present__textbox .present__description.opened {
        max-height: none;
    }
    .present .section01 .present__textbox .present__description p {
        font-size: 4.266vw;
        line-height: 1.81;
    }
}

/* present__notice */
.present .section01 .present__notice {
    margin-bottom: 60px;
    border-radius: 10px;
}
.present .section01 .present__notice h4 {
    padding: 15px 0;
    background: #248E72;
    font-size: 16px;
    font-weight: bold;
    font-family: 'CezanneProN', sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.5;
    border-radius: 10px 10px 0 0;
    text-align: center;
    color: #FFF;
}
.present .section01 .present__notice .notice__text {
    padding: 40px 60px;
    background: #FFF;
    border-radius: 0 0 10px 10px;
}
.present .section01 .present__notice .notice__text p {
    padding-bottom: 1em;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}
.present .section01 .present__notice .notice__text p:last-of-type {
    padding-bottom: 0;
}
.present .section01 .present__notice .notice__text a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media screen and (max-width:639px) {
    .present .section01 .present__notice {
        margin-bottom: 10.66vw;
    }
    .present .section01 .present__notice h4 {
        padding: 4vw 0;
        font-size: 4.266vw;
    }
    .present .section01 .present__notice .notice__text {
        padding: 6.66vw;
    }
    .present .section01 .present__notice .notice__text--inner {
        margin-bottom: 5.33vw;
        max-height: 21.6vw;
        overflow: hidden;
    }
    .present .section01 .present__notice .notice__text--inner.opened {
        max-height: none;
    }
    .present .section01 .present__notice .notice__text p {
        font-size: 4vw;
    }
    .present .section01 .present__textbox .more__desc,
    .present .section01 .present__notice .more__notice {
        position: relative;
        margin: 0 auto;
        padding-right: 20px;
        background: none;
        border: none;
        font-size: 4.26vw;
        font-weight: bold;
        font-family: 'CezanneProN', sans-serif;
        letter-spacing: 0.05em;
        line-height: 1.5;
        color: #415372;
        text-align: center;
    }
    .present .section01 .present__textbox .more__desc:before,
    .present .section01 .present__notice .more__notice:before {
        content: "";
        position: absolute;
        width: 12px;
        height: 2px;
        background: #415372;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .present .section01 .present__textbox .more__desc:after,
    .present .section01 .present__notice .more__notice:after {
        content: "";
        position: absolute;
        width: 2px;
        height: 12px;
        background: #415372;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
    }
    .present .section01 .present__textbox .more__desc.opened:before,
    .present .section01 .present__textbox .more__desc.opened:after,
    .present .section01 .present__notice .more__notice.opened:before,
    .present .section01 .present__notice .more__notice.opened:after {
        transform: translateY(-50%) rotate(45deg);
    }
}

/* present__btn */
.present .section01 .present__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.present .section01 .present__btn--apply,
.present .section01 .present__btn--close {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 14px 0;
    width: 470px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    border: 3px solid #C7000D;
    border-radius: 10px;
    text-align: center;
    color: #C7000D;
    box-sizing: border-box;
}
.present .section01 .present__btn--close {
    margin-bottom: 60px;
    border: 3px solid #A0A4A9;
    color: #A0A4A9;
}
.present .section01 .present__btn--apply:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 20px;
    width: 14px;
    height: 14px;
    border-top: solid 3px #C7000D;
    border-right: solid 3px #C7000D;
    transform: translateY(-50%) rotate(45deg);
}
.present .section01 .present__btn--other {
    position: relative;
    display: inline-block;
    padding: 7px 0;
    width: 330px;
    font-size: 15px;
    font-weight: bold;
    border: 3px solid #35719B;
    border-radius: 10px;
    text-align: center;
    color: #35719B;
    box-sizing: border-box;
}
.present .section01 .present__btn--other:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 13px;
    width: 10px;
    height: 10px;
    border-top: solid 3px #35719B;
    border-left: solid 3px #35719B;
    transform: translateY(-50%) rotate(-45deg);
}
.present .section01 .present__btn--text {
    margin-bottom: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}
.present .section01 .present__btn--text a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media screen and (max-width:639px) {
    .present .section01 .present__btn--apply,
    .present .section01 .present__btn--close {
        margin-bottom: 8vw;
        padding: 3.733vw 0;
        width: 100%;
        font-size: 4.8vw;
    }
    .present .section01 .present__btn--close {
        margin-bottom: 10.66vw;
    }
    .present .section01 .present__btn--apply:after {
        width: 3.2vw;
        height: 3.2vw;
    }
    .present .section01 .present__btn--other {
        padding: 1.86vw 0;
        width: 95.6%;
        font-size: 4vw;
    }
    .present .section01 .present__btn--other:before {
        width: 2.66vw;
        height: 2.66vw;
    }
    .present .section01 .present__btn--text {
        margin-bottom: 10.66vw;
        font-size: 4.26vw;
        text-align: center;
    }
}


