@charset "UTF-8";
/* CSS Document */
.main {
    background-color: #fafaf7;
    margin: 0 auto;
}

/* トップ告知表示時 
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}
.modal.is-open {
    display: grid;
    place-items: center;
    padding: 1rem;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 85%;
    max-width: 680px;
    max-height: 90vh;
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    overflow-y: auto;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.25s ease;
}
.modal-content h4 {
    text-align: center;
}
.modal-content p {
    padding: 20px 0px 0px 0px;
    text-align: center;
}
.close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #374151;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}
.close:hover,
.close:focus {
    background: #f3f4f6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slideshow {
    position: relative;
    margin-top: 12px;
}
.slides {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: transparent;
    opacity: 0;
    transition: opacity 0.45s ease;
}
.slide.is-active {
    opacity: 1;
    position: relative;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: grid;
    place-items: center;
    z-index: 10;
}
.nav:hover,
.nav:focus {
    background: rgba(0, 0, 0, 0.6);
}
.nav.prev {
    left: 8px;
}
.nav.next {
    right: 8px;
}

.dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 8px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #e5e7eb;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.dot.is-active {
    background: #111;
    transform: scale(1.15);
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 16px;
} */

/* --------- レスポンシブ対応 --------- */
/* .modal-content {
    padding: 14px;
    border-radius: 8px;
}
.slide {
    max-height: 45vh;
}
.nav {
    width: 28px;
    height: 28px;
    font-size: 14px;
}
.nav.prev {
    left: -15px; 
}*/ 
/* スマホでは矢印を外側へ */
/* .nav.next {
    right: -15px;}  */
/* スマホでは矢印を外側へ */
/* .modal-content h4 {
    font-size: 1.6rem;
}
.modal-content p {
    font-size: 1.4rem;
}
.close {
    width: 32px;
    height: 32px;
    font-size: 18px;
}

@media (min-width: 760px) {
    .modal-content {
        padding: 16px;
        width: 70%;
        max-width: 700px;
    }
    .modal-content h4 {
        font-size: 2rem;
    }
    .modal-content p {
        font-size: 1.6rem;
    }
    .slide {
        max-height: 60vh;
    }
    .nav {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
} */

.section-top {
    position: relative;
    width: 100%;
    height: 506px;
    background: #000000;
    text-align: center;
}
.section-top::after {
    position: absolute;
    content: "";
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: #000;
}
.top-wrapper {
    position: relative;
}
.section-top h1 {
    position: absolute;
    display: inline-block;
    /*color: #fafaf7;*/
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    font-size: 5.5rem;
    line-height: 5.2rem;
    font-weight: 500;
    text-align: left;
    z-index: 999;
    /*text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.3);*/
    top: 74px;
    left: 24px;
    background-image: linear-gradient(
        70deg,
        rgb(255, 255, 255) 45%,
        /*--アニメーション後の文字色--*/ rgb(232, 250, 254),
        /*--アニメーション中の文字色--*/ rgb(255, 255, 255) 55% /*--アニメーション前の文字色--*/
    );
    background-size: 500% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 3s infinite; /*--アニメーションの速さ,infinite--*/
}
@keyframes shine {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.top-slider-wrapper {
    position: absolute;
    max-width: 759px;
    min-width: 321px;
    height: 462px;
    top: 44px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 0;
}
#top-slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vegas-animation-kenburns {
    animation: kenburns ease-out;
}

