@charset "UTF-8";

/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//設定項目を基本的には変更しないCSS
　- base.css            基本の設定をまとめたもの。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/

:root {
    --container-width: 100%;
    --container-small: 57rem;
    --container-medium: 70rem;
    --container-large: 80rem;
    --container-xlarge: 92rem;
    --container-xxlarge: 100rem;
    --padding-x: 1.25rem;
    --nav-rate: 1;
    --gap-rate: 1.5;
    --cp-scale: 1;
    --rs-scale: 1;
    --xl-scale: 1;
    --lg-scale: 1;
    --md-scale: 1;
    --sm-scale: 1;
    --xs-scale: 1;
    --rs-pd: 1;
    --xl-pd: 1;
    --lg-pd: 1;
    --md-pd: 1;
    --sm-pd: 1;
    --rs-pd-thin: 1;
    --xl-pd-thin: 1;
    --lg-pd-thin: 1;
    --md-pd-thin: 1;
    --sm-pd-thin: 1;
}

:root {
    --gap-x2l: 1.5rem;
}

:root {
    --gap-xl: 1.25rem;
}

:root {
    --gap-lg: 1rem;
}

:root {
    --gap-md: 0.75rem;
}

:root {
    --gap-sm: 0.5rem;
}

:root {
    --gap-xs: 0.25rem;
}

:root {
    --gap-xxs: 0.125rem;
}

:root {
    --gap-none: 0;
}

:root {
    --radius-section: 4rem;
    --radius-section-2: 4rem;
    /* 大きいセクションカード */
    --radius-card: 3rem;
    /* 中くらいのカード */
    --radius-thumb: 1.5rem;
    /* サムネなど小さい箱 */
}


/* タブレット以下 */

@media screen and (max-width: 991px) {
    :root {
        --radius-section: 3rem;
        --radius-section-2: 2rem;
        --radius-card: 2rem;
        --radius-thumb: 1rem;
    }
}


/* スマホ */

@media screen and (max-width: 575px) {
    :root {
        --radius-section: 2rem;
        --radius-section-2: 1.5rem;
        --radius-card: 1.5rem;
        --radius-thumb: 0.75rem;
    }
}


/*------------------------------------------------------------------
  anchor
------------------------------------------------------------------*/

.anchor {
    padding-top: 120px;
    margin-top: -120px;
    position: relative;
    z-index: -1;
}

@media screen and (max-width:767px) {
    .anchor {
        padding-top: 80px;
        margin-top: -80px;
    }
}


/*------------------------------------------------------------------
  section
------------------------------------------------------------------*/


/* 「section-」を含むクラスの padding-bottom は変数「--section-padding」で定義 */

[class*="section-"] {
    position: relative;
    --section-padding: 0;
    padding-bottom: var(--section-padding);
    z-index: 1;
    overflow: hidden;
}


/* 「section-」に「bg-」から始まる背景色を定義するクラスを付けた場合は padding-top も追加する */

[class*="section-"][class*="bg-"],

/* [class*="bg-"]+[class*="section-"], */

.page-top+[class*="section-"],
.home+[class*="section-"],

/* ARMS専用 */

.breadcrumb-wrapper+[class*="section-"],
.security-service {
    padding-top: var(--section-padding);
}

.section-xsmall {
    --section-padding: 40px;
}

.section-small {
    --section-padding: 60px;
}

.section-medium {
    --section-padding: 80px;
}

.section-large {
    --section-padding: 120px;
}

.section-xlarge {
    --section-padding: 160px;
}

.section-xxlarge {
    --section-padding: 200px;
}

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

    .section-xlarge,
    .section-xxlarge {
        --section-padding: 160px;
    }
}

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

    .section-xlarge,
    .section-xxlarge {
        --section-padding: 120px;
    }
}

@media screen and (max-width:991px) {
    .section-medium {
        --section-padding: 60px;
    }

    .section-large,
    .section-xlarge,
    .section-xxlarge {
        --section-padding: 80px;
    }
}

@media screen and (max-width:767px) {
    .section-xsmall {
        --section-padding: 30px;
    }

    .section-large,
    .section-xlarge,
    .section-xxlarge {
        --section-padding: 80px;
    }
}

@media print {
    .section-xlarge {
        --section-padding: 100px;
    }

    .section-xxlarge {
        --section-padding: 100px;
    }
}


/*------------------------------------------------------------------
  container
------------------------------------------------------------------*/

.container-wide {
    width: 95%;
    max-width: 1470px;
    margin: 0 auto;
    overflow: hidden;
}

@media screen and (max-width:991px) {
    .container-wide {
        padding: 0 6vw;
    }
}

@media print {
    .container-wide {
        padding: 0 15px !important;
    }
}


/*------------------------------------------------------------------
  background
------------------------------------------------------------------*/

.bg-white {
    position: relative;
    background-color: #fff !important;
    z-index: 1;
}

.bg-gray {
    position: relative;
    background-color: #f5f5f5 !important;
    z-index: 1;
}

.bg-dark-gray {
    position: relative;
    background-color: var(--gray-dark-color) !important;
    z-index: 1;
}

.bg-dark-gray-op09 {
    position: relative;
    background-color: rgba(52, 51, 51, .9) !important;
    z-index: 1;
}

.bg-primary {
    position: relative;
    background-color: var(--primary-color) !important;
    z-index: 1;
}

.bg-primary-op09 {
    position: relative;
    background-color: rgba(162, 35, 46, .9) !important;
    z-index: 1;
}

.bg-primary-light {
    position: relative;
    background-color: var(--primary-light-color) !important;
    z-index: 1;
}

.bg-white-op08 {
    background-color: rgba(255, 255, 255, 0.8);
}

.bg-illust {
    position: relative;
    background: url(../images/home-items-bg.jpg) no-repeat center / cover;
    z-index: 1;
}


/*------------------------------------------------------------------
  title
------------------------------------------------------------------*/


/* title-english
------------------------------------------------------------------*/

.title-english {
    position: relative;
    width: fit-content;
    margin-bottom: .75em;
    line-height: 1;
    z-index: 1;
}

.title-english.ttl-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-english.ttl-center .en,
.title-english.ttl-center .jp {
    text-align: center;
}

