@charset 'UTF-8';

/*----------------------------------------

	- imgBox
    - page title
    - heading
    - color setting

-----------------------------------------*/

/*----------------------------------------
    color setting
-----------------------------------------*/

:root {
    --green: rgba(42, 62, 64);
    --gold: rgba(114, 105, 52);
}

/*----------------------------------------
	responsive
-----------------------------------------*/
._pc {
    display: block;
}

._sp {
    display: none;
}

@media screen and (max-width: 768px) {
    ._pc {
        display: none;
    }

    ._sp {
        display: block;
    }
}

/*----------------------------------------
	basic
-----------------------------------------*/

@font-face {
    font-family: "shippori";
    src:
        local("shippori"),
        url("../fonts/ShipporiMinchoB1-Medium.ttf") format("truetype")
}

@font-face {
    font-family: "cormo";
    src:
        local("cormo"),
        url("../fonts/CormorantInfant-VariableFont_wght.ttf") format("truetype")
}

@font-face {
    font-family: "gara";
    src:
        local("gara"),
        url("../fonts/EBGaramond-Regular.ttf") format("truetype")
}

body {
    background: #fff;
}

.opn_bg {
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.a_par {
    overflow: hidden;
    -webkit-clip-path: inset(5% round 15px);
    clip-path: inset(5% round 15px);
    transition: opacity 1.5s ease, -webkit-clip-path 1s cubic-bezier(0.5, 1, 0.89, 1);
    transition: opacity 1.5s ease, clip-path 1s cubic-bezier(0.5, 1, 0.89, 1);
    transition: opacity 1.5s ease, clip-path 1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 1s cubic-bezier(0.5, 1, 0.89, 1);
    opacity: 0;
}

.a_par._only {
    -webkit-clip-path: none;
    clip-path: none;
    opacity: 1;
}

.a_par.scrollin {
    -webkit-clip-path: inset(0 round 0);
    clip-path: inset(0 round 0);
    opacity: 1;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.txt_gld {
    color: #726934;
}

.a_blr {
    opacity: 0;
    filter: blur(50px);
    transition: all 0.8s;
}

.a_blr.scrollin {
    opacity: 1;
    filter: blur(0px);
}

p.a_spl {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    line-height: 1;
}

.a_spl .char {
    display: inline-block;
    transform: translateY(100px);
    transition: transform 1s;
}

.a_spl .char.scrollin {
    transform: translateY(0);
    transition: transform 1s;
    transition-delay: calc(0.1s * var(--char-index));
}

@media screen and (max-width: 768px) {

    .flex {
        flex-direction: column;
    }

}

/*----------------------------------------
	imgBox
-----------------------------------------*/

.imgBox {
    position: relative;
}

.imgNote {
    position: absolute;
    font-size: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    color: #fff;
    right: 0;
    bottom: 0;
}

.imgNote.bg_none {
    background-color: unset;
    color: #000000;
}

.imgNote.bg_none._blk{
    text-shadow: none;
}

.imgNote._l {
    right: auto;
    left: 0;
}

.imgNote.for_scrollin {
    filter: blur(50px);
    opacity: 0;
    transition: 1s;
}

.imgNote.for_scrollin.scrollin {
    filter: blur(0);
    opacity: 1;
    transition: 1s;
}

.imgbox {
    position: relative;
}

.imgnote {
    position: absolute;
    color: #fff;
    text-shadow: 0 0 5px #000;
    bottom: 3px;
    right: 3px;
    font-size: 10px;
    letter-spacing: 0.01em;
}

.imgBox .zoomBtn, .imgbox .zoomBtn {
    position: absolute;
    top: 3%;
    right: 2%;
    width: 18%;
    max-width: 70px;
    z-index: 1;
}


/*----------------------------------------
	page title
-----------------------------------------*/
.mv .page_ttl_area {
    /* background-color: var(--green); */
    background: url(../img/bg_pta.png);
    background-size: cover;
    background-position: center;
    padding-block: 1% 5%;
    width: 100%;
}

.page_ttl_area ol#breadcrumb {
    margin: 0px auto 0 1%;
}

.page_ttl_area ol#breadcrumb li {
    color: var(--color_white);
}