@keyframes kenburns {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (min-width: 760px) {
    .section-top {
        height: 90vh;
        min-height: 581px;
        padding: 0 100px;
        box-sizing: border-box;
    }
    .top-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }
    .section-top h1 {
        font-size: 7.8rem;
        line-height: 7.8rem;
        font-weight: 600;
        top: 104px;
        margin: 0 auto 0 0;
    }
    .top-slider-wrapper {
        /* min-width: 600px;
        height: 517px;*/
        max-width: 800px;
        height: calc(90vh - 64px);
        min-height: 517px;
        top: 64px;
        margin: 0 0 0 auto;
    }
    #top-slider {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.section-works {
    background: url(../images/works-bg.jpg);
    background-position: center top;
    width: 100%;
    background-size: cover;
    background-repeat: repeat;
}
.works-h-wrapper {
    color: #fafaf7;
    background: #000;
    width: 100%;
    height: 32px;
    background: transparent;
    padding-top: 50px;
    margin-top: -50px;
}
.section-works h2 {
    display: block;
    z-index: 99;
    mix-blend-mode: difference;
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 5rem;
    text-align: center;
    top: -2px;
    left: 0;
    right: 0;
}
.works-loop-wrapper {
    padding: 16px 0 67px;
    overflow: hidden;
}
.works-loop-box {
    display: flex;
}
.works-loop-box p {
    font-size: 1.4rem;
    font-weight: 600;
    white-space: nowrap;
    color: #c6c6c6;
}
.works-loop-box p:nth-child(odd) {
    animation: loop 40s -20s linear infinite;
}
.works-loop-box p:nth-child(even) {
    animation: loop2 40s linear infinite;
}
@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}
.works-flex-container div {
    display: flex;
    flex-direction: column;
}
.websites,
.graphics,
.drawings,
.paintings,
.photos,
.others {
    position: relative;
    max-width: 332px;
    margin: 0 auto;
}
.websites a,
.graphics a,
.drawings a,
.paintings a,
.photos a,
.others a {
}
.websites-contents,
.graphics-contents,
.drawings-contents,
.paintings-contents,
.photos-contents,
.others-contents {
    max-width: 332px;
    height: 378px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto 80px;
}
.websites img,
.graphics img,
.drawings img,
.paintings img,
.photos img,
.others img {
    transition: 0.6s all;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.websites:hover img,
.graphics:hover img,
.drawings:hover img,
.paintings:hover img,
.photos:hover img,
.others:hover img {
    transform: scale(1.1, 1.1);
}
.websites h3,
.graphics h3,
.drawings h3,
.paintings h3,
.photos h3,
.others h3 {
    position: absolute;
    max-width: 332px;
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 3.6rem;
    text-align: left;
    top: 378px;
    right: 0;
    left: 0;
    margin: 0 auto;
    color: #abaaaa;
    text-shadow: -2px -2px 3px rgba(255, 255, 255, 0.6);
}
.websites:hover::before,
.graphics:hover::before,
.drawings:hover::before,
.paintings:hover::before,
.photos:hover::before,
.others:hover::before {
    position: absolute;
    display: inline-block;
    content: "";
    max-width: 160px;
    border-bottom: solid 3px #abaaaa;
    top: 400px;
    right: -23px;
    left: 0;
    margin: 0 0 0 auto;
    overflow: visible;
}
.websites:hover::after,
.graphics:hover::after,
.drawings:hover::after,
.paintings:hover::after,
.photos:hover::after,
.others:hover::after {
    position: absolute;
    display: inline-block;
    content: "";
    border-left: solid 3px #abaaaa;
    height: 107px;
    top: 293px;
    right: -23px;
    margin: 0 0 0 auto;
    overflow: visible;
}
.websites:hover h3,
.graphics:hover h3,
.drawings:hover h3,
.paintings:hover h3,
.photos:hover h3,
.others:hover h3 {
    color: #000;
    top: 375px;
}
@media (min-width: 760px) {
    .section-works {
        padding: 0 100px 82px;
        box-sizing: border-box;
    }
    .works-h-wrapper {
        height: 36px;
        max-width: 1200px;
        margin: -70px auto 0;
        padding-top: 70px;
    }
    .section-works h2 {
        font-weight: 500;
        font-size: 9.4rem;
        top: -10px;
        left: 0;
        margin: 0 auto 0 0;
        text-align: left;
    }
    .works-loop-wrapper {
        padding: 46px 0 132px;
        margin: 0 -100px;
    }
    .works-loop-box p {
        font-size: 3.6rem;
        font-weight: 600;
    }
    .works-flex-container {
        max-width: 808px;
        margin: 0 auto;
    }
    .works-flex-container div:nth-child(2n + 1) {
        margin: 0 auto 0 0;
    }
    .works-flex-container div:nth-child(2n) {
        margin: 0 0 0 auto;
    }
    .websites,
    .graphics,
    .drawings,
    .paintings,
    .photos,
    .others {
        position: relative;
        max-width: 498px;
        margin-top: 108px;
    }
    .websites a,
    .graphics a,
    .drawings a,
    .paintings a,
    .photos a,
    .others a {
        margin: 0 0 132px;
    }
    .websites-contents,
    .graphics-contents,
    .drawings-contents,
    .paintings-contents,
    .photos-contents,
    .others-contents {
        max-width: 498px;
        height: 364px;
    }
    .websites img,
    .graphics img,
    .drawings img,
    .paintings img,
    .photos img,
    .others img {
        object-position: center 20%;
    }
    .websites:hover img,
    .graphics:hover img,
    .drawings:hover img,
    .paintings:hover img,
    .photos:hover img,
    .others:hover img {
        transform: scale(1.1, 1.1);
    }
    .websites h3,
    .graphics h3,
    .drawings h3,
    .paintings h3,
    .photos h3,
    .others h3 {
        position: absolute;
        max-width: 332px;
        font-weight: 600;
        font-size: 4.8rem;
        top: 368px;
        right: 0;
        left: 0;
        margin: 0 auto 0 0;
    }
    .websites:hover::before,
    .graphics:hover::before,
    .drawings:hover::before,
    .paintings:hover::before,
    .photos:hover::before,
    .others:hover::before {
        position: absolute;
        display: inline-block;
        content: "";
        max-width: 274px;
        border-bottom: solid 3px #abaaaa;
        top: 397px;
        right: -38px;
        left: 0;
        margin: 0 0 0 auto;
        overflow: visible;
    }
    .websites:hover::after,
    .graphics:hover::after,
    .drawings:hover::after,
    .paintings:hover::after,
    .photos:hover::after,
    .others:hover::after {
        position: absolute;
        display: inline-block;
        content: "";
        border-left: solid 3px #abaaaa;
        height: 107px;
        top: 290px;
        right: -38px;
        margin: 0 0 0 auto;
        overflow: visible;
    }
    .websites:hover h3,
    .graphics:hover h3,
    .drawings:hover h3,
    .paintings:hover h3,
    .photos:hover h3,
    .others:hover h3 {
        top: 366px;
    }
}

.section-biography {
    /*background: #c0c0c0;*/
}
.biography-movie-wrap {
    position: relative;
    height: 670px;
}
#biography-movie {
    width: 100%;
    height: 670px;
    object-fit: cover;
}
.biography-movie-wrap h2 {
    position: absolute;
    top: 60px;
    left: 24px;
    font-size: 5rem;
    color: #fafaf7;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.3);
}
.biography-contents {
    background: url(../images/bg_picture.jpg);
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 0 0 90px;
}
.section-biography h3 {
    text-align: center;
    font-size: 3.4rem;
    color: #000;
    font-weight: 600;
}
.section-biography h3 span {
    font-family: Arial, Helvetica, sans-serif;
    color: #abaaaa;
    font-size: 1.4rem;
    font-weight: 100;
    line-height: 40px;
}
.biography-area1 {
    /* background: rgba(255, 255, 255, 0.9);*/
    background: #fafaf7;
    width: 100%;
}
.biography-area1-wrapper {
    padding: 60px 24px 58px;
    max-width: 280px;
    margin: 0 auto;
}
.biography-area1 dl {
    padding: 0 0 8px 0;
}
.biography-area1 dd {
    padding: 0 0 4px 0;
}
.biography-area2 dl dt,
.biography-area3 dl dt {
    padding: 6px 0 0 0;
}
.biography-detail-area {
    margin: 0 24px;
}
.biography-area2,
.biography-area3 {
    margin: 0 auto;
    max-width: 500px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    padding: 0 15px 10px;
}
.biography-area2 {
    margin: 50px auto 60px;
}
.biography-area2 h4,
.biography-area3 h4 {
    text-align: center;
    font-size: 2rem;
    padding: 28px 0 22px;
}