.title-english .en {
    position: relative;
    font-family: var(--en-font);
    font-size: 3.75rem;
    line-height: 1;
    text-align: justify;
    color: var(--black-color);
}

.title-english .jp {
    line-height: 2.5;
    font-size: 1.125rem;
    color: var(--black-color);
    text-align: left;
    font-weight: 600;
}

@media screen and (max-width:1399px) {
    .title-english {
        font-size: 1.25rem;
    }

    .title-english.top-news__title .en {
        font-size: 4rem;
    }

    .title-english .en {
        font-size: 3.75rem;
    }
}

@media screen and (max-width:991px) {
    .title-english {
        font-size: 1.25rem;
    }

    .title-english.top-news__title .en,
    .title-english .en {
        font-size: 3.5rem;
    }
}

@media screen and (max-width:767px) {
    .title-english {
        font-size: 1.25rem;
    }
}

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

    .title-english.top-news__title .en,
    .title-english .en {
        font-size: 2.75rem;
    }

    .title-english .jp {
        font-size: 1rem;
    }
}


/* title-split
------------------------------------------------------------------*/

.title-split {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    line-height: 1;
}

.title-split__jp {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.35;
}

.title-split__en {
    margin: 0;
    padding-bottom: .25em;
    font-family: var(--en-font);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1;
}


/* title-catch
------------------------------------------------------------------*/

.title-catch {
    margin: 0;
    font-size: 3rem;
    font-weight: 500;
}


