@charset "UTF-8";

/* フォント読み込み指定 -ここから- */
@font-face {
    font-family: 'Noto Serif JP';
    src: url(assets/font/Noto_Serif_JP/NotoSerifJP-VariableFont_wght.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url(assets/font/Cormorant_Garamond/CormorantGaramond-VariableFont_wght.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Infant';
    src: url(assets/font/Cormorant_Infant/CormorantInfant-VariableFont_wght.ttf) format('truetype');
    font-display: swap;
}

/* フォント読み込み指定 -ここまで- */

/* アニメーション設定 -ここから- */
/* フロントページ 上から下に伸びるアニメ */
@keyframes anime-bg {
    0% {
        opacity: 0;
        transform: scaleY(0) translateY(-5%);
    }

    30% {
        transform: scaleY(1) translateY(0);
    }

    100% {
        transform: scaleY(1) translateY(0);
    }

    30%,
    100% {
        opacity: 1;
    }
}

/* フロントページ 非表示から表示アニメ */
@keyframes anime-inn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* フロントページ 時間経過で引くアニメ */
@keyframes zoomanime {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* フロントページ ぼかしアニメ */
@keyframes bluranime {
    0% {
        filter: blur(0);
    }

    100% {
        filter: blur(20px);
    }
}

/* フロントページ メインビジュアル英語文字列対応 */
@keyframes visualextextscroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-200%);
    }
}

/* フロントページ 右から左へのアニメ */
@keyframes scrollleftanime {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* フロントページ 左から右へのアニメ */
@keyframes scrollrightanime {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

/* アニメーション設定 -ここまで- */

/* Swell設定上書き -ここから- */
:root {
    --swl-sidebar_width: 15rem;
    /* サイドメニュー幅 */
    --swl-sidebar_margin: 20px;
    /* サイドメニューマージン幅 */
    --swl-fz--xs: 0.69rem;
    --swl-fz--small: 0.815rem;
    --swl-fz--normal: 1rem;
    --swl-fz--medium: 1.25rem;
    --swl-fz--large: 1.5rem;
    --swl-fz--huge: 1.75rem;
}

/* 画面全般的に文字間隔を広げる */
/* フォントを指定(Swellから読み込んだ場合、400と700しか読み込まないため) */
body {
    letter-spacing: 0.12rem;
    font-family: "Noto Serif JP", serif;
}

/* ただし、一部項目について、文字間隔をなくす(レイアウト崩れ発生による) */
#header,
#fix_header,
.is-style-float dt,
.is-style-float dd {
    letter-spacing: 0;
}

/* 行間を再設定 */
/* リスト・横並びリスト */
.post_content li,
.is-style-float.swell-block-dl,
.is-style-float.swell-block-dd,
.swell-block-dl__dt,
.swell-block-dl__dd {
    line-height: 2;
}

/* リスト(黒点) */
ul.is-style-index li:before {
    top: calc(.75em + 2px);
}

/* 横並びリスト(間要素) */
.is-style-float>.swell-block-dl__dt:after {
    top: calc(1em + 3px);
}

/* 太字部分について、SemiBoldにする */
.post_content dt,
.post_content h2,
.post_content h3,
.post_content h4,
h1,
b,
strong {
    font-weight: 600;
}

/* ページタイトルのフォントサイズ調整 */
.c-pageTitle {
    font-size: 2.65rem;
}

/* ヘッダーを横いっぱいにする */
.l-fixHeader__inner,
.l-header__inner {
    max-width: 100%;
}

/* ヘッダー内のロゴ付近の余白を解除する */
@media (min-width: 960px) {
    .-series .l-header__logo {
        margin-right: 0;
    }
}

.l-fixHeader__logo {
    margin-right: 0;
}

/* ヘッダーメニューのフォントサイズを自動調整する */
.c-gnav>.menu-item>a .ttl {
    font-size: min(1.1vw, 14px);
}

/* 本文中のサブタイトル英語フォント変更 */
.mininote {
    font-family: 'Cormorant Garamond';
    font-weight: 600;
    font-size: 1rem !important;
    opacity: 1 !important;
}

/* 目次を非表示にする */
.p-toc.-capbox {
    display: none;
}

/* タイトルの位置を上にずらす */
.l-topTitleArea__body {
    top: -250px;
    color: #111;
}

#top_title_area {
    min-height: 825px;
}

.l-topTitleArea__img {
    top: 315px;
}

#top_title_area .u-obf-cover {
    height: calc(100% - 315px) !important;
}