.page_ttl_area ol#breadcrumb li a {
    color: rgba(255, 255, 255, 0.5);
}

.page_ttl_area ol#breadcrumb li a::after {
    filter: brightness(0) invert(1);
}

.page_ttl_area .page_ttl {
    font-size: 3.0rem;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.08em;
    color: var(--color_white);
    text-transform: uppercase;
    margin-top: 4%;
}

.page_ttl_area .page_ttl span:nth-of-type(2) {
    display: block;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0;
}

.page_ttl_area .page_lead {
    font-size: 3.2rem;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.08em;
    color: var(--color_white);
    margin-top: 1.2%;
}

@media screen and (max-width: 768px) {
    .mv {
        position: relative;
        width: 100%;
    }

    .mv .page_ttl_area {
        /* position: absolute;
        bottom: 0%;
        left: 0%;
        width: 100%;
        height: 100%;
        padding-bottom: 0;
        background-color: unset; */
        position: absolute;
        width: 100%;
        bottom: 0%;
        left: 0%;
        padding-block: 6% 4%;
        background-color: unset;
    }

    .page_ttl_area .page_ttlbox {
        position: absolute;
        bottom: 0%;
        left: 0;
        padding: 6% 0;
        width: 100%;
        box-sizing: border-box;
    }


    .page_ttl_area ol#breadcrumb li {
        color: #000;
    }

    .page_ttl_area ol#breadcrumb li a {
        color: rgb(0, 0, 0, .5);
    }

    .page_ttl_area ol#breadcrumb li a::after {
        filter: none;
    }


    .page_ttl_area .page_ttl {
        font-size: clamp(1rem, 5vw, 3rem);
        text-align: left;
        margin-top: 0%;
        width: 90%;
        margin-inline: auto;
        letter-spacing: .05rem;
    }

    .page_ttl_area .page_ttl span:nth-of-type(2) {
        display: block;
        font-size: 1.4rem;
        line-height: 2;
        letter-spacing: 0;
    }

    .page_ttl_area .page_lead {
        font-size: clamp(1rem, 4.5vw, 3.2rem);
        font-weight: 600;
        line-height: 1.5;
        text-align: left;
        letter-spacing: 0.1em;
        margin-top: 3%;
        width: 90%;
        margin-inline: auto;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    }
}

/*----------------------------------------
    heading
-----------------------------------------*/
.heading .heading_l {
    font-size: clamp(1rem, 5vw, 2.8rem);
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.15em;
    font-weight: 600;
    /* font-family: 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', serif; */
    margin-bottom: 3%;
}

.heading .heading_s {
    font-size: 2rem;
    text-align: center;
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .heading .heading_l {
        font-size: clamp(1rem, 5.2vw, 3rem);
        line-height: 2;
        letter-spacing: 0.15em;
        margin-top: 6%;
    }

    .heading .heading_s {
        font-size: clamp(1rem, 4vw, 2rem);
        text-align: left;
    }
}

/*----------------------------------------
	modal
-----------------------------------------*/

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: rgb(255, 255, 255);
    z-index: 10000;
}

.modal .modal-content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    overflow: scroll;
}

.modal-content .imgBox {
    width: 180%;
}

#closeModal {
    cursor: pointer;
    float: right;
    width: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10001;
}

/*----------------------------------------
    page_menu
-----------------------------------------*/
.page_menu {
    width: 100%;
}