@media screen and (max-width: 991px) {
    .title-catch {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 575px) {
    .title-catch {
        font-size: 2rem;
        line-height: 1.4;
    }
}

/* title-bold 
------------------------------------------------------------------*/

.title-bold {
    margin-bottom: min(1em, 48px);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
}


/* 文字サイズ変更 */

.title-bold.large {
    font-size: 3rem;
}

.title-bold.small {
    font-size: 1.5rem;
}

.title-bold.xsmall {
    font-size: 1.25rem;
}

@media screen and (max-width:1399px) {
    .title-bold.large {
        font-size: 2.5rem;
    }

    .title-bold {
        font-size: 1.875rem;
    }
}

@media screen and (max-width:991px) {
    .title-bold.large {
        font-size: 2rem;
    }

    .title-bold {
        font-size: 1.75rem;
    }

    .title-bold.small {
        font-size: 1.375rem;
    }

    .title-bold.xsmall {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .title-bold.large {
        font-size: 1.75rem;
    }

    .title-bold {
        font-size: 1.5rem;
    }

    .title-bold.small {
        font-size: 1.25rem;
    }

    .title-bold.xsmall {
        font-size: 1rem;
    }
}

@media screen and (max-width:575px) {
    .title-bold.large {
        font-size: 1.5rem;
    }

    .title-bold {
        font-size: 1.375rem;
    }

    .title-bold.small {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .title-bold.large {
        font-size: 1.375rem;
    }

    .title-bold {
        font-size: 1.25rem;
    }

    .title-bold.small {
        font-size: 1rem;
    }

    .title-bold.xsmall {
        font-size: 0.875rem;
    }
}


/* title-leftline 
------------------------------------------------------------------*/

.title-leftline {
    padding-left: 0.5em;
    margin-bottom: 1em;
    border-left: 0.2em solid var(--primary-color);
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.5;
}


/* 文字サイズ変更 */

.title-leftline.small {
    font-size: 1.5rem;
}

.title-leftline.xsmall {
    font-size: 1.25rem;
}

.title-leftline.xxsmall {
    font-size: 1rem;
}

.title-leftline.static {
    font-size: 1.125rem;
}

@media screen and (max-width:1399px) {
    .title-leftline {
        font-size: 1.625rem;
    }
}

@media screen and (max-width:991px) {
    .title-leftline {
        font-size: 1.5rem;
    }

    .title-leftline.small {
        font-size: 1.375rem;
    }

    .title-leftline.xsmall {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .title-leftline {
        font-size: 1.375rem;
    }

    .title-leftline.small {
        font-size: 1.25rem;
    }

    .title-leftline.xsmall {
        font-size: 1rem;
    }
}

@media screen and (max-width:575px) {
    .title-leftline {
        font-size: 1.25rem;
    }

    .title-leftline.small {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .title-leftline {
        font-size: 1.125rem;
    }

    .title-leftline.small {
        font-size: 1rem;
    }

    .title-leftline.xsmall {
        font-size: 0.875rem;
    }

    .title-leftline.xxsmall {
        font-size: 0.875rem;
    }
}


/* title-underline 
------------------------------------------------------------------*/

.title-underline {
    padding-bottom: 0.5em;
    margin-bottom: 0.8em;
    border-bottom: 1px solid #aaa;
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.5;
}


/* 文字サイズ変更 */

.title-underline.small {
    font-size: 1.5rem;
}

.title-underline.xsmall {
    font-size: 1.25rem;
}

.title-underline.xxsmall {
    font-size: 1rem;
}

@media screen and (max-width:1399px) {
    .title-underline {
        font-size: 1.625rem;
    }
}

@media screen and (max-width:991px) {
    .title-underline {
        font-size: 1.5rem;
    }

    .title-underline.small {
        font-size: 1.375rem;
    }

    .title-underline.xsmall {
        font-size: 1.125rem;
    }

    .title-underline.xxsmall {
        font-size: 0.875rem;
    }
}

@media screen and (max-width:767px) {
    .title-underline {
        font-size: 1.375rem;
    }

    .title-underline.small {
        font-size: 1.25rem;
    }

    .title-underline.xsmall {
        font-size: 1rem;
    }
}

@media screen and (max-width:575px) {
    .title-underline {
        font-size: 1.25rem;
    }

    .title-underline.small {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .title-underline {
        font-size: 1.125rem;
    }

    .title-underline.small {
        font-size: 1rem;
    }

    .title-underline.xsmall {
        font-size: 0.875rem;
    }

    .title-underline.xxsmall {
        font-size: 0.875rem;
    }
}


/* title-band 
------------------------------------------------------------------*/

.title-band {
    padding: 0.4em 0.8em;
    margin-bottom: 1em;
    background: var(--primary-light-color);
    border-left: 0.3em solid var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
}


/* 文字サイズ変更 */

.title-band.small {
    font-size: 1.375rem;
}

.title-band.xsmall {
    font-size: 1.125rem;
}

.title-band.xxsmall {
    font-size: 1rem;
}

@media screen and (max-width:991px) {
    .title-band {
        font-size: 1.375rem;
    }

    .title-band.small {
        font-size: 1.25rem;
    }

    .title-band.xsmall {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .title-band {
        font-size: 1.25rem;
    }

    .title-band.small {
        font-size: 1.125rem;
    }

    .title-band.xsmall {
        font-size: 1rem;
    }
}

@media screen and (max-width:575px) {
    .title-band {
        font-size: 1.125rem;
    }

    .title-band.small {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .title-band {
        font-size: 1rem;
    }

    .title-band.small {
        font-size: 0.875rem;
    }

    .title-band.xsmall {
        font-size: 0.8125rem;
    }

    .title-band.xxsmall {
        font-size: 0.8125rem;
    }
}


/* title-caption
------------------------------------------------------------------*/

.title-caption {
    margin-bottom: 10px;
    font-family: var(--en-font);
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
}

@media screen and (max-width:1399px) {
    /* .title-caption{ font-size: 1rem;} */
}

@media screen and (max-width:991px) {
    .title-caption {
        margin-bottom: 5px;
        /* font-size: .875rem; */
    }
}


/*------------------------------------------------------------------
  btn   
------------------------------------------------------------------*/


/*  btn
------------------------------------------------------------------*/

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: fit-content;
    /* padding: 1.25em 2em 1.25em 2.5em; */
    padding: 1.25em 0 1.25em 0;
    background-image: var(--gradient-orange);
    /* border-radius: 2em; */
    font-family: var(--en-font);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .05em;
    color: var(--white-color);
    /* line-height: 1; */
    transition: all .4s;
    z-index: 1;
    background-size: 200% 100%;
    background-position: left bottom;
    transition: .2s;
    filter: brightness(1);
    width: 300px;
}

.btn.btn-original {
    width: 300px;
}

.btn.btn_back {
    flex-direction: row-reverse;
}

.btn::after {
    position: inherit;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-size: .6em;
    letter-spacing: 0;
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    z-index: 1;
    background-color: var(--white-color);
    border-radius: 100%;
    aspect-ratio: 1;
    width: 1.25rem;
}

.btn.btn_back::after {
    transform: scaleX(-1);
}


/* ホバー時動作 */

@media (hover:hover) {

    /* 通常 */
    .btn:hover {
        filter: brightness(1.1);
        letter-spacing: .2em;
    }

    .btn:hover::after {
        text-align: end;
    }

    .btn.btn_back:hover::after {
        text-align: start;
    }
}

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

    .btn,
    .btn.btn-original {
        width: 280px;
    }
}

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

    .btn,
    .btn.btn-original {
        width: 100%;
    }

    .row.btn-area {
        width: 100%;
        margin: 0;
    }
}


/*  btn-file
------------------------------------------------------------------*/

.btn-file {
    display: inline-flex;
    align-items: center;
    padding: 0.8em 2em;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 2.5em;
    line-height: 1.3;
    transition: .2s;
}

.btn-file::before {
    display: inline-block;
    margin-right: 5px;
    content: url(../img/etc.gif);
    transition: .2s;
}


/* pdf */

.btn-file.pdf::before {
    content: url(../img/pdf.gif);
}


/* word */

.btn-file.word::before {
    content: url(../img/word.gif);
}


/* excel */

.btn-file.excel::before {
    content: url(../img/excel.gif);
}


/* ホバー時動作 */

@media (hover:hover) {
    .btn-file:hover {
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
}

@media screen and (max-width:767px) {
    .btn-file {
        width: 100%;
        padding: 0.8em 1em;
    }
}


/*  btn-category
------------------------------------------------------------------*/

.btn-category {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.5em;
    padding: 0 1em;
    background: #e0e0e0;
    border-radius: 2em;
    transition: .2s ease-out;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    line-height: 1;
}


/* アクティブ時動作 */

.btn-category.active {
    background: var(--primary-color);
    color: #fff;
    pointer-events: none;
}


/* ホバー時動作 */

@media (hover:hover) {
    .btn-category:hover {
        background: var(--accent-color);
        color: #fff;
    }
}

@media (hover:none) {
    .btn-category:active {
        background: var(--accent-color);
        color: #fff;
    }
}

@media screen and (max-width:991px) {
    .btn-category {
        font-size: 0.75rem;
    }
}


/*  btn-next
------------------------------------------------------------------*/

.btn-next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 240px;
    width: fit-content;
    padding: .8em 2em .8em 2em;
    background: var(--accent-color);
    border-radius: 2em;
    font-size: 1.25rem;
    letter-spacing: .36em;
    color: #fff;
    line-height: 1.4;
    transition: .2s;
    z-index: 1;
}

.btn-next::after {
    position: inherit;
    content: "";
    display: block;
    width: 60px;
    aspect-ratio: 2 / 1;
    right: 0;
    background-image: url(/images/common/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-size: 1.2em;
    font-family: initial;
    font-weight: bold;
    transition: .2s;
    z-index: 1;
}


/* ホバー時動作 */

@media (hover:hover) {
    .btn-next:hover {
        background-color: #1271df;
    }

    .btn-next:hover::after {
        right: -0.3em;
    }
}

@media (hover:none) {
    .btn-next:active {
        background: var(--accent-color);
    }

    .btn-next:active::after {
        right: -0.3em;
    }
}


/*  btn-prev
------------------------------------------------------------------*/

.btn-prev {
    position: relative;
    display: inline-block;
    min-width: 250px;
    padding: 1em 3em;
    border-radius: 2.5em;
    background: var(--black-color);
    color: #fff;
    text-align: center;
    line-height: 1;
    transition: .2s;
    z-index: 1;
}

.btn-prev::after {
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
    content: "\f137";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s;
    z-index: 1;
}


/* ホバー時動作 */

@media (hover:hover) {
    .btn-prev:hover {
        background: var(--accent-color);
    }

    .btn-prev:hover::after {
        left: 0.3em;
    }
}


/*  btn-block
------------------------------------------------------------------*/

.btn-block {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1.5em 48px 1.5em 10px;
    border-bottom: 1px solid #ccc;
    transition: .2s ease-out;
    line-height: 1.2;
}

.btn-block.pdf::before,
.btn-block.word::before,
.btn-block.excel::before,
.btn-block.detail::before,
.btn-block.gform::before {
    flex-shrink: 0;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: 20px;
    content: "";
}

.btn-block.pdf::before {
    background: url(../img/pdf.png) no-repeat center / contain;
}

.btn-block.word::before {
    background: url(../img/word.png) no-repeat center / contain;
}

.btn-block.excel::before {
    background: url(../img/excel.png) no-repeat center / contain;
}

.btn-block.detail::before {
    background: url(../img/detail.png) no-repeat center / contain;
}

.btn-block.gform::before {
    background: url(../img/gform.png) no-repeat center / contain;
}

.btn-block::after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    aspect-ratio: 1 / 1;
    border: 1px solid #666;
    border-radius: 50%;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 0.625rem;
    font-weight: bold;
    transition: .3s ease-out;
}


/* ホバー時動作 */

@media (hover:hover) {
    .btn-block:hover {
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .btn-block:hover::after {
        transform: translateY(-50%) scale(0.8);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}

@media screen and (max-width:575px) {
    .btn-block {
        padding: 1.5em 30px 1.5em 0;
        font-size: 0.875rem;
    }

    .btn-block.pdf::before,
    .btn-block.word::before,
    .btn-block.excel::before,
    .btn-block.detail::before,
    .btn-block.gform::before {
        margin-right: 10px;
    }

    .btn-block::after {
        right: 0;
        width: 28px;
        font-size: 0.625rem;
    }
}

.c-flatbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    min-width: 18rem;
    padding: 1.4rem 3.2rem;
    background-color: var(--accent-color);
    color: var(--white-color);
    font: inherit;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.c-flatbtn--back {
    background-color: var(--black-color);
}

.c-flatbtn__icon {
    width: .75rem;
    aspect-ratio: 1 / 1;
    background-color: currentColor;
    mask: url(../images/icon/button-arrow.svg) center / contain no-repeat;
    -webkit-mask: url(../images/icon/button-arrow.svg) center / contain no-repeat;
    margin-bottom: .15em;
    transition: transform .25s ease, margin .25s ease;
}

.c-flatbtn--back .c-flatbtn__icon {
    transform: scaleX(-1);
}

@media (hover: hover) {
    .c-flatbtn:hover {
        background-color: var(--accent-deep-color);
    }

    .c-flatbtn:hover .c-flatbtn__icon {
        transform: translateX(.25em);
    }

    .c-flatbtn--back:hover .c-flatbtn__icon {
        transform: scaleX(-1);
        margin-left: -.25em;
        margin-right: .25em;
    }

    .c-flatbtn--back:hover {
        background-color: var(--gray-dark-color);
    }
}


/*------------------------------------------------------------------
  list-style
------------------------------------------------------------------*/


/* list-disc ----------------------------------------*/

.list-disc {
    line-height: 1.5;
}

.list-disc>li {
    position: relative;
    padding-left: 1em;
}

.list-disc>li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "・";
}


/* list-decimal ----------------------------------------*/

.list-decimal {
    line-height: 1.5;
}

.list-decimal>li {
    position: relative;
    padding-left: 1.3em;
    counter-increment: cnt;
}

.list-decimal>li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: ""counter(cnt)".";
}


/* list-bracket ----------------------------------------*/

.list-bracket {
    line-height: 1.5;
}

.list-bracket>li {
    position: relative;
    padding-left: 2em;
    counter-increment: cnt;
}

.list-bracket>li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "("counter(cnt)")";
}


/* list-asterisk ----------------------------------------*/

.list-asterisk {
    line-height: 1.5;
}

.list-asterisk>li {
    position: relative;
    padding-left: 1.5em;
}

.list-asterisk>li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "※";
    color: var(--primary-color);
}


/* list-asterisk-bracket ----------------------------------------*/

.list-asterisk-bracket {
    line-height: 1.5;
}

.list-asterisk-bracket>li {
    position: relative;
    padding-left: 2em;
    counter-increment: cnt;
}

.list-asterisk-bracket>li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "※"counter(cnt)"";
}


/* list-check ----------------------------------------*/

.list-check {
    line-height: 1.5;
}

.list-check>li {
    position: relative;
    padding-left: 1.5em;
}

.list-check>li::before {
    position: absolute;
    top: 0.05em;
    left: 0;
    display: block;
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--primary-color);
}


/* list-block ----------------------------------------*/

.list-block {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    line-height: 1;
}

.list-block li {
    padding: 0.5em 0.8em;
    background: #efefef;
}


/* list-indent ----------------------------------------*/

.list-indent {
    line-height: 1.5;
}

.list-indent>li {
    padding-left: 1em;
    text-indent: -1em;
}


/* list-line-dashed ----------------------------------------*/

.list-line-dashed>li {
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 1px dashed #bbb;
}

.list-line-dashed>li:last-of-type {
    margin-bottom: 0;
}


/*------------------------------------------------------------------
  list-margin
------------------------------------------------------------------*/

.list-margin-small>li {
    margin-bottom: 0.7em;
}

.list-margin-medium>li {
    margin-bottom: 1em;
}

.list-margin-large>li {
    margin-bottom: 1.3em;
}

.list-margin-small>li:last-of-type,
.list-margin-medium>li:last-of-type,
.list-margin-large>li:last-of-type {
    margin-bottom: 0;
}


/*------------------------------------------------------------------
  table
------------------------------------------------------------------*/


/* wrap-table ----------------------------------------*/

.wrap-table {
    overflow-x: auto;
}

@media screen and (max-width:575px) {
    .wrap-table table {
        width: 600px;
    }
}


/* table01 company----------------------------------------*/

.table01 {
    width: 60%;
    line-height: 1.5;
    z-index: 3;
    background-color: var(--white-color);
}

.table01>tbody>tr>th,
.table01>tbody>tr>td {
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #d3d3d3;
    font-size: 1.25rem;
    text-align: justify;
    font-weight: 500;
}

.table01>tbody>tr>th {
    width: 25%;
    color: var(--black-color);
    background-color: var(--gray-light-color);
}

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

    .table01>tbody>tr>th,
    .table01>tbody>tr>td {
        display: block;
    }

    .table01>tbody>tr>th,
    .table01>tbody>tr>td {
        border-bottom: initial;
        width: 100%;
    }

    .table01>tbody>tr:last-of-type>td {
        border: 1px solid #d3d3d3;
    }
}