/* FAQアコーディオン対応 */
@media (scripting: enabled) {
    .swell-block-faq .faq_a {
        transition:
            height 0.3s,
            padding 0.3s;
    }

    .swell-block-faq .faq_a:not(.open) {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
    }

    .swell-block-faq .swell-block-faq__item+.swell-block-faq__item {
        position: relative;
    }

    .swell-block-faq__item .faq_q {
        cursor: pointer;
        padding-right: 4rem;
    }

    .swell-block-faq__item .faq_q:after {
        content: "\e91c";
        font-family: icomoon !important;
        font-weight: bold;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        line-height: 2;
    }

    .swell-block-faq__item.open .faq_q:after {
        content: "\e919";
    }
}

/* モーダルクリック可能要素に、クリックを促す設定 */
*[data-trigger-modal] {
    cursor: pointer;
}

*[data-trigger-modal]:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* サイドバーの目次タイトルを非表示にする */
.widget_swell_index .c-widget__title,
.widget_swell_index ul.is-style-index li:before {
    display: none;
}

/* サイドバーの目次設定 */
.p-toc__list li {
    line-height: 3;
}

/* スマートフォン向けの目次点を非表示にする */
.p-indexModal ul.is-style-index li:before {
    display: none;
}

/* サイドバーの目次について、スクロールスパイ対応に */
.p-toc__link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 1.1rem;
}

/* 再度バーの目次 点表示 */
.p-toc__link::before {
    background-color: currentcolor;
    border-radius: 50%;
    color: inherit;
    content: "";
    display: block;
    height: 6px;
    left: -15px;
    position: absolute;
    top: calc(.75em + 10px);
    width: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.p-toc__link.active::before {
    opacity: 1;
}

/* サイドバーの目次 下線対応 */
.p-toc__link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width 0.3s ease;
}

.p-toc__link.active::after {
    width: 100%;
}

/* 独自拡張のカテゴリーのタイトルをシンプルにする */
.su-widget__simple-title {
    font-size: 1.25rem;
    color: #111;
    padding: 0.5rem 0;
    margin-bottom: 0;
    font-weight: 700;
}

/* サイドバーのカテゴリータイトルをシンプルにする */
.widget_categories .c-widget__title {
    font-size: 1.25rem;
    color: #111;
    background: transparent;
    margin-bottom: 0;
    padding-left: 0;
}

/* カテゴリーについて、装飾をシンプルにする */
.wp-block-categories a,
.widget_categories a {
    padding-left: 0 !important;
    border-bottom: none;
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 1.1rem;
}

.wp-block-categories a:hover,
.widget_categories a:hover {
    background: unset;
}

.wp-block-categories a::after,
.widget_categories a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width 0.3s ease;
}

.wp-block-categories a:hover::after,
.widget_categories a:hover::after {
    width: 100%;
}

.wp-block-categories a::before,
.widget_categories a::before {
    display: none !important;
}

/* コンテンツ表示の優先度を上げる */
#content {
    z-index: 3;
}

/* モーダルウィンドウの高さを調整する */
@media (min-width: 961px) {
    .wp-block-cloudcatch-light-modal-block {
        max-height: calc(100svh - 130px) !important;
    }
}

@media (max-width: 960px) {
    .wp-block-cloudcatch-light-modal-block {
        max-height: calc(100svh - 102px) !important;
    }
}

.post_content div>.wp-block-cloudcatch-light-modal-block {
    margin-top: auto !important;
    margin-bottom: 30px !important;
}

/* PC表示時、右下の目次ボタンを非表示にする */
@media (min-width: 961px) {
    #fix_tocbtn {
        display: none;
    }
}

/* 投稿ページの下部を非表示 */
.p-articleFoot {
    display: none;
}

/* Swell設定上書き -ここまで- */

