@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2025/12/01
 */


/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* 以下は、header,footer追加後の修正 */
#main.main_okeihan {
    margin-top: 0px !important;
    /* ↓headerタグのpositionがfixedのため */
    padding-top: 100px !important;
}

@media only screen and (max-width : 767px) {
    #main.main_okeihan {
        padding-top: 60px !important;
    }
}

.is-pc {
    display: block;
}

.is-sp {
    display: none;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .is-pc {
        display: none;
    }

    .is-sp {
        display: block;
    }
}

@-webkit-keyframes blur {
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes blur {
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

.blur {
    opacity: 0;
    transition: opacity .5s ease-out;
    visibility: visible;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    transform: translateZ(0);
    -webkit-animation-name: blur;
          animation-name: blur;
    -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.is-loading .blur {
    opacity: 1;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}

.lity-active .lity-hidden {
    display: block;
}


.okeihan__main {
    width: 100%;
    overflow: hidden;
    font-family: "BIZ UDPMincho", serif;
}

.okeihan__main p {
    margin: 0;
}

.okeihan__main .okeihan__main--mv {
    width: 100%;
    margin-bottom: 40px;
}

.okeihan__main .okeihan__main--inner {
    width: auto;
    margin: 0 auto;
    height: calc(100vh - 100px);
    /* max-height: 979px; */
    /*height: 979px;*/
    position: relative;
    background: url(../img/main.jpg) center center no-repeat;
    background-size: auto 100%;
    aspect-ratio: 1380 / 979;
}

@media screen and (max-width: 1259px) {
    .okeihan__main .okeihan__main--inner {
        width: 100%;
        height: auto;
    }
}

.okeihan__main .okeihan__main--copy {
    position: absolute;
    /* left: 1.73913%; */
    bottom: 1%;
    z-index: 2;
    line-height: 1;
    font-size: 1px;
    width: 68.84%;
}

.okeihan__main .okeihan__main--mv__text {
    position: absolute;
    left: 1%;
    top: 4%;
    z-index: 2;
    line-height: 1;
    font-size: 1px;
    width: 52.31884%;
    opacity: 0;
    transition: opacity .5s ease-out 1.5s;
}

.okeihan__main.is-loading .okeihan__main--mv__text {
    opacity: 1;
}

.okeihan__main .okeihan__main--mv .okeihan__main--mv__image {
    width: 100%;
    position: relative;
}

.okeihan__main .okeihan__main--mv .okeihan__main--mv__image:before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    content: '';
    background: rgba(255, 0, 0, 0.2);
}

.okeihan__main .okeihan__main--mv .okeihan__main--mv__text p + p {
    margin-top: 20px;
}

.okeihan__main .okeihan__main--mv .okeihan__main--mv__text p {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.okeihan__main.is-loading .okeihan__main--mv .okeihan__main--mv__text p {
    opacity: 1;
}

.okeihan__main .okeihan__main--mv img {
    width: 100%;
}

.okeihan__main .okeihan__main--body {
    max-width: 780px;
    padding: 80px 20px;
    margin: 0 auto;
}

.okeihan__main .okeihan__main--body .okeihan__main--body__item + .okeihan__main--body__item {
    margin-top: 120px;
}

.okeihan__main .okeihan__main--body h2 {
    font-size: 30px;
    line-height: 1.533333333333333;
    margin-bottom: 40px;
    font-weight: 400;
    word-break: keep-all;
    display: flex;
    align-items: center;
    gap: 32px;
}

.okeihan__main .okeihan__main--body h2:before,
.okeihan__main .okeihan__main--body h2:after {
    width: 100%;
    height: 1px;
    background: #231815;
    content: '';
}

.okeihan__message {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
}

.okeihan__message .okeihan__message--title {
    width: 303px;
    text-align: center;
}

.okeihan__message .okeihan__message--title img {
    width: 89px;
}

.okeihan__message .okeihan__message--contents {
    width: 434px;
    font-size: 22px;
    line-height: 2.09;
}

.okeihan__message .okeihan__message--contents p + p {
    margin-top: 2.90em;
}

.okeihan__notes {
    width: 100%;
    background: #AA8E61;
    padding: 16px 24px;
    font-size: 20px;
    line-height: 1.8;
    color: #fff;
    margin-top: 80px;
}

.okeihan__actress {
    display: flex;
    align-items: center;
    gap: 30px;
}

.okeihan__actress .okeihan__actress--image {
    width: 300px;
}

.okeihan__actress .okeihan__actress--image img {
    width: 100%;
}

.okeihan__actress .okeihan__actress--contents {
    width: calc(100% - 330px);
}

.okeihan__actress .actress-name {
    margin-bottom: 48px;
    font-size: 36px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.okeihan__actress .actress-name .actress-name__ruby {
    font-size: 16px;
}

.okeihan__actress .actress-message {
    font-size: 15px;
    line-height: 1.866666666666667;
}

.okeihan__actress .actress-sns {
    margin-top: 32px;
}

.okeihan__actress .actress-sns a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1;
}

.okeihan__actress .actress-sns a:hover {
    text-decoration: underline;
}

.okeihan__actress .actress-sns a img {
    width: 24px;
}

.okeihan__interview {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
}

.okeihan__interview iframe {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.okeihan__poster {
    width: 500px;
    margin: 0 auto;
    position: relative;
}

.okeihan__poster .swiper {
    overflow: visible;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    .okeihan__main .okeihan__main--mv {
        margin-bottom: 30px;
    }

    .okeihan__main .okeihan__main--inner {
        height: 141vw;
        background: url(../img/main_sp.jpg) center center no-repeat;
        background-size: cover;
        aspect-ratio: unset;
        width: 100%;
    }

    .okeihan__main .okeihan__main--copy {
        /* left: 3.8vw;
        bottom: 3.8vw; */
        width: 80.9vw;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text {
        padding: 0 2vw;
        width: 100%;
        left: 0;
        top: 4.28vw;
    }
    /*

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text01 {
        width: 181px;
        transition-delay: .5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text02 {
        width: 313px;
        transition-delay: 1.5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text03 {
        width: 340px;
        transition-delay: 2.5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text04 {
        width: 223px;
        transition-delay: 3.5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text05 {
        width: 215px;
        transition-delay: 4.5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text06 {
        width: 328px;
        transition-delay: 5.5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text07 {
        width: 276px;
        transition-delay: 6.5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text08 {
        width: 267px;
        transition-delay: 7.5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text09 {
        width: 333px;
        transition-delay: 8.5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .text10 {
        width: 155px;
        transition-delay: 9.5s;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .sign {
        width: 100%;
        text-align: right;
        transition-delay: 10.5s;
        margin-top: 0;
    }

    .okeihan__main .okeihan__main--mv .okeihan__main--mv__text .sign img {
        width: 96px;
    }*/

    .okeihan__main .okeihan__main--body {
        padding: 0 20px 100px;
    }

    .okeihan__main .okeihan__main--body .okeihan__main--body__item + .okeihan__main--body__item {
        margin-top: 100px;
    }

    .okeihan__main .okeihan__main--body h2 {
        font-size: 26px;
        line-height: 1.76923;
        margin-bottom: 24px;
        gap: 24px;
    }

    .okeihan__message .okeihan__message--title {
        width: 61px;
    }

    .okeihan__message .okeihan__message--title img {
        width: 100%;
    }

    .okeihan__message .okeihan__message--contents {
        width: calc(100% - 61px);
        font-size: 14px;
        line-height: 2.2857;
        letter-spacing: -.01em;
    }

    .okeihan__message .okeihan__message--contents p + p {
        margin-top: 2.2857em;
    }

    .okeihan__notes {
        padding: 12px;
        font-size: 14px;
        line-height: 1.857142857142857;
        margin-top: 56px;
    }

    .okeihan__actress {
        display: block;
        padding: 0 23px;
    }

    .okeihan__actress .actress-name {
        margin-bottom: 40px;
    }

    .okeihan__actress .okeihan__actress--image {
        width: 100%;
    }

    .okeihan__actress .okeihan__actress--contents {
        width: 100%;
        margin-top: 40px;
    }

    .okeihan__poster {
        width: 255px;
        position: relative;
    }

    .okeihan__poster:before {
        width: 70px;
        height: 70px;
        border-radius: 100%;
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(75%,-50%);
        z-index: 2;
        background: url(../img/move.svg) center center no-repeat;
        background-size: cover;
        pointer-events: none;
        transition: opacity .3s ease;
    }

    .okeihan__poster.no-icon:before {
        opacity: 0;
    }
}

.okeihan-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: rgba(35,24,21,.7);
    z-index: 1000;
    cursor: pointer
}

.modal {
    display: none;
    opacity: 0;
    position: absolute;
    left: 50%;
    z-index: 1001
}

.modal-close-button {
    display: none;
    position: absolute
}

.modal-close-button a {
    cursor: pointer;
    -webkit-transition: opacity 200ms;
    -moz-transition: opacity 200ms;
    -ms-transition: opacity 200ms;
    -o-transition: opacity 200ms;
    transition: opacity 200ms
}

.modal-close-button a:hover {
    opacity: .9
}

.modal-close-button img {
    width: 100%;
    height: auto
}

.loader,.loader:after {
    border-radius: 50%;
    width: 5em;
    height: 5em
}

.loader {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -2.5em 0 0 -2.5em;
    font-size: 10px;
    text-indent: -9999em;
    border-top: .3em solid rgba(255,255,255,.2);
    border-right: .3em solid rgba(255,255,255,.2);
    border-bottom: .3em solid rgba(255,255,255,.2);
    border-left: .3em solid #fff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.2s infinite linear;
    animation: load8 1.2s infinite linear
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}



@media screen and (min-width: 768px) {
    .modal-close-button {
        top: -21px;
        right: -21px;
        width: 41px;
        height: 41px
    }
}


@media screen and (max-width: 767px) {
    .modal-close-button {
        top: -10px;
        right: -10px;
        width: 20px;
        height: 20px;
    }
}