.area1-img img {
    display: block;
    width: 253px;
    height: 199px;
    object-fit: cover;
    margin: 0 auto;
    padding: 32px 0 6px;
}
.area2-img {
    margin: 0 auto;
    padding: 32px 0 10px;
    width: 214px;
    height: 280px;
}
.area2-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.area3-img-wrapper {
    position: relative;
    height: 432px;
    max-width: 285px;
    margin: 22px auto 0;
}
.area3-img1 {
    position: absolute;
    display: block;
    min-width: 194px;
    height: 260px;
    object-fit: cover;
    margin: 0 auto;
    top: 0;
    left: 0;
}
.area3-img2 {
    position: absolute;
    display: block;
    min-width: 194px;
    height: 260px;
    object-fit: cover;
    padding: 32px 0 10px;
    top: 97px;
    right: 0;
    z-index: 1;
}
@media (min-width: 810px) {
    .section-biography {
        /*background: #c0c0c0;*/
    }
    .biography-movie-wrap {
        display: block;
        height: 674px;
        text-align: left;
    }
    #biography-movie {
        height: 674px;
    }
    .biography-movie-wrap h2 {
        display: block;
        top: 104px;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding-left: 100px;
        font-size: 9.4rem;
        max-width: 1300px;
    }
    .biography-contents {
        background: url(../images/bg_picture.jpg);
        height: 100%;
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center bottom;
        padding: 0 0 92px;
        font-size: 1.6rem;
        line-height: 2.5rem;
    }
    .section-biography h3 {
        text-align: left;
        font-size: 6rem;
        font-weight: 600;
        margin-bottom: 46px;
    }
    .section-biography h3 span {
        font-size: 1.8rem;
        font-weight: 100;
        line-height: 8rem;
        padding-left: 6px;
    }
    .biography-area1 {
        margin: 0 auto;
    }
    .biography-area1-wrapper {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
        justify-content: space-around;
        max-width: 1000px;
        padding: 96px 50px 60px;
        margin: 0 auto;
    }
    .area1-text {
        margin-left: 20px;
        flex: 1;
    }
    .area1-img {
        margin: 32px auto 0;
        padding: 0;
        flex: 1;
    }
    .area1-img img {
        width: 352px;
        height: 264px;
        padding: 0;
    }
    .biography-area1 dl {
        padding: 0 0 16px 0;
    }
    .biography-area1 dd {
        padding: 0 0 2px 0;
    }
    .biography-area2 dl dt,
    .biography-area3 dl dt {
        padding: 10px 0 0 0;
    }
    .biography-detail-area {
        margin: 0 auto;
        padding: 0 100px;
    }
    .biography-area2,
    .biography-area3 {
        max-width: 1050px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.85);
        padding: 0 42px 40px;
    }
    .biography-area2 {
        margin: 120px auto 60px;
        display: flex;
        flex-direction: row;
    }
    .biography-area3 {
        margin: 76px auto 60px;
        display: flex;
        flex-direction: row-reverse;
    }
    .biography-area2 h4,
    .biography-area3 h4 {
        font-size: 2.4rem;
        padding: 28px 0 20px;
    }
    .area2-img {
        max-width: 302px;
        margin: auto;
        padding: 0 15px;
    }
    .area2-img img {
        min-width: 240px;
        max-width: 312px;
        height: 412px;
        object-fit: scale-down;
    }
    .area3-img-wrapper {
        position: relative;
        height: 670px;
        min-width: 250px;
        max-width: 470px;
        margin: auto 40px auto 0;
        flex: 1;
    }
    .area3-img1 {
        position: absolute;
        max-width: 190px;
        height: 350px;
        object-fit: scale-down;
        margin: 0 auto;
    }
    .area3-img2 {
        position: absolute;
        max-width: 190px;
        height: 350px;
        object-fit: scale-down;
        padding: 32px 0 10px;
        top: 214px;
        right: 0;
    }
    .area3-text {
    }
}
.section-news {
    background: #000;
    color: #fafaf7;
}
.section-news h2 {
    position: relative;
    display: block;
    /*z-index: 99;
   mix-blend-mode: difference;*/
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 5rem;
    text-align: center;
    padding: 73px 0 43px;
    margin: 0 24px;
}
.section-news h2::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    width: 0%;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    transition: all 0.8s;
}
.section-news h2.active::after {
    width: 100%;
}
.section-news dl {
    margin: 0 34px;
    padding: 46px 0 76px;
}
.section-news dl dt {
    padding: 8px 0 0 0;
}
/*.section-news dl a {
    color: #fff;
}*/
.section-news dl a:hover {
    color: #a0a0a0;
}
#movie-logo {
    width: 100%;
    height: 210px;
    object-fit: cover;
    vertical-align: bottom;
}
.modal-open1,
.modal-open2,
.modal-open3,
.modal-open4,
.modal-open5 {
    max-width: fit-content;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
}
.modal-open1:hover,
.modal-open2:hover,
.modal-open3:hover,
.modal-open4:hover,
.modal-open5:hover {
    color: #a0a0a0;
}
.modal-open1::before,
.modal-open2::before,
.modal-open3::before,
.modal-open4::before,
.modal-open5::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #a0a0a0;
    transition: 0.2s;
}
.modal-open1:hover::before,
.modal-open2:hover::before,
.modal-open3:hover::before,
.modal-open4:hover::before,
.modal-open5:hover::before {
    width: 100%;
}
.modal-container1,
.modal-container2,
.modal-container3,
.modal-container4,
.modal-container5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 20%);
    padding: 60px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
    z-index: 99;
}
.modal-container1:before,
.modal-container2:before,
.modal-container3:before,
.modal-container4:before,
.modal-container5:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.modal-container1.active,
.modal-container2.active,
.modal-container3.active,
.modal-container4.active,
.modal-container5.active {
    opacity: 1;
    visibility: visible;
}
.modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 550px;
    max-height: 600px;
    width: 90%;
}
.modal-content {
    background: #fff;
    color: #000;
    text-align: left;
    padding: 30px;
}
.modal-img {
    display: block;
    max-width: 100%;
    max-height: 300px;
    margin: auto;
}
.works_detail {
    display: block;
    margin: auto;
    font-size: 14px;
    padding-top: 12px;
}
.works_to_catalog {
    text-align: right;
    font-size: 12px;
}
.works_to_catalog a {
    color: #000;
}
.works_to_catalog a:hover {
    color: #a0a0a0;
}
.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -30px;
    right: -30px;
    width: 30px;
    height: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