/* 追加CSS -ここから- */
/* 英語フォント強制変更 */
.su-font-cormorantgaramond,
.su-font-mininoteonly-cormorantgaramond .mininote {
    font-family: 'Cormorant Garamond' !important;
    font-weight: 300 !important;
}

.su-font-cormorantinfant,
.su-font-mininoteonly-cormorantinfant .mininote {
    font-family: 'Cormorant Infant' !important;
    font-weight: 600 !important;
}

/* ページサブタイトルのフォント変更 */
.su-subtitle-text {
    font-family: 'Cormorant Garamond';
    font-weight: 600;
    font-size: 1.5rem;
}

/* ビジュアル周り設定 */
.su-visual-parent {
    position: relative;
}

.su-visual-titlegroup {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 10rem;
    color: #fff;
    max-width: calc(var(--container_size, 0px) + var(--swl-pad_container, 0px) * 2);
    padding-left: var(--swl-pad_container, 0);
    padding-right: var(--swl-pad_container, 0);
    z-index: 2;
}

.su-visual-title {
    font-size: min(60px, 5.5vw);
    text-shadow: 0px 4px 2px #000;
}

.su-visual-text {
    font-size: 1.125rem;
    text-shadow: 0px 4px 2px #000;
}

.su-visual-extext-parent {
    margin: 0;
    position: absolute;
    bottom: -85px;
}

.su-visual-extext-text {
    font-size: 150px;
    color: #fff;
    white-space: nowrap;
    mix-blend-mode: difference;
    background: linear-gradient(to top, #000 32%, #fff 32%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

.su-visual-extext-emphasis {
    background: #d33214;
    color: #d33214;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Firefoxで閲覧時、一部描写に不具合があるため、暫定的に対応する */
@-moz-document url-prefix() {

    .su-visual-extext-text,
    .su-visual-extext-emphasis {
        -webkit-text-fill-color: unset;
    }
}

/* ヘッダーメニュー 一部メニューを強調 */
.c-gnav .su-menu-highlight a .ttl {
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: .5s;
    background-color: #111 !important;
    color: #fff !important;
    border: 1px solid #111;
    border-radius: 50px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    line-height: 2rem;
}

.c-gnav .su-menu-highlight a .ttl::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: .5s;
    z-index: -1;
}

.c-gnav .su-menu-highlight a:hover .ttl {
    color: #111 !important;
    transition: all 0.3s ease;
}

.c-gnav .su-menu-highlight a:hover .ttl::before {
    width: 100%;
}

.c-gnav .su-menu-highlight a::after {
    display: none !important;
}

.p-spMenu__nav .su-menu-highlight a {
    border: 1px solid #111;
    border-radius: 80px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #111 !important;
    color: #fff !important;
    text-align: center;
}

/* テキストに下線を引くクラス */
.su-underline {
    text-decoration: underline;
}

/* 複数カラム要素にて個数余り時、中央に寄せる */
.su-flex-center .swell-block-columns__inner {
    justify-content: center;
}

/* 非表示 */
.su-display-none {
    display: none;
}

/* ホバーで矢印が動くタイプ */
.su-hover-moveallow>a::after {
    display: inline-block;
    text-decoration: none;
    content: " →";
    transition: margin 0.3s ease;
}

.su-hover-moveallow>a:hover::after {
    margin-left: 0.5rem;
}

/* ホバーで下線が伸びるタイプ */
.su-hover-underline>a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.su-hover-underline>a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color_link);
    transition: width 0.3s ease;
}

.su-hover-underline>a:hover::before {
    width: 100%;
}

/* フッターのお問い合わせ項目の区切り線 */
@media (min-width: 600px) {
    .su-footer-separate-line {
        height: 74px;
        width: 1px;
        background: #d9d9d9;
    }
}

@media (max-width: 601px) {
    .su-footer-separate-line {
        height: 1px;
        width: 100px;
        margin-left: auto;
        margin-right: auto;
        background: #d9d9d9;
    }
}

/* フッターのお問い合わせボタン */
.su-button-hover-contact a {
    position: relative;
    z-index: 0;
    transition: .5s;
}

.su-button-hover-contact a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #333;
    transition: .5s;
    z-index: -1;
}

.su-button-hover-contact a:hover {
    color: #fff !important;
}

.su-button-hover-contact a:hover::before {
    width: 100%;
}

