@charset "UTF-8";

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, section, summary, time, mark, audio, video {
    padding: 0;
    margin: 0;
    font: inherit;
    word-wrap: break-word;
    border: 0;
    vertical-align: baseline;
    outline: none;
}

body {
    padding: 0;
    margin: 0;
    color: var(--black);
    font-size: 3.5vw;
    font-family: var(--gothic);
    -webkit-text-size-adjust: 100%;
    font-style: normal;
    line-height: 1;
}

article, aside, canvas, details, figcaption, figure, header, footer, hgroup, main, menu, nav, section, summary {
    display: block;
}

blockquote, q {
    quotes: none;
}

strong, b {
    font-weight: bold;
}

ul, ol, li {
    list-style: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

img, video, object {
    max-width: 100%;
    height: auto;
    border: none;
    display: block;
}

ins {
    background: none;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

hr {
    height: 1px;
    padding: 0;
    margin: 1em 0;
    border: 0;
    border-top: 1px solid #ccc;
    display: block;
}

*:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: var(--black);
    text-decoration: none;
    display: block;
    -moz-transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    -o-transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

a:hover {
    opacity: 0.6;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.pc {
    display: none;
}

.sp {
    display: block;
}

.en {
    letter-spacing: 0.02rem;
}

sup {
    font-size: 50%;
    vertical-align: top;
}

main {
    background: #fff;
    position: relative;
    z-index: 10;
}

/* common sp
----------------------------------------------- */
:root {
    --gothic: 'Inter', 游ゴシック体, YuGothic, 'Yu Gothic', "游ゴシック Medium", "Yu Gothic Medium", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    --mincho: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", serif;
    --black: #262626;
    --gray: #ccc;
    --light-gray: #e9e9ea;
}

.wrapper {
    width: 100%;
    background: #fff;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.top-wrapper {
    overflow: visible;
}

.top-title {
    margin-bottom: 8vw;
}

.top-title .en {
    font-size: 12vw;
    font-weight: 700;
    display: block;
    margin-bottom: 2vw;
}

.fade {
    opacity: 0;
    -moz-transition: 1.2s;
    -o-transition: 1.2s;
    -webkit-transition: 1.2s;
    transition: 1.2s;
}

.fade-left {
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

.fade-right {
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.fade-bottom {
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.fade-active {
    opacity: 1;
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -webkit-transform: translate(0);
    transform: translate(0);
}

.more {
    width: 55vw;
    padding: 5vw 6vw;
    color: #fff;
    font-size: 3.95vw;
    font-weight: 700;
    text-align: left;
    background: var(--black);
    border-radius: 50px;
    position: relative;
    display: table;
}

/* header sp
----------------------------------------------- */
.header {
    width: 100%;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

body.header-navi-open .header {
    z-index: 100;
}

.container {
    position: relative;
    z-index: 3;
}

body.header-navi-open .container {
    z-index: 1;
}

.header-navi-button {
    width: 18vw;
    height: calc(4.8vw + 2px);
    cursor: pointer;
    position: fixed;
    top: 5vw;
    right: 10vw;
    -moz-transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    -o-transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 110;
    pointer-events: auto;
}

.header-navi-button .line-top {
    width: 18vw;
    height: 2px;
    top: 3.2vw;
    background: var(--black);
    position: absolute;
    transition: all 0.3s ease;
}

.header-navi-button .line-bottom {
    width: 18vw;
    height: 2px;
    top: 4.8vw;
    background: var(--black);
    position: absolute;
    transition: all 0.3s ease;
}

.header-navi {
    width: 100%;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header-navi-box {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.header-navi-inner {
    width: 100%;
    padding: 4vw 0;
    visibility: hidden;
}

.header-navi-content {
    width: 100%;
}

.header-navi-items {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
}

.header-navi-items li {
    margin-bottom: 4vw;
    font-size: 20vw;
    font-optical-sizing: auto;
    font-weight: 700;
}

.header-navi-items li:last-child {
    margin-bottom: 0;
}

.header-navi-sub-items {
    position: absolute;
    bottom: 8vw;
    left: 20vw;
}

.header-navi-sns {
    margin-bottom: 40vw;
    opacity: 0;
    visibility: hidden;
}

.header-navi-sns a {
    font-size: 8vw;
    opacity: 0;
    visibility: hidden;
}

.header-navi-sns a .icon {
    opacity: 0;
    visibility: hidden;
}

.header-navi-sns .en {
    margin-bottom: 2vw;
    font-size: 13vw;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
}

.animation {
    opacity: 0;
    visibility: hidden;
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    -moz-transition: all 0.65s cubic-bezier(0.76, 0, 0.24, 1);
    -o-transition: all 0.65s cubic-bezier(0.76, 0, 0.24, 1);
    -webkit-transition: all 0.65s cubic-bezier(0.76, 0, 0.24, 1);
    transition: all 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

.header-navi-open {
    width: 100%;
    height: 100%;
    position: fixed;
    transition: all 0.3s ease;
}

.header-navi-open .header-navi-button {
    top: 5vw;
}

.header-navi-open .header-navi-button .line-top {
    width: 100%;
    top: 4vw;
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
    transition: all 0.3s ease;
}

.header-navi-open .header-navi-button .line-bottom {
    width: 100%;
    top: 4vw;
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    transition: all 0.3s ease;
}

.header-navi-open .header-navi {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    background: #fff;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0s 0s;
}

.header-navi-open .header-navi-box {
    visibility: visible;
    opacity: 1;
    position: absolute;
    bottom: 10vw;
    left: 10vw;
}

.header-navi-open .header-navi-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.header-navi-open .header-navi-sns,.header-navi-open .header-navi-sns a,.header-navi-open .header-navi-sns .en,.header-navi-open .header-navi-sns .icon {
    opacity: 1;
    visibility: visible;
}

.header-navi-open .animation {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-navi-open .animation01 {
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.header-navi-open .animation02 {
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.header-navi-open .animation03 {
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.header-navi-open .animation04 {
    -moz-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.header-navi-open .animation05 {
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.header-navi-open .animation06 {
    -moz-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.header-navi-open .animation07 {
    -moz-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.header-navi-open .animation08 {
    -moz-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.header-navi-open .animation09 {
    -moz-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.header-navi-open .animation10 {
    -moz-transition-delay: 1s;
    -o-transition-delay: 1s;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.header-navi-open .animation11 {
    -moz-transition-delay: 1.1s;
    -o-transition-delay: 1.1s;
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.header-navi-open .animation12 {
    -moz-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

/* hero sp
----------------------------------------------- */
.hero {
    width: 100%;
    z-index: 1;
    position: relative;
}

.top-hero {
    position: sticky;
    top: 0;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.top-hero-navi {
    position: absolute;
    top: 5vw;
    right: 30vw;
    z-index: 4;
}

.top-hero-navi-box {
    display: block;
}

.top-hero-navi-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.top-hero-navi-items li {
    margin-bottom: 2vw;
    font-size: 12vw;
    font-weight: 700;
}

.top-hero-navi-items li:last-child {
    margin-bottom: 0;
}

.top-hero-navi-items a {
    color: var(--black);
    text-decoration: none;
}

.top-hero-navi-items a:hover {
    opacity: 0.6;
}

.top-hero-navi .animation {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-hero-title {
    width: 102vw;
    font-size: 26vw;
    font-weight: 700;
    letter-spacing: 0;
    position: absolute;
    top: 88%;
    left: 0;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    color: var(--black);
    line-height: 0.9;
}

.top-hero-image {
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
}

.top-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.second-hero {
    padding-top: 100vw;
}

.second-hero-content {
    width: 90vw;
    margin-left: auto;
}

.second-hero-title {
    width: 100%;
    padding: 14vw 0;
}

.second-hero-title .en {
    margin-bottom: 3.5vw;
    font-size: 16vw;
    font-weight: 700;
    display: block;
}

.second-hero-title .jp {
    font-size: 3.42vw;
    display: block;
}

/* bread sp
----------------------------------------------- */
.breadcrumb {
    padding: 4vw 0;
    z-index: 1;
    position: relative;
}

.breadcrumb-items {
    width: 80vw;
    margin: 0 auto;
    font-size: 0;
}

.breadcrumb-items li {
    font-size: 3.16vw;
    position: relative;
    display: inline-block;
}

.breadcrumb-items li:after {
    content: "";
    width: 3vw;
    height: 1px;
    margin: 1.5vw 2.5vw 0 1.5vw;
    vertical-align: top;
    background: var(--black);
    opacity: 0.5;
    display: inline-block;
}

.breadcrumb-items li:last-child {
    font-weight: 600;
}

.breadcrumb-items li:last-child:after {
    display: none;
}

.breadcrumb-items li:last-child a {
    font-weight: bold;
}

.breadcrumb-items a {
    display: inline-block;
}

/* footer sp
----------------------------------------------- */
footer {
    width: 100%;
    padding: 20vw 0 8vw;
    background: #fff;
}

footer nav {
    width: 80vw;
    margin: 0 auto 8vw;
}

footer nav li {
    margin-bottom: 4vw;
    font-size: 14vw;
    font-weight: 700;
}

footer nav li:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    padding-top: 8vw;
    border-top: 1px solid var(--light-gray);
}

.footer-bottom-inner {
    width: 80vw;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.footer-copyright {
    font-size: 3.5vw;
    font-weight: 700;
}

.footer-bottom .more {
    width: 40vw;
    padding: 3vw 4vw;
    font-size: 3.5vw;
}

/* second sp
----------------------------------------------- */
.second {
    z-index: 1;
    position: relative;
}

.second-text {
    width: 80vw;
    padding-bottom: 15vw;
    margin: 0 auto;
}

.second-text p {
    margin-bottom: 4vw;
    font-size: 3.42vw;
    line-height: 2;
}

/* =============================================
    pc
================================================*/

@media screen and (min-width: 736px) {
    body {
        font-size: 15px;
    }

    body.has-custom-cursor,
    body.has-custom-cursor a,
    body.has-custom-cursor button,
    body.has-custom-cursor .header-navi-button,
    body.has-custom-cursor .accordion {
        cursor: none;
    }

    .custom-cursor-dot,
    .custom-cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        opacity: 0;
        transform: translate(-50%, -50%);
        transition: opacity 2s ease;
        
        
    }

    .custom-cursor-dot {
        width: 8px;
        height: 8px;
        background: #111;
        border-radius: 50%;
    }

    .custom-cursor-ring {
        width: 50px;
        height: 50px;
        border: 1px solid #111;
        border-radius: 50%;
    }

    body.custom-cursor-visible .custom-cursor-dot,
    body.custom-cursor-visible .custom-cursor-ring {
        opacity: 1;
    }

    body.custom-cursor-hover .custom-cursor-ring {
        transform: translate(-50%, -50%) scale(1.2);
    }

    body.custom-cursor-active .custom-cursor-dot {
        transform: translate(-50%, -50%) scale(0.85);
    }

    body.custom-cursor-active .custom-cursor-ring {
        transform: translate(-50%, -50%) scale(1.05);
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* common pc
----------------------------------------------- */
    .top-title .en {
        font-size: 80px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .more {
        width: 280px;
        padding: 20px 0 20px 25px;
        font-size: 16px;
    }

    /* header pc
----------------------------------------------- */
    .header-navi-button {
        width: 100px;
        height: 27px;
        top: 30px;
        right: 100px;
    }

    .header-navi-button .line-top {
        width: 100px;
        top: 15px;
    }

    .header-navi-button .line-bottom {
        width: 100px;
        height: 2px;
        top: 25px;
    }

    .header-navi-open .header-navi-button {
        top: 30px;
        right: 100px;
    }

    .header-navi-open .header-navi-button .line-top {
        width: 100px;
        top: 12px;
    }

    .header-navi-open .header-navi-button .line-bottom {
        width: 100px;
        top: 12px;
    }

    .header-navi {
        padding: 20px 0;
    }

    .header-navi-items {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .header-navi-items li {
        margin-bottom: 10px;
        font-size: 120px;
        font-weight: 700;
    }

    .header-navi-items li:last-child {
        margin-bottom: 0;
    }

    /* hero pc 
----------------------------------------------- */
    .top-hero {
        width: 100%;
        height: 100vh;
    }

    .top-hero-navi {
        position: absolute;
        top: 30px;
        left: calc(50% - 50px);
    }

    .top-hero-navi-box {
        display: block;
    }

    .top-hero-navi-items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .top-hero-navi-items li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .top-hero-navi-items li:last-child {
        margin-bottom: 0;
    }

    .top-hero-navi-items a {
        color: var(--black);
        text-decoration: none;
        font-size: 80px;
    }

    .top-hero-navi-items a:hover {
        opacity: 0.6;
    }

    .top-hero-navi .animation {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .top-hero-title {
        top: auto;
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        bottom: -3vw;
        font-size: 17vw;
        letter-spacing: 0;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .top-hero-image {
        width: clamp(760px, 64%, 1200px);
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        overflow: hidden;
    }

    .top-hero-image img {
        width: 100%;
        height: 92vh;
        object-fit: cover;
    }

    .second-hero {
        padding-top: 100px;
    }

    .second-hero-content {
        width: clamp(840px, 90%, 1200px);
        margin: 0 auto;
    }

    .second-hero-title {
        width: 100%;
        max-width: 840px;
        margin: auto;
        padding: 500px 0 60px;
    }

    .second-hero-title .en {
        margin-bottom: 15px;
        font-size: 120px;
    }

    .second-hero-title .jp {
        font-size: 15px;
    }

    /* bread pc
----------------------------------------------- */
    .breadcrumb {
        padding: 20px 0;
    }

    .breadcrumb-items {
        width: 820px;
    }

    .breadcrumb-items li {
        font-size: 14px;
    }

    .breadcrumb-items li:after {
        width: 12px;
        margin: 7px 10px 0 7px;
    }

    /* footer pc 
----------------------------------------------- */
    footer {
        padding: 80px 0;
    }

    .footer-line {
        height: 1px;
        margin-bottom: 40px;
    }

    footer nav ul {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    footer nav li {
        margin-bottom: 10px;
        font-size: 90px;
    }

    footer nav li:last-child {
        margin-bottom: 0;
    }

    .footer-bottom {
        padding-top: 40px;
    }

    .footer-copyright {
        font-size: 15px;
    }

    .footer-back-to-top .more {
        padding: 15px 30px;
        font-size: 15px;
    }

    /* second pc 
----------------------------------------------- */
    .second-text {
        width: clamp(840px, 90%, 1200px);
        padding-bottom: 120px;
    }

    .second-text p {
        margin-bottom: 30px;
        font-size: 15px;
    }
}

@media screen and (min-width: 1200px) {
    .top-hero-navi {
        position: absolute;
        top: 30px;
        left: calc(50% + 50px);
    }

    .header-navi-button {
        width: 100px;
        height: 27px;
        top: 30px;
        right: calc(50% - 500px);
    }

    .header-navi-open .header-navi-button {
        right: calc(50% - 500px);
    }
}

/* retina用 ----------------------------------------------- */
@media screen and (min-width: 736px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 736px) and (min-resolution: 2dppx) {
}