@media (min-width: 760px) {
    /*.section-news {
    }*/
    .section-news h2 {
        text-align: left;
        font-weight: 600;
        font-size: 9.4rem;
        padding: 110px 0 94px 100px;
        margin: 0 auto;
        max-width: 1100px;
        border-bottom: none;
    }
    .section-news h2::after {
        bottom: 0;
        left: 288px;
        width: 0%;
        height: 2px;
        max-width: 900px;
    }
    .section-news h2.active::after {
        width: 58%;
    }
    .section-news dl {
        max-width: 1000px;
        padding: 102px 100px 140px;
        font-size: 1.6rem;
        line-height: 2.5rem;
        margin: 0 auto;
    }
    .section-news dl dt {
        padding: 10px 0 0 0;
    }
    #movie-logo {
        height: 802px;
    }
    .modal-open1::before,
    .modal-open2::before,
    .modal-open3::before,
    .modal-open4::before,
    .modal-open5::before {
        left: 0;
        bottom: -4px;
        width: 0;
        height: 1px;
    }
    .modal-container1,
    .modal-container2,
    .modal-container3,
    .modal-container4,
    .modal-container5 {
        padding: 60px 20px;
    }
    .modal-body {
        max-width: 600px;
        width: 90%;
    }
    .modal-content {
        padding: 30px;
    }
    .modal-img {
        max-width: 380px;
        padding-top: 25px;
    }
    .works_detail {
        font-size: 14px;
        line-height: 22px;
        padding-top: 22px;
        max-width: 380px;
    }
    .works_to_catalog {
        text-align: right;
        font-size: 14px;
    }
}

