@charset "UTF-8";
:root {
    --main-font-color: #fff;
    --sub-color: #333333;
    --gray-dark: #555555;
    --gray-bright: #717171;
    --accent-color: #B4AC97;
    --bg-color: rgb(30, 30, 30);
}
/*--------------------------------
 全体
---------------------------------*/
html {
    overflow-x: hidden;
    /* scroll-behavior: smooth; */
}
body {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    overflow-x: hidden;
    color: var(--main-font-color);
    box-sizing: border-box;
    font-feature-settings: 'palt';
    font-family: 'Charis SIL', 'Shippori Mincho', sans-serif;
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 1.6;
    background-color: var(--bg-color);
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a:link {
    color: var(--main-font-color);
}
a:visited {
    color: var(--main-font-color);
}
body * {
    box-sizing: inherit;
    min-height: 0vw;
}
@media (min-width: 600px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
/*--------------------------------
 font
---------------------------------*/
.shippori {
    font-family: "Shippori Mincho", serif;
}
.charis {
    font-family: "Charis SIL", serif;
}
/*--------------------------------
 レイアウト
---------------------------------*/
.container_narrow {
    max-width: 970px;
    margin-inline: auto;
    padding: 0 10px;
}
@media screen and (max-width: 1100px) {
    .container_narrow {
        padding: 0 5%;
    }
}
.container_wide {
    max-width: 1210px;
    margin-inline: auto;
    padding: 0 10px;
}
@media screen and (max-width: 1450px) {
    .container_wide {
        padding: 0 5%;
    }
}
.flex {
    display: flex;
    align-items: center;
}
.top-section {
    padding: 110px 0;
}
.top-section:last-child {
    padding-bottom: 120px;
}
.p-text {
    margin-bottom: 70px;
}
::selection {
    color: var(--bg-color);
    background-color: #a1a1a1;
}
.sp-only {
    display: none;
}
.sp-only-none {
    /* display: block; */
}
/*--------------------------------
 見出し
---------------------------------*/
.top-hgroup {
    align-items: flex-start;
    flex-direction: column;
    row-gap: 20px;
}
.top-hgroup>h2 {
    text-transform: capitalize;
    font-size: 18px;
    color: var(--gray-dark);
    letter-spacing: 1px;
}
.top-hgroup>p {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 10px;
}
.top-heading {
    text-transform: capitalize;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 70px;
}
/*--------------------------------
 アニメーション
---------------------------------*/
.opacity {
    transition: 0.3s;
}
@media screen and (min-width: 600px) {
    .opacity:hover {
        opacity: 0.5;
        transition: 0.3s;
    }
}
/*--------------------------------
 ローディングアニメーション
---------------------------------*/
/* ローディングフェードイン */
.loading-fadein {
    background: var(--bg-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
    row-gap: 20px;
}
.loading-fadein p {
    display: none;
    z-index: 999;
    max-width: 360px;
    padding: 0 10px;
}
.loading-fadein img {
    max-width: 100%;
    height: auto;
}
/*--------------------------------
 ボタン
---------------------------------*/
.btn01 .link {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 185px;
    padding: 10px 20px 10px 55px;
    color: var(--main-font-color);
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.btn01 .link:before,
.btn01 .link:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
}
.btn01 .link:before {
    width: 0.4rem;
    height: 0.4rem;
    left: 0.9rem;
    border-top: solid 1px var(--main-font-color);
    border-right: solid 1px var(--main-font-color);
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
}
.btn01 .link:after {
    left: 0;
    background: transparent;
    border: 1px solid var(--main-font-color);
    z-index: 1;
    width: 36px;
    height: 36px;
    border-radius: 4rem;
    transform: translateY(-50%);
    transition: all 0.5s;
}
.btn01 .link span {
    font-size: 18px;
    text-transform: capitalize;
    position: relative;
    transition: all 0.3s;
    z-index: 3;
}
@media screen and (min-width: 600px) {
    .btn01 .link:hover span {
        color: var(--sub-color);
    }
    .btn01 .link:hover:before {
        left: 1.8rem;
        border-top: solid 1px var(--sub-color);
        border-right: solid 1px var(--sub-color);
    }
    .btn01 .link:hover:after {
        right: 0;
        width: 100%;
        background: var(--main-font-color);
    }
}
/*--------------------------------
 header
---------------------------------*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    position: fixed;
    top: 0;
    transition: top 1.2s;
    z-index: 10;
    padding-top: 56px;
    padding-bottom: 56px;
    padding-right: clamp(2.5rem, -0.563rem + 7vw, 7.75rem);
    padding-left: clamp(2.5rem, -0.563rem + 7vw, 7.75rem);
    background: linear-gradient(rgba(30, 30, 30, .86), rgba(0, 0, 0, .35) 37%, transparent);
}
header .nav-list {
    display: flex;
    align-items: center;
    column-gap: clamp(1rem, 0.451rem + 1.46vw, 2.188rem);
}
header .nav-list a {
    font-size: 14px;
    letter-spacing: 0.005em;
}
header .nav-list a.nav-link {
    display: inline-block;
    position: relative;
    transition: .3s;
    text-transform: capitalize;
}
header .nav-list .nav-item.nav-item-contact {
    margin-left: clamp(1.25rem, 0.156rem + 2.5vw, 3.125rem);
}
.btn-menu {
    display: none;
}
header .nav-list .nav-item.is-current a {
    color: var(--accent-color);
}
/*--------------------------------
 footer
---------------------------------*/
.footer {
    padding-top: 150px;
    padding-bottom: 72px;
    background: url(../images/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}
.footer .footer-logo {
    margin-bottom: 20px;
}
.footer-flex {
    align-items: flex-start;
    justify-content: space-between;
}
.footer-left>h2 {
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 1.8px;
    font-weight: 700;
}
.footer-left address p:first-child {
    margin-bottom: 45px;
}
.footer-left .footer-inst {
    margin-top: 45px;
    margin-bottom: 40px;
}
.copyright {
    text-align: right;
    margin-top: 26px;
}
.copyright small {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
}
/* ページトップボタン */
.arrow-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;  /* クリックしやすいサイズ */
    height: 48px;
    background-color: transparent;
    margin-left: auto;
    margin-right: 9.9px;
    cursor: pointer;
    transition: 0.3s;
}
/* 矢印の縦線 */
.arrow-button::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 39px;
    background-color: var(--main-font-color);
    border-radius: 9999px;
    top: 12px;
}
/* 矢印の斜め線（上向き） */
.arrow-button::before {
    content: "";
    position: absolute;
    width: 2px; /* 太さ調整 */
    height: 16px;
    background-color: var(--main-font-color);
    border-radius: 9999px;
    top: 9px;
    left: 35px;
    transform: rotate(-45deg);
    transform-origin: bottom center;
}
/* ページトップボタン_end */
/*--------------------------------
 index_メインビジュアル
---------------------------------*/
.index .main-visual {
    width: 100vw;
    height: 100vh;
    position: relative
}
.index .main-visual-img img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
/* swiper画像縮小アニメーション */
.swiper3 .swiper-slide-active .zoom-out-img,
.swiper3 .swiper-slide-duplicate-active .zoom-out-img,
.swiper3 .swiper-slide-prev .zoom-out-img {
    animation: zoomOut 11s linear 0s normal both;
    transform-origin: center center;
    width: 100%;
    height: 100dvh;
    object-fit: cover;
}
@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
/* swiper画像縮小アニメーション_end */
.index .main-visual-text {
    position: absolute;
    z-index: 1;
    top: 62%;
    padding-left: clamp(2.5rem, -0.563rem + 7vw, 7.75rem);
    text-shadow: 0 0 15px #333333;
}
.index .main-visual-text .main {
    font-size: 40px;
    letter-spacing: 5.8px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 56px;
}
.index .main-visual-text .sub {
    font-size: 18px;
    letter-spacing: 4.5px;
    line-height: 0.89;
}
/* スクロールダウンアニメーション */
.scrollbar {
    position: absolute;
    z-index: 1;
    right: 6%;
    transform: translateX(-10%);
    bottom: 1px;
}
.scrollbar::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 1px;
    height: 100px;
    background: #828282;
}
.scrollbar::before {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--main-font-color);
    animation: circlemove 3s ease-in-out infinite,
        cirlemovehide 3s ease-out infinite;
}
@keyframes circlemove {
    0% {
        bottom: 95px;
    }
    100% {
        bottom: 0px;
    }
}
@keyframes cirlemovehide {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}
/* スクロールダウンアニメーション_end */
/*--------------------------------
 index_ourstyle
---------------------------------*/
.top-ourstyle {
    position: relative;
}
.top-ourstyle .btn01 {
    margin-bottom: 145px;
}
.top-ourstyle .top-hgroup {
    margin-bottom: 80px;
}
.top-ourstyle .p-text {
    line-height: 3.38;
    margin-bottom: 100px;
}
.top-ourstyle .img-anime {
    position: absolute;
    top: 22%;
    right: 0;
    width: 40%;
    aspect-ratio: 516 / 623;
    overflow: hidden;
}
@media screen and (max-width: 1320px) {
    .top-ourstyle .img-anime {
        top: 34%;
        overflow: hidden;
    }
}
@media screen and (min-width: 1320px) {
    .top-ourstyle .img-anime2 {
        aspect-ratio: 844 / 611;
        width: 100%;
        overflow: hidden;
    }
}
.top-ourstyle .img-anime2 {
    width: 50%;
    overflow: hidden;
}
.top-ourstyle .img-anime>img,
.top-ourstyle .img-anime2>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 流れる文字 */
.text-flowing {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.double-content-wrap {
    display: flex;
    width: max-content;
    animation: loop-text 90s linear infinite;
    margin-top: -50px;
}
.double-content {
    font-size: 120px;
    color: var(--bg-color);
    letter-spacing: 2px;
    text-shadow: 1px 1px 0 var(--gray-dark), -1px -1px 0 var(--gray-dark),
        -1px 1px 0 var(--gray-dark), 1px -1px 0 var(--gray-dark),
        1px 0 0 var(--gray-dark), -1px 0 0 var(--gray-dark),
        0 1px 0 var(--gray-dark), 0 -1px 0 var(--gray-dark);
    white-space: nowrap;
    padding-right: 20px;
    /* 少し間隔をあける */
}
@keyframes loop-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* 流れる文字_end */
/*--------------------------------
 index_work
---------------------------------*/
.top-work-swiper-area {
    position: relative;
    margin-bottom: 100px;
}
.top-work-swiper-area .btn01 .link {
    margin-left: auto;
}
/* swiper */
.top-work .swiper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-left: 19vw;
}
@media screen and (max-width: 1800px) {
    .top-work .swiper {
        padding-left: 17vw;
    }
}
@media screen and (max-width: 1700px) {
    .top-work .swiper {
        padding-left: 15vw;
    }
}
@media screen and (max-width: 1600px) {
    .top-work .swiper {
        padding-left: 13vw;
    }
}
@media screen and (max-width: 1500px) {
    .top-work .swiper {
        padding-left: 10vw;
    }
}
@media screen and (max-width: 1400px) {
    .top-work .swiper {
        padding-left: 7vw;
    }
}
@media screen and (max-width: 1320px) {
    .top-work .swiper {
        padding-left: 5vw;
    }
}
@media screen and (max-width: 1200px) {
    .top-work .swiper {
        padding-left: 0vw;
    }
}
.top-work-card {
    display: inline-block;
}
.top-work-card a {
    display: flex;
    flex-direction: column;
    transition: 1s all;
    overflow: hidden;
}
.top-work-card .photo>img {
    object-fit: cover;
    width: 370px;
    aspect-ratio: 37 / 48;
}
.top-work-card .date {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: var(--gray-dark);
    margin-bottom: 13px;
    margin-top: 24px;
}
.top-work-card .title {
    font-size: 18px;
    letter-spacing: 1.5px;
}
/* 次前 */
.top-work .swiper-button-next::after,
.top-work .swiper-button-prev::after {
    font-size: 0.8rem;
    color: var(--sub-color);
}
.top-work .swiper-button-next,
.top-work .swiper-button-prev {
    background-color: var(--main-font-color);
    width: 47px;
    height: 47px;
}
.top-work .swiper-button-next::after,
.top-work .swiper-button-next {
    right: -9%;
    top: 45%;
}
@media screen and (max-width: 1800px) {
    .top-work .swiper-button-next::after,
    .top-work .swiper-button-next {
        right: -7%;
    }
}
@media screen and (max-width: 1700px) {
    .top-work .swiper-button-next::after,
    .top-work .swiper-button-next {
        right: -3%;
    }
}
@media screen and (max-width: 1600px) {
    .top-work .swiper-button-next::after,
    .top-work .swiper-button-next {
        right: 0%;
    }
}
@media screen and (max-width: 1500px) {
    .top-work .swiper-button-next::after,
    .top-work .swiper-button-next {
        right: 4%;
    }
}
@media screen and (max-width: 1400px) {
    .top-work .swiper-button-next::after,
    .top-work .swiper-button-next {
        right: 8%;
    }
}
@media screen and (max-width: 1320px) {
    .top-work .swiper-button-next::after,
    .top-work .swiper-button-next {
        right: 10%;
    }
}
@media screen and (max-width: 1200px) {
    .top-work .swiper-button-next::after,
    .top-work .swiper-button-next {
        right: 0%;
    }
}
.top-work .swiper-button-prev::after,
.top-work .swiper-button-prev {
    left: 0%;
    top: 45%;
}
/* 次前_end */
/* swiper_end */
/* swiper上マウスストーカー */
#stkr-area {
    position: relative;
}
#stkr {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(180, 172, 151, .35);
    backdrop-filter: blur(5px);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    transition-timing-function: ease-out;
    z-index: 30;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