/* table02 mail ----------------------------------------*/

.table02 {
    width: 100%;
}

.table02>tbody>tr>th,
.table02>tbody>tr>td {
    padding: 12px 15px;
    vertical-align: middle;
    line-height: 1.4;
}

.table02>tbody>tr>th {
    width: 20%;
    min-width: 340px;
    border-bottom: 1px solid var(--primary-color);
}

.table02>tbody>tr>td {
    font-weight: 400;
    border-bottom: 1px solid #ccc;
}

.table02 .table-title {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #aaa;
    font-weight: bold;
}

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

    .table02>tbody>tr>th,
    .table02>tbody>tr>td {
        display: block;
        border-bottom: none;
    }

    .table02>tbody>tr>th {
        min-width: initial;
        width: 100%;
        padding: 0;
        padding-bottom: 1rem;
    }

    .table02>tbody>tr>td {
        padding: 0;
        padding-bottom: 1.5rem;
    }
}

@media screen and (max-width:575px) {
    .table02>tbody>tr>th {
        padding: 8px 0px;
        vertical-align: middle;
        line-height: 1.4;
    }

    .table02>tbody>tr>td {
        padding: 5px 0px 16px;
        vertical-align: middle;
        line-height: 1.4;
    }
}


/*------------------------------------------------------------------
  box
------------------------------------------------------------------*/