/* 採用情報Entryボタン */
/* 内部として常に出力するが、必要な箇所のみ表示する対応にする */
.su-recruit-entry-button {
    display: none;
}

.su-recruit-entry-button .c-bannerLink__text {
    padding-right: calc(2.5rem + min(15vw, 150px));
}

.su-recruit-entry-button .c-bannerLink__title {
    font-size: clamp(3rem, 14.5vw, 7.5rem);
    text-align: left;
    letter-spacing: 0.75rem;
}

.su-recruit-entry-button .c-bannerLink__description {
    text-align: left;
}

.su-recruit-entry-button a::after {
    display: inline-block;
    text-decoration: none;
    content: '';
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUwIiBoZWlnaHQ9IjE1MCIgdmlld0JveD0iMCAwIDE1MCAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iNzUiIGN5PSI3NSIgcj0iNzQiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPjxwYXRoIGQ9Ik01Ni42IDc3LjcyVjc1Ljg4SDg5LjI0Qzg2LjY4IDczLjkyIDgzLjc2IDcxLjA4IDgxLjc2IDY4LjM2TDgzLjIgNjcuMkM4NS45MiA3MC45MiA5MCA3NC40OCA5My42NCA3Ni44QzkwIDc5LjEyIDg1LjkyIDgyLjY4IDgzLjIgODYuNEw4MS43NiA4NS4yNEM4My44NCA4Mi40IDg2LjY4IDc5LjY4IDg5LjI0IDc3LjcySDU2LjZaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==');
    background-size: contain;
    vertical-align: middle;
    z-index: 1;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto 0;
    transition: all 0.3s ease;
    transform-origin: center;
    width: min(15vw, 150px);
    height: min(15vw, 150px);
}

@media (min-width: 600px) {
    .su-recruit-entry-button a:hover::after {
        transform: rotate(360deg);
        background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUwIiBoZWlnaHQ9IjE1MCIgdmlld0JveD0iMCAwIDE1MCAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iNzUiIGN5PSI3NSIgcj0iNzQiIGZpbGw9IiMxMTExMTEiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPjxwYXRoIGQ9Ik01Ni42IDc3LjcyVjc1Ljg4SDg5LjI0Qzg2LjY4IDczLjkyIDgzLjc2IDcxLjA4IDgxLjc2IDY4LjM2TDgzLjIgNjcuMkM4NS45MiA3MC45MiA5MCA3NC40OCA5My42NCA3Ni44QzkwIDc5LjEyIDg1LjkyIDgyLjY4IDgzLjIgODYuNEw4MS43NiA4NS4yNEM4My44NCA4Mi40IDg2LjY4IDc5LjY4IDg5LjI0IDc3LjcySDU2LjZaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==');
    }
}

/* カテゴリー横並び設定 */
.su-category-flex-list {
    display: flex;
}

.su-category-flex-list li {
    flex: 1;
}

/* 右上固定表示対応 */
.su-fixed-upperright {
    position: fixed;
    bottom: 0;
    right: 5.5rem;
    z-index: 10;
    margin: 0;
}

.su-fixed-upperright .su-fixed-content {
    padding: 1.5rem 1.5rem 1rem 1rem;
}

.su-fixed-upperright .su-fixed-close-button {
    appearance: none;
    border: none;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    line-height: 0;
    margin: 0;
    padding: .75rem;
    position: absolute;
    right: 8px;
    top: 8px;
    transition: background-color .2s ease-in-out;
    z-index: 11;
}

/* アニメーション親要素非表示 */
.anime-bg-parent {
    display: none;
}