.section-process {
    margin: 0 24px;
    background: #fafaf7;
}
.process-h-wrapper {
    position: relative;
    width: 100%;
    height: 50%;
}
.process-h-wrapper h2 {
    display: block;
    position: absolute;
    color: #000;
    z-index: 2;
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 5rem;
    text-align: center;
    top: -31px;
    left: 0;
    right: 0;
    padding-top: 50px;
    margin-top: -50px;
}
.process-h-wrapper h2::after {
    position: absolute;
    content: "PROCESS";
    transform: rotateX(180deg);
    background-image: linear-gradient(180deg, rgba(220, 231, 237, 0) 5%, rgba(220, 231, 237, 1));
    -webkit-background-clip: text;
    color: rgba(220, 231, 237, 0);
    top: 81px;
    left: 0;
    right: 0;
    height: 32px;
}
.section-process-read {
    margin: 0 auto;
    padding-top: 68px;
    padding-bottom: 68px;
    max-width: 320px;
}
.section-process-read h3 span {
    font-size: 2.8rem;
    font-weight: 500;
    font-family: "Dancing Script", cursive, "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial,
        Helvetica, sans-serif;
}
.section-process-read p {
    line-height: 2.3rem;
}
.process1-h {
    font-size: 2.1rem;
    font-weight: 500;
    padding-bottom: 27px;
}
.process1-p {
    position: relative;
    z-index: 1;
}
.process1-p::after {
    position: absolute;
    content: "HEARING";
    bottom: 110px;
    right: -60px;
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 4rem;
    color: #dce7ed;
    transform: rotate(-90deg);
    z-index: -1;
}
.process2-box {
    padding-top: 74px;
}
.process2-h {
    font-size: 2.1rem;
    font-weight: 500;
    padding-bottom: 27px;
    text-align: right;
}
.process2-p {
    position: relative;
    z-index: 1;
}
.process2-p::after {
    position: absolute;
    content: "REALIZATION";
    bottom: 70px;
    left: -118px;
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 4rem;
    color: #dce7ed;
    transform: rotate(-90deg);
    z-index: -1;
}
/*
.process1-h {
    position: relative;
    width: 286px;
    flex: 1;
    z-index: 9;
}
.process1-h::after {
    position: absolute;
    content: "HEARING";
    bottom: 130px;
    left: -90px;
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 3rem;
    color: #dce7ed;
    transform: rotate(-90deg);
    z-index: -1;
}
.process1-p {
    width: 286px;
    flex: 1;
}
.process2-box {
    display: flex;
    flex-direction: row-reverse;
    align-items: end;
    padding-top: 184px;
}
.process2-h {
    position: relative;
    width: 286px;
    flex: 1;
    text-align: right;
    z-index: 9;
}
.process2-h::after {
    position: absolute;
    content: "REALIZATION";
    bottom: 120px;
    right: -114px;
    font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 3rem;
    color: #dce7ed;
    transform: rotate(-90deg);
    z-index: -1;
}*/

