@charset "utf-8";
/* subpage head */
.c-sub__head{
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.c-sub__head-conts{
    position: absolute;
    bottom: 2rem;
    left: 1rem;
}
.c-sub__head-ttl{
    margin-bottom: .6rem;
}
.c-sub__head-ttl--ja{
    display: block;
    letter-spacing: -.02rem;
}
.c-sub__head-ttl--en{
    display: block;
}
.c-sub__head-menu{
    display: grid;
    gap: .3rem;
    margin-left: .2rem;
}
.c-sub__head-menu-list{
    display: flex;
    align-items: center;
}
.c-sub__head-menu-list-en{
    display: block;
    width: 1.4rem;
    position: relative;
}
.c-sub__head-menu-list-en span{
    position: absolute;
    top: -.1rem;
    left: -.1rem;
    font-size: .08rem;
}
.c-sub__head-menu-list-ja{
    display: flex;
    align-items: center;
}
.c-sub__head-menu-list-ja:before {
    display: block;
    width: .4rem;
    height: 2px;
    background-color: #fff;
    content: "";
    margin-right: .2rem;
}
.c-sub__head--pat02 .c-sub__head-menu-list-ja:before {
    background-color: #3e3a39;
}
.c-sub__head-pic{
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.c-sub__head-pic img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.c-sub__head-pic02{
    position: absolute;
    top: 0;
    right: 1rem;
    aspect-ratio: 1;
    width: 30%;
    height: 100%;
}
.c-sub__head-pic02 img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.c-sub__head--pat02{
    position: relative;
    background: #fcfaf7;
    z-index: 1;
    height: 70vh;
}
.c-sub__head--pat02 .c-sub__head-pic{
    width: 50%;
}
.c-sub__head--pat02 .c-sub__head-pic img{
    object-fit: contain;
}
/* subpage inner */
.c-sub__inner{
    width: min(100% - 2.2rem, 13rem);
    margin: auto;
}
/* link btn */
.c-btn__arwWrap{
    display: flex;
    align-items: center;
    column-gap: .2rem;
}
.c-btn__arw{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 40px;
    position: relative;
    background: #fff;
    border-radius: 9999px;
}
.c-btn__arw:before,
.c-btn__arw:after{
  position: absolute;
  top: 55%;
  right: 30px;
  height: 1px;
  background: #000;
  content: '';
  transition: all 0.2s;
}
.c-btn__arw:before {
  width: 25px;
  transform: translateY(-50%);
}
.c-btn__arw:after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.c-btn__arw.gray{
    background: #f3f3f3;
}
.c-btn__arw.is-hover:before,
.c-btn__arw.is-hover:after{
    right: 25px;
}
html.is-open{
    height: 100%;
    overflow: hidden;
}
.fadeIn {
    transform: translate3d(0, 50px, 0);
    transition: 1s;
    opacity: 0;
}
.fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
/* toppage inner */
.c-top__inner{
    width: min(100% - 2.2rem, 13rem);
    margin: auto;
}
@media only screen and (max-width: 1024px) {
    .c-sub__head{
        height: auto;
        padding-top: 2rem;
    }
    .c-sub__head-conts{
        position: relative;
        bottom: 0;
        left: 0;
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .c-sub__head-pic02{
        position: relative;
        right: auto;
        margin-top: 1rem;
        width: 100%;
        aspect-ratio: auto;
    }
    .c-sub__head-menu-list-en span{
        font-size: calc((.08rem * 100 / 50) * 1);
        top: -.2rem;
    }
    .c-sub__head-menu{
        gap: .6rem;
    }
    .c-sub__inner{
        width: min(100% - 1rem, 13rem);
    }
    .c-sub__head--pat02{
        padding-bottom: 1rem;
    }
    .c-sub__head--pat02 .c-sub__head-pic{
        width: 60%;
    }
    .c-btn__arw{
        width: 70px;
        height: 30px;
    }
    .c-btn__arw:before, .c-btn__arw:after{
        right: 21px;
    }
    .c-top__inner{
        width: min(100% - 1rem, 13rem);
    }

}