[class^="box-"] {
    position: relative;
    padding: 60px;
    border-radius: 30px;
    z-index: 1;
}

[class^="box-"].small {
    padding: 30px;
}

[class^="box-"].xsmall {
    padding: 20px;
}

[class^="box-"].xxsmall {
    padding: 15px;
}

.box-white {
    background: #fff;
}

.box-gray {
    background: #efefef;
}

.box-primary-light {
    background: var(--primary-light-color);
}

.box-line {
    background: #fff;
    border: 1px solid var(--primary-color);
}

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

    [class^="box-"],
    [class^="box-"].small {
        padding: 30px;
        border-radius: 20px;
    }
}

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

    [class^="box-"],
    [class^="box-"].small {
        padding: 24px 20px;
    }
}


/*------------------------------------------------------------------
  img-radius
------------------------------------------------------------------*/

.img-radius {
    overflow: hidden;
    border-radius: 15px;
}

@media screen and (max-width:575px) {
    .img-radius {
        border-radius: 10px;
    }
}


/*------------------------------------------------------------------
  img-fit
------------------------------------------------------------------*/

.img-fit {
    height: 100%;
    overflow: hidden;
}

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


/*------------------------------------------------------------------
  img-wide
------------------------------------------------------------------*/

.img-wide {
    height: 400px;
    overflow: hidden;
}

.img-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:1399px) {
    .img-wide {
        height: 300px;
    }
}

@media screen and (max-width:767px) {
    .img-wide {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}


/*------------------------------------------------------------------
  catalog
------------------------------------------------------------------*/

.catalog-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: .2s;
}

.catalog-text a:hover {
    color: var(--accent-color);
}


/*------------------------------------------------------------------
  link
------------------------------------------------------------------*/


/* link-text ----------------------------------------*/

a.link-text {
    color: var(--red-color);
    text-decoration: underline;
    transition: .2s;
}

a.link-text:hover {
    color: var(--accent-color);
}

a.link-img img {
    transition: .2s;
}

a.link-img:hover img {
    opacity: 0.6;
}


/* link-external-text ----------------------------------------*/

a.link-external-text {
    color: var(--primary-color);
    text-decoration: underline;
    transition: .2s ease-out;
}

a.link-external-text::after {
    margin-left: 5px;
    content: "\f08e";
    font-family: "Font Awesome 6 Free";
    font-size: 0.85em;
    font-weight: bold;
}


/* ホバー時動作 */

@media (hover:hover) {
    a.link-external-text:hover {
        color: var(--accent-color);
    }
}


/*------------------------------------------------------------------
  photo-ofi
------------------------------------------------------------------*/

.photo-ofi {
    height: 0;
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 66.66666%;
}

.photo-ofi.wide {
    padding-bottom: 56.25%;
}

.photo-ofi.narrow {
    padding-bottom: 75%;
}

.photo-ofi.square {
    padding-bottom: 100%;
}

.photo-ofi img {
    max-width: inherit;
    max-height: inherit;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: 'object-fit: contain;';
    position: absolute;
    left: 0;
    top: 0;
}

.photo-ofi.fit {
    height: 100%;
    background: transparent;
}

.photo-ofi.fit img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
}


/*------------------------------------------------------------------
  zoom-photo
------------------------------------------------------------------*/

.zoom-photo {
    position: relative;
    display: block;
    z-index: 1;
}

.zoom-photo::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    content: "拡大して表示";
    font-size: 1.25rem;
    color: #fff;
    z-index: 2;
}

.zoom-photo::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    content: "";
    z-index: 1;
}


/* ホバー時動作 */

@media (hover:hover) {
    .zoom-photo:hover::before {
        opacity: 1;
        visibility: visible;
    }

    .zoom-photo:hover::after {
        opacity: 0.6;
        visibility: visible;
    }
}

@media screen and (max-width:767px) {
    .zoom-photo {
        font-size: 12px;
    }
}


/*------------------------------------------------------------------
  form
------------------------------------------------------------------*/


/* required-icon ----------------------------------------*/

.required-icon {
    display: inline-block;
    flex-shrink: 0;
    background-color: var(--accent-color);
    padding: 5px 14px 3px;
    border-radius: 1rem;
    font-weight: bold;
    color: var(--white-color);
    text-align: center;
    line-height: 1;
}

th .required-icon {
    float: right;
    margin-left: 10px;
}

@media screen and (max-width:575px) {
    th .required-icon {
        margin-left: 0;
    }
}


/* contact-info ----------------------------------------*/

.contact-info {
    line-height: 2;
    margin-block: 30px 50px;
    text-align: justify;
}


/* policy ----------------------------------------*/