/* nextLink  */
.nextLink {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.nextLink a {
    width: 50%;
    padding-block: 2%;
    background-color: #000000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .5s;
    opacity: 1;
}

.nextLink a:hover {
    opacity: .85;
}

.nextLink .close:hover{
    opacity: 1;
}

.nextLink p {
    letter-spacing: .05rem;
    width: 50%;
    max-width: 300px;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
    padding-bottom: 1rem;
    position: relative;
}

.nextLink p::before {
    content: "";
    position: absolute;
    width: 7%;
    aspect-ratio: 1;
    background-color: #fff;
    bottom: -1px;
}

.nextLink .en {
    text-transform: uppercase;
    font-size: clamp(1rem, 3vw, 2.6rem);
}

.nextLink .jp {
    font-size: clamp(1rem, 3vw, 1.4rem);
}

.nextLink .prev {
    justify-content: flex-start;
}

.nextLink .prev p {
    text-align: right;
    margin-left: 5%;
}

.nextLink .prev p::before {
    left: -1rem;
    clip-path: polygon(0 100%, 100% 50%, 100% 100%);
}

.nextLink .next {
    box-sizing: border-box;
    border-left: 1px solid #fff;
    justify-content: flex-end;
}

.nextLink .next p {
    margin-right: 5%;
}

.nextLink .next p::before {
    right: -1rem;
    clip-path: polygon(0% 100%, 0% 50%, 100% 100%);
}

@media screen and (max-width: 768px) {
    .nextLink a {
        padding-block: 4%;
    }

    .nextLink p {
        width: 55%;
    }

    .nextLink p::before {
        width: 12%;
        bottom: -4%;
    }

    .nextLink .en {
        font-size: clamp(1rem, 3.8vw, 2.6rem);
    }

    .nextLink .jp {
        font-size: clamp(1rem, 3vw, 1.4rem);
    }

    .nextLink .prev {
        justify-content: center;
    }

    .nextLink .prev p {
        text-align: right;
        margin-inline: auto;
    }

    .nextLink .prev p::before {
        left: -1rem;
        clip-path: polygon(0 100%, 100% 50%, 100% 100%);
    }

    .nextLink .next {
        justify-content: center;
    }

    .nextLink .next p {
        margin-inline: auto;
    }

    .nextLink .next p::before {
        right: -1rem;
        clip-path: polygon(0% 100%, 0% 50%, 100% 100%);
    }
}

/* contentLink  */

.contentLink {
    width: 100%;
    /* background-color: var(--green); */
    background: url(../img/bg_pta.png);
    background-position: center;
    background-size: cover;
    padding-block: 4% 3%;
}

.contentLink_inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.contentLink_ttl {
    letter-spacing: .05rem;
    text-align: center;
    color: #fff;
    margin-bottom: 4%;
}

.contentLink_ttl .en {
    text-transform: uppercase;
    font-size: clamp(1rem, 3vw, 3rem);
}

.contentLink_ttl .jp {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-top: 1rem;
    display: block;
}

.contentLink_list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem 1.5rem;
}

.contentLink_list li{
    position: relative;
}

.contentLink_list li a::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
    z-index: 1;
    z-index: 3;
}

.contentLink_list li a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    transition: .5s;
    opacity: 1;
    z-index: 3;
}

.contentLink_list li a:hover {
    opacity: .7;
}

.contentLink_list li p {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 4;
}

.contentLink_list li .en {
    text-transform: uppercase;
    font-size: clamp(1rem, 2vw, 2rem);
}

.contentLink_list li .jp {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
}

@media screen and (max-width: 768px) {
    .contentLink {
        padding-block: 15% 13%;
    }

    .contentLink_inner {
        width: 80%;
    }

    .contentLink_ttl {
        margin-bottom: 10%;
    }

    .contentLink_ttl .en {
        font-size: clamp(1rem, 4vw, 3rem);
    }

    .contentLink_ttl .jp {
        font-size: clamp(0.9rem, 3vw, 1.4rem);
        margin-top: 0.5rem;
    }

    .contentLink_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1rem;
    }

    /* .contentLink_list li p {
        margin-top: 1rem;
    } */

    .contentLink_list li .en {
        text-transform: uppercase;
        font-size: clamp(1rem, 4vw, 2.2rem);
    }

    .contentLink_list li .jp {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }
}

/* note_area  */

.note_area {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding-block: 3%;
}

.note_area ul li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
    .note_area {
        width: 80%;
        padding-block: 10%;
    }
}


@media screen and (max-width: 768px) {}