@media (min-width: 600px) {
    .su-first-block {
        margin-right: 12.5rem;
    }

    .su-recruit-textarea {
        height: 30rem;
    }

    .anime-bg-parent {
        display: flex;
        flex-direction: row-reverse;
        gap: 10px;
        align-items: flex-start;
        position: absolute;
        right: 0;
        z-index: 999;
    }

    .anime-bg .anime-bg-wrap {
        writing-mode: vertical-rl;
        text-align: start;
        position: relative;
        display: inline-block;
        width: 4.5rem;
    }

    .anime-bg.is-animated .anime-bg-wrap::before {
        animation: anime-bg 10.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        background: linear-gradient(125deg, #889 15%, #667 50%, #889 85%);
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform-origin: center top;
    }

    .anime-bg .anime-bg-wrap .inn {
        animation: anime-inn 10.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        color: #fff;
        display: inline-block;
        font-size: 2.25rem;
        font-weight: 400;
        padding: 1.5rem 0.25rem 0.5rem;
        position: relative;
        z-index: 1;
        letter-spacing: 1rem;
        white-space: nowrap;
    }

    .anime-delay-1 {
        animation-delay: 1s;
    }

    .anime-delay-2 {
        animation-delay: 2s;
    }
}

/* フロントページ メインビジュアル箇所 */
/* 現在の画像と、切り替え後の画像については、ズームアクションのみ */
.top-main-visual .swiper-slide-active img,
.top-main-visual .swiper-slide-duplicate-active img {
    animation: zoomanime 5s linear 0s normal both;
}

/* 切り替え前の画像は、ズームアクションとぼかし対応 */
.top-main-visual .swiper-slide-prev img {
    animation: zoomanime 5s linear 0s normal both, bluranime 1s linear 0s normal both;
}

/* メインビジュアルの高さ固定 */
.top-main-visual .swiper-wrapper {
    height: 750px;
}

/* メインビジュアルの画像 指定したサイズいっぱいに広げる */
.top-main-visual .swiper-wrapper img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

/* ループアニメーション */
.su-left-loop-slider,
.su-right-loop-slider {
    overflow: hidden;
}

.su-left-loop-slider__wrapper,
.su-right-loop-slider__wrapper {
    display: flex;
    width: max-content;
}

.su-left-loop-slider__items {
    display: flex;
    animation: scrollleftanime 40s linear infinite both;
}

.su-right-loop-slider__items {
    display: flex;
    animation: scrollrightanime 25s linear infinite both;
}

.su-right-loop-slider__items img {
    margin-right: 20px;
    width: auto;
    height: 360px;
}

/* 自動スクロール フロントページ1番目設定 */
.su-front-rightloop-section1 .su-right-loop-slider__items img {
    height: 360px;
}

/* 自動スクロール フロントページ2番目設定 */
.su-front-rightloop-section2 .su-right-loop-slider__items img {
    height: 440px;
}

/* 余白ずらし調整 */
.su-margin-top-2 {
    margin-top: 2rem;
}

/* フォントサイズ(やや中) */
.su-fz-sl {
    font-size: 1.125rem !important;
}

/* 行間設定(小) */
.su-lh-sm,
.su-lh-sm li {
    line-height: 1.6 !important;
}

/* 行間設定(中) */
.su-lh-md,
.su-lh-md li {
    line-height: 1.8 !important;
}

/* 行間設定(大) */
.su-lh-lg,
.su-lh-lg li {
    line-height: 2.0 !important;
}

/* 行間設定(特大) */
.su-lh-xl,
.su-lh-xl li {
    line-height: 2.2 !important;
}

/* 行間設定(最大) */
.su-lh-xxl,
.su-lh-xxl li {
    line-height: 2.4 !important;
}

/* 追加CSS -ここまで- */

/* Contact Form 7設定用 -ここから- */

/* 各項目毎の余白設定 */
.wpcf7-form div {
    margin-bottom: 1rem;
}

/* テキストを太字 */
.wpcf7-form label {
    font-weight: bold;
}

/* フォームのカスタマイズ */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select {
    width: 100%;
    background-color: #fff;
    margin-top: 0.5rem;
    border-radius: 10px !important;
}

/* ラジオボタンの左の余白 */
.wpcf7-radio span {
    margin-left: 0;
}

/* 必須マーク */
.required {
    color: #F76D57;
}

/* ファイル添付ボタン */
.su-contact-file-button {
    display: block;
    background: #111;
    padding: 0.5rem 5rem;
    color: #fff;
    border: 1px solid #111;
    border-radius: 10px;
    text-align: center;
}

/* 送信ボタン */
.su-contact-send-button {
    display: block;
    background: #111;
    padding: 0.5rem 5rem;
    color: #fff;
    border: 1px solid #111;
    border-radius: 80px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form 7設定用 -ここまで- */