.policy {
    height: 300px;
    padding: 15px;
    margin-bottom: 30px;
    background: var(--white-color);
    border: 1px solid #666;
    overflow-y: scroll;
    /* font-size: 1rem; */
    line-height: 1.5;
    text-align: justify;
}


/* form-style ----------------------------------------*/

.form-xs {
    width: 150px;
}

.form-s {
    width: 240px;
}

.form-m {
    width: 300px;
}

.form-l {
    width: 500px;
}

.form-xl {
    width: 100%;
}

.form-order {
    width: 120px;
}

.form-year {
    width: 80px;
}

.form-date {
    width: 60px;
    text-align: center;
}

.form-h {
    width: 100%;
    min-height: 150px;
    resize: none;
}

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

    .form-xs,
    .form-s,
    .form-m,
    .form-l,
    .form100 {
        width: 100%;
    }

    .form-h {
        min-height: 100px;
    }

    .form-order {
        width: 80px;
    }

    .form-year {
        width: 80px;
    }

    .form-date {
        width: 60px;
    }
}


/* select-box ----------------------------------------*/

.select-box {
    position: relative;
    display: inline-block;
}

.select-box::after {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    pointer-events: none;
}

@media screen and (max-width: 991px) {
    .select-box {
        display: block;
    }

    .select-box.date {
        display: inline-block;
    }
}


/* radio ----------------------------------------*/

.radio {
    position: relative;
    display: inline-block;
}

.radio input {
    display: none;
}

.radio span::before {
    display: inline-block;
    margin-right: 5px;
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    color: #999;
    z-index: 1;
}

.radio input:checked+span::before {
    content: "\f192";
    color: var(--primary-color);
}

@media screen and (max-width:991px) {
    .radio {
        display: block;
    }
}


/* radio-list ----------------------------------------*/

.radio-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}

@media screen and (max-width:991px) {
    .radio-list {
        flex-direction: column;
    }

    .radio-list li {
        padding: 8px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 3px;
    }
}


/* checkbox ----------------------------------------*/

.checkbox {
    position: relative;
    display: inline-block;
}

.checkbox input {
    display: none;
}

.checkbox input+span::before {
    display: inline-block;
    margin-right: 5px;
    content: "\f0c8";
    font-family: "Font Awesome 6 Free";
}

.checkbox input:checked+span::before {
    content: "\f14a";
    color: var(--primary-color);
}

@media screen and (max-width:991px) {
    .checkbox {
        display: block;
    }
}


/* checkbox-list ----------------------------------------*/

.checkbox-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 10px;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width:991px) {
    .checkbox-list {
        flex-direction: column;
    }

    .checkbox-list li {
        padding: 8px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 3px;
    }

    .checkbox-list label {
        display: flex;
        align-items: center;
        gap: 4px;
    }
}

.check-ad {
    display: flex;
    justify-content: center;
    gap: .5em;
    line-height: 1;
}

.check-ad label {
    margin-top: .15em;
}

.icon-arrow {
    stroke: var(--white-color);
    width: 1rem;
    height: auto;
    stroke-width: 2;
}

.linkbtn {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 12px 24px;
    border: 1px solid var(--gray-light-color);
    color: var(--black-color);
    text-decoration: none;
    transition: border-color .25s ease;
    width: fit-content;
    font-size: 1rem;
    background-color: var(--white-color);
    border-radius: 4px;
    z-index: 2;
}

.linkbtn:hover {
    opacity: 1;
    border-color: var(--black-color);
}

.linkbtn__txt {
    position: relative;
    display: inline-block;
    color: var(--black-color);
}

.linkbtn__txt::after {
    /* 下線 */
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.linkbtn:hover .linkbtn__txt::after {
    transform: scaleX(1);
    color: var(--black-color);
}

.linkbtn__icon {
    position: relative;
    width: 2.25rem;
    height: 1.5rem;
    border-radius: 4px;
    background: var(--black-color);
    overflow: hidden;
    flex: 0 0 2rem;
}


/*=====================================================
 text hover
=====================================================*/

.c-text-hover {
    display: inline-flex;
    overflow: hidden;
    font-size: inherit;
    line-height: 1.2;
    color: inherit;
}

.c-text-hover .char {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 1em;
    height: 1.2em;
    line-height: 1.2;
}

.c-text-hover .char::before,
.c-text-hover .char::after {
    content: attr(data-char);
    display: block;
    color: inherit;
    font: inherit;
    line-height: 1.2;
    transition: transform .45s cubic-bezier(.76, 0, .24, 1);
    transition-delay: calc(var(--char-index) * .03s);
}

.c-text-hover .char::after {
    position: absolute;
    top: 100%;
    left: 0;
}

a:hover .c-text-hover .char::before,
a:hover .c-text-hover .char::after,
button:hover .c-text-hover .char::before,
button:hover .c-text-hover .char::after {
    transform: translateY(-100%);
}


/*=====================================================
 c-linkbtn　押し込みボタン
=====================================================*/

.c-linkbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    min-width: 15.5rem;
    min-height: 5rem;
    padding: 0 4.5rem;
    background: var(--accent-color);
    border-radius: .25rem;
    color: var(--white-color);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    box-shadow: .3em .3em 0 var(--black-color);
    transition: transform .3s ease, box-shadow .3s ease;
}

.c-linkbtn__text {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.c-linkbtn__icon {
    display: block;
    flex: 0 0 auto;
    width: .75rem;
    height: .75rem;
    background: url("../images/icon/button-arrow.svg") no-repeat center / contain;
    filter: brightness(0) invert(1);
    transform: translateY(-.1em);
}

@media (hover: hover) {
    .c-linkbtn:hover {
        color: var(--white-color);
        text-decoration: none;
        transform: translate(.3em, .3em);
        box-shadow: 0 0 0 var(--black-color);
    }
}


/*=====================================================
 c-simple-btn 白ベースのシンプルボタン
=====================================================*/

.c-simple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-width: 13.5rem;
    min-height: 3rem;
    padding: 1.25rem 3.75rem;
    background: var(--white-color);
    border: 1px solid transparent;
    color: var(--black-color);
    font-family: var(--en-font);
    line-height: 1;
    text-decoration: none;
    transition: .3s;
    align-self: flex-start;
    width: fit-content;
}

.c-simple-btn.__child {
    padding: 1.25rem 2.5rem;
}

