@charset "UTF-8";

/*================================================================
# mv
================================================================ */
.kv {
    height: auto;
    margin: 0 0 0 auto;
    padding: 0;
    position: relative;
}

.kv::before {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
}

.kv h1 {
    margin: auto;
    position: absolute;
    top: 55%;
    right: 0;
    left: 0;
    text-align: center;
    z-index: 2;
    transform: translateY(-50%);
}

.kv .title-en {
    opacity: 0.5;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.5em;
}

.kv .title-jp {
    font-size: 3.2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.1em;
}

.kv .kv__img {
    height: 40rem;
    position: relative;
}

.kv .kv__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kv .kv__period {
    width: 100%;
    padding: 0.8rem 2.4rem;
    background-color: var(--black);
    position: absolute;
    bottom: 0;
    left: 10%;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}

/*================================================================
#lead
================================================================ */
.lead {
    width: 84%;
    margin: auto;
    padding: 6.4rem 0 4rem;
    letter-spacing: 0.1em;
}

.lead .title {
    font-size: 2.4rem;
}

.lead .title span {
    font-size: 1.8rem;
}

.lead .text {
    margin: 2.4rem 0 0 4rem;
    font-size: 1.4rem;
    line-height: 2;
}

/*================================================================
#spring-plan
================================================================ */
.spring-plan {
    margin: 4rem auto 0;
    padding: 0;
}

.spring-plan ul {
    list-style: none;
}

.unit+.unit {
    margin: 6.4rem 0 0;
}

.unit .container .right {
    padding: 4rem;
}

.unit .right .label {
    padding: 0.4rem 1.6rem;
    border: 1px solid var(--gold);
    display: inline-block;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.unit .right .plan-name {
    margin: 0.8rem 0 0;
    font-size: 3.8rem;
    letter-spacing: 0.1em;
}

.unit .right .plan-name span {
    margin: 0 0.8rem 0 0;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
}

.unit .right .plan-name h1[data-ruby] {
    position: relative;
    display: inline;
    font-size: 4rem;
    font-weight: 400;
}

.unit .right .plan-name h1[data-ruby]::before {
    margin: auto;
    position: absolute;
    content: attr(data-ruby);
    top: -1rem;
    right: 0;
    left: 0;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: .3em;
}

.unit .right .plan-description {
    margin: 1.6rem 0 0;
    line-height: 2;
}

.unit .right .plan-box {
    margin: 4rem 0 0;
}

.unit .right .plan-box dl {
    margin: 2.4rem 0 0;
    display: flex;
    align-items: center;
}

.unit .right .plan-box dt {
    font-size: 1.8rem;
}

.unit .right .plan-box dd {
    margin: 0 0 0 0.8rem;
}

.unit .right .plan-box .price {
    margin: 1.6rem 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.unit .right .plan-box .price span {
    margin: 0 0.8rem;
}

.unit .right .plan-box .price .num {
    margin: 0;
    font-size: 2.8rem;
    line-height: 1;
}

.unit .right .plan-box .note {
    margin: 1.6rem 0 0;
    padding-left: 1em;
    opacity: 0.7;
    font-size: 1rem;
    text-indent: -1em;
}

.unit .right .plan-box .note li::before {
    content: "※";
}

.unit .right .plan-box .btn-wrap {
    margin: 2.4rem 0 0;
    display: flex;
    justify-content: center;
}

.unit .right .plan-box .btn-wrap .btn {
    width: 40rem;
    margin: auto;
    padding: 2.4rem 4rem 2.4rem 2rem;
    background-color: #d7799d;
    position: relative;
    color: #fff;
    text-align: center;
    transition: background-color 0.45s;
}

.unit .right .plan-box .btn-wrap .btn::after {
    width: 5rem;
    height: 0.6rem;
    opacity: 0.5;
    background: url(../common/img/icon_arrow.svg) no-repeat center/cover;
    position: absolute;
    content: "";
    top: 50%;
    right: 3.2rem;
    display: inline-block;
    transition: right 0.6s ease;
    transform: translateY(-50%);
}

.unit .right .plan-box .btn-wrap .btn:hover {
    background: #ae5074;
}

.unit .right .plan-box .btn-wrap .btn:hover::after {
    right: 1.6rem;
}