.section-process-detail {
    padding: 130px 0 0;
    text-align: center;
}
/*.section-process-detail h4 {
    display: inline-block;
    font-size: 1.7rem;
    border-bottom: solid 1px #000;
    margin-bottom: 10px;
}*/
.section-process-detail p {
    text-align: left;
    line-height: 2.3rem;
    padding-bottom: 18px;
}
.section-process-detail ul {
    display: inline-block;
    list-style: none;
    padding: 44px 0 63px;
}
.section-process-detail ul li {
    position: relative;
    text-align: left;
    line-height: 2.5rem;
}
.section-process-detail ul li:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 7px;
    top: 8px;
    left: -16px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    border-right: 2px solid #aec4ce;
    border-bottom: 2px solid #aec4ce;
}
.section-process-detail ul li:after {
    content: "";
    position: absolute;
    top: 6px;
    left: -20px;
    width: 12px;
    height: 12px;
    border: 1px solid #505050;
    border-radius: 2px;
}
.js-section-process-slider {
    width: 100%; /*スライダー内の画像を横幅100%に*/
    height: 100%;
    padding-bottom: 31px;
}
.js-section-process-slider img {
    object-fit: cover;
    width: 100%;
    height: 280px;
    margin: auto 0;
}
.js-section-process-slider .slick-slide {
    margin: 0 10px; /*スライド左右の余白調整*/
}
@media (min-width: 760px) {
    .section-process {
        margin: 0 auto;
        max-width: 1300px;
    }
    .process-h-wrapper {
        position: relative;
        width: 100%;
        height: 50%;
    }
    .process-h-wrapper h2 {
        display: block;
        text-align: left;
        position: absolute;
        font-weight: 600;
        font-size: 9.4rem;
        top: -50px;
        left: 0;
        right: 0;
        padding: 80px 0 0 100px;
        margin: -80px auto 0;
        max-width: 1100px;
    }
    .process-h-wrapper h2::after {
        position: absolute;
        content: "PROCESS";
        top: 129px;
        left: 100px;
        right: 0;
        height: 52px;
    }
    .section-process-read {
        margin: 0 auto;
        padding-top: 128px;
        padding-bottom: 128px;
        max-width: 644px;
    }
    .section-process-read h3 {
        font-size: 3rem;
        font-weight: 500;
        padding-bottom: 0;
    }
    .section-process-read h3 span {
        font-size: 4.8rem;
        font-weight: 500;
    }
    .section-process-read p {
        font-size: 1.6rem;
        line-height: 2.7rem;
    }
    .process1-box {
        display: flex;
        align-items: end;
    }
    .process1-h {
        position: relative;
        width: 286px;
        flex: 1;
        z-index: 9;
    }
    .process1-h::after {
        position: absolute;
        content: "HEARING";
        bottom: 130px;
        left: -90px;
        font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
        font-weight: 600;
        font-size: 3rem;
        color: #dce7ed;
        transform: rotate(-90deg);
        z-index: -1;
    }
    .process1-p {
        position: static;
        width: 286px;
        flex: 1;
    }
    .process1-p::after {
        content: "";
    }
    .process2-box {
        display: flex;
        flex-direction: row-reverse;
        align-items: end;
        padding-top: 184px;
    }
    .process2-h {
        position: relative;
        width: 286px;
        flex: 1;
        text-align: right;
        z-index: 9;
    }
    .process2-h::after {
        position: absolute;
        content: "REALIZATION";
        bottom: 120px;
        right: -114px;
        font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
        font-weight: 600;
        font-size: 3rem;
        color: #dce7ed;
        transform: rotate(-90deg);
        z-index: -1;
    }
    .process2-p {
        position: static;
        width: 286px;
        flex: 1;
        padding-bottom: 68px;
    }
    .process2-p::after {
        content: "";
    }
    .section-process-detail {
        padding: 106px 100px 0;
        margin: 0 auto;
        text-align: center;
        max-width: 1100px;
    }
    /*.section-process-detail h4 {
        text-align: left;
        display: inline-block;
        font-size: 1.8rem;
        margin-bottom: 16px;
    }*/
    .section-process-detail p {
        text-align: left;
        /*padding-bottom: 78px;*/
        font-size: 1.6rem;
        line-height: 2.7rem;
    }
    .section-process-detail ul {
        display: inline-block;
        list-style: none;
        padding: 44px 0 63px;
    }
    .section-process-detail ul li {
        text-align: left;
        font-size: 1.6rem;
        line-height: 2.7rem;
    }
    .section-process-detail ul li:before {
        width: 3px;
        height: 7px;
        top: 8px;
        left: -16px;
    }
    .section-process-detail ul li:after {
        top: 6px;
        left: -22px;
        width: 14px;
        height: 14px;
    }
    .js-section-process-slider {
        width: 100%; /*スライダー内の画像を横幅100%に*/
        height: 100%;
        padding-bottom: 52px;
    }
    .js-section-process-slider img {
        object-fit: cover;
        width: 100%;
        height: 466px;
        margin: auto 0;
    }
    .js-section-process-slider .slick-slide {
        margin: 0 30px; /*スライド左右の余白調整*/
    }
}

.js-fadeIn {
    transition: 1s;
    opacity: 0;
}
.js-fadeIn.animated {
    opacity: 1;
}