.c-simple-btn span {
    display: block;
    width: 1em;
    aspect-ratio: 1 / 1;
    background-color: currentColor;
    -webkit-mask: url(../images/icon/link-arrow.svg) center / contain no-repeat;
    mask: url(../images/icon/link-arrow.svg) center / contain no-repeat;
    margin-bottom: .1em;
}

@media (hover: hover) {
    .c-simple-btn:hover {
        opacity: .6;
        text-decoration: none;
    }
}


/*=====================================================
 modal
=====================================================*/

#modal-view {
    max-height: 660px;
    overflow-y: auto;
}

@media screen and (max-width:991px) {
    #modal-view {
        height: 45dvh;
    }
}

#modal-view {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#modal-view::-webkit-scrollbar {
    display: none;
}


/* simplebar  back */

.simplebar-track.simplebar-vertical {
    width: 1.5rem;
    background: var(--gray-light-color);
    right: 0;
}

.simplebar-scrollbar::before {
    background: var(--primary-color);
    border-radius: 2rem;
    width: 55%;
    margin: 1rem auto;
    padding: 5rem 0;
    opacity: 1;
}

.simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
}

#modal-view {
    padding-right: 24px;
}

@media screen and (max-width:576px) {
    .simplebar-track.simplebar-vertical {
        width: 1rem;
    }

    .simplebar-scrollbar::before {
        width: 50%;
        border-radius: .75rem;
        margin: .5rem auto;
    }

    #modal-view {
        padding-right: 1rem;
    }
}


/* ========================================
  共通：方眼紙背景
======================================== */

.u-grid-paper-bg {
    background-color: #fff4b9;
    background-image: linear-gradient(rgba(71, 154, 194, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(71, 154, 194, .12) 1px, transparent 1px);
    background-size: 1.25rem 1.25rem;
    box-shadow: .5rem .5rem 0 #BDBDBD;
    border: 1px solid var(--black-color);
}

.u-grid-paper-bg .title-english .en,
.u-grid-paper-bg .title-english .jp {
    color: var(--accent-color);
}

/* ========================================
  common components
======================================== */


/* まっすぐずらし影 */

.c-offset-shadow {
    --offset-shadow-x: .5rem;
    --offset-shadow-y: .5rem;
    --offset-shadow-color: var(--sand-color);
    box-shadow: var(--offset-shadow-x) var(--offset-shadow-y) 0 var(--offset-shadow-color);
}

.c-offset-shadow--lg {
    --offset-shadow-x: 1rem;
    --offset-shadow-y: 1rem;
}

.c-offset-shadow--sm {
    --offset-shadow-x: .4rem;
    --offset-shadow-y: .4rem;
}

.c-offset-shadow--green {
    --offset-shadow-color: var(--green-color);
}

.c-offset-shadow--sand {
    --offset-shadow-color: var(--sand-color);
}

.c-offset-shadow--sky {
    --offset-shadow-color: var(--sky-color);
}

.c-offset-shadow--pink {
    --offset-shadow-color: var(--pink-color);
}

.c-offset-shadow--purple {
    --offset-shadow-color: var(--purple-color);
}

.c-offset-shadow--orange {
    --offset-shadow-color: var(--orange-color);
}

.c-offset-shadow--yellow {
    --offset-shadow-color: var(--yellow-color);
}

.c-offset-shadow--accent {
    --offset-shadow-color: var(--accent-color);
}


/* 黒枠＋画像＋ずらし影まで持つ写真コンポーネント */

.c-photo-frame {
    --photo-frame-shadow-x: .5rem;
    --photo-frame-shadow-y: .5rem;
    --photo-frame-shadow-color: var(--sand-color);
    position: relative;
    border: 1px solid var(--black-color);
    box-shadow: var(--photo-frame-shadow-x) var(--photo-frame-shadow-y) 0 var(--photo-frame-shadow-color);
    overflow: hidden;
}

.c-photo-frame--lg {
    --photo-frame-shadow-x: 1rem;
    --photo-frame-shadow-y: 1rem;
}

.c-photo-frame--sm {
    --photo-frame-shadow-x: .4rem;
    --photo-frame-shadow-y: .4rem;
}

.c-photo-frame--green {
    --photo-frame-shadow-color: var(--green-color);
}

.c-photo-frame--sand {
    --photo-frame-shadow-color: var(--sand-color);
}

.c-photo-frame--sky {
    --photo-frame-shadow-color: var(--sky-color);
}

.c-photo-frame--pink {
    --photo-frame-shadow-color: var(--pink-color);
}

.c-photo-frame--purple {
    --photo-frame-shadow-color: var(--purple-color);
}

.c-photo-frame--orange {
    --photo-frame-shadow-color: var(--orange-color);
}

.c-photo-frame--yellow {
    --photo-frame-shadow-color: var(--yellow-color);
}

.c-photo-frame--accent {
    --photo-frame-shadow-color: var(--accent-color);
}

.c-photo-frame img,
.c-photo-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 斜めずらし背景つき写真コンポーネント */

.c-wipe-reveal {
    --wipe-reveal-color: var(--white-color);
    --wipe-reveal-duration: .75s;
    --wipe-reveal-delay: 0s;
    --wipe-reveal-ease: cubic-bezier(.77, 0, .18, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.c-photo-frame.c-wipe-reveal {
    --wipe-reveal-color: var(--photo-frame-shadow-color);
}

.c-photo-frame>.c-wipe-reveal {
    --wipe-reveal-color: var(--photo-frame-shadow-color);
    display: block;
    width: 100%;
    height: 100%;
}

.c-offset-shadow.c-wipe-reveal {
    --wipe-reveal-color: var(--offset-shadow-color);
}

.c-offset-shadow>.c-wipe-reveal {
    --wipe-reveal-color: var(--offset-shadow-color);
    display: block;
    width: 100%;
    height: 100%;
}

.c-wipe-reveal::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--wipe-reveal-color);
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.c-wipe-reveal img,
.c-wipe-reveal video {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.c-wipe-reveal.active::after {
    animation: c-wipe-reveal-curtain var(--wipe-reveal-duration) var(--wipe-reveal-ease) forwards;
    animation-delay: var(--wipe-reveal-delay);
}

@keyframes c-wipe-reveal-curtain {
    0% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(101%, 0, 0);
        -webkit-transform: translate3d(101%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .c-wipe-reveal::after {
        display: none;
    }

    .c-wipe-reveal.active::after {
        animation: none;
    }
}

.c-jitter-loop {
    --jitter-base-rotate: 0deg;
    --jitter-rotate: .9deg;
    --jitter-duration: 2.8s;
    --jitter-delay: 0s;
    --jitter-scale: 1;
    --jitter-origin: center center;
    --jitter-x: 0px;
    --jitter-y: 0px;

    transform-origin: var(--jitter-origin);

    /* 最初は止めておく */
    animation: none;
}

.c-photo-tilt.c-jitter-loop {
    --jitter-base-rotate: var(--photo-tilt-main);
}

.c-jitter-loop img,
.c-jitter-loop video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes c-jitter-tilt-a {

    0%,
    12% {
        transform: translate3d(0, 0, 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }

    20% {
        transform: translate3d(calc(var(--jitter-x) * -1), calc(var(--jitter-y) * -.75), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) - var(--jitter-rotate)));
    }

    34% {
        transform: translate3d(calc(var(--jitter-x) * .85), calc(var(--jitter-y) * -.2), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) + var(--jitter-rotate)));
    }

    48% {
        transform: translate3d(calc(var(--jitter-x) * -.25), var(--jitter-y), 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }

    62% {
        transform: translate3d(calc(var(--jitter-x) * -.7), calc(var(--jitter-y) * .35), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) + var(--jitter-rotate)));
    }

    78% {
        transform: translate3d(calc(var(--jitter-x) * .65), calc(var(--jitter-y) * -.9), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) - var(--jitter-rotate)));
    }

    100% {
        transform: translate3d(0, 0, 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }
}