#stkr.stkr-hide {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(8px);
    pointer-events: none;
}
#stkr::after {
    content: "view";
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
}
/* swiper上マウスストーカー_end */
/*--------------------------------
 index_takumi
---------------------------------*/
.top-takumi {
    position: relative;
    width: 100%;
    height: 80dvh;
    background-image: url(../images/takumi/mv.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 110px;
    padding: 0;
}
.top-takumi-all {
    position: absolute;
    bottom: 25%;
}
.top-takumi-all img {
    margin-bottom: 23px;
}
.top-takumi-all>p {
    padding-left: 23px;
    margin-bottom: 71px;
}
.top-takumi-all .btn01 {
    margin-left: 25px;
}
/*--------------------------------
 index_award
---------------------------------*/
.top-flex {
    column-gap: 80px;
}
.top-flex .img-box {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    flex: 1;
}
.top-flex .img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.top-flex .text-box p {
    margin-bottom: 100px;
}
/*--------------------------------
 index_voice
---------------------------------*/
.top-voice .top-flex .img-box {
    margin-left: 0;
    width: 100vw;
    margin-right: calc(50% - 50vw);
}
/*--------------------------------
 index_news
---------------------------------*/
.news-tab-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 35px;
}
/* タブに関して */
/* 左側タブ */
.list-box {
    width: calc(100% - 75%);
}
.list-box .tab-list {
    padding-left: 8px;
    margin-bottom: 100px;
}
.list-box .tab-list .tab-item {
    margin-bottom: 18px;
    position: relative;
    transition: .5s;
    cursor: pointer;
}
@media screen and (min-width: 600px) {
    .list-box .tab-list .tab-item:hover {
        color: var(--accent-color);
    }
}
.list-box .tab-list .tab-item.active {
    color: var(--accent-color);
    cursor: default;
}
/* 左側タブ_end */
/* 右側タブ */
.tab-panel {
    width: calc(100% - 25%);
    margin-top: 5%;
}
.tab-panel .panel-contents {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.tab-panel .panel-contents.active {
    display: block;
    opacity: 1;
}
.tab-panel .panel-list .panel-item {
    width: 100%;
    border-top: 1px solid var(--gray-dark);
}
.tab-panel .panel-list .panel-item:last-of-type {
    border-bottom: 1px solid var(--gray-dark);
}
.tab-panel .panel-list .panel-item a {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 32px 40px 32px 12px;
    column-gap: 26px;
    transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
    .tab-panel .panel-list .panel-item a:hover {
        background: #2b2a2a;
    }
}
.tab-panel .panel-list .panel-item .info-top {
    display: flex;
    align-items: baseline;
    column-gap: 26px;
}
.date {
    font-size: 0.8em;
    letter-spacing: 1.5px;
    color: var(--gray-bright);
}
.category {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    border: 1px solid var(--gray-dark);
    border-radius: 5px;
    padding: 0.3rem 1.7rem;
    max-width: 100px;
}
.tab-panel .panel-list .panel-item a .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    flex: 1;
}
.no-posts {
    padding: 8rem;
}
/* 矢印 */
.arrow-right {
    position: relative;
    display: inline-block;
    width: 5.2px;
    height: 9.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: auto;
    right: -1rem;
}
.arrow-right::before,
.arrow-right::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 7px;
    height: 1px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: calc(100% - 0.5px) 50%;
}
.arrow-right::before {
    transform: rotate(45deg);
}
.arrow-right::after {
    transform: rotate(-45deg);
}
@media screen and (min-width: 600px) {
    .tab-panel .panel-list .panel-item a:hover .arrow-right {
        opacity: 1;
    }
}
/* 矢印_end */
/* 右側タブ_end */
/* タブに関して_end */
/*--------------------------------
 index_company.recruit
---------------------------------*/
.top-company .top-heading {
    margin-bottom: 30px;
}
.top-company-main {
    width: 100%;
}
.img-big {
    width: calc(100% / 2);
    aspect-ratio: 36 / 25;
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.img-big img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 36 / 25;
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}
@media screen and (min-width: 600px) {
    .img-big:hover img {
        transform: scale(1.1);
        opacity: 0.5;
        filter: blur(4px);
    }
    .img-big:hover .btn01 .link span {
        color: var(--sub-color);
    }
    .img-big:hover .btn01 .link:before {
        left: 1.8rem;
        border-top: solid 1px var(--sub-color);
        border-right: solid 1px var(--sub-color);
    }
    .img-big:hover .btn01 .link::after {
        right: 0;
        width: 100%;
        background: var(--main-font-color);
    }
}
.img-big figcaption {
    position: absolute;
    left: 13%;
    bottom: 12%;
    z-index: 1;
}
.img-big figcaption p {
    margin-bottom: 30px;
}
/*--------------------------------
 index_instagram
---------------------------------*/
.top-instagram .top-heading {
    margin-bottom: 50px;
}
.top-instagram-swiper {
    margin-bottom: 100px;
}
.swiper2 .swiper-wrapper {
    transition-timing-function: linear;
}
.top-instagram .btn01 .link {
    margin: 0 auto;
}