@keyframes c-jitter-tilt-b {

    0%,
    16% {
        transform: translate3d(0, 0, 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }

    24% {
        transform: translate3d(var(--jitter-x), calc(var(--jitter-y) * .4), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) + var(--jitter-rotate)));
    }

    40% {
        transform: translate3d(calc(var(--jitter-x) * -.45), calc(var(--jitter-y) * -.85), 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }

    58% {
        transform: translate3d(calc(var(--jitter-x) * -.95), var(--jitter-y), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) - var(--jitter-rotate)));
    }

    72% {
        transform: translate3d(calc(var(--jitter-x) * .55), calc(var(--jitter-y) * -.35), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) + var(--jitter-rotate)));
    }

    100% {
        transform: translate3d(0, 0, 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }
}

@keyframes c-jitter-tilt-c {

    0%,
    14% {
        transform: translate3d(0, 0, 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }

    22% {
        transform: translate3d(calc(var(--jitter-x) * -.8), calc(var(--jitter-y) * -.25), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) - var(--jitter-rotate)));
    }

    38% {
        transform: translate3d(calc(var(--jitter-x) * .3), calc(var(--jitter-y) * -1), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) + var(--jitter-rotate)));
    }

    54% {
        transform: translate3d(var(--jitter-x), calc(var(--jitter-y) * .45), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) - var(--jitter-rotate)));
    }

    70% {
        transform: translate3d(calc(var(--jitter-x) * -.35), var(--jitter-y), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) + var(--jitter-rotate)));
    }

    100% {
        transform: translate3d(0, 0, 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }
}

@keyframes c-jitter-tilt-d {

    0%,
    18% {
        transform: translate3d(0, 0, 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }

    28% {
        transform: translate3d(calc(var(--jitter-x) * .75), calc(var(--jitter-y) * -.8), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) + var(--jitter-rotate)));
    }

    44% {
        transform: translate3d(calc(var(--jitter-x) * -.55), calc(var(--jitter-y) * .35), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) - var(--jitter-rotate)));
    }

    64% {
        transform: translate3d(var(--jitter-x), var(--jitter-y), 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) + var(--jitter-rotate)));
    }

    82% {
        transform: translate3d(calc(var(--jitter-x) * -.9), calc(var(--jitter-y) * -.2), 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }

    100% {
        transform: translate3d(0, 0, 0) scale(var(--jitter-scale)) rotate(calc(var(--jitter-base-rotate) - var(--jitter-rotate)));
    }
}

@media (prefers-reduced-motion: reduce) {
    .c-jitter-loop {
        animation: none;
        transform: translate3d(0, 0, 0) scale(var(--jitter-scale)) rotate(var(--jitter-base-rotate));
    }
}

.c-photo-tilt {
    --photo-tilt-main: 4deg;
    --photo-tilt-bg: -4deg;
    --photo-tilt-color: var(--c-blue-color);
    position: relative;
    z-index: 1;
    transform: rotate(var(--photo-tilt-main));
}

.c-photo-tilt::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--photo-tilt-color);
    transform: rotate(var(--photo-tilt-bg));
}

.c-photo-tilt--reverse {
    --photo-tilt-main: -4deg;
    --photo-tilt-bg: 4deg;
}

.c-photo-tilt--blue {
    --photo-tilt-color: var(--c-blue-color);
}

.c-photo-tilt--green {
    --photo-tilt-color: var(--c-green-color);
}

.c-photo-tilt--pink {
    --photo-tilt-color: var(--c-pink-color);
}

.c-photo-tilt--orange {
    --photo-tilt-color: var(--c-orange-color);
}

.c-photo-tilt--purple {
    --photo-tilt-color: var(--c-purple-color);
}

.c-photo-tilt--red {
    --photo-tilt-color: var(--c-red-color);
}

.c-photo-tilt--gray {
    --photo-tilt-color: var(--c-gray-color);
}

.c-photo-tilt--yellow {
    --photo-tilt-color: var(--c-yellow-color);
}

.c-photo-tilt--sky {
    --photo-tilt-color: var(--c-sky-color);
}

.c-photo-tilt img,
.c-photo-tilt video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 白カード */

.c-white-card {
    background: var(--white-color);
    padding: min(60px, 6vw);
}

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

    .c-offset-shadow,
    .c-offset-shadow--lg {
        --offset-shadow-x: .5rem;
        --offset-shadow-y: .5rem;
    }

    .c-photo-frame,
    .c-photo-frame--lg {
        --photo-frame-shadow-x: .5rem;
        --photo-frame-shadow-y: .5rem;